Skip to content

Instantly share code, notes, and snippets.

@kohnakagawa
Last active September 1, 2021 14:05
Show Gist options
  • Save kohnakagawa/a6e5e336149e5fb42e46ff05b29f0a9b to your computer and use it in GitHub Desktop.
Save kohnakagawa/a6e5e336149e5fb42e46ff05b29f0a9b to your computer and use it in GitHub Desktop.
#include <iostream>
#include <Windows.h>
#include <vector>
#include <algorithm>
class OffsetTracker
{
std::vector<int> offsets;
public:
void Register(int i)
{
offsets.push_back(i);
}
void Summerize()
{
std::sort(offsets.begin(), offsets.end());
auto head = *offsets.begin();
int cnt = 0;
for (auto offset : offsets)
{
if (head != offset)
{
std::cout << "offset: " << offset << " cnt: " << cnt << std::endl;
head = offset;
cnt = 0;
}
cnt++;
}
std::cout << "offset: " << *(offsets.end() - 1) << " cnt: " << cnt << std::endl;
}
};
class SomeObject
{
int i;
int j;
public:
SomeObject()
{
i = j = 0;
}
};
#define OBJECT_COUNT 1297
void SprayTest() {
OffsetTracker offsetTracker;
LPVOID* objects = new LPVOID[OBJECT_COUNT];
for (int i = 0; i < OBJECT_COUNT; i++) {
SomeObject* obj = new SomeObject();
objects[i] = obj;
if (i > 0) {
int offset = (int)objects[i] - (int)objects[i - 1];
offsetTracker.Register(offset);
printf("Object at 0x%08x. Offset to previous = 0x%08x\n", (int)obj, offset);
}
else {
printf("Object at 0x%08x\n", (int)obj);
}
}
offsetTracker.Summerize();
}
int main()
{
SprayTest();
}
@kohnakagawa
Copy link
Author

