Master X Master (*.PAK)

Extraction and unpacking of game archives and compression, encryption, obfuscation, decoding of unknown files
Ekey
Posts: 1383
Joined: Sat Aug 09, 2014 2:34 pm

Master X Master (*.PAK)

Post by Ekey »

Download: Part 1, Part 2

What wee know. File encrypted by AES + XOR. AES used only for initialize main key. Data is XORing by key initialized from AES.

AES Main key: \x22\xE0\xF3\x80\x7D\xD0\x65\xA5\xD7\x9E\xA6\x26\xD2\x74\x06\x9A

For example
XOR Key for offset 0x8 with size 0x10 - \x8D\x28\x60\xEC\x3F\x5C\xD9\x0F\x6B\x10\x33\xFD\xB7\x0A\x68\x25
XOR Key for offset 0x18 with size 0x4 - \xBD\xD5\xB5\xAB\x63\x91\xF9\xED\x6B\x13\x65\xD0\xB0\xD0\xDD\x25

Now I'm trying to understand - how the key are updated from AES? addRoundKey? Any ideas ? :?
aluigi
Site Admin
Posts: 12984
Joined: Wed Jul 30, 2014 9:32 pm

Re: Master X Master (*.PAK)

Post by aluigi »

Are you sure it's not aes with ivec?
If ivec is set to zero you can use just: encryption aes_128_cbc "\x22\xE0\xF3\x80\x7D\xD0\x65\xA5\xD7\x9E\xA6\x26\xD2\x74\x06\x9A"
Ekey
Posts: 1383
Joined: Sat Aug 09, 2014 2:34 pm

Re: Master X Master (*.PAK)

Post by Ekey »

Encryption is XOR by key initialized from AES (Set_Key / Decrypt_Key)
Ekey
Posts: 1383
Joined: Sat Aug 09, 2014 2:34 pm

Re: Master X Master (*.PAK)

Post by Ekey »

Code: Select all

struct PAKHeader
{
   DWORD   dwID; //PAKA
   WORD    w_MinorVersion; // 2
   WORD    w_MajorVersion; // 1
   DWORD   dwHeaderSize; // 0x24 (36)
   DWORD   dwDataOffset; // 0x400 (1024)
   DWORD   dwTableSize; // 0x2A (42) -> For some manipulations with data -> ADD ECX,0x880 = 0x000008AA (2218)
   DWORD   dwNull1;
   DWORD   dwTotalFiles; // ???
   DWORD   dwUnknown; // ??? = 0x00000100 (65536)
   DWORD   dwNull2;
};


~Using. Read header into buffer.

Code: Select all

    mxm_update_key(p_MasterKey, (int)&p_Final_Key);
    for (int i = 8; i < 24; ++i )
    {
       pHeaderBuffer[i] ^= p_Final_Key[i];
    }

    mxm_update_key(p_MasterKey, (int)&p_Final_Key);
    for (int i = 24; i < 36; ++i )
    {
       pHeaderBuffer[i] ^= p_Final_Key[i];
    }


I attached function for updating key. Somebody can help?
aluigi
Site Admin
Posts: 12984
Joined: Wed Jul 30, 2014 9:32 pm

Re: Master X Master (*.PAK)

Post by aluigi »

I have attached a modified code that is probably more similar to the final code.
There was a missing field that is the amount of cycles to make.
Hope it helps.

In the script I used 80 but it's only the maximum amount of cycles, it's not the correct one.
I also tried to scan them but without good results.
Delta-47
Posts: 3
Joined: Wed Sep 19, 2018 12:06 am

Re: Master X Master (*.PAK)

Post by Delta-47 »

Is it possible to have an other look at the game archives to unpack them? Now that the game is dead the community would be very happy if they could rip some of the files.
I have uploaded the Chinese version: https://archive.org/details/MasterXMasterTencent and the NCWest version: https://archive.org/details/MasterXMaster.
The Chinese version of 2015 is the oldest complete working version we got from the game, this version doesn't encrypt it's log not by default, to deactivate encryption of the log files on other versions use the /LogEncryption:0 launch argument.
Also the 2015 patches can't be used on the 2015 full client because the version difference between them is to big (7 months between releases) but it could be interesting to compare them maybe.

