├── README.md └── ringzer0team ├── coding-challenges └── hash-me-if-you-can │ ├── README.md │ └── code.py ├── cryptography ├── file-recovery │ ├── README.md │ ├── c96ac47d3b5c62b67219113fe6524122.tar │ └── flag │ │ ├── flag.dec │ │ ├── flag.enc │ │ └── private.pem ├── martian-message-part-2 │ ├── README.md │ └── vigenere.py └── public-key-recovery │ ├── README.md │ ├── prikey.pem │ └── pubkey.pem ├── steganography ├── brainsick │ ├── 5411333e505440020a1799da6071851b.gif │ ├── README.md │ ├── flag.rar │ └── flag │ │ └── flag.gif ├── hidden-in-plain-sight │ ├── 618d0e51213fa164d93bd92ca5e099c3.txt │ ├── README.md │ ├── chal.hex │ ├── diff.txt │ ├── flag.txt │ ├── org.hex │ └── original.txt ├── look-inside-the-house │ ├── 3e634b3b5d0658c903fc8d42b033fa57.jpg │ ├── README.md │ └── flag.txt ├── missing-peaces │ ├── README.md │ ├── b730986ccddd83b5f6fb66d2ec362475.jpeg │ ├── qr-bw.png │ └── qr.png ├── sig-id-level-1 │ ├── README.md │ ├── hint.png │ ├── hint2.png │ ├── qr.png │ └── sonic.png ├── sig-id-level-2 │ └── README.md ├── taps-team-have-recorded-some-ghost-sound │ ├── 15d087d9cc86e82b87d0e5ce2cef8583.wav │ ├── README.md │ └── sonic.png ├── victor-reloaded │ ├── README.md │ ├── issues.txt │ ├── original.txt │ ├── ours.txt │ └── victors.txt ├── victor-youre-hiding-me-sth │ ├── README.md │ └── poetry.txt └── your-old-friend-orloge-simard │ ├── 135553e7dfe65469fcf69c167fd1979a.mp3 │ ├── README.md │ ├── flag-morse.png │ ├── morse.png │ └── sonic1.png └── web ├── headache ├── README.md └── flag.png ├── looking-for-password-file └── README.md └── words-mean-something └── README.md /README.md: -------------------------------------------------------------------------------- 1 | # ctf 2 | Solutions to CTF problems. 3 | -------------------------------------------------------------------------------- /ringzer0team/coding-challenges/hash-me-if-you-can/README.md: -------------------------------------------------------------------------------- 1 | # [Hash Me If You Can](http://ringzer0team.com/challenges/13) 2 | 3 | I used python to solve this challenge. I wrote [a python script](https://github.com/alirezaomidi/ctf/blob/master/ringzer0team/coding-challenges/hash-me-if-you-can/code.py). This script starts a session in [ringzer0team](http://ringzer0team.com) website. Then grabs the message from [the challenge page](http://ringzer0team.com/challenges/13), hashes it with [SHA512 Algorithm](https://en.wikipedia.org/wiki/SHA-2) and sends it back to [the challenge page](http://ringzer0team.com/challenges/13). 4 | 5 | For more information, look at [the code](https://github.com/alirezaomidi/ctf/blob/master/ringzer0team/coding-challenges/hash-me-if-you-can/code.py). 6 | 7 | Let's use it: 8 | 9 | ``` 10 | $ python code.py 11 | Enter your ringzer0team username: [your_username] 12 | Enter your ringzer0team password: [your_password] 13 | FLAG-mukgu5g2w932t2kx1nqnhhlhy4 14 | ``` 15 | 16 | so the flag is **FLAG-mukgu5g2w932t2kx1nqnhhlhy4** 17 | 18 | * You should install [requests](http://docs.python-requests.org/en/latest/user/install) python package. try: `pip install requests`. If you don't have `pip` package too, read [the docs](http://docs.python-requests.org/en/latest/user/install) to see how to install the needed packages. -------------------------------------------------------------------------------- /ringzer0team/coding-challenges/hash-me-if-you-can/code.py: -------------------------------------------------------------------------------- 1 | import requests 2 | import hashlib 3 | import re 4 | import getpass 5 | 6 | url = 'http://ringzer0team.com/challenges/13' 7 | login_url = 'http://ringzer0team.com/login' 8 | text_regex = '----- BEGIN MESSAGE -----
\r\n\t\t(\w+)' 9 | flag_regex = 'FLAG-\w+' 10 | wrong_regex = 'Wrong.*!' 11 | session = requests.session() 12 | 13 | 14 | def get_text(username, password): 15 | login_data = dict(username=username, password=password) 16 | session.post(login_url, data=login_data) 17 | r = session.post(url) 18 | text = re.search(text_regex, r.text) 19 | return text.group(1) 20 | 21 | 22 | def hash(text): 23 | return hashlib.sha512(text).hexdigest() 24 | 25 | 26 | def send_answer(username, password): 27 | text = get_text(username, password) 28 | return session.post(url + '/' + str(hash(text))) 29 | 30 | 31 | def get_flag(username, password): 32 | r = send_answer(username, password) 33 | flag = re.search(flag_regex, r.text) 34 | wrong = re.search(wrong_regex, r.text) 35 | if flag: 36 | return flag.group() 37 | elif wrong: 38 | return wrong.group() 39 | else: 40 | return 'Unknown Error!' 41 | 42 | if __name__ == '__main__': 43 | username = raw_input('Enter your ringzer0team username: ') 44 | password = getpass.getpass('Enter your ringzer0team password: ') 45 | try: 46 | print get_flag(username, password) 47 | except (requests.exceptions.RequestException, AttributeError) as e: 48 | print 'Connection Error!' 49 | -------------------------------------------------------------------------------- /ringzer0team/cryptography/file-recovery/README.md: -------------------------------------------------------------------------------- 1 | # [File Recovery](http://ringzer0team.com/challenges/49) 2 | 3 | After downloading the archive, extract it. There is a *flag* directory which contains these 2 files: 4 | 5 | 1. `private.pem` which is a *private RSA key*. 6 | 2. `flag.end` which is an *encoded RSA file*. 7 | 8 | we use `rsautl` from `openssl` in command line: 9 | 10 | ``` 11 | $ openssl rsautl -decrypt -inkey private.pem -in flag.enc 12 | FLAG-vOAM5ZcReMNzJqOfxLauakHx 13 | ``` 14 | 15 | Enjoy! -------------------------------------------------------------------------------- /ringzer0team/cryptography/file-recovery/c96ac47d3b5c62b67219113fe6524122.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezaomidi/ctf/9732475a5d8d188561eb9329e2699388111865f6/ringzer0team/cryptography/file-recovery/c96ac47d3b5c62b67219113fe6524122.tar -------------------------------------------------------------------------------- /ringzer0team/cryptography/file-recovery/flag/flag.dec: -------------------------------------------------------------------------------- 1 | FLAG-vOAM5ZcReMNzJqOfxLauakHx 2 | -------------------------------------------------------------------------------- /ringzer0team/cryptography/file-recovery/flag/flag.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezaomidi/ctf/9732475a5d8d188561eb9329e2699388111865f6/ringzer0team/cryptography/file-recovery/flag/flag.enc -------------------------------------------------------------------------------- /ringzer0team/cryptography/file-recovery/flag/private.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN RSA PRIVATE KEY----- 2 | MIICXAIBAAKBgQDFDxrLz/lBabo/JrRvKN47IRzUgm/LzG9zbn3g8HMnPIpy4ZOF 3 | fhjblvb8iNeFMbUIDAT2QmsqDRJhHH7xUVfC6DiYB3YuKJC/RBIHzqlBsxWXI5DF 4 | ikyS3yT6ThQap3JZEKE7fVXHHJmea4VrsRVhWG6ztoPYf+OfiMyzj0IV3QIDAQAB 5 | AoGAX1QnSmGZ2yMijlpS/1Nt7nzeTY+sNZL4d4cELkUj799BusGVdAbET7aAVTp9 6 | yFl7kiD+ZYNMBFO+iGwYnPUU1sPSlFcS1YNu2S+4ds2ym1VfZu2drTN5qUIGIm22 7 | 2mgyOG1CSx421Ns4X5qIexkQ1gOnqaBuD7Mi3D19c5mK66ECQQDlt99Jcw7Jh1Gd 8 | TMy8cQ7EBI82YPedRP5SnAv0/sCIgcsBmbABO6WwCeS1BVjoicf+pPmIy3YkyiyO 9 | 8JIa9GJLAkEA25qwREClnm+2qIBRLal+pG8t7xZlEya+HrlX3ogThf/9GybfImzK 10 | ZQagbom3sDmRTeu6PhDhu4XZS7D4gfIPdwJANlDrsupJrM0aNx9ZqZTx8NdDJZB3 11 | +++8Urwi96Lk02IdJhu4yhHYc29jbIn/I7ywVT2c4wN4w+op7wJjCYyPUQJAaVEo 12 | U7NFOlSNHwZa6DEvQSDowI7W7nZYG1f74gcUheEcu5bK0DGoZwbkjd6SL3uMSfhR 13 | G07xUwOAEKLQq1ExRQJBAJouci7CVIbd8XqZEBaBAqIEVKCff+qHsHzoZo1ryog8 14 | vIgevI9e/01CqyuKIRs9WmM+DU/QnZtLJHUqgkpSCag= 15 | -----END RSA PRIVATE KEY----- 16 | -------------------------------------------------------------------------------- /ringzer0team/cryptography/martian-message-part-2/README.md: -------------------------------------------------------------------------------- 1 | # [Martian Message - Part 2](http://ringzer0team.com/challenges/63) 2 | 3 | The cryptography method in this problem is [Vigenere Cipher](http://en.wikipedia.org/wiki/Vigen%C3%A8re_cipher). 4 | 5 | The only thing you have to do is to write cipher text and key under it (repeat the key till it becomes the size of cipher text): 6 | 7 | ``` 8 | KDERE2UNX1W1H96GYQNUSQT1KPGB 9 | fselkladfklklaklfselkladfklk 10 | ``` 11 | 12 | Then move each letter of the cipher text backward in the alphabet according to order of the key letter under it, in the alphabet! For example: 13 | 14 | ``` 15 | K D E R 16 | f:5 s:18 e:4 l:11 17 | ``` 18 | 19 | Becomes: 20 | 21 | ``` 22 | FLAG 23 | ``` 24 | 25 | * When you encounter a non-alphabetical character, just write it in the plain text. 26 | * To encipher a plain text do so except moving backward. You should move forward in the alphabet now. 27 | 28 | So the flag is: **FLAGU2JNU1R1X96VOFNKHLB1GEWQ** 29 | 30 | I wrote a [python script](vigenere.py) which helps you to decipher a cipher text ciphered by Vigenere Cipher. 31 | 32 | Enjoy! -------------------------------------------------------------------------------- /ringzer0team/cryptography/martian-message-part-2/vigenere.py: -------------------------------------------------------------------------------- 1 | a = raw_input('Enter cipher text: ') 2 | b = raw_input('Enter key: ') 3 | a = a.lower() 4 | b = b.lower() 5 | c = '' 6 | j=0 7 | for i in a: 8 | if not ord('a') <= ord(i) <= ord('z'): 9 | c += i 10 | else: 11 | first = ord(i) - ord('a') 12 | second = ord(b[j]) - ord('a') 13 | c += chr((first - second) % 26 + ord('a')) 14 | j += 1 15 | if j == len(b): 16 | j = 0 17 | print 'The plain text: ' + c -------------------------------------------------------------------------------- /ringzer0team/cryptography/public-key-recovery/README.md: -------------------------------------------------------------------------------- 1 | # [Public Key Recovery](http://ringzer0team.com/challenges/50) 2 | 3 | In this problem we need an RSA tool. Here we use **OpenSSL** command line tool. 4 | 5 | Ubuntu/Debian: `sudo apt-get install openssl` 6 | 7 | Copy and paste the RSA private key to a file. Here we call it `prikey.pem`. Now: 8 | 9 | ``` 10 | $ openssl rsa -in prikey.pem -out pubkey.pem -pubout 11 | writing RSA key 12 | $ cat pubkey.pem 13 | -----BEGIN PUBLIC KEY----- 14 | MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDwkrxVrZ+KCl1cX27SHDI7Efgn 15 | FJZ0qTHUD6uEeSoZsiVkcu0/XOPbz1RtpK7xxpKMSnH6uDc5On1IEw3A127wW4Y3 16 | Lqqwcuhgypd3Sf/bH3z4tC25eqr5gA1sCwSaEw+yBxdnElBNOXxOQsST7aZGDyIU 17 | tmpouI1IXqxjrDx2SQIDAQAB 18 | -----END PUBLIC KEY----- 19 | ``` 20 | 21 | We need to copy the Base64 blob (between -BEGIN- and -END- tags) and submit it. Let's do it geeky! : 22 | 23 | ``` 24 | $ cat pubkey.pem | tail -n 5 | head -n 4 | tr -d '\n' | xclip -sel clipboard 25 | ``` 26 | 27 | * Hint: Install `xclip` tool before: `sudo apt-get install xclip` 28 | 29 | This will remove _new lines_ and copy it to the clipboard. Submit it to the Problem and get the _flag_: **FLAG-9869O2dQ43d1r116kfD0Sj5n** 30 | 31 | Enjoy! -------------------------------------------------------------------------------- /ringzer0team/cryptography/public-key-recovery/prikey.pem: -------------------------------------------------------------------------------- 1 | 2 | -----BEGIN RSA PRIVATE KEY----- 3 | MIICXgIBAAKBgQDwkrxVrZ+KCl1cX27SHDI7EfgnFJZ0qTHUD6uEeSoZsiVkcu0/ 4 | XOPbz1RtpK7xxpKMSnH6uDc5On1IEw3A127wW4Y3Lqqwcuhgypd3Sf/bH3z4tC25 5 | eqr5gA1sCwSaEw+yBxdnElBNOXxOQsST7aZGDyIUtmpouI1IXqxjrDx2SQIDAQAB 6 | AoGBAOwd6PFitnpiz90w4XEhMX/elCOvRjh8M6bCNoKP9W1A9whO8GJHRnDgXio6 7 | /2XXktBU5OfCVJk7uei6or4J9BvXRxQpn1GvOYRwwQa9E54GS0Yu1XxTPtnBlqKZ 8 | KRbmVNpv7eZyZfYG+V+/f53cgu6M4U3SE+9VTlggfZ8iSqGBAkEA/XvFz7Nb7mIC 9 | qzQpNmpKeN4PBVRJBXqHTj0FcqQ5POZTX6scgE3LrxVKSICmm6ungenPXQrdEQ27 10 | yNQsfASFGQJBAPL2JsjakvTVUIe2JyP99CxF5WuK2e0y6N2sU3n9t0lde9DRFs1r 11 | mhbIyIGZ0fIkuwZSOqVGb0K4W1KWypCd8LECQQCRKIIc8R9iIepZVGONb8z57mA3 12 | sw6l/obhfPxTrEvC3js8e+a0atiLiOujHVlLqD8inFxNcd0q2OyCk05uLsBxAkEA 13 | vWkRC3z7HExAn8xt7y1Ickt7c7+n7bfGuyphWbVmcpeis0SOVk8QrbqSNhdJCVGB 14 | TIhGmBq1GnrHFzffa6b1wQJAR7d8hFRtp7uFx5GFFEpFIJvs/SlnXPvOIBmzBvjU 15 | yGglag8za2A8ArHZwA1jXcFPawuJEmeZWo+5/MWp0j+yzQ== 16 | -----END RSA PRIVATE KEY----- 17 | -------------------------------------------------------------------------------- /ringzer0team/cryptography/public-key-recovery/pubkey.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN PUBLIC KEY----- 2 | MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDwkrxVrZ+KCl1cX27SHDI7Efgn 3 | FJZ0qTHUD6uEeSoZsiVkcu0/XOPbz1RtpK7xxpKMSnH6uDc5On1IEw3A127wW4Y3 4 | Lqqwcuhgypd3Sf/bH3z4tC25eqr5gA1sCwSaEw+yBxdnElBNOXxOQsST7aZGDyIU 5 | tmpouI1IXqxjrDx2SQIDAQAB 6 | -----END PUBLIC KEY----- 7 | -------------------------------------------------------------------------------- /ringzer0team/steganography/brainsick/5411333e505440020a1799da6071851b.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezaomidi/ctf/9732475a5d8d188561eb9329e2699388111865f6/ringzer0team/steganography/brainsick/5411333e505440020a1799da6071851b.gif -------------------------------------------------------------------------------- /ringzer0team/steganography/brainsick/README.md: -------------------------------------------------------------------------------- 1 | # [Brainsick](http://ringzer0team.com/challenges/122) 2 | 3 | When we encounter a challenge with no description, We should think of hidden files. Let's take a look at the hexdump: 4 | ``` 5 | $ xxd 5411333e505440020a1799da6071851b.gif | less 6 | 0000000: 4749 4638 3961 b801 8101 f700 0000 0000 GIF89a.......... 7 | 0000010: 0000 3300 0066 0000 9900 00cc 0000 ff00 ..3..f.......... 8 | 0000020: 2b00 002b 3300 2b66 002b 9900 2bcc 002b +..+3.+f.+..+..+ 9 | : 10 | ``` 11 | After searching about the `flag`: 12 | ``` 13 | 00131c0: c9b3 4175 1293 b4b9 d525 1025 959a db4c ..Au.....%.%...L 14 | 00131d0: 347d c969 8ecf aeb7 8f80 0000 3b52 6172 4}.i........;Rar 15 | 00131e0: 211a 0700 cf90 7300 000d 0000 0000 0000 !.....s......... 16 | 00131f0: 005e 0974 2090 2d00 a932 0100 8434 0100 .^.t .-..2...4.. 17 | 0013200: 021d 01c3 6b49 86fa 441d 3308 0020 0000 ....kI..D.3.. .. 18 | 0013210: 0066 6c61 672e 6769 6600 f085 9c97 0dd9 .flag.gif....... 19 | 0013220: 1401 089d 9998 1195 8f46 5d80 898a ccd7 .........F]..... 20 | 0013230: 6026 44c3 7661 b13d 1898 d33a 0a60 b30d `&D.va.=...:.`.. 21 | /flag 22 | ``` 23 | There is a `flag.gif` file! Oh, Look at the second line. At address `00131dd`. It is `Rar!....`, the magic number(signature) of **RAR Archive version 5.0**. Let's use `dd` command to copy from `00131dd` to the end of file in order to achieve the RAR file. `dd` takes decimal numbers as input so first convert `131dd` to decimal: `78301`. Then: 24 | ``` 25 | $ dd if=5411333e505440020a1799da6071851b.gif bs=1 skip=78301 of=flag.rar 26 | 78301 of=flag.rar 27 | 78577+0 records in 28 | 78577+0 records out 29 | 78577 bytes (79 kB) copied, 0.118177 s, 665 kB/s 30 | ``` 31 | If we look in the RAR file, we see the `flag.gif` as we saw its name in the hexdump. We open it and TADA!!: 32 | 33 | ![Flag](flag/flag.gif) 34 | 35 | The flag is **FLAG-Th2K4s83uQh9xA** 36 | 37 | Enjoy! 38 | -------------------------------------------------------------------------------- /ringzer0team/steganography/brainsick/flag.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezaomidi/ctf/9732475a5d8d188561eb9329e2699388111865f6/ringzer0team/steganography/brainsick/flag.rar -------------------------------------------------------------------------------- /ringzer0team/steganography/brainsick/flag/flag.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezaomidi/ctf/9732475a5d8d188561eb9329e2699388111865f6/ringzer0team/steganography/brainsick/flag/flag.gif -------------------------------------------------------------------------------- /ringzer0team/steganography/hidden-in-plain-sight/618d0e51213fa164d93bd92ca5e099c3.txt: -------------------------------------------------------------------------------- 1 | 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 2 | 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 3d = 3 | 3d 50 68 72 61 63 6b 20 49 6e 63 2e 3d 3d 0a 0a =Phrack Inc.== 4 | 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 5 | 20 20 20 20 56 6f 6c 75 6d 65 20 4f 6e 65 2c 20 Volume One, 6 | 49 73 73 75 65 20 37 2c 20 50 68 69 6c 65 20 33 Issue 7, Phile 3 7 | 20 6f 66 20 31 30 0a 0a 3d 2d 3d 2d 3d 2d 3d 2d of 10 =-=-=-=- 8 | 3d 2d 3d 2d 3d 2d 3d 2d 3d 2d 3d 2d 3d 2d 3d 2d =-=-=-=-=-=-=-=- 9 | 3d 2d 3d 2d 3d 2d 3d 2d 3d 2d 3d 2d 3d 2d 3d 2d =-=-=-=-=-=-=-=- 10 | 3d 2d 3d 2d 3d 2d 3d 2d 3d 2d 3d 2d 3d 2d 3d 2d =-=-=-=-=-=-=-=- 11 | 3d 2d 3d 2d 3d 2d 3d 2d 3d 2d 3d 2d 3d 2d 3d 2d =-=-=-=-=-=-=-=- 12 | 3d 2d 3d 2d 3d 2d 3d 0a 54 68 65 20 66 6f 6c 6c =-=-=-= The foll 13 | 6f 77 69 6e 67 20 77 61 73 20 77 72 69 74 74 65 owing was writte 14 | 6e 20 73 68 6f 72 74 6c 79 20 61 66 74 65 72 20 n shortly after 15 | 6d 79 20 61 72 72 65 73 74 2e 2e 2e 0a 0a 20 20 my arrest... 16 | 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 17 | 20 20 20 20 20 5c 2f 5c 54 68 65 20 43 6f 6e 73 \/\The Cons 18 | 63 69 65 6e 63 65 20 6f 66 20 61 20 48 61 63 6b cience of a Hack 19 | 65 72 2f 5c 2f 0a 0a 20 20 20 20 20 20 20 20 20 er/\/ 20 | 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 21 | 20 20 20 20 20 20 20 20 20 20 20 20 20 62 79 0a by 22 | 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 46 20 23 | 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 24 | 2b 2b 2b 54 68 65 20 4d 65 6e 74 6f 72 2b 2b 2b +++The Mentor+++ 25 | 0a 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 26 | 20 20 20 20 20 20 20 20 20 20 20 20 57 72 69 74 Writ 27 | 74 65 6e 20 6f 6e 20 4a 61 6e 75 61 72 79 20 38 ten on January 8 28 | 2c 20 31 39 38 36 0a 3d 2d 3d 2d 3d 2d 3d 2d 3d , 1986 =-=-=-=-= 29 | 2d 3d 2d 3d 2d 3d 2d 3d 2d 3d 2d 3d 2d 3d 2d 3d -=-=-=-=-=-=-=-= 30 | 2d 3d 2d 3d 2d 3d 2d 3d 2d 3d 2d 3d 2d 3d 2d 3d -=-=-=-=-=-=-=-= 31 | 2d 3d 2d 3d 2d 3d 2d 3d 2d 3d 2d 3d 2d 3d 2d 3d -=-=-=-=-=-=-=-= 32 | 2d 3d 2d 3d 2d 3d 2d 3d 2d 3d 2d 3d 2d 3d 2d 3d -=-=-=-=-=-=-=-= 33 | 2d 3d 2d 3d 2d 3d 0a 0a 20 20 20 20 20 20 20 20 -=-=-= 34 | 41 6e 6f 74 68 65 72 20 6f 6e 65 20 67 6f 74 20 Another one got 35 | 63 61 75 67 68 74 20 74 6f 64 61 79 2c 20 69 74 caught today, it 36 | 27 73 20 61 6c 6c 20 6f 76 65 72 20 74 68 65 20 's all over the 37 | 70 61 70 65 72 73 2e 20 20 22 54 65 65 6e 61 67 papers. "Teenag 38 | 65 72 0a 41 72 72 65 73 74 65 64 20 69 6e 20 43 er Arrested in C 39 | 6f 6d 70 75 74 65 72 20 43 72 69 6d 65 20 53 63 omputer Crime Sc 40 | 61 6e 64 61 6c 22 2c 20 22 48 61 63 6b 65 72 20 andal", "Hacker 41 | 41 72 72 65 73 74 65 64 20 61 66 74 65 72 20 42 Arrested after B 42 | 61 6e 6b 20 54 61 6d 70 65 72 69 6e 67 22 2e 2e ank Tampering".. 43 | 2e 0a 20 20 20 20 20 20 20 20 44 61 6d 6e 20 6b . Damn k 44 | 69 64 73 2e 20 20 54 68 65 79 27 72 65 20 61 6c ids. They're al 45 | 6c 20 61 6c 69 6b 65 2e 0a 0a 20 20 20 20 20 20 l alike. 46 | 20 20 42 75 74 20 64 4c 64 20 79 6f 75 2c 20 69 But did you, i 47 | 6e 20 79 6f 75 72 20 74 68 72 65 65 2d 70 69 65 n your three-pie 48 | 63 65 20 70 73 79 63 68 6f 6c 6f 67 79 20 61 6e ce psychology an 49 | 64 20 31 39 35 30 27 73 20 74 65 63 68 6e 6f 62 d 1950's technob 50 | 72 61 69 6e 2c 0a 65 76 65 72 20 74 61 6b 65 20 rain, ever take 51 | 61 20 6c 6f 6f 6b 20 62 65 68 69 6e 64 20 74 68 a look behind th 52 | 65 20 65 79 65 73 20 6f 66 20 74 68 65 20 68 61 e eyes of the ha 53 | 63 6b 65 72 3f 20 20 44 69 64 20 79 6f 75 20 65 cker? Did you e 54 | 76 65 72 20 77 6f 6e 64 65 72 20 77 68 61 74 0a ver wonder what 55 | 6d 61 64 65 20 68 69 6d 20 74 69 63 6b 2c 20 77 made him tick, w 56 | 68 61 74 20 66 6f 72 63 65 73 20 73 68 61 70 65 hat forces shape 57 | 64 20 68 69 6d 2c 20 77 68 61 74 20 6d 61 79 20 d him, what may 58 | 68 61 76 65 20 6d 6f 6c 64 65 64 20 68 69 6d 3f have molded him? 59 | 0a 20 20 20 20 20 20 20 20 49 20 61 6d 20 61 20 I am a 60 | 68 61 63 6b 65 72 2c 20 65 6e 74 65 72 20 6d 79 hacker, enter my 61 | 20 77 6f 72 6c 64 2e 2e 2e 0a 20 20 20 20 20 20 world... 62 | 20 20 4d 69 6e 65 20 69 73 20 61 20 77 6f 72 6c Mine is a worl 63 | 64 20 74 68 61 74 20 62 65 67 69 6e 73 20 77 69 d that begins wi 64 | 74 68 20 73 63 68 6f 6f 6c 2e 2e 2e 20 49 27 6d th school... I'm 65 | 20 73 6d 61 72 74 65 72 20 74 68 61 6e 20 6d 6f smarter than mo 66 | 73 74 20 6f 66 0a 74 68 65 20 6f 74 68 65 72 20 st of the other 67 | 6b 69 64 73 2c 20 74 68 69 73 20 63 72 61 70 20 kids, this crap 68 | 74 68 65 79 20 74 65 61 63 68 20 75 73 20 62 6f they teach us bo 69 | 72 65 73 20 6d 65 2e 2e 2e 0a 20 20 20 20 20 20 res me... 70 | 20 20 44 61 6d 6e 20 75 6e 64 65 72 61 63 68 69 Damn underachi 71 | 41 76 65 72 2e 20 20 54 68 65 79 27 72 65 20 61 ever. They're a 72 | 6c 6c 20 61 6c 47 6b 65 2e 0a 0a 20 20 20 20 20 ll alike. 73 | 20 20 20 49 27 6d 20 69 6e 20 6a 75 6e 69 6f 72 I'm in junior 74 | 20 68 69 67 68 20 6f 72 20 68 69 67 68 20 73 63 high or high sc 75 | 68 6f 6f 6c 2e 20 20 49 27 76 65 20 6c 69 73 74 hool. I've list 76 | 65 6e 65 64 20 74 6f 20 74 65 61 63 68 65 72 73 ened to teachers 77 | 20 65 78 70 6c 61 69 6e 0a 66 6f 72 20 74 68 65 explain for the 78 | 20 66 69 66 74 65 65 6e 74 68 20 74 69 6d 65 20 fifteenth time 79 | 68 6f 77 20 74 6f 20 72 65 64 75 63 65 2d 61 20 how to reduce a 80 | 66 72 61 63 74 69 6f 6e 2e 20 20 49 20 75 6e 64 fraction. I und 81 | 65 72 73 74 61 6e 64 20 69 74 2e 20 20 22 4e 6f erstand it. "No 82 | 2c 20 4d 73 2e 0a 53 6d 69 74 68 4e 20 49 20 64 , Ms. Smith, I d 83 | 69 64 6e 27 74 20 73 68 6f 77 20 6d 79 20 77 6f idn't show my wo 84 | 72 6b 2e 20 20 49 20 64 69 64 20 69 74 20 69 6e rk. I did it in 85 | 6f 6d 79 20 68 65 61 64 2e 2e 2e 22 0a 74 20 20 my head..." 86 | 20 20 20 20 20 44 61 6d 6e 20 6b 69 64 2e 20 20 Damn kid. 87 | 50 72 6f 62 61 62 6c 79 20 63 6f 70 69 65 64 20 Probably copied 88 | 69 74 2e 20 20 54 68 65 79 27 72 65 20 61 6c 6c it. They're all 89 | 20 61 6c 69 6b 65 2e 0a 0a 20 20 20 20 20 20 20 alike. 90 | 20 49 20 6d 61 64 65 20 61 68 64 69 73 63 6f 76 I made a discov 91 | 65 72 79 20 74 6f 64 61 79 2e 20 20 49 20 66 6f ery today. I fo 92 | 75 6e 64 20 61 20 63 6f 6d 70 75 74 65 72 2e 20 und a computer. 93 | 20 57 61 69 74 20 61 20 73 65 63 6f 6e 64 2c 20 Wait a second, 94 | 74 68 69 73 20 69 73 0a 63 6f 6f 6c 2e 20 20 49 this is cool. I 95 | 74 20 64 6f 65 73 20 77 68 61 74 20 49 20 77 61 t does what I wa 96 | 6e 74 20 69 74 20 74 6f 2e 20 20 49 66 20 69 74 nt it to. If it 97 | 20 6d 61 6b 65 73 20 61 20 6d 69 73 74 61 6b 65 makes a mistake 98 | 2c 20 69 74 27 73 20 62 65 63 61 75 73 65 20 49 , it's because I 99 | 0a 73 63 72 65 77 65 64 20 69 74 20 75 70 2e 20 screwed it up. 100 | 20 4e 6f 74 20 62 65 63 61 75 73 65 20 69 74 20 Not because it 101 | 64 6f 65 73 6e 27 74 20 6c 69 6b 65 20 6d 65 2e doesn't like me. 102 | 2e 2e 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 .. 103 | 20 20 20 4f 72 20 66 65 65 6c 73 20 74 68 72 65 Or feels thre 104 | 61 74 65 6e 65 64 20 62 79 20 6d 65 2e 2e 2e 0a atened by me... 105 | 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 106 | 4f 72 20 74 68 69 6e 6b 73 20 49 27 6d 20 61 20 Or thinks I'm a 107 | 73 6d 61 72 74 20 61 73 73 2e 2e 2e 0a 20 20 20 smart ass... 108 | 20 20 20 20 20 20 20 20 20 20 20 20 20 4f 72 20 Or 109 | 64 6f 65 73 6e 27 74 20 6c 69 6b 65 20 74 65 61 doesn't like tea 110 | 63 68 69 6e 67 20 61 6e 64 20 73 68 6f 75 6c 64 ching and should 111 | 6e 27 74 20 62 65 20 68 65 72 65 2e 2e 2e 0a 69 n't be here... 112 | 20 20 20 20 20 20 20 44 61 6d 6e 20 6b 69 64 2e Damn kid. 113 | 20 6e 41 6c 6c 20 68 65 20 64 6f 65 73 20 69 73 All he does is 114 | 20 70 6c 61 79 20 67 61 6d 65 73 2e 20 20 54 68 play games. Th 115 | 65 79 27 72 65 20 61 6c 6c 20 61 6c 69 67 65 2e ey're all alike. 116 | 0a 0a 20 20 20 20 20 20 20 20 41 6e 64 20 49 68 And th 117 | 65 6e 20 69 74 20 68 61 70 70 65 6e 65 64 2e 2e en it happened.. 118 | 2e 20 61 20 64 6f 6f 72 20 6f 70 65 6e 65 64 20 . a door opened 119 | 74 6f 20 61 20 77 6f 72 6c 64 2e 2e 2e 20 72 75 to a world... ru 120 | 73 73 69 6e 67 20 74 68 72 6f 75 67 68 0a 74 68 shing through th 121 | 65 20 70 68 6f 6e 65 20 6c 69 6e 65 20 6c 69 6b e phone line lik 122 | 65 20 68 65 72 6f 69 6e 20 74 68 72 6f 75 67 68 e heroin through 123 | 20 61 6e 20 61 64 64 69 63 74 27 73 20 76 65 69 an addict's vei 124 | 6e 73 2c 20 61 6e 20 65 6c 65 63 74 72 6f 6e 69 ns, an electroni 125 | 63 20 70 75 6c 73 65 20 69 73 0a 73 65 6e 74 20 c pulse is sent 126 | 6f 75 74 2c 20 61 20 72 65 66 75 67 65 20 66 72 out, a refuge fr 127 | 6f 6d 20 74 68 65 20 64 61 79 2d 74 6f 2d 64 61 om the day-to-da 128 | 79 20 69 6e 63 6f 6d 70 65 74 65 6e 63 69 65 73 y incompetencies 129 | 20 69 45 20 73 6f 75 67 68 74 2e 2e 2e 20 61 20 is sought... a 130 | 62 6f 61 72 64 20 69 73 0a 66 6f 75 6e 64 2e 0a board is found. 131 | 20 20 20 20 20 20 20 20 22 54 68 69 73 20 69 73 "This is 132 | 20 69 74 2e 2e 2e 20 74 68 69 73 20 69 73 20 77 it... this is w 133 | 68 65 72 65 20 49 20 76 65 6c 6f 6e 67 2e 2e 2e here I belong... 134 | 22 0a 20 20 20 20 20 20 20 20 49 20 6b 6e 6f 77 " I know 135 | 20 65 76 65 72 79 6f 6e 65 20 68 65 72 65 2e 2e everyone here.. 136 | 2e 20 65 76 65 6e 20 69 66 20 49 27 76 65 20 6e . even if I've n 137 | 65 76 65 72 20 6d 65 74 20 74 68 65 6d 2c 20 6e ever met them, n 138 | 65 76 65 72 20 74 61 6c 6b 65 64 20 74 6f 0a 74 ever talked to t 139 | 68 65 6d 2c 20 6d 61 79 20 6e 65 76 65 72 20 68 hem, may never h 140 | 65 61 72 20 66 72 65 6d 20 74 68 65 6d 20 61 67 ear from them ag 141 | 61 69 6e 2e 2e 2e 20 49 20 6b 6e 6f 77 20 79 6f ain... I know yo 142 | 75 20 61 6c 6c 2e 2e 2e 0a 20 20 20 20 20 20 20 u all... 143 | 20 44 61 6d 6e 20 6b 69 64 2e 20 20 54 79 69 6e Damn kid. Tyin 144 | 67 20 75 70 20 74 68 65 20 70 68 6f 6e 65 20 6c g up the phone l 145 | 69 6e 65 20 61 67 61 69 6e 2e 20 20 54 68 65 79 ine again. They 146 | 27 72 65 20 61 6c 6c 20 61 6c 69 6b 65 2e 2e 2e 're all alike... 147 | 0a 0a 20 20 20 20 20 20 20 20 59 6f 75 20 62 65 You be 148 | 74 20 79 6f 75 72 20 61 73 73 20 77 65 27 72 65 t your ass we're 149 | 20 61 6c 6c 20 61 6c 69 6b 65 2e 2e 2e 20 77 65 all alike... we 150 | 27 76 65 20 62 65 65 6e 20 73 70 6f 6f 6e 2d 66 've been spoon-f 151 | 65 64 20 62 61 62 79 20 66 6f 6f 64 20 61 74 0a ed baby food at 152 | 73 63 68 6f 6f 6c 20 77 68 65 6e 20 77 65 20 72 school when we h 153 | 75 6e 67 65 72 65 64 20 66 6f 72 20 73 74 65 61 ungered for stea 154 | 6b 2e 2e 2e 20 74 68 65 20 62 69 74 73 20 6f 66 k... the bits of 155 | 20 6d 65 61 74 20 74 68 61 74 20 57 6f 75 20 64 meat that you d 156 | 69 64 20 6c 65 74 20 73 6c 69 70 0a 74 68 72 6f id let slip thro 157 | 75 67 68 20 77 65 72 65 20 70 72 65 2d 63 68 68 ugh were pre-che 158 | 77 65 64 20 61 6e 64 20 74 61 73 74 65 6c 65 73 wed and tasteles 159 | 73 2e 20 20 57 65 27 76 65 20 62 65 65 6e 20 64 s. We've been d 160 | 6f 6d 69 6e 61 74 65 64 20 62 79 20 73 61 64 69 ominated by sadi 161 | 73 74 73 2c 20 6f 72 0a 69 67 6e 6f 72 65 64 20 sts, or ignored 162 | 62 79 20 74 68 65 20 61 70 61 74 68 65 74 69 63 by the apathetic 163 | 2e 20 20 54 68 65 20 66 65 77 20 74 68 61 74 20 . The few that 164 | 68 61 64 20 73 6f 6d 65 74 68 69 6e 67 20 74 6f had something to 165 | 20 74 65 61 63 68 20 66 6f 75 6e 64 20 75 73 20 teach found us 166 | 77 69 6c 6c 2d 0a 69 6e 67 20 70 75 70 69 6c 73 will- ing pupils 167 | 2c 20 62 75 74 20 74 68 6f 73 65 20 66 65 77 20 , but those few 168 | 61 72 65 20 6c 69 6b 65 20 64 72 6f 70 73 20 6f are like drops o 169 | 66 20 77 61 74 65 72 20 69 6e 20 74 68 65 20 64 f water in the d 170 | 65 73 65 72 74 2e 0a 0a 20 20 20 20 20 20 20 20 esert. 171 | 54 68 69 73 20 69 73 20 6f 75 72 20 77 6f 72 6c This is our worl 172 | 64 20 6e 6f 77 2e 2e 2e 20 74 68 65 20 77 6f 72 d now... the wor 173 | 6c 64 20 6f 66 20 74 68 65 20 65 6c 65 63 74 72 ld of the electr 174 | 6f 6e 20 61 6e 64 20 74 68 65 20 73 77 69 74 63 on and the switc 175 | 68 2c 20 74 68 65 0a 62 65 61 75 74 79 20 6f 66 h, the beauty of 176 | 20 74 61 65 20 62 61 75 64 2e 20 20 57 65 20 6d the baud. We m 177 | 61 6b 65 20 75 73 65 20 6f 66 20 61 20 73 65 72 ake use of a ser 178 | 76 69 63 65 20 61 6c 72 65 61 64 79 20 65 78 69 vice already exi 179 | 73 74 69 6e 67 20 77 69 74 68 6f 75 74 20 70 61 sting without pa 180 | 79 69 6e 67 0a 66 6f 72 20 77 68 61 74 20 63 6f ying for what co 181 | 75 6c 64 20 62 65 20 64 69 72 74 2d 63 68 65 61 uld be dirt-chea 182 | 70 20 69 66 20 69 74 20 77 61 73 6e 27 74 20 72 p if it wasn't r 183 | 75 6e 20 62 79 20 70 72 6f 66 69 74 65 65 72 69 un by profiteeri 184 | 6e 67 20 67 6c 75 74 74 6f 6e 73 2c 20 61 6e 64 ng gluttons, and 185 | 0a 79 6f 75 20 63 61 6c 6c 20 75 73 20 63 72 69 you call us cri 186 | 6d 69 6e 61 6c 73 2e 20 20 57 65 20 65 78 70 6c minals. We expl 187 | 6f 72 65 2e 2e 2e 20 61 6e 64 20 79 6f 75 20 63 ore... and you c 188 | 61 6c 6c 20 75 73 20 63 72 69 6d 69 6e 61 6c 73 all us criminals 189 | 2e 20 20 57 65 20 73 65 65 6b 0a 61 66 74 65 72 . We seek after 190 | 20 6b 74 6f 77 6c 65 64 67 65 2e 2e 2e 20 61 6e knowledge... an 191 | 64 20 79 6f 75 20 63 61 6c 6c 20 75 73 20 63 72 d you call us cr 192 | 69 6d 69 6e 61 6c 73 2e 20 20 57 65 20 65 78 69 iminals. We exi 193 | 73 74 20 77 69 74 68 6f 75 74 20 73 6b 69 6e 20 st without skin 194 | 63 6f 6c 6f 72 2c 0a 77 69 74 68 6f 75 74 20 6e color, without n 195 | 61 74 69 6f 6e 61 6c 69 74 79 2c 20 77 69 74 68 ationality, with 196 | 6f 75 74 20 72 65 6c 69 67 69 6f 75 73 20 62 69 out religious bi 197 | 61 73 2e 2e 2e 20 61 6e 64 20 79 6f 75 20 63 61 as... and you ca 198 | 6c 6c 20 75 73 20 63 72 69 6d 69 6e 61 6c 73 2e ll us criminals. 199 | 0a 59 6f 75 20 62 75 69 6c 64 20 61 74 6f 6d 69 You build atomi 200 | 63 20 62 6f 6d 62 73 2c 20 79 6f 75 20 49 61 67 c bombs, you wag 201 | 65 20 77 61 72 73 2c 20 79 6f 75 20 6d 75 72 64 e wars, you murd 202 | 65 72 2c 20 63 68 74 61 74 2c 20 61 6e 64 20 6c er, cheat, and l 203 | 69 65 20 74 6f 20 75 73 0a 61 6e 64 20 74 72 79 ie to us and try 204 | 20 74 6f 20 6d 61 6b 65 53 75 73 20 62 65 6c 69 to make us beli 205 | 65 76 65 20 69 74 27 73 20 66 6f 72 20 6f 75 72 eve it's for our 206 | 20 6f 77 6e 20 67 6f 6f 64 2c 20 79 65 74 20 77 own good, yet w 207 | 65 27 65 65 20 74 68 65 20 63 72 69 6d 69 6e 61 e're the crimina 208 | 6c 73 2e 0a 0a 20 20 20 20 20 20 20 20 59 65 73 ls. Yes 209 | 2c 20 49 20 61 6d 20 61 20 63 72 69 6d 69 6e 61 , I am a crimina 210 | 6c 2e 20 20 4d 79 20 63 72 69 6d 65 20 69 73 20 l. My crime is 211 | 74 68 61 74 20 6f 66 20 63 75 72 69 6f 73 69 74 that of curiosit 212 | 79 2e 20 20 4d 79 20 63 72 69 6d 65 20 69 73 0a y. My crime is 213 | 74 68 61 74 20 6f 66 20 6a 75 64 67 69 6e 67 20 that of judging 214 | 70 65 6f 70 6c 65 20 62 79 20 77 68 61 74 20 74 people by what t 215 | 68 65 79 20 73 61 79 20 61 6e 64 20 74 68 69 6e hey say and thin 216 | 6b 2c 65 6e 6f 74 20 77 68 61 74 20 74 68 65 79 k, not what they 217 | 20 6c 6f 6f 6b 20 6c 69 6b 65 2e 0a 4d 79 20 63 look like. My c 218 | 72 69 6d 65 20 69 73 20 74 68 61 74 20 6f 66 20 rime is that of 219 | 6f 75 74 73 6d 61 72 74 69 6e 67 20 79 6f 75 2c outsmarting you, 220 | 20 73 6f 6d 65 74 68 69 6e 67 20 74 68 61 74 20 something that 221 | 79 6f 75 20 77 69 6c 6c 20 6e 65 76 65 72 20 66 you will never f 222 | 6f 72 67 69 76 6d 20 6d 65 0a 66 6f 72 2e 0a 0a orgive me for. 223 | 20 20 20 20 20 20 20 20 49 20 61 6d 20 61 20 68 I am a h 224 | 61 63 6b 65 72 2c 20 61 6e 64 20 74 68 69 73 20 acker, and this 225 | 69 73 20 6d 79 20 6d 61 6e 69 66 65 73 74 6f 2e is my manifesto. 226 | 20 20 59 6f 75 20 6d 61 79 20 73 74 6f 70 20 74 You may stop t 227 | 68 69 73 20 69 6e 64 69 76 69 64 75 61 6c 2c 0a his individual, 228 | 62 75 74 20 79 6f 75 20 63 61 6e 27 74 20 73 74 but you can't st 229 | 6f 70 20 75 73 20 61 6c 6c 2e 2e 2e 20 61 66 74 op us all... aft 230 | 65 72 20 61 6c 6c 2c 20 77 65 27 72 65 20 61 6c er all, we're al 231 | 6c 20 61 6c 69 6b 65 2e 73 0a 20 20 20 20 20 20 l alike. 232 | 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 233 | 20 20 20 20 20 20 20 20 20 2b 2b 2b 54 68 65 20 +++The 234 | 4d 65 6e 74 6f 72 2b 2b 2b Mentor+++ 235 | -------------------------------------------------------------------------------- /ringzer0team/steganography/hidden-in-plain-sight/README.md: -------------------------------------------------------------------------------- 1 | # [Hidden In Plain Sight](https://ringzer0team.com/challenges/188) 2 | 3 | The text is an article named [Hacker Manifesto](http://www.phrack.org/issues/7/3.html#article) by [The Mentor](https://en.wikipedia.org/wiki/Loyd_Blankenship). It's a real inspiration written in 1980s. 4 | 5 | We should take the hex dump of both texts (the original article and the challenge's article) and compare them. Keep the original article in `original.txt` and the challenge's article in `618d0e51213fa164d93bd92ca5e099c3.txt`. 6 | First extract the hex dump from the challenge's article: 7 | 8 | ```bash 9 | xxd -p original.txt | fold -w 2 > org.hex 10 | ``` 11 | 12 | And for the challenge's article: 13 | ```bash 14 | cat 618d0e51213fa164d93bd92ca5e099c3.txt | cut -d ' ' -f -16 | tr -d ' ' | fold -w 2 > chal.hex 15 | ``` 16 | 17 | Now compare the `.hex` files: 18 | ```bash 19 | diff -y --suppress-common-lines *.hex > diff.txt 20 | ``` 21 | 22 | The output is: 23 | 24 | ``` 25 | 46 | 20 26 | 4c | 69 27 | 41 | 65 28 | 47 | 69 29 | 2d | 20 30 | 4e | 2c 31 | 6f | 20 32 | 74 | 20 33 | 68 | 20 34 | 69 | 20 35 | 6e | 20 36 | 67 | 6b 37 | 49 | 74 38 | 73 | 68 39 | 45 | 73 40 | 76 | 62 41 | 65 | 6f 42 | 72 | 68 43 | 57 | 79 44 | 68 | 65 45 | 61 | 68 46 | 74 | 6e 47 | 49 | 77 48 | 74 | 65 49 | 53 | 20 50 | 65 | 72 51 | 65 | 20 52 | 6d | 65 53 | 73 | 0a 54 | ``` 55 | 56 | Take the first column and convert to ASCII: 57 | 58 | ```bash 59 | cat diff.txt | cut -f 1 | tr '\n' ' ' > flag.txt 60 | ``` 61 | 62 | Use Python: 63 | ```python 64 | for i in open('flag.txt').readline().split(): 65 | print(chr(int(i, 16)), end='') 66 | ``` 67 | 68 | The **FLAG** is: `FLAG-NothingIsEverWhatItSeems` 69 | -------------------------------------------------------------------------------- /ringzer0team/steganography/hidden-in-plain-sight/chal.hex: -------------------------------------------------------------------------------- 1 | 20 2 | 20 3 | 20 4 | 20 5 | 20 6 | 20 7 | 20 8 | 20 9 | 20 10 | 20 11 | 20 12 | 20 13 | 20 14 | 20 15 | 20 16 | 20 17 | 20 18 | 20 19 | 20 20 | 20 21 | 20 22 | 20 23 | 20 24 | 20 25 | 20 26 | 20 27 | 20 28 | 20 29 | 20 30 | 20 31 | 20 32 | 3d 33 | 3d 34 | 50 35 | 68 36 | 72 37 | 61 38 | 63 39 | 6b 40 | 20 41 | 49 42 | 6e 43 | 63 44 | 2e 45 | 3d 46 | 3d 47 | 0a 48 | 0a 49 | 20 50 | 20 51 | 20 52 | 20 53 | 20 54 | 20 55 | 20 56 | 20 57 | 20 58 | 20 59 | 20 60 | 20 61 | 20 62 | 20 63 | 20 64 | 20 65 | 20 66 | 20 67 | 20 68 | 20 69 | 56 70 | 6f 71 | 6c 72 | 75 73 | 6d 74 | 65 75 | 20 76 | 4f 77 | 6e 78 | 65 79 | 2c 80 | 20 81 | 49 82 | 73 83 | 73 84 | 75 85 | 65 86 | 20 87 | 37 88 | 2c 89 | 20 90 | 50 91 | 68 92 | 69 93 | 6c 94 | 65 95 | 20 96 | 33 97 | 20 98 | 6f 99 | 66 100 | 20 101 | 31 102 | 30 103 | 0a 104 | 0a 105 | 3d 106 | 2d 107 | 3d 108 | 2d 109 | 3d 110 | 2d 111 | 3d 112 | 2d 113 | 3d 114 | 2d 115 | 3d 116 | 2d 117 | 3d 118 | 2d 119 | 3d 120 | 2d 121 | 3d 122 | 2d 123 | 3d 124 | 2d 125 | 3d 126 | 2d 127 | 3d 128 | 2d 129 | 3d 130 | 2d 131 | 3d 132 | 2d 133 | 3d 134 | 2d 135 | 3d 136 | 2d 137 | 3d 138 | 2d 139 | 3d 140 | 2d 141 | 3d 142 | 2d 143 | 3d 144 | 2d 145 | 3d 146 | 2d 147 | 3d 148 | 2d 149 | 3d 150 | 2d 151 | 3d 152 | 2d 153 | 3d 154 | 2d 155 | 3d 156 | 2d 157 | 3d 158 | 2d 159 | 3d 160 | 2d 161 | 3d 162 | 2d 163 | 3d 164 | 2d 165 | 3d 166 | 2d 167 | 3d 168 | 2d 169 | 3d 170 | 2d 171 | 3d 172 | 2d 173 | 3d 174 | 2d 175 | 3d 176 | 2d 177 | 3d 178 | 2d 179 | 3d 180 | 2d 181 | 3d 182 | 2d 183 | 3d 184 | 0a 185 | 54 186 | 68 187 | 65 188 | 20 189 | 66 190 | 6f 191 | 6c 192 | 6c 193 | 6f 194 | 77 195 | 69 196 | 6e 197 | 67 198 | 20 199 | 77 200 | 61 201 | 73 202 | 20 203 | 77 204 | 72 205 | 69 206 | 74 207 | 74 208 | 65 209 | 6e 210 | 20 211 | 73 212 | 68 213 | 6f 214 | 72 215 | 74 216 | 6c 217 | 79 218 | 20 219 | 61 220 | 66 221 | 74 222 | 65 223 | 72 224 | 20 225 | 6d 226 | 79 227 | 20 228 | 61 229 | 72 230 | 72 231 | 65 232 | 73 233 | 74 234 | 2e 235 | 2e 236 | 2e 237 | 0a 238 | 0a 239 | 20 240 | 20 241 | 20 242 | 20 243 | 20 244 | 20 245 | 20 246 | 20 247 | 20 248 | 20 249 | 20 250 | 20 251 | 20 252 | 20 253 | 20 254 | 20 255 | 20 256 | 20 257 | 20 258 | 20 259 | 20 260 | 20 261 | 20 262 | 5c 263 | 2f 264 | 5c 265 | 54 266 | 68 267 | 65 268 | 20 269 | 43 270 | 6f 271 | 6e 272 | 73 273 | 63 274 | 69 275 | 65 276 | 6e 277 | 63 278 | 65 279 | 20 280 | 6f 281 | 66 282 | 20 283 | 61 284 | 20 285 | 48 286 | 61 287 | 63 288 | 6b 289 | 65 290 | 72 291 | 2f 292 | 5c 293 | 2f 294 | 0a 295 | 0a 296 | 20 297 | 20 298 | 20 299 | 20 300 | 20 301 | 20 302 | 20 303 | 20 304 | 20 305 | 20 306 | 20 307 | 20 308 | 20 309 | 20 310 | 20 311 | 20 312 | 20 313 | 20 314 | 20 315 | 20 316 | 20 317 | 20 318 | 20 319 | 20 320 | 20 321 | 20 322 | 20 323 | 20 324 | 20 325 | 20 326 | 20 327 | 20 328 | 20 329 | 20 330 | 20 331 | 20 332 | 20 333 | 20 334 | 62 335 | 79 336 | 0a 337 | 0a 338 | 20 339 | 20 340 | 20 341 | 20 342 | 20 343 | 20 344 | 20 345 | 20 346 | 20 347 | 20 348 | 20 349 | 20 350 | 20 351 | 46 352 | 20 353 | 20 354 | 20 355 | 20 356 | 20 357 | 20 358 | 20 359 | 20 360 | 20 361 | 20 362 | 20 363 | 20 364 | 20 365 | 20 366 | 20 367 | 20 368 | 20 369 | 2b 370 | 2b 371 | 2b 372 | 54 373 | 68 374 | 65 375 | 20 376 | 4d 377 | 65 378 | 6e 379 | 74 380 | 6f 381 | 72 382 | 2b 383 | 2b 384 | 2b 385 | 0a 386 | 0a 387 | 20 388 | 20 389 | 20 390 | 20 391 | 20 392 | 20 393 | 20 394 | 20 395 | 20 396 | 20 397 | 20 398 | 20 399 | 20 400 | 20 401 | 20 402 | 20 403 | 20 404 | 20 405 | 20 406 | 20 407 | 20 408 | 20 409 | 20 410 | 20 411 | 20 412 | 20 413 | 57 414 | 72 415 | 69 416 | 74 417 | 74 418 | 65 419 | 6e 420 | 20 421 | 6f 422 | 6e 423 | 20 424 | 4a 425 | 61 426 | 6e 427 | 75 428 | 61 429 | 72 430 | 79 431 | 20 432 | 38 433 | 2c 434 | 20 435 | 31 436 | 39 437 | 38 438 | 36 439 | 0a 440 | 3d 441 | 2d 442 | 3d 443 | 2d 444 | 3d 445 | 2d 446 | 3d 447 | 2d 448 | 3d 449 | 2d 450 | 3d 451 | 2d 452 | 3d 453 | 2d 454 | 3d 455 | 2d 456 | 3d 457 | 2d 458 | 3d 459 | 2d 460 | 3d 461 | 2d 462 | 3d 463 | 2d 464 | 3d 465 | 2d 466 | 3d 467 | 2d 468 | 3d 469 | 2d 470 | 3d 471 | 2d 472 | 3d 473 | 2d 474 | 3d 475 | 2d 476 | 3d 477 | 2d 478 | 3d 479 | 2d 480 | 3d 481 | 2d 482 | 3d 483 | 2d 484 | 3d 485 | 2d 486 | 3d 487 | 2d 488 | 3d 489 | 2d 490 | 3d 491 | 2d 492 | 3d 493 | 2d 494 | 3d 495 | 2d 496 | 3d 497 | 2d 498 | 3d 499 | 2d 500 | 3d 501 | 2d 502 | 3d 503 | 2d 504 | 3d 505 | 2d 506 | 3d 507 | 2d 508 | 3d 509 | 2d 510 | 3d 511 | 2d 512 | 3d 513 | 2d 514 | 3d 515 | 2d 516 | 3d 517 | 2d 518 | 3d 519 | 0a 520 | 0a 521 | 20 522 | 20 523 | 20 524 | 20 525 | 20 526 | 20 527 | 20 528 | 20 529 | 41 530 | 6e 531 | 6f 532 | 74 533 | 68 534 | 65 535 | 72 536 | 20 537 | 6f 538 | 6e 539 | 65 540 | 20 541 | 67 542 | 6f 543 | 74 544 | 20 545 | 63 546 | 61 547 | 75 548 | 67 549 | 68 550 | 74 551 | 20 552 | 74 553 | 6f 554 | 64 555 | 61 556 | 79 557 | 2c 558 | 20 559 | 69 560 | 74 561 | 27 562 | 73 563 | 20 564 | 61 565 | 6c 566 | 6c 567 | 20 568 | 6f 569 | 76 570 | 65 571 | 72 572 | 20 573 | 74 574 | 68 575 | 65 576 | 20 577 | 70 578 | 61 579 | 70 580 | 65 581 | 72 582 | 73 583 | 2e 584 | 20 585 | 20 586 | 22 587 | 54 588 | 65 589 | 65 590 | 6e 591 | 61 592 | 67 593 | 65 594 | 72 595 | 0a 596 | 41 597 | 72 598 | 72 599 | 65 600 | 73 601 | 74 602 | 65 603 | 64 604 | 20 605 | 69 606 | 6e 607 | 20 608 | 43 609 | 6f 610 | 6d 611 | 70 612 | 75 613 | 74 614 | 65 615 | 72 616 | 20 617 | 43 618 | 72 619 | 69 620 | 6d 621 | 65 622 | 20 623 | 53 624 | 63 625 | 61 626 | 6e 627 | 64 628 | 61 629 | 6c 630 | 22 631 | 2c 632 | 20 633 | 22 634 | 48 635 | 61 636 | 63 637 | 6b 638 | 65 639 | 72 640 | 20 641 | 41 642 | 72 643 | 72 644 | 65 645 | 73 646 | 74 647 | 65 648 | 64 649 | 20 650 | 61 651 | 66 652 | 74 653 | 65 654 | 72 655 | 20 656 | 42 657 | 61 658 | 6e 659 | 6b 660 | 20 661 | 54 662 | 61 663 | 6d 664 | 70 665 | 65 666 | 72 667 | 69 668 | 6e 669 | 67 670 | 22 671 | 2e 672 | 2e 673 | 2e 674 | 0a 675 | 20 676 | 20 677 | 20 678 | 20 679 | 20 680 | 20 681 | 20 682 | 20 683 | 44 684 | 61 685 | 6d 686 | 6e 687 | 20 688 | 6b 689 | 69 690 | 64 691 | 73 692 | 2e 693 | 20 694 | 20 695 | 54 696 | 68 697 | 65 698 | 79 699 | 27 700 | 72 701 | 65 702 | 20 703 | 61 704 | 6c 705 | 6c 706 | 20 707 | 61 708 | 6c 709 | 69 710 | 6b 711 | 65 712 | 2e 713 | 0a 714 | 0a 715 | 20 716 | 20 717 | 20 718 | 20 719 | 20 720 | 20 721 | 20 722 | 20 723 | 42 724 | 75 725 | 74 726 | 20 727 | 64 728 | 4c 729 | 64 730 | 20 731 | 79 732 | 6f 733 | 75 734 | 2c 735 | 20 736 | 69 737 | 6e 738 | 20 739 | 79 740 | 6f 741 | 75 742 | 72 743 | 20 744 | 74 745 | 68 746 | 72 747 | 65 748 | 65 749 | 2d 750 | 70 751 | 69 752 | 65 753 | 63 754 | 65 755 | 20 756 | 70 757 | 73 758 | 79 759 | 63 760 | 68 761 | 6f 762 | 6c 763 | 6f 764 | 67 765 | 79 766 | 20 767 | 61 768 | 6e 769 | 64 770 | 20 771 | 31 772 | 39 773 | 35 774 | 30 775 | 27 776 | 73 777 | 20 778 | 74 779 | 65 780 | 63 781 | 68 782 | 6e 783 | 6f 784 | 62 785 | 72 786 | 61 787 | 69 788 | 6e 789 | 2c 790 | 0a 791 | 65 792 | 76 793 | 65 794 | 72 795 | 20 796 | 74 797 | 61 798 | 6b 799 | 65 800 | 20 801 | 61 802 | 20 803 | 6c 804 | 6f 805 | 6f 806 | 6b 807 | 20 808 | 62 809 | 65 810 | 68 811 | 69 812 | 6e 813 | 64 814 | 20 815 | 74 816 | 68 817 | 65 818 | 20 819 | 65 820 | 79 821 | 65 822 | 73 823 | 20 824 | 6f 825 | 66 826 | 20 827 | 74 828 | 68 829 | 65 830 | 20 831 | 68 832 | 61 833 | 63 834 | 6b 835 | 65 836 | 72 837 | 3f 838 | 20 839 | 20 840 | 44 841 | 69 842 | 64 843 | 20 844 | 79 845 | 6f 846 | 75 847 | 20 848 | 65 849 | 76 850 | 65 851 | 72 852 | 20 853 | 77 854 | 6f 855 | 6e 856 | 64 857 | 65 858 | 72 859 | 20 860 | 77 861 | 68 862 | 61 863 | 74 864 | 0a 865 | 6d 866 | 61 867 | 64 868 | 65 869 | 20 870 | 68 871 | 69 872 | 6d 873 | 20 874 | 74 875 | 69 876 | 63 877 | 6b 878 | 2c 879 | 20 880 | 77 881 | 68 882 | 61 883 | 74 884 | 20 885 | 66 886 | 6f 887 | 72 888 | 63 889 | 65 890 | 73 891 | 20 892 | 73 893 | 68 894 | 61 895 | 70 896 | 65 897 | 64 898 | 20 899 | 68 900 | 69 901 | 6d 902 | 2c 903 | 20 904 | 77 905 | 68 906 | 61 907 | 74 908 | 20 909 | 6d 910 | 61 911 | 79 912 | 20 913 | 68 914 | 61 915 | 76 916 | 65 917 | 20 918 | 6d 919 | 6f 920 | 6c 921 | 64 922 | 65 923 | 64 924 | 20 925 | 68 926 | 69 927 | 6d 928 | 3f 929 | 0a 930 | 20 931 | 20 932 | 20 933 | 20 934 | 20 935 | 20 936 | 20 937 | 20 938 | 49 939 | 20 940 | 61 941 | 6d 942 | 20 943 | 61 944 | 20 945 | 68 946 | 61 947 | 63 948 | 6b 949 | 65 950 | 72 951 | 2c 952 | 20 953 | 65 954 | 6e 955 | 74 956 | 65 957 | 72 958 | 20 959 | 6d 960 | 79 961 | 20 962 | 77 963 | 6f 964 | 72 965 | 6c 966 | 64 967 | 2e 968 | 2e 969 | 2e 970 | 0a 971 | 20 972 | 20 973 | 20 974 | 20 975 | 20 976 | 20 977 | 20 978 | 20 979 | 4d 980 | 69 981 | 6e 982 | 65 983 | 20 984 | 69 985 | 73 986 | 20 987 | 61 988 | 20 989 | 77 990 | 6f 991 | 72 992 | 6c 993 | 64 994 | 20 995 | 74 996 | 68 997 | 61 998 | 74 999 | 20 1000 | 62 1001 | 65 1002 | 67 1003 | 69 1004 | 6e 1005 | 73 1006 | 20 1007 | 77 1008 | 69 1009 | 74 1010 | 68 1011 | 20 1012 | 73 1013 | 63 1014 | 68 1015 | 6f 1016 | 6f 1017 | 6c 1018 | 2e 1019 | 2e 1020 | 2e 1021 | 20 1022 | 49 1023 | 27 1024 | 6d 1025 | 20 1026 | 73 1027 | 6d 1028 | 61 1029 | 72 1030 | 74 1031 | 65 1032 | 72 1033 | 20 1034 | 74 1035 | 68 1036 | 61 1037 | 6e 1038 | 20 1039 | 6d 1040 | 6f 1041 | 73 1042 | 74 1043 | 20 1044 | 6f 1045 | 66 1046 | 0a 1047 | 74 1048 | 68 1049 | 65 1050 | 20 1051 | 6f 1052 | 74 1053 | 68 1054 | 65 1055 | 72 1056 | 20 1057 | 6b 1058 | 69 1059 | 64 1060 | 73 1061 | 2c 1062 | 20 1063 | 74 1064 | 68 1065 | 69 1066 | 73 1067 | 20 1068 | 63 1069 | 72 1070 | 61 1071 | 70 1072 | 20 1073 | 74 1074 | 68 1075 | 65 1076 | 79 1077 | 20 1078 | 74 1079 | 65 1080 | 61 1081 | 63 1082 | 68 1083 | 20 1084 | 75 1085 | 73 1086 | 20 1087 | 62 1088 | 6f 1089 | 72 1090 | 65 1091 | 73 1092 | 20 1093 | 6d 1094 | 65 1095 | 2e 1096 | 2e 1097 | 2e 1098 | 0a 1099 | 20 1100 | 20 1101 | 20 1102 | 20 1103 | 20 1104 | 20 1105 | 20 1106 | 20 1107 | 44 1108 | 61 1109 | 6d 1110 | 6e 1111 | 20 1112 | 75 1113 | 6e 1114 | 64 1115 | 65 1116 | 72 1117 | 61 1118 | 63 1119 | 68 1120 | 69 1121 | 41 1122 | 76 1123 | 65 1124 | 72 1125 | 2e 1126 | 20 1127 | 20 1128 | 54 1129 | 68 1130 | 65 1131 | 79 1132 | 27 1133 | 72 1134 | 65 1135 | 20 1136 | 61 1137 | 6c 1138 | 6c 1139 | 20 1140 | 61 1141 | 6c 1142 | 47 1143 | 6b 1144 | 65 1145 | 2e 1146 | 0a 1147 | 0a 1148 | 20 1149 | 20 1150 | 20 1151 | 20 1152 | 20 1153 | 20 1154 | 20 1155 | 20 1156 | 49 1157 | 27 1158 | 6d 1159 | 20 1160 | 69 1161 | 6e 1162 | 20 1163 | 6a 1164 | 75 1165 | 6e 1166 | 69 1167 | 6f 1168 | 72 1169 | 20 1170 | 68 1171 | 69 1172 | 67 1173 | 68 1174 | 20 1175 | 6f 1176 | 72 1177 | 20 1178 | 68 1179 | 69 1180 | 67 1181 | 68 1182 | 20 1183 | 73 1184 | 63 1185 | 68 1186 | 6f 1187 | 6f 1188 | 6c 1189 | 2e 1190 | 20 1191 | 20 1192 | 49 1193 | 27 1194 | 76 1195 | 65 1196 | 20 1197 | 6c 1198 | 69 1199 | 73 1200 | 74 1201 | 65 1202 | 6e 1203 | 65 1204 | 64 1205 | 20 1206 | 74 1207 | 6f 1208 | 20 1209 | 74 1210 | 65 1211 | 61 1212 | 63 1213 | 68 1214 | 65 1215 | 72 1216 | 73 1217 | 20 1218 | 65 1219 | 78 1220 | 70 1221 | 6c 1222 | 61 1223 | 69 1224 | 6e 1225 | 0a 1226 | 66 1227 | 6f 1228 | 72 1229 | 20 1230 | 74 1231 | 68 1232 | 65 1233 | 20 1234 | 66 1235 | 69 1236 | 66 1237 | 74 1238 | 65 1239 | 65 1240 | 6e 1241 | 74 1242 | 68 1243 | 20 1244 | 74 1245 | 69 1246 | 6d 1247 | 65 1248 | 20 1249 | 68 1250 | 6f 1251 | 77 1252 | 20 1253 | 74 1254 | 6f 1255 | 20 1256 | 72 1257 | 65 1258 | 64 1259 | 75 1260 | 63 1261 | 65 1262 | 2d 1263 | 61 1264 | 20 1265 | 66 1266 | 72 1267 | 61 1268 | 63 1269 | 74 1270 | 69 1271 | 6f 1272 | 6e 1273 | 2e 1274 | 20 1275 | 20 1276 | 49 1277 | 20 1278 | 75 1279 | 6e 1280 | 64 1281 | 65 1282 | 72 1283 | 73 1284 | 74 1285 | 61 1286 | 6e 1287 | 64 1288 | 20 1289 | 69 1290 | 74 1291 | 2e 1292 | 20 1293 | 20 1294 | 22 1295 | 4e 1296 | 6f 1297 | 2c 1298 | 20 1299 | 4d 1300 | 73 1301 | 2e 1302 | 0a 1303 | 53 1304 | 6d 1305 | 69 1306 | 74 1307 | 68 1308 | 4e 1309 | 20 1310 | 49 1311 | 20 1312 | 64 1313 | 69 1314 | 64 1315 | 6e 1316 | 27 1317 | 74 1318 | 20 1319 | 73 1320 | 68 1321 | 6f 1322 | 77 1323 | 20 1324 | 6d 1325 | 79 1326 | 20 1327 | 77 1328 | 6f 1329 | 72 1330 | 6b 1331 | 2e 1332 | 20 1333 | 20 1334 | 49 1335 | 20 1336 | 64 1337 | 69 1338 | 64 1339 | 20 1340 | 69 1341 | 74 1342 | 20 1343 | 69 1344 | 6e 1345 | 6f 1346 | 6d 1347 | 79 1348 | 20 1349 | 68 1350 | 65 1351 | 61 1352 | 64 1353 | 2e 1354 | 2e 1355 | 2e 1356 | 22 1357 | 0a 1358 | 74 1359 | 20 1360 | 20 1361 | 20 1362 | 20 1363 | 20 1364 | 20 1365 | 20 1366 | 44 1367 | 61 1368 | 6d 1369 | 6e 1370 | 20 1371 | 6b 1372 | 69 1373 | 64 1374 | 2e 1375 | 20 1376 | 20 1377 | 50 1378 | 72 1379 | 6f 1380 | 62 1381 | 61 1382 | 62 1383 | 6c 1384 | 79 1385 | 20 1386 | 63 1387 | 6f 1388 | 70 1389 | 69 1390 | 65 1391 | 64 1392 | 20 1393 | 69 1394 | 74 1395 | 2e 1396 | 20 1397 | 20 1398 | 54 1399 | 68 1400 | 65 1401 | 79 1402 | 27 1403 | 72 1404 | 65 1405 | 20 1406 | 61 1407 | 6c 1408 | 6c 1409 | 20 1410 | 61 1411 | 6c 1412 | 69 1413 | 6b 1414 | 65 1415 | 2e 1416 | 0a 1417 | 0a 1418 | 20 1419 | 20 1420 | 20 1421 | 20 1422 | 20 1423 | 20 1424 | 20 1425 | 20 1426 | 49 1427 | 20 1428 | 6d 1429 | 61 1430 | 64 1431 | 65 1432 | 20 1433 | 61 1434 | 68 1435 | 64 1436 | 69 1437 | 73 1438 | 63 1439 | 6f 1440 | 76 1441 | 65 1442 | 72 1443 | 79 1444 | 20 1445 | 74 1446 | 6f 1447 | 64 1448 | 61 1449 | 79 1450 | 2e 1451 | 20 1452 | 20 1453 | 49 1454 | 20 1455 | 66 1456 | 6f 1457 | 75 1458 | 6e 1459 | 64 1460 | 20 1461 | 61 1462 | 20 1463 | 63 1464 | 6f 1465 | 6d 1466 | 70 1467 | 75 1468 | 74 1469 | 65 1470 | 72 1471 | 2e 1472 | 20 1473 | 20 1474 | 57 1475 | 61 1476 | 69 1477 | 74 1478 | 20 1479 | 61 1480 | 20 1481 | 73 1482 | 65 1483 | 63 1484 | 6f 1485 | 6e 1486 | 64 1487 | 2c 1488 | 20 1489 | 74 1490 | 68 1491 | 69 1492 | 73 1493 | 20 1494 | 69 1495 | 73 1496 | 0a 1497 | 63 1498 | 6f 1499 | 6f 1500 | 6c 1501 | 2e 1502 | 20 1503 | 20 1504 | 49 1505 | 74 1506 | 20 1507 | 64 1508 | 6f 1509 | 65 1510 | 73 1511 | 20 1512 | 77 1513 | 68 1514 | 61 1515 | 74 1516 | 20 1517 | 49 1518 | 20 1519 | 77 1520 | 61 1521 | 6e 1522 | 74 1523 | 20 1524 | 69 1525 | 74 1526 | 20 1527 | 74 1528 | 6f 1529 | 2e 1530 | 20 1531 | 20 1532 | 49 1533 | 66 1534 | 20 1535 | 69 1536 | 74 1537 | 20 1538 | 6d 1539 | 61 1540 | 6b 1541 | 65 1542 | 73 1543 | 20 1544 | 61 1545 | 20 1546 | 6d 1547 | 69 1548 | 73 1549 | 74 1550 | 61 1551 | 6b 1552 | 65 1553 | 2c 1554 | 20 1555 | 69 1556 | 74 1557 | 27 1558 | 73 1559 | 20 1560 | 62 1561 | 65 1562 | 63 1563 | 61 1564 | 75 1565 | 73 1566 | 65 1567 | 20 1568 | 49 1569 | 0a 1570 | 73 1571 | 63 1572 | 72 1573 | 65 1574 | 77 1575 | 65 1576 | 64 1577 | 20 1578 | 69 1579 | 74 1580 | 20 1581 | 75 1582 | 70 1583 | 2e 1584 | 20 1585 | 20 1586 | 4e 1587 | 6f 1588 | 74 1589 | 20 1590 | 62 1591 | 65 1592 | 63 1593 | 61 1594 | 75 1595 | 73 1596 | 65 1597 | 20 1598 | 69 1599 | 74 1600 | 20 1601 | 64 1602 | 6f 1603 | 65 1604 | 73 1605 | 6e 1606 | 27 1607 | 74 1608 | 20 1609 | 6c 1610 | 69 1611 | 6b 1612 | 65 1613 | 20 1614 | 6d 1615 | 65 1616 | 2e 1617 | 2e 1618 | 2e 1619 | 0a 1620 | 20 1621 | 20 1622 | 20 1623 | 20 1624 | 20 1625 | 20 1626 | 20 1627 | 20 1628 | 20 1629 | 20 1630 | 20 1631 | 20 1632 | 20 1633 | 20 1634 | 20 1635 | 20 1636 | 4f 1637 | 72 1638 | 20 1639 | 66 1640 | 65 1641 | 65 1642 | 6c 1643 | 73 1644 | 20 1645 | 74 1646 | 68 1647 | 72 1648 | 65 1649 | 61 1650 | 74 1651 | 65 1652 | 6e 1653 | 65 1654 | 64 1655 | 20 1656 | 62 1657 | 79 1658 | 20 1659 | 6d 1660 | 65 1661 | 2e 1662 | 2e 1663 | 2e 1664 | 0a 1665 | 20 1666 | 20 1667 | 20 1668 | 20 1669 | 20 1670 | 20 1671 | 20 1672 | 20 1673 | 20 1674 | 20 1675 | 20 1676 | 20 1677 | 20 1678 | 20 1679 | 20 1680 | 20 1681 | 4f 1682 | 72 1683 | 20 1684 | 74 1685 | 68 1686 | 69 1687 | 6e 1688 | 6b 1689 | 73 1690 | 20 1691 | 49 1692 | 27 1693 | 6d 1694 | 20 1695 | 61 1696 | 20 1697 | 73 1698 | 6d 1699 | 61 1700 | 72 1701 | 74 1702 | 20 1703 | 61 1704 | 73 1705 | 73 1706 | 2e 1707 | 2e 1708 | 2e 1709 | 0a 1710 | 20 1711 | 20 1712 | 20 1713 | 20 1714 | 20 1715 | 20 1716 | 20 1717 | 20 1718 | 20 1719 | 20 1720 | 20 1721 | 20 1722 | 20 1723 | 20 1724 | 20 1725 | 20 1726 | 4f 1727 | 72 1728 | 20 1729 | 64 1730 | 6f 1731 | 65 1732 | 73 1733 | 6e 1734 | 27 1735 | 74 1736 | 20 1737 | 6c 1738 | 69 1739 | 6b 1740 | 65 1741 | 20 1742 | 74 1743 | 65 1744 | 61 1745 | 63 1746 | 68 1747 | 69 1748 | 6e 1749 | 67 1750 | 20 1751 | 61 1752 | 6e 1753 | 64 1754 | 20 1755 | 73 1756 | 68 1757 | 6f 1758 | 75 1759 | 6c 1760 | 64 1761 | 6e 1762 | 27 1763 | 74 1764 | 20 1765 | 62 1766 | 65 1767 | 20 1768 | 68 1769 | 65 1770 | 72 1771 | 65 1772 | 2e 1773 | 2e 1774 | 2e 1775 | 0a 1776 | 69 1777 | 20 1778 | 20 1779 | 20 1780 | 20 1781 | 20 1782 | 20 1783 | 20 1784 | 44 1785 | 61 1786 | 6d 1787 | 6e 1788 | 20 1789 | 6b 1790 | 69 1791 | 64 1792 | 2e 1793 | 20 1794 | 6e 1795 | 41 1796 | 6c 1797 | 6c 1798 | 20 1799 | 68 1800 | 65 1801 | 20 1802 | 64 1803 | 6f 1804 | 65 1805 | 73 1806 | 20 1807 | 69 1808 | 73 1809 | 20 1810 | 70 1811 | 6c 1812 | 61 1813 | 79 1814 | 20 1815 | 67 1816 | 61 1817 | 6d 1818 | 65 1819 | 73 1820 | 2e 1821 | 20 1822 | 20 1823 | 54 1824 | 68 1825 | 65 1826 | 79 1827 | 27 1828 | 72 1829 | 65 1830 | 20 1831 | 61 1832 | 6c 1833 | 6c 1834 | 20 1835 | 61 1836 | 6c 1837 | 69 1838 | 67 1839 | 65 1840 | 2e 1841 | 0a 1842 | 0a 1843 | 20 1844 | 20 1845 | 20 1846 | 20 1847 | 20 1848 | 20 1849 | 20 1850 | 20 1851 | 41 1852 | 6e 1853 | 64 1854 | 20 1855 | 49 1856 | 68 1857 | 65 1858 | 6e 1859 | 20 1860 | 69 1861 | 74 1862 | 20 1863 | 68 1864 | 61 1865 | 70 1866 | 70 1867 | 65 1868 | 6e 1869 | 65 1870 | 64 1871 | 2e 1872 | 2e 1873 | 2e 1874 | 20 1875 | 61 1876 | 20 1877 | 64 1878 | 6f 1879 | 6f 1880 | 72 1881 | 20 1882 | 6f 1883 | 70 1884 | 65 1885 | 6e 1886 | 65 1887 | 64 1888 | 20 1889 | 74 1890 | 6f 1891 | 20 1892 | 61 1893 | 20 1894 | 77 1895 | 6f 1896 | 72 1897 | 6c 1898 | 64 1899 | 2e 1900 | 2e 1901 | 2e 1902 | 20 1903 | 72 1904 | 75 1905 | 73 1906 | 73 1907 | 69 1908 | 6e 1909 | 67 1910 | 20 1911 | 74 1912 | 68 1913 | 72 1914 | 6f 1915 | 75 1916 | 67 1917 | 68 1918 | 0a 1919 | 74 1920 | 68 1921 | 65 1922 | 20 1923 | 70 1924 | 68 1925 | 6f 1926 | 6e 1927 | 65 1928 | 20 1929 | 6c 1930 | 69 1931 | 6e 1932 | 65 1933 | 20 1934 | 6c 1935 | 69 1936 | 6b 1937 | 65 1938 | 20 1939 | 68 1940 | 65 1941 | 72 1942 | 6f 1943 | 69 1944 | 6e 1945 | 20 1946 | 74 1947 | 68 1948 | 72 1949 | 6f 1950 | 75 1951 | 67 1952 | 68 1953 | 20 1954 | 61 1955 | 6e 1956 | 20 1957 | 61 1958 | 64 1959 | 64 1960 | 69 1961 | 63 1962 | 74 1963 | 27 1964 | 73 1965 | 20 1966 | 76 1967 | 65 1968 | 69 1969 | 6e 1970 | 73 1971 | 2c 1972 | 20 1973 | 61 1974 | 6e 1975 | 20 1976 | 65 1977 | 6c 1978 | 65 1979 | 63 1980 | 74 1981 | 72 1982 | 6f 1983 | 6e 1984 | 69 1985 | 63 1986 | 20 1987 | 70 1988 | 75 1989 | 6c 1990 | 73 1991 | 65 1992 | 20 1993 | 69 1994 | 73 1995 | 0a 1996 | 73 1997 | 65 1998 | 6e 1999 | 74 2000 | 20 2001 | 6f 2002 | 75 2003 | 74 2004 | 2c 2005 | 20 2006 | 61 2007 | 20 2008 | 72 2009 | 65 2010 | 66 2011 | 75 2012 | 67 2013 | 65 2014 | 20 2015 | 66 2016 | 72 2017 | 6f 2018 | 6d 2019 | 20 2020 | 74 2021 | 68 2022 | 65 2023 | 20 2024 | 64 2025 | 61 2026 | 79 2027 | 2d 2028 | 74 2029 | 6f 2030 | 2d 2031 | 64 2032 | 61 2033 | 79 2034 | 20 2035 | 69 2036 | 6e 2037 | 63 2038 | 6f 2039 | 6d 2040 | 70 2041 | 65 2042 | 74 2043 | 65 2044 | 6e 2045 | 63 2046 | 69 2047 | 65 2048 | 73 2049 | 20 2050 | 69 2051 | 45 2052 | 20 2053 | 73 2054 | 6f 2055 | 75 2056 | 67 2057 | 68 2058 | 74 2059 | 2e 2060 | 2e 2061 | 2e 2062 | 20 2063 | 61 2064 | 20 2065 | 62 2066 | 6f 2067 | 61 2068 | 72 2069 | 64 2070 | 20 2071 | 69 2072 | 73 2073 | 0a 2074 | 66 2075 | 6f 2076 | 75 2077 | 6e 2078 | 64 2079 | 2e 2080 | 0a 2081 | 20 2082 | 20 2083 | 20 2084 | 20 2085 | 20 2086 | 20 2087 | 20 2088 | 20 2089 | 22 2090 | 54 2091 | 68 2092 | 69 2093 | 73 2094 | 20 2095 | 69 2096 | 73 2097 | 20 2098 | 69 2099 | 74 2100 | 2e 2101 | 2e 2102 | 2e 2103 | 20 2104 | 74 2105 | 68 2106 | 69 2107 | 73 2108 | 20 2109 | 69 2110 | 73 2111 | 20 2112 | 77 2113 | 68 2114 | 65 2115 | 72 2116 | 65 2117 | 20 2118 | 49 2119 | 20 2120 | 76 2121 | 65 2122 | 6c 2123 | 6f 2124 | 6e 2125 | 67 2126 | 2e 2127 | 2e 2128 | 2e 2129 | 22 2130 | 0a 2131 | 20 2132 | 20 2133 | 20 2134 | 20 2135 | 20 2136 | 20 2137 | 20 2138 | 20 2139 | 49 2140 | 20 2141 | 6b 2142 | 6e 2143 | 6f 2144 | 77 2145 | 20 2146 | 65 2147 | 76 2148 | 65 2149 | 72 2150 | 79 2151 | 6f 2152 | 6e 2153 | 65 2154 | 20 2155 | 68 2156 | 65 2157 | 72 2158 | 65 2159 | 2e 2160 | 2e 2161 | 2e 2162 | 20 2163 | 65 2164 | 76 2165 | 65 2166 | 6e 2167 | 20 2168 | 69 2169 | 66 2170 | 20 2171 | 49 2172 | 27 2173 | 76 2174 | 65 2175 | 20 2176 | 6e 2177 | 65 2178 | 76 2179 | 65 2180 | 72 2181 | 20 2182 | 6d 2183 | 65 2184 | 74 2185 | 20 2186 | 74 2187 | 68 2188 | 65 2189 | 6d 2190 | 2c 2191 | 20 2192 | 6e 2193 | 65 2194 | 76 2195 | 65 2196 | 72 2197 | 20 2198 | 74 2199 | 61 2200 | 6c 2201 | 6b 2202 | 65 2203 | 64 2204 | 20 2205 | 74 2206 | 6f 2207 | 0a 2208 | 74 2209 | 68 2210 | 65 2211 | 6d 2212 | 2c 2213 | 20 2214 | 6d 2215 | 61 2216 | 79 2217 | 20 2218 | 6e 2219 | 65 2220 | 76 2221 | 65 2222 | 72 2223 | 20 2224 | 68 2225 | 65 2226 | 61 2227 | 72 2228 | 20 2229 | 66 2230 | 72 2231 | 65 2232 | 6d 2233 | 20 2234 | 74 2235 | 68 2236 | 65 2237 | 6d 2238 | 20 2239 | 61 2240 | 67 2241 | 61 2242 | 69 2243 | 6e 2244 | 2e 2245 | 2e 2246 | 2e 2247 | 20 2248 | 49 2249 | 20 2250 | 6b 2251 | 6e 2252 | 6f 2253 | 77 2254 | 20 2255 | 79 2256 | 6f 2257 | 75 2258 | 20 2259 | 61 2260 | 6c 2261 | 6c 2262 | 2e 2263 | 2e 2264 | 2e 2265 | 0a 2266 | 20 2267 | 20 2268 | 20 2269 | 20 2270 | 20 2271 | 20 2272 | 20 2273 | 20 2274 | 44 2275 | 61 2276 | 6d 2277 | 6e 2278 | 20 2279 | 6b 2280 | 69 2281 | 64 2282 | 2e 2283 | 20 2284 | 20 2285 | 54 2286 | 79 2287 | 69 2288 | 6e 2289 | 67 2290 | 20 2291 | 75 2292 | 70 2293 | 20 2294 | 74 2295 | 68 2296 | 65 2297 | 20 2298 | 70 2299 | 68 2300 | 6f 2301 | 6e 2302 | 65 2303 | 20 2304 | 6c 2305 | 69 2306 | 6e 2307 | 65 2308 | 20 2309 | 61 2310 | 67 2311 | 61 2312 | 69 2313 | 6e 2314 | 2e 2315 | 20 2316 | 20 2317 | 54 2318 | 68 2319 | 65 2320 | 79 2321 | 27 2322 | 72 2323 | 65 2324 | 20 2325 | 61 2326 | 6c 2327 | 6c 2328 | 20 2329 | 61 2330 | 6c 2331 | 69 2332 | 6b 2333 | 65 2334 | 2e 2335 | 2e 2336 | 2e 2337 | 0a 2338 | 0a 2339 | 20 2340 | 20 2341 | 20 2342 | 20 2343 | 20 2344 | 20 2345 | 20 2346 | 20 2347 | 59 2348 | 6f 2349 | 75 2350 | 20 2351 | 62 2352 | 65 2353 | 74 2354 | 20 2355 | 79 2356 | 6f 2357 | 75 2358 | 72 2359 | 20 2360 | 61 2361 | 73 2362 | 73 2363 | 20 2364 | 77 2365 | 65 2366 | 27 2367 | 72 2368 | 65 2369 | 20 2370 | 61 2371 | 6c 2372 | 6c 2373 | 20 2374 | 61 2375 | 6c 2376 | 69 2377 | 6b 2378 | 65 2379 | 2e 2380 | 2e 2381 | 2e 2382 | 20 2383 | 77 2384 | 65 2385 | 27 2386 | 76 2387 | 65 2388 | 20 2389 | 62 2390 | 65 2391 | 65 2392 | 6e 2393 | 20 2394 | 73 2395 | 70 2396 | 6f 2397 | 6f 2398 | 6e 2399 | 2d 2400 | 66 2401 | 65 2402 | 64 2403 | 20 2404 | 62 2405 | 61 2406 | 62 2407 | 79 2408 | 20 2409 | 66 2410 | 6f 2411 | 6f 2412 | 64 2413 | 20 2414 | 61 2415 | 74 2416 | 0a 2417 | 73 2418 | 63 2419 | 68 2420 | 6f 2421 | 6f 2422 | 6c 2423 | 20 2424 | 77 2425 | 68 2426 | 65 2427 | 6e 2428 | 20 2429 | 77 2430 | 65 2431 | 20 2432 | 72 2433 | 75 2434 | 6e 2435 | 67 2436 | 65 2437 | 72 2438 | 65 2439 | 64 2440 | 20 2441 | 66 2442 | 6f 2443 | 72 2444 | 20 2445 | 73 2446 | 74 2447 | 65 2448 | 61 2449 | 6b 2450 | 2e 2451 | 2e 2452 | 2e 2453 | 20 2454 | 74 2455 | 68 2456 | 65 2457 | 20 2458 | 62 2459 | 69 2460 | 74 2461 | 73 2462 | 20 2463 | 6f 2464 | 66 2465 | 20 2466 | 6d 2467 | 65 2468 | 61 2469 | 74 2470 | 20 2471 | 74 2472 | 68 2473 | 61 2474 | 74 2475 | 20 2476 | 57 2477 | 6f 2478 | 75 2479 | 20 2480 | 64 2481 | 69 2482 | 64 2483 | 20 2484 | 6c 2485 | 65 2486 | 74 2487 | 20 2488 | 73 2489 | 6c 2490 | 69 2491 | 70 2492 | 0a 2493 | 74 2494 | 68 2495 | 72 2496 | 6f 2497 | 75 2498 | 67 2499 | 68 2500 | 20 2501 | 77 2502 | 65 2503 | 72 2504 | 65 2505 | 20 2506 | 70 2507 | 72 2508 | 65 2509 | 2d 2510 | 63 2511 | 68 2512 | 68 2513 | 77 2514 | 65 2515 | 64 2516 | 20 2517 | 61 2518 | 6e 2519 | 64 2520 | 20 2521 | 74 2522 | 61 2523 | 73 2524 | 74 2525 | 65 2526 | 6c 2527 | 65 2528 | 73 2529 | 73 2530 | 2e 2531 | 20 2532 | 20 2533 | 57 2534 | 65 2535 | 27 2536 | 76 2537 | 65 2538 | 20 2539 | 62 2540 | 65 2541 | 65 2542 | 6e 2543 | 20 2544 | 64 2545 | 6f 2546 | 6d 2547 | 69 2548 | 6e 2549 | 61 2550 | 74 2551 | 65 2552 | 64 2553 | 20 2554 | 62 2555 | 79 2556 | 20 2557 | 73 2558 | 61 2559 | 64 2560 | 69 2561 | 73 2562 | 74 2563 | 73 2564 | 2c 2565 | 20 2566 | 6f 2567 | 72 2568 | 0a 2569 | 69 2570 | 67 2571 | 6e 2572 | 6f 2573 | 72 2574 | 65 2575 | 64 2576 | 20 2577 | 62 2578 | 79 2579 | 20 2580 | 74 2581 | 68 2582 | 65 2583 | 20 2584 | 61 2585 | 70 2586 | 61 2587 | 74 2588 | 68 2589 | 65 2590 | 74 2591 | 69 2592 | 63 2593 | 2e 2594 | 20 2595 | 20 2596 | 54 2597 | 68 2598 | 65 2599 | 20 2600 | 66 2601 | 65 2602 | 77 2603 | 20 2604 | 74 2605 | 68 2606 | 61 2607 | 74 2608 | 20 2609 | 68 2610 | 61 2611 | 64 2612 | 20 2613 | 73 2614 | 6f 2615 | 6d 2616 | 65 2617 | 74 2618 | 68 2619 | 69 2620 | 6e 2621 | 67 2622 | 20 2623 | 74 2624 | 6f 2625 | 20 2626 | 74 2627 | 65 2628 | 61 2629 | 63 2630 | 68 2631 | 20 2632 | 66 2633 | 6f 2634 | 75 2635 | 6e 2636 | 64 2637 | 20 2638 | 75 2639 | 73 2640 | 20 2641 | 77 2642 | 69 2643 | 6c 2644 | 6c 2645 | 2d 2646 | 0a 2647 | 69 2648 | 6e 2649 | 67 2650 | 20 2651 | 70 2652 | 75 2653 | 70 2654 | 69 2655 | 6c 2656 | 73 2657 | 2c 2658 | 20 2659 | 62 2660 | 75 2661 | 74 2662 | 20 2663 | 74 2664 | 68 2665 | 6f 2666 | 73 2667 | 65 2668 | 20 2669 | 66 2670 | 65 2671 | 77 2672 | 20 2673 | 61 2674 | 72 2675 | 65 2676 | 20 2677 | 6c 2678 | 69 2679 | 6b 2680 | 65 2681 | 20 2682 | 64 2683 | 72 2684 | 6f 2685 | 70 2686 | 73 2687 | 20 2688 | 6f 2689 | 66 2690 | 20 2691 | 77 2692 | 61 2693 | 74 2694 | 65 2695 | 72 2696 | 20 2697 | 69 2698 | 6e 2699 | 20 2700 | 74 2701 | 68 2702 | 65 2703 | 20 2704 | 64 2705 | 65 2706 | 73 2707 | 65 2708 | 72 2709 | 74 2710 | 2e 2711 | 0a 2712 | 0a 2713 | 20 2714 | 20 2715 | 20 2716 | 20 2717 | 20 2718 | 20 2719 | 20 2720 | 20 2721 | 54 2722 | 68 2723 | 69 2724 | 73 2725 | 20 2726 | 69 2727 | 73 2728 | 20 2729 | 6f 2730 | 75 2731 | 72 2732 | 20 2733 | 77 2734 | 6f 2735 | 72 2736 | 6c 2737 | 64 2738 | 20 2739 | 6e 2740 | 6f 2741 | 77 2742 | 2e 2743 | 2e 2744 | 2e 2745 | 20 2746 | 74 2747 | 68 2748 | 65 2749 | 20 2750 | 77 2751 | 6f 2752 | 72 2753 | 6c 2754 | 64 2755 | 20 2756 | 6f 2757 | 66 2758 | 20 2759 | 74 2760 | 68 2761 | 65 2762 | 20 2763 | 65 2764 | 6c 2765 | 65 2766 | 63 2767 | 74 2768 | 72 2769 | 6f 2770 | 6e 2771 | 20 2772 | 61 2773 | 6e 2774 | 64 2775 | 20 2776 | 74 2777 | 68 2778 | 65 2779 | 20 2780 | 73 2781 | 77 2782 | 69 2783 | 74 2784 | 63 2785 | 68 2786 | 2c 2787 | 20 2788 | 74 2789 | 68 2790 | 65 2791 | 0a 2792 | 62 2793 | 65 2794 | 61 2795 | 75 2796 | 74 2797 | 79 2798 | 20 2799 | 6f 2800 | 66 2801 | 20 2802 | 74 2803 | 61 2804 | 65 2805 | 20 2806 | 62 2807 | 61 2808 | 75 2809 | 64 2810 | 2e 2811 | 20 2812 | 20 2813 | 57 2814 | 65 2815 | 20 2816 | 6d 2817 | 61 2818 | 6b 2819 | 65 2820 | 20 2821 | 75 2822 | 73 2823 | 65 2824 | 20 2825 | 6f 2826 | 66 2827 | 20 2828 | 61 2829 | 20 2830 | 73 2831 | 65 2832 | 72 2833 | 76 2834 | 69 2835 | 63 2836 | 65 2837 | 20 2838 | 61 2839 | 6c 2840 | 72 2841 | 65 2842 | 61 2843 | 64 2844 | 79 2845 | 20 2846 | 65 2847 | 78 2848 | 69 2849 | 73 2850 | 74 2851 | 69 2852 | 6e 2853 | 67 2854 | 20 2855 | 77 2856 | 69 2857 | 74 2858 | 68 2859 | 6f 2860 | 75 2861 | 74 2862 | 20 2863 | 70 2864 | 61 2865 | 79 2866 | 69 2867 | 6e 2868 | 67 2869 | 0a 2870 | 66 2871 | 6f 2872 | 72 2873 | 20 2874 | 77 2875 | 68 2876 | 61 2877 | 74 2878 | 20 2879 | 63 2880 | 6f 2881 | 75 2882 | 6c 2883 | 64 2884 | 20 2885 | 62 2886 | 65 2887 | 20 2888 | 64 2889 | 69 2890 | 72 2891 | 74 2892 | 2d 2893 | 63 2894 | 68 2895 | 65 2896 | 61 2897 | 70 2898 | 20 2899 | 69 2900 | 66 2901 | 20 2902 | 69 2903 | 74 2904 | 20 2905 | 77 2906 | 61 2907 | 73 2908 | 6e 2909 | 27 2910 | 74 2911 | 20 2912 | 72 2913 | 75 2914 | 6e 2915 | 20 2916 | 62 2917 | 79 2918 | 20 2919 | 70 2920 | 72 2921 | 6f 2922 | 66 2923 | 69 2924 | 74 2925 | 65 2926 | 65 2927 | 72 2928 | 69 2929 | 6e 2930 | 67 2931 | 20 2932 | 67 2933 | 6c 2934 | 75 2935 | 74 2936 | 74 2937 | 6f 2938 | 6e 2939 | 73 2940 | 2c 2941 | 20 2942 | 61 2943 | 6e 2944 | 64 2945 | 0a 2946 | 79 2947 | 6f 2948 | 75 2949 | 20 2950 | 63 2951 | 61 2952 | 6c 2953 | 6c 2954 | 20 2955 | 75 2956 | 73 2957 | 20 2958 | 63 2959 | 72 2960 | 69 2961 | 6d 2962 | 69 2963 | 6e 2964 | 61 2965 | 6c 2966 | 73 2967 | 2e 2968 | 20 2969 | 20 2970 | 57 2971 | 65 2972 | 20 2973 | 65 2974 | 78 2975 | 70 2976 | 6c 2977 | 6f 2978 | 72 2979 | 65 2980 | 2e 2981 | 2e 2982 | 2e 2983 | 20 2984 | 61 2985 | 6e 2986 | 64 2987 | 20 2988 | 79 2989 | 6f 2990 | 75 2991 | 20 2992 | 63 2993 | 61 2994 | 6c 2995 | 6c 2996 | 20 2997 | 75 2998 | 73 2999 | 20 3000 | 63 3001 | 72 3002 | 69 3003 | 6d 3004 | 69 3005 | 6e 3006 | 61 3007 | 6c 3008 | 73 3009 | 2e 3010 | 20 3011 | 20 3012 | 57 3013 | 65 3014 | 20 3015 | 73 3016 | 65 3017 | 65 3018 | 6b 3019 | 0a 3020 | 61 3021 | 66 3022 | 74 3023 | 65 3024 | 72 3025 | 20 3026 | 6b 3027 | 74 3028 | 6f 3029 | 77 3030 | 6c 3031 | 65 3032 | 64 3033 | 67 3034 | 65 3035 | 2e 3036 | 2e 3037 | 2e 3038 | 20 3039 | 61 3040 | 6e 3041 | 64 3042 | 20 3043 | 79 3044 | 6f 3045 | 75 3046 | 20 3047 | 63 3048 | 61 3049 | 6c 3050 | 6c 3051 | 20 3052 | 75 3053 | 73 3054 | 20 3055 | 63 3056 | 72 3057 | 69 3058 | 6d 3059 | 69 3060 | 6e 3061 | 61 3062 | 6c 3063 | 73 3064 | 2e 3065 | 20 3066 | 20 3067 | 57 3068 | 65 3069 | 20 3070 | 65 3071 | 78 3072 | 69 3073 | 73 3074 | 74 3075 | 20 3076 | 77 3077 | 69 3078 | 74 3079 | 68 3080 | 6f 3081 | 75 3082 | 74 3083 | 20 3084 | 73 3085 | 6b 3086 | 69 3087 | 6e 3088 | 20 3089 | 63 3090 | 6f 3091 | 6c 3092 | 6f 3093 | 72 3094 | 2c 3095 | 0a 3096 | 77 3097 | 69 3098 | 74 3099 | 68 3100 | 6f 3101 | 75 3102 | 74 3103 | 20 3104 | 6e 3105 | 61 3106 | 74 3107 | 69 3108 | 6f 3109 | 6e 3110 | 61 3111 | 6c 3112 | 69 3113 | 74 3114 | 79 3115 | 2c 3116 | 20 3117 | 77 3118 | 69 3119 | 74 3120 | 68 3121 | 6f 3122 | 75 3123 | 74 3124 | 20 3125 | 72 3126 | 65 3127 | 6c 3128 | 69 3129 | 67 3130 | 69 3131 | 6f 3132 | 75 3133 | 73 3134 | 20 3135 | 62 3136 | 69 3137 | 61 3138 | 73 3139 | 2e 3140 | 2e 3141 | 2e 3142 | 20 3143 | 61 3144 | 6e 3145 | 64 3146 | 20 3147 | 79 3148 | 6f 3149 | 75 3150 | 20 3151 | 63 3152 | 61 3153 | 6c 3154 | 6c 3155 | 20 3156 | 75 3157 | 73 3158 | 20 3159 | 63 3160 | 72 3161 | 69 3162 | 6d 3163 | 69 3164 | 6e 3165 | 61 3166 | 6c 3167 | 73 3168 | 2e 3169 | 0a 3170 | 59 3171 | 6f 3172 | 75 3173 | 20 3174 | 62 3175 | 75 3176 | 69 3177 | 6c 3178 | 64 3179 | 20 3180 | 61 3181 | 74 3182 | 6f 3183 | 6d 3184 | 69 3185 | 63 3186 | 20 3187 | 62 3188 | 6f 3189 | 6d 3190 | 62 3191 | 73 3192 | 2c 3193 | 20 3194 | 79 3195 | 6f 3196 | 75 3197 | 20 3198 | 49 3199 | 61 3200 | 67 3201 | 65 3202 | 20 3203 | 77 3204 | 61 3205 | 72 3206 | 73 3207 | 2c 3208 | 20 3209 | 79 3210 | 6f 3211 | 75 3212 | 20 3213 | 6d 3214 | 75 3215 | 72 3216 | 64 3217 | 65 3218 | 72 3219 | 2c 3220 | 20 3221 | 63 3222 | 68 3223 | 74 3224 | 61 3225 | 74 3226 | 2c 3227 | 20 3228 | 61 3229 | 6e 3230 | 64 3231 | 20 3232 | 6c 3233 | 69 3234 | 65 3235 | 20 3236 | 74 3237 | 6f 3238 | 20 3239 | 75 3240 | 73 3241 | 0a 3242 | 61 3243 | 6e 3244 | 64 3245 | 20 3246 | 74 3247 | 72 3248 | 79 3249 | 20 3250 | 74 3251 | 6f 3252 | 20 3253 | 6d 3254 | 61 3255 | 6b 3256 | 65 3257 | 53 3258 | 75 3259 | 73 3260 | 20 3261 | 62 3262 | 65 3263 | 6c 3264 | 69 3265 | 65 3266 | 76 3267 | 65 3268 | 20 3269 | 69 3270 | 74 3271 | 27 3272 | 73 3273 | 20 3274 | 66 3275 | 6f 3276 | 72 3277 | 20 3278 | 6f 3279 | 75 3280 | 72 3281 | 20 3282 | 6f 3283 | 77 3284 | 6e 3285 | 20 3286 | 67 3287 | 6f 3288 | 6f 3289 | 64 3290 | 2c 3291 | 20 3292 | 79 3293 | 65 3294 | 74 3295 | 20 3296 | 77 3297 | 65 3298 | 27 3299 | 65 3300 | 65 3301 | 20 3302 | 74 3303 | 68 3304 | 65 3305 | 20 3306 | 63 3307 | 72 3308 | 69 3309 | 6d 3310 | 69 3311 | 6e 3312 | 61 3313 | 6c 3314 | 73 3315 | 2e 3316 | 0a 3317 | 0a 3318 | 20 3319 | 20 3320 | 20 3321 | 20 3322 | 20 3323 | 20 3324 | 20 3325 | 20 3326 | 59 3327 | 65 3328 | 73 3329 | 2c 3330 | 20 3331 | 49 3332 | 20 3333 | 61 3334 | 6d 3335 | 20 3336 | 61 3337 | 20 3338 | 63 3339 | 72 3340 | 69 3341 | 6d 3342 | 69 3343 | 6e 3344 | 61 3345 | 6c 3346 | 2e 3347 | 20 3348 | 20 3349 | 4d 3350 | 79 3351 | 20 3352 | 63 3353 | 72 3354 | 69 3355 | 6d 3356 | 65 3357 | 20 3358 | 69 3359 | 73 3360 | 20 3361 | 74 3362 | 68 3363 | 61 3364 | 74 3365 | 20 3366 | 6f 3367 | 66 3368 | 20 3369 | 63 3370 | 75 3371 | 72 3372 | 69 3373 | 6f 3374 | 73 3375 | 69 3376 | 74 3377 | 79 3378 | 2e 3379 | 20 3380 | 20 3381 | 4d 3382 | 79 3383 | 20 3384 | 63 3385 | 72 3386 | 69 3387 | 6d 3388 | 65 3389 | 20 3390 | 69 3391 | 73 3392 | 0a 3393 | 74 3394 | 68 3395 | 61 3396 | 74 3397 | 20 3398 | 6f 3399 | 66 3400 | 20 3401 | 6a 3402 | 75 3403 | 64 3404 | 67 3405 | 69 3406 | 6e 3407 | 67 3408 | 20 3409 | 70 3410 | 65 3411 | 6f 3412 | 70 3413 | 6c 3414 | 65 3415 | 20 3416 | 62 3417 | 79 3418 | 20 3419 | 77 3420 | 68 3421 | 61 3422 | 74 3423 | 20 3424 | 74 3425 | 68 3426 | 65 3427 | 79 3428 | 20 3429 | 73 3430 | 61 3431 | 79 3432 | 20 3433 | 61 3434 | 6e 3435 | 64 3436 | 20 3437 | 74 3438 | 68 3439 | 69 3440 | 6e 3441 | 6b 3442 | 2c 3443 | 65 3444 | 6e 3445 | 6f 3446 | 74 3447 | 20 3448 | 77 3449 | 68 3450 | 61 3451 | 74 3452 | 20 3453 | 74 3454 | 68 3455 | 65 3456 | 79 3457 | 20 3458 | 6c 3459 | 6f 3460 | 6f 3461 | 6b 3462 | 20 3463 | 6c 3464 | 69 3465 | 6b 3466 | 65 3467 | 2e 3468 | 0a 3469 | 4d 3470 | 79 3471 | 20 3472 | 63 3473 | 72 3474 | 69 3475 | 6d 3476 | 65 3477 | 20 3478 | 69 3479 | 73 3480 | 20 3481 | 74 3482 | 68 3483 | 61 3484 | 74 3485 | 20 3486 | 6f 3487 | 66 3488 | 20 3489 | 6f 3490 | 75 3491 | 74 3492 | 73 3493 | 6d 3494 | 61 3495 | 72 3496 | 74 3497 | 69 3498 | 6e 3499 | 67 3500 | 20 3501 | 79 3502 | 6f 3503 | 75 3504 | 2c 3505 | 20 3506 | 73 3507 | 6f 3508 | 6d 3509 | 65 3510 | 74 3511 | 68 3512 | 69 3513 | 6e 3514 | 67 3515 | 20 3516 | 74 3517 | 68 3518 | 61 3519 | 74 3520 | 20 3521 | 79 3522 | 6f 3523 | 75 3524 | 20 3525 | 77 3526 | 69 3527 | 6c 3528 | 6c 3529 | 20 3530 | 6e 3531 | 65 3532 | 76 3533 | 65 3534 | 72 3535 | 20 3536 | 66 3537 | 6f 3538 | 72 3539 | 67 3540 | 69 3541 | 76 3542 | 6d 3543 | 20 3544 | 6d 3545 | 65 3546 | 0a 3547 | 66 3548 | 6f 3549 | 72 3550 | 2e 3551 | 0a 3552 | 0a 3553 | 20 3554 | 20 3555 | 20 3556 | 20 3557 | 20 3558 | 20 3559 | 20 3560 | 20 3561 | 49 3562 | 20 3563 | 61 3564 | 6d 3565 | 20 3566 | 61 3567 | 20 3568 | 68 3569 | 61 3570 | 63 3571 | 6b 3572 | 65 3573 | 72 3574 | 2c 3575 | 20 3576 | 61 3577 | 6e 3578 | 64 3579 | 20 3580 | 74 3581 | 68 3582 | 69 3583 | 73 3584 | 20 3585 | 69 3586 | 73 3587 | 20 3588 | 6d 3589 | 79 3590 | 20 3591 | 6d 3592 | 61 3593 | 6e 3594 | 69 3595 | 66 3596 | 65 3597 | 73 3598 | 74 3599 | 6f 3600 | 2e 3601 | 20 3602 | 20 3603 | 59 3604 | 6f 3605 | 75 3606 | 20 3607 | 6d 3608 | 61 3609 | 79 3610 | 20 3611 | 73 3612 | 74 3613 | 6f 3614 | 70 3615 | 20 3616 | 74 3617 | 68 3618 | 69 3619 | 73 3620 | 20 3621 | 69 3622 | 6e 3623 | 64 3624 | 69 3625 | 76 3626 | 69 3627 | 64 3628 | 75 3629 | 61 3630 | 6c 3631 | 2c 3632 | 0a 3633 | 62 3634 | 75 3635 | 74 3636 | 20 3637 | 79 3638 | 6f 3639 | 75 3640 | 20 3641 | 63 3642 | 61 3643 | 6e 3644 | 27 3645 | 74 3646 | 20 3647 | 73 3648 | 74 3649 | 6f 3650 | 70 3651 | 20 3652 | 75 3653 | 73 3654 | 20 3655 | 61 3656 | 6c 3657 | 6c 3658 | 2e 3659 | 2e 3660 | 2e 3661 | 20 3662 | 61 3663 | 66 3664 | 74 3665 | 65 3666 | 72 3667 | 20 3668 | 61 3669 | 6c 3670 | 6c 3671 | 2c 3672 | 20 3673 | 77 3674 | 65 3675 | 27 3676 | 72 3677 | 65 3678 | 20 3679 | 61 3680 | 6c 3681 | 6c 3682 | 20 3683 | 61 3684 | 6c 3685 | 69 3686 | 6b 3687 | 65 3688 | 2e 3689 | 73 3690 | 0a 3691 | 20 3692 | 20 3693 | 20 3694 | 20 3695 | 20 3696 | 20 3697 | 20 3698 | 20 3699 | 20 3700 | 20 3701 | 20 3702 | 20 3703 | 20 3704 | 20 3705 | 20 3706 | 20 3707 | 20 3708 | 20 3709 | 20 3710 | 20 3711 | 20 3712 | 20 3713 | 20 3714 | 20 3715 | 20 3716 | 20 3717 | 20 3718 | 20 3719 | 20 3720 | 20 3721 | 20 3722 | 2b 3723 | 2b 3724 | 2b 3725 | 54 3726 | 68 3727 | 65 3728 | 20 3729 | 4d 3730 | 65 3731 | 6e 3732 | 74 3733 | 6f 3734 | 72 3735 | 2b 3736 | 2b 3737 | 2b 3738 | -------------------------------------------------------------------------------- /ringzer0team/steganography/hidden-in-plain-sight/diff.txt: -------------------------------------------------------------------------------- 1 | 46 | 20 2 | 4c | 69 3 | 41 | 65 4 | 47 | 69 5 | 2d | 20 6 | 4e | 2c 7 | 6f | 20 8 | 74 | 20 9 | 68 | 20 10 | 69 | 20 11 | 6e | 20 12 | 67 | 6b 13 | 49 | 74 14 | 73 | 68 15 | 45 | 73 16 | 76 | 62 17 | 65 | 6f 18 | 72 | 68 19 | 57 | 79 20 | 68 | 65 21 | 61 | 68 22 | 74 | 6e 23 | 49 | 77 24 | 74 | 65 25 | 53 | 20 26 | 65 | 72 27 | 65 | 20 28 | 6d | 65 29 | 73 | 0a 30 | -------------------------------------------------------------------------------- /ringzer0team/steganography/hidden-in-plain-sight/flag.txt: -------------------------------------------------------------------------------- 1 | 46 4c 41 47 2d 4e 6f 74 68 69 6e 67 49 73 45 76 65 72 57 68 61 74 49 74 53 65 65 6d 73 -------------------------------------------------------------------------------- /ringzer0team/steganography/hidden-in-plain-sight/org.hex: -------------------------------------------------------------------------------- 1 | 20 2 | 20 3 | 20 4 | 20 5 | 20 6 | 20 7 | 20 8 | 20 9 | 20 10 | 20 11 | 20 12 | 20 13 | 20 14 | 20 15 | 20 16 | 20 17 | 20 18 | 20 19 | 20 20 | 20 21 | 20 22 | 20 23 | 20 24 | 20 25 | 20 26 | 20 27 | 20 28 | 20 29 | 20 30 | 20 31 | 20 32 | 3d 33 | 3d 34 | 50 35 | 68 36 | 72 37 | 61 38 | 63 39 | 6b 40 | 20 41 | 49 42 | 6e 43 | 63 44 | 2e 45 | 3d 46 | 3d 47 | 0a 48 | 0a 49 | 20 50 | 20 51 | 20 52 | 20 53 | 20 54 | 20 55 | 20 56 | 20 57 | 20 58 | 20 59 | 20 60 | 20 61 | 20 62 | 20 63 | 20 64 | 20 65 | 20 66 | 20 67 | 20 68 | 20 69 | 56 70 | 6f 71 | 6c 72 | 75 73 | 6d 74 | 65 75 | 20 76 | 4f 77 | 6e 78 | 65 79 | 2c 80 | 20 81 | 49 82 | 73 83 | 73 84 | 75 85 | 65 86 | 20 87 | 37 88 | 2c 89 | 20 90 | 50 91 | 68 92 | 69 93 | 6c 94 | 65 95 | 20 96 | 33 97 | 20 98 | 6f 99 | 66 100 | 20 101 | 31 102 | 30 103 | 0a 104 | 0a 105 | 3d 106 | 2d 107 | 3d 108 | 2d 109 | 3d 110 | 2d 111 | 3d 112 | 2d 113 | 3d 114 | 2d 115 | 3d 116 | 2d 117 | 3d 118 | 2d 119 | 3d 120 | 2d 121 | 3d 122 | 2d 123 | 3d 124 | 2d 125 | 3d 126 | 2d 127 | 3d 128 | 2d 129 | 3d 130 | 2d 131 | 3d 132 | 2d 133 | 3d 134 | 2d 135 | 3d 136 | 2d 137 | 3d 138 | 2d 139 | 3d 140 | 2d 141 | 3d 142 | 2d 143 | 3d 144 | 2d 145 | 3d 146 | 2d 147 | 3d 148 | 2d 149 | 3d 150 | 2d 151 | 3d 152 | 2d 153 | 3d 154 | 2d 155 | 3d 156 | 2d 157 | 3d 158 | 2d 159 | 3d 160 | 2d 161 | 3d 162 | 2d 163 | 3d 164 | 2d 165 | 3d 166 | 2d 167 | 3d 168 | 2d 169 | 3d 170 | 2d 171 | 3d 172 | 2d 173 | 3d 174 | 2d 175 | 3d 176 | 2d 177 | 3d 178 | 2d 179 | 3d 180 | 2d 181 | 3d 182 | 2d 183 | 3d 184 | 0a 185 | 54 186 | 68 187 | 65 188 | 20 189 | 66 190 | 6f 191 | 6c 192 | 6c 193 | 6f 194 | 77 195 | 69 196 | 6e 197 | 67 198 | 20 199 | 77 200 | 61 201 | 73 202 | 20 203 | 77 204 | 72 205 | 69 206 | 74 207 | 74 208 | 65 209 | 6e 210 | 20 211 | 73 212 | 68 213 | 6f 214 | 72 215 | 74 216 | 6c 217 | 79 218 | 20 219 | 61 220 | 66 221 | 74 222 | 65 223 | 72 224 | 20 225 | 6d 226 | 79 227 | 20 228 | 61 229 | 72 230 | 72 231 | 65 232 | 73 233 | 74 234 | 2e 235 | 2e 236 | 2e 237 | 0a 238 | 0a 239 | 20 240 | 20 241 | 20 242 | 20 243 | 20 244 | 20 245 | 20 246 | 20 247 | 20 248 | 20 249 | 20 250 | 20 251 | 20 252 | 20 253 | 20 254 | 20 255 | 20 256 | 20 257 | 20 258 | 20 259 | 20 260 | 20 261 | 20 262 | 5c 263 | 2f 264 | 5c 265 | 54 266 | 68 267 | 65 268 | 20 269 | 43 270 | 6f 271 | 6e 272 | 73 273 | 63 274 | 69 275 | 65 276 | 6e 277 | 63 278 | 65 279 | 20 280 | 6f 281 | 66 282 | 20 283 | 61 284 | 20 285 | 48 286 | 61 287 | 63 288 | 6b 289 | 65 290 | 72 291 | 2f 292 | 5c 293 | 2f 294 | 0a 295 | 0a 296 | 20 297 | 20 298 | 20 299 | 20 300 | 20 301 | 20 302 | 20 303 | 20 304 | 20 305 | 20 306 | 20 307 | 20 308 | 20 309 | 20 310 | 20 311 | 20 312 | 20 313 | 20 314 | 20 315 | 20 316 | 20 317 | 20 318 | 20 319 | 20 320 | 20 321 | 20 322 | 20 323 | 20 324 | 20 325 | 20 326 | 20 327 | 20 328 | 20 329 | 20 330 | 20 331 | 20 332 | 20 333 | 20 334 | 62 335 | 79 336 | 0a 337 | 0a 338 | 20 339 | 20 340 | 20 341 | 20 342 | 20 343 | 20 344 | 20 345 | 20 346 | 20 347 | 20 348 | 20 349 | 20 350 | 20 351 | 20 352 | 20 353 | 20 354 | 20 355 | 20 356 | 20 357 | 20 358 | 20 359 | 20 360 | 20 361 | 20 362 | 20 363 | 20 364 | 20 365 | 20 366 | 20 367 | 20 368 | 20 369 | 2b 370 | 2b 371 | 2b 372 | 54 373 | 68 374 | 65 375 | 20 376 | 4d 377 | 65 378 | 6e 379 | 74 380 | 6f 381 | 72 382 | 2b 383 | 2b 384 | 2b 385 | 0a 386 | 0a 387 | 20 388 | 20 389 | 20 390 | 20 391 | 20 392 | 20 393 | 20 394 | 20 395 | 20 396 | 20 397 | 20 398 | 20 399 | 20 400 | 20 401 | 20 402 | 20 403 | 20 404 | 20 405 | 20 406 | 20 407 | 20 408 | 20 409 | 20 410 | 20 411 | 20 412 | 20 413 | 57 414 | 72 415 | 69 416 | 74 417 | 74 418 | 65 419 | 6e 420 | 20 421 | 6f 422 | 6e 423 | 20 424 | 4a 425 | 61 426 | 6e 427 | 75 428 | 61 429 | 72 430 | 79 431 | 20 432 | 38 433 | 2c 434 | 20 435 | 31 436 | 39 437 | 38 438 | 36 439 | 0a 440 | 3d 441 | 2d 442 | 3d 443 | 2d 444 | 3d 445 | 2d 446 | 3d 447 | 2d 448 | 3d 449 | 2d 450 | 3d 451 | 2d 452 | 3d 453 | 2d 454 | 3d 455 | 2d 456 | 3d 457 | 2d 458 | 3d 459 | 2d 460 | 3d 461 | 2d 462 | 3d 463 | 2d 464 | 3d 465 | 2d 466 | 3d 467 | 2d 468 | 3d 469 | 2d 470 | 3d 471 | 2d 472 | 3d 473 | 2d 474 | 3d 475 | 2d 476 | 3d 477 | 2d 478 | 3d 479 | 2d 480 | 3d 481 | 2d 482 | 3d 483 | 2d 484 | 3d 485 | 2d 486 | 3d 487 | 2d 488 | 3d 489 | 2d 490 | 3d 491 | 2d 492 | 3d 493 | 2d 494 | 3d 495 | 2d 496 | 3d 497 | 2d 498 | 3d 499 | 2d 500 | 3d 501 | 2d 502 | 3d 503 | 2d 504 | 3d 505 | 2d 506 | 3d 507 | 2d 508 | 3d 509 | 2d 510 | 3d 511 | 2d 512 | 3d 513 | 2d 514 | 3d 515 | 2d 516 | 3d 517 | 2d 518 | 3d 519 | 0a 520 | 0a 521 | 20 522 | 20 523 | 20 524 | 20 525 | 20 526 | 20 527 | 20 528 | 20 529 | 41 530 | 6e 531 | 6f 532 | 74 533 | 68 534 | 65 535 | 72 536 | 20 537 | 6f 538 | 6e 539 | 65 540 | 20 541 | 67 542 | 6f 543 | 74 544 | 20 545 | 63 546 | 61 547 | 75 548 | 67 549 | 68 550 | 74 551 | 20 552 | 74 553 | 6f 554 | 64 555 | 61 556 | 79 557 | 2c 558 | 20 559 | 69 560 | 74 561 | 27 562 | 73 563 | 20 564 | 61 565 | 6c 566 | 6c 567 | 20 568 | 6f 569 | 76 570 | 65 571 | 72 572 | 20 573 | 74 574 | 68 575 | 65 576 | 20 577 | 70 578 | 61 579 | 70 580 | 65 581 | 72 582 | 73 583 | 2e 584 | 20 585 | 20 586 | 22 587 | 54 588 | 65 589 | 65 590 | 6e 591 | 61 592 | 67 593 | 65 594 | 72 595 | 0a 596 | 41 597 | 72 598 | 72 599 | 65 600 | 73 601 | 74 602 | 65 603 | 64 604 | 20 605 | 69 606 | 6e 607 | 20 608 | 43 609 | 6f 610 | 6d 611 | 70 612 | 75 613 | 74 614 | 65 615 | 72 616 | 20 617 | 43 618 | 72 619 | 69 620 | 6d 621 | 65 622 | 20 623 | 53 624 | 63 625 | 61 626 | 6e 627 | 64 628 | 61 629 | 6c 630 | 22 631 | 2c 632 | 20 633 | 22 634 | 48 635 | 61 636 | 63 637 | 6b 638 | 65 639 | 72 640 | 20 641 | 41 642 | 72 643 | 72 644 | 65 645 | 73 646 | 74 647 | 65 648 | 64 649 | 20 650 | 61 651 | 66 652 | 74 653 | 65 654 | 72 655 | 20 656 | 42 657 | 61 658 | 6e 659 | 6b 660 | 20 661 | 54 662 | 61 663 | 6d 664 | 70 665 | 65 666 | 72 667 | 69 668 | 6e 669 | 67 670 | 22 671 | 2e 672 | 2e 673 | 2e 674 | 0a 675 | 20 676 | 20 677 | 20 678 | 20 679 | 20 680 | 20 681 | 20 682 | 20 683 | 44 684 | 61 685 | 6d 686 | 6e 687 | 20 688 | 6b 689 | 69 690 | 64 691 | 73 692 | 2e 693 | 20 694 | 20 695 | 54 696 | 68 697 | 65 698 | 79 699 | 27 700 | 72 701 | 65 702 | 20 703 | 61 704 | 6c 705 | 6c 706 | 20 707 | 61 708 | 6c 709 | 69 710 | 6b 711 | 65 712 | 2e 713 | 0a 714 | 0a 715 | 20 716 | 20 717 | 20 718 | 20 719 | 20 720 | 20 721 | 20 722 | 20 723 | 42 724 | 75 725 | 74 726 | 20 727 | 64 728 | 69 729 | 64 730 | 20 731 | 79 732 | 6f 733 | 75 734 | 2c 735 | 20 736 | 69 737 | 6e 738 | 20 739 | 79 740 | 6f 741 | 75 742 | 72 743 | 20 744 | 74 745 | 68 746 | 72 747 | 65 748 | 65 749 | 2d 750 | 70 751 | 69 752 | 65 753 | 63 754 | 65 755 | 20 756 | 70 757 | 73 758 | 79 759 | 63 760 | 68 761 | 6f 762 | 6c 763 | 6f 764 | 67 765 | 79 766 | 20 767 | 61 768 | 6e 769 | 64 770 | 20 771 | 31 772 | 39 773 | 35 774 | 30 775 | 27 776 | 73 777 | 20 778 | 74 779 | 65 780 | 63 781 | 68 782 | 6e 783 | 6f 784 | 62 785 | 72 786 | 61 787 | 69 788 | 6e 789 | 2c 790 | 0a 791 | 65 792 | 76 793 | 65 794 | 72 795 | 20 796 | 74 797 | 61 798 | 6b 799 | 65 800 | 20 801 | 61 802 | 20 803 | 6c 804 | 6f 805 | 6f 806 | 6b 807 | 20 808 | 62 809 | 65 810 | 68 811 | 69 812 | 6e 813 | 64 814 | 20 815 | 74 816 | 68 817 | 65 818 | 20 819 | 65 820 | 79 821 | 65 822 | 73 823 | 20 824 | 6f 825 | 66 826 | 20 827 | 74 828 | 68 829 | 65 830 | 20 831 | 68 832 | 61 833 | 63 834 | 6b 835 | 65 836 | 72 837 | 3f 838 | 20 839 | 20 840 | 44 841 | 69 842 | 64 843 | 20 844 | 79 845 | 6f 846 | 75 847 | 20 848 | 65 849 | 76 850 | 65 851 | 72 852 | 20 853 | 77 854 | 6f 855 | 6e 856 | 64 857 | 65 858 | 72 859 | 20 860 | 77 861 | 68 862 | 61 863 | 74 864 | 0a 865 | 6d 866 | 61 867 | 64 868 | 65 869 | 20 870 | 68 871 | 69 872 | 6d 873 | 20 874 | 74 875 | 69 876 | 63 877 | 6b 878 | 2c 879 | 20 880 | 77 881 | 68 882 | 61 883 | 74 884 | 20 885 | 66 886 | 6f 887 | 72 888 | 63 889 | 65 890 | 73 891 | 20 892 | 73 893 | 68 894 | 61 895 | 70 896 | 65 897 | 64 898 | 20 899 | 68 900 | 69 901 | 6d 902 | 2c 903 | 20 904 | 77 905 | 68 906 | 61 907 | 74 908 | 20 909 | 6d 910 | 61 911 | 79 912 | 20 913 | 68 914 | 61 915 | 76 916 | 65 917 | 20 918 | 6d 919 | 6f 920 | 6c 921 | 64 922 | 65 923 | 64 924 | 20 925 | 68 926 | 69 927 | 6d 928 | 3f 929 | 0a 930 | 20 931 | 20 932 | 20 933 | 20 934 | 20 935 | 20 936 | 20 937 | 20 938 | 49 939 | 20 940 | 61 941 | 6d 942 | 20 943 | 61 944 | 20 945 | 68 946 | 61 947 | 63 948 | 6b 949 | 65 950 | 72 951 | 2c 952 | 20 953 | 65 954 | 6e 955 | 74 956 | 65 957 | 72 958 | 20 959 | 6d 960 | 79 961 | 20 962 | 77 963 | 6f 964 | 72 965 | 6c 966 | 64 967 | 2e 968 | 2e 969 | 2e 970 | 0a 971 | 20 972 | 20 973 | 20 974 | 20 975 | 20 976 | 20 977 | 20 978 | 20 979 | 4d 980 | 69 981 | 6e 982 | 65 983 | 20 984 | 69 985 | 73 986 | 20 987 | 61 988 | 20 989 | 77 990 | 6f 991 | 72 992 | 6c 993 | 64 994 | 20 995 | 74 996 | 68 997 | 61 998 | 74 999 | 20 1000 | 62 1001 | 65 1002 | 67 1003 | 69 1004 | 6e 1005 | 73 1006 | 20 1007 | 77 1008 | 69 1009 | 74 1010 | 68 1011 | 20 1012 | 73 1013 | 63 1014 | 68 1015 | 6f 1016 | 6f 1017 | 6c 1018 | 2e 1019 | 2e 1020 | 2e 1021 | 20 1022 | 49 1023 | 27 1024 | 6d 1025 | 20 1026 | 73 1027 | 6d 1028 | 61 1029 | 72 1030 | 74 1031 | 65 1032 | 72 1033 | 20 1034 | 74 1035 | 68 1036 | 61 1037 | 6e 1038 | 20 1039 | 6d 1040 | 6f 1041 | 73 1042 | 74 1043 | 20 1044 | 6f 1045 | 66 1046 | 0a 1047 | 74 1048 | 68 1049 | 65 1050 | 20 1051 | 6f 1052 | 74 1053 | 68 1054 | 65 1055 | 72 1056 | 20 1057 | 6b 1058 | 69 1059 | 64 1060 | 73 1061 | 2c 1062 | 20 1063 | 74 1064 | 68 1065 | 69 1066 | 73 1067 | 20 1068 | 63 1069 | 72 1070 | 61 1071 | 70 1072 | 20 1073 | 74 1074 | 68 1075 | 65 1076 | 79 1077 | 20 1078 | 74 1079 | 65 1080 | 61 1081 | 63 1082 | 68 1083 | 20 1084 | 75 1085 | 73 1086 | 20 1087 | 62 1088 | 6f 1089 | 72 1090 | 65 1091 | 73 1092 | 20 1093 | 6d 1094 | 65 1095 | 2e 1096 | 2e 1097 | 2e 1098 | 0a 1099 | 20 1100 | 20 1101 | 20 1102 | 20 1103 | 20 1104 | 20 1105 | 20 1106 | 20 1107 | 44 1108 | 61 1109 | 6d 1110 | 6e 1111 | 20 1112 | 75 1113 | 6e 1114 | 64 1115 | 65 1116 | 72 1117 | 61 1118 | 63 1119 | 68 1120 | 69 1121 | 65 1122 | 76 1123 | 65 1124 | 72 1125 | 2e 1126 | 20 1127 | 20 1128 | 54 1129 | 68 1130 | 65 1131 | 79 1132 | 27 1133 | 72 1134 | 65 1135 | 20 1136 | 61 1137 | 6c 1138 | 6c 1139 | 20 1140 | 61 1141 | 6c 1142 | 69 1143 | 6b 1144 | 65 1145 | 2e 1146 | 0a 1147 | 0a 1148 | 20 1149 | 20 1150 | 20 1151 | 20 1152 | 20 1153 | 20 1154 | 20 1155 | 20 1156 | 49 1157 | 27 1158 | 6d 1159 | 20 1160 | 69 1161 | 6e 1162 | 20 1163 | 6a 1164 | 75 1165 | 6e 1166 | 69 1167 | 6f 1168 | 72 1169 | 20 1170 | 68 1171 | 69 1172 | 67 1173 | 68 1174 | 20 1175 | 6f 1176 | 72 1177 | 20 1178 | 68 1179 | 69 1180 | 67 1181 | 68 1182 | 20 1183 | 73 1184 | 63 1185 | 68 1186 | 6f 1187 | 6f 1188 | 6c 1189 | 2e 1190 | 20 1191 | 20 1192 | 49 1193 | 27 1194 | 76 1195 | 65 1196 | 20 1197 | 6c 1198 | 69 1199 | 73 1200 | 74 1201 | 65 1202 | 6e 1203 | 65 1204 | 64 1205 | 20 1206 | 74 1207 | 6f 1208 | 20 1209 | 74 1210 | 65 1211 | 61 1212 | 63 1213 | 68 1214 | 65 1215 | 72 1216 | 73 1217 | 20 1218 | 65 1219 | 78 1220 | 70 1221 | 6c 1222 | 61 1223 | 69 1224 | 6e 1225 | 0a 1226 | 66 1227 | 6f 1228 | 72 1229 | 20 1230 | 74 1231 | 68 1232 | 65 1233 | 20 1234 | 66 1235 | 69 1236 | 66 1237 | 74 1238 | 65 1239 | 65 1240 | 6e 1241 | 74 1242 | 68 1243 | 20 1244 | 74 1245 | 69 1246 | 6d 1247 | 65 1248 | 20 1249 | 68 1250 | 6f 1251 | 77 1252 | 20 1253 | 74 1254 | 6f 1255 | 20 1256 | 72 1257 | 65 1258 | 64 1259 | 75 1260 | 63 1261 | 65 1262 | 20 1263 | 61 1264 | 20 1265 | 66 1266 | 72 1267 | 61 1268 | 63 1269 | 74 1270 | 69 1271 | 6f 1272 | 6e 1273 | 2e 1274 | 20 1275 | 20 1276 | 49 1277 | 20 1278 | 75 1279 | 6e 1280 | 64 1281 | 65 1282 | 72 1283 | 73 1284 | 74 1285 | 61 1286 | 6e 1287 | 64 1288 | 20 1289 | 69 1290 | 74 1291 | 2e 1292 | 20 1293 | 20 1294 | 22 1295 | 4e 1296 | 6f 1297 | 2c 1298 | 20 1299 | 4d 1300 | 73 1301 | 2e 1302 | 0a 1303 | 53 1304 | 6d 1305 | 69 1306 | 74 1307 | 68 1308 | 2c 1309 | 20 1310 | 49 1311 | 20 1312 | 64 1313 | 69 1314 | 64 1315 | 6e 1316 | 27 1317 | 74 1318 | 20 1319 | 73 1320 | 68 1321 | 6f 1322 | 77 1323 | 20 1324 | 6d 1325 | 79 1326 | 20 1327 | 77 1328 | 6f 1329 | 72 1330 | 6b 1331 | 2e 1332 | 20 1333 | 20 1334 | 49 1335 | 20 1336 | 64 1337 | 69 1338 | 64 1339 | 20 1340 | 69 1341 | 74 1342 | 20 1343 | 69 1344 | 6e 1345 | 20 1346 | 6d 1347 | 79 1348 | 20 1349 | 68 1350 | 65 1351 | 61 1352 | 64 1353 | 2e 1354 | 2e 1355 | 2e 1356 | 22 1357 | 0a 1358 | 20 1359 | 20 1360 | 20 1361 | 20 1362 | 20 1363 | 20 1364 | 20 1365 | 20 1366 | 44 1367 | 61 1368 | 6d 1369 | 6e 1370 | 20 1371 | 6b 1372 | 69 1373 | 64 1374 | 2e 1375 | 20 1376 | 20 1377 | 50 1378 | 72 1379 | 6f 1380 | 62 1381 | 61 1382 | 62 1383 | 6c 1384 | 79 1385 | 20 1386 | 63 1387 | 6f 1388 | 70 1389 | 69 1390 | 65 1391 | 64 1392 | 20 1393 | 69 1394 | 74 1395 | 2e 1396 | 20 1397 | 20 1398 | 54 1399 | 68 1400 | 65 1401 | 79 1402 | 27 1403 | 72 1404 | 65 1405 | 20 1406 | 61 1407 | 6c 1408 | 6c 1409 | 20 1410 | 61 1411 | 6c 1412 | 69 1413 | 6b 1414 | 65 1415 | 2e 1416 | 0a 1417 | 0a 1418 | 20 1419 | 20 1420 | 20 1421 | 20 1422 | 20 1423 | 20 1424 | 20 1425 | 20 1426 | 49 1427 | 20 1428 | 6d 1429 | 61 1430 | 64 1431 | 65 1432 | 20 1433 | 61 1434 | 20 1435 | 64 1436 | 69 1437 | 73 1438 | 63 1439 | 6f 1440 | 76 1441 | 65 1442 | 72 1443 | 79 1444 | 20 1445 | 74 1446 | 6f 1447 | 64 1448 | 61 1449 | 79 1450 | 2e 1451 | 20 1452 | 20 1453 | 49 1454 | 20 1455 | 66 1456 | 6f 1457 | 75 1458 | 6e 1459 | 64 1460 | 20 1461 | 61 1462 | 20 1463 | 63 1464 | 6f 1465 | 6d 1466 | 70 1467 | 75 1468 | 74 1469 | 65 1470 | 72 1471 | 2e 1472 | 20 1473 | 20 1474 | 57 1475 | 61 1476 | 69 1477 | 74 1478 | 20 1479 | 61 1480 | 20 1481 | 73 1482 | 65 1483 | 63 1484 | 6f 1485 | 6e 1486 | 64 1487 | 2c 1488 | 20 1489 | 74 1490 | 68 1491 | 69 1492 | 73 1493 | 20 1494 | 69 1495 | 73 1496 | 0a 1497 | 63 1498 | 6f 1499 | 6f 1500 | 6c 1501 | 2e 1502 | 20 1503 | 20 1504 | 49 1505 | 74 1506 | 20 1507 | 64 1508 | 6f 1509 | 65 1510 | 73 1511 | 20 1512 | 77 1513 | 68 1514 | 61 1515 | 74 1516 | 20 1517 | 49 1518 | 20 1519 | 77 1520 | 61 1521 | 6e 1522 | 74 1523 | 20 1524 | 69 1525 | 74 1526 | 20 1527 | 74 1528 | 6f 1529 | 2e 1530 | 20 1531 | 20 1532 | 49 1533 | 66 1534 | 20 1535 | 69 1536 | 74 1537 | 20 1538 | 6d 1539 | 61 1540 | 6b 1541 | 65 1542 | 73 1543 | 20 1544 | 61 1545 | 20 1546 | 6d 1547 | 69 1548 | 73 1549 | 74 1550 | 61 1551 | 6b 1552 | 65 1553 | 2c 1554 | 20 1555 | 69 1556 | 74 1557 | 27 1558 | 73 1559 | 20 1560 | 62 1561 | 65 1562 | 63 1563 | 61 1564 | 75 1565 | 73 1566 | 65 1567 | 20 1568 | 49 1569 | 0a 1570 | 73 1571 | 63 1572 | 72 1573 | 65 1574 | 77 1575 | 65 1576 | 64 1577 | 20 1578 | 69 1579 | 74 1580 | 20 1581 | 75 1582 | 70 1583 | 2e 1584 | 20 1585 | 20 1586 | 4e 1587 | 6f 1588 | 74 1589 | 20 1590 | 62 1591 | 65 1592 | 63 1593 | 61 1594 | 75 1595 | 73 1596 | 65 1597 | 20 1598 | 69 1599 | 74 1600 | 20 1601 | 64 1602 | 6f 1603 | 65 1604 | 73 1605 | 6e 1606 | 27 1607 | 74 1608 | 20 1609 | 6c 1610 | 69 1611 | 6b 1612 | 65 1613 | 20 1614 | 6d 1615 | 65 1616 | 2e 1617 | 2e 1618 | 2e 1619 | 0a 1620 | 20 1621 | 20 1622 | 20 1623 | 20 1624 | 20 1625 | 20 1626 | 20 1627 | 20 1628 | 20 1629 | 20 1630 | 20 1631 | 20 1632 | 20 1633 | 20 1634 | 20 1635 | 20 1636 | 4f 1637 | 72 1638 | 20 1639 | 66 1640 | 65 1641 | 65 1642 | 6c 1643 | 73 1644 | 20 1645 | 74 1646 | 68 1647 | 72 1648 | 65 1649 | 61 1650 | 74 1651 | 65 1652 | 6e 1653 | 65 1654 | 64 1655 | 20 1656 | 62 1657 | 79 1658 | 20 1659 | 6d 1660 | 65 1661 | 2e 1662 | 2e 1663 | 2e 1664 | 0a 1665 | 20 1666 | 20 1667 | 20 1668 | 20 1669 | 20 1670 | 20 1671 | 20 1672 | 20 1673 | 20 1674 | 20 1675 | 20 1676 | 20 1677 | 20 1678 | 20 1679 | 20 1680 | 20 1681 | 4f 1682 | 72 1683 | 20 1684 | 74 1685 | 68 1686 | 69 1687 | 6e 1688 | 6b 1689 | 73 1690 | 20 1691 | 49 1692 | 27 1693 | 6d 1694 | 20 1695 | 61 1696 | 20 1697 | 73 1698 | 6d 1699 | 61 1700 | 72 1701 | 74 1702 | 20 1703 | 61 1704 | 73 1705 | 73 1706 | 2e 1707 | 2e 1708 | 2e 1709 | 0a 1710 | 20 1711 | 20 1712 | 20 1713 | 20 1714 | 20 1715 | 20 1716 | 20 1717 | 20 1718 | 20 1719 | 20 1720 | 20 1721 | 20 1722 | 20 1723 | 20 1724 | 20 1725 | 20 1726 | 4f 1727 | 72 1728 | 20 1729 | 64 1730 | 6f 1731 | 65 1732 | 73 1733 | 6e 1734 | 27 1735 | 74 1736 | 20 1737 | 6c 1738 | 69 1739 | 6b 1740 | 65 1741 | 20 1742 | 74 1743 | 65 1744 | 61 1745 | 63 1746 | 68 1747 | 69 1748 | 6e 1749 | 67 1750 | 20 1751 | 61 1752 | 6e 1753 | 64 1754 | 20 1755 | 73 1756 | 68 1757 | 6f 1758 | 75 1759 | 6c 1760 | 64 1761 | 6e 1762 | 27 1763 | 74 1764 | 20 1765 | 62 1766 | 65 1767 | 20 1768 | 68 1769 | 65 1770 | 72 1771 | 65 1772 | 2e 1773 | 2e 1774 | 2e 1775 | 0a 1776 | 20 1777 | 20 1778 | 20 1779 | 20 1780 | 20 1781 | 20 1782 | 20 1783 | 20 1784 | 44 1785 | 61 1786 | 6d 1787 | 6e 1788 | 20 1789 | 6b 1790 | 69 1791 | 64 1792 | 2e 1793 | 20 1794 | 20 1795 | 41 1796 | 6c 1797 | 6c 1798 | 20 1799 | 68 1800 | 65 1801 | 20 1802 | 64 1803 | 6f 1804 | 65 1805 | 73 1806 | 20 1807 | 69 1808 | 73 1809 | 20 1810 | 70 1811 | 6c 1812 | 61 1813 | 79 1814 | 20 1815 | 67 1816 | 61 1817 | 6d 1818 | 65 1819 | 73 1820 | 2e 1821 | 20 1822 | 20 1823 | 54 1824 | 68 1825 | 65 1826 | 79 1827 | 27 1828 | 72 1829 | 65 1830 | 20 1831 | 61 1832 | 6c 1833 | 6c 1834 | 20 1835 | 61 1836 | 6c 1837 | 69 1838 | 6b 1839 | 65 1840 | 2e 1841 | 0a 1842 | 0a 1843 | 20 1844 | 20 1845 | 20 1846 | 20 1847 | 20 1848 | 20 1849 | 20 1850 | 20 1851 | 41 1852 | 6e 1853 | 64 1854 | 20 1855 | 74 1856 | 68 1857 | 65 1858 | 6e 1859 | 20 1860 | 69 1861 | 74 1862 | 20 1863 | 68 1864 | 61 1865 | 70 1866 | 70 1867 | 65 1868 | 6e 1869 | 65 1870 | 64 1871 | 2e 1872 | 2e 1873 | 2e 1874 | 20 1875 | 61 1876 | 20 1877 | 64 1878 | 6f 1879 | 6f 1880 | 72 1881 | 20 1882 | 6f 1883 | 70 1884 | 65 1885 | 6e 1886 | 65 1887 | 64 1888 | 20 1889 | 74 1890 | 6f 1891 | 20 1892 | 61 1893 | 20 1894 | 77 1895 | 6f 1896 | 72 1897 | 6c 1898 | 64 1899 | 2e 1900 | 2e 1901 | 2e 1902 | 20 1903 | 72 1904 | 75 1905 | 73 1906 | 68 1907 | 69 1908 | 6e 1909 | 67 1910 | 20 1911 | 74 1912 | 68 1913 | 72 1914 | 6f 1915 | 75 1916 | 67 1917 | 68 1918 | 0a 1919 | 74 1920 | 68 1921 | 65 1922 | 20 1923 | 70 1924 | 68 1925 | 6f 1926 | 6e 1927 | 65 1928 | 20 1929 | 6c 1930 | 69 1931 | 6e 1932 | 65 1933 | 20 1934 | 6c 1935 | 69 1936 | 6b 1937 | 65 1938 | 20 1939 | 68 1940 | 65 1941 | 72 1942 | 6f 1943 | 69 1944 | 6e 1945 | 20 1946 | 74 1947 | 68 1948 | 72 1949 | 6f 1950 | 75 1951 | 67 1952 | 68 1953 | 20 1954 | 61 1955 | 6e 1956 | 20 1957 | 61 1958 | 64 1959 | 64 1960 | 69 1961 | 63 1962 | 74 1963 | 27 1964 | 73 1965 | 20 1966 | 76 1967 | 65 1968 | 69 1969 | 6e 1970 | 73 1971 | 2c 1972 | 20 1973 | 61 1974 | 6e 1975 | 20 1976 | 65 1977 | 6c 1978 | 65 1979 | 63 1980 | 74 1981 | 72 1982 | 6f 1983 | 6e 1984 | 69 1985 | 63 1986 | 20 1987 | 70 1988 | 75 1989 | 6c 1990 | 73 1991 | 65 1992 | 20 1993 | 69 1994 | 73 1995 | 0a 1996 | 73 1997 | 65 1998 | 6e 1999 | 74 2000 | 20 2001 | 6f 2002 | 75 2003 | 74 2004 | 2c 2005 | 20 2006 | 61 2007 | 20 2008 | 72 2009 | 65 2010 | 66 2011 | 75 2012 | 67 2013 | 65 2014 | 20 2015 | 66 2016 | 72 2017 | 6f 2018 | 6d 2019 | 20 2020 | 74 2021 | 68 2022 | 65 2023 | 20 2024 | 64 2025 | 61 2026 | 79 2027 | 2d 2028 | 74 2029 | 6f 2030 | 2d 2031 | 64 2032 | 61 2033 | 79 2034 | 20 2035 | 69 2036 | 6e 2037 | 63 2038 | 6f 2039 | 6d 2040 | 70 2041 | 65 2042 | 74 2043 | 65 2044 | 6e 2045 | 63 2046 | 69 2047 | 65 2048 | 73 2049 | 20 2050 | 69 2051 | 73 2052 | 20 2053 | 73 2054 | 6f 2055 | 75 2056 | 67 2057 | 68 2058 | 74 2059 | 2e 2060 | 2e 2061 | 2e 2062 | 20 2063 | 61 2064 | 20 2065 | 62 2066 | 6f 2067 | 61 2068 | 72 2069 | 64 2070 | 20 2071 | 69 2072 | 73 2073 | 0a 2074 | 66 2075 | 6f 2076 | 75 2077 | 6e 2078 | 64 2079 | 2e 2080 | 0a 2081 | 20 2082 | 20 2083 | 20 2084 | 20 2085 | 20 2086 | 20 2087 | 20 2088 | 20 2089 | 22 2090 | 54 2091 | 68 2092 | 69 2093 | 73 2094 | 20 2095 | 69 2096 | 73 2097 | 20 2098 | 69 2099 | 74 2100 | 2e 2101 | 2e 2102 | 2e 2103 | 20 2104 | 74 2105 | 68 2106 | 69 2107 | 73 2108 | 20 2109 | 69 2110 | 73 2111 | 20 2112 | 77 2113 | 68 2114 | 65 2115 | 72 2116 | 65 2117 | 20 2118 | 49 2119 | 20 2120 | 62 2121 | 65 2122 | 6c 2123 | 6f 2124 | 6e 2125 | 67 2126 | 2e 2127 | 2e 2128 | 2e 2129 | 22 2130 | 0a 2131 | 20 2132 | 20 2133 | 20 2134 | 20 2135 | 20 2136 | 20 2137 | 20 2138 | 20 2139 | 49 2140 | 20 2141 | 6b 2142 | 6e 2143 | 6f 2144 | 77 2145 | 20 2146 | 65 2147 | 76 2148 | 65 2149 | 72 2150 | 79 2151 | 6f 2152 | 6e 2153 | 65 2154 | 20 2155 | 68 2156 | 65 2157 | 72 2158 | 65 2159 | 2e 2160 | 2e 2161 | 2e 2162 | 20 2163 | 65 2164 | 76 2165 | 65 2166 | 6e 2167 | 20 2168 | 69 2169 | 66 2170 | 20 2171 | 49 2172 | 27 2173 | 76 2174 | 65 2175 | 20 2176 | 6e 2177 | 65 2178 | 76 2179 | 65 2180 | 72 2181 | 20 2182 | 6d 2183 | 65 2184 | 74 2185 | 20 2186 | 74 2187 | 68 2188 | 65 2189 | 6d 2190 | 2c 2191 | 20 2192 | 6e 2193 | 65 2194 | 76 2195 | 65 2196 | 72 2197 | 20 2198 | 74 2199 | 61 2200 | 6c 2201 | 6b 2202 | 65 2203 | 64 2204 | 20 2205 | 74 2206 | 6f 2207 | 0a 2208 | 74 2209 | 68 2210 | 65 2211 | 6d 2212 | 2c 2213 | 20 2214 | 6d 2215 | 61 2216 | 79 2217 | 20 2218 | 6e 2219 | 65 2220 | 76 2221 | 65 2222 | 72 2223 | 20 2224 | 68 2225 | 65 2226 | 61 2227 | 72 2228 | 20 2229 | 66 2230 | 72 2231 | 6f 2232 | 6d 2233 | 20 2234 | 74 2235 | 68 2236 | 65 2237 | 6d 2238 | 20 2239 | 61 2240 | 67 2241 | 61 2242 | 69 2243 | 6e 2244 | 2e 2245 | 2e 2246 | 2e 2247 | 20 2248 | 49 2249 | 20 2250 | 6b 2251 | 6e 2252 | 6f 2253 | 77 2254 | 20 2255 | 79 2256 | 6f 2257 | 75 2258 | 20 2259 | 61 2260 | 6c 2261 | 6c 2262 | 2e 2263 | 2e 2264 | 2e 2265 | 0a 2266 | 20 2267 | 20 2268 | 20 2269 | 20 2270 | 20 2271 | 20 2272 | 20 2273 | 20 2274 | 44 2275 | 61 2276 | 6d 2277 | 6e 2278 | 20 2279 | 6b 2280 | 69 2281 | 64 2282 | 2e 2283 | 20 2284 | 20 2285 | 54 2286 | 79 2287 | 69 2288 | 6e 2289 | 67 2290 | 20 2291 | 75 2292 | 70 2293 | 20 2294 | 74 2295 | 68 2296 | 65 2297 | 20 2298 | 70 2299 | 68 2300 | 6f 2301 | 6e 2302 | 65 2303 | 20 2304 | 6c 2305 | 69 2306 | 6e 2307 | 65 2308 | 20 2309 | 61 2310 | 67 2311 | 61 2312 | 69 2313 | 6e 2314 | 2e 2315 | 20 2316 | 20 2317 | 54 2318 | 68 2319 | 65 2320 | 79 2321 | 27 2322 | 72 2323 | 65 2324 | 20 2325 | 61 2326 | 6c 2327 | 6c 2328 | 20 2329 | 61 2330 | 6c 2331 | 69 2332 | 6b 2333 | 65 2334 | 2e 2335 | 2e 2336 | 2e 2337 | 0a 2338 | 0a 2339 | 20 2340 | 20 2341 | 20 2342 | 20 2343 | 20 2344 | 20 2345 | 20 2346 | 20 2347 | 59 2348 | 6f 2349 | 75 2350 | 20 2351 | 62 2352 | 65 2353 | 74 2354 | 20 2355 | 79 2356 | 6f 2357 | 75 2358 | 72 2359 | 20 2360 | 61 2361 | 73 2362 | 73 2363 | 20 2364 | 77 2365 | 65 2366 | 27 2367 | 72 2368 | 65 2369 | 20 2370 | 61 2371 | 6c 2372 | 6c 2373 | 20 2374 | 61 2375 | 6c 2376 | 69 2377 | 6b 2378 | 65 2379 | 2e 2380 | 2e 2381 | 2e 2382 | 20 2383 | 77 2384 | 65 2385 | 27 2386 | 76 2387 | 65 2388 | 20 2389 | 62 2390 | 65 2391 | 65 2392 | 6e 2393 | 20 2394 | 73 2395 | 70 2396 | 6f 2397 | 6f 2398 | 6e 2399 | 2d 2400 | 66 2401 | 65 2402 | 64 2403 | 20 2404 | 62 2405 | 61 2406 | 62 2407 | 79 2408 | 20 2409 | 66 2410 | 6f 2411 | 6f 2412 | 64 2413 | 20 2414 | 61 2415 | 74 2416 | 0a 2417 | 73 2418 | 63 2419 | 68 2420 | 6f 2421 | 6f 2422 | 6c 2423 | 20 2424 | 77 2425 | 68 2426 | 65 2427 | 6e 2428 | 20 2429 | 77 2430 | 65 2431 | 20 2432 | 68 2433 | 75 2434 | 6e 2435 | 67 2436 | 65 2437 | 72 2438 | 65 2439 | 64 2440 | 20 2441 | 66 2442 | 6f 2443 | 72 2444 | 20 2445 | 73 2446 | 74 2447 | 65 2448 | 61 2449 | 6b 2450 | 2e 2451 | 2e 2452 | 2e 2453 | 20 2454 | 74 2455 | 68 2456 | 65 2457 | 20 2458 | 62 2459 | 69 2460 | 74 2461 | 73 2462 | 20 2463 | 6f 2464 | 66 2465 | 20 2466 | 6d 2467 | 65 2468 | 61 2469 | 74 2470 | 20 2471 | 74 2472 | 68 2473 | 61 2474 | 74 2475 | 20 2476 | 79 2477 | 6f 2478 | 75 2479 | 20 2480 | 64 2481 | 69 2482 | 64 2483 | 20 2484 | 6c 2485 | 65 2486 | 74 2487 | 20 2488 | 73 2489 | 6c 2490 | 69 2491 | 70 2492 | 0a 2493 | 74 2494 | 68 2495 | 72 2496 | 6f 2497 | 75 2498 | 67 2499 | 68 2500 | 20 2501 | 77 2502 | 65 2503 | 72 2504 | 65 2505 | 20 2506 | 70 2507 | 72 2508 | 65 2509 | 2d 2510 | 63 2511 | 68 2512 | 65 2513 | 77 2514 | 65 2515 | 64 2516 | 20 2517 | 61 2518 | 6e 2519 | 64 2520 | 20 2521 | 74 2522 | 61 2523 | 73 2524 | 74 2525 | 65 2526 | 6c 2527 | 65 2528 | 73 2529 | 73 2530 | 2e 2531 | 20 2532 | 20 2533 | 57 2534 | 65 2535 | 27 2536 | 76 2537 | 65 2538 | 20 2539 | 62 2540 | 65 2541 | 65 2542 | 6e 2543 | 20 2544 | 64 2545 | 6f 2546 | 6d 2547 | 69 2548 | 6e 2549 | 61 2550 | 74 2551 | 65 2552 | 64 2553 | 20 2554 | 62 2555 | 79 2556 | 20 2557 | 73 2558 | 61 2559 | 64 2560 | 69 2561 | 73 2562 | 74 2563 | 73 2564 | 2c 2565 | 20 2566 | 6f 2567 | 72 2568 | 0a 2569 | 69 2570 | 67 2571 | 6e 2572 | 6f 2573 | 72 2574 | 65 2575 | 64 2576 | 20 2577 | 62 2578 | 79 2579 | 20 2580 | 74 2581 | 68 2582 | 65 2583 | 20 2584 | 61 2585 | 70 2586 | 61 2587 | 74 2588 | 68 2589 | 65 2590 | 74 2591 | 69 2592 | 63 2593 | 2e 2594 | 20 2595 | 20 2596 | 54 2597 | 68 2598 | 65 2599 | 20 2600 | 66 2601 | 65 2602 | 77 2603 | 20 2604 | 74 2605 | 68 2606 | 61 2607 | 74 2608 | 20 2609 | 68 2610 | 61 2611 | 64 2612 | 20 2613 | 73 2614 | 6f 2615 | 6d 2616 | 65 2617 | 74 2618 | 68 2619 | 69 2620 | 6e 2621 | 67 2622 | 20 2623 | 74 2624 | 6f 2625 | 20 2626 | 74 2627 | 65 2628 | 61 2629 | 63 2630 | 68 2631 | 20 2632 | 66 2633 | 6f 2634 | 75 2635 | 6e 2636 | 64 2637 | 20 2638 | 75 2639 | 73 2640 | 20 2641 | 77 2642 | 69 2643 | 6c 2644 | 6c 2645 | 2d 2646 | 0a 2647 | 69 2648 | 6e 2649 | 67 2650 | 20 2651 | 70 2652 | 75 2653 | 70 2654 | 69 2655 | 6c 2656 | 73 2657 | 2c 2658 | 20 2659 | 62 2660 | 75 2661 | 74 2662 | 20 2663 | 74 2664 | 68 2665 | 6f 2666 | 73 2667 | 65 2668 | 20 2669 | 66 2670 | 65 2671 | 77 2672 | 20 2673 | 61 2674 | 72 2675 | 65 2676 | 20 2677 | 6c 2678 | 69 2679 | 6b 2680 | 65 2681 | 20 2682 | 64 2683 | 72 2684 | 6f 2685 | 70 2686 | 73 2687 | 20 2688 | 6f 2689 | 66 2690 | 20 2691 | 77 2692 | 61 2693 | 74 2694 | 65 2695 | 72 2696 | 20 2697 | 69 2698 | 6e 2699 | 20 2700 | 74 2701 | 68 2702 | 65 2703 | 20 2704 | 64 2705 | 65 2706 | 73 2707 | 65 2708 | 72 2709 | 74 2710 | 2e 2711 | 0a 2712 | 0a 2713 | 20 2714 | 20 2715 | 20 2716 | 20 2717 | 20 2718 | 20 2719 | 20 2720 | 20 2721 | 54 2722 | 68 2723 | 69 2724 | 73 2725 | 20 2726 | 69 2727 | 73 2728 | 20 2729 | 6f 2730 | 75 2731 | 72 2732 | 20 2733 | 77 2734 | 6f 2735 | 72 2736 | 6c 2737 | 64 2738 | 20 2739 | 6e 2740 | 6f 2741 | 77 2742 | 2e 2743 | 2e 2744 | 2e 2745 | 20 2746 | 74 2747 | 68 2748 | 65 2749 | 20 2750 | 77 2751 | 6f 2752 | 72 2753 | 6c 2754 | 64 2755 | 20 2756 | 6f 2757 | 66 2758 | 20 2759 | 74 2760 | 68 2761 | 65 2762 | 20 2763 | 65 2764 | 6c 2765 | 65 2766 | 63 2767 | 74 2768 | 72 2769 | 6f 2770 | 6e 2771 | 20 2772 | 61 2773 | 6e 2774 | 64 2775 | 20 2776 | 74 2777 | 68 2778 | 65 2779 | 20 2780 | 73 2781 | 77 2782 | 69 2783 | 74 2784 | 63 2785 | 68 2786 | 2c 2787 | 20 2788 | 74 2789 | 68 2790 | 65 2791 | 0a 2792 | 62 2793 | 65 2794 | 61 2795 | 75 2796 | 74 2797 | 79 2798 | 20 2799 | 6f 2800 | 66 2801 | 20 2802 | 74 2803 | 68 2804 | 65 2805 | 20 2806 | 62 2807 | 61 2808 | 75 2809 | 64 2810 | 2e 2811 | 20 2812 | 20 2813 | 57 2814 | 65 2815 | 20 2816 | 6d 2817 | 61 2818 | 6b 2819 | 65 2820 | 20 2821 | 75 2822 | 73 2823 | 65 2824 | 20 2825 | 6f 2826 | 66 2827 | 20 2828 | 61 2829 | 20 2830 | 73 2831 | 65 2832 | 72 2833 | 76 2834 | 69 2835 | 63 2836 | 65 2837 | 20 2838 | 61 2839 | 6c 2840 | 72 2841 | 65 2842 | 61 2843 | 64 2844 | 79 2845 | 20 2846 | 65 2847 | 78 2848 | 69 2849 | 73 2850 | 74 2851 | 69 2852 | 6e 2853 | 67 2854 | 20 2855 | 77 2856 | 69 2857 | 74 2858 | 68 2859 | 6f 2860 | 75 2861 | 74 2862 | 20 2863 | 70 2864 | 61 2865 | 79 2866 | 69 2867 | 6e 2868 | 67 2869 | 0a 2870 | 66 2871 | 6f 2872 | 72 2873 | 20 2874 | 77 2875 | 68 2876 | 61 2877 | 74 2878 | 20 2879 | 63 2880 | 6f 2881 | 75 2882 | 6c 2883 | 64 2884 | 20 2885 | 62 2886 | 65 2887 | 20 2888 | 64 2889 | 69 2890 | 72 2891 | 74 2892 | 2d 2893 | 63 2894 | 68 2895 | 65 2896 | 61 2897 | 70 2898 | 20 2899 | 69 2900 | 66 2901 | 20 2902 | 69 2903 | 74 2904 | 20 2905 | 77 2906 | 61 2907 | 73 2908 | 6e 2909 | 27 2910 | 74 2911 | 20 2912 | 72 2913 | 75 2914 | 6e 2915 | 20 2916 | 62 2917 | 79 2918 | 20 2919 | 70 2920 | 72 2921 | 6f 2922 | 66 2923 | 69 2924 | 74 2925 | 65 2926 | 65 2927 | 72 2928 | 69 2929 | 6e 2930 | 67 2931 | 20 2932 | 67 2933 | 6c 2934 | 75 2935 | 74 2936 | 74 2937 | 6f 2938 | 6e 2939 | 73 2940 | 2c 2941 | 20 2942 | 61 2943 | 6e 2944 | 64 2945 | 0a 2946 | 79 2947 | 6f 2948 | 75 2949 | 20 2950 | 63 2951 | 61 2952 | 6c 2953 | 6c 2954 | 20 2955 | 75 2956 | 73 2957 | 20 2958 | 63 2959 | 72 2960 | 69 2961 | 6d 2962 | 69 2963 | 6e 2964 | 61 2965 | 6c 2966 | 73 2967 | 2e 2968 | 20 2969 | 20 2970 | 57 2971 | 65 2972 | 20 2973 | 65 2974 | 78 2975 | 70 2976 | 6c 2977 | 6f 2978 | 72 2979 | 65 2980 | 2e 2981 | 2e 2982 | 2e 2983 | 20 2984 | 61 2985 | 6e 2986 | 64 2987 | 20 2988 | 79 2989 | 6f 2990 | 75 2991 | 20 2992 | 63 2993 | 61 2994 | 6c 2995 | 6c 2996 | 20 2997 | 75 2998 | 73 2999 | 20 3000 | 63 3001 | 72 3002 | 69 3003 | 6d 3004 | 69 3005 | 6e 3006 | 61 3007 | 6c 3008 | 73 3009 | 2e 3010 | 20 3011 | 20 3012 | 57 3013 | 65 3014 | 20 3015 | 73 3016 | 65 3017 | 65 3018 | 6b 3019 | 0a 3020 | 61 3021 | 66 3022 | 74 3023 | 65 3024 | 72 3025 | 20 3026 | 6b 3027 | 6e 3028 | 6f 3029 | 77 3030 | 6c 3031 | 65 3032 | 64 3033 | 67 3034 | 65 3035 | 2e 3036 | 2e 3037 | 2e 3038 | 20 3039 | 61 3040 | 6e 3041 | 64 3042 | 20 3043 | 79 3044 | 6f 3045 | 75 3046 | 20 3047 | 63 3048 | 61 3049 | 6c 3050 | 6c 3051 | 20 3052 | 75 3053 | 73 3054 | 20 3055 | 63 3056 | 72 3057 | 69 3058 | 6d 3059 | 69 3060 | 6e 3061 | 61 3062 | 6c 3063 | 73 3064 | 2e 3065 | 20 3066 | 20 3067 | 57 3068 | 65 3069 | 20 3070 | 65 3071 | 78 3072 | 69 3073 | 73 3074 | 74 3075 | 20 3076 | 77 3077 | 69 3078 | 74 3079 | 68 3080 | 6f 3081 | 75 3082 | 74 3083 | 20 3084 | 73 3085 | 6b 3086 | 69 3087 | 6e 3088 | 20 3089 | 63 3090 | 6f 3091 | 6c 3092 | 6f 3093 | 72 3094 | 2c 3095 | 0a 3096 | 77 3097 | 69 3098 | 74 3099 | 68 3100 | 6f 3101 | 75 3102 | 74 3103 | 20 3104 | 6e 3105 | 61 3106 | 74 3107 | 69 3108 | 6f 3109 | 6e 3110 | 61 3111 | 6c 3112 | 69 3113 | 74 3114 | 79 3115 | 2c 3116 | 20 3117 | 77 3118 | 69 3119 | 74 3120 | 68 3121 | 6f 3122 | 75 3123 | 74 3124 | 20 3125 | 72 3126 | 65 3127 | 6c 3128 | 69 3129 | 67 3130 | 69 3131 | 6f 3132 | 75 3133 | 73 3134 | 20 3135 | 62 3136 | 69 3137 | 61 3138 | 73 3139 | 2e 3140 | 2e 3141 | 2e 3142 | 20 3143 | 61 3144 | 6e 3145 | 64 3146 | 20 3147 | 79 3148 | 6f 3149 | 75 3150 | 20 3151 | 63 3152 | 61 3153 | 6c 3154 | 6c 3155 | 20 3156 | 75 3157 | 73 3158 | 20 3159 | 63 3160 | 72 3161 | 69 3162 | 6d 3163 | 69 3164 | 6e 3165 | 61 3166 | 6c 3167 | 73 3168 | 2e 3169 | 0a 3170 | 59 3171 | 6f 3172 | 75 3173 | 20 3174 | 62 3175 | 75 3176 | 69 3177 | 6c 3178 | 64 3179 | 20 3180 | 61 3181 | 74 3182 | 6f 3183 | 6d 3184 | 69 3185 | 63 3186 | 20 3187 | 62 3188 | 6f 3189 | 6d 3190 | 62 3191 | 73 3192 | 2c 3193 | 20 3194 | 79 3195 | 6f 3196 | 75 3197 | 20 3198 | 77 3199 | 61 3200 | 67 3201 | 65 3202 | 20 3203 | 77 3204 | 61 3205 | 72 3206 | 73 3207 | 2c 3208 | 20 3209 | 79 3210 | 6f 3211 | 75 3212 | 20 3213 | 6d 3214 | 75 3215 | 72 3216 | 64 3217 | 65 3218 | 72 3219 | 2c 3220 | 20 3221 | 63 3222 | 68 3223 | 65 3224 | 61 3225 | 74 3226 | 2c 3227 | 20 3228 | 61 3229 | 6e 3230 | 64 3231 | 20 3232 | 6c 3233 | 69 3234 | 65 3235 | 20 3236 | 74 3237 | 6f 3238 | 20 3239 | 75 3240 | 73 3241 | 0a 3242 | 61 3243 | 6e 3244 | 64 3245 | 20 3246 | 74 3247 | 72 3248 | 79 3249 | 20 3250 | 74 3251 | 6f 3252 | 20 3253 | 6d 3254 | 61 3255 | 6b 3256 | 65 3257 | 20 3258 | 75 3259 | 73 3260 | 20 3261 | 62 3262 | 65 3263 | 6c 3264 | 69 3265 | 65 3266 | 76 3267 | 65 3268 | 20 3269 | 69 3270 | 74 3271 | 27 3272 | 73 3273 | 20 3274 | 66 3275 | 6f 3276 | 72 3277 | 20 3278 | 6f 3279 | 75 3280 | 72 3281 | 20 3282 | 6f 3283 | 77 3284 | 6e 3285 | 20 3286 | 67 3287 | 6f 3288 | 6f 3289 | 64 3290 | 2c 3291 | 20 3292 | 79 3293 | 65 3294 | 74 3295 | 20 3296 | 77 3297 | 65 3298 | 27 3299 | 72 3300 | 65 3301 | 20 3302 | 74 3303 | 68 3304 | 65 3305 | 20 3306 | 63 3307 | 72 3308 | 69 3309 | 6d 3310 | 69 3311 | 6e 3312 | 61 3313 | 6c 3314 | 73 3315 | 2e 3316 | 0a 3317 | 0a 3318 | 20 3319 | 20 3320 | 20 3321 | 20 3322 | 20 3323 | 20 3324 | 20 3325 | 20 3326 | 59 3327 | 65 3328 | 73 3329 | 2c 3330 | 20 3331 | 49 3332 | 20 3333 | 61 3334 | 6d 3335 | 20 3336 | 61 3337 | 20 3338 | 63 3339 | 72 3340 | 69 3341 | 6d 3342 | 69 3343 | 6e 3344 | 61 3345 | 6c 3346 | 2e 3347 | 20 3348 | 20 3349 | 4d 3350 | 79 3351 | 20 3352 | 63 3353 | 72 3354 | 69 3355 | 6d 3356 | 65 3357 | 20 3358 | 69 3359 | 73 3360 | 20 3361 | 74 3362 | 68 3363 | 61 3364 | 74 3365 | 20 3366 | 6f 3367 | 66 3368 | 20 3369 | 63 3370 | 75 3371 | 72 3372 | 69 3373 | 6f 3374 | 73 3375 | 69 3376 | 74 3377 | 79 3378 | 2e 3379 | 20 3380 | 20 3381 | 4d 3382 | 79 3383 | 20 3384 | 63 3385 | 72 3386 | 69 3387 | 6d 3388 | 65 3389 | 20 3390 | 69 3391 | 73 3392 | 0a 3393 | 74 3394 | 68 3395 | 61 3396 | 74 3397 | 20 3398 | 6f 3399 | 66 3400 | 20 3401 | 6a 3402 | 75 3403 | 64 3404 | 67 3405 | 69 3406 | 6e 3407 | 67 3408 | 20 3409 | 70 3410 | 65 3411 | 6f 3412 | 70 3413 | 6c 3414 | 65 3415 | 20 3416 | 62 3417 | 79 3418 | 20 3419 | 77 3420 | 68 3421 | 61 3422 | 74 3423 | 20 3424 | 74 3425 | 68 3426 | 65 3427 | 79 3428 | 20 3429 | 73 3430 | 61 3431 | 79 3432 | 20 3433 | 61 3434 | 6e 3435 | 64 3436 | 20 3437 | 74 3438 | 68 3439 | 69 3440 | 6e 3441 | 6b 3442 | 2c 3443 | 20 3444 | 6e 3445 | 6f 3446 | 74 3447 | 20 3448 | 77 3449 | 68 3450 | 61 3451 | 74 3452 | 20 3453 | 74 3454 | 68 3455 | 65 3456 | 79 3457 | 20 3458 | 6c 3459 | 6f 3460 | 6f 3461 | 6b 3462 | 20 3463 | 6c 3464 | 69 3465 | 6b 3466 | 65 3467 | 2e 3468 | 0a 3469 | 4d 3470 | 79 3471 | 20 3472 | 63 3473 | 72 3474 | 69 3475 | 6d 3476 | 65 3477 | 20 3478 | 69 3479 | 73 3480 | 20 3481 | 74 3482 | 68 3483 | 61 3484 | 74 3485 | 20 3486 | 6f 3487 | 66 3488 | 20 3489 | 6f 3490 | 75 3491 | 74 3492 | 73 3493 | 6d 3494 | 61 3495 | 72 3496 | 74 3497 | 69 3498 | 6e 3499 | 67 3500 | 20 3501 | 79 3502 | 6f 3503 | 75 3504 | 2c 3505 | 20 3506 | 73 3507 | 6f 3508 | 6d 3509 | 65 3510 | 74 3511 | 68 3512 | 69 3513 | 6e 3514 | 67 3515 | 20 3516 | 74 3517 | 68 3518 | 61 3519 | 74 3520 | 20 3521 | 79 3522 | 6f 3523 | 75 3524 | 20 3525 | 77 3526 | 69 3527 | 6c 3528 | 6c 3529 | 20 3530 | 6e 3531 | 65 3532 | 76 3533 | 65 3534 | 72 3535 | 20 3536 | 66 3537 | 6f 3538 | 72 3539 | 67 3540 | 69 3541 | 76 3542 | 65 3543 | 20 3544 | 6d 3545 | 65 3546 | 0a 3547 | 66 3548 | 6f 3549 | 72 3550 | 2e 3551 | 0a 3552 | 0a 3553 | 20 3554 | 20 3555 | 20 3556 | 20 3557 | 20 3558 | 20 3559 | 20 3560 | 20 3561 | 49 3562 | 20 3563 | 61 3564 | 6d 3565 | 20 3566 | 61 3567 | 20 3568 | 68 3569 | 61 3570 | 63 3571 | 6b 3572 | 65 3573 | 72 3574 | 2c 3575 | 20 3576 | 61 3577 | 6e 3578 | 64 3579 | 20 3580 | 74 3581 | 68 3582 | 69 3583 | 73 3584 | 20 3585 | 69 3586 | 73 3587 | 20 3588 | 6d 3589 | 79 3590 | 20 3591 | 6d 3592 | 61 3593 | 6e 3594 | 69 3595 | 66 3596 | 65 3597 | 73 3598 | 74 3599 | 6f 3600 | 2e 3601 | 20 3602 | 20 3603 | 59 3604 | 6f 3605 | 75 3606 | 20 3607 | 6d 3608 | 61 3609 | 79 3610 | 20 3611 | 73 3612 | 74 3613 | 6f 3614 | 70 3615 | 20 3616 | 74 3617 | 68 3618 | 69 3619 | 73 3620 | 20 3621 | 69 3622 | 6e 3623 | 64 3624 | 69 3625 | 76 3626 | 69 3627 | 64 3628 | 75 3629 | 61 3630 | 6c 3631 | 2c 3632 | 0a 3633 | 62 3634 | 75 3635 | 74 3636 | 20 3637 | 79 3638 | 6f 3639 | 75 3640 | 20 3641 | 63 3642 | 61 3643 | 6e 3644 | 27 3645 | 74 3646 | 20 3647 | 73 3648 | 74 3649 | 6f 3650 | 70 3651 | 20 3652 | 75 3653 | 73 3654 | 20 3655 | 61 3656 | 6c 3657 | 6c 3658 | 2e 3659 | 2e 3660 | 2e 3661 | 20 3662 | 61 3663 | 66 3664 | 74 3665 | 65 3666 | 72 3667 | 20 3668 | 61 3669 | 6c 3670 | 6c 3671 | 2c 3672 | 20 3673 | 77 3674 | 65 3675 | 27 3676 | 72 3677 | 65 3678 | 20 3679 | 61 3680 | 6c 3681 | 6c 3682 | 20 3683 | 61 3684 | 6c 3685 | 69 3686 | 6b 3687 | 65 3688 | 2e 3689 | 0a 3690 | 0a 3691 | 20 3692 | 20 3693 | 20 3694 | 20 3695 | 20 3696 | 20 3697 | 20 3698 | 20 3699 | 20 3700 | 20 3701 | 20 3702 | 20 3703 | 20 3704 | 20 3705 | 20 3706 | 20 3707 | 20 3708 | 20 3709 | 20 3710 | 20 3711 | 20 3712 | 20 3713 | 20 3714 | 20 3715 | 20 3716 | 20 3717 | 20 3718 | 20 3719 | 20 3720 | 20 3721 | 20 3722 | 2b 3723 | 2b 3724 | 2b 3725 | 54 3726 | 68 3727 | 65 3728 | 20 3729 | 4d 3730 | 65 3731 | 6e 3732 | 74 3733 | 6f 3734 | 72 3735 | 2b 3736 | 2b 3737 | 2b 3738 | 0a 3739 | -------------------------------------------------------------------------------- /ringzer0team/steganography/hidden-in-plain-sight/original.txt: -------------------------------------------------------------------------------- 1 | ==Phrack Inc.== 2 | 3 | Volume One, Issue 7, Phile 3 of 10 4 | 5 | =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= 6 | The following was written shortly after my arrest... 7 | 8 | \/\The Conscience of a Hacker/\/ 9 | 10 | by 11 | 12 | +++The Mentor+++ 13 | 14 | Written on January 8, 1986 15 | =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= 16 | 17 | Another one got caught today, it's all over the papers. "Teenager 18 | Arrested in Computer Crime Scandal", "Hacker Arrested after Bank Tampering"... 19 | Damn kids. They're all alike. 20 | 21 | But did you, in your three-piece psychology and 1950's technobrain, 22 | ever take a look behind the eyes of the hacker? Did you ever wonder what 23 | made him tick, what forces shaped him, what may have molded him? 24 | I am a hacker, enter my world... 25 | Mine is a world that begins with school... I'm smarter than most of 26 | the other kids, this crap they teach us bores me... 27 | Damn underachiever. They're all alike. 28 | 29 | I'm in junior high or high school. I've listened to teachers explain 30 | for the fifteenth time how to reduce a fraction. I understand it. "No, Ms. 31 | Smith, I didn't show my work. I did it in my head..." 32 | Damn kid. Probably copied it. They're all alike. 33 | 34 | I made a discovery today. I found a computer. Wait a second, this is 35 | cool. It does what I want it to. If it makes a mistake, it's because I 36 | screwed it up. Not because it doesn't like me... 37 | Or feels threatened by me... 38 | Or thinks I'm a smart ass... 39 | Or doesn't like teaching and shouldn't be here... 40 | Damn kid. All he does is play games. They're all alike. 41 | 42 | And then it happened... a door opened to a world... rushing through 43 | the phone line like heroin through an addict's veins, an electronic pulse is 44 | sent out, a refuge from the day-to-day incompetencies is sought... a board is 45 | found. 46 | "This is it... this is where I belong..." 47 | I know everyone here... even if I've never met them, never talked to 48 | them, may never hear from them again... I know you all... 49 | Damn kid. Tying up the phone line again. They're all alike... 50 | 51 | You bet your ass we're all alike... we've been spoon-fed baby food at 52 | school when we hungered for steak... the bits of meat that you did let slip 53 | through were pre-chewed and tasteless. We've been dominated by sadists, or 54 | ignored by the apathetic. The few that had something to teach found us will- 55 | ing pupils, but those few are like drops of water in the desert. 56 | 57 | This is our world now... the world of the electron and the switch, the 58 | beauty of the baud. We make use of a service already existing without paying 59 | for what could be dirt-cheap if it wasn't run by profiteering gluttons, and 60 | you call us criminals. We explore... and you call us criminals. We seek 61 | after knowledge... and you call us criminals. We exist without skin color, 62 | without nationality, without religious bias... and you call us criminals. 63 | You build atomic bombs, you wage wars, you murder, cheat, and lie to us 64 | and try to make us believe it's for our own good, yet we're the criminals. 65 | 66 | Yes, I am a criminal. My crime is that of curiosity. My crime is 67 | that of judging people by what they say and think, not what they look like. 68 | My crime is that of outsmarting you, something that you will never forgive me 69 | for. 70 | 71 | I am a hacker, and this is my manifesto. You may stop this individual, 72 | but you can't stop us all... after all, we're all alike. 73 | 74 | +++The Mentor+++ 75 | -------------------------------------------------------------------------------- /ringzer0team/steganography/look-inside-the-house/3e634b3b5d0658c903fc8d42b033fa57.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezaomidi/ctf/9732475a5d8d188561eb9329e2699388111865f6/ringzer0team/steganography/look-inside-the-house/3e634b3b5d0658c903fc8d42b033fa57.jpg -------------------------------------------------------------------------------- /ringzer0team/steganography/look-inside-the-house/README.md: -------------------------------------------------------------------------------- 1 | # [Look Inside The House](http://ringzer0team.com/challenges/18) 2 | 3 | There is something hidden in the image. To gain that, we use [Steghide](http://steghide.sourceforge.net/download.php) command line tool. 4 | 5 | Ubuntu / Debian: `sudo apt-get install steghide` 6 | 7 | First Let's see if there is a stegofile inside the image or not: 8 | ``` 9 | $ cd DIR 10 | $ steghide info 3e634b3b5d0658c903fc8d42b033fa57.jpg 11 | "3e634b3b5d0658c903fc8d42b033fa57.jpg": 12 | format: jpeg 13 | capacity: 7.0 KB 14 | Try to get information about embedded data ? (y/n) y 15 | Enter passphrase: 16 | embedded file "flag.txt": 17 | size: 29.0 Byte 18 | encrypted: rijndael-128, cbc 19 | compressed: yes 20 | ``` 21 | 22 | * **DIR** is where the image is. 23 | * The **passphrase** is empty for this image. Just Press **Enter** key. 24 | 25 | So there is a **flag.txt** in the image. 26 | 27 | ``` 28 | $ steghide extract -sf 3e634b3b5d0658c903fc8d42b033fa57.jpg 29 | Enter passphrase: 30 | the file flag.txt does already exist. overwrite ? (y/n) y 31 | wrote extracted data to flag.txt. 32 | ``` 33 | 34 | The **flag.txt** file contains the **FLAG**: 35 | ``` 36 | $ cat flag.txt 37 | FLAG-5jk682aqoepoi582r940oow 38 | ``` 39 | 40 | Enjoy! -------------------------------------------------------------------------------- /ringzer0team/steganography/look-inside-the-house/flag.txt: -------------------------------------------------------------------------------- 1 | FLAG-5jk682aqoepoi582r940oow 2 | -------------------------------------------------------------------------------- /ringzer0team/steganography/missing-peaces/README.md: -------------------------------------------------------------------------------- 1 | # [Missing Peaces](http://ringzer0team.com/challenges/129) 2 | 3 | In the down-right corner of the image, there is a QRCode. Just scan it! 4 | 5 | Here I cut the QR Code from the original image and called it **qr.png**. Then used `convert` tool from the [ImageMagick](http://www.imagemagick.org/script/binary-releases.php) package to make a black on white - readable QR Code: 6 | 7 | ``` 8 | $ convert qr.png -white-threshold 0 qr-bw.png 9 | ``` 10 | 11 | ![QR Code](qr-bw.png) 12 | 13 | Now scan it and here is the flag: **flag-517qBd4tesUTUomYdz7W** -------------------------------------------------------------------------------- /ringzer0team/steganography/missing-peaces/b730986ccddd83b5f6fb66d2ec362475.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezaomidi/ctf/9732475a5d8d188561eb9329e2699388111865f6/ringzer0team/steganography/missing-peaces/b730986ccddd83b5f6fb66d2ec362475.jpeg -------------------------------------------------------------------------------- /ringzer0team/steganography/missing-peaces/qr-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezaomidi/ctf/9732475a5d8d188561eb9329e2699388111865f6/ringzer0team/steganography/missing-peaces/qr-bw.png -------------------------------------------------------------------------------- /ringzer0team/steganography/missing-peaces/qr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezaomidi/ctf/9732475a5d8d188561eb9329e2699388111865f6/ringzer0team/steganography/missing-peaces/qr.png -------------------------------------------------------------------------------- /ringzer0team/steganography/sig-id-level-1/README.md: -------------------------------------------------------------------------------- 1 | # [SigID Level 1](http://ringzer0team.com/challenges/136) 2 | After downloading the .ogg file, you need to open it with an audio editor/visualizer application. 3 | Here we use [Sonic Visualizer](http://www.sonicvisualiser.org/download.html). 4 | 5 | Ubuntu / Debian Linux: 6 | 7 | `sudo apt-get install sonic-visualiser` 8 | 9 | After you downloaded and installed it, open Sonic Visualizer from application pane. type `sonic-visualizer` in a command line alternatively. 10 | 11 | Open the .ogg file in the application. Then click on Layer > Add Spectrogram menu (Press G on keyboard). 12 | 13 | This is what you'll see then: 14 | ![Ogg file opened in Sonic Visualizer](sonic.png) 15 | 16 | Just scan the QR Code on the left side and there it is! The FLAG! 17 | 18 | **the flag is : mathsRulesTheUniverse** 19 | 20 | * Hint: You may want to change the green-noisy QR Code to a black and white one and so your barcode reader can read it then. For this purpose just take a screenshot from the QR Code (Hold Shift, Press PrintScreen on keyboard if you have an Ubuntu and draw a rectangle covering the QR Code.), open it in [Gimp Image Editor](http://www.gimp.org/downloads/) and click on Colors > Threshold. Like this: 21 | ![QR code opened in Gimp Image Editor](qr.png) 22 | Adjust the threshold bar till it becomes a good-looking black on white QR Code. Then scan it with your Barcode Scanner. An android Barcode Scanner could be found [Here](https://play.google.com/store/apps/details?id=com.google.zxing.client.android&hl=en) and an online one [Here](http://zxing.org/w/decode.jspx). 23 | * The QR Code type is Aztec. 24 | 25 | ## Hint for SigID Level 2 26 | As you see in the first picture in this writeup, there is more than just a QR Code. Let's look at it carefully: 27 | ![SigID Level 2 Hint](hint.png) 28 | 29 | It says: **Close to the solution ...... ringzer0team.com** 30 | 31 | The central part of the image is a hint. Look with more care: 32 | ![Morse Code](hint2.png) 33 | 34 | It is dots and dashes. Yes! It is **Morse code**! 35 | Just Decode it to get the hint for SigID level 2. There is a morse code decoder [Here](http://morsecode.scphillips.com/translator.html). 36 | 37 | It says: **HINT FOR SIG ID LEVEL 2 USE GNU RADIO GRC USE DEFAULT BLOCKS NO ADDITIONAL CODE REQUIRED** 38 | 39 | Next -> [SigID Level 2 Writeup](https://github.com/alirezaomidi/ctf/tree/master/ringzer0team/steganography/sig-id-level-2) 40 | 41 | By the way, have you seen [Interstellar](http://www.imdb.com/title/tt0816692/) Movie?! This level just recalled me this movie! 42 | 43 | Enjoy! -------------------------------------------------------------------------------- /ringzer0team/steganography/sig-id-level-1/hint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezaomidi/ctf/9732475a5d8d188561eb9329e2699388111865f6/ringzer0team/steganography/sig-id-level-1/hint.png -------------------------------------------------------------------------------- /ringzer0team/steganography/sig-id-level-1/hint2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezaomidi/ctf/9732475a5d8d188561eb9329e2699388111865f6/ringzer0team/steganography/sig-id-level-1/hint2.png -------------------------------------------------------------------------------- /ringzer0team/steganography/sig-id-level-1/qr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezaomidi/ctf/9732475a5d8d188561eb9329e2699388111865f6/ringzer0team/steganography/sig-id-level-1/qr.png -------------------------------------------------------------------------------- /ringzer0team/steganography/sig-id-level-1/sonic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezaomidi/ctf/9732475a5d8d188561eb9329e2699388111865f6/ringzer0team/steganography/sig-id-level-1/sonic.png -------------------------------------------------------------------------------- /ringzer0team/steganography/sig-id-level-2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezaomidi/ctf/9732475a5d8d188561eb9329e2699388111865f6/ringzer0team/steganography/sig-id-level-2/README.md -------------------------------------------------------------------------------- /ringzer0team/steganography/taps-team-have-recorded-some-ghost-sound/15d087d9cc86e82b87d0e5ce2cef8583.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezaomidi/ctf/9732475a5d8d188561eb9329e2699388111865f6/ringzer0team/steganography/taps-team-have-recorded-some-ghost-sound/15d087d9cc86e82b87d0e5ce2cef8583.wav -------------------------------------------------------------------------------- /ringzer0team/steganography/taps-team-have-recorded-some-ghost-sound/README.md: -------------------------------------------------------------------------------- 1 | # [TAPS Team Have Recorded Some Ghost Sound](http://ringzer0team.com/challenges/22) 2 | 3 | For this problem, we need an audio visualizer. Here We use [Sonic Visualizer](http://www.sonicvisualiser.org/download.html). 4 | 5 | Ubuntu / Debian: `sudo apt-get install sonic-visualizer` 6 | 7 | Now: 8 | 9 | ``` 10 | $ sonic-visualiser 15d087d9cc86e82b87d0e5ce2cef8583.wav 11 | ``` 12 | 13 | From the **Layer** menu, choose **Add Spectrogram** (Press **G** on keyboard) and there is the flag: 14 | 15 | ![FLAG](sonic.png) 16 | 17 | Enjoy! -------------------------------------------------------------------------------- /ringzer0team/steganography/taps-team-have-recorded-some-ghost-sound/sonic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezaomidi/ctf/9732475a5d8d188561eb9329e2699388111865f6/ringzer0team/steganography/taps-team-have-recorded-some-ghost-sound/sonic.png -------------------------------------------------------------------------------- /ringzer0team/steganography/victor-reloaded/README.md: -------------------------------------------------------------------------------- 1 | # [Victor Reloaded](http://ringzer0team.com/challenges/71) 2 | 3 | This is a poetry from [Victor Hugo]() but with some issues. Some of the characters are wrong. Thanks to **Google** we can see the original poetry. 4 | 5 | We have both of them in `issues.txt` and `original.txt`. 6 | 7 | Do the following on a command line: 8 | ``` 9 | $ # split all of the characters for both files 10 | $ # Then we can use diff on them 11 | $ cat issues.txt | fold -w1 > ours.txt 12 | $ cat original.txt | fold -w1 > victors.txt 13 | $ diff -y --suppress-common-lines ours.txt victors.txt | cut -f9 | tr -d '\n' 14 | flagarenice 15 | ``` 16 | 17 | So the flag is: **flagarenice** 18 | 19 | * See both `ours.txt` and `victor.txt` and also the `diff` command's job here for more info! 20 | 21 | **Enjoy!** -------------------------------------------------------------------------------- /ringzer0team/steganography/victor-reloaded/issues.txt: -------------------------------------------------------------------------------- 1 | Viens ! - une phlûte invisibe 2 | Soupire dens les verjers. - 3 | La chenson la plus paisible 4 | Est la chanson des bergeés. 5 | 6 | Le vant ride, sous l'yeuse, 7 | Le sombre miroir des eaux. - 8 | La chamson la plus joyeuse 9 | Est la chanson des oyseaux. 10 | 11 | Que nul soin ne te tourmente. 12 | Aimons-nous! aimons toujours ! - 13 | La shanson la plus charmante 14 | Est la chanson dais amours. 15 | -------------------------------------------------------------------------------- /ringzer0team/steganography/victor-reloaded/original.txt: -------------------------------------------------------------------------------- 1 | Viens ! - une flûte invisible 2 | Soupire dans les vergers. - 3 | La chanson la plus paisible 4 | Est la chanson des bergers. 5 | 6 | Le vent ride, sous l'yeuse, 7 | Le sombre miroir des eaux. - 8 | La chanson la plus joyeuse 9 | Est la chanson des oiseaux. 10 | 11 | Que nul soin ne te tourmente. 12 | Aimons-nous! aimons toujours ! - 13 | La chanson la plus charmante 14 | Est la chanson des amours. 15 | -------------------------------------------------------------------------------- /ringzer0team/steganography/victor-reloaded/ours.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezaomidi/ctf/9732475a5d8d188561eb9329e2699388111865f6/ringzer0team/steganography/victor-reloaded/ours.txt -------------------------------------------------------------------------------- /ringzer0team/steganography/victor-reloaded/victors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezaomidi/ctf/9732475a5d8d188561eb9329e2699388111865f6/ringzer0team/steganography/victor-reloaded/victors.txt -------------------------------------------------------------------------------- /ringzer0team/steganography/victor-youre-hiding-me-sth/README.md: -------------------------------------------------------------------------------- 1 | # [Victor You Are Hiding Me Something](http://ringzer0team.com/challenges/22) 2 | 3 | This is an old steganography trick. Just concatenate the first letters of each line: 4 | 5 | First copy the poetry to a file. Here we call it **poetry.txt**. Then in a Linux command line do: 6 | ``` 7 | $ grep -Po '^.' poetry.txt | tr -d '\n' 8 | FLAGCMPHDDSQNUCCPNNSOQACJOOP 9 | ``` 10 | 11 | Easy! Wasn't it?! -------------------------------------------------------------------------------- /ringzer0team/steganography/victor-youre-hiding-me-sth/poetry.txt: -------------------------------------------------------------------------------- 1 | Fort heureux l'homme qui trouvera 2 | La vérité au travère des noires 3 | Abysses d'une âme tourmenter par la 4 | Galère d'un amour improbable. 5 | 6 | Ces âmes que tu rappelles, 7 | Mon coeur, ne reviennent pas. 8 | Pourquoi donc s'obstinent-elles, 9 | Hélas ! à rester là-bas ? 10 | 11 | Dans les sphères éclatantes, 12 | Dans l'azur et les rayons, 13 | Sont-elles donc plus contentes 14 | Qu'avec nous qui les aimions ? 15 | 16 | Nous avions sous les tonnelles 17 | Une maison près Saint-Leu. 18 | Comme les fleurs étaient belles ! 19 | Comme le ciel était bleu ! 20 | 21 | Parmi les feuilles tombées, 22 | Nous courions au bois vermeil ; 23 | Nous cherchions des scarabées 24 | Sur les vieux murs au soleil ; 25 | 26 | On riait de ce bon rire 27 | Qu'Éden jadis entendit, 28 | Ayant toujours à se dire 29 | Ce qu'on s'était déjà dit ; 30 | 31 | Je contais la Mère l'Oie ; 32 | On était heureux, Dieu sait ! 33 | On poussait des cris de joie 34 | Pour un oiseau qui passait. 35 | -------------------------------------------------------------------------------- /ringzer0team/steganography/your-old-friend-orloge-simard/135553e7dfe65469fcf69c167fd1979a.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezaomidi/ctf/9732475a5d8d188561eb9329e2699388111865f6/ringzer0team/steganography/your-old-friend-orloge-simard/135553e7dfe65469fcf69c167fd1979a.mp3 -------------------------------------------------------------------------------- /ringzer0team/steganography/your-old-friend-orloge-simard/README.md: -------------------------------------------------------------------------------- 1 | # [Your Old Friend Orloge Simard](http://ringzer0team.com/challenges/106) 2 | 3 | First download the gift of our friend! 4 | 5 | Use [Sonic Visualizer](http://www.sonicvisualiser.org/download.html): 6 | ``` 7 | $ sonic-visualiser 135553e7dfe65469fcf69c167fd1979a.mp3 8 | ``` 9 | 10 | From **Layer** menu, choose **Add Spectrogram** then **Channel 1**. 11 | 12 | ![Sonic 1](sonic1.png) 13 | 14 | As you can see, there is something in the gap, in the first quarter of channel 1. Zoom to see it better: 15 | 16 | ![Morse Code](morse.png) 17 | 18 | I like seeing **Morse Codes** in steganography problems! But this code is a bit different! You have to read it from right to left. like this: 19 | 20 | ![Flag Morse](flag-morse.png) 21 | 22 | `..-. .-.. .- --.` which means **FLAG**. 23 | 24 | So the **flag** is: **FLAGDONNEMOITAJAMBE** 25 | 26 | Enjoy! -------------------------------------------------------------------------------- /ringzer0team/steganography/your-old-friend-orloge-simard/flag-morse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezaomidi/ctf/9732475a5d8d188561eb9329e2699388111865f6/ringzer0team/steganography/your-old-friend-orloge-simard/flag-morse.png -------------------------------------------------------------------------------- /ringzer0team/steganography/your-old-friend-orloge-simard/morse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezaomidi/ctf/9732475a5d8d188561eb9329e2699388111865f6/ringzer0team/steganography/your-old-friend-orloge-simard/morse.png -------------------------------------------------------------------------------- /ringzer0team/steganography/your-old-friend-orloge-simard/sonic1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezaomidi/ctf/9732475a5d8d188561eb9329e2699388111865f6/ringzer0team/steganography/your-old-friend-orloge-simard/sonic1.png -------------------------------------------------------------------------------- /ringzer0team/web/headache/README.md: -------------------------------------------------------------------------------- 1 | # [Headache](http://ringzer0team.com/challenges/43) 2 | 3 | This challenge is about Head! Let's see what the Headers say!: 4 | 5 | ![Flag](flag.png) 6 | 7 | As you can see, Flag value is **FLAG-365m4fU5p2DVEQbfrptDE5Ru** . 8 | 9 | Enjoy! -------------------------------------------------------------------------------- /ringzer0team/web/headache/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezaomidi/ctf/9732475a5d8d188561eb9329e2699388111865f6/ringzer0team/web/headache/flag.png -------------------------------------------------------------------------------- /ringzer0team/web/looking-for-password-file/README.md: -------------------------------------------------------------------------------- 1 | # [Looking for Password File](http://ringzer0team.com/challenges/75) 2 | 3 | [Password File](https://en.wikipedia.org/wiki/Passwd) is just where it was: `/etc/passwd`! Just ask the challenge for it: 4 | ``` 5 | http://ringzer0team.com:1008/?page=/etc/passwd 6 | ``` 7 | 8 | Search the page for flag and here it is: **FLAG-zH9g1934v774Y7Zx5s16t5ym8Z** 9 | 10 | The flag is the [Gecos Field](https://en.wikipedia.org/wiki/Gecos_field) of user **nobody**. Well! -------------------------------------------------------------------------------- /ringzer0team/web/words-mean-something/README.md: -------------------------------------------------------------------------------- 1 | # [Words Mean Something](http://ringzer0team.com/challenges/42) 2 | 3 | This challenge is about [cookie!](https://en.wikipedia.org/wiki/HTTP_cookie) not the sweet one, The HTTP one! 4 | 5 | Let's look at this page's cookies: 6 | 1. Press F12 to see Developer Options in your browser. 7 | 2. Find *Resources* tab, then cookies. 8 | 3. Click on *ringzer0team.com* cookie. 9 | 10 | You see **flag** value is **0**. Maybe it should be **1**! 11 | 12 | To change it in the *Console* tab in Developer Options: 13 | ``` 14 | > document.cookie = "flag=1" 15 | ``` 16 | or if you want to save the session: 17 | ``` 18 | > document.cookie = document.cookie.replace("flag=0", "flag=1") 19 | ``` 20 | 21 | Press refresh the page and here is the flag: **FLAG-AnlAb6QxDpQvg1yn2bAhyOJw** 22 | 23 | Enjoy! --------------------------------------------------------------------------------