Object at 0x3dc16260
Object at 0x3dc16190. Offset to previous = 0xffffff30
Object at 0x3dc16110. Offset to previous = 0xffffff80
Object at 0x3dc16150. Offset to previous = 0x00000040
Object at 0x3dc16210. Offset to previous = 0x000000c0
Object at 0x3dc160c0. Offset to previous = 0xfffffeb0
Object at 0x3dc16100. Offset to previous = 0x00000040
Object at 0x3dc161c0. Offset to previous = 0x000000c0
Object at 0x3dc16220. Offset to previous = 0x00000060
Object at 0x3dc16450. Offset to previous = 0x00000230
Object at 0x3dc16380. Offset to previous = 0xffffff30
Object at 0x3dc16400. Offset to previous = 0x00000080
Object at 0x3dc16430. Offset to previous = 0x00000030
Object at 0x3dc16370. Offset to previous = 0xffffff40
Object at 0x3dc163f0. Offset to previous = 0x00000080
Object at 0x3dc16390. Offset to previous = 0xffffffa0
Object at 0x3dc16410. Offset to previous = 0x00000080
Object at 0x3dc16440. Offset to previous = 0x00000030
Object at 0x3dc162a0. Offset to previous = 0xfffffe60
Object at 0x3dc16350. Offset to previous = 0x000000b0
Object at 0x3dc162e0. Offset to previous = 0xffffff90
Object at 0x3dc16460. Offset to previous = 0x00000180
Object at 0x3dc162b0. Offset to previous = 0xfffffe50
Object at 0x3dc16420. Offset to previous = 0x00000170
Object at 0x3dc16470. Offset to previous = 0x00000050
Object at 0x3dc16280. Offset to previous = 0xfffffe10
Object at 0x3dc16290. Offset to previous = 0x00000010
Object at 0x3dc16360. Offset to previous = 0x000000d0
Object at 0x3dc163a0. Offset to previous = 0x00000040
Object at 0x3dc16330. Offset to previous = 0xffffff90
Object at 0x3dc162c0. Offset to previous = 0xffffff90
Object at 0x3dc162d0. Offset to previous = 0x00000010
Object at 0x3dc162f0. Offset to previous = 0x00000020
Object at 0x3dc16300. Offset to previous = 0x00000010
Object at 0x3dc16310. Offset to previous = 0x00000010
Object at 0x3dc16340. Offset to previous = 0x00000030
Object at 0x3dc16320. Offset to previous = 0xffffffe0
Object at 0x3dc163b0. Offset to previous = 0x00000090
Object at 0x3dc163c0. Offset to previous = 0x00000010
Object at 0x3dc163d0. Offset to previous = 0x00000010
Object at 0x3dc163e0. Offset to previous = 0x00000010
Object at 0x3dc16500. Offset to previous = 0x00000120
Object at 0x3dc16610. Offset to previous = 0x00000110
Object at 0x3dc16650. Offset to previous = 0x00000040
Object at 0x3dc16480. Offset to previous = 0xfffffe30
Object at 0x3dc165f0. Offset to previous = 0x00000170
Object at 0x3dc164f0. Offset to previous = 0xffffff00
Object at 0x3dc16600. Offset to previous = 0x00000110
Object at 0x3dc165e0. Offset to previous = 0xffffffe0
Object at 0x3dc164d0. Offset to previous = 0xfffffef0
Object at 0x3dc16590. Offset to previous = 0x000000c0
Object at 0x3dc16570. Offset to previous = 0xffffffe0
Object at 0x3dc165a0. Offset to previous = 0x00000030
Object at 0x3dc164e0. Offset to previous = 0xffffff40
Object at 0x3dc16580. Offset to previous = 0x000000a0
Object at 0x3dc16540. Offset to previous = 0xffffffc0
Object at 0x3dc16510. Offset to previous = 0xffffffd0
Object at 0x3dc165b0. Offset to previous = 0x000000a0
Object at 0x3dc16660. Offset to previous = 0x000000b0
Object at 0x3dc16520. Offset to previous = 0xfffffec0
Object at 0x3dc16620. Offset to previous = 0x00000100
Object at 0x3dc165c0. Offset to previous = 0xffffffa0
Object at 0x3dc165d0. Offset to previous = 0x00000010
Object at 0x3dc16630. Offset to previous = 0x00000060
Object at 0x3dc16530. Offset to previous = 0xffffff00
Object at 0x3dc16640. Offset to previous = 0x00000110
Object at 0x3dc16670. Offset to previous = 0x00000030
Object at 0x3dc16490. Offset to previous = 0xfffffe20
Object at 0x3dc164a0. Offset to previous = 0x00000010
Object at 0x3dc16550. Offset to previous = 0x000000b0
Object at 0x3dc16560. Offset to previous = 0x00000010
Object at 0x3dc164b0. Offset to previous = 0xffffff50
Object at 0x3dc164c0. Offset to previous = 0x00000010
Object at 0x3dc16760. Offset to previous = 0x000002a0
Object at 0x3dc166a0. Offset to previous = 0xffffff40
Object at 0x3dc16710. Offset to previous = 0x00000070
Object at 0x3dc16690. Offset to previous = 0xffffff80
Object at 0x3dc16800. Offset to previous = 0x00000170
Object at 0x3dc16830. Offset to previous = 0x00000030
Object at 0x3dc16850. Offset to previous = 0x00000020
Object at 0x3dc16750. Offset to previous = 0xffffff00
Object at 0x3dc166e0. Offset to previous = 0xffffff90
Object at 0x3dc16680. Offset to previous = 0xffffffa0
Object at 0x3dc167e0. Offset to previous = 0x00000160
Object at 0x3dc16860. Offset to previous = 0x00000080
Object at 0x3dc167f0. Offset to previous = 0xffffff90
Object at 0x3dc16810. Offset to previous = 0x00000020
Object at 0x3dc16770. Offset to previous = 0xffffff60
Object at 0x3dc166f0. Offset to previous = 0xffffff80
Object at 0x3dc167a0. Offset to previous = 0x000000b0
Object at 0x3dc16720. Offset to previous = 0xffffff80
Object at 0x3dc167d0. Offset to previous = 0x000000b0
Object at 0x3dc167b0. Offset to previous = 0xffffffe0
Object at 0x3dc16740. Offset to previous = 0xffffff90
Object at 0x3dc16820. Offset to previous = 0x000000e0
Object at 0x3dc16840. Offset to previous = 0x00000020
Object at 0x3dc16780. Offset to previous = 0xffffff40
Object at 0x3dc16730. Offset to previous = 0xffffffb0
Object at 0x3dc16870. Offset to previous = 0x00000140
Object at 0x3dc166d0. Offset to previous = 0xfffffe60
Object at 0x3dc16790. Offset to previous = 0x000000c0
Object at 0x3dc16700. Offset to previous = 0xffffff70
Object at 0x3dc166b0. Offset to previous = 0xffffffb0
Object at 0x3dc167c0. Offset to previous = 0x00000110
Object at 0x3dc166c0. Offset to previous = 0xffffff00
Object at 0x3dc16890. Offset to previous = 0x000001d0
Object at 0x3dc169b0. Offset to previous = 0x00000120
Object at 0x3dc168d0. Offset to previous = 0xffffff20
Object at 0x3dc16960. Offset to previous = 0x00000090
Object at 0x3dc16a30. Offset to previous = 0x000000d0
Object at 0x3dc16a50. Offset to previous = 0x00000020
Object at 0x3dc168f0. Offset to previous = 0xfffffea0
Object at 0x3dc16910. Offset to previous = 0x00000020
Object at 0x3dc169c0. Offset to previous = 0x000000b0
Object at 0x3dc169e0. Offset to previous = 0x00000020
Object at 0x3dc16900. Offset to previous = 0xffffff20
Object at 0x3dc16a40. Offset to previous = 0x00000140
Object at 0x3dc16a60. Offset to previous = 0x00000020
Object at 0x3dc16a70. Offset to previous = 0x00000010
Object at 0x3dc169f0. Offset to previous = 0xffffff80
Object at 0x3dc168e0. Offset to previous = 0xfffffef0
Object at 0x3dc168a0. Offset to previous = 0xffffffc0
Object at 0x3dc168b0. Offset to previous = 0x00000010
Object at 0x3dc16880. Offset to previous = 0xffffffd0
Object at 0x3dc16920. Offset to previous = 0x000000a0
Object at 0x3dc16970. Offset to previous = 0x00000050
Object at 0x3dc169a0. Offset to previous = 0x00000030
Object at 0x3dc168c0. Offset to previous = 0xffffff20
Object at 0x3dc16980. Offset to previous = 0x000000c0
Object at 0x3dc16940. Offset to previous = 0xffffffc0
Object at 0x3dc16930. Offset to previous = 0xfffffff0
Object at 0x3dc16950. Offset to previous = 0x00000020
Object at 0x3dc16990. Offset to previous = 0x00000040
Object at 0x3dc169d0. Offset to previous = 0x00000040
Object at 0x3dc16a00. Offset to previous = 0x00000030
Object at 0x3dc16a10. Offset to previous = 0x00000010
Object at 0x3dc16a20. Offset to previous = 0x00000010
Object at 0x3dc16ba0. Offset to previous = 0x00000180
Object at 0x3dc16a80. Offset to previous = 0xfffffee0
Object at 0x3dc16c50. Offset to previous = 0x000001d0
Object at 0x3dc16b10. Offset to previous = 0xfffffec0
Object at 0x3dc16c10. Offset to previous = 0x00000100
Object at 0x3dc16c60. Offset to previous = 0x00000050
Object at 0x3dc16b80. Offset to previous = 0xffffff20
Object at 0x3dc16c00. Offset to previous = 0x00000080
Object at 0x3dc16c30. Offset to previous = 0x00000030
Object at 0x3dc16b70. Offset to previous = 0xffffff40
Object at 0x3dc16bf0. Offset to previous = 0x00000080
Object at 0x3dc16c20. Offset to previous = 0x00000030
Object at 0x3dc16b90. Offset to previous = 0xffffff70
Object at 0x3dc16c40. Offset to previous = 0x000000b0
Object at 0x3dc16c70. Offset to previous = 0x00000030
Object at 0x3dc16aa0. Offset to previous = 0xfffffe30
Object at 0x3dc16b50. Offset to previous = 0x000000b0
Object at 0x3dc16ae0. Offset to previous = 0xffffff90
Object at 0x3dc16a90. Offset to previous = 0xffffffb0
Object at 0x3dc16ab0. Offset to previous = 0x00000020
Object at 0x3dc16ac0. Offset to previous = 0x00000010
Object at 0x3dc16ad0. Offset to previous = 0x00000010
Object at 0x3dc16af0. Offset to previous = 0x00000020
Object at 0x3dc16b00. Offset to previous = 0x00000010
Object at 0x3dc16b60. Offset to previous = 0x00000060
Object at 0x3dc16bb0. Offset to previous = 0x00000050
Object at 0x3dc16b30. Offset to previous = 0xffffff80
Object at 0x3dc16b20. Offset to previous = 0xfffffff0
Object at 0x3dc16b40. Offset to previous = 0x00000020
Object at 0x3dc16bc0. Offset to previous = 0x00000080
Object at 0x3dc16bd0. Offset to previous = 0x00000010
Object at 0x3dc16be0. Offset to previous = 0x00000010
Object at 0x3dc16d40. Offset to previous = 0x00000160
Object at 0x3dc16e30. Offset to previous = 0x000000f0
Object at 0x3dc16d00. Offset to previous = 0xfffffed0
Object at 0x3dc16df0. Offset to previous = 0x000000f0
Object at 0x3dc16cc0. Offset to previous = 0xfffffed0
Object at 0x3dc16cd0. Offset to previous = 0x00000010
Object at 0x3dc16d10. Offset to previous = 0x00000040
Object at 0x3dc16e10. Offset to previous = 0x00000100
Object at 0x3dc16e50. Offset to previous = 0x00000040
Object at 0x3dc16c80. Offset to previous = 0xfffffe30
Object at 0x3dc16e00. Offset to previous = 0x00000180
Object at 0x3dc16cf0. Offset to previous = 0xfffffef0
Object at 0x3dc16e20. Offset to previous = 0x00000130
Object at 0x3dc16de0. Offset to previous = 0xffffffc0
Object at 0x3dc16ce0. Offset to previous = 0xffffff00
Object at 0x3dc16d90. Offset to previous = 0x000000b0
Object at 0x3dc16d70. Offset to previous = 0xffffffe0
Object at 0x3dc16da0. Offset to previous = 0x00000030
Object at 0x3dc16d20. Offset to previous = 0xffffff80
Object at 0x3dc16d80. Offset to previous = 0x00000060
Object at 0x3dc16d50. Offset to previous = 0xffffffd0
Object at 0x3dc16d30. Offset to previous = 0xffffffe0
Object at 0x3dc16db0. Offset to previous = 0x00000080
Object at 0x3dc16e60. Offset to previous = 0x000000b0
Object at 0x3dc16d60. Offset to previous = 0xffffff00
Object at 0x3dc16e70. Offset to previous = 0x00000110
Object at 0x3dc16e40. Offset to previous = 0xffffffd0
Object at 0x3dc16dc0. Offset to previous = 0xffffff80
Object at 0x3dc16dd0. Offset to previous = 0x00000010
Object at 0x3dc16c90. Offset to previous = 0xfffffec0
Object at 0x3dc16ca0. Offset to previous = 0x00000010
Object at 0x3dc16cb0. Offset to previous = 0x00000010
Object at 0x3dc16ec0. Offset to previous = 0x00000210
Object at 0x3dc16ed0. Offset to previous = 0x00000010
Object at 0x3dc16f30. Offset to previous = 0x00000060
Object at 0x3dc16ea0. Offset to previous = 0xffffff70
Object at 0x3dc16f70. Offset to previous = 0x000000d0
Object at 0x3dc16fa0. Offset to previous = 0x00000030
Object at 0x3dc16e80. Offset to previous = 0xfffffee0
Object at 0x3dc16f20. Offset to previous = 0x000000a0
Object at 0x3dc16f40. Offset to previous = 0x00000020
Object at 0x3dc16e90. Offset to previous = 0xffffff50
Object at 0x3dc16f90. Offset to previous = 0x00000100
Object at 0x3dc16fe0. Offset to previous = 0x00000050
Object at 0x3dc16f50. Offset to previous = 0xffffff70
Object at 0x3dc16ee0. Offset to previous = 0xffffff90
Object at 0x3dc16eb0. Offset to previous = 0xffffffd0
Object at 0x3dc16ef0. Offset to previous = 0x00000040
Object at 0x3dc16ff0. Offset to previous = 0x00000100
Object at 0x3dc16f80. Offset to previous = 0xffffff90
Object at 0x3dc16f60. Offset to previous = 0xffffffe0
Object at 0x3dc16fc0. Offset to previous = 0x00000060
Object at 0x3dc16f00. Offset to previous = 0xffffff40
Object at 0x3dc16fb0. Offset to previous = 0x000000b0
Object at 0x3dc16f10. Offset to previous = 0xffffff60
Object at 0x3dc16fd0. Offset to previous = 0x000000c0
Object at 0x3dc17160. Offset to previous = 0x00000190
Object at 0x3dc17080. Offset to previous = 0xffffff20
Object at 0x3dc17120. Offset to previous = 0x000000a0
Object at 0x3dc17240. Offset to previous = 0x00000120
Object at 0x3dc17270. Offset to previous = 0x00000030
Object at 0x3dc17220. Offset to previous = 0xffffffb0
Object at 0x3dc17180. Offset to previous = 0xffffff60
Object at 0x3dc170c0. Offset to previous = 0xffffff40
Object at 0x3dc17090. Offset to previous = 0xffffffd0
Object at 0x3dc17100. Offset to previous = 0x00000070
Object at 0x3dc170a0. Offset to previous = 0xffffffa0
Object at 0x3dc170b0. Offset to previous = 0x00000010
Object at 0x3dc17170. Offset to previous = 0x000000c0
Object at 0x3dc170f0. Offset to previous = 0xffffff80
Object at 0x3dc171b0. Offset to previous = 0x000000c0
Object at 0x3dc170d0. Offset to previous = 0xffffff20
Object at 0x3dc171d0. Offset to previous = 0x00000100
Object at 0x3dc17200. Offset to previous = 0x00000030
Object at 0x3dc17250. Offset to previous = 0x00000050
Object at 0x3dc170e0. Offset to previous = 0xfffffe90
Object at 0x3dc171c0. Offset to previous = 0x000000e0
Object at 0x3dc17110. Offset to previous = 0xffffff50
Object at 0x3dc17130. Offset to previous = 0x00000020
Object at 0x3dc17210. Offset to previous = 0x000000e0
Object at 0x3dc17190. Offset to previous = 0xffffff80
Object at 0x3dc17140. Offset to previous = 0xffffffb0
Object at 0x3dc171a0. Offset to previous = 0x00000060
Object at 0x3dc17150. Offset to previous = 0xffffffb0
Object at 0x3dc171e0. Offset to previous = 0x00000090
Object at 0x3dc17230. Offset to previous = 0x00000050
Object at 0x3dc17260. Offset to previous = 0x00000030
Object at 0x3dc171f0. Offset to previous = 0xffffff90
Object at 0x3dc172f0. Offset to previous = 0x00000100
Object at 0x3dc17350. Offset to previous = 0x00000060
Object at 0x3dc173c0. Offset to previous = 0x00000070
Object at 0x3dc173d0. Offset to previous = 0x00000010
Object at 0x3dc17420. Offset to previous = 0x00000050
Object at 0x3dc17370. Offset to previous = 0xffffff50
Object at 0x3dc172b0. Offset to previous = 0xffffff40
Object at 0x3dc173f0. Offset to previous = 0x00000140
Object at 0x3dc17400. Offset to previous = 0x00000010
Object at 0x3dc172d0. Offset to previous = 0xfffffed0
Object at 0x3dc17390. Offset to previous = 0x000000c0
Object at 0x3dc173e0. Offset to previous = 0x00000050
Object at 0x3dc17410. Offset to previous = 0x00000030
Object at 0x3dc17430. Offset to previous = 0x00000020
Object at 0x3dc172e0. Offset to previous = 0xfffffeb0
Object at 0x3dc17380. Offset to previous = 0x000000a0
Object at 0x3dc17440. Offset to previous = 0x000000c0
Object at 0x3dc17280. Offset to previous = 0xfffffe40
Object at 0x3dc173a0. Offset to previous = 0x00000120
Object at 0x3dc17360. Offset to previous = 0xffffffc0
Object at 0x3dc17450. Offset to previous = 0x000000f0
Object at 0x3dc17320. Offset to previous = 0xfffffed0
Object at 0x3dc173b0. Offset to previous = 0x00000090
Object at 0x3dc17470. Offset to previous = 0x000000c0
Object at 0x3dc172c0. Offset to previous = 0xfffffe50
Object at 0x3dc17340. Offset to previous = 0x00000080
Object at 0x3dc17460. Offset to previous = 0x00000120
Object at 0x3dc17290. Offset to previous = 0xfffffe30
Object at 0x3dc172a0. Offset to previous = 0x00000010
Object at 0x3dc17300. Offset to previous = 0x00000060
Object at 0x3dc17310. Offset to previous = 0x00000010
Object at 0x3dc17330. Offset to previous = 0x00000020
Object at 0x3dc174d0. Offset to previous = 0x000001a0
Object at 0x3dc175f0. Offset to previous = 0x00000120
Object at 0x3dc174e0. Offset to previous = 0xfffffef0
Object at 0x3dc174f0. Offset to previous = 0x00000010
Object at 0x3dc17600. Offset to previous = 0x00000110
Object at 0x3dc17660. Offset to previous = 0x00000060
Object at 0x3dc175e0. Offset to previous = 0xffffff80
Object at 0x3dc17510. Offset to previous = 0xffffff30
Object at 0x3dc17490. Offset to previous = 0xffffff80
Object at 0x3dc17620. Offset to previous = 0x00000190
Object at 0x3dc17650. Offset to previous = 0x00000030
Object at 0x3dc17670. Offset to previous = 0x00000020
Object at 0x3dc17540. Offset to previous = 0xfffffed0
Object at 0x3dc17610. Offset to previous = 0x000000d0
Object at 0x3dc17480. Offset to previous = 0xfffffe70
Object at 0x3dc174a0. Offset to previous = 0x00000020
Object at 0x3dc17520. Offset to previous = 0x00000080
Object at 0x3dc17550. Offset to previous = 0x00000030
Object at 0x3dc17580. Offset to previous = 0x00000030
Object at 0x3dc175b0. Offset to previous = 0x00000030
Object at 0x3dc175d0. Offset to previous = 0x00000020
Object at 0x3dc17590. Offset to previous = 0xffffffc0
Object at 0x3dc175c0. Offset to previous = 0x00000030
Object at 0x3dc17640. Offset to previous = 0x00000080
Object at 0x3dc17500. Offset to previous = 0xfffffec0
Object at 0x3dc17570. Offset to previous = 0x00000070
Object at 0x3dc17630. Offset to previous = 0x000000c0
Object at 0x3dc17530. Offset to previous = 0xffffff00
Object at 0x3dc175a0. Offset to previous = 0x00000070
Object at 0x3dc174b0. Offset to previous = 0xffffff10
Object at 0x3dc174c0. Offset to previous = 0x00000010
Object at 0x3dc17560. Offset to previous = 0x000000a0
Object at 0x3dc17820. Offset to previous = 0x000002c0
Object at 0x3dc17780. Offset to previous = 0xffffff60
Object at 0x3dc17760. Offset to previous = 0xffffffe0
Object at 0x3dc177e0. Offset to previous = 0x00000080
Object at 0x3dc17860. Offset to previous = 0x00000080
Object at 0x3dc177d0. Offset to previous = 0xffffff70
Object at 0x3dc176d0. Offset to previous = 0xffffff00
Object at 0x3dc177f0. Offset to previous = 0x00000120
Object at 0x3dc176e0. Offset to previous = 0xfffffef0
Object at 0x3dc176f0. Offset to previous = 0x00000010
Object at 0x3dc17800. Offset to previous = 0x00000110
Object at 0x3dc17870. Offset to previous = 0x00000070
Object at 0x3dc17810. Offset to previous = 0xffffffa0
Object at 0x3dc17710. Offset to previous = 0xffffff00
Object at 0x3dc17690. Offset to previous = 0xffffff80
Object at 0x3dc17830. Offset to previous = 0x000001a0
Object at 0x3dc17850. Offset to previous = 0x00000020
Object at 0x3dc17680. Offset to previous = 0xfffffe30
Object at 0x3dc17740. Offset to previous = 0x000000c0
Object at 0x3dc17840. Offset to previous = 0x00000100
Object at 0x3dc176a0. Offset to previous = 0xfffffe60
Object at 0x3dc176b0. Offset to previous = 0x00000010
Object at 0x3dc17720. Offset to previous = 0x00000070
Object at 0x3dc17750. Offset to previous = 0x00000030
Object at 0x3dc17790. Offset to previous = 0x00000040
Object at 0x3dc177b0. Offset to previous = 0x00000020
Object at 0x3dc176c0. Offset to previous = 0xffffff10
Object at 0x3dc177a0. Offset to previous = 0x000000e0
Object at 0x3dc177c0. Offset to previous = 0x00000020
Object at 0x3dc17700. Offset to previous = 0xffffff40
Object at 0x3dc17730. Offset to previous = 0x00000030
Object at 0x3dc17770. Offset to previous = 0x00000040
Object at 0x3dc17a20. Offset to previous = 0x000002b0
Object at 0x3dc17a10. Offset to previous = 0xfffffff0
Object at 0x3dc179a0. Offset to previous = 0xffffff90
Object at 0x3dc17990. Offset to previous = 0xfffffff0
Object at 0x3dc179c0. Offset to previous = 0x00000030
Object at 0x3dc178f0. Offset to previous = 0xffffff30
Object at 0x3dc179b0. Offset to previous = 0x000000c0
Object at 0x3dc17a70. Offset to previous = 0x000000c0
Object at 0x3dc179d0. Offset to previous = 0xffffff60
Object at 0x3dc179e0. Offset to previous = 0x00000010
Object at 0x3dc17950. Offset to previous = 0xffffff70
Object at 0x3dc17900. Offset to previous = 0xffffffb0
Object at 0x3dc179f0. Offset to previous = 0x000000f0
Object at 0x3dc17a00. Offset to previous = 0x00000010
Object at 0x3dc17960. Offset to previous = 0xffffff60
Object at 0x3dc178a0. Offset to previous = 0xffffff40
Object at 0x3dc17910. Offset to previous = 0x00000070
Object at 0x3dc17890. Offset to previous = 0xffffff80
Object at 0x3dc17a30. Offset to previous = 0x000001a0
Object at 0x3dc17a40. Offset to previous = 0x00000010
Object at 0x3dc17a50. Offset to previous = 0x00000010
Object at 0x3dc17970. Offset to previous = 0xffffff20
Object at 0x3dc178e0. Offset to previous = 0xffffff70
Object at 0x3dc17880. Offset to previous = 0xffffffa0
Object at 0x3dc17a60. Offset to previous = 0x000001e0
Object at 0x3dc178b0. Offset to previous = 0xfffffe50
Object at 0x3dc178c0. Offset to previous = 0x00000010
Object at 0x3dc178d0. Offset to previous = 0x00000010
Object at 0x3dc17980. Offset to previous = 0x000000b0
Object at 0x3dc17920. Offset to previous = 0xffffffa0
Object at 0x3dc17930. Offset to previous = 0x00000010
Object at 0x3dc17940. Offset to previous = 0x00000010
Object at 0x3dc17bd0. Offset to previous = 0x00000290
Object at 0x3dc17ba0. Offset to previous = 0xffffffd0
Object at 0x3dc17b40. Offset to previous = 0xffffffa0
Object at 0x3dc17be0. Offset to previous = 0x000000a0
Object at 0x3dc17c30. Offset to previous = 0x00000050
Object at 0x3dc17b50. Offset to previous = 0xffffff20
Object at 0x3dc17b10. Offset to previous = 0xffffffc0
Object at 0x3dc17c40. Offset to previous = 0x00000130
Object at 0x3dc17ad0. Offset to previous = 0xfffffe90
Object at 0x3dc17b60. Offset to previous = 0x00000090
Object at 0x3dc17ae0. Offset to previous = 0xffffff80
Object at 0x3dc17c70. Offset to previous = 0x00000190
Object at 0x3dc17b80. Offset to previous = 0xffffff10
Object at 0x3dc17bf0. Offset to previous = 0x00000070
Object at 0x3dc17a90. Offset to previous = 0xfffffea0
Object at 0x3dc17bb0. Offset to previous = 0x00000120
Object at 0x3dc17af0. Offset to previous = 0xffffff40
Object at 0x3dc17b70. Offset to previous = 0x00000080
Object at 0x3dc17c50. Offset to previous = 0x000000e0
Object at 0x3dc17c60. Offset to previous = 0x00000010
Object at 0x3dc17b00. Offset to previous = 0xfffffea0
Object at 0x3dc17b20. Offset to previous = 0x00000020
Object at 0x3dc17bc0. Offset to previous = 0x000000a0
Object at 0x3dc17c00. Offset to previous = 0x00000040
Object at 0x3dc17b30. Offset to previous = 0xffffff30
Object at 0x3dc17a80. Offset to previous = 0xffffff50
Object at 0x3dc17aa0. Offset to previous = 0x00000020
Object at 0x3dc17ab0. Offset to previous = 0x00000010
Object at 0x3dc17c10. Offset to previous = 0x00000160
Object at 0x3dc17b90. Offset to previous = 0xffffff80
Object at 0x3dc17ac0. Offset to previous = 0xffffff30
Object at 0x3dc17c20. Offset to previous = 0x00000160
Object at 0x3dc17e70. Offset to previous = 0x00000250
Object at 0x3dc17d20. Offset to previous = 0xfffffeb0
Object at 0x3dc17d60. Offset to previous = 0x00000040
Object at 0x3dc17da0. Offset to previous = 0x00000040
Object at 0x3dc17e50. Offset to previous = 0x000000b0
Object at 0x3dc17d70. Offset to previous = 0xffffff20
Object at 0x3dc17d40. Offset to previous = 0xffffffd0
Object at 0x3dc17d10. Offset to previous = 0xffffffd0
Object at 0x3dc17c80. Offset to previous = 0xffffff70
Object at 0x3dc17d30. Offset to previous = 0x000000b0
Object at 0x3dc17dc0. Offset to previous = 0x00000090
Object at 0x3dc17db0. Offset to previous = 0xfffffff0
Object at 0x3dc17df0. Offset to previous = 0x00000040
Object at 0x3dc17e20. Offset to previous = 0x00000030
Object at 0x3dc17dd0. Offset to previous = 0xffffffb0
Object at 0x3dc17c90. Offset to previous = 0xfffffec0
Object at 0x3dc17e60. Offset to previous = 0x000001d0
Object at 0x3dc17d50. Offset to previous = 0xfffffef0
Object at 0x3dc17e10. Offset to previous = 0x000000c0
Object at 0x3dc17ca0. Offset to previous = 0xfffffe90
Object at 0x3dc17d80. Offset to previous = 0x000000e0
Object at 0x3dc17e00. Offset to previous = 0x00000080
Object at 0x3dc17e30. Offset to previous = 0x00000030
Object at 0x3dc17d90. Offset to previous = 0xffffff60
Object at 0x3dc17e40. Offset to previous = 0x000000b0
Object at 0x3dc17cb0. Offset to previous = 0xfffffe70
Object at 0x3dc17de0. Offset to previous = 0x00000130
Object at 0x3dc17cc0. Offset to previous = 0xfffffee0
Object at 0x3dc17cd0. Offset to previous = 0x00000010
Object at 0x3dc17ce0. Offset to previous = 0x00000010
Object at 0x3dc17cf0. Offset to previous = 0x00000010
Object at 0x3dc17d00. Offset to previous = 0x00000010
Object at 0x3dc17fc0. Offset to previous = 0x000002c0
Object at 0x3dc17ea0. Offset to previous = 0xfffffee0
Object at 0x3dc17f90. Offset to previous = 0x000000f0
Object at 0x3dc17fd0. Offset to previous = 0x00000040
Object at 0x3dc17fb0. Offset to previous = 0xffffffe0
Object at 0x3dc17fe0. Offset to previous = 0x00000030
Object at 0x3dc17f20. Offset to previous = 0xffffff40
Object at 0x3dc17f30. Offset to previous = 0x00000010
Object at 0x3dc17f00. Offset to previous = 0xffffffd0
Object at 0x3dc17ff0. Offset to previous = 0x000000f0
Object at 0x3dc17e80. Offset to previous = 0xfffffe90
Object at 0x3dc17eb0. Offset to previous = 0x00000030
Object at 0x3dc17e90. Offset to previous = 0xffffffe0
Object at 0x3dc17ec0. Offset to previous = 0x00000030
Object at 0x3dc17f60. Offset to previous = 0x000000a0
Object at 0x3dc17ed0. Offset to previous = 0xffffff70
Object at 0x3dc17f40. Offset to previous = 0x00000070
Object at 0x3dc17ee0. Offset to previous = 0xffffffa0
Object at 0x3dc17f50. Offset to previous = 0x00000070
Object at 0x3dc17f70. Offset to previous = 0x00000020
Object at 0x3dc17f80. Offset to previous = 0x00000010
Object at 0x3dc17ef0. Offset to previous = 0xffffff70
Object at 0x3dc17f10. Offset to previous = 0x00000020
Object at 0x3dc17fa0. Offset to previous = 0x00000090
Object at 0x3dc291b0. Offset to previous = 0x00011210
Object at 0x3dc290d0. Offset to previous = 0xffffff20
Object at 0x3dc29210. Offset to previous = 0x00000140
Object at 0x3dc291e0. Offset to previous = 0xffffffd0
Object at 0x3dc290e0. Offset to previous = 0xffffff00
Object at 0x3dc29190. Offset to previous = 0x000000b0
Object at 0x3dc29170. Offset to previous = 0xffffffe0
Object at 0x3dc291a0. Offset to previous = 0x00000030
Object at 0x3dc290f0. Offset to previous = 0xffffff50
Object at 0x3dc29180. Offset to previous = 0x00000090
Object at 0x3dc29140. Offset to previous = 0xffffffc0
Object at 0x3dc29100. Offset to previous = 0xffffffc0
Object at 0x3dc291c0. Offset to previous = 0x000000c0
Object at 0x3dc29260. Offset to previous = 0x000000a0
Object at 0x3dc29110. Offset to previous = 0xfffffeb0
Object at 0x3dc29270. Offset to previous = 0x00000160
Object at 0x3dc29220. Offset to previous = 0xffffffb0
Object at 0x3dc291d0. Offset to previous = 0xffffffb0
Object at 0x3dc29120. Offset to previous = 0xffffff50
Object at 0x3dc291f0. Offset to previous = 0x000000d0
Object at 0x3dc29130. Offset to previous = 0xffffff40
Object at 0x3dc29090. Offset to previous = 0xffffff60
Object at 0x3dc29150. Offset to previous = 0x000000c0
Object at 0x3dc29160. Offset to previous = 0x00000010
Object at 0x3dc29200. Offset to previous = 0x000000a0
Object at 0x3dc290b0. Offset to previous = 0xfffffeb0
Object at 0x3dc29230. Offset to previous = 0x00000180
Object at 0x3dc29240. Offset to previous = 0x00000010
Object at 0x3dc29080. Offset to previous = 0xfffffe40
Object at 0x3dc29250. Offset to previous = 0x000001d0
Object at 0x3dc290a0. Offset to previous = 0xfffffe50
Object at 0x3dc290c0. Offset to previous = 0x00000020
Object at 0x3dc293b0. Offset to previous = 0x000002f0
Object at 0x3dc29410. Offset to previous = 0x00000060
Object at 0x3dc29310. Offset to previous = 0xffffff00
Object at 0x3dc292b0. Offset to previous = 0xffffffa0
Object at 0x3dc29460. Offset to previous = 0x000001b0
Object at 0x3dc29430. Offset to previous = 0xffffffd0
Object at 0x3dc293c0. Offset to previous = 0xffffff90
Object at 0x3dc29320. Offset to previous = 0xffffff60
Object at 0x3dc292c0. Offset to previous = 0xffffffa0
Object at 0x3dc29390. Offset to previous = 0x000000d0
Object at 0x3dc293d0. Offset to previous = 0x00000040
Object at 0x3dc29440. Offset to previous = 0x00000070
Object at 0x3dc293e0. Offset to previous = 0xffffffa0
Object at 0x3dc292d0. Offset to previous = 0xfffffef0
Object at 0x3dc29360. Offset to previous = 0x00000090
Object at 0x3dc29280. Offset to previous = 0xffffff20
Object at 0x3dc29330. Offset to previous = 0x000000b0
Object at 0x3dc29450. Offset to previous = 0x00000120
Object at 0x3dc29470. Offset to previous = 0x00000020
Object at 0x3dc29420. Offset to previous = 0xffffffb0
Object at 0x3dc29380. Offset to previous = 0xffffff60
Object at 0x3dc292e0. Offset to previous = 0xffffff60
Object at 0x3dc29290. Offset to previous = 0xffffffb0
Object at 0x3dc29300. Offset to previous = 0x00000070
Object at 0x3dc292a0. Offset to previous = 0xffffffa0
Object at 0x3dc292f0. Offset to previous = 0x00000050
Object at 0x3dc29370. Offset to previous = 0x00000080
Object at 0x3dc29340. Offset to previous = 0xffffffd0
Object at 0x3dc293f0. Offset to previous = 0x000000b0
Object at 0x3dc29350. Offset to previous = 0xffffff60
Object at 0x3dc29400. Offset to previous = 0x000000b0
Object at 0x3dc293a0. Offset to previous = 0xffffffa0
Object at 0x3dc29640. Offset to previous = 0x000002a0
Object at 0x3dc29480. Offset to previous = 0xfffffe40
Object at 0x3dc295b0. Offset to previous = 0x00000130
Object at 0x3dc29490. Offset to previous = 0xfffffee0
Object at 0x3dc294c0. Offset to previous = 0x00000030
Object at 0x3dc29600. Offset to previous = 0x00000140
Object at 0x3dc29570. Offset to previous = 0xffffff70
Object at 0x3dc294d0. Offset to previous = 0xffffff60
Object at 0x3dc29580. Offset to previous = 0x000000b0
Object at 0x3dc294f0. Offset to previous = 0xffffff70
Object at 0x3dc294a0. Offset to previous = 0xffffffb0
Object at 0x3dc29610. Offset to previous = 0x00000170
Object at 0x3dc29660. Offset to previous = 0x00000050
Object at 0x3dc295a0. Offset to previous = 0xffffff40
Object at 0x3dc29500. Offset to previous = 0xffffff60
Object at 0x3dc29550. Offset to previous = 0x00000050
Object at 0x3dc295c0. Offset to previous = 0x00000070
Object at 0x3dc295d0. Offset to previous = 0x00000010
Object at 0x3dc29620. Offset to previous = 0x00000050
Object at 0x3dc29590. Offset to previous = 0xffffff70
Object at 0x3dc294b0. Offset to previous = 0xffffff20
Object at 0x3dc295f0. Offset to previous = 0x00000140
Object at 0x3dc29630. Offset to previous = 0x00000040
Object at 0x3dc294e0. Offset to previous = 0xfffffeb0
Object at 0x3dc295e0. Offset to previous = 0x00000100
Object at 0x3dc29650. Offset to previous = 0x00000070
Object at 0x3dc29670. Offset to previous = 0x00000020
Object at 0x3dc29510. Offset to previous = 0xfffffea0
Object at 0x3dc29520. Offset to previous = 0x00000010
Object at 0x3dc29530. Offset to previous = 0x00000010
Object at 0x3dc29540. Offset to previous = 0x00000010
Object at 0x3dc29560. Offset to previous = 0x00000020
Object at 0x3dc29770. Offset to previous = 0x00000210
Object at 0x3dc29760. Offset to previous = 0xfffffff0
Object at 0x3dc29850. Offset to previous = 0x000000f0
Object at 0x3dc29780. Offset to previous = 0xffffff30
Object at 0x3dc29680. Offset to previous = 0xffffff00
Object at 0x3dc29720. Offset to previous = 0x000000a0
Object at 0x3dc29840. Offset to previous = 0x00000120
Object at 0x3dc29870. Offset to previous = 0x00000030
Object at 0x3dc29820. Offset to previous = 0xffffffb0
Object at 0x3dc29790. Offset to previous = 0xffffff70
Object at 0x3dc296c0. Offset to previous = 0xffffff30
Object at 0x3dc29690. Offset to previous = 0xffffffd0
Object at 0x3dc29700. Offset to previous = 0x00000070
Object at 0x3dc296a0. Offset to previous = 0xffffffa0
Object at 0x3dc296b0. Offset to previous = 0x00000010
Object at 0x3dc297a0. Offset to previous = 0x000000f0
Object at 0x3dc296f0. Offset to previous = 0xffffff50
Object at 0x3dc297b0. Offset to previous = 0x000000c0
Object at 0x3dc296d0. Offset to previous = 0xffffff20
Object at 0x3dc297d0. Offset to previous = 0x00000100
Object at 0x3dc29800. Offset to previous = 0x00000030
Object at 0x3dc29860. Offset to previous = 0x00000060
Object at 0x3dc296e0. Offset to previous = 0xfffffe80
Object at 0x3dc297c0. Offset to previous = 0x000000e0
Object at 0x3dc29710. Offset to previous = 0xffffff50
Object at 0x3dc29730. Offset to previous = 0x00000020
Object at 0x3dc29810. Offset to previous = 0x000000e0
Object at 0x3dc297e0. Offset to previous = 0xffffffd0
Object at 0x3dc29740. Offset to previous = 0xffffff60
Object at 0x3dc297f0. Offset to previous = 0x000000b0
Object at 0x3dc29750. Offset to previous = 0xffffff60
Object at 0x3dc29830. Offset to previous = 0x000000e0
Object at 0x3dc29a10. Offset to previous = 0x000001e0
Object at 0x3dc29a60. Offset to previous = 0x00000050
Object at 0x3dc299a0. Offset to previous = 0xffffff40
Object at 0x3dc298f0. Offset to previous = 0xffffff50
Object at 0x3dc29950. Offset to previous = 0x00000060
Object at 0x3dc299c0. Offset to previous = 0x00000070
Object at 0x3dc299d0. Offset to previous = 0x00000010
Object at 0x3dc29a20. Offset to previous = 0x00000050
Object at 0x3dc29970. Offset to previous = 0xffffff50
Object at 0x3dc298b0. Offset to previous = 0xffffff40
Object at 0x3dc299f0. Offset to previous = 0x00000140
Object at 0x3dc29a00. Offset to previous = 0x00000010
Object at 0x3dc298d0. Offset to previous = 0xfffffed0
Object at 0x3dc29990. Offset to previous = 0x000000c0
Object at 0x3dc299e0. Offset to previous = 0x00000050
Object at 0x3dc29a30. Offset to previous = 0x00000050
Object at 0x3dc29a40. Offset to previous = 0x00000010
Object at 0x3dc298e0. Offset to previous = 0xfffffea0
Object at 0x3dc29980. Offset to previous = 0x000000a0
Object at 0x3dc29a50. Offset to previous = 0x000000d0
Object at 0x3dc29880. Offset to previous = 0xfffffe30
Object at 0x3dc299b0. Offset to previous = 0x00000130
Object at 0x3dc29960. Offset to previous = 0xffffffb0
Object at 0x3dc29a70. Offset to previous = 0x00000110
Object at 0x3dc29920. Offset to previous = 0xfffffeb0
Object at 0x3dc29890. Offset to previous = 0xffffff70
Object at 0x3dc298a0. Offset to previous = 0x00000010
Object at 0x3dc298c0. Offset to previous = 0x00000020
Object at 0x3dc29940. Offset to previous = 0x00000080
Object at 0x3dc29900. Offset to previous = 0xffffffc0
Object at 0x3dc29910. Offset to previous = 0x00000010
Object at 0x3dc29930. Offset to previous = 0x00000020
Object at 0x3dc29be0. Offset to previous = 0x000002b0
Object at 0x3dc29c60. Offset to previous = 0x00000080
Object at 0x3dc29bd0. Offset to previous = 0xffffff70
Object at 0x3dc29ad0. Offset to previous = 0xffffff00
Object at 0x3dc29bf0. Offset to previous = 0x00000120
Object at 0x3dc29ae0. Offset to previous = 0xfffffef0
Object at 0x3dc29af0. Offset to previous = 0x00000010
Object at 0x3dc29c00. Offset to previous = 0x00000110
Object at 0x3dc29c70. Offset to previous = 0x00000070
Object at 0x3dc29c10. Offset to previous = 0xffffffa0
Object at 0x3dc29b10. Offset to previous = 0xffffff00
Object at 0x3dc29a90. Offset to previous = 0xffffff80
Object at 0x3dc29c20. Offset to previous = 0x00000190
Object at 0x3dc29c50. Offset to previous = 0x00000030
Object at 0x3dc29a80. Offset to previous = 0xfffffe30
Object at 0x3dc29b40. Offset to previous = 0x000000c0
Object at 0x3dc29c30. Offset to previous = 0x000000f0
Object at 0x3dc29aa0. Offset to previous = 0xfffffe70
Object at 0x3dc29ab0. Offset to previous = 0x00000010
Object at 0x3dc29b20. Offset to previous = 0x00000070
Object at 0x3dc29b50. Offset to previous = 0x00000030
Object at 0x3dc29b80. Offset to previous = 0x00000030
Object at 0x3dc29bb0. Offset to previous = 0x00000030
Object at 0x3dc29c40. Offset to previous = 0x00000090
Object at 0x3dc29b90. Offset to previous = 0xffffff50
Object at 0x3dc29bc0. Offset to previous = 0x00000030
Object at 0x3dc29ac0. Offset to previous = 0xffffff00
Object at 0x3dc29b00. Offset to previous = 0x00000040
Object at 0x3dc29b70. Offset to previous = 0x00000070
Object at 0x3dc29b30. Offset to previous = 0xffffffc0
Object at 0x3dc29b60. Offset to previous = 0x00000030
Object at 0x3dc29ba0. Offset to previous = 0x00000040
Object at 0x3dc29d90. Offset to previous = 0x000001f0
Object at 0x3dc29dc0. Offset to previous = 0x00000030
Object at 0x3dc29cf0. Offset to previous = 0xffffff30
Object at 0x3dc29db0. Offset to previous = 0x000000c0
Object at 0x3dc29e70. Offset to previous = 0x000000c0
Object at 0x3dc29da0. Offset to previous = 0xffffff30
Object at 0x3dc29dd0. Offset to previous = 0x00000030
Object at 0x3dc29d50. Offset to previous = 0xffffff80
Object at 0x3dc29d00. Offset to previous = 0xffffffb0
Object at 0x3dc29de0. Offset to previous = 0x000000e0
Object at 0x3dc29df0. Offset to previous = 0x00000010
Object at 0x3dc29d60. Offset to previous = 0xffffff70
Object at 0x3dc29ca0. Offset to previous = 0xffffff40
Object at 0x3dc29d10. Offset to previous = 0x00000070
Object at 0x3dc29c90. Offset to previous = 0xffffff80
Object at 0x3dc29e00. Offset to previous = 0x00000170
Object at 0x3dc29e30. Offset to previous = 0x00000030
Object at 0x3dc29e50. Offset to previous = 0x00000020
Object at 0x3dc29d70. Offset to previous = 0xffffff20
Object at 0x3dc29ce0. Offset to previous = 0xffffff70
Object at 0x3dc29c80. Offset to previous = 0xffffffa0
Object at 0x3dc29e10. Offset to previous = 0x00000190
Object at 0x3dc29e60. Offset to previous = 0x00000050
Object at 0x3dc29e20. Offset to previous = 0xffffffc0
Object at 0x3dc29e40. Offset to previous = 0x00000020
Object at 0x3dc29d80. Offset to previous = 0xffffff40
Object at 0x3dc29d20. Offset to previous = 0xffffffa0
Object at 0x3dc29cb0. Offset to previous = 0xffffff90
Object at 0x3dc29d30. Offset to previous = 0x00000080
Object at 0x3dc29cc0. Offset to previous = 0xffffff90
Object at 0x3dc29cd0. Offset to previous = 0x00000010
Object at 0x3dc29d40. Offset to previous = 0x00000070
Object at 0x3dc29f80. Offset to previous = 0x00000240
Object at 0x3dc29fc0. Offset to previous = 0x00000040
Object at 0x3dc29f20. Offset to previous = 0xffffff60
Object at 0x3dc29ef0. Offset to previous = 0xffffffd0
Object at 0x3dc29fd0. Offset to previous = 0x000000e0
Object at 0x3dc29eb0. Offset to previous = 0xfffffee0
Object at 0x3dc29f10. Offset to previous = 0x00000060
Object at 0x3dc29ec0. Offset to previous = 0xffffffb0
Object at 0x3dc29ff0. Offset to previous = 0x00000130
Object at 0x3dc29f40. Offset to previous = 0xffffff50
Object at 0x3dc29f90. Offset to previous = 0x00000050
Object at 0x3dc29e80. Offset to previous = 0xfffffef0
Object at 0x3dc29f70. Offset to previous = 0x000000f0
Object at 0x3dc29ed0. Offset to previous = 0xffffff60
Object at 0x3dc29f30. Offset to previous = 0x00000060
Object at 0x3dc29fe0. Offset to previous = 0x000000b0
Object at 0x3dc29e90. Offset to previous = 0xfffffeb0
Object at 0x3dc29f00. Offset to previous = 0x00000070
Object at 0x3dc29f50. Offset to previous = 0x00000050
Object at 0x3dc29fa0. Offset to previous = 0x00000050
Object at 0x3dc29fb0. Offset to previous = 0x00000010
Object at 0x3dc29f60. Offset to previous = 0xffffffb0
Object at 0x3dc29ea0. Offset to previous = 0xffffff40
Object at 0x3dc29ee0. Offset to previous = 0x00000040
Object at 0x3dc2a120. Offset to previous = 0x00000240
Object at 0x3dc2a1a0. Offset to previous = 0x00000080
Object at 0x3dc2a080. Offset to previous = 0xfffffee0
Object at 0x3dc2a170. Offset to previous = 0x000000f0
Object at 0x3dc2a180. Offset to previous = 0x00000010
Object at 0x3dc2a160. Offset to previous = 0xffffffe0
Object at 0x3dc2a090. Offset to previous = 0xffffff30
Object at 0x3dc2a190. Offset to previous = 0x00000100
Object at 0x3dc2a1b0. Offset to previous = 0x00000020
Object at 0x3dc2a250. Offset to previous = 0x000000a0
Object at 0x3dc2a1c0. Offset to previous = 0xffffff70
Object at 0x3dc2a140. Offset to previous = 0xffffff80
Object at 0x3dc2a110. Offset to previous = 0xffffffd0
Object at 0x3dc2a0a0. Offset to previous = 0xffffff90
Object at 0x3dc2a130. Offset to previous = 0x00000090
Object at 0x3dc2a1d0. Offset to previous = 0x000000a0
Object at 0x3dc2a1e0. Offset to previous = 0x00000010
Object at 0x3dc2a1f0. Offset to previous = 0x00000010
Object at 0x3dc2a220. Offset to previous = 0x00000030
Object at 0x3dc2a200. Offset to previous = 0xffffffe0
Object at 0x3dc2a0b0. Offset to previous = 0xfffffeb0
Object at 0x3dc2a260. Offset to previous = 0x000001b0
Object at 0x3dc2a150. Offset to previous = 0xfffffef0
Object at 0x3dc2a210. Offset to previous = 0x000000c0
Object at 0x3dc2a270. Offset to previous = 0x00000060
Object at 0x3dc2a230. Offset to previous = 0xffffffc0
Object at 0x3dc2a240. Offset to previous = 0x00000010
Object at 0x3dc2a0c0. Offset to previous = 0xfffffe80
Object at 0x3dc2a0d0. Offset to previous = 0x00000010
Object at 0x3dc2a0e0. Offset to previous = 0x00000010
Object at 0x3dc2a0f0. Offset to previous = 0x00000010
Object at 0x3dc2a100. Offset to previous = 0x00000010
Object at 0x3dc2a400. Offset to previous = 0x00000300
Object at 0x3dc2a430. Offset to previous = 0x00000030
Object at 0x3dc2a2a0. Offset to previous = 0xfffffe70
Object at 0x3dc2a350. Offset to previous = 0x000000b0
Object at 0x3dc2a2e0. Offset to previous = 0xffffff90
Object at 0x3dc2a440. Offset to previous = 0x00000160
Object at 0x3dc2a2b0. Offset to previous = 0xfffffe70
Object at 0x3dc2a3f0. Offset to previous = 0x00000140
Object at 0x3dc2a450. Offset to previous = 0x00000060
Object at 0x3dc2a420. Offset to previous = 0xffffffd0
Object at 0x3dc2a460. Offset to previous = 0x00000040
Object at 0x3dc2a360. Offset to previous = 0xffffff00
Object at 0x3dc2a370. Offset to previous = 0x00000010
Object at 0x3dc2a330. Offset to previous = 0xffffffc0
Object at 0x3dc2a470. Offset to previous = 0x00000140
Object at 0x3dc2a280. Offset to previous = 0xfffffe10
Object at 0x3dc2a2c0. Offset to previous = 0x00000040
Object at 0x3dc2a290. Offset to previous = 0xffffffd0
Object at 0x3dc2a2d0. Offset to previous = 0x00000040
Object at 0x3dc2a340. Offset to previous = 0x00000070
Object at 0x3dc2a2f0. Offset to previous = 0xffffffb0
Object at 0x3dc2a300. Offset to previous = 0x00000010
Object at 0x3dc2a410. Offset to previous = 0x00000110
Object at 0x3dc2a310. Offset to previous = 0xffffff00
Object at 0x3dc2a320. Offset to previous = 0x00000010
Object at 0x3dc2a380. Offset to previous = 0x00000060
Object at 0x3dc2a3e0. Offset to previous = 0x00000060
Object at 0x3dc2a390. Offset to previous = 0xffffffb0
Object at 0x3dc2a3a0. Offset to previous = 0x00000010
Object at 0x3dc2a3b0. Offset to previous = 0x00000010
Object at 0x3dc2a3c0. Offset to previous = 0x00000010
Object at 0x3dc2a3d0. Offset to previous = 0x00000010
Object at 0x3dc2a5e0. Offset to previous = 0x00000210
Object at 0x3dc2a4d0. Offset to previous = 0xfffffef0
Object at 0x3dc2a590. Offset to previous = 0x000000c0
Object at 0x3dc2a570. Offset to previous = 0xffffffe0
Object at 0x3dc2a5a0. Offset to previous = 0x00000030
Object at 0x3dc2a4e0. Offset to previous = 0xffffff40
Object at 0x3dc2a580. Offset to previous = 0x000000a0
Object at 0x3dc2a540. Offset to previous = 0xffffffc0
Object at 0x3dc2a4f0. Offset to previous = 0xffffffb0
Object at 0x3dc2a5b0. Offset to previous = 0x000000c0
Object at 0x3dc2a660. Offset to previous = 0x000000b0
Object at 0x3dc2a500. Offset to previous = 0xfffffea0
Object at 0x3dc2a670. Offset to previous = 0x00000170
Object at 0x3dc2a620. Offset to previous = 0xffffffb0
Object at 0x3dc2a5c0. Offset to previous = 0xffffffa0
Object at 0x3dc2a510. Offset to previous = 0xffffff50
Object at 0x3dc2a5f0. Offset to previous = 0x000000e0
Object at 0x3dc2a520. Offset to previous = 0xffffff30
Object at 0x3dc2a490. Offset to previous = 0xffffff70
Object at 0x3dc2a530. Offset to previous = 0x000000a0
Object at 0x3dc2a550. Offset to previous = 0x00000020
Object at 0x3dc2a5d0. Offset to previous = 0x00000080
Object at 0x3dc2a4b0. Offset to previous = 0xfffffee0
Object at 0x3dc2a600. Offset to previous = 0x00000150
Object at 0x3dc2a610. Offset to previous = 0x00000010
Object at 0x3dc2a480. Offset to previous = 0xfffffe70
Object at 0x3dc2a560. Offset to previous = 0x000000e0
Object at 0x3dc2a630. Offset to previous = 0x000000d0
Object at 0x3dc2a4a0. Offset to previous = 0xfffffe70
Object at 0x3dc2a640. Offset to previous = 0x000001a0
Object at 0x3dc2a650. Offset to previous = 0x00000010
Object at 0x3dc2a4c0. Offset to previous = 0xfffffe70
Object at 0x3dc2a6b0. Offset to previous = 0x000001f0
Object at 0x3dc2a860. Offset to previous = 0x000001b0
Object at 0x3dc2a830. Offset to previous = 0xffffffd0
Object at 0x3dc2a7c0. Offset to previous = 0xffffff90
Object at 0x3dc2a720. Offset to previous = 0xffffff60
Object at 0x3dc2a6c0. Offset to previous = 0xffffffa0
Object at 0x3dc2a790. Offset to previous = 0x000000d0
Object at 0x3dc2a7d0. Offset to previous = 0x00000040
Object at 0x3dc2a840. Offset to previous = 0x00000070
Object at 0x3dc2a7e0. Offset to previous = 0xffffffa0
Object at 0x3dc2a6d0. Offset to previous = 0xfffffef0
Object at 0x3dc2a690. Offset to previous = 0xffffffc0
Object at 0x3dc2a7b0. Offset to previous = 0x00000120
Object at 0x3dc2a6e0. Offset to previous = 0xffffff30
Object at 0x3dc2a760. Offset to previous = 0x00000080
Object at 0x3dc2a850. Offset to previous = 0x000000f0
Object at 0x3dc2a870. Offset to previous = 0x00000020
Object at 0x3dc2a6f0. Offset to previous = 0xfffffe80
Object at 0x3dc2a710. Offset to previous = 0x00000020
Object at 0x3dc2a7f0. Offset to previous = 0x000000e0
Object at 0x3dc2a800. Offset to previous = 0x00000010
Object at 0x3dc2a700. Offset to previous = 0xffffff00
Object at 0x3dc2a680. Offset to previous = 0xffffff80
Object at 0x3dc2a6a0. Offset to previous = 0x00000020
Object at 0x3dc2a730. Offset to previous = 0x00000090
Object at 0x3dc2a7a0. Offset to previous = 0x00000070
Object at 0x3dc2a740. Offset to previous = 0xffffffa0
Object at 0x3dc2a770. Offset to previous = 0x00000030
Object at 0x3dc2a780. Offset to previous = 0x00000010
Object at 0x3dc2a810. Offset to previous = 0x00000090
Object at 0x3dc2a750. Offset to previous = 0xffffff40
Object at 0x3dc2a820. Offset to previous = 0x000000d0
Object at 0x3dc2a9a0. Offset to previous = 0x00000180
Object at 0x3dc2aa50. Offset to previous = 0x000000b0
Object at 0x3dc2a960. Offset to previous = 0xffffff10
Object at 0x3dc2a940. Offset to previous = 0xffffffe0
Object at 0x3dc2a910. Offset to previous = 0xffffffd0
Object at 0x3dc2a880. Offset to previous = 0xffffff70
Object at 0x3dc2a920. Offset to previous = 0x000000a0
Object at 0x3dc2a9c0. Offset to previous = 0x000000a0
Object at 0x3dc2a9b0. Offset to previous = 0xfffffff0
Object at 0x3dc2a9f0. Offset to previous = 0x00000040
Object at 0x3dc2aa20. Offset to previous = 0x00000030
Object at 0x3dc2a9d0. Offset to previous = 0xffffffb0
Object at 0x3dc2a890. Offset to previous = 0xfffffec0
Object at 0x3dc2aa60. Offset to previous = 0x000001d0
Object at 0x3dc2a930. Offset to previous = 0xfffffed0
Object at 0x3dc2aa10. Offset to previous = 0x000000e0
Object at 0x3dc2aa70. Offset to previous = 0x00000060
Object at 0x3dc2a980. Offset to previous = 0xffffff10
Object at 0x3dc2aa00. Offset to previous = 0x00000080
Object at 0x3dc2aa30. Offset to previous = 0x00000030
Object at 0x3dc2a970. Offset to previous = 0xffffff40
Object at 0x3dc2aa40. Offset to previous = 0x000000d0
Object at 0x3dc2a8a0. Offset to previous = 0xfffffe60
Object at 0x3dc2a990. Offset to previous = 0x000000f0
Object at 0x3dc2a8b0. Offset to previous = 0xffffff20
Object at 0x3dc2a8c0. Offset to previous = 0x00000010
Object at 0x3dc2a8d0. Offset to previous = 0x00000010
Object at 0x3dc2a950. Offset to previous = 0x00000080
Object at 0x3dc2a8e0. Offset to previous = 0xffffff90
Object at 0x3dc2a8f0. Offset to previous = 0x00000010
Object at 0x3dc2a900. Offset to previous = 0x00000010
Object at 0x3dc2a9e0. Offset to previous = 0x000000e0
Object at 0x3dc2ac40. Offset to previous = 0x00000260
Object at 0x3dc2ac20. Offset to previous = 0xffffffe0
Object at 0x3dc2ac50. Offset to previous = 0x00000030
Object at 0x3dc2ab50. Offset to previous = 0xffffff00
Object at 0x3dc2ab60. Offset to previous = 0x00000010
Object at 0x3dc2ab30. Offset to previous = 0xffffffd0
Object at 0x3dc2ac30. Offset to previous = 0x00000100
Object at 0x3dc2ac60. Offset to previous = 0x00000030
Object at 0x3dc2aaa0. Offset to previous = 0xfffffe40
Object at 0x3dc2ac70. Offset to previous = 0x000001d0
Object at 0x3dc2aa80. Offset to previous = 0xfffffe10
Object at 0x3dc2ab40. Offset to previous = 0x000000c0
Object at 0x3dc2aa90. Offset to previous = 0xffffff50
Object at 0x3dc2ab00. Offset to previous = 0x00000070
Object at 0x3dc2abf0. Offset to previous = 0x000000f0
Object at 0x3dc2aac0. Offset to previous = 0xfffffed0
Object at 0x3dc2ac00. Offset to previous = 0x00000140
Object at 0x3dc2aab0. Offset to previous = 0xfffffeb0
Object at 0x3dc2abe0. Offset to previous = 0x00000130
Object at 0x3dc2aad0. Offset to previous = 0xfffffef0
Object at 0x3dc2aae0. Offset to previous = 0x00000010
Object at 0x3dc2abb0. Offset to previous = 0x000000d0
Object at 0x3dc2aaf0. Offset to previous = 0xffffff40
Object at 0x3dc2ac10. Offset to previous = 0x00000120
Object at 0x3dc2ab10. Offset to previous = 0xffffff00
Object at 0x3dc2ab20. Offset to previous = 0x00000010
Object at 0x3dc2ab90. Offset to previous = 0x00000070
Object at 0x3dc2ab70. Offset to previous = 0xffffffe0
Object at 0x3dc2aba0. Offset to previous = 0x00000030
Object at 0x3dc2ab80. Offset to previous = 0xffffffe0
Object at 0x3dc2abc0. Offset to previous = 0x00000040
Object at 0x3dc2abd0. Offset to previous = 0x00000010
Object at 0x3dc2acd0. Offset to previous = 0x00000100
Object at 0x3dc2ad70. Offset to previous = 0x000000a0
Object at 0x3dc2ae60. Offset to previous = 0x000000f0
Object at 0x3dc2ace0. Offset to previous = 0xfffffe80
Object at 0x3dc2ae70. Offset to previous = 0x00000190
Object at 0x3dc2ae20. Offset to previous = 0xffffffb0
Object at 0x3dc2ad80. Offset to previous = 0xffffff60
Object at 0x3dc2acf0. Offset to previous = 0xffffff70
Object at 0x3dc2adf0. Offset to previous = 0x00000100
Object at 0x3dc2ad20. Offset to previous = 0xffffff30
Object at 0x3dc2ac90. Offset to previous = 0xffffff70
Object at 0x3dc2ad00. Offset to previous = 0x00000070
Object at 0x3dc2ad10. Offset to previous = 0x00000010
Object at 0x3dc2ad90. Offset to previous = 0x00000080
Object at 0x3dc2acb0. Offset to previous = 0xffffff20
Object at 0x3dc2adc0. Offset to previous = 0x00000110
Object at 0x3dc2ae10. Offset to previous = 0x00000050
Object at 0x3dc2ac80. Offset to previous = 0xfffffe70
Object at 0x3dc2ad50. Offset to previous = 0x000000d0
Object at 0x3dc2ad60. Offset to previous = 0x00000010
Object at 0x3dc2aca0. Offset to previous = 0xffffff40
Object at 0x3dc2adb0. Offset to previous = 0x00000110
Object at 0x3dc2ae30. Offset to previous = 0x00000080
Object at 0x3dc2ad30. Offset to previous = 0xffffff00
Object at 0x3dc2acc0. Offset to previous = 0xffffff90
Object at 0x3dc2ad40. Offset to previous = 0x00000080
Object at 0x3dc2ae40. Offset to previous = 0x00000100
Object at 0x3dc2add0. Offset to previous = 0xffffff90
Object at 0x3dc2ada0. Offset to previous = 0xffffffd0
Object at 0x3dc2ade0. Offset to previous = 0x00000040
Object at 0x3dc2ae00. Offset to previous = 0x00000020
Object at 0x3dc2ae50. Offset to previous = 0x00000050
Object at 0x3dc2afd0. Offset to previous = 0x00000180
Object at 0x3dc2af90. Offset to previous = 0xffffffc0
Object at 0x3dc2aec0. Offset to previous = 0xffffff30
Object at 0x3dc2af20. Offset to previous = 0x00000060
Object at 0x3dc2ae80. Offset to previous = 0xffffff60
Object at 0x3dc2af00. Offset to previous = 0x00000080
Object at 0x3dc2afe0. Offset to previous = 0x000000e0
Object at 0x3dc2ae90. Offset to previous = 0xfffffeb0
Object at 0x3dc2aff0. Offset to previous = 0x00000160
Object at 0x3dc2af60. Offset to previous = 0xffffff70
Object at 0x3dc2aed0. Offset to previous = 0xffffff70
Object at 0x3dc2aea0. Offset to previous = 0xffffffd0
Object at 0x3dc2af10. Offset to previous = 0x00000070
Object at 0x3dc2aee0. Offset to previous = 0xffffffd0
Object at 0x3dc2aeb0. Offset to previous = 0xffffffd0
Object at 0x3dc2afa0. Offset to previous = 0x000000f0
Object at 0x3dc2af40. Offset to previous = 0xffffffa0
Object at 0x3dc2aef0. Offset to previous = 0xffffffb0
Object at 0x3dc2af70. Offset to previous = 0x00000080
Object at 0x3dc2af30. Offset to previous = 0xffffffc0
Object at 0x3dc2af50. Offset to previous = 0x00000020
Object at 0x3dc2af80. Offset to previous = 0x00000030
Object at 0x3dc2afb0. Offset to previous = 0x00000030
Object at 0x3dc2afc0. Offset to previous = 0x00000010
Object at 0x3dc2b1b0. Offset to previous = 0x000001f0
Object at 0x3dc2b170. Offset to previous = 0xffffffc0
Object at 0x3dc2b180. Offset to previous = 0x00000010
Object at 0x3dc2b0c0. Offset to previous = 0xffffff40
Object at 0x3dc2b0b0. Offset to previous = 0xfffffff0
Object at 0x3dc2b1c0. Offset to previous = 0x00000110
Object at 0x3dc2b0d0. Offset to previous = 0xffffff10
Object at 0x3dc2b270. Offset to previous = 0x000001a0
Object at 0x3dc2b210. Offset to previous = 0xffffffa0
Object at 0x3dc2b260. Offset to previous = 0x00000050
Object at 0x3dc2b1a0. Offset to previous = 0xffffff40
Object at 0x3dc2b0f0. Offset to previous = 0xffffff50
Object at 0x3dc2b150. Offset to previous = 0x00000060
Object at 0x3dc2b1d0. Offset to previous = 0x00000080
Object at 0x3dc2b1e0. Offset to previous = 0x00000010
Object at 0x3dc2b220. Offset to previous = 0x00000040
Object at 0x3dc2b190. Offset to previous = 0xffffff70
Object at 0x3dc2b0e0. Offset to previous = 0xffffff50
Object at 0x3dc2b1f0. Offset to previous = 0x00000110
Object at 0x3dc2b200. Offset to previous = 0x00000010
Object at 0x3dc2b100. Offset to previous = 0xffffff00
Object at 0x3dc2b230. Offset to previous = 0x00000130
Object at 0x3dc2b240. Offset to previous = 0x00000010
Object at 0x3dc2b250. Offset to previous = 0x00000010
Object at 0x3dc2b080. Offset to previous = 0xfffffe30
Object at 0x3dc2b110. Offset to previous = 0x00000090
Object at 0x3dc2b090. Offset to previous = 0xffffff80
Object at 0x3dc2b0a0. Offset to previous = 0x00000010
Object at 0x3dc2b120. Offset to previous = 0x00000080
Object at 0x3dc2b130. Offset to previous = 0x00000010
Object at 0x3dc2b160. Offset to previous = 0x00000030
Object at 0x3dc2b140. Offset to previous = 0xffffffe0
Object at 0x3dc2b320. Offset to previous = 0x000001e0
Object at 0x3dc2b390. Offset to previous = 0x00000070
Object at 0x3dc2b470. Offset to previous = 0x000000e0
Object at 0x3dc2b2c0. Offset to previous = 0xfffffe50
Object at 0x3dc2b340. Offset to previous = 0x00000080
Object at 0x3dc2b420. Offset to previous = 0x000000e0
Object at 0x3dc2b380. Offset to previous = 0xffffff60
Object at 0x3dc2b360. Offset to previous = 0xffffffe0
Object at 0x3dc2b3e0. Offset to previous = 0x00000080
Object at 0x3dc2b460. Offset to previous = 0x00000080
Object at 0x3dc2b3d0. Offset to previous = 0xffffff70
Object at 0x3dc2b2d0. Offset to previous = 0xffffff00
Object at 0x3dc2b3f0. Offset to previous = 0x00000120
Object at 0x3dc2b2e0. Offset to previous = 0xfffffef0
Object at 0x3dc2b2f0. Offset to previous = 0x00000010
Object at 0x3dc2b400. Offset to previous = 0x00000110
Object at 0x3dc2b280. Offset to previous = 0xfffffe80
Object at 0x3dc2b410. Offset to previous = 0x00000190
Object at 0x3dc2b310. Offset to previous = 0xffffff00
Object at 0x3dc2b290. Offset to previous = 0xffffff80
Object at 0x3dc2b430. Offset to previous = 0x000001a0
Object at 0x3dc2b450. Offset to previous = 0x00000020
Object at 0x3dc2b2a0. Offset to previous = 0xfffffe50
Object at 0x3dc2b350. Offset to previous = 0x000000b0
Object at 0x3dc2b440. Offset to previous = 0x000000f0
Object at 0x3dc2b2b0. Offset to previous = 0xfffffe70
Object at 0x3dc2b300. Offset to previous = 0x00000050
Object at 0x3dc2b330. Offset to previous = 0x00000030
Object at 0x3dc2b370. Offset to previous = 0x00000040
Object at 0x3dc2b3a0. Offset to previous = 0x00000030
Object at 0x3dc2b3b0. Offset to previous = 0x00000010
Object at 0x3dc2b3c0. Offset to previous = 0x00000010
Object at 0x3dc2b590. Offset to previous = 0x000001d0
Object at 0x3dc2b5b0. Offset to previous = 0x00000020
Object at 0x3dc2b640. Offset to previous = 0x00000090
Object at 0x3dc2b500. Offset to previous = 0xfffffec0
Object at 0x3dc2b570. Offset to previous = 0x00000070
Object at 0x3dc2b620. Offset to previous = 0x000000b0
Object at 0x3dc2b610. Offset to previous = 0xfffffff0
Object at 0x3dc2b5a0. Offset to previous = 0xffffff90
Object at 0x3dc2b5c0. Offset to previous = 0x00000020
Object at 0x3dc2b5d0. Offset to previous = 0x00000010
Object at 0x3dc2b4f0. Offset to previous = 0xffffff20
Object at 0x3dc2b5e0. Offset to previous = 0x000000f0
Object at 0x3dc2b670. Offset to previous = 0x00000090
Object at 0x3dc2b5f0. Offset to previous = 0xffffff80
Object at 0x3dc2b600. Offset to previous = 0x00000010
Object at 0x3dc2b550. Offset to previous = 0xffffff50
Object at 0x3dc2b510. Offset to previous = 0xffffffc0
Object at 0x3dc2b630. Offset to previous = 0x00000120
Object at 0x3dc2b650. Offset to previous = 0x00000020
Object at 0x3dc2b560. Offset to previous = 0xffffff10
Object at 0x3dc2b4a0. Offset to previous = 0xffffff40
Object at 0x3dc2b520. Offset to previous = 0x00000080
Object at 0x3dc2b490. Offset to previous = 0xffffff70
Object at 0x3dc2b660. Offset to previous = 0x000001d0
Object at 0x3dc2b480. Offset to previous = 0xfffffe20
Object at 0x3dc2b4b0. Offset to previous = 0x00000030
Object at 0x3dc2b580. Offset to previous = 0x000000d0
Object at 0x3dc2b4e0. Offset to previous = 0xffffff60
Object at 0x3dc2b4c0. Offset to previous = 0xffffffe0
Object at 0x3dc2b4d0. Offset to previous = 0x00000010
Object at 0x3dc2b530. Offset to previous = 0x00000060
Object at 0x3dc2b540. Offset to previous = 0x00000010
Object at 0x3dc2b7e0. Offset to previous = 0x000002a0
Object at 0x3dc2b770. Offset to previous = 0xffffff90
Object at 0x3dc2b6e0. Offset to previous = 0xffffff70
Object at 0x3dc2b7a0. Offset to previous = 0x000000c0
Object at 0x3dc2b720. Offset to previous = 0xffffff80
Object at 0x3dc2b7d0. Offset to previous = 0x000000b0
Object at 0x3dc2b7b0. Offset to previous = 0xffffffe0
Object at 0x3dc2b740. Offset to previous = 0xffffff90
Object at 0x3dc2b7f0. Offset to previous = 0x000000b0
Object at 0x3dc2b830. Offset to previous = 0x00000040
Object at 0x3dc2b750. Offset to previous = 0xffffff20
Object at 0x3dc2b710. Offset to previous = 0xffffffc0
Object at 0x3dc2b840. Offset to previous = 0x00000130
Object at 0x3dc2b6d0. Offset to previous = 0xfffffe90
Object at 0x3dc2b760. Offset to previous = 0x00000090
Object at 0x3dc2b6f0. Offset to previous = 0xffffff90
Object at 0x3dc2b870. Offset to previous = 0x00000180
Object at 0x3dc2b780. Offset to previous = 0xffffff10
Object at 0x3dc2b800. Offset to previous = 0x00000080
Object at 0x3dc2b790. Offset to previous = 0xffffff90
Object at 0x3dc2b810. Offset to previous = 0x00000080
Object at 0x3dc2b860. Offset to previous = 0x00000050
Object at 0x3dc2b820. Offset to previous = 0xffffffc0
Object at 0x3dc2b700. Offset to previous = 0xfffffee0
Object at 0x3dc2b850. Offset to previous = 0x00000150
Object at 0x3dc2b730. Offset to previous = 0xfffffee0
Object at 0x3dc2b7c0. Offset to previous = 0x00000090
Object at 0x3dc2b680. Offset to previous = 0xfffffec0
Object at 0x3dc2b690. Offset to previous = 0x00000010
Object at 0x3dc2b6a0. Offset to previous = 0x00000010
Object at 0x3dc2b6b0. Offset to previous = 0x00000010
Object at 0x3dc2b6c0. Offset to previous = 0x00000010
Object at 0x3dc2ba20. Offset to previous = 0x00000360
Object at 0x3dc2ba50. Offset to previous = 0x00000030
Object at 0x3dc2ba70. Offset to previous = 0x00000020
Object at 0x3dc2b940. Offset to previous = 0xfffffed0
Object at 0x3dc2ba10. Offset to previous = 0x000000d0
Object at 0x3dc2ba60. Offset to previous = 0x00000050
Object at 0x3dc2b8a0. Offset to previous = 0xfffffe40
Object at 0x3dc2b910. Offset to previous = 0x00000070
Object at 0x3dc2b950. Offset to previous = 0x00000040
Object at 0x3dc2b980. Offset to previous = 0x00000030
Object at 0x3dc2b9b0. Offset to previous = 0x00000030
Object at 0x3dc2b9d0. Offset to previous = 0x00000020
Object at 0x3dc2b990. Offset to previous = 0xffffffc0
Object at 0x3dc2b9c0. Offset to previous = 0x00000030
Object at 0x3dc2ba40. Offset to previous = 0x00000080
Object at 0x3dc2b900. Offset to previous = 0xfffffec0
Object at 0x3dc2b970. Offset to previous = 0x00000070
Object at 0x3dc2ba30. Offset to previous = 0x000000c0
Object at 0x3dc2b880. Offset to previous = 0xfffffe50
Object at 0x3dc2b9a0. Offset to previous = 0x00000120
Object at 0x3dc2b9e0. Offset to previous = 0x00000040
Object at 0x3dc2b9f0. Offset to previous = 0x00000010
Object at 0x3dc2b8f0. Offset to previous = 0xffffff00
Object at 0x3dc2ba00. Offset to previous = 0x00000110
Object at 0x3dc2b890. Offset to previous = 0xfffffe90
Object at 0x3dc2b8b0. Offset to previous = 0x00000020
Object at 0x3dc2b8c0. Offset to previous = 0x00000010
Object at 0x3dc2b960. Offset to previous = 0x000000a0
Object at 0x3dc2b920. Offset to previous = 0xffffffc0
Object at 0x3dc2b8d0. Offset to previous = 0xffffffb0
Object at 0x3dc2b8e0. Offset to previous = 0x00000010
Object at 0x3dc2b930. Offset to previous = 0x00000050
Object at 0x3dc2baa0. Offset to previous = 0x00000170
Object at 0x3dc2bb10. Offset to previous = 0x00000070
Object at 0x3dc2ba90. Offset to previous = 0xffffff80
Object at 0x3dc2bc00. Offset to previous = 0x00000170
Object at 0x3dc2bc30. Offset to previous = 0x00000030
Object at 0x3dc2bc50. Offset to previous = 0x00000020
Object at 0x3dc2bb50. Offset to previous = 0xffffff00
Object at 0x3dc2bae0. Offset to previous = 0xffffff90
Object at 0x3dc2ba80. Offset to previous = 0xffffffa0
Object at 0x3dc2bbe0. Offset to previous = 0x00000160
Object at 0x3dc2bc60. Offset to previous = 0x00000080
Object at 0x3dc2bbf0. Offset to previous = 0xffffff90
Object at 0x3dc2bc10. Offset to previous = 0x00000020
Object at 0x3dc2bb70. Offset to previous = 0xffffff60
Object at 0x3dc2baf0. Offset to previous = 0xffffff80
Object at 0x3dc2bba0. Offset to previous = 0x000000b0
Object at 0x3dc2bb20. Offset to previous = 0xffffff80
Object at 0x3dc2bbd0. Offset to previous = 0x000000b0
Object at 0x3dc2bbb0. Offset to previous = 0xffffffe0
Object at 0x3dc2bb40. Offset to previous = 0xffffff90
Object at 0x3dc2bc20. Offset to previous = 0x000000e0
Object at 0x3dc2bc40. Offset to previous = 0x00000020
Object at 0x3dc2bb60. Offset to previous = 0xffffff20
Object at 0x3dc2bb30. Offset to previous = 0xffffffd0
Object at 0x3dc2bc70. Offset to previous = 0x00000140
Object at 0x3dc2bad0. Offset to previous = 0xfffffe60
Object at 0x3dc2bb80. Offset to previous = 0x000000b0
Object at 0x3dc2bb00. Offset to previous = 0xffffff80
Object at 0x3dc2bab0. Offset to previous = 0xffffffb0
Object at 0x3dc2bb90. Offset to previous = 0x000000e0
Object at 0x3dc2bac0. Offset to previous = 0xffffff30
Object at 0x3dc2bbc0. Offset to previous = 0x00000100
Object at 0x3dc2bdb0. Offset to previous = 0x000001f0
Object at 0x3dc2bcd0. Offset to previous = 0xffffff20
Object at 0x3dc2bd60. Offset to previous = 0x00000090
Object at 0x3dc2be30. Offset to previous = 0x000000d0
Object at 0x3dc2be50. Offset to previous = 0x00000020
Object at 0x3dc2bcf0. Offset to previous = 0xfffffea0
Object at 0x3dc2bd10. Offset to previous = 0x00000020
Object at 0x3dc2bdc0. Offset to previous = 0x000000b0
Object at 0x3dc2bde0. Offset to previous = 0x00000020
Object at 0x3dc2bd00. Offset to previous = 0xffffff20
Object at 0x3dc2be40. Offset to previous = 0x00000140
Object at 0x3dc2be60. Offset to previous = 0x00000020
Object at 0x3dc2bd20. Offset to previous = 0xfffffec0
Object at 0x3dc2bda0. Offset to previous = 0x00000080
Object at 0x3dc2bc80. Offset to previous = 0xfffffee0
Object at 0x3dc2bd70. Offset to previous = 0x000000f0
Object at 0x3dc2bd80. Offset to previous = 0x00000010
Object at 0x3dc2bd90. Offset to previous = 0x00000010
Object at 0x3dc2bc90. Offset to previous = 0xffffff00
Object at 0x3dc2bdd0. Offset to previous = 0x00000140
Object at 0x3dc2bdf0. Offset to previous = 0x00000020
Object at 0x3dc2be70. Offset to previous = 0x00000080
Object at 0x3dc2be00. Offset to previous = 0xffffff90
Object at 0x3dc2bd40. Offset to previous = 0xffffff40
Object at 0x3dc2bd30. Offset to previous = 0xfffffff0
Object at 0x3dc2bca0. Offset to previous = 0xffffff70
Object at 0x3dc2bd50. Offset to previous = 0x000000b0
Object at 0x3dc2be10. Offset to previous = 0x000000c0
Object at 0x3dc2be20. Offset to previous = 0x00000010
Object at 0x3dc2bcb0. Offset to previous = 0xfffffe90
Object at 0x3dc2bcc0. Offset to previous = 0x00000010
Object at 0x3dc2bce0. Offset to previous = 0x00000020
Object at 0x3dc2be80. Offset to previous = 0x000001a0
Object at 0x3dc2bff0. Offset to previous = 0x00000170
Object at 0x3dc2bef0. Offset to previous = 0xffffff00
Object at 0x3dc2bfb0. Offset to previous = 0x000000c0
Object at 0x3dc2be90. Offset to previous = 0xfffffee0
Object at 0x3dc2bf60. Offset to previous = 0x000000d0
Object at 0x3dc2bfc0. Offset to previous = 0x00000060
Object at 0x3dc2bfe0. Offset to previous = 0x00000020
Object at 0x3dc2bf50. Offset to previous = 0xffffff70
Object at 0x3dc2bfd0. Offset to previous = 0x00000080
Object at 0x3dc2bea0. Offset to previous = 0xfffffed0
Object at 0x3dc2bf70. Offset to previous = 0x000000d0
Object at 0x3dc2beb0. Offset to previous = 0xffffff40
Object at 0x3dc2bec0. Offset to previous = 0x00000010
Object at 0x3dc2bee0. Offset to previous = 0x00000020
Object at 0x3dc2bf80. Offset to previous = 0x000000a0
Object at 0x3dc2bf10. Offset to previous = 0xffffff90
Object at 0x3dc2bed0. Offset to previous = 0xffffffc0
Object at 0x3dc2bf20. Offset to previous = 0x00000050
Object at 0x3dc2bf00. Offset to previous = 0xffffffe0
Object at 0x3dc2bf30. Offset to previous = 0x00000030
Object at 0x3dc2bf40. Offset to previous = 0x00000010
Object at 0x3dc2bf90. Offset to previous = 0x00000050
Object at 0x3dc2bfa0. Offset to previous = 0x00000010
Object at 0x3dc2c260. Offset to previous = 0x000002c0
Object at 0x3dc2c240. Offset to previous = 0xffffffe0
Object at 0x3dc2c190. Offset to previous = 0xffffff50
Object at 0x3dc2c130. Offset to previous = 0xffffffa0
Object at 0x3dc2c0a0. Offset to previous = 0xffffff70
Object at 0x3dc2c250. Offset to previous = 0x000001b0
Object at 0x3dc2c270. Offset to previous = 0x00000020
Object at 0x3dc2c140. Offset to previous = 0xfffffed0
Object at 0x3dc2c230. Offset to previous = 0x000000f0
Object at 0x3dc2c100. Offset to previous = 0xfffffed0
Object at 0x3dc2c1f0. Offset to previous = 0x000000f0
Object at 0x3dc2c0c0. Offset to previous = 0xfffffed0
Object at 0x3dc2c200. Offset to previous = 0x00000140
Object at 0x3dc2c080. Offset to previous = 0xfffffe80
Object at 0x3dc2c1e0. Offset to previous = 0x00000160
Object at 0x3dc2c090. Offset to previous = 0xfffffeb0
Object at 0x3dc2c0e0. Offset to previous = 0x00000050
Object at 0x3dc2c1b0. Offset to previous = 0x000000d0
Object at 0x3dc2c0d0. Offset to previous = 0xffffff20
Object at 0x3dc2c210. Offset to previous = 0x00000140
Object at 0x3dc2c220. Offset to previous = 0x00000010
Object at 0x3dc2c0f0. Offset to previous = 0xfffffed0
Object at 0x3dc2c1a0. Offset to previous = 0x000000b0
Object at 0x3dc2c170. Offset to previous = 0xffffffd0
Object at 0x3dc2c1c0. Offset to previous = 0x00000050
Object at 0x3dc2c110. Offset to previous = 0xffffff50
Object at 0x3dc2c180. Offset to previous = 0x00000070
Object at 0x3dc2c150. Offset to previous = 0xffffffd0
Object at 0x3dc2c120. Offset to previous = 0xffffffd0
Object at 0x3dc2c1d0. Offset to previous = 0x000000b0
Object at 0x3dc2c0b0. Offset to previous = 0xfffffee0
Object at 0x3dc2c160. Offset to previous = 0x000000b0
Object at 0x3dc2c460. Offset to previous = 0x00000300
Object at 0x3dc2c420. Offset to previous = 0xffffffc0
Object at 0x3dc2c380. Offset to previous = 0xffffff60
Object at 0x3dc2c2d0. Offset to previous = 0xffffff50
Object at 0x3dc2c3f0. Offset to previous = 0x00000120
Object at 0x3dc2c320. Offset to previous = 0xffffff30
Object at 0x3dc2c290. Offset to previous = 0xffffff70
Object at 0x3dc2c2e0. Offset to previous = 0x00000050
Object at 0x3dc2c2f0. Offset to previous = 0x00000010
Object at 0x3dc2c370. Offset to previous = 0x00000080
Object at 0x3dc2c2b0. Offset to previous = 0xffffff40
Object at 0x3dc2c3c0. Offset to previous = 0x00000110
Object at 0x3dc2c410. Offset to previous = 0x00000050
Object at 0x3dc2c280. Offset to previous = 0xfffffe70
Object at 0x3dc2c350. Offset to previous = 0x000000d0
Object at 0x3dc2c360. Offset to previous = 0x00000010
Object at 0x3dc2c2a0. Offset to previous = 0xffffff40
Object at 0x3dc2c3b0. Offset to previous = 0x00000110
Object at 0x3dc2c430. Offset to previous = 0x00000080
Object at 0x3dc2c310. Offset to previous = 0xfffffee0
Object at 0x3dc2c2c0. Offset to previous = 0xffffffb0
Object at 0x3dc2c470. Offset to previous = 0x000001b0
Object at 0x3dc2c440. Offset to previous = 0xffffffd0
Object at 0x3dc2c3d0. Offset to previous = 0xffffff90
Object at 0x3dc2c330. Offset to previous = 0xffffff60
Object at 0x3dc2c300. Offset to previous = 0xffffffd0
Object at 0x3dc2c390. Offset to previous = 0x00000090
Object at 0x3dc2c3e0. Offset to previous = 0x00000050
Object at 0x3dc2c450. Offset to previous = 0x00000070
Object at 0x3dc2c400. Offset to previous = 0xffffffb0
Object at 0x3dc2c340. Offset to previous = 0xffffff40
Object at 0x3dc2c3a0. Offset to previous = 0x00000060
Object at 0x3dc2c480. Offset to previous = 0x000000e0
Object at 0x3dc2c520. Offset to previous = 0x000000a0
Object at 0x3dc2c640. Offset to previous = 0x00000120
Object at 0x3dc2c670. Offset to previous = 0x00000030
Object at 0x3dc2c620. Offset to previous = 0xffffffb0
Object at 0x3dc2c580. Offset to previous = 0xffffff60
Object at 0x3dc2c4c0. Offset to previous = 0xffffff40
Object at 0x3dc2c490. Offset to previous = 0xffffffd0
Object at 0x3dc2c500. Offset to previous = 0x00000070
Object at 0x3dc2c4a0. Offset to previous = 0xffffffa0
Object at 0x3dc2c4b0. Offset to previous = 0x00000010
Object at 0x3dc2c570. Offset to previous = 0x000000c0
Object at 0x3dc2c4f0. Offset to previous = 0xffffff80
Object at 0x3dc2c5b0. Offset to previous = 0x000000c0
Object at 0x3dc2c4d0. Offset to previous = 0xffffff20
Object at 0x3dc2c5d0. Offset to previous = 0x00000100
offset: -480 cnt: 3
offset: -464 cnt: 2
offset: -448 cnt: 8
offset: -432 cnt: 5
offset: -416 cnt: 7
offset: -400 cnt: 5
offset: -384 cnt: 11
offset: -368 cnt: 6
offset: -352 cnt: 7
offset: -336 cnt: 7
offset: -320 cnt: 12
offset: -304 cnt: 10
offset: -288 cnt: 14
offset: -272 cnt: 14
offset: -256 cnt: 14
offset: -240 cnt: 28
offset: -224 cnt: 8
offset: -208 cnt: 23
offset: -192 cnt: 17
offset: -176 cnt: 33
offset: -160 cnt: 21
offset: -144 cnt: 27
offset: -128 cnt: 33
offset: -112 cnt: 30
offset: -96 cnt: 31
offset: -80 cnt: 27
offset: -64 cnt: 30
offset: -48 cnt: 26
offset: -32 cnt: 33
offset: -16 cnt: 25
offset: 16 cnt: 10
offset: 32 cnt: 129
offset: 48 cnt: 61
offset: 64 cnt: 65
offset: 80 cnt: 34
offset: 96 cnt: 36
offset: 112 cnt: 25
offset: 128 cnt: 38
offset: 144 cnt: 44
offset: 160 cnt: 20
offset: 176 cnt: 24
offset: 192 cnt: 37
offset: 208 cnt: 33
offset: 224 cnt: 20
offset: 240 cnt: 22
offset: 256 cnt: 21
offset: 272 cnt: 17
offset: 288 cnt: 18
offset: 304 cnt: 18
offset: 320 cnt: 9
offset: 336 cnt: 15
offset: 352 cnt: 2
offset: 368 cnt: 9
offset: 384 cnt: 9
offset: 400 cnt: 7
offset: 416 cnt: 7
offset: 432 cnt: 7
offset: 464 cnt: 5
offset: 480 cnt: 8
offset: 496 cnt: 3
offset: 528 cnt: 4
offset: 560 cnt: 3
offset: 576 cnt: 1
offset: 592 cnt: 2
offset: 608 cnt: 1
offset: 656 cnt: 1
offset: 672 cnt: 1
offset: 688 cnt: 3
offset: 704 cnt: 2
offset: 752 cnt: 3
offset: 768 cnt: 1
offset: 864 cnt: 2
offset: 70160 cnt: 1
offset: 70160 cnt: 1

@kohnakagawa
Copy link
Author

Result of Windows 11 on ARM 22000.168

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment