Thanks to @shutterbug2000 and @Larsenv for scraping these, I just decoded them and dumped them all into a markdown doc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "grinning": "\ud83d\ude00", | |
| "smiley": "\ud83d\ude03", | |
| "smile": "\ud83d\ude04", | |
| "grin": "\ud83d\ude01", | |
| "laughing": "\ud83d\ude06", | |
| "satisfied": "\ud83d\ude06", | |
| "face_holding_back_tears": "\ud83e\udd79", | |
| "sweat_smile": "\ud83d\ude05", | |
| "joy": "\ud83d\ude02", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Decrypt Mii QR codes from 3DS / Wii U / Miitomo | |
| # Usage: python3 <input file> <output file> | |
| # QR docs: https://www.3dbrew.org/wiki/Mii_Maker | |
| from Crypto.Cipher import AES | |
| from sys import argv | |
| key = bytes([0x59, 0xFC, 0x81, 0x7E, 0x64, 0x46, 0xEA, 0x61, 0x90, 0x34, 0x7B, 0x20, 0xE9, 0xBD, 0xCE, 0x52]) | |
| with open(argv[1], "rb") as infile, open(argv[2], "wb") as outfile: |
NewerOlder