P.s. If one of you still got a version of the game (even if it's incomplete) that is not on archive.org like the 2014 Korean one please send it to me, so that I can archive it for the community.
Delta-47
Posts: 3
Joined: Wed Sep 19, 2018 12:06 am

Re: Master X Master (*.PAK)

Post by Delta-47 »

So someone unpacked and removed gameguard from the client. Would it be possible that someone takes a look at it again to make an extractor.
Link to client: https://drive.google.com/file/d/1HMrqTYwfGYS24HuBbaWVSzJwdKo5H4SR/view?usp=sharing
The client is the latest version of the ncwest version. https://archive.org/download/MasterXMaster/Full%20Install/Release/12147%20/
I have added a small pak file as example.
Delta-47
Posts: 3
Joined: Wed Sep 19, 2018 12:06 am

Re: Master X Master (*.PAK)

Post by Delta-47 »

So a quick update we have an unpacker now for the game, atm it supports pak files with magic PAKW which are versions starting 2017 (maybe some 2016 versions). Older versions have magic PAKA and aren't supported because different compression and maybe different encryption. https://github.com/Delta-473/MXM-Resear ... master/Pak
chrrox
Posts: 388
Joined: Thu Aug 07, 2014 10:28 pm

Re: Master X Master (*.PAK)

Post by chrrox »

Just posting a quickbms version to extract these pak files.
Image
The filelist pak file is the only one different its the same as encryption type 2 in this script.

Code: Select all

set KEY1 binary "\x39\xff\x2a\x33\x1b\xd0\x9a\x18\x2f\x71\xb7\xb0\x51\xb6\x3a\x9d\xa1\xef\x74\x96\x3f\x1a\xdd\x68\x5c\xf7\x66\xcd\x97\x89\x94\xb7\x01\x46\x29\xdc\xce\x59\x4b\xf4\x9b\x6e\xba\x7e\x4c\x67\x42\xfb\x72\x0b\xcd\xc9\xcb\x0c\x89\x77\xfd\xec\x56\x55\xd8\x68\x8b\x40\x50\x79\x91\x40\x33\xbd\x0f\x2e\xa4\x4d\xa6\xbf\xa2\x80\xf6\x76\x04\x09\x54\x14\x73\xe4\xb4\x1f\x0f\x8f\x8a\xbb\x0d\x8c\x84\x11\x42\xfd\x4c\x05\xf3\xc6\x11\x58\xaa\x1d\xb9\x4e\xb1\x7a\xef\x28\xca\x50\xcf\x40\x7a\x85\x36\x97\x2a\x2c\x8c\xe9\x6a\x89\xf0\x71\x6e\xdd\x81\xd5\xfa\x1f\x0d\x8e\xf0\x55\x1f\x49\x75\x20\x5c\xb2\x35\x0c\xa5\x6d\xe3\x9e\x8a\x66\x4f\x0d\x02\xf6\xe0\xca\x3a\x5a\xa5\xb5\x99\xa0\x38\x27\x32\x64\xb8\xc8\xde\xc1\x35\x1c\xeb\x22\xa3\x43\xa0\x6d\x93\x2d\xcb\x78\xaa\x5c\xf7\x61\x71\x6d\x61\x63\x03\xde\xd7\xd2\x49\x93\x16\x43\x7e\xc9\xb8\x16\x0f\xb8\x7f\x21\x6b\xeb\x53\x0f\xac\xd2\x87\x21\x89\x36\x29\x2a\x19\xba\x4e\x12\xff\xa2\x2a\x9e\x11\xc3\xff\xb8\xd9\x75\xdd\xdd\x59\x1a\x06\x6d\xb5\xa0\x43\xe2\x5b\x09\xf3\x0f\x03\xa4\x80\xdd\xd8\xdf\xa8\x38\xa8\x2a\x70\x70\x1e\x4b\x6c\x6e\xac\x94\x18\xc0\xcd\xb8\xdf\xd8\x72\xad\x9c\x22\xbd\xd9\x70\xa4\xa3\x9e\x26\x55\x55\x3a\x5a\x72\x9b\xde\x54\x20\x7e\xd6\x8b\x8f\xdb\x24\x75\xee\x13\x13\x8d\xcc\xaf\x88\x92\x45\xb2\x6f\xda\x90\xee\x0b\x80\x2d\xa5\xe3\x5e\x28\x75\x88\xb5\xfb\x5c\xf0\xba\xf1\x3b\xa4\x0b\x9f\xd8\x2d\xd5\x0e\x22\x10\xb2\xaf\xca\x25\x1b\x5a\xf3\x0b\x55\x6b\x5b\xe9\x7d\x01\xd2\x61\x94\xc0\x91\xd7\x2e\xe7\xd8\x15\xe1\x43\x88\x4a\x9b\xd1\x96\x59\x46\x45\x2e\x9b\x45\x6d\x4f\x25\x10\xf2\x91\x8a\x9c\xc7\xae\x8e\x81\x46\xe2\x12\x53\x17\x97\x0b\xe0\x31\xf5\x3c\x57\x07\xbb\x2a\x23\x4e\x53\x17\x37\x05\x4c\xbc\xc4\xba\xe4\x00\xe3\xc2\x8d\x47\x32\x76\xb9\x1d\x23\xca\x24\xc2\x3e\x44\xf7\xea\x95\x1e\x78\x20\x7f\xd0\x4a\xca\xb4\x2e\x65\x2a\xc5\x67\x17\xc6\x0e\xbb\xf4\xc8\x1f\xf2\xea\xe0\x31\xdb\x6f\xaf\x08\x08\x30\x7b\x1f\x73\x6e\x2f\x12\xd7\x79\x38\x0e\x8a\xd0\x1a\x16\x83\x9d\x81\x23\xad\x87\xf0\x9f\xff\xc1\x21\xb9\x02\x12\x57\xde\xc9\x12\xd5\xc0\x98\x1f\x7f\xb1\x19\x3d\xe4\xa7\xb6\x61\x9c\x72\x53\x5b\x41\x1b\x00\x69\xd4\xe5\xe1\xee\xb5\x7f\x21\x6d\xfb\x27\x12\x5e\xb0\xa0\x31\x89\xac\x18\xfd\x3b\x6e\x7b\x17\x07\x38\xb2\x63\x00\x37\xfa\x84\x84\x97\x5d\x34\xde\xe9\x37\xe3\x17\x29\x3c\x17\x9e\xe8\x1e\x4f\xe1\xa9\x60\x4f\x01\xb9\x58\x36\xfe\x2f\x49\x92\xd6\x40\xc1\x79\xc6\x29\xeb\xa0\x62\x46\xbf\x0c\x2a\xda\x3f\x22\xc8\xfc\xbf\x2f\x5c\xae\xa6\x73\x7d\x38\xab\x89\xca\xf2\x82\x80\x5f\x95\x98\xc4\x0f\x08\x00\x00\x94\x69\xf6\xd6\x13\x92\x42\xd8\xe4\x05\xb6\x84\xfc\x67\x42\xc2\xac\xae\x83\x66\xeb\x82\xf8\x7e\xc2\xea\x36\x17\x51\xa4\x36\x25\xc5\x6a\xca\xe3\x88\x78\x29\x71\xb7\xfc\x07\x29\xb6\x6a\x38\xd2\x6f\xc0\xd3\xa2\xb9\xf1\x51\x4f\x14\xa6\x9c\xbf\x50\x1c\xd0\xfa\x24\xe3\xcb\x17\x4d\x8e\xc3\xfd\xbb\xbf\x53\x70\x99\xfb\x0c\xfe\xed\x88\x51\xdd\x2f\x81\xbb\x3e\xbf\x77\x93\xe7\x93\x2f\xc2\x15\x1c\xb9\x64\xd9\x7f\xd0\xd2\x5d\xb7\x0d\xd1\xbf\xf8\xed\xf3\x4e\x4f\x26\x5f\xb9\x67\xb7\xb8\x4e\xeb\x07\xc4\x69\x3e\xe6\xcc\x91\xb0\x91\x27\xd1\x5c\x9b\x7a\x0e\xfa\x20\x30\x62\x81\xe8\x40\xca\xc4\x3a\x6d\xfe\x5c\xc7\x06\x0b\x4a\x14\x04\xa1\xbd\xc2\xa6\x6a\xc5\x16\xe6\x74\x6d\x87\xb5\x53\x49\x32\x2f\x03\x0f\x58\x2e\xe7\xec\x6a\xd5\x4b\x62\xd4\xd5\x29\x30\x47\xa5\x47\x7a\x73\x0a\x48\xb9\xa2\xad\xbe\xdb\x3c\x5a\x70\x6c\x6f\xed\x98\x7c\x61\xb3\x81\x77\x28\x3e\x8d\xc9\xb4\xdf\x25\xb1\x4e\xf3\x88\xbe\x88\xf6\x9f\x67\x15\x87\x65\x8e\x32\x58\xb7\x47\x14\x60\xd9\x93\x90\x10\x03\xa6\x97\xac\x3d\x31\x82\xc4\x8e\xf0\xc9\x4a\x40\x2d\x45\xb0\x66\x06\xc8\xee\x70\x9e\x6e\x1e\x26\x18\x97\xf4\x1d\xd8\x8d\x75\xb6\x83\x9f\xb9\x34\x09\x97\x89\x5e\x63\xcc\x78\x7a\x5f\xef\x86\x90\x34\x8b\x65\x57\xd1\xa6\xea\x65\xef\xe6\xa6\xe9\x06\x19\x10\x9a\x17\xd6\x4e\xc4\x55\x22\x8e\x2d\x69\xb6\xa8\xb9\x8d\x05\x64\xc7\xde\xaf\x4b\x9c\x54\xb9\xa0\xaf\xb6\x43\xe6\xd8\xe9\x8c\xbd\x7d\xff\x17\x9d\x52\xe9\x62\x72\x95\x08\x08\x66\x80\x27\xa1\x69\x2f\xc2\x6d\x83\x49\x14\x67\x53\x48\x12\x43\x6f\x21\x68\xbd\x8c\x23\x38\xa4\xfe\xac\xc5\x8a\x32\xed\xe8\x3c\x7c\x30\x43\x84\x74\x8f\xda\x90\xb2\x7c\x49\x02\x8e\x46\x8e\x48\x72\xc4\x0e\xfa\xab\xbc\x40\xdd\x23\xb9\x34\x79\x72\xf7\xc9\xd0\xa0\x2e\xb0\x5d\x7a\x5f\xfe\x26\x27\x55\x34\xf7\xf9\xd3\x57\x96\xd8\x51\x0e\x00\xb2\xf5\xaa\xbf\x09\x09\x9e\x5b\x2f\xce\x87\xe7\x7a\x30\x73\x5b\x13\xc7\x39\x04\xe2\x70\x0a\x1b\x70\x5c\x4c\xf4\xf5\x57\xdf\x95\x9c\x9b\x6d\x1f\x4a\xc4\x57\x18\x57\xe2\x8d\x55\xde\x16\x43\xab\xae\xd1\x34\x7c\xa5\x24\xc8\x0e\xd1\xe2\x79\x27\x49\xe4\x12\xae\x4e\xe1\x60\xcb\x5a\x47\x7b\xdc\xc0\xe9\x4b\xb5\x05\xac\xa6\x6d\xae\x02\x9c\x0f\x66\x46\xd6\xe6\xfc\xd2\x89\x0e\xef\xde\x26\x18\xe0\xd9\xea\xde\x4d\x4f\x3f\x38\x1c\x3d\x87\x8a\xbc\xe7\xb6\x3d\x4c\xa6\x4a\x11\xb7\x99\x0c\x0e\xe7\xa7\x94\x21\xb2\x65\x55\xf2\x32\x68\xdd\xf1\xb9\x94\x12\xa1\xa8\xe1\x09\x23\x9f\x95\x83\x15\xa4\x30\x4d\x8d\x0f\x1b\x91\x5c\xa6\xfb\xdb\xd1\xa7\x96\xae\xac\x65\x98\x25\xa6\x6d\x9b\x18\x0d\x0b\x70\xa1\x43\x54\xe5\xd8\xd8\x59\x38\xb4\xf0\x52\x2e\xbf\xbe\x32\x63\x93\xe6\xba\xfd\x46\xb2\x93\xbd\x04\x4c\xd4\x90\x0f\xfb\x6c\xfc\xd9\xb5\xeb\x92\x27\x1c\xd4\x64\x8c\x38\xc2\x66\x32\xbc\xa9\x16\x2c\x4d\x02\xad\xf1\x47\xe8\x52\x75\x23\x66\xaa\x14\x5e\x54\xe0\xe8\xdc\x6e\xb6\x67\xb1\x66\xb0\x2d\x7c\x64\x8e\x6b\x66\x43\xe5\xd7\xb7\xde\x0a\x60\x3b\x68\xfe\x3a\xa2\x77\xbb\x0a\x85\x65\xea\x1a\x71\x30\xef\x91\x1f\x47\xb5\x77\x5b\xf9\x7d\x51\x29\xe9\x15\xab\x51\x7a\x4d\x7c\x90\x8a\x19\xc3\x0e\x4b\xad\x48\x9b\xae\x07\x89\x48\x52\x3f\x00\xf4\x34\xaf\xc8\x8b\x04\xae\xbe\x36\x97\x70\xa8\xdf\x9f\x1f\xbc\x00\xe7\x7e\xcc\xfb\xca\xb6\xc5\x3c\xe6\xf0\x22\x4b\xd1\x2b\x8d\xb8\x05\x9f\x3a\x8a\x4a\x77\x75\x9f\xc1\x26\x8e\x53\xbe\xb2\xb9\xaf\x8e\xcc\x6a\x61\x1b\x71\x4c\x63\x8b\xd5\xd1\x3e\xc1\x4c\xdc\xcd\xf6\x09\x8c\x22\x6e\x7a\x70\x8d\x28\xe9\xf5\x95\xb5\xf0\xde\x65\x5a\xa2\x19\x79\xc1\x5c\xf1\xcd\xe2\xa2\xc5\x6d\x13\xf2\x10\x1c\x04\x57\xfd\x07\x5f\xc1\x03\xd2\x68\x16\x97\xa0\xc6\xea\xfa\xa9\x5a\x7e\x23\xac\x77\x34\x14\x61\x1c\x1d\x12\x76\x66\x29\x01\x02\x7c\xf1\x97\xdd\xe0\xc8\x14\x43\xaa\xab\xbb\x18\xff\x12\x1c\x61\x0b\xa8\xee\xc2\x43\x8d\xd0\x46\x09\xb8\x03\x0d\xa6\x1c\x03\xe7\x00\xa0\x80\x60\x73\x42\x5b\xd2\xf1\xd8\xf9\xaf\x64\xe4\xc9\x3e\x1d\x39\x10\x70\x35\xef\xfc\xd4\x16\x0a\x48\xc3\x81\xca\xd5\xfb\xec\xbc\x01\x4d\xa0\x37\x95\x2b\x3e\xba\xc4\x89\x5a\x95\xd3\x84\x74\xd4\xe2\xa2\xfa\x8a\xdf\x2c\xb3\x7e\x32\xce\x8b\x4a\xa8\xaa\x9c\x28\xf8\xd5\xa9\x07\xee\x17\xc2\x7b\xe7\xf3\xfe\x88\x00\x23\xd1\x12\x76\xed\x5d\x6d\xd9\xc4\xcd\x5a\xd3\x66\xcf\xa7\xf1\x23\x27\x47\x80\x8f\x53\x03\x20\x88\x16\x1c\x1b\xeb\x77\x01\x9a\x07\x01\x94\x76\xf2\xc0\x89\x6b\xea\xaa\x98\x29\x3e\xd9\x80\xd8\x8e\xf3\x80\xec\x57\xcc\xa6\x9c\xc2\xac\x1e\xca\xef\xbe\x49\xa9\x7c\xc1\xba\x94\x30\xe9\x94\x4b\xf5\x9f\xb7\xa1\xf4\x9e\xbe\xfe\x16\x81\xe0\xdc\x19\xec\x0d\xd6\x8f\xa0\xb1\x5a\x8b\x1f\xf3\x0a\xa4\xc4\x20\x06\x1b\xad\xe5\x78\xfb\xf2\xf4\x7e\x20\xa5\xe2\xdc\x1a\xc1\x46\x99\x71\x0f\xbf\x06\x75\xaa\x92\xdc\x1b\x23\x1d\xbf\x16\x69\x2e\x02\xd3\x7d\xe0\xd9\x60\x7b\xcb\x02\x17\x81\xa9\x89\x1d\x28\x4c\x51\x59\xca\x3e\xa4\xf1\xee\x87\x30\x00\xd5\x7e\x6b\x57\x7f\x10\xb1\x70\xfb\xfb\x6d\x22\x3c\x70\x83\x58\x20\x5a\x82\xe9\x71\xcf\xc1\xe1\xdf\x71\x35\xbf\x3e\x71\x3d\xa0\x73\x2d\x06\xd0\xb2\x69\xe7\x3b\xc2\xb9\x0d\x3c\x12\x96\xa6\xfb\x4f\x4e\x26\x5b\xc3\x04\xe3\x36\xde\xa6\x00\x0d\xb6\x1a\x21\x00\xbd\x86\x61\x0d\xe7\x15\xe5\xd0\xf5\x1e\xd0\x1e\x02\xbb\xd3\x49\x0f\xb7\x09\x42\x41\x14\xae\x39\x7d\xe5\x00\xde\x95\x2e\x22\x03\xb1\xbc\x19\x23\x63\x31\x66\x83\x5f\x0a\x2c\x42\x23\x66\x4f\x8a\xcd\x38\xd2\x0e\x45\x7b\xa3\x2f\xae\x28\xe2\x5e\x0c\xce\xc8\x74\xcc\xbb\x95\x5e\x8a\x65\xca\x98\x95\x51\x2a\x78\x61\x70\x36\x4b\x3a\x06\x90\x2a\x8a\x7d\xb2\x90\x82\x7a\xb8\x7f\x70\x53\xe3\xb1\xe8\xf2\x4a\xea\xc6\x32\x64\x37\x99\x54\xf5\x8e\x4d\xaf\xac\xdc\xb3\x2d\x4c\x83\xc4\x1e\x28\xc6\x2d\x70\x1e\x4e\xa8\xae\xb0\xdf\x24\x60\x42\xe8\xfd\x94\xbe\x91\xe1\x58\x2f\x12\x3d\xc8\x01\xb4\xfe\x1e\x08\xfc\xc9\xcf\x89\x34\xcc\xbe\x69\x31\x8a\xee\xca\x07\xb1\x98\x29\x1f\x89\x8c\xe8\x84\x1c\x78\xb7\x6d\x02\x6b\x5c\x37\x1a\x25\xb1\x0f\xe2\xeb\x40\x8f\x28\x86\x6d\x95\x1d\x72\x53\xad\x01\xbd\x17\x54\x57\x27\x03\x58\x9a\x5f\xcc\x31\xfa\x05\x9c\xf8\x32\x90\x1e\xe6\xe9\xfa\x61\xb4\x69\x43\xf2\x57\x27\xc7\xa3\x49\xa8\x5d\x2e\xa1\x29\xa8\x02\xed\x8e\x1e\x59\x2e\x79\xc8\xed\xb9\x91\xfb\xb1\xd2\x6f\xb1\x0c\x2a\x27\xfa\xf3\x7c\x0c\x30\x9e\x75\x01\x4d\xaa\xfe\x5b\x3e\x74\x8a\x1d\x5d\x01\x94\xe8\x7f\xc4\xef\x59\xd6\xe7\x78\xe4\x62\xcb\x82\xd4\x82\xca\x0b\xe5\xed\xe6\xd6\xb7\x81\x8a\xe5\xa9\xd0\xdc\xbb\x2f\x23\xb4\xbc\x5d\x38\x37\xbf\x9e\x33\x95\xaa\xf6\xce\x6f\x35\xb2\x4f\xf0\x43\x3e\x92\x01\xce\xe8\x43\x0f\x37\x6c\xfe\x44\x6c\x76\x3a\xbd\x90\x82\x2f\x31\x21\x52\x8b\xcf\x18\x51\xa0\x30\x80\x16\x9d\x22\x64\xf3\x1e\x7f\x84\x84\x5c\xfd\xf7\x18\x1a\x56\xfa\xb3\x8b\x96\x73\xb9\x77\x51\x8c\x4c\xdb\x3f\xad\xbd\x07\x66\x7c\xee\xa6\xa7\xe7\x73\xfa\x38\x5e\xbd\x43\xbb\xbf\x96\x4f\x06\x6c\x9c\xa2\xf2\x0c\xdf\x71\xaa\xcc\x99\xde\x8e\x2a\x79\x3b\x49\x88\x7b\x9f\x6a\x3f\xac\xfe\x74\x61\x75\x07\xaf\xa2\xfd\xf8\x3e\xa9\xbd\x18\xa0\x1f\xee\x60\xf7\xaa\x25\x8d\x15\x51\xa9\x13\xea\xc6\xe3\x14\xd5\x61\x1d\x01\xef\x47\x62\xbe\x1d\x01\x11\x96\x15\x3c\x21\x99\x4c\x4c\x2a\x52\xf3\xb4\x56\x6d\xaf\x02\x10\xdd\xb3\xb4\x47\x05\x57\x31\xf7\xe3\x3d\x0e\xfe\x7e\x5c\xb1\x70\xac\x77\x68\x9c\x6f\x8a\x3a\x9b\x67\x14\x22\x87\xe3\xc0\x61\xa6\xa5\xa4\x48\x63\x52\xbd\x41\xe4\x6b\x50\x0f\x5d\xc4\x17\x5e\x59\xbd\x63\x0f\xf9\x84\x61\x61\xa1\x65\x86\x98\x69\xe2\xf4\xbb\x1f\x73\xc1\xe6\xfa\xf7\x0e\xc4\xc7\x03\xb4\xaf\xee\x98\x42\xc2\x70\xe6\x82\x93\x1b\x21\x2e\xc5\x87\x3b\x42\x2c\x14\xba\xc0\xec\x1a\x2f\x70\x74\xd7\xca\xb8\x66\x25\xa3\x8e\x86\x38\x50\xff\x1f\x1b\x3a\x0c\x0b\x00\xe5\x16\xcd\x64\xb2\xf9\x34\x74\x42\x7a\x5f\xce\x60\xfd\x64\xf6\xb7\xb1\x0f\x74\xb4\x96\x24\x2b\xfb\x47\x96\xad\xaa\x42\x93\xd6\x80\xc3\xd7\x75\x31\x63\x26\xcc\x7a\x7b\xf3\x66\x37\xf7\x25\x81\x6b\xac\xec\x90\x5c\x6d\xc9\x4c\xbd\x2e\xca\x5c\x59\xbd\xc3\x7d\x7c\x12\x48\xad\xab\xed\x97\xad\x83\x6b\x9e\x86\x84\x7e\xb8\x8a\x94\x53\x6e\x71\xae\x84\x49\x6c\x75\x1c\x60\xfc\xfb\x7d\x29\xc5\xb4\x5b\xed\x6d\xec\xc0\xa3\x2c\xc2\xa5\xff\x94\xe7\x17\xa7\x86\xc8\x9d\x22\x98\x39\x55\xc4\x31\x30\x5f\x2c\x3d\xf3\x73\x93\xd4\xd2\x34\x20\xd8\x8e\xb8\x9a\x61\x24\xbf\xb1\x13\x8a\xf5\x46\x4b\xa3\x7f\x55\xa0\x56\x93\x4c\xe0\xa3\x74\x30\x75\x2c\x37\x64\xe1\x36\x83\x75\x0a\x97\xf0\x07\x87\x53\x56\x88\xf0\x7d\x22\x9c\xe4\xa1\xb6\x58\x0d\x6a\x5c\xb2\x6b\x6c\xe6\xfd\xf5\x12\xb3\x79\x5a\xb4\xba\x7b\x2b\xee\xa8\x30\x0e\x84\x18\x5f\xca\xa6\x56\xf5\xc3\xdc\xb3\x6d\xf7\xcd\x17\xaa\x2f\xc7\xd8\x32\x0f\x60\x91\xa8\x66\x4f\xbf\x61\x7f\x1c\xc0\x4d\x2c\xd5\x23\x70\x27\x6b\xe1\x2c\x7e\xb1\xbf\xdf\x08\xa0\x58\x0c\xef\x87\xbe\x82\xd5\x2d\x0f\x92\x90\xcc\x0d\xc7\x30\x7c\x93\xef\xa7\xff\x54\xfa\xa2\x9d\xf5\x07\x38\xb9\xff\x5a\x84\x83\xed\x60\xa3\x5a\x92\xaf\xcd\xda\x84\x94\xb1\x46\x9c\xd8\x51\xb5\x8a\x6b\xf2\x54\xf9\xdb\x0e\x92\x35\xd7\xce\x2f\xb2\xc1\xd7\x05\x3d\x01\x44\x83\x09\xa5\x68\x04\xff\x0e\x87\x7a\xc3\xba\x13\x12\x4c\xcf\xd8\xee\x37\xfb\x74\xf1\x53\x73\x1f\x26\xfe\x55\x7e\xc0\x03\x2b\x6a\xf9\x35\x65\x75\x39\xd9\xae\x7f\x89\x3c\xbe\x71\x73\xec\x59\x16\xe0\xce\x03\x66\x7a\x70\x08\x9e\x50\xb0\xce\x2f\x83\xed\x9d\x75\x0d\x60\x30\xbb\xfb\xa6\x28\x2a\x5a\x06\x20\x93\xc6\x34\x31\xdf\xc2\x7c\xf4\xb9\x5c\x98\xe3\xb8\x68\x02\xb5\xbc\x06\x83\xd8\xde\x43\x68\xa9\x2c\x88\x00\x81\x1d\xd1\x5d\xa0\x8b\xa4\xf8\xbd\xc7\x7a\x48\x3a\xa9\x95\xcc\xa0\x8a\x79\x35\x33\x9d\x3d\x72\x97\xde\xcf\xe7\x6f\x26\xb5\xcb\x35\x5e\xd3\x8e\x08\xd5\x58\x1a\x41\x7a\x58\xd2\x29\x16\x77\x51\x65\xf9\x7f\x99\x91\xb7\x10\xfa\x6c\x0c\x07\xe6\x5f\xfa\x8b\x4b\xa1\x74\x2c\x67\x73\x08\x7f\x55\xe7\xda\xdd\x0f\x7b\x20\xb4\x07\x77\x30\x0e\x82\x78\x92\xe5\x49\x9b\x62\xd5\x20\x45\x59\xfd\x65\x9b\xb0\x6d\xf5\xed\x39\x46\x80\x23\xba\xea\xca\xb6\x3a\xf6\xdb\x0b\x2b\x03\x12\x51\xeb\xd0\x6d\xab\x86\xf5\x78\xae\x74\x9f\x89\x2c\x81\x57\xaa\xde\xab\x35\x26\x0c\xa9\x6f\xde\x32\x04\xf6\xbd\x72\xcd\x26\x55\xd6\xf1\xbb\x9d\x23\xa3\xed\xaa\xe8\xc1\x44\xa9\x2e\xc7\x02\x4a\x00\x61\x73\x81\x53\x3a\x8a\xc3\x68\xa9\xcd\x40\xa9\x65\x88\x7a\x0c\x7b\x5e\x63\x0d\xbb\xb9\x54\x89\x8a\x7c\x32\xd5\xe2\xb6\x3d\xb1\x3b\x61\xf3\xc6\x00\x98\xfb\x5d\xa1\x57\x8f\xab\x2b\x67\xf5\x53\x82\x18\xcf\x1b\x21\xe5\x3d\xd4\x7b\xaa\x73\x6a\x1d\x08\xaf\xd2\xf4\x0d\x0a\x28\x97\x4f\xb1\x1d\x3f\xcd\x22\x0f\xd5\x85\x90\xdb\x96\x3c\x22\xbe\x1b\x9a\xf7\x5a\x48\xcc\x1a\xea\x89\x7f\x37\x91\xc4\xcd\xcf\xf2\x53\x0e\x25\xe6\xac\x03\x67\x17\x4f\x2b\x5e\xd1\x10\x19\x74\x77\xa6\xa1\xfd\xa6\x8e\x31\xf6\xdf\x3a\x36\xfa\xd1\x71\x98\x9a\x1e\x8c\xc5\xf9\xb6\x0c\xf4\xcf\x6f\x73\xf9\xb9\x72\x1d\x61\x28\xbf\xed\xf9\x0a\xc1\x1a\x35\x21\x65\xcb\x3c\x1a\x4b\xa1\x07\xab\xd4\x27\x64\x60\xef\xb1\x33\x8e\xc2\xa8\x4a\xd7\x49\x7a\x9f\x9d\x3d\xfc\x43\xc9\xa8\x67\xa3\x4d\x4b\xb8\xba\x43\x28\x78\xee\x5a\x93\x97\x61\xba\x93\x2a\xa6\x33\x05\x19\x28\x62\xdd\x7c\x99\x1f\x0f\xea\xbd\x81\x47\x02\xd0\x8d\xab\xdd\x4a\x44\xb3\x68\x65\x4c\xe7\x81\xbd\x3d\x3c\xa3\xba\x96\x0b\xdf\x3f\x2a\x28\x92\xc8\x4d\x22\x4b\x60\x43\x3d\x4b\xd2\x28\x5b\xf8\x66\x01\x3d\xd2\xe2\xda\xb4\x8c\xce\xed\xee\x41\x7f\xf3\x4d\xc3\x52\xfb\x3e\x11\x44\x99\xfe\x34\xaf\x85\xf3\xe2\x88\xe7\xa8\x29\x5f\xe7\x0b\xb2\x55\x30\x59\x41\x37\x38\x9d\xfe\x22\x7a\x51\x10\xca\x74\xc0\x9e\xd5\x42\x5e\x7e\x37\x6b\x02\xf3\x79\xa9\xa3\x38\x27\x30\x72\x23\xa1\x04\xa6\x74\xaf\x78\xaa\xd3\xd0\x10\xd4\x88\x65\x6b\x81\x1c\x8a\x56\x6f\x16\xfb\x81\x2e\xf2\x48\xaf\xc5\x85\xd1\x9e\xd1\xb4\x5a\x6a\x26\x2a\x22\x43\xb4\x27\xe1\x91\xc0\x0a\xcb\xda\xc7\xe9\x24\x83\x20\x09\xb4\xab\x78\x20\x5b\x71\x40\xbd\x81\x0b\x6a\x11\xb7\x6a\x04\x76\xe7\x94\x15\xba\xea\xf4\x2e\x78\x94\x73\xce\x37\x5c\xab\x7d\x1a\x5d\x5e\xe5\x56\xd1\x00\x6a\x1b\x6b\x63\x59\x91\x83\xff\x54\xad\x02\xcc\x92\xcb\x10\x5e\x15\x70\xb3\x40\xd5\x4b\x7f\x6a\x4a\x6c\x5d\x6f\x28\xfb\x35\xa1\x97\x6b\xfe\x66\xa1\xc2\xa3\x33\x25\x71\xb8\x38\x0f\x8c\x14\x5e\x07\xee\x97\x3b\x6b\xcf\xa4\x73\xce\x7f\x02\xdf\x16\xc1\x71\x5d\x63\x57\x79\x36\xcc\xbb\x10\xec\x95\x43\x96\x58\x74\x1f\x93\x02\x94\x49\x72\x3d\xfe\xa6\x5b\x1c\xdb\x9a\x56\x8b\x38\xf2\x94\x91\xcf\x56\x2d\x24\xe3\xd2\xd5\xaf\x8f\xdf\x11\x30\xa1\xfb\x4d\x16\xb2\x7f\xe8\x57\x90\xd7\xf5\x87\x9c\x09\x24\x72\x23\xd2\x16\x4b\xb2\x81\x50\x75\xc3\x5e\xd4\xe5\x2c\x3d\x73\x4e\x7c\xee\x74\xd1\x1d\x73\xe9\x63\x8f\x0c\xcb\x28\xa2\x8e\x5f\xe1\xdb\xfa\x08\xa5\xbc\x09\xf3\x13\x75\x84\x8b\xff\x35\x9b\x69\x2e\x2c\x7b\x26\xc1\x88\x67\x2c\xfa\x21\x30\x9b\x65\xeb\x35\xa6\x25\xde\x52\x79\xb8\xa8\xf0\x30\xd4\x07\xd4\xc1\x43\x42\xa2\x51\x39\x61\x68\x12\xb6\x09\x10\xa3\x85\x8b\xad\xbd\x08\x5b\xd6\xc8\x8b\x67\x66\x98\x9a\xd3\x0b\x57\x07\x1f\x8d\x83\x80\x99\x1b\x8d\x87\xb1\xfd\x69\xeb\x25\x73\x51\xe3\x52\x0d\xed\x22\xaf\xb5\xbc\x40\x58\xa4\x77\xa3\x8c\x02\xe6\x94\xb6\xd2\x1c\xb2\x1a\x2e\x0c\xb1\xb6\xe8\xc8\x2f\x55\xc4\xf4\x1d\x78\xf5\xa7\xb9\xf4\x7f\xb2\x16\x40\x5b\xe4\xe0\x70\x1d\x1e\xfb\x7d\x36\x7e\x32\x1f\x8b\x09\xff\xe6\xfe\x41\x52\xcb\x51\x67\xbf\x2a\xb5\x35\x33\x6c\x64\x7a\x73\x29\xba\x1c\xf5\x7a\x83\x7f\xa5\x5f\xf9\x1a\x3c\xbd\xe5\x73\x24\xcd\x77\x1e\x24\xd1\x42\x95\x97\x1b\xfa\x56\xc6\x74\x9e\x46\x51\xd4\x29\xc0\x45\xfe\x7d\x82\xfb\x9f\x07\x24\x39\x6a\xd5\x84\x9f\xda\x83\xc0\xb7\x91\xfd\x90\x2b\x79\xab\xde\x0f\xe5\xed\x2b\x14\x29\xf9\x7a\x94\xbf\x75\x03\x7e\x19\xc7\x0c\x73\xae\x82\x70\xe1\x0f\xb2\x9f\x98\x71\x2a\x3c\x1c\x68\x8b\x1c\x1d\x2a\x9f\xdc\xe6\xcc\x6f\x34\x68\xef\x0b\x2a\xcf\xe4\xdf\x1c\x0f\x85\x10\xf4\x41\x75\x2c\x0d\x7a\x51\x9b\x96\xd3\x1b\x2e\xa5\xcb\x9a\x0c\x8e\x2c\x7a\x46\xbb\xaf\x1e\xb6\x4a\x95\x2e\xe5\x18\xcb\x62\x51\xc1\x4c\x4e\x6f\xcf\xd2\x64\xe2\xec\x87\xb4\x09\x3f\x28\x3e\x10\x2b\x47\x15\xb0\x4f\xec\x8a\x90\xdd\x09\x44\x79\x4e\x8b\x8e\xc9\x35\x4b\x04\x37\x89\x77\xad\x5b\xd7\x41\x0d\x75\x4f\x14\xdb\x4f\xc7\x03\x4e\x0b\xfd\x2e\x4f\xe4\x8c\x45\x31\xa8\x44\x2a\x5e\x0a\xcc\x16\x12\xc6\xaa\x70\x79\xac\x36\xf6\x0d\x1f\x2a\x43\xe7\x53\x6b\x73\xbb\x88\x8d\xb9\xa0\xde\x24\x7d\x0b\xf9\x67\xc7\xe2\x9b\x37\x37\xbe\x37\x43\x97\xed\x1c\x25\x3c\x0b\x8f\x36\xee\x77\xbf\x69\x20\xd3\xf3\x5e\x9b\x78\x1a\x1e\xee\x59\x20\x4b\x3a\xf5\x02\xf2\x3c\x0e\x40\xd2\x03\x71\xaa\xaf\x87\xde\xe4\x59\xf9\x73\x4c\x13\xb0\x31\xf4\x0d\x96\xc0\x3c\x47\x5f\x33\xdc\xec\xd3\x66\x11\xe8\xa1\x2f\x8d\x5c\x5c\xdb\x26\x39\x6b\x13\xaa\xa3\xf5\xdc\xf3\xcf\xff\x66\x4e\x37\x69\x43\xf3\x5d\xdc\x6b\x1c\x37\x20\x63\x15\x9f\x37\xd7\xd1\x09\xcf\x85\x6f\xbb\x81\xd2\x79\x30\x06\xce\xb5\x37\x63\xcf\x3b\xf8\x4c\x92\x75\xea\xda\xed\xaf\x90\x1b\x1b\xb1\xc0\xac\xb7\xcb\x35\xd6\xb0\xc3\x07\xf5\xfc\x46\x50\x3b\x18\xe7\x6f\xfb\xcd\x71\xad\x7c\x74\x68\x1c\xb9\xb4\xac\x0c\x71\xa4\x07\x56\x66\xf6\xa6\xfb\xcf\xac\x2c\x29\x33\x62\xab\xe6\xb8\x0e\x72\x2d\xd8\x7a\x16\x1e\x6c\x50\x0c\x9e\xfa\x41\xac\x29\x4d\x06\x3b\xa5\x08\xb0\x2c\x5d\x9a\x80\xbd\x5f\xa6\xaf\xc8\x77\x3d\x40\x74\x66\xc9\x2e\x37\xc3\x58\xf6\x8b\x5b\xf9\xa1\x93\x42\x3d\xf2\x94\xf1\xa4\xf8\x94\xf9\xd8\x67\x5e\xca\x9e\xcc\x69\x4d\x65\xca\xa9\x33\xc8\xaf\x71\x3c\x5e\xca\x00\x36\x75\x37\x5d\x90\xb1\x7b\x9f\x55\x7f\xd4\x8c\x3b\x78\x76\x60\xdc\xea\x2d\x72\x7e\xaa\x19\x21\x49\x92\x09\xe9\xb7\x6d\x4c\x3f\x86\x62\x1b\xbc\xee\x0c\x19\xac\x85\x5e\x36\xfe\x66\xa9\xab\x97\x8e\x9a\x0b\xd0\x2f\xdf\xe6\x49\x31\x79\xa7\x6c\xce\x81\xc0\xd4\x00\x72\x32\xfa\x6f\x4a\x8d\x29\x73\x06\xe8\x7f\x5a\x75\x80\xf0\x92\xc7\x2a\x9f\x01\xa7\xfc\x3e\x4a\x05\x24\x81\xaa\x17\xfa\x89\x24\xbe\xbd\xd6\xc0\xf3\x62\x27\xfb\x28\xb1\xe2\x7d\xbc\x9f\x86\x07\x26\x66\x53\x53\x68\xbe\xc0\x7f\x3d\xba\x44\x2e\xd6\x63\x5d\x56\x0b\x5d\x36\x66\x35\x86\xb9\xc7\x5f\xb6\x2c\xa7\xd9\x19\x25\xac\xa6\x5e\xfb\xd4\x11\x8f\xb5\x74\x89\xb0\xe1\xe3\x2d\xf5\x2f\x7e\x78\x29\x7c\xc3\x5c\x6e\x88\x96\xd8\xc7\x3c\xed\xa0\xaa\x7c\xc8\xe2\x51\x26\x15\x6a\x22\x9d\x48\xe0\xcc\x57\xdc\x20\xba\x05\x07\xcb\xc5\xbd\x76\x56\xb9\x55\x1d\x7f\xc0\x1c\x38\x86\x01\x05\x62\x2b\x7b\xd9\xfc\x7d\x20\x67\xfa\xd7\x6c\x63\x75\x4f\xe1\x27\x74\x12\xd2\xb2\x4b\x9d\x22\xa3\x67\x99\x0a\x78\x2d\x07\x86\xb6\xcd\x48\x5e\xbf\x03\xf6\xaa\xad\x79\xf3\x66\x8e\xc4\x7c\x38\x38\x6b\x6b\xc8\x55\xfb\x15\x2d\x98\x29\x91\xd8\xaa\xdf\xfd\x70\xe6\x04\x6e\x23\xbb\xb6\x18\xea\x74\xb4\x97\x1b\x40\x15\x31\x1a\x8f\x9c\x47\x85\x94\x0e\x87\x5d\xaa\x72\x58\x3b\x99\x04\x46\x9a\xe9\x6a\x00\x14\x65\xe2\xb3\xee\x43\xa0\x05\xa6\x6c\xfe\x6e\x1d\x18\x1c\x74\x85\x69\xbc\x45\x1e\xc2\x62\x99\xbf\x71\xa3\x4f\xde\xd2\x4d\x8b\x74\x45\xa6\xcd\xce\xbe\x20\x3d\x36\xc2\xd2\x90\x20\x30\x03\x27\x47\x18\xc3\x60\x07\x31\xf2\x87\x46\x06\xcb\x97\x55\x54\x93\x15\x5a\x57\x63\x07\x41\xf5\x35\x06\x5b\x11\x8a\x1a\x88\xb5\x06\x29\x8f\x32\x77\xe2\x5e\x6a\x93\x53\x08\x7e\x4a\xd9\xb6\xcd\xa2\x99\xc7\x35\x1b\xd1\xd0\xf7\xcc\x08\x47\x98\xdb\x74\xc9\x9e\x82\xb9\x04\x10\xec\x03\xf5\x06\x7d\xd9\xb2\xc4\x21\x16\x3f\x97\xc8\x30\x77\x00\xd1\xef\xd1\x3f\x3b\x20\xc9\xe5\x7b\x01\x9d\x8a\x1d\x26\x5d\x63\x13\x34\xeb\x60\xd0\x74\x86\x77\xc9\x9b\x80\x57\xc4\xba\xe2\x10\xff\x14\x18\xb1\xc4\x36\x79\xe9\x00\x04\xcf\xc1\x15\x6c\xd1\x95\xe9\x4c\x3e\xf6\x2c\x0d\xd1\xf5\xef\x8d\x50\xd7\x6e\xe8\x68\x1a\x01\x13\x9f\x1c\x7c\xe6\x0b\xc1\x6a\x8c\x38\xa0\x4e\xa5\xb5\x59\xd3\x2f\x19\x82\x85\xbc\x1d\x6f\xf8\x90\xa9\x24\xf5\xd7\xd4\x1e\xf8\x17\x36\x00\x0b\x7e\x40\xa0\x60\x71\xcf\xe4\x2d\x35\x02\x48\x97\x28\xe0\xd9\xaf\x79\xb5\x8f\xf7\xfc\xa6\xde\x2b\xad\x43\x6f\x6d\x22\x93\xb5\xfd\x0b\xc5\xc0\x51\xbe\xd5\xec\x6c\x8e\xa7\xfa\xd7\x57\xf0\x8d\x3f\x25\xe6\xd0\xda\x69\x1a\x6c\x3e\x91\xc3\xf5\xe7\x56\xaf\xb8\x6d\x96\x45\x7c\x3b\x21\x26\x8e\xa4\x07\x7a\x40\x60\x33\x52\x29\x5b\x4d\x52\x0d\x22\x5e\xcf\x78\xb7\xb5\x84\x58\x8a\xa9\xdd\xcc\xf7\xc4\x44\x9e\xe2\xfc\xbf\x58\x33\x4e\x5c\xac\x63\xfd\xe9\x22\x90\xf7\xd0\x6f\x0b\xc2\x3b\x7b\xc5\x90\x98\xf4\xaf\xe9\x19\x10\x2b\xa8\x98\x86\x6d\x43\xcc\x2f\x8d\xd6\x5b\xf1\xf1\x93\x10\xd3\xfe\xb3\xa2\x25\xb8\xeb\x08\x56\x99\x25\x0f\x9b\xb3\x6b\x93\xbc\x2f\xc0\xd2\xe2\x79\x22\xf4\x4c\x6e\x75\xdd\x3b\x56\x14\x5c\xad\x85\x70\x21\xe6\x70\xb0\x6f\x23\xb0\x86\x9f\x64\x28\xa2\x6d\x72\xd0\x86\x1f\x16\x87\xe8\xc2\x21\x90\x90\x3d\x44\x79\x87\x3b\x24\xeb\x3b\x2c\x7f\x3f\x3c\xe0\x1a\x8e\x97\x22\x8e\xfa\xa3\x78\x48\xbd\x3a\xb3\xd1\x31\x7b\xaf\x0d\xc9\x9b\x8f\x42\x5d\x4b\x0a\x2a\xc8\x33\x30\x88\xc3\xa0\xd4\xe5\xce\x99\xe5\xf0\x70\xbf\xaf\x5a\xe6\xc1\x11\x66\x79\x00\xae\x16\x06\x1b\x94\xb9\x1e\xd9\xa6\x2f\xdf\x40\x1a\xeb\xf2\xd6\x86\x78\x62\x67\x11\x1e\x24\xef\xe1\x9c\x4e\x34\xe8\x45\x30\x7a\x72\x31\xbe\xc3\x8f\x4c\xb8\xab\xd1\x30\xbb\xb1\xea\x46\x28\x74\x69\xc7\x0e\x4d\x9e\x00\x1d\x75\x93\x09\x0e\x5d\x03\x8d\x43\x0f\x05\x51\xef\x46\x01\x04\x50\xb0\x34\xcf\x6a\xbe\x03\xef\x87\x00\x19\x94\xbd\xd3\xa2\x3e\x2d\x0a\xb0\x98\xa8\x84\xc4\x43\x61\xc6\xea\x31\xc3\xb8\xc9\x43\x6a\x22\xc6\x49\xdd\xab\x2b\x9d\x81\xb5\x63\xc7\xa4\x26\x2a\x5c\x5e\xb1\x65\xd1\x99\x0b\x87\xba\xaf\xaa\x5a\x39\x1a\x5d\x73\x0c\x66\x1a\xee\x49\x60\x70\xdc\xb5\xa8\x07\xb2\xed\xba\xd4\x86\x74\x1a\xca\x58\x9b\x88\xa1\x1a\xa5\x6a\x87\xa4\xba\x36\x92\xa0\xd1\x8a\xcb\xf1\x2b\x1a\x08\x84\xb1\x3a\xaa\x81\xcc\xa2\x88\xc9\x75\x0a\x3f\xee\x75\x16\x28\x7a\x83\xa3\x9f\x4a\x42\xf8\xde\x7b\x1a\xfd\x0b\xb2\x74\xbf\x7f\x6a\x1d\x93\x0b\xee\x03\xdc\xbf\xb0\x16\x58\x79\x6b\x32\x50\xca\x7a\xa0\xd4\x45\x2e\x56\x78\x6c\xb7\x20\xf5\x42\x95\xec\xf5\x60\xf5\x94\x3e\x34\xbb\x2b\xf1\x61\xfb\x5b\xb5\x11\x15\x59\xfc\xe6\x47\x56\xa7\x3b\xe1\xdc\x0f\x79\xce\x2a\xd0\x8b\x27\xd5\x50\x2c\x0f\x78\x55\xad\x25\x5b\xfa\xda\xbb\x7e\xbd\xc6\x79\xd7\x79\xb7\xee\x48\x4c\xb7\x94\xa2\xfe\xf7\x68\xaf\x2b\xf6\xe9\xae\xc4\x3f\x2c\x8d\x90\xeb\x98\x45\xc4\x4d\x89\x8b\x6e\x6f\x97\xfd\x4a\x26\xc2\xd4\x8f\x04\xac\x2d\xa7\x7d\xae\x27\xfe\xb4\xe3\x15\xf8\x3a\xcc\x05\xaf\x1a\x69\x66\x02\x77\x0a\xbc\x0d\x22\x32\xc9\x45\x54\xb1\x59\x40\xe5\x43\x90\x5c\xa3\xd2\x2a\x80\x6d\x45\x9d\x93\xe8\xbf\xa2\xc2\xd1\x39\x58\x35\xf4\xd3\x5a\x10\x93\xcc\x58\xb8\x27\x2d\x62\xb8\x0f\x0a\x7b\xbc\x24\x5c\xeb\x6c\xda\xab\x6c\xdf\x4d\x18\x45\x19\xd5\xf4\x7d\xa0\xf5\x7b\xe4\x5c\x8a\x7f\x66\xea\xe2\xbf\xdd\x93\x2b\x63\xa1\x0c\x3e\xf6\xf0\x0f\x31\xf1\x87\x49\x7c\x89\xd1\x66\xcf\x4a\x40\x18\xb5\x38\xae\xf1\x08\xad\x94\x1e\xac\xa8\x02\x12\x0d\x69\x04\x02\xfd\xe6\x86\x51\x31\xfd\x4c\xa1\x06\x66\xf4\xe3\xed\xf6\x58\xd5\xfc\x47\xf3\x64\x4a\x6f\xac\x75\x52\x34\x37\xd6\x22\xbb\xad\x7d\x0f\xa7\xa0\x9c\x65\x9a\x82\x5d\x45\x6f\x72\x26\xf8\x2d\xe1\xef\x76\x07\xf8\x30\x65\x54\x48\x04\x2f\x19\xbb\xc9\x5a\xbb\x6e\x94\x45\xcc\x9e\x69\x0e\x14\x0f\x2f\x39\x5c\xed\xf5\x74\x32\x7b\xab\x07\xc9\xc4\x73\xe9\x19\x2c\xdc\x9b\x2e\x99\xca\x7d\xa7\x41\xcc\xda\x58\x85\x5d\x30\x9b\x31\x7f\x1f\x2a\x24\xc9\x6a\x0a\x95\xd3\x80\x31\x36\xb0\xd1\x69\x10\xa6\xa8\x3c\xd7\x54\xca\x29\x9d\x2e\x3a\xc7\x3f\xd1\xc2\x29\x76\x2c\x14\x39\x56\x45\x27\x7e\xff\xf4\x38\xaa\x4b\x9d\xa5\xc9\x97\x8c\x59\xe5\xc1\xd4\xa1\xc0\x17\xea\x54\x7a\xed\xeb\x89\x92\x9e\x69\xb1\xed\x15\x18\xde\x67\x85\x6e\xd6\x58\x00\x0c\xf6\x3d\x47\xef\xbf\xbc\x6e\x12\x1c\x85\x51\x16\xa5\x6f\x4f\xcd\xec\x34\x99\xff\xad\x30\xe3\xa5\x58\x7d\xd7\x8d\x41\xf7\x98\xa2\xc8\x4d\x18\x1f\x7b\xdd\xf4\xc6\x28\xe4\xf2\xb5\x74\x1d\xe9\xcc\x7a\x89\x77\xcc\x5a\x47\x5d\xe2\xfe\x70\x0c\x9f\x44\x80\xde\x45\x26\x6f\x78\xb5\xf2\xb5\x06\x4f\xa2\xbd\xd2\xbc\x7c\x6a\x15\xcb\xac\xa9\xfe\xf6\x1a\x17\x91\xf0\x41\xec\xc1\xff\x36\xf8\xa3\xea\x07\x02\x7f\xb5\xb8\x97\xe4\x1f\x86\x93\x75\x94\x40\x56\xfc\xec\xc5\xf8\xef\xac\x31\x30\xad\x84\x60\x27\xec\x33\x9b\x0d\xa9\xcd\xf1\x68\x2d\x86\x5b\x12\x58\xf4\xb4\x83\x7b\x72\xd7\xdc\x6e\x09\x03\xa8\x3c\xf2\x85\x13\x4d\xc2\xdc\x91\xe5\x82\x5c\x87\x90\x4b\x40\xec\xee\xe2\xf3\x04\x57\xbb\x70\xc2\xaf\xaf\x76\x36\xfa\x56\x4d\x56\x27\xe5\xd4\xd8\x3f\xbd\x78\x62\x9b\x8d\xa2\x22\x0c\x5c\xa8\x12\x77\xe0\x19\xe1\x63\x2f\x34\xf9\x81\x93\x5f\x4f\xb3\x74\xc2\x66\x3e\x37\x64\x21\x1c\x82\xf5\x96\xc7\x0a\xdb\xe2\x67\xee\x7f\xb0\x9d\xec\x34\x48\x40\x7d\x17\x8c\x08\xf5\x85\x3d\xc6\x91\x5e\x52\xf2\xb9\x58\xc6\xb0\x27\x70\x49\x3a\x0d\x77\x72\xf4\x52\xad\xbb\x6e\x0c\x1f\x56\x28\x2d\x37\x6c\x16\x15\x09\x2d\x7c\x5c\x49\x7f\x2b\x6e\x84\xc4\xfd\x72\x16\xec\x6f\x9d\x1a\x70\xfe\xe5\x52\x4e\x26\x35\x97\x96\x68\xde\x3c\x1e\x0c\x7b\x16\x33\x36\xd2\xa4\x16\xd6\xad\x3d\x23\xc9\x88\x02\xe3\x5a\xcc\xdf\xb3\x05\x14\x87\x0a\x8f\xa9\xf6\x87\x3c\x5d\x92\x6f\x02\x78\xe4\x42\x33\x07\x08\xaa\x46\xa7\xd1\x40\x64\xcf\xcf\x7b\x48\x3a\x33\xe3\x73\x63\x36\x28\x84\xda\x51\xf5\x0c\x71\x71\x6f\x73\xdf\x8c\xe3\xd2\xee\xe3\xaf\xc1\x96\xa1\x55\xe3\x2d\x31\xb9\xac\x45\xde\xd9\x3b\x94\x90\xc7\x13\x35\xbe\x47\xa6\xf6\x42\x2b\xcc\x41\xa3\x43\xbc\xcd\x76\xe2\x26\xf9\x90\x51\x69\x20\x84\x74\x9c\x57\x9f\x4c\x56\xe4\x17\x60\xd6\xcb\x5f\xbf\x8b\x33\x19\xde\x5e\x89\x34\xa0\xe1\x62\x56\x83\x77\xc2\x4e\x80\x25\xff\x64\x8c\xb9\xe8\xec\xe0\x13\x3f\xf4\xe2\x15\x63\x95\x47\x5c\x9f\x98\x1d\xde\x2a\x38\x91\x25\x55\x1d\xd5\xa8\x45\x37\x09\x79\x9e\x8d\x1a\x10\x12\xa7\x03\xb2\xa3\x17\x66\xba\x93\x13\x50\x15\xff\x54\x11\xcf\xe7\x6f\xf6\x47\x47\xb1\x67\xdd\x69\xcd\xa5\x34\xa1\xc1\xcb\xa2\xb8\x04\x6f\x6d\xd0\x04\xfe\xe8\xef\x70\x30\x67\x15\xb9\xe8\x4a\x28\xd1\x28\x4c\xf1\x7c\xe7\x5b\xcd\x38\x1d\x78\x13\x4e\x18\x25\xaf\x21\xc4\x10\x4b\x8c\xcd\xfa\xf0\xa4\xd3\xf0\x86\x74\x8a\xc6\x72\xa8\xc1\x2e\xad\x3a\x1e\xa4\x62\x5a\x1d\x0b\x3d\x0f\xc9\xcb\x8c\xe9\x03\xe9\x4f\x0f\xed\x9e\x74\x50\xf4\x58\x8d\xbe\x66\xa4\xab\x68\x23\xea\x64\x4b\x44\xc7\x8a\x22\x38\xbe\x65\xfa\x40\x2e\x3b\x1a\xd9\x69\x05\xa1\xd4\x95\x5e\x29\xf5\xaf\x9d\x9f\x1d\xd1\x5c\x1a\x8a\xc9\xda\xa4\x70\x7f\x6c\x15\x08\x1a\x89\xb7\xfb\x25\xcf\xfd\xfa\xa6\x17\x1c\x10\x75\x70\x97\xbc\x19\xa8\x93\x83\x57\xef\x38\x6b\x50\xb6\x05\xdf\x8a\xb2\xd3\xa4\x5b\x21\x61\x57\xf0\x9d\x9c\xe3\xf4\xf4\x2c\x4c\xd8\xf7\xd5\x70\x31\xff\xe8\x50\x82\x03\x4b\x0d\x56\x4d\x70\x74\x15\xfa\xac\xa6\x2f\x0a\xb3\xa5\xbb\x19\x92\xa0\x88\xb1\x8b\xdb\xc5\x86\x44\x96\x6c\xe9\x8c\x82\xcb\x00\x6a\x8b\xe6\x6c\x90\x38\x63\xb0\x90\x6a\x19\x64\x18\x1a\xd6\xb0\x74\x09\x23\x15\x34\x3c\xf5\x1e\x62\x03\xed\x79\x18\x0d\x6b\xc7\x2f\xc9\xd3\x0e\xa0\x45\x78\x18\x82\xb6\x0a\x61\x7b\x5f\x58\x11\x1d\xf7\x95\x15\x3d\x66\x26\x7b\xb6\x28\xc1\x52\xd9\x60\xa7\xfe\x81\xd2\xd0\x44\x83\xe7\x6a\xe5\xd9\x30\xfa\x87\x3a\xd2\xa3\xba\xdf\x4f\xf7\x04\x1e\xb5\xb7\xfb\x09\x23\xaa\x22\x50\xea\x69\x73\x2d\x74\x50\x9f\xdc\x96\xcd\xad\x63\xc0\xaa\xdd\x2c\xf3\x68\x90\x53\xfb\x2c\xef\x34\x01\x7b\x2c\x47\x70\x9a\x10\xa4\x26\x84\x0f\x9f\x3f\xe0\x17\x8f\xdb\x0b\x3c\xbc\x33\x81\xb3\x03\xd8\x2d\x99\xd1\x18\x61\x5e\x14\x59\x3e\xe4\x1b\x89\x8c\xc8\x72\x5f\xdb\x4e\x51\xe2\x9e\x6b\x26\xa5\x09\xd3\x26\x7a\x1b\x16\x54\xdb\x3e\x96\x75\xbc\xba\x44\x7f\x3f\xea\x6e\xae\x72\x4e\xff\x7d\x96\x82\xfb\x05\xd6\x86\xac\xc6\x25\x39\x21\xd1\x27\x87\x33\x1f\x29\xed\xf7\x5c\x3f\x77\x66\x74\x3f\x6c\x0b\xb7\x8b\xde\x4b\xde\x0b\xe3\xc5\xb7\x52\xdf\xe9\x3d\x20\x95\xa3\xca\x41\x8a\xc0\xc8\xda\x97\xf2\x43\x8e\x39\x3d\xd6\xdf\xfa\x01\xb8\x5f\xae\x9c\x8d\xbe\x64\xf4\x2b\x18\x62\x3a\xd7\xf0\xd6\x4d\xf4\x77\x2b\x02\xa2\xa7\x55\x89\xf0\x98\xaf\x64\x84\xf3\x24\xd3\x72\x37\x88\xb5\x24\xb1\x03\x2b\x61\x4d\x4d\xb8\x6c\xf6\xad\x75\x47\xcc\xed\x2e\xf9\x62\x0a\x54\x8b\x41\x20\x20\xbe\xd2\x9d\x30\x15\x82\xcf\xd8\x61\xc9\xb9\x9b\x7a\x9a\x4c\xeb\x96\xc0\x8b\x68\xba\x06\xa7\x27\x98\xfb\x41\x15\x3d\xcb\x85\x21\x21\xfe\x5a\x91\xd4\xf0\x97\xcb\x47\xa8\xf5\xdc\x1d\xae\xe8\xf2\xb0\xc1\xd4\x29\x1d\xb0\x81\x27\x5f\xf7\x92\x01\xfb\x28\xe1\x9f\x64\xb1\xac\x94\x09\x50\x9f\xd9\x19\x3f\xb5\xaf\xcd\xed\x64\x7c\x50\x7e\xac\x30\x65\x3c\x7b\x2c\x28\x5c\x58\x2a\x1d\x3b\x8b\x24\x81\x4b\x23\xe3\x4f\x17\xed\x72\x04\x2a\x7f\x0f\x87\xd7\x4b\xa2\xf4\x35\x48\xbe\x95\xe3\x36\x39\x26\xde\x28\x81\x98\x0e\x3f\x7a\x70\xdd\xa9\x89\x9f\xbf\x0b\x93\x0f\x35\x8c\x4d\xae\x97\xf2\xa0\x38\x42\x63\x99\x49\xfc\x41\x9b\x46\x3e\x38\x4a\x8d\xba\xb2\xdd\xea\x8c\x1c\x70\x82\x17\xd6\xb4\xab\x10\x09\x25\x84\x79\xca\x10\xa9\x43\xfa\x59\x95\xac\xb0\xb7\x96\xaa\x00\xe1\xe7\xba\x2c\x97\x2a\x6f\x15\x37\x30\x6c\xe2\x68\x96\x82\x4a\xbc\x4b\xdf\xa3\xcb\xf6\x81\x3f\xb6\x0f\x6d\xc7\xad\xa2\xaf\x74\xaf\x74\x6a\xd2\x22\x1b\x10\x42\x03\x38\x55\xe9\x56\x70\x96\xbc\x62\xdc\x29\xab\xde\xa6\xf2\xa8\x09\x45\x4e\x76\x70\x87\x3b\x00\x91\xa9\x7c\x66\x41\x4f\x1f\xba\x3c\xbe\x60\xde\x34\xff\x91\xbb\x1d\xef\xcc\xf8\x12\x46\x6f\x0f\x8e\x40\x4d\x0c\x9e\x71\x4e\x99\xd0\xdc\x0b\xd3\x0d\xe9\xd2\x66\xb0\x31\xec\xa9\x23\xca\xb6\x54\x0c\x36\x90\x78\x76\x24\x01\xf0\x88\xe7\x9b\xd2\xe7\x87\x12\x47\x7c\x52\x1f\xb3\x46\xb6\x91\x23\xff\x0e\xc5\xa1\xe6\xf6\x2f\x84\xb0\xba\xd3\xc7\x0c\x82\xd9\xe0\x50\xd6\x2e\x2d\xd5\xfc\x52\xfa\x75\xdf\x0d\xe3\x36\x16\x73\x8c\xfe\x3f\xe4\xe9\x8c\x24\x5d\x7a\x1e\x83\xae\x7a\x61\x66\x08\x81\x37\x1d\xca\xc0\x39\xb5\x23\xe0\xc8\xcc\xb7\x54\x9f\x1c\xbb\x59\x4f\xa5\x5b\x28\xf0\x55\xc5\x91\x20\xe7\xd4\xba\x94\xff\xd5\xac\x0d\x92\xfb\xce\x19\x90\x14\xd6\x10\x74\xcb\x42\xeb\x3a\x53\x78\x05\x4e\x8a\xe9\xb6\x6f\x61\x55\x51\x6e\x09\x20\xc6\xa4\x1b\x66\x50\xec\x1e\xa0\x9c\x2a\x55\x42\xaa\x84\x4c\xe5\x1b\x3c\xfa\x77\x0a\xa8\x67\x41\x2d\x9c\x0f\x9f\x50\x76\xc1\x1a\xed\x62\xbd\xf7\x0f\x83\x80\x6d\x49\x2c\xb5\x8d\x24\x48\x08\x9b\xe4\x55\x35\xf3\xbd\x75\x4c\x6f\x31\x63\x1d\xab\x60\x8c\xf2\x3e\x41\xb6\x26\x94\x41\x84\xd8\x03\x81\x6d\x7f\x77\x67\xd3\xed\xbf\x10\x22\x8d\x2b\x77\xd7\x33\xb9\x2e\x2e\xbc\x76\xd4\x0f\x05\xf7\xaa\x17\xdf\x70\x48\xe7\xa4\x03\x4f\xec\xd6\x22\xfc\x06\x8f\x4d\x15\x48\xd8\x2a\xdd\xa3\x0c\x05\x6d\x29\xe3\x6b\xf6\x9b\x76\x20\x35\x5f\xd9\xf1\x85\xbc\x0c\x1c\x4f\x1b\x88\xe5\x78\xf6\x46\x16\xab\x31\x87\xe0\x9a\xd2\xf6\x47\xca\x0e\xcc\xaf\x44\xfd\x8e\x0f\x4c\x03\xc7\x1a\x25\x73\x41\x8f\x07\x1e\x67\x6d\xa2\x2a\x49\x80\x79\x1f\x4f\x98\x51\x70\x08\x2c\x1c\xe1\x16\xe2\xbf\xc6\x9d\x51\x03\xe1\xc4\xcc\x62\x01\xc8\x94\xda\xc0\x6c\x14\x73\x80\x3c\x01\xed\x52\x60\xe1\x44\x3f\xd2\xe3\xfe\xaa\x60\xd5\x43\x18\xbf\xe0\xf6\x0e\x6c\x4f\x2d\x73\xcf\x96\x86\x48\x42\xfe\xe5\x73\x30\xb9\x34\x65\x39\x84\x4d\x55\xad\xd4\x75\xcc\xf0\x6f\x65\xde\x65\x4c\x91\xea\x3b\xfb\xaf\x9e\xc5\xcb\x41\xc1\x42\x03\xe4\x57\x44\x23\x7f\x1a\xa4\x39\x3d\xe7\xef\xc4\xf7\x49\x6f\x45\x34\xab\xa6\x4a\xfd\x39\xe7\x5d\x2a\x96\x0e\x35\x3a\xe7\x47\x2a\xe2\xc9\x40\xdb\x01\x49\x37\x30\xd7\x2a\xe3\xac\xa8\x49\xa6\xae\x52\xcc\xbc\x54\x36\x8b\x7a\xc4\x25\x16\x63\x7d\x88\x87\x98\xae\x83\x65\x19\xf4\x82\xc2\xec\x9c\xd8\x7c\xa1\xd5\x63\x96\x40\x40\xfb\x40\xa8\x32\x9c\xc9\x01\xa2\x78\xac\xf5\xd0\xd8\xea\xb7\x2e\x55\x82\x9e\x6d\x1e\x1e\x68\x14\x22\x3a\xe7\x50\xe3\x7e\x75\xac\xd4\xb1\x8f\xf9\x03\x1f\x3f\xbf\xff\xc1\xb2\xa5\x31\x92\xfb\x5e\x2d\x2c\x85\x8e\xc6\x40\xcc\x8a\xc2\xaa\xa5\xfb\x5c\x9f\x8e\x95\x58\xed\x67\x37\xf7\xf4\xfa\xfa\x2c\xcc\xe7\x88\x44\x92\xdc\x48\x1f\xfb\x91\x19\x7a\xc2\x02\xfe\x42\x5f\x24\x5e\x64\x7a\xca\xf0\x0a\x4e\x66\x6d\xf0\xa5\x1d\xf7\x7b\x02\xae\x12\x30\xaa\xda\x4b\xd2\x3a\x5b\xf2\xc0\x3d\x9b\x8e\x16\xe5\x82\x0e\x5f\x82\x46\xb0\x7b\x98\xac\xf4\x91\x07\x82\xd6\x5f\xf4\xc3\x25\x93\xaf\x9d\x46\x54\x74\x91\x9d\x13\x0a\x21\x98\x85\xd1\xc3\xf3\x96\x95\xd0\x5b\xb0\x8f\xad\x88\x5a\xbd\x83\x33\x3b\x38\xb9\xa6\x17\x46\x5d\xb6\x36\xac\xf2\x15\xa7\x24\x6a\xf5\x1d\xef\xc3\xde\x0d\x16\xf8\x95\x25\xce\x8f\xe6\x71\xce\x67\x8e\x68\x49\x9c\x84\xd2\xaa\xd3\xcb\xb2\x06\xae\xd0\x52\x72\xf9\x8f\x91\xbe\x61\x17\x41\xf1\x4e\x0a\x9c\xaa\xb5\x19\x1d\xf5\x71\x6e\x8e\xe0\xe8\xe3\xf3\x90\x3d\xc6\x75\x68\xac\x8f\x44\x8e\x9e\xa1\xe4\xc1\x98\xae\x07\x15\xbd\x92\x52\x23\x3a\xbf\xfb\x0c\x2d\x9d\xaa\xc9\x7b\x26\x5b\xe1\x33\x42\x16\x3c\x9f\x9f\x11\xd5\xd1\x51\x30\x66\x0a\x92\x94\xeb\x42\x37\x02\x58\x5e\x89\x3f\x4c\xe0\x79\x9e\x1d\xcf\xa3\x3d\x93\x5c\xd3\x63\xca\xc4\xe5\x98\xe7\x1c\xbf\x62\xac\xe6\x3c\x10\x4e\xcb\xbf\x7c\xb6\x30\xe2\xdf\x84\x40\x6d\x7b\xae\xe1\xfb\x55\x96\xfa\x6c\xe0\x22\x0f\x2d\x5a\x7b\xbb\xdf\xa7\xe9\xbc\x19\xe6\x96\xbc\x97\x10\xb5\xce\x9f\x6f\xb8\xdd\x7c\xc2\x6c\xd3\x96\x4b\xc2\xed\xd5\x3d\x09\xbc\xf9\xbc\x28\xef\x2d\x32\x4c\x9f\x0a\xff\x1d\xc3\xf0\x5f\x05\x8d\x7b\x28\x12\xb2\x4f\xef\x65\x70\x82\xb1\x94\x1d\xa9\x5f\xb9\xc5\xb9\x8c\xf2\x0c\xba\x8a\xe2\x84\xa3\x82\x8a\x9a\xde\xb6\x49\xe3\xf1\x97\x73\x47\x88\x44\xff\x30\xb5\x27\xa4\x05\x67\x94\xf2\x71\xd6\x5d\x29\x12\x84\x94\x06\xe3\x40\x2a\xee\xa4\x43\x27\x27\x6c\x92\xaa\x7e\xf4\x2c\x49\xbe\x9e\x58\x11\x0f\xc5\x5b\xb4\x44\x29\x56\xf6\x3a\x35\x4b\x3d\x2e\x28\xb2\x88\xf4\xab\x90\x1f\xbc\xc0\xf2\xe2\x36\x3c\x53\xa3\x96\x71\xa2\xef\x25\xd1\xe1\x28\xf4\x63\x3d\x1b\x85\x69\xec\x56\xbe\x06\xec\x2c\x65\x15\x10\x02\xde\x8b\x34\x7c\x40\x5f\x11\x6e\x26\x4d\x24\xce\xdd\x6b\x3d\x87\x62\x5a\x45\x29\x12\xf2\x9a\x71\x05\x09\x13\x08\x78\xf7\xdf\x5f\x3e\x32\xf4\x11\x10\x98\x83\x9e\x2f\xc9\xd7\x65\xf5\x62\x57\xcf\xe6\xfb\x63\x76\x80\x95\x6b\xa2\x6f\xcb\xcf\xef\xde\xc8\xe2\x29\x0a\x50\x93\x44\xa7\x56\x73\xdf\xad\xbb\x2e\x30\xdf\x43\x85\x01\x77\xbd\xd4\x72\x45\x65\xff\xa4\x14\x40\xa7\x19\xac\xce\x5f\xee\x15\xa6\x1b\xa4\x8c\x2b\xf7\x91\x5a\xdb\xb9\x46\x54\x70\x22\x03\x04\xe7\x35\xf5\x7f\x5c\xbd\x1a\x35\x5e\x4a\xfe\xaf\x99\xd7\x5e\x62\xbe\xff\x6a\x83\x0a\x21\xa5\x13\x5d\xe9\x15\x97\xfb\x94\xc9\xe1\xfd\xf4\x6c\xea\x6c\x98\x1c\xd1\x75\xbd\x24\xf0\x3a\x40\x69\x7f\xb7\x2d\xc2\x6b\xae\x79\x54\x87\xba\x47\xdf\xfb\xaa\x14\x9e\x67\x5a\x2c\x4f\x71\xdd\x86\xef\x3b\x69\xe9\x63\x59\x66\xd2\x6f\x09\xf2\x06\xbe\x80\xd8\xd0\x20\x2a\x7e\x4c\xcc\x56\x46\xcf\x7c\x33\x9e\x66\x1b\xce\x54\x32\x6d\xa3\x6f\xb0\x8b\x7d\xf7\x5f\x4a\x39\xdd\xfd\x0d\x81\xa7\x27\xd8\x38\xd6\xc9\x96\xbb\x93\x75\xa3\xad\x63\xdc\x5e\xac\x95\x73\xcd\xa0\x32\x41\x58\xdb\xa0\x1a\x03\xfa\xfc\x67\xeb\xdd\xc5\x63\xa4\xef\x93\xe5\x24\x27\xc9\x58\xd8\x87\x2e\x02\xd9\xf8\x98\x7d\x27\x21\xfb\xfb\x56\xc6\xe7\xa1\xa6\x35\x07\xb4\x0d\xc8\x85\xef\x0e\x9c\x2c\xd2\xcf\xcf\x8b\x68\xb2\x6d\xa8\x84\xbb\xaa\x59\x22\x9c\x37\xe6\x23\x58\xee\x83\x3f\xc9\xa5\x18\x51\x2c\xd8\xc3\x66\xe2\x2e\x30\x95\xa0\x54\x3c\x48\x50\x12\x7a\xae\x2a\x21\x3b\xaa\x90\x57\x32\x02\x88\x2d\x07\xc0\x55\x7c\xb8\x5c\x42\x5c\xcd\x92\x9f\x54\xc5\xd0\xd1\x06\x3f\x4c\xcb\x73\xae\x8d\x9c\x77\x89\xe7\x05\x1d\xe7\x2d\x90\x68\x89\xe9\x77\x75\xf1\x0f\xab\xf8\x83\xb0\x5c\x06\xbc\x84\xc8\xab\xd8\xeb\x1f\xa0\x9c\x35\x46\xce\x50\x97\xef\xcb\x53\x90\xf2\x8f\x88\x6d\x6f\x1f\x0f\xfe\x30\x66\xf5\x15\x85\x22\x83\xe6\x93\xfd\x1a\x58\x20\x90\xb4\x4f\xc1\x61\x47\xc1\x9c\xe1\x98\x4e\x6b\x78\x38\x7a\x93\x4f\x0d\xca\x33\xdb\x18\x9b\xa1\xd6\x4d\xb0\xb0\x53\x38\x9d\x12\xcd\xb9\x7a\x48\x21\x96\xb7\xdb\x1a\xff\xfd\xd0\x3f\x8f\x30\xc9\xbf\x80\xec\xc8\xe8\x37\x32\xd8\xc3\xa1\x80\xad\x33\x0e\x95\xa3\x41\x42\x18\xbb\xae\xa4\x33\xa5\x3b\x34\x5d\xeb\x04\xc9\xdc\xa1\x7c\xe7\xb0\x6a\x5a\xe6\xfd\x70\x57\x32\xee\x45\x03\xdd\xaa\x4a\x8e\x3f\x64\x47\xf2\x44\x12\x70\x57\xc0\xf4\xf7\x5b\xb8\x1f\x25\xec\x99\xa1\x31\x24\x5e\x33\x01\xf6\x9b\x7f\xfa\x85\x11\x44\x21\x31\x19\xa8\xf0\xf1\x30\x7f\x19\x98\xe4\xff\x14\xc0\x2e\x34\x84\xde\xd2\xe0\x8c\xcd\xb4\x6a\xdd\xc6\x51\x1a\x2d\x4e\x8a\x88\x1f\xbe\xbc\xbf\x4e\xc4\x0a\x9a\x0a\x13\xc9\x02\x74\x79\xa2\xfd\xb1\x04\x74\xaf\xb0\xf6\x21\x33\xac\x9e\x48\x06\x5f\x78\x36\xac\x1d\x44\xed\x6d\xf5\x95\x64\xad\xd6\x0d\xf8\xbe\x36\xd3\x64\x05\xaa\xbb\x05\xec\x1a\x22\xe2\x91\xb1\x85\x5f\x7f\x1c\xc5\x0c\x29\xad\x17\x62\x82\x84\x9f\x74\x3b\x87\x72\x77\x33\x22\xd8\x80\x0c\xa3\x70\x2a\xbf\xbd\xb5\x28\x57\xd0\xe9\x07\x13\x77\x13\x01\x06\xfb\xbf\x6d\x7d\xf1\xbe\x4c\x9f\x61\xc8\x6a\xa4\xa7\xc0\xf4\x02\x6d\x7b\xa4\x78\xd4\xa8\x9d\x99\xb5\x5b\x34\x76\x1d\xb4\x47\xa9\x43\x24\x89\x08\xca\xea\x57\xb9\x50\x61\x7f\xe4\x2e\x06\x3e\x92\x08\x6b\x5c\x52\x87\xf8\xbf\xc6\xca\x75\xfd\x20\xb6\xf9\xe2\x89\x2c\xc4\xc7\x8e\x2b\xa7\xfc\x7c\x20\xd4\xf2\xb3\xde\x19\x9e\xce\xa9\x22\x57\x98\xb8\xae\x85\xe4\xa1\x46\xdf\x64\x6b\xf1\x4e\x46\x94\x1d\x4b\xb6\x21\x1a\x05\x52\xa4\x3f\xa0\x0e\xa9\x28\xf0\xb7\x27\x77\xf5\xc2\x79\xfe\x26\x92\x6e\x05\xfc\x19\x53\x22\xe0\x4a\xe1\xdc\x48\xfc\x0b\x53\xff\x1d\x2c\x89\xad\x5b\xa2\x0c\x44\x54\x6c\x51\x2a\x9b\xb5\xe6\x3a\x76\x13\x5c\x7a\x89\xea\x60\x65\xcd\x73\x1c\x86\xb2\x93\xd2\xcf\x17\xf6\x00\xce\x2d\xa1\x83\x70\xc0\x1a\xcf\x02\x45\x9d\xfe\x35\xae\x0d\x4d\x73\xc4\x89\xa7\xbd\x0f\xd5\xac\xd0\x49\x32\x42\x8b\x8a\x8e\x0a\x19\x59\x16\xef\xeb\x30\x4c\xc6\xee\x7e\xb9\xaf\x69\x5d\x18\x5c\x5a\x08\x49\xa6\x9e\xec\xbf\xee\xea\x86\x6c\x70\xa1\x19\x57\x41\x70\x8f\xb3\x0b\x4e\x3d\x90\xfe\x5d\x1b\xb5\x17\x00\x28\x4e\x56\xa5\xd7\x68\x85\xd9\xde\x1d\x0c\x14\xfe\x7b\x11\x45\x0c\xa1\xd6\x80\xa8\x10\xbd\x92\x09\x34\xb4\x6a\x0d\x40\xd2\xd5\xb8\x76\xd4\x0d\x35\xb0\xa0\xc1\x6b\xc1\x5d\xe2\xfa\xb7\x28\x15\x83\x2b\x2c\x26\xb0\xd6\x41\xa1\x45\xbd\x7d\xfd\x6e\x8f\x0e\xd5\xb2\x25\x53\xab\x1c\xa1\x2b\x44\xb8\xf6\xfc\x3f\xb6\x1c\x40\x69\x6d\xa1\x27\xc1\x96\x00\x7a\x02\xd7\x27\xec\x73\x7f\x64\xfe\x04\xd2\x81\xd5\xeb\x6d\xb9\x68\x75\x51\x7c\x9d\x1f\xed\x6a\x48\x8a\xf9\x26\xb6\xbe\xe8\x75\xc2\x12\xca\x41\x72\xa5\xaf\xaa\xc9\x8b\x4e\x84\xf5\xc5\xb8\x26\x0a\x2e\x05\x65\x74\x9e\xb7\x46\xa7\x25\x92\xe0\x45\x48\x6a\xb0\x0e\x79\x9b\x68\x7d\x59\x13\x84\x81\xf1\x38\x76\x70\xcd\x25\x5c\xc0\xa4\x51\xb7\x4d\xc5\xd1\x54\x48\xe4\xc9\xc8\x69\xe4\x86\x9d\xea\x62\xe2\x06\x2d\x82\x66\x68\xbb\x93\x95\xf1\x48\xdd\x5a\x39\x2d\xd6\xc1\xef\x4f\xcc\xfd\xf6\x13\x9c\x3b\x5a\xd6\xf0\x35\x42\x18\xd1\xc0\xe5\x24\x9e\x32\x71\x93\xb8\x9e\xd7\xc5\xea\x0a\x66\xf4\x77\x47\xce\x56\xc8\xae\x76\x92\xc6\xb2\xa3\x18\x44\xe7\x9b\x6d\xef\x1b\xf3\x96\x97\x2b\xeb\x11\x9d\x82\x9a\x6d\x47\x41\xad\x9e\x32\xa0\x94\x4d\x59\xe2\x18\x41\xf3\x58\x0c\x33\x2d\x85\xb8\xd9\x2c\x43\x0c\x5b\xb1\x09\x98\x5e\x07\x05\x18\x0c\x9f\x6f\xa0\x9f\xb8\xda\xfa\x1c\x58\x2d\x55\xd2\x96\x67\x54\x75\x45\xae\x2f\x29\xc7\x41\x1f\xc5\xad\x59\x0f\x7b\x93\x13\xb3\x66\x34\xf1\x4c\x11\xe3\x67\x77\x99\x42\x69\x2e\x61\x79\xae\xcf\xc0\xdb\xd1\xd1\x36\x2e\xb9\xd0\x5d\xe0\xc1\xab\x9c\x3f\x27\xd5\x6d\x3c\x89\x2a\x79\x7d\xa4\x5a\x22\xb5\xe1\x78\xb7\x87\x34\x3e\x4f\xfc\xbf\xff\x71\xf7\xc3\xc9\xd8\x5d\x1d\x48\x5e\x01\x39\x08\xf1\x56\xee\xe2\x61\x6d\x63\x01\x1b\xaa\xbe\xe9\x7d\xe2\xde\x70\xe4\xe7\x46\x72\xad\xc7\xb6\xc3\x82\xab\x5b\x11\xee\x4b\x9e\x02\x3c\x0c\x4b\x66\xc9\x93\x74\xd8\x4f\xfc\x3b\x80\xd4\x30\x27\xf8\x66\xce\x6d\xc1\x1b\x64\x1d\x15\xfb\xd4\xd4\xa6\xf4\x71\xcb\xb1\x3d\x1d\x02\x1b\x50\x96\x83\x4c\xf4\x87\x4f\xea\x86\xd7\x1e\x56\xc6\x2a\xce\xd6\xbc\x3e\x65\xed\x9c\xa4\x4f\x68\x53\xa7\xb8\x8e\xa2\xc6\x9f\xd3\x67\x13\x2d\x8c\xb6\xf7\x52\xe3\xa2\x8e\xc6\xe9\xc2\x6f\x7f\x03\x3b\x27\xc4\x4f\xe9\xb8\xb0\x22\xfd\x0c\x74\x8a\x78\x0a\x4f\xea\xff\xed\x9d\x73\x26\x80\xbc\x71\xb8\xd1\x61\xa2\xc6\x2d\x5e\x26\x60\xe6\xde\xa9\x08\x51\xd2\x94\x5e\x19\xa3\xec\xff\x77\x3b\x2e\xad\x94\x6c\x50\xac\xaa\xab\xb7\xab\xe1\x2d\x39\xc7\x6c\x8f\xb8\xe6\xac\x46\x12\x62\x9b\x24\x61\x3f\x60\x3d\x49\xeb\x44\x3a\xff\x77\xba\x8e\x1f\x64\xc9\xdc\xce\x04\x35\xba\x5c\xff\xf1\xf8\x77\x4b\xda\x2c\x85\xae\xe9\x53\x27\x05\x55\x76\x27\x82\x7a\x39\x4d\xf5\x7c\xcb\xf5\x4c\x1b\x5f\x43\x33\xa7\xf9\x15\xd7\xe1\xa6\x0c\x23\x08\xa9\xb2\x26\x0d\xe1\xf1\x85\x1c\xcc\x08\x93\x70\x8a\xaa\x75\x5f\xc3\xb0\xfe\xd2\x7f\x82\x61\x5d\x79\x6f\xf8\xd4\x3a\x14\x45\x7d\x21\x74\xc5\x8f\x7f\xc0\x9b\x9b\xf3\x48\x2c\x5f\xc8\x20\x28\xd6\x15\x84\x90\x00\x98\x00\xcd\x32\xa1\x53\x11\x25\xbf\x50\xfc\x16\x57\x44\xf4\xd8\xcd\x89\x44\x72\x83\x5c\x11\x3d\x87\xa1\xb0\x2f\xfb\xe0\x53\x77\x7c\xfa\x5c\x98\xb9\xd2\xd0\xcf\xf1\xcc\xd8\x08\xfc\x2c\x12\xe1\x94\x6f\xec\x86\x3d\x97\x28\x92\xd0\xbd\x4a\xbf\x22\xdf\x45\x09\xa6\xa0\xa4\xd6\x1d\xe9\x7f\xad\x07\x84\x04\xfc\x74\x5f\xd5\x83\xe9\x05\xd9\x9d\x84\xbe\x00\xb1\xc2\x6e\xd7\x0b\x3a\x83\xf4\xb2\x49\xc8\x41\x2f\xe5\xce\x81\x34\x9a\x9a\x11\x5d\x2d\x96\xda\xf1\xbc\xcb\xbb\xd3\x83\x7c\x16\x3b\xed\x93\x4e\x0a\x8d\xe5\x57\x26\x13\xc6\x13\x3e\x56\xa7\x1e\x44\x75\xa1\x47\x5d\x1a\x36\x9e\x1e\xe5\x74\xa7\xcb\xb9\x35\x6c\xff\x99\x2a\x60\x1c\x91\x99\xd9\xae\x27\xa6\x6b\x44\xcf\xdd\x5c\x92\xa4\xdc\x5b\x72\xa6\xb0\xe9\xc9\x45\x14\x9f\x73\x76\x76\xdf\x9b\x6d\xe8\x5d\xb1\xb8\xbd\x1b\x78\xe2\x7e\xf0\x6f\x13\xb8\xc9\x34\xe9\x6d\xbf\xa7\x82\x6f\x02\xf4\x0d\xcf\xc2\x88\x65\x95\x2d\xf2\x4b\xe6\x30\x1c\x23\x34\x56\xcc\x86\x10\xf8\x95\xcc\x70\x87\x15\x69\x1d\xfc\x4b\xe0\xde\x64\xb7\x1f\xc5\x99\x2a\x3a\x26\x63\xaf\x5b\x15\xaf\x2b\x7e\x7d\x80\x0f\x3d\x35\xc4\xa9\x7e\x3f\x30\x21\xb2\xc2\x3d\x7a\xa0\xe2\xec\x99\x99\xb3\x83\x64\x6a\xba\xa8\x58\xcf\xe8\xc3\x03\xe0\xc6\x13\x09\xc1\x84\x1a\xd6\x22\x17\xc1\x0c\xff\xee\x50\x31\x7c\xed\xfa\x86\xe2\x87\x5e\x6c\xe4\x15\x57\x67\x7f\xe8\x48\x37\xdc\xd6\xce\x16\x31\xc5\xff\xc4\x74\x1b\xfa\x64\x1c\x0a\xc7\x2b\x69\xbf\x3e\x82\x19\x9b\x3d\x30\x14\xe7\x67\x0a\xfb\x0a\x48\x80\x85\xee\xcf\x4a\xe0\x9c\xb3\x53\xbc\x9d\xde\xcb\x64\x9e\x3c\xc8\xa3\x4c\xfd\x5a\xf0\x07\x24\x1c\xab\x66\x6c\xff\xb6\x2d\x33\x29\xed\x7d\x87\xb1\x8e\x1e\x3c\xad\xea\xef\x5d\x21\x5f\xbe\x5c\x12\x6e\x55\x04\xce\xc6\x68\x1a\x74\x3f\x09\xd1\xb6\x48\xd5\x48\x4e\x8c\x6f\xb5\x07\x82\xe7\x7f\x51\x7d\x84\x71\xf9\xeb\xdd\x2c\xa3\xe0\xcb\x36\xcc\x75\xfe\xed\xfe\xef\xcc\x3c\x7b\x12\xde\xeb\x24\x52\xbf\x73\x25\xfa\xb5\xe2\x8e\xcd\x8c\xd3\xb8\x67\x83\x9a\x05\x42\x4c\xcc\x77\x36\xe2\xb2\x0d\xa9\xc0\x8e\xaf\x6c\x34\xca\x2e\x97\xdc\x4f\x98\x69\x61\x8b\x86\x7b\xca\x74\xd0\x11\xa4\x7b\x9b\xa0\xc4\xf3\x90\x9d\xaa\x7c\xa0\xe8\xcc\xb3\x4b\x24\x03\xba\x2f\x48\x84\x4c\x93\xfd\xf2\x0d\x86\x1b\x88\x55\xab\x1d\x54\xc8\xaa\x70\x06\xba\x4a\xb2\x94\xd8\xde\x70\x85\xd7\x2c\x5b\xd1\x4c\x08\xb9\xd9\xfe\x58\x7d\x4e\x15\xf0\x95\xaa\x36\xd3\x72\x92\x60\xbc\x10\x6e\x29\x97\x1d\xdc\x48\x7e\xee\xa7\xdc\x2b\x5f\x5f\xfd\xfe\xc9\x8a\x49\xe1\x00\xae\xe7\xda\xa9\xe1\x35\x6e\x7a\x2b\xfa\xd9\xcc\x10\xa6\xa3\x00\x5f\xef\x0a\xf3\x36\x03\xde\xd2\x45\xec\x0c\xdb\x05\x04\x13\xf8\x64\xd0\xcf\xa7\xc0\x80\xf0\xc6\x4b\xcc\xb7\x79\x76\x4a\xb1\x83\x40\xdb\xdd\xcc\x77\x4d\xe4\xa2\xe2\x86\x28\x1b\xf1\x76\x40\x0a\xe0\x3a\xed\x66\xd7\x6d\x56\x59\xed\x06\xe3\x8b\x66\xe1\x40\x5a\x2e\xad\xe1\xc0\x5b\xbe\x41\xf8\x0c\xea\xc5\xde\x27\x56\xd0\x14\x43\xca\x70\x67\x7b\x4d\xde\x32\x6b\x32\x3c\xb8\x89\x3e\x6e\x82\x49\xce\xa2\x1f\xdd\x95\xb7\x78\x75\x7d\x36\x15\x61\x1c\xde\x8a\x80\x9e\x53\x05\x95\x97\xf4\x7f\x4e\xde\xb1\x6b\x4a\x3c\xc4\xd0\x17\x6f\xaa\x74\x8a\x5f\xa9\x37\xff\xe5\x85\x74\xab\x3d\xb0\x39\x04\xd7\xa5\xbe\xf6\x54\x46\xa8\x67\x1f\x9d\x93\x36\x42\x2e\xa7\xf6\x1b\x1f\xec\xd8\x0c\x74\xa7\x08\x7c\x7d\xf1\xe1\xc5\xfa\x37\x90\x59\x54\x47\x5f\x51\x0c\x66\x83\xd3\x47\x13\x61\x8e\xc7\x7e\xc3\x99\x1e\xa3\x13\x9e\x65\x7b\xf1\x31\x85\xe4\x02\x5e\x13\xac\xb3\x0e\x00\x69\x29\x35\x41\xc3\x43\xd3\xae\xac\x1c\x34\x6d\xbd\x2b\x1a\xda\x3e\xa0\xc3\x31\xc8\x88\xcc\x82\xe6\xfa\xf3\x2f\xd6\x75\xdd\x2c\xe9\x37\x2b\x4a\xe3\x31\xb2\x59\x0a\x1e\x7b\xf7\x63\xb3\xfd\x3f\x28\x4e\x04\x65\x11\xa0\xb0\x14\x7b\x87\xa6\x02\xc2\xa6\x4b\x0d\x13\x11\x6c\x96\xf9\xa8\x5d\x24\x98\x6a\x89\x07\x1b\x12\xa5\xfc\xaa\xa8\x77\x4a\xaf\xf2\x9d\x16\xde\x3e\xad\xc1\xad\x38\xf4\x25\xa0\x47\x84\x57\x56\x0f\xf8\x4a\x4f\xe6\xf9\x1f\x36\x19\xd7\xff\x69\x04\xab\x46\xa1\xaf\x55\x75\x30\x3d\x02\x1d\x70\x8c\xee\x44\x37\x4b\xdf\x5d\xdb\x8e\x1d\xc4\x41\x39\x0b\xd6\x71\x8a\x51\x85\xd4\x5f\x6e\x04\xd0\x1c\x05\x02\x8e\xe8\x50\x33\x5f\xf9\xb2\xeb\x8b\x8b\xaa\x4e\x75\x9b\xdb\xcc\x29\xaf\x9e\x8e\xe8\x14\xea\xc6\xaa\xf2\x35\x92\xc0\x12\x57\xa2\xfe\xd9\x9a\x78\x01\xe9\x4c\x76\xac\xfa\xef\x99\x38\xca\xcf\x8b\x01\x92\xe0\x1d\xda\x02\x13\x73\x98\x62\x5e\x42\x66\x9e\x8e\xd0\x94\xcb\xd0\x1f\x3b\x15\xb5\x0e\x04\xe2\xce\xc3\xeb\xd9\x44\x69\x46\xe9\x99\x65\x13\x76\x96\xa7\xaa\x5f\x6f\xfb\xf4\xa2\xb0\x3b\xb1\x8b\x18\x89\xd2\x57\x61\xfb\xc5\x22\x0c\x7b\xb7\xab\x07\x47\x14\xda\x6c\x48\x2a\xf3\xfc\xe7\x0c\x1e\xff\x15\x76\xaf\x18\xa0\x6b\x8a\xc0\x88\x54\x58\x0f\x74\x97\x5c\x1f\x75\xfb\x28\x00\x4c\xfc\x9d\x2f\x4f\x70\x62\xfc\xde\x38\x28\x5c\xfb\xfc\x71\x62\x68\xad\xfe\x91\xd0\x8c\x7f\x89\x4d\x29\xe0\x6e\x86\x6e\x0e\x2e\x13\x4a\x4f\xcc\x2c\xed\xe0\x0b\xe5\x57\x11\x3b\xf0\xa6\xd0\x95\x9a\xa6\xb7\xbf\xc9\x00\x8a\x83\x54\x62\x2b\x26\x04\xcc\xbc\xbb\xdf\xc8\x8c\xd0\xe4\xad\x35\x0d\xff\xe7\x52\xa8\xe9\x4e\xdf\x6e\xaa\x12\x6c\x4c\x1a\x9b\xda\xc6\xb1\x83\xfa\xf7\xd8\xe3\xc5\xe1\x47\xb7\x8d\x87\xef\xdb\x81\x0c\x01\x4d\xf4\xe7\x10\x08\x3d\xf4\x69\x30\xc5\x78\xa8\xb2\xaf\xc8\x04\x25\x4a\x7e\x9e\xb7\xab\x4a\x9c\xeb\x55\x23\x10\x6e\x53\xe6\x6b\x11\x69\x6c\x36\xfa\x30\xae\x7d\x7f\x2f\xd9\xc8\x54\xaf\x0c\x2c\x89\x35\xb8\x17\x64\x77\x4f\xa1\x24\x44\x35\x91\x87\x72\x04\x0a\x47\xe9\xf7\xe1\x58\x36\x56\x17\x56\xa9\x3f\xc0\xb8\xca\x3a\x73\x4f\x40\xd4\x95\x2a\xd2\x70\xba\x92\x47\x14\xd7\x65\x26\xa1\xf6\xeb\xa3\x23\x05\xad\x09\xa0\xf4\xde\xeb\xb4\xe4\x3c\xe3\x5b\xab\x5b\xde\x8f\x9c\xde\x7f\x3f\x70\x84\x5c\x94\x3c\x47\x98\x9e\xf1\x5b\xba\x7d\x65\x4c\x5b\x6e\x83\xb7\xac\x50\xe9\xbc\x46\x15\xf1\x6c\x24\xb2\x7d\x55\x8f\x22\x1a\xb7\x07\xa5\xe2\x71\x21\x6b\xdf\x47\x6a\x9c\xb8\x1e\x15\x96\x25\x95\x85\x45\xa1\x6a\x06\x9b\x09\x05\x0d\x5f\x3a\x8a\x2b\xaf\x9a\xe1\x90\xfa\xcf\xa6\xe5\x1d\xb4\x64\xfc\x62\xca\x0a\x1e\x15\x97\x27\x19\x07\x55\xc2\xbe\x4b\x71\xe5\x66\x9b\x00\xa1\x7a\x5a\xf9\x8f\xf9\xc9\x28\xa6\xe1\xd3\x94\x12\x50\x39\x03\x24\x40\xfb\x30\xd5\xf8\xc0\x92\x95\x97\x7f\x77\x1f\xb6\x75\xfb\xfb\x38\xc7\x28\x6e\xe0\xf7\xc2\xd3\x2f\x54\xd9\x69\x86\x98\xdf\x2f\xf5\x23\x71\xbb\x6d\xd3\x74\x25\x43\xc6\x25\x4d\x11\xdf\x63\x2d\x22\x90\x28\xbc\x73\x9e\x15\x78\x46\x96\x46\x99\xe4\xef\x7a\x28\x43\xb3\x64\xab\x3b\x2c\x8d\xa0\xb2\x8e\x05\x8c\x48\xb7\xe8\x5d\x32\x99\x6b\x58\xb5\x07\x45\x5d\x3e\x4f\x24\x38\x30\x54\x57\xb3\x7b\x29\x2f\xee\x5f\x9e\xa8\xe1\x74\x34\xef\xd8\xc8\xb2\x91\xfd\x8c\x15\x68\xd7\xac\x2a\xf3\xa0\x86\xe0\x2f\x66\x8e\xce\x31\x38\x9f\x46\x5c\xc7\xb8\xb8\x4a\x7d\x04\x58\x6d\x5c\x7a\xd9\xe8\xe8\xb4\x2f\x9d\xe8\xf2\x5b\x17\xcb\x77\x26\xbc\x31\x0d\x4c\x21\x7b\xa1\xce\xd8\xe5\x35\x1d\xc5\xc8\xaf\x94\xc4\xfe\xce\x7c\x22\xcc\xd5\x13\xbf\x7d\x40\xb6\x3e\xea\x1d\x05\xe3\xd3\x5c\xa2\x43\xe8\x6f\x4b\xa1\x40\x07\xd8\x56\xc5\x3c\x54\xa2\xbd\x74\x79\x47\x47\xd8\x97\xdd\x54\x3b\xb5\x29\x5e\x76\xc2\xe1\xc8\xa0\xb2\xc3\x67\xb0\xe7\x55\xd1\xe9\xad\x77\x1e\x5d\xe1\x47\x6e\x80\x5f\xe8\xa9\x01\xb5\xe3\xf3\xde\x7d\x03\x6f\x2f\x27\xcd\xbe\xc9\x2e\x76\x0b\xaf\xce\x60\xc9\x6e\xcd\x71\xa6\x40\x41\x56\x13\xe1\x40\x44\x16\x80\x69\xbd\xfe\x10\xb0\xbd\xce\x8a\x12\x99\xdb\x4c\x06\x8b\x2d\xba\xe4\xf3\x2e\x15\x97\x36\xab\x5e\x57\x81\x12\x4b\xbd\x0f\xeb\xf8\xcc\xa8\x90\xc7\xe2\xc7\x54\xad\x39\x3c\x95\xb2\x90\xa7\x34\xba\x8d\x8d\xf8\x95\x0e\xa6\x26\x7a\xa8\xba\xc2\xb7\xb5\x06\x3b\x5f\xe9\xf1\x57\x6a\x57\x55\xa8\x29\x7b\x24\x54\xdd\x08\x2b\xdf\xad\x7f\xd2\x80\x28\x1c\x07\xbb\x29\x62\xf5\x7e\x60\x08\xff\xa2\x9b\xff\x0a\x15\xee\xd2\xa3\xf1\x32\xe6\x96\x8c\x1b\x75\x74\x58\x7a\xa2\x9a\x71\x6d\x88\x13\x13\x8c\xb2\x3c\x08\xcf\x42\x44\xfc\x48\x36\x99\x92\x11\xff\xe1\xae\x35\x1e\xe8\xee\x08\x1a\x60\x8d\x7a\xf2\x93\xab\xae\xa1\xdd\x44\x91\x5b\xcc\xda\x22\x62\x6e\x00\x6b\x10\x58\xe6\xc2\x63\x1a\x91\x87\xd2\x1c\x32\xa5\xd9\xa0\xa0\xf1\x70\xe6\xe4\x2a\x64\x4e\x21\x36\x74\x27\xed\x36\xd3\xf0\x05\x39\xb0\x21\x6f\x58\x4d\x86\xb1\x7e\xd9\x23\xb0\xd2\x52\x4f\x3d\x18\xfa\xf0\x62\x7e\xe2\x98\x4f\xc4\x8e\x95\x47\xea\x27\x46\x25\x5e\x08\xbd\x21\x8c\x32\x89\xda\xb1\x10\x37\xe7\xe5\xda\xc3\xf4\x79\x76\xc8\xbb\xb1\xcf\x89\xdb\xcc\x09\x70\xe7\x2c\xab\xce\x13\x1b\x3f\x06\x2e\xf8\x48\x0b\x38\x74\xe3\x0f\x51\xfe\xfd\xab\x85\x29\x85\x29\x0b\xeb\xfc\x24\xb0\x69\xc4\x1a\xf7\xa6\xc2\x60\x0c\x8f\x80\x10\xb8\xdd\x29\xd8\x73\xf7\x8c\x1e\xa2\xb4\x56\x9e\xbd\xa2\x3f\x87\x6e\xce\x7f\x9b\xca\x3a\x27\xfd\x59\x3d\x72\xea\x0b\x7d\x9b\x7b\x17\xa9\x36\x43\x68\x7e\x52\x31\x93\x09\x35\xfd\x38\x18\x46\x68\x0d\xc1\x60\xd7\x8d\x6d\xb3\xcc\x89\x86\x2a\x2e\x1a\x49\xf8\x4f\x65\x33\xdb\x2e\x6d\xd0\x9b\x23\x7c\xca\x69\x45\x26\x65\x28\xe5\x56\x89\x0b\x3d\x3c\xe8\x4e\x50\x10\x08\x33\x12\x1d\x47\x8e\x6a\x4d\xd4\x07\x19\xc3\x55\xb5\x14\x45\x52\x3b\x10\x95\xd4\x7c\x3e\x0e\x22\xb4\x2f\xf4\x84\x91\x23\xd1\x4a\x10\xfb\xea\xda\x34\x9d\x8a\xc9\x97\xc8\xd5\x20\x6f\x81\x2c\x70\xb9\xed\xe3\xc1\x0e\x48\x27\x6d\x76\x85\x02\xbf\x48\xaf\xe6\x31\x9b\x8a\x03\xf6\xff\xa0\x76\xe0\x67\x46\x9b\x88\x87\xdd\xc3\xcb\x46\x05\x9c\x68\xe2\xe3\xd6\x2f\x5f\x75\x19\xa1\x8f\xe2\x74\xa6\x8e\x1d\x11\x9c\x04\xdc\xe0\x5f\xf1\xa4\x09\x7e\x27\xa1\x4d\xba\xff\x23\x37\xab\x98\xef\xf5\xdd\xed\xe7\x0b\x99\x3e\xff\x8b\x84\xc0\x75\xeb\x15\xe7\x7f\x54\x60\xfd\x0e\x11\x8d\x83\xbe\x25\x31\x80\xb2\xcd\x0e\x14\x05\xba\x93\xfa\xf5\xac\x6d\x0b\xb5\x43\x32\x29\x02\x5b\xd2\x0b\xda\x6a\x23\x6f\x41\x6c\x67\xf1\x30\x13\x71\x1e\x15\x02\x4e\xa8\x2b\xef\x49\x44\x92\x31\x80\xef\xcb\x78\xe4\xd0\xab\x84\x7a\xac\x3c\xce\x76\x3c\x3e\x2a\x1e\x2b\xdc\x4e\x2c\x73\xda\x80\x2c\x24\x9b\xdb\xa3\xcb\x75\x7d\x98\xbe\xd7\x98\x2d\xc7\x57\x70\xf0\xd5\xf2\xb5\xc5\x43\x88\x9e\xbd\xa9\x37\x73\xfd\x4f\xe7\x50\x5c\x84\x79\x38\x0e\x98\xe6\xf4\x77\xab\x32\x7e\x4b\x0b\x08\x6e\x37\x83\xe0\x6a\x36\x55\x0b\x22\x0c\x71\xe8\x85\xdc\x74\x62\x3b\x9e\xe7\xfd\xc0\x7a\xc9\x12\xea\x05\x55\x74\x6c\xe0\xc5\x85\xa8\x33\xc9\x1f\x36\x0e\x70\xc4\x9e\x89\xf8\x68\x9d\xec\x75\x05\xd4\x80\xaf\x30\xfe\x05\x6e\xbe\x76\xf0\x52\x4a\x88\x9f\xf7\xc0\xc3\xb4\xcc\x4c\xe6\x60\x8c\x18\x9a\xb4\x39\x7a\x4f\x1d\x5c\x51\xc9\xe9\xd5\x0d\x6b\x63\xb8\x17\x68\x23\x43\xb4\xd0\x11\x85\xf9\xd7\x1d\x0e\x5f\xec\xcc\xfc\x76\x55\x16\xfd\x5d\xca\xf2\x6b\x0b\xb5\xf7\xd9\x78\x99\xbf\x50\x4a\xf7\xa6\xbc\x89\xa0\x88\x96\x72\x78\x79\x99\x3a\x02\x96\x65\xc2\xd7\xab\xda\xf2\x13\x70\x7b\xe6\x08\x85\x1d\xee\x2d\x47\xdf\x76\x67\x8f\xe8\x4f\x05\xf2\x15\x82\x3b\x90\x1a\x5a\xc0\x84\x79\xcd\x38\x4a\xe4\x77\xc7\xcf\x97\x38\x01\x3a\x47\xb1\x34\x25\x7c\xc8\x37\xa1\x6c\xae\xf6\x79\xff\x68\x2d\x4a\xca\x68\x84\x3a\x58\xe9\x9e\xb0\x95\x04\xc2\x14\xd7\xb2\xb6\x9c\x2f\x96\x7a\xb3\x85\x70\x48\x84\x40\xdc\x84\x84\x2d\xca\xab\x77\x7d\x79\x3e\x40\xb9\xac\xcf\x2f\xd9\x7a\xd3\xa8\x88\x9f\x80\xb9\x35\x5a\x7a\xb7\xbb\x92\x14\xb0\x5a\x5b\x7f\x63\xb5\x24\x9f\xc2\x2b\xbc\xc4\x44\xc1\xcb\xc3\xaf\x65\x74\xb4\xe8\x00\x55\xf6\x76\xc7\x4d\xf7\x48\xeb\x3a\x16\x9b\x54\x95\x84\xd3\xfe\x9f\xf8\x51\xf8\x0f\xe2\xe9\xd3\x1e\xbf\xaa\xf4\xff\xd7\x84\x2b\x7a\xc7\xf9\x69\x4d\x03\xf7\x06\xaf\x96\x5e\x44\xe5\x53\x0f\xdd\x78\x77\x8a\x60\x3b\xf8\xee\xf7\x37\x8a\x0a\x9a\xd6\xb0\xff\xd7\x90\xbb\xcc\x3d\x16\xf5\x1e\x85\xb9\x81\x76\x30\x39\xe6\x23\x6b\x70\xc8\x97\xb2\x2d\xc1\xc1\xb9\x4e\x9a\x62\xcb\x20\xfa\x5a\x6a\xe3\x7e\x59\x14\x7d\x2f\xb7\x45\xf3\x13\xb9\xea\xdc\x49\x52\x84\x5d\x6d\x97\x36\x95\x0f\xd8\xfa\xc3\xfb\x4a\x4b\x04\xb9\x07\xd9\xfd\xe9\xaf\x04\xbb\x13\x7e\xf4\x62\xc8\x43\x6d\x3a\x53\x03\x10\x14\x3c\xc7\xb8\x31\x08\x58\x8b\x86\x6a\xc5\x18\xc1\xcc\x1e\xc7\x84\xb5\x66\x71\xa6\x9e\xfe\x03\x68\xc1\x95\x9f\xb1\x94\xd6\x5f\x7a\xf4\x96\xc9\xd8\x9e\x43\xc4\xfb\x5b\x55\xa6\xdf\x09\xf6\xed\x8a\x45\xf2\x21\x8e\xcb\xdc\x68\xee\x90\xc0\xaa\x52\x82\xff\x39\x01\x8e\xe2\x80\xda\x39\x7c\xb2\xe9\xa3\x61\x32\x54\xcd\x4c\x0d\xa2\x83\xa3\x49\x6e\x9a\x6c\x50\x24\xfc\x59\x07\x59\x62\x96\xeb\x5c\xc4\x89\xe5\x4d\xfb\x34\xc2\x1f\x53\xec\xf6\x80\x54\x40\x2f\x1a\x31\xac\x50\x75\x52\x3b\x40\xbd\xd8\x18\x29\x5d\xe8\x5d\x27\xcd\x68\x26\xca\x3a\xdc\xc6\x7d\xe8\xf1\xc5\xdf\x90\xfb\xb0\x6f\x4d\x12\xa7\x9e\x5b\xd9\x56\xda\x2c\x8d\x60\x85\xfc\xef\x95\xd0\xcb\x5d\x13\x8f\x49\x52\x43\xe8\x7b\x52\x3d\xf8\x10\xf3\x69\x4c\x51\xb6\xe6\xbb\xd9\x9d\xae\x26\x44\x9f\xec\x42\xf0\x91\x4c\x39\x1b\xdc\x62\xb6\xa9\x25\xb4\xdd\x36\xed\xe2\x65\x6d\x25\x1a\x4d\x02\x4b\x98\x2c\x63\xdb\x0a\x88\xd0\xd0\xfb\x3d\x5d\x64\x26\x46\x48\xbc\x75\xc2\xb8\x4a\xe9\x97\xfb\xca\x83\x73\xc3\x49\x32\x3e\x6a\xd0\x58\xd1\x56\xc7\x7a\x25\x3f\xc2\x5c\xaf\x3c\x64\xa8\x73\x10\xda\xf9\xb1\x36\xc2\x72\x98\x16\xf8\xb9\x07\x2f\xb5\x14\xce\x9d\xa0\xd8\x3d\x56\x2c\x5f\x1e\x68\x44\x9c\xc0\x6a\x15\x32\x5a\xae\x4b\x4b\x94\xb6\x4d\x13\x23\x66\xcd\xfe\xd9\xd5\xe5\xa7\x0e\xd7\x6e\x03\xd9\xff\x92\x7e\xc8\x5c\x5b\xd0\x18\xf3\x34\x78\xf6\x1a\x92\xb7\xbb\x04\x6e\xc2\x1d\x44\x55\xef\xba\x1a\xe6\x94\x67\x92\x02\x51\xc0\x4a\x43\x96\x5b\xac\xd8\x5a\xaa\xc7\xfb\xae\xa8\x67\x37\x89\x06\xe8\x7b\xb7\x47\xd7\x75\x1d\x90\x98\x31\x1e\xd1\x73\x17\x0a\x6e\x22\xf5\xbe\x6a\x94\x25\x63\x77\x42\xc4\xa0\x80\x42\x5c\x7e\xe2\x25\x4e\xe3\xfb\x61\xa2\xea\xff\xf4\xc9\xbd\x76\x93\x08\x39\x7e\x99\x87\x1f\x68\xc2\x0a\x73\xfb\xf6\xfc\x25\x9f\x2b\x9a\x10\xcd\xfe\xe1\xdc\xd3\x21\x73\x22\x35\xd8\xec\xd0\x53\xa3\xa3\xe1\xdb\xbd\x6f\x92\x3a\x51\xff\xef\xc9\xd7\x9a\xb2\x25\x0f\xef\x02\xab\x64\x87\x3e\x5e\x8c\x23\x10\x4f\xac\x58\xdd\x04\x3b\x97\x5d\x87\xe6\xf2\x12\xc6\xc3\x18\x97\xa9\x4f\xce\xc7\x53\xe0\x36\x52\x5e\xca\x45\xfd\xcf\xd6\x67\x38\xea\x48\x91\xaf\x1d\xd2\xd8\x3d\x34\x39\x3c\xb0\x3a\x74\x07\xa5\x0e\xd2\x31\x29\x94\x5e\x7a\x5b\x4f\x84\x95\x37\xaa\x77\x23\x9c\x2e\xda\xc8\x85\x9b\xa4\x56\xd6\x8b\xd3\xc5\x21\x4e\x8c\x94\x8f\x46\x94\xeb\x01\x67\xa1\xf2\xaf\xda\x23\x3e\x5f\xc9\xde\x27\x2a\x53\x88\xd7\x82\xc0\x65\xb9\xd0\xf7\x22\x83\x3b\x5f\xd4\x52\x54\x4f\x3a\xf8\x20\xfb\x90\x2e\x97\x01\xa8\xcb\x52\xc2\xc0\xac\x44\x94\x4b\x5e\xc6\xa8\x3e\x12\x67\xb3\x15\xf9\xbe\xc3\xa6\x79\xe0\x27\xd1\x8f\x46\x01\x47\x21\x2f\xb2\xfe\xcf\xa9\x02\xce\xf9\x38\x75\x2a\x18\x29\xa4\xff\x8f\x8f\xe7\xa1\x34\xda\xbd\x50\xb3\xf9\x1c\xf6\x02\x37\x58\xeb\x9e\x14\xcc\xf1\x0a\x3e\x82\xb1\x0a\xf7\x52\xff\xe9\xb6\xcc\x10\x13\x0a\xa7\x3c\x95\xc1\x86\xfe\x6f\x53\xa0\x9c\x5f\xe0\x17\xfe\xea\x0a\xfd\x2b\x80\xc1\x42\x8d\xcd\xd5\xf6\x18\xab\x9a\x7e\x8d\x29\xb9\xc4\x82\x1b\xb0\x34\xd5\x38\x5e\xa3\xdf\x3f\x9c\x8f\x85\xb5\xd3\xb5\x7c\x36\x60\xbb\xc4\x05\x6f\x7a\x87\xca\x52\x85\x4a\x0f\xad\xed\x35\x3d\xad\xe7\x34\xf4\x16\x22\x93\x6a\xd2\xef\xde\x7d\x40\x97\x9c\x83\xbf\x8f\x9e\x25\x27\x81\x91\x0d\x94\x05\x01\x49\x7a\xda\x5e\x27\xac\x1a\xe7\x7e\xc6\x75\x0a\x09\xc6\x11\x42\xd7\x82\x84\x91\x56\xec\x74\x41\xe5\x82\xa0\xa5\x9e\xa1\x44\x19\xbf\x28\xfb\x5f\x4f\x4e\xe9\x9b\x44\x49\xef\x72\x9a\x81\x22\x14\x9a\xcd\xaf\xe9\x81\xaf\x2f\xf1\x05\xb1\x93\xc8\x43\xce\xe1\x18\x3b\xa2\x4c\x7c\x22\xe7\x51\x5a\xd6\xda\xbe\xf2\x52\x60\xe6\x51\x5f\xc4\x9a\x12\xe3\xe7\x29\x29\x76\xf5\x9b\xef\xad\x8e\x3f\x8a\x55\xa4\x4b\x5b\x73\x3e\x41\xce\xe8\x7a\x35\xa5\x4d\xe0\x58\x1b\x01\x20\xfe\x1e\x64\x35\x5c\xc3\xda\x36\x18\xbb\x40\x66\x7a\x67\x33\x52\xbb\x19\xae\x22\x80\xb9\x8e\x10\xd9\xef\x14\xef\xf1\x78\xda\xa3\xaf\x0a\x17\x8e\x24\xf9\xcb\xd6\xa9\xce\xfe\x9a\x75\xb3\xb0\xed\xdf\x8f\x0e\xdd\x1c\x18\x51\x98\x35\x0b\xcd\x3d\x4a\x6d\x0a\x79\x36\x74\x8e\x5e\xeb\x6d\x6c\x64\x93\x8d\x6d\x5a\xa2\xaa\x29\x72\xce\x2c\x81\xa7\xee\x35\x98\xe1\x50\x33\x73\x75\x24\x15\x59\x52\x25\xce\x2a\x17\x60\x24\xb6\xeb\x22\xe4\xf8\x18\xc7\x15\x72\x6b\x24\xe5\x48\xfa\xd2\x5c\x9b\x50\x49\xe2\x39\x6a\x74\xe7\x1d\x38\x99\xaa\xaf\x96\xf4\xaf\x85\xdf\x2f\x4f\xfe\x8e\x9c\xbb\xca\xbf\x40\x88\xc6\xcf\x17\x11\xfb\xb7\xb7\xf8\x92\xe9\x04\xec\x85\x3a\x1b\xae\xbb\xab\xb4\x38\x98\xb0\x2e\x42\x22\xf2\x4e\x8c\x56\xf0\x6a\x83\xb1\xf1\xf1\xee\x23\xca\x7e\x5d\x52\xd6\x64\xc6\x68\x21\x4f\xd5\xe7\x5f\x2b\x38\x21\xb7\xb7\xad\x44\xcc\x0e\x7f\x95\xc1\x89\x23\x96\x75\x00\x00\x2e\x3d\x80\xf3\x1c\xf6\xf0\x6e\x26\x07\x84\x91\xec\xa4\x06\x20\x90\x71\x19\x80\xd3\x62\xae\x33\xcb\xe8\x67\xb1\x99\x4e\x26\xc9\xbc\x1e\x9d\xb2\x2b\xd6\xab\x71\xce\x6c\x88\x00\x5b\xd0\x53\x09\xd8\x42\xa8\xc8\xef\xf6\x35\x7e\xa7\x5a\xdf\x82\xf3\x44\xd0\xa4\xbe\x98\x13\xd3\xe0\xd5\xe9\x27\xb8\xa9\x8c\x15\x24\xe7\xf1\x69\xc3\xab\xce\x2b\x07\x07\x3c\x1e\x7c\x79\xca\x0d\xcf\xa5\xe3\x7a\xfe\xa2\xa3\x21\xa6\x06\x25\xd8\x71\xc5\x26\x03\x9b\x96\x1e\x25\xa2\x2f\xb3\x01\x2e\x85\x9d\xfe\xe8\x31\xf5\x55\x30\x07\xde\xe1\x5e\x45\x6e\x0c\x4f\xb3\xce\x1a\x5b\x42\x64\xe6\x54\xb4\xed\x88\x86\xd5\x31\x5f\xf6\xa0\x69\x5f\xfe\x11\xe1\x9d\x1b\xcc\x83\x3e\x9b\x3a\x77\xab\x3d\xa0\x58\x0f\x49\x3e\x0e\x09\xf2\xdd\xe2\x6e\x02\x99\x9c\x96\x78\x30\xa1\x4e\xbb\x6d\x2c\x01\xd6\xd1\xb1\xc2\xe2\x74\x45\xda\x0c\x2b\x2e\x09\xcb\xae\xb3\xca\xa5\xb3\xe2\x15\xdc\x99\xbd\x73\x12\xf5\x74\x01\xcf\x3d\x55\xe9\x43\x4f\x77\xb8\x0d\x4a\xf2\xfd\x83\x0d\xbc\xe6\xe4\x97\xf9\x1d\x7d\x1e\xf7\xe7\xaa\xff\x07\xbb\xc8\x1f\xd5\x83\x17\x7a\xe7\x51\x72\x51\x96\xb2\x29\x12\x70\x84\x1a\x82\x3d\xa1\xa6\xef\x04\x23\xdb\x0d\x3f\x17\xdb\x7e\x7a\x01\x03\x6a\x60\xec\x1a\x46\xed\x51\x07\x1a\xbc\xf9\xe3\xb3\x42\x53\xb3\x3d\x07\x16\x8f\xc2\x7d\xb1\xa9\x84\xc4\x33\xbc\x05\x34\x5b\xd5\x21\x1b\x5f\x87\x16\xfb\xcc\x97\xf6\x7f\xd0\x94\x04\xba\x1d\xbe\x3f\x78\x56\x80\x80\x01\x86\x98\xe5\x07\x2a\x86\x74\xab\xfd\xe5\x7f\x1c\x5d\xf7\x87\xd6\xb7\x24\x63\x20\x5c\x0a\x88\x28\x78\x83\xdd\xa3\xab\x97\x58\xf4\xdb\x63\xe9\x2e\xa9\xff\x56\xfc\xdd\xc3\x92\x06\xa1\x15\x35\x51\x83\x6b\xf8\x34\x65\xa4\x13\xb9\x3e\x7c\xe1\x1f\x29\xae\x91\x64\x3b\xdf\x66\xea\xfa\xfa\x91\x38\x31\x73\x3d\x84\x56\xe1\x21\x52\x96\x1a\xc9\xb5\x6d\x2a\xd6\x85\x20\xc3\x5d\x75\xcd\x7d\xd0\x98\x34\x7f\x70\xc5\xff\x64\x98\xe2\x6b\x5c\xc9\xb1\x06\x25\x43\xb8\x36\x83\x3e\xdf\xd3\xd3\x6f\xb1\xd5\xb4\x39\x66\xea\x17\x2e\xb5\xf7\x24\x69\x4c\x8f\x73\xe9\x61\xc3\xf2\x60\xc2\xe9\xfe\x02\x3d\x12\xd0\xc7\xd8\xbe\xad\x49\xee\x23\xf1\x15\x36\x60\xbc\xce\x79\x02\x43\xed\x1a\x87\xb3\xeb\xb9\x7a\x13\x7b\x7e\xe8\xd8\xa3\x07\x5c\xcb\xb0\xe3\x8f\x61\x46\xc1\xd3\x94\xcd\xd5\x05\x93\xc6\x27\x6b\xf8\xdd\xfb\x2c\x33\x43\x60\x5a\x01\x46\x5a\x8b\xc7\x1f\x9b\x37\x3f\x04\xd8\xf7\xef\x24\xb8\xf0\x2f\xd3\x02\x42\xa5\x86\x02\xa2\xec\x14\xc6\x27\x29\x21\x9a\xb9\x2e\xf0\x5d\x5d\x81\x56\xf4\x59\xe8\x9e\xa0\xba\x97\x0e\x90\x56\xbd\xef\xf4\x40\x31\x9f\xcf\x14\xe2\xc7\x62\xa3\x56\xce\x15\xfa\xa0\xe0\x9b\xe2\x30\x39\x5d\xc1\xf7\xdf\x3c\xd5\xf4\x94\x5d\xb7\x2f\xff\x71\x3e\x0e\x0b\x5b\x7d\xd6\xbf\x2c\x33\x29\xc8\x74\x91\x85\x97\xcf\xfa\xc0\x07\x6e\x56\x77\xf4\x30\x76\x5b\xa9\x5f\x44\x5c\x0d\xe4\x99\x09\x0b\x57\xd0\xc3\x2c\xd1\x20\x91\x24\xfa\xb7\xc9\x42\x07\xaa\xb2\x2d\xd9\x2a\x25\x90\x7b\x8c\xd8\xdc\xab\x4f\x8b\x1b\x4e\x23\x68\xe5\xc2\x1e\x9b\xf7\xdf\xfa\x3a\xd3\x94\xd2\xd1\xce\x92\x9e\xca\xde\x40\xd7\x48\x47\x70\x9c\xeb\x09\x2f\x84\x3e\x65\x50\x53\xdb\x05\x06\x59\x34\xf5\x20\x4e\xfe\x00\x3a\x03\xfd\xd9\x29\x38\x5f\xff\xc4\xe2\x5f\x8e\x62\x74\x0f\xdc\xac\x7a\xf3\xc8\x32\xf0\xf0\xbd\x82\x04\xf4\x6e\xda\xba\x8f\x64\x2b\x2e\xf7\x94\x79\x3c\x0c\x5c\x57\x4b\x49\x88\x04\xeb\xcb\x63\x41\xf3\x15\xbd\x92\x56\x49\xc8\xe2\x78\x59\x03\xf7\x53\x00\x90\x7e\x88\xeb\xd5\x56\xa4\x50\x2e\x16\x0c\x6d\x39\xc3\x3a\xf1\xa0\xab\x40\xa9\xc7\xa6\x55\xb4\x3b\x3d\x60\xe9\x81\x90\xcb\x27\x1a\xff\xc3\x16\x6d\x9f\xb2\x96\x0e\xc1\x77\x26\xd6\x52\x93\x98\xb0\x0e\x44\x19\x6e\x4d\x71\x6b\xcd\x45\xce\x4a\x14\x8f\x90\xe7\x46\x06\x6e\x65\xaa\xe1\x0c\x44\x3a\xa4\x1a\x53\x4c\x06\x0c\xc7\x97\x9e\x73\x47\x96\x3d\x84\x95\x2d\xfe\x48\x35\x5a\x4c\x38\xea\x1e\xd3\x9f\xb7\xa0\xd4\xd1\xfe\x36\x55\x56\x1b\x36\x23\x96\x2e\x28\xcf\xa0\x8c\xc9\x42\x86\x54\x90\x47\x5c\x53\x56\x41\x11\xb3\xe1\x8c\x57\x96\xff\x6e\xc8\x7b\x29\x18\xf7\x2b\x0e\x18\x89\x03\x37\x89\x17\x31\xdc\x02\x07\x32\xc4\x23\xe6\x99\xc6\x1b\xbd\x74\x83\x6e\x71\x93\x5b\xe9\x72\xde\xdb\xee\x2d\x97\xe9\x06\xa1\x08\x7e\xcc\x59\x72\x47\xa7\x03\xf2\x35\xc6\x15\x28\x23\x19\x02\x8b\xb2\x88\xc0\xe3\xbe\x45\x07\x2e\x7f\xd1\x86\xbd\x38\x14\xb3\x3a\x84\x71\xa9\x32\xe5\x5e\x5a\x1e\x48\x7d\x9b\x7c\x29\x61\x6e\xc0\x74\xea\xc5\x3f\xcd\x5a\x33\xe3\xf0\xf8\x91\x1f\xc4\xc5\x2a\xe1\xfc\xf6\xda\x8b\x74\x75\xd0\x90\xb1\xf2\x7c\x97\xef\x6c\x71\xfd\x3f\xae\x66\x9d\xf6\x45\xdd\x38\x33\xd7\xed\x56\x58\x9a\x32\xc2\x0e\x5c\x61\x1d\x8c\x8e\x5a\x7a\xce\xc0\x5e\xf4\xbe\xb9\xd1\x61\xc8\x49\xd5\xaf\xcd\xf1\x40\x82\xfb\xe9\xb2\x0e\x4e\x73\xbf\xf4\x4e\x05\x56\x11\x75\xf1\x0b\x9d\x41\x7a\x6d\x60\x8f\xa6\x1f\xd6\x15\x2b\xc5\xdd\x55\x10\x1e\x28\x7d\x26\x5e\x88\x81\x39\x7d\xa8\x8c\x11\x8d\x7a\xf4\xe0\x55\x25\xfa\x2c\xa4\x93\x39\x87\xef\x70\xa9\x74\x9a\x4e\xa7\x9b\xbf\x1a\x10\x43\xba\x6c\x62\xae\x6d\x2e\x83\x13\x0f\xc9\x8f\x76\x80\x75\xa5\xb2\xb4\x15\xa5\xb9\x34\x16\x1b\xe1\x50\xdd\x71\x83\xf8\x53\x1d\x2f\xc2\xde\x36\x46\x95\x72\x99\xfa\xcc\x4e\xb1\x1f\x35\xab\xcb\x5c\x82\x1f\xcc\x52\x6e\x32\xa5\x2a\xa6\xaf\x8a\x9e\xbc\x9f\xa2\x71\xb3\x89\xb5\xfc\x3e\x4f\x62\x53\xe6\xc3\x30\x10\xa8\xa9\xda\xfc\xbd\x74\xfe\x21\x5e\xa2\xd6\xe6\xc1\xd9\xed\x1e\x8c\x73\x1b\xdf\x10\x4e\x61\x1e\x2b\x3b\xaf\x14\xc0\xd5\xbe\x59\x7e\xfd\xc6\x2c\x37\xd2\xb1\x2b\xe5\x7b\x13\x6a\xa1\x9a\xb2\x80\xf6\x62\xc7\xda\xb1\xbc\x1d\x54\x38\xe7\xb3\xdb\x67\xdc\x16\x4c\x1d\x8c\x09\xdb\xaa\x6c\x73\x5b\x1d\x1a\x96\xbf\x6e\x68\x2c\xc3\x1e\x35\xe3\x3c\x5c\x1d\xe7\x54\x92\x9d\x70\x98\x5b\x72\x1e\x33\x3d\x32\x36\xab\xd9\xb7\xc2\x0f\xe0\x63\x0d\x13\x7c\x18\x5b\x15\x08\x64\x7f\xbe\x25\x48\x06\x36\xc4\xe9\x32\xc5\x2d\x52\xa0\x32\x4f\x25\x3d\x16\xc2\x65\x36\xab\xd9\xd3\x8f\x78\x59\x3d\x74\xc0\xca\xaa\x4d\x7b\x0d\x58\xa1\xcf\x71\x46\xf4\x8d\xe5\xb2\x77\x85\x80\x4b\x0b\x7b\xdf\x02\x5c\x50\xd7\xa1\xbf\xcc\xba\xd1\x29\xef\x42\x0f\x9c\x07\xe9\x80\x4d\x16\xc2\x4d\x97\xd8\xe6\x78\xa6\xde\xf8\x46\xee\x9d\xb7\x19\x73\xc0\x26\xd1\xa6\xb3\x67\x97\xa4\x0f\x95\x24\xea\x36\x40\xdf\x29\xb9\xc8\xf0\x69\x11\x41\x71\x83\x69\x78\xf0\x86\x5a\xf0\x5a\xd9\x79\xee\x98\x88\xfe\x35\x06\xea\xb2\xee\xee\xf7\xd6\x66\x81\x1e\x6f\xe5\x3e\x93\x8c\x85\x06\xcb\x58\xc7\x16\x02\x4b\x53\x2a\x2a\x9d\x2d\x6b\x0f\x8a\x49\xeb\x0e\x33\x11\x37\x00\xbd\xc3\x06\x7c\xe5\x0a\x3e\x27\xce\xbd\xce\x70\x1c\xf2\xa0\xb2\xf1\x70\x1a\x22\x0d\x73\x3d\x20\x57\xdb\x8b\x30\x26\x7d\xca\x45\x7e\x40\x2e\xf8\x31\x00\xe0\x1e\xd1\x60\x26\x7e\x9b\x68\xf6\x9e\x97\x4b\xfe\x73\xe3\x11\xf6\x37\xa2\x49\xf4\x3e\x68\xf9\xa0\x1f\xd1\xeb\x58\xde\xe6\x87\xde\x2d\x4f\xbe\x77\x48\xf1\xc4\x15\x2b\x00\x88\x0a\xb0\x8f\xfc\xd8\x9b\xd1\x6c\x01\xed\x9f\xd1\x90\xae\x05\xd9\xb6\x8b\xb6\x26\x3f\x56\x6f\x16\x1a\x8e\x41\xca\x08\x24\x52\x0b\xbc\x08\x7f\xd0\x99\x1a\x01\x78\x87\x9c\x75\xdd\xfe\xd5\x48\x64\xb8\x52\x95\x60\x75\xef\xcb\x8b\xd4\x90\x94\x07\x5e\x7e\xa3\x3f\x28\xe8\x9a\x1c\xa5\xa0\xf4\xe7\xe8\x5d\x3f\x84\xde\x60\x24\xee\xb9\x1c\x37\x48\x62\xde\x87\xcd\xc1\x1e\x50\xbe\x63\x5b\xa4\xc6\x8c\xea\x1e\x3d\x25\xbf\xe1\x78\x0a\xd3\xfb\xc2\x39\xdb\x9b\x62\xbd\xd2\x7c\x3c\x13\x08\xa2\x26\x4f\xe4\x1a\x1d\xd2\xd1\x3f\x0d\x03\xde\x18\xbe\xe4\x70\xfd\x66\x1a\xf9\xf3\x74\x75\x50\x5f\xfb\xe3\xe0\xc7\x32\x62\x50\x00\xcb\xc2\x12\x49\x58\x52\xa9\xde\x6d\xd3\xb1\x8a\x01\x00\x67\x69\x9a\x3f\x35\x0a\x75\x4b\xe5\xe8\xd8\x91\x70\x80\xcc\x45\xae\x63\x08\x05\x1d\x89\xb0\x26\x5f\x6e\xba\xb3\xc7\x89\xc7\x6f\x73\x9b\x72\x3e\x18\x71\x19\xa5\x70\x28\x91\x32\x32\x32\x18\xd8\x2b\xbd\x82\x54\x65\xd5\x74\x7b\x62\xa3\x04\x8b\x11\x5e\xbf\x42\xb8\x0d\x28\xba\x60\xb9\x95\xa2\xc0\x8e\x87\xa1\x26\x05\x37\x94\xac\xbb\x84\x17\x9c\xb3\xb1\x72\xb5\x6e\x5e\x8a\x7a\x76\x5b\xb8\x92\x21\xf4\x3d\x66\x2b\xb5\x69\xda\x81\x90\x06\x2a\x81\x39\x26\x7e\x1c\x5b\xcc\x98\x8a\xc2\x31\xf9\x21\xa2\xd6\x98\x31\xbd\x41\x3e\x43\x68\x1c\xb3\xb0\x6e\x40\x36\x8d\xac\x2a\x55\xc0\xe0\x09\x04\x0b\x55\x65\xf7\xee\x4a\x44\x4f\x0d\x2f\xdd\x84\x90\xe2\x20\x8b\x2d\x5d\xaa\xbd\x57\x30\x76\x0b\xff\x22\x81\x25\x57\xb6\x5b\x6d\xdd\xd1\x14\x46\x48\x2c\x47\x77\xce\x92\x7f\x0d\x93\x0e\x69\xd2\x63\xcd\x57\x3c\xb4\x57\xff\xbc\x00\x05\x84\x98\xc6\x5d\xf1\xfd\xac\xdf\x17\x77\x62\xfb\x18\xbb\xf7\xc8\x05\x1c\x9e\xd5\x9b\x8d\x37\xbd\x46\xea\xe5\x9f\xda\xff\xef\x87\xdc\x7a\xa4\x2e\x84\x3e\x04\x3f\x54\xd3\xb5\xeb\x07\x32\x1c\x3a\xee\x36\x84\x12\xd9\x6b\xce\xd5\x84\x4b\xce\x96\x04\x93\x13\x3f\xc2\x43\x04\xa3\x3c\xd2\x73\xb7\x0e\x00\x0c\x29\x93\x24\x19\xb7\x3f\x38\xca\x5b\x77\x9d\x76\x3f\x34\xa4\xe1\x1c\x13\x02\x0f\x00\x43\x01\x81\x5a\xe0\xd4\x86\xf8\x89\x26\x6c\xdf\xc9\x9d\x98\x6f\x45\x44\x60\x40\x63\x34\xe2\x24\xcb\x54\x5c\xc6\xb6\x99\x74\x97\x57\xbb\x21\xa1\x1b\xd5\xd3\x05\xcf\x87\x29\x37\x75\x9f\x96\x95\xa4\xbf\x1f\x61\x26\x7b\x0d\xf5\xa1\x5a\x44\xe0\x78\x6a\x15\x5c\x60\x69\xf5\x89\x4e\x39\x3b\x07\xf3\x8e\xaa\xbb\xfb\x3f\xb5\x9f\x7e\xb8\x84\xb0\x0b\x5e\x42\xb7\xb8\xe3\xa0\x53\x44\xf2\x58\x6c\xdb\xcf\xb4\xa5\x50\x00\x28\x1e\xfe\xef\x8a\x33\xe1\xfa\x72\x6f\x95\xff\xdb\xf9\xf7\x4b\xf5\x65\x88\xb2\x5f\x32\x4b\x48\x30\x34\x51\x00\x78\xf8\x0e\x15\xad\x91\xc3\xe3\x74\x2a\x1c\x6a\x34\x0c\x51\x59\x6d\xf7\x3b\x66\x68\xf7\x31\xe4\x9b\x05\x00\x8b\xe5\x1c\xc2\x3d\x39\xda\x5c\x24\xf4\x2d\x52\x9a\xf7\xc6\x27\x2a\xdf\x5a\x79\x5b\x74\x15\x2b\x6f\x91\xaa\x60\x24\xdd\x3a\xa2\xa9\x98\x90\x30\x19\xfa\x73\x23\x54\xc9\x2d\x30\xb3\x19\x77\xc1\xd2\x44\x0f\xa4\x73\x94\xb2\x40\x1c\xc7\x55\x6d\x69\x7b\xc5\xb8\x50\xb4\xed\x57\x4d\xd2\x08\x32\x99\xb4\xac\x36\x08\x7f\x62\xaf\x1d\xee\x95\x2c\x8f\x75\x0b\xf3\xa0\xf4\x3b\x60\x4a\xa6\x83\x16\xb0\x6b\x23\xa9\x7e\x4f\x62\x8c\x91\xd9\x11\xaa\x82\xbd\x48\xeb\x84\xdb\x2d\x94\x3f\x20\x2b\x4f\xda\x64\x9f\x5b\x83\x1c\x5e\xf9\xbf\x83\xb3\xea\xb7\xb9\x5e\x8d\xff\x9d\x90\x70\x54\x23\x11\xfb\xf7\xaf\x85\xda\x16\x67\xda\x60\x31\xeb\xed\xc1\x66\x6e\x8a\xf8\xb0\xe3\xb6\x81\xaa\x08\xd0\x32\xf5\xa9\xcf\x09\x91\x40\x93\xc5\x4e\x54\xcb\xeb\x1d\x12\x90\x10\x82\x52\xd5\x56\xb4\x5b\xde\x88\x5a\xb1\x6a\x3d\xad\x03\x1b\xa0\x8b\xf7\xad\x26\x6b\x36\x68\x08\x01\xe4\x5e\xf5\xa2\x19\xd6\x8f\x59\x1c\x0a\x4f\x97\x2b\x8d\xc2\x78\xef\x9f\xea\xfd\xcc\xd4\x68\xc9\xad\x80\x65\xfe\x6a\xbd\xf0\x57\x9d\x97\x6a\xcc\xea\xa1\x7e\x84\xb6\x34\x17\xc1\x52\x05\xee\xf4\x86\x29\x8a\x9f\x3f\xd5\xdf\x31\x2d\x5d\xff\xf6\xfa\x81\x24\xa5\x70\x2b\x2c\xa0\x3d\xb5\x4b\x15\xfc\x92\x53\xa2\xbf\x5b\x74\x6f\xb7\xbd\xcd\x62\xb4\x1f\x77\xff\x0f\x65\x9c\x11\x91\xd0\xff\xa1\xda\xc0\x23\x18\xae\xf9\xcc\x10\x09\xf9\xa7\xd4\x28\xf6\x2e\xa8\x16\x03\xb3\xd6\x0b\x14\xa3\xea\xaf\x6a\xe8\x6e\x67\xe2\x59\x0f\x23\xbf\xeb\x64\x85\x5c\x01\x7c\x1c\xf7\x76\x76\xa6\x8f\x32\x51\xe3\x80\xfa\xd6\x30\x76\x54\x4e\xd1\x32\x56\x46\xa2\x2b\xc4\x9b\x4b\x9d\xe0\x7e\x35\x49\xa4\xec\xed\xbc\xcc\x8b\x5f\x17\x73\x58\x23\xf9\x15\x82\x42\x6f\x6b\x1c\xdd\xcd\xe4\x4a\x86\x56\xa6\x2b\x61\xe7\xbf\xfe\xf0\xe9\x82\x2b\xdd\x5c\x47\x6a\x3f\x0d\xda\x61\xbe\x51\x97\x5a\xa7\x7b\x1a\x8d\x28\x4b\x4a\x1d\xe5\x28\xcb\xc9\xeb\x1f\xd6\x02\xa2\x91\x44\xe2\x8d\xe7\x92\x3f\x7f\x43\x9a\x0c\xfd\x7c\x41\x64\x31\x91\xb4\x52\x33\xda\x9e\x23\xbb\xca\x0b\x79\x94\x92\x68\xd5\x72\xcb\x79\x2c\xf2\x12\x81\x62\xd6\xd8\x65\xe6\x21\xc9\xa0\x7b\xb1\xcc\xd7\xa0\x78\x4a\x6f\x1c\x45\x0b\xed\x05\x0c\xbc\x6a\x73\x11\x3f\x9e\x1a\xa0\xc4\xa9\x4d\xae\xc2\xa1\x5f\x77\xee\xe4\xbc\x84\x4f\xd0\xda\x84\x8c\x14\xe6\x6e\x4b\x52\xf5\xa2\x0d\x89\x16\x89\x4b\x33\x1c\xdf\x64\x48\xac\x18\xc5\x27\x78\x14\x42\x7f\x16\x62\x78\xb5\x8e\x7b\xc2\xb5\x4c\xdb\xe4\x35\xfc\x65\x24\x5f\x27\xc8\xcf\x1f\x18\x16\x57\x35\xf3\x83\x5b\x3d\xec\x01\xa0\x12\xb3\x4c\xb8\x9b\xac\xc1\x5a\x77\x13\x54\x02\x57\x4e\x59\x1b\x5d\xa5\x83\x5b\xa9\x08\xa0\xcd\x96\xfa\xb9\x27\x9b\x44\x74\x19\x57\x89\xb0\x84\xe5\x49\x12\x7a\xd5\xe8\x94\x2a\xe3\xb2\xba\x99\xda\x23\x6c\xc3\x07\x3a\x11\x54\x95\x97\xd1\xcd\xad\x3f\xe8\x5d\x3e\x7c\x53\xc1\xf7\xff\xe5\xae\xc8\xd6\x08\x4f\x2c\x58\x23\x9c\x6d\xe9\xfe\xfe\xc0\x36\xf9\x93\xef\x9a\xf4\xc2\xef\x4c\x75\x69\x98\xb7\x56\x81\x6d\xa2\xc1\xbc\x39\x63\x60\xa7\xab\xd1\x12\x0d\xb0\xd9\x10\x45\xdd\x5f\xce\xdc\x7f\xd9\x01\xa4\xff\xf9\x2f\x81\x07\x87\xa7\xb3\xe0\xc0\xc9\xe8\xda\x61\xca\x38\x47\xa5\x57\x9c\x34\xdb\x0e\x65\xc0\x86\xa7\x1f\xff\x53\xc9\xb2\x37\xea\xc2\xa4\xed\x79\x0e\xa9\x20\x3a\x37\x50\x6d\x6e\xbd\x4e\x2c\x62\x96\x62\xd6\x89\xf0\xea\x07\x78\xa6\x17\xb6\x47\x22\xca\x00\xe9\x3c\x30\x69\xd9\x3b\x10\xa1\x53\x20\x6f\x3e\x53\x52\xbf\xa3\x47\xe1\xb5\x4b\x2b\x21\x5e\x3d\xba\x64\x49\xf4\xf8"

set KEY binary "\xa0\x1d\x3d\x99\x3b\x82\x0f\x1e\x13\x0a\x89\x55\x8d\xc0\xde\x22"
set IV binary "\x49\x59\x63\x55\xfd\x61\x71\x01\x00\xf3\xb9\xde\xb6\x6f\xb2\xa5"

comtype brotli
encryption xor KEY1
log MEMORY_FILE 8 24
encryption xor ""
goto 0 MEMORY_FILE
get UNK1 long MEMORY_FILE
get UNK2 long MEMORY_FILE
get TBLSIZE long MEMORY_FILE
math TBLSIZE + 0x1C
get NULL long MEMORY_FILE
get FILES long MEMORY_FILE
#print "%UNK1%"
#print "%TBLSIZE%"
#print "%FILES%"
set MEMORY_FILE binary ""
encryption xor KEY1
log MEMORY_FILE 8 TBLSIZE
encryption xor ""
goto 0x1E MEMORY_FILE
for i = 0 < FILES
get NSIZE short MEMORY_FILE
math NSIZE - 0x1A
get OFFSET long MEMORY_FILE
get SIZE long MEMORY_FILE
get NULL long MEMORY_FILE
get HASH long MEMORY_FILE
get ZSIZE long MEMORY_FILE
get UNK short MEMORY_FILE
get CRYPT short MEMORY_FILE
getdstring UNAME NSIZE MEMORY_FILE
set NAME unicode UNAME
#print "%NAME% %OFFSET% %ZSIZE% %CRYPT%"
set MEMORY_FILE2 binary ""
if CRYPT == 1
encryption xor KEY1
log MEMORY_FILE2 OFFSET ZSIZE
encryption xor ""
elif CRYPT == 2
encryption aes_128_ctr KEY IV 1 16
log MEMORY_FILE2 OFFSET ZSIZE
encryption xor ""
endif
clog NAME 0 ZSIZE SIZE MEMORY_FILE2
next i

WollieWoltaz
Posts: 41
Joined: Mon Dec 04, 2017 5:48 pm

Re: Master X Master (*.PAK)

Post by WollieWoltaz »

Wich engine was this game build on? Also what are the filetypes of the meshes and animations? Is it possible to open both in noesis?