Last active
March 22, 2021 18:38
-
-
Save grorg/4772567 to your computer and use it in GitHub Desktop.
Use text substitution to make typing emoji easy on OS X.
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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <!-- | |
| Text expansion shortcuts for a bunch of emoji. | |
| e.g. ";poo" -> 💩 | |
| Not all emoji are included, but I tried to come up with obvious names. There | |
| are also a few in-jokes, sorry. | |
| Cheat sheet: https://gist.github.com/grorg/4773372 | |
| Installation: | |
| 1. Backup your system :) | |
| 2. Backup just the text replacements: | |
| /usr/libexec/PlistBuddy -x -c "Print NSUserReplacementItems" ~/Library/Preferences/.GlobalPreferences.plist > backup.plist | |
| 3. Save this file to emoji.plist | |
| 4. Merge it into the system replacement list: | |
| /usr/libexec/PlistBuddy -c "Merge emoji.plist NSUserReplacementItems" ~/Library/Preferences/.GlobalPreferences.plist | |
| 5. Open System Preferences -> Language & Text -> Text to confirm it worked. | |
| Note that the "Merge" command above doesn't remove duplicates, so you'll need | |
| to look up the manual page for PlistBuddy if you want to delete and start over. | |
| You might need to restart some apps for them to pick up the replacements. | |
| Comments and complaints to [email protected] | |
| (This file might be one of my greatest life achievements) | |
| --> | |
| <plist version="1.0"> | |
| <array> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;smilingface</string> | |
| <key>with</key> | |
| <string>😄</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;smilingmouth</string> | |
| <key>with</key> | |
| <string>😃</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;grinningface</string> | |
| <key>with</key> | |
| <string>😀</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;happyeyes</string> | |
| <key>with</key> | |
| <string>😊</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;winkingface</string> | |
| <key>with</key> | |
| <string>😉</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;hearteyes</string> | |
| <key>with</key> | |
| <string>😍</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;kissfaceheart</string> | |
| <key>with</key> | |
| <string>😘</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;kissface</string> | |
| <key>with</key> | |
| <string>😗</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;crazyface</string> | |
| <key>with</key> | |
| <string>😜</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;poketongue</string> | |
| <key>with</key> | |
| <string>😝</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;poketongue2</string> | |
| <key>with</key> | |
| <string>😛</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;eyesopen</string> | |
| <key>with</key> | |
| <string>😳</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;unhappyface</string> | |
| <key>with</key> | |
| <string>😒</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;cryface</string> | |
| <key>with</key> | |
| <string>😢</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;joytears</string> | |
| <key>with</key> | |
| <string>😂</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;loudcry</string> | |
| <key>with</key> | |
| <string>😭</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;sleepyface</string> | |
| <key>with</key> | |
| <string>😪</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;disappointed</string> | |
| <key>with</key> | |
| <string>😥</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;sweatyface</string> | |
| <key>with</key> | |
| <string>😰</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;coldsweatyface</string> | |
| <key>with</key> | |
| <string>😓</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;fearfulface</string> | |
| <key>with</key> | |
| <string>😨</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;scaredface</string> | |
| <key>with</key> | |
| <string>😱</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;angryface</string> | |
| <key>with</key> | |
| <string>😠</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;redface</string> | |
| <key>with</key> | |
| <string>😡</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;confusedface</string> | |
| <key>with</key> | |
| <string>😖</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;yummyface</string> | |
| <key>with</key> | |
| <string>😋</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;maskface</string> | |
| <key>with</key> | |
| <string>😷</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;sunglasses</string> | |
| <key>with</key> | |
| <string>😎</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;dwi</string> | |
| <key>with</key> | |
| <string>😎 DEAL WITH IT</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;sleepingface</string> | |
| <key>with</key> | |
| <string>😴</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;worriedface</string> | |
| <key>with</key> | |
| <string>😟</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;impface</string> | |
| <key>with</key> | |
| <string>👿</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;mitzface</string> | |
| <key>with</key> | |
| <string>😐</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;confusedface</string> | |
| <key>with</key> | |
| <string>😕</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;angelface</string> | |
| <key>with</key> | |
| <string>😇</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;smirkface</string> | |
| <key>with</key> | |
| <string>😏</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;popo</string> | |
| <key>with</key> | |
| <string>👮</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;police</string> | |
| <key>with</key> | |
| <string>👮</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;hardhat</string> | |
| <key>with</key> | |
| <string>👷</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;baby</string> | |
| <key>with</key> | |
| <string>👶</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;boy</string> | |
| <key>with</key> | |
| <string>👦</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;girl</string> | |
| <key>with</key> | |
| <string>👧</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;man</string> | |
| <key>with</key> | |
| <string>👨</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;woman</string> | |
| <key>with</key> | |
| <string>👩</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;oldman</string> | |
| <key>with</key> | |
| <string>👴</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;oldwoman</string> | |
| <key>with</key> | |
| <string>👵</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;angel</string> | |
| <key>with</key> | |
| <string>👼</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;princess</string> | |
| <key>with</key> | |
| <string>👸</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;hyatt</string> | |
| <key>with</key> | |
| <string>👸</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;monkeys</string> | |
| <key>with</key> | |
| <string>🙈🙉🙊</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;skull</string> | |
| <key>with</key> | |
| <string>💀</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;alien</string> | |
| <key>with</key> | |
| <string>👽</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;monster</string> | |
| <key>with</key> | |
| <string>👹</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;poo</string> | |
| <key>with</key> | |
| <string>💩</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;fire</string> | |
| <key>with</key> | |
| <string>🔥</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;sparklemotion</string> | |
| <key>with</key> | |
| <string>✨</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;star</string> | |
| <key>with</key> | |
| <string>🌟</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;boom</string> | |
| <key>with</key> | |
| <string>💥</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;droplet</string> | |
| <key>with</key> | |
| <string>💧</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;zzz</string> | |
| <key>with</key> | |
| <string>💤</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;ear</string> | |
| <key>with</key> | |
| <string>👂</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;eyes</string> | |
| <key>with</key> | |
| <string>👀</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;nose</string> | |
| <key>with</key> | |
| <string>👃</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;tongue</string> | |
| <key>with</key> | |
| <string>👅</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;mouth</string> | |
| <key>with</key> | |
| <string>👄</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;thumbsup</string> | |
| <key>with</key> | |
| <string>👍</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;thumbsdown</string> | |
| <key>with</key> | |
| <string>👎</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;ok</string> | |
| <key>with</key> | |
| <string>👌</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;fistbump</string> | |
| <key>with</key> | |
| <string>👊</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;wave</string> | |
| <key>with</key> | |
| <string>👋</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;highfive</string> | |
| <key>with</key> | |
| <string>✋</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;whatever</string> | |
| <key>with</key> | |
| <string>👐</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;upthere</string> | |
| <key>with</key> | |
| <string>👆</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;downthere</string> | |
| <key>with</key> | |
| <string>👇</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;pointright</string> | |
| <key>with</key> | |
| <string>👉</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;pointleft</string> | |
| <key>with</key> | |
| <string>👈</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;raiseroof</string> | |
| <key>with</key> | |
| <string>🙌</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;clap</string> | |
| <key>with</key> | |
| <string>👏</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;guns</string> | |
| <key>with</key> | |
| <string>💪</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;walk</string> | |
| <key>with</key> | |
| <string>🚶</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;run</string> | |
| <key>with</key> | |
| <string>🏃</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;dance</string> | |
| <key>with</key> | |
| <string>💃</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;manwoman</string> | |
| <key>with</key> | |
| <string>👫</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;family</string> | |
| <key>with</key> | |
| <string>👪</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;twomen</string> | |
| <key>with</key> | |
| <string>👬</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;twowomen</string> | |
| <key>with</key> | |
| <string>👭</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;kiss</string> | |
| <key>with</key> | |
| <string>💏</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;notok</string> | |
| <key>with</key> | |
| <string>🙅</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;massage</string> | |
| <key>with</key> | |
| <string>💆</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;haircut</string> | |
| <key>with</key> | |
| <string>💇</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;fingernail</string> | |
| <key>with</key> | |
| <string>💅</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;bride</string> | |
| <key>with</key> | |
| <string>👰</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;tophat</string> | |
| <key>with</key> | |
| <string>🎩</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;crown</string> | |
| <key>with</key> | |
| <string>👑</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;hat</string> | |
| <key>with</key> | |
| <string>👒</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;shoe</string> | |
| <key>with</key> | |
| <string>👟</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;manshoe</string> | |
| <key>with</key> | |
| <string>👞</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;womanshoe</string> | |
| <key>with</key> | |
| <string>👡</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;highheel</string> | |
| <key>with</key> | |
| <string>👠</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;boot</string> | |
| <key>with</key> | |
| <string>👢</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;tshirt</string> | |
| <key>with</key> | |
| <string>👕</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;tie</string> | |
| <key>with</key> | |
| <string>👔</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;dress</string> | |
| <key>with</key> | |
| <string>👗</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;jeans</string> | |
| <key>with</key> | |
| <string>👖</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;bikini</string> | |
| <key>with</key> | |
| <string>👙</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;briefcase</string> | |
| <key>with</key> | |
| <string>💼</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;handbag</string> | |
| <key>with</key> | |
| <string>👜</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;glasses</string> | |
| <key>with</key> | |
| <string>👓</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;ribbon</string> | |
| <key>with</key> | |
| <string>🎀</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;umbrella</string> | |
| <key>with</key> | |
| <string>🌂</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;lipstick</string> | |
| <key>with</key> | |
| <string>💄</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;yellowheart</string> | |
| <key>with</key> | |
| <string>💛</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;blueheart</string> | |
| <key>with</key> | |
| <string>💙</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;brokenheart</string> | |
| <key>with</key> | |
| <string>💔</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;twohearts</string> | |
| <key>with</key> | |
| <string>💕</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;sparkleheart</string> | |
| <key>with</key> | |
| <string>💖</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;arrowheart</string> | |
| <key>with</key> | |
| <string>💘</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;loveletter</string> | |
| <key>with</key> | |
| <string>💌</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;kissmark</string> | |
| <key>with</key> | |
| <string>💋</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;ring</string> | |
| <key>with</key> | |
| <string>💍</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;jewel</string> | |
| <key>with</key> | |
| <string>💎</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;speech</string> | |
| <key>with</key> | |
| <string>💬</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;footprints</string> | |
| <key>with</key> | |
| <string>👣</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;thought</string> | |
| <key>with</key> | |
| <string>💭</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;dog</string> | |
| <key>with</key> | |
| <string>🐶</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;cat</string> | |
| <key>with</key> | |
| <string>🐱</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;mouse</string> | |
| <key>with</key> | |
| <string>🐭</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;hamster</string> | |
| <key>with</key> | |
| <string>🐹</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;rabbit</string> | |
| <key>with</key> | |
| <string>🐰</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;frog</string> | |
| <key>with</key> | |
| <string>🐸</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;tiger</string> | |
| <key>with</key> | |
| <string>🐯</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;koala</string> | |
| <key>with</key> | |
| <string>🐨</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;bear</string> | |
| <key>with</key> | |
| <string>🐻</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;pig</string> | |
| <key>with</key> | |
| <string>🐷</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;cow</string> | |
| <key>with</key> | |
| <string>🐮</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;monkey</string> | |
| <key>with</key> | |
| <string>🐵</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;horse</string> | |
| <key>with</key> | |
| <string>🐴</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;sheep</string> | |
| <key>with</key> | |
| <string>🐑</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;elephant</string> | |
| <key>with</key> | |
| <string>🐘</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;panda</string> | |
| <key>with</key> | |
| <string>🐼</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;penguin</string> | |
| <key>with</key> | |
| <string>🐧</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;bird</string> | |
| <key>with</key> | |
| <string>🐦</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;chick</string> | |
| <key>with</key> | |
| <string>🐤</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;hatching</string> | |
| <key>with</key> | |
| <string>🐣</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;chicken</string> | |
| <key>with</key> | |
| <string>🐔</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;snake</string> | |
| <key>with</key> | |
| <string>🐍</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;turtle</string> | |
| <key>with</key> | |
| <string>🐢</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;bug</string> | |
| <key>with</key> | |
| <string>🐛</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;bee</string> | |
| <key>with</key> | |
| <string>🐝</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;ant</string> | |
| <key>with</key> | |
| <string>🐜</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;beetle</string> | |
| <key>with</key> | |
| <string>🐞</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;snail</string> | |
| <key>with</key> | |
| <string>🐌</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;octopus</string> | |
| <key>with</key> | |
| <string>🐙</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;tropicalfish</string> | |
| <key>with</key> | |
| <string>🐠</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;fish</string> | |
| <key>with</key> | |
| <string>🐟</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;dolphin</string> | |
| <key>with</key> | |
| <string>🐬</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;whale</string> | |
| <key>with</key> | |
| <string>🐳</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;crocodile</string> | |
| <key>with</key> | |
| <string>🐊</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;bouquet</string> | |
| <key>with</key> | |
| <string>💐</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;cherryblossom</string> | |
| <key>with</key> | |
| <string>🌸</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;tulip</string> | |
| <key>with</key> | |
| <string>🌷</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;clover</string> | |
| <key>with</key> | |
| <string>🍀</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;rose</string> | |
| <key>with</key> | |
| <string>🌹</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;sunflower</string> | |
| <key>with</key> | |
| <string>🌻</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;hibiscus</string> | |
| <key>with</key> | |
| <string>🌺</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;mapleleaf</string> | |
| <key>with</key> | |
| <string>🍁</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;leaf1</string> | |
| <key>with</key> | |
| <string>🍃</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;leaf2</string> | |
| <key>with</key> | |
| <string>🍂</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;herb</string> | |
| <key>with</key> | |
| <string>🌿</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;mushroom</string> | |
| <key>with</key> | |
| <string>🍄</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;cactus</string> | |
| <key>with</key> | |
| <string>🌵</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;palmtree</string> | |
| <key>with</key> | |
| <string>🌴</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;tree</string> | |
| <key>with</key> | |
| <string>🌳</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;nut</string> | |
| <key>with</key> | |
| <string>🌰</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;blossom</string> | |
| <key>with</key> | |
| <string>🌼</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;earth</string> | |
| <key>with</key> | |
| <string>🌍</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;star</string> | |
| <key>with</key> | |
| <string>⭐</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;cloud</string> | |
| <key>with</key> | |
| <string>☁</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;voltage</string> | |
| <key>with</key> | |
| <string>⚡</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;raining</string> | |
| <key>with</key> | |
| <string>☔</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;snowflake</string> | |
| <key>with</key> | |
| <string>❄</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;snowman</string> | |
| <key>with</key> | |
| <string>⛄</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;cyclone</string> | |
| <key>with</key> | |
| <string>🌀</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;graduation</string> | |
| <key>with</key> | |
| <string>🎓</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;jackolantern</string> | |
| <key>with</key> | |
| <string>🎃</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;ghost</string> | |
| <key>with</key> | |
| <string>👻</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;santa</string> | |
| <key>with</key> | |
| <string>🎅</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;xmastree</string> | |
| <key>with</key> | |
| <string>🎄</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;gift</string> | |
| <key>with</key> | |
| <string>🎁</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;party</string> | |
| <key>with</key> | |
| <string>🎉</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;confetti</string> | |
| <key>with</key> | |
| <string>🎊</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;balloon</string> | |
| <key>with</key> | |
| <string>🎈</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;crystalball</string> | |
| <key>with</key> | |
| <string>🔮</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;moviecamera</string> | |
| <key>with</key> | |
| <string>🎥</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;camera</string> | |
| <key>with</key> | |
| <string>📷</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;videocamera</string> | |
| <key>with</key> | |
| <string>📹</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;VIDEOCASSETTE</string> | |
| <key>with</key> | |
| <string>📼</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;cd</string> | |
| <key>with</key> | |
| <string>💿</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;dvd</string> | |
| <key>with</key> | |
| <string>📀</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;minidisc</string> | |
| <key>with</key> | |
| <string>💽</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;floppy</string> | |
| <key>with</key> | |
| <string>💾</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;pc</string> | |
| <key>with</key> | |
| <string>💻</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;iphone</string> | |
| <key>with</key> | |
| <string>📱</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;phone</string> | |
| <key>with</key> | |
| <string>☎</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;phonehandset</string> | |
| <key>with</key> | |
| <string>📞</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;pager</string> | |
| <key>with</key> | |
| <string>📟</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;fax</string> | |
| <key>with</key> | |
| <string>📠</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;antenna</string> | |
| <key>with</key> | |
| <string>📡</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;tv</string> | |
| <key>with</key> | |
| <string>📺</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;radio</string> | |
| <key>with</key> | |
| <string>📻</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;speaker</string> | |
| <key>with</key> | |
| <string>🔈</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;mute</string> | |
| <key>with</key> | |
| <string>🔇</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;bell</string> | |
| <key>with</key> | |
| <string>🔔</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;mutebell</string> | |
| <key>with</key> | |
| <string>🔕</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;loudspeaker</string> | |
| <key>with</key> | |
| <string>📢</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;megaphone</string> | |
| <key>with</key> | |
| <string>📣</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;hourglass</string> | |
| <key>with</key> | |
| <string>⌛</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;alarm</string> | |
| <key>with</key> | |
| <string>⏰</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;watch</string> | |
| <key>with</key> | |
| <string>⌚</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;openlock</string> | |
| <key>with</key> | |
| <string>🔓</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;lock</string> | |
| <key>with</key> | |
| <string>🔒</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;key</string> | |
| <key>with</key> | |
| <string>🔑</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;lightbulb</string> | |
| <key>with</key> | |
| <string>💡</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;torch</string> | |
| <key>with</key> | |
| <string>🔦</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;bright</string> | |
| <key>with</key> | |
| <string>🔆</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;plug</string> | |
| <key>with</key> | |
| <string>🔌</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;battery</string> | |
| <key>with</key> | |
| <string>🔋</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;sherlock</string> | |
| <key>with</key> | |
| <string>🔍</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;bathtub</string> | |
| <key>with</key> | |
| <string>🛁</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;shower</string> | |
| <key>with</key> | |
| <string>🚿</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;toilet</string> | |
| <key>with</key> | |
| <string>🚽</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;wrench</string> | |
| <key>with</key> | |
| <string>🔧</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;spanner</string> | |
| <key>with</key> | |
| <string>🔧</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;nutsandbolts</string> | |
| <key>with</key> | |
| <string>🔩</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;hammer</string> | |
| <key>with</key> | |
| <string>🔨</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;door</string> | |
| <key>with</key> | |
| <string>🚪</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;bomb</string> | |
| <key>with</key> | |
| <string>💣</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;gun</string> | |
| <key>with</key> | |
| <string>🔫</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;knife</string> | |
| <key>with</key> | |
| <string>🔪</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;pill</string> | |
| <key>with</key> | |
| <string>💊</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;syringe</string> | |
| <key>with</key> | |
| <string>💉</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;moneybag</string> | |
| <key>with</key> | |
| <string>💰</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;money</string> | |
| <key>with</key> | |
| <string>💵</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;creditcard</string> | |
| <key>with</key> | |
| <string>💳</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;email</string> | |
| <key>with</key> | |
| <string>📧</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;inbox</string> | |
| <key>with</key> | |
| <string>📥</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;outbox</string> | |
| <key>with</key> | |
| <string>📤</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;envelope</string> | |
| <key>with</key> | |
| <string>✉</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;horn</string> | |
| <key>with</key> | |
| <string>📯</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;package</string> | |
| <key>with</key> | |
| <string>📦</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;memo</string> | |
| <key>with</key> | |
| <string>📝</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;page</string> | |
| <key>with</key> | |
| <string>📄</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;chart</string> | |
| <key>with</key> | |
| <string>📊</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;chartup</string> | |
| <key>with</key> | |
| <string>📈</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;chartdown</string> | |
| <key>with</key> | |
| <string>📉</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;scroll</string> | |
| <key>with</key> | |
| <string>📜</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;clipboard</string> | |
| <key>with</key> | |
| <string>📋</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;calendar</string> | |
| <key>with</key> | |
| <string>📅</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;cardindex</string> | |
| <key>with</key> | |
| <string>📇</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;folder</string> | |
| <key>with</key> | |
| <string>📁</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;openfolder</string> | |
| <key>with</key> | |
| <string>📂</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;pin</string> | |
| <key>with</key> | |
| <string>📌</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;paperclip</string> | |
| <key>with</key> | |
| <string>📎</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;pencil</string> | |
| <key>with</key> | |
| <string>✏</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;ruler</string> | |
| <key>with</key> | |
| <string>📏</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;triangleruler</string> | |
| <key>with</key> | |
| <string>📐</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;redbook</string> | |
| <key>with</key> | |
| <string>📕</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;greenbook</string> | |
| <key>with</key> | |
| <string>📗</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;bluebook</string> | |
| <key>with</key> | |
| <string>📘</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;notebook</string> | |
| <key>with</key> | |
| <string>📓</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;books</string> | |
| <key>with</key> | |
| <string>📚</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;openbook</string> | |
| <key>with</key> | |
| <string>📖</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;bookmark</string> | |
| <key>with</key> | |
| <string>🔖</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;microscope</string> | |
| <key>with</key> | |
| <string>🔬</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;telescope</string> | |
| <key>with</key> | |
| <string>🔭</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;newspaper</string> | |
| <key>with</key> | |
| <string>📰</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;palette</string> | |
| <key>with</key> | |
| <string>🎨</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;clapper</string> | |
| <key>with</key> | |
| <string>🎬</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;microphone</string> | |
| <key>with</key> | |
| <string>🎤</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;headphone</string> | |
| <key>with</key> | |
| <string>🎧</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;music</string> | |
| <key>with</key> | |
| <string>🎼</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;note</string> | |
| <key>with</key> | |
| <string>🎵</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;violin</string> | |
| <key>with</key> | |
| <string>🎻</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;trumpet</string> | |
| <key>with</key> | |
| <string>🎺</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;sax</string> | |
| <key>with</key> | |
| <string>🎷</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;guitar</string> | |
| <key>with</key> | |
| <string>🎸</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;spaceinvader</string> | |
| <key>with</key> | |
| <string>👾</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;videogame</string> | |
| <key>with</key> | |
| <string>🎮</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;die</string> | |
| <key>with</key> | |
| <string>🎲</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;bullseye</string> | |
| <key>with</key> | |
| <string>🎯</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;nfl</string> | |
| <key>with</key> | |
| <string>🏈</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;basketball</string> | |
| <key>with</key> | |
| <string>🏀</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;nba</string> | |
| <key>with</key> | |
| <string>🏀</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;football</string> | |
| <key>with</key> | |
| <string>⚽</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;soccerball</string> | |
| <key>with</key> | |
| <string>⚽</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;baseball</string> | |
| <key>with</key> | |
| <string>⚾</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;tennis</string> | |
| <key>with</key> | |
| <string>🎾</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;bowling</string> | |
| <key>with</key> | |
| <string>🎳</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;golfhole</string> | |
| <key>with</key> | |
| <string>⛳</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;cyclist</string> | |
| <key>with</key> | |
| <string>🚴</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;flag</string> | |
| <key>with</key> | |
| <string>🏁</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;horserace</string> | |
| <key>with</key> | |
| <string>🏇</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;trophy</string> | |
| <key>with</key> | |
| <string>🏆</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;ski</string> | |
| <key>with</key> | |
| <string>🎿</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;snowboard</string> | |
| <key>with</key> | |
| <string>🏂</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;swim</string> | |
| <key>with</key> | |
| <string>🏊</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;surf</string> | |
| <key>with</key> | |
| <string>🏄</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;coffee</string> | |
| <key>with</key> | |
| <string>☕</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;greentea</string> | |
| <key>with</key> | |
| <string>🍵</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;sake</string> | |
| <key>with</key> | |
| <string>🍶</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;babybottle</string> | |
| <key>with</key> | |
| <string>🍼</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;beer</string> | |
| <key>with</key> | |
| <string>🍺</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;cheers</string> | |
| <key>with</key> | |
| <string>🍻</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;cocktail</string> | |
| <key>with</key> | |
| <string>🍸</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;bettercocktail</string> | |
| <key>with</key> | |
| <string>🍹</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;wine</string> | |
| <key>with</key> | |
| <string>🍷</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;forkandknife</string> | |
| <key>with</key> | |
| <string>🍴</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;pizza</string> | |
| <key>with</key> | |
| <string>🍕</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;burger</string> | |
| <key>with</key> | |
| <string>🍔</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;fries</string> | |
| <key>with</key> | |
| <string>🍟</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;drumstick</string> | |
| <key>with</key> | |
| <string>🍗</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;sushi</string> | |
| <key>with</key> | |
| <string>🍣</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;rice</string> | |
| <key>with</key> | |
| <string>🍚</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;bowl</string> | |
| <key>with</key> | |
| <string>🍜</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;cooking</string> | |
| <key>with</key> | |
| <string>🍳</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;bread</string> | |
| <key>with</key> | |
| <string>🍞</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;donut</string> | |
| <key>with</key> | |
| <string>🍩</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;doughnut</string> | |
| <key>with</key> | |
| <string>🍩</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;softserve</string> | |
| <key>with</key> | |
| <string>🍦</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;icecream</string> | |
| <key>with</key> | |
| <string>🍨</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;birthdaycake</string> | |
| <key>with</key> | |
| <string>🎂</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;cake</string> | |
| <key>with</key> | |
| <string>🍰</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;cookie</string> | |
| <key>with</key> | |
| <string>🍪</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;chocolate</string> | |
| <key>with</key> | |
| <string>🍫</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;candy</string> | |
| <key>with</key> | |
| <string>🍬</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;lollipop</string> | |
| <key>with</key> | |
| <string>🍭</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;apple</string> | |
| <key>with</key> | |
| <string>🍎</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;redapple</string> | |
| <key>with</key> | |
| <string>🍎</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;greenapple</string> | |
| <key>with</key> | |
| <string>🍏</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;tangerine</string> | |
| <key>with</key> | |
| <string>🍊</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;lemon</string> | |
| <key>with</key> | |
| <string>🍋</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;cherries</string> | |
| <key>with</key> | |
| <string>🍒</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;grapes</string> | |
| <key>with</key> | |
| <string>🍇</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;watermelon</string> | |
| <key>with</key> | |
| <string>🍉</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;strawberry</string> | |
| <key>with</key> | |
| <string>🍓</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;peach</string> | |
| <key>with</key> | |
| <string>🍑</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;melon</string> | |
| <key>with</key> | |
| <string>🍈</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;banana</string> | |
| <key>with</key> | |
| <string>🍌</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;pear</string> | |
| <key>with</key> | |
| <string>🍐</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;pineapple</string> | |
| <key>with</key> | |
| <string>🍍</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;eggplant</string> | |
| <key>with</key> | |
| <string>🍆</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;tomato</string> | |
| <key>with</key> | |
| <string>🍅</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;corn</string> | |
| <key>with</key> | |
| <string>🌽</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;house</string> | |
| <key>with</key> | |
| <string>🏠</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;home</string> | |
| <key>with</key> | |
| <string>🏡</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;school</string> | |
| <key>with</key> | |
| <string>🏫</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;office</string> | |
| <key>with</key> | |
| <string>🏢</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;hospital</string> | |
| <key>with</key> | |
| <string>🏥</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;bank</string> | |
| <key>with</key> | |
| <string>🏦</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;711</string> | |
| <key>with</key> | |
| <string>🏪</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;hotel</string> | |
| <key>with</key> | |
| <string>🏨</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;wedding</string> | |
| <key>with</key> | |
| <string>💒</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;church</string> | |
| <key>with</key> | |
| <string>⛪</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;boat</string> | |
| <key>with</key> | |
| <string>⛵</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;rowboar</string> | |
| <key>with</key> | |
| <string>🚣</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;anchor</string> | |
| <key>with</key> | |
| <string>⚓</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;rocket</string> | |
| <key>with</key> | |
| <string>🚀</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;plane</string> | |
| <key>with</key> | |
| <string>✈</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;chopper</string> | |
| <key>with</key> | |
| <string>🚁</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;helicopter</string> | |
| <key>with</key> | |
| <string>🚁</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;train</string> | |
| <key>with</key> | |
| <string>🚃</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;bus</string> | |
| <key>with</key> | |
| <string>🚌</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;car</string> | |
| <key>with</key> | |
| <string>🚗</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;taxi</string> | |
| <key>with</key> | |
| <string>🚕</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;truck</string> | |
| <key>with</key> | |
| <string>🚚</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;policecar</string> | |
| <key>with</key> | |
| <string>🚓</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;fiveoh</string> | |
| <key>with</key> | |
| <string>🚓</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;fireengine</string> | |
| <key>with</key> | |
| <string>🚒</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;ambulance</string> | |
| <key>with</key> | |
| <string>🚑</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;bike</string> | |
| <key>with</key> | |
| <string>🚲</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;tractor</string> | |
| <key>with</key> | |
| <string>🚜</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;ticket</string> | |
| <key>with</key> | |
| <string>🎫</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;trafficlight</string> | |
| <key>with</key> | |
| <string>🚦</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;warning</string> | |
| <key>with</key> | |
| <string>⚠</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;gas</string> | |
| <key>with</key> | |
| <string>⛽</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;circus</string> | |
| <key>with</key> | |
| <string>🎪</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;arts</string> | |
| <key>with</key> | |
| <string>🎭</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;mappin</string> | |
| <key>with</key> | |
| <string>📍</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;japaneseflag</string> | |
| <key>with</key> | |
| <string>🇯🇵</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;koreanflag</string> | |
| <key>with</key> | |
| <string>🇰🇷</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;germanflag</string> | |
| <key>with</key> | |
| <string>🇩🇪</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;chineseflag</string> | |
| <key>with</key> | |
| <string>🇨🇳</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;usflag</string> | |
| <key>with</key> | |
| <string>🇺🇸</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;cowardflag</string> | |
| <key>with</key> | |
| <string>🇫🇷</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;frenchflag</string> | |
| <key>with</key> | |
| <string>🇫🇷</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;spanishflag</string> | |
| <key>with</key> | |
| <string>🇪🇸</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;italianflag</string> | |
| <key>with</key> | |
| <string>🇮🇹</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;russianflag</string> | |
| <key>with</key> | |
| <string>🇷🇺</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;ukflag</string> | |
| <key>with</key> | |
| <string>🇬🇧</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;ok</string> | |
| <key>with</key> | |
| <string>🆗</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;wheelchair</string> | |
| <key>with</key> | |
| <string>♿</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;noentry</string> | |
| <key>with</key> | |
| <string>🚫</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;nophones</string> | |
| <key>with</key> | |
| <string>📵</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;donotlitter</string> | |
| <key>with</key> | |
| <string>🚯</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;nopedestrians</string> | |
| <key>with</key> | |
| <string>🚷</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;sparkle</string> | |
| <key>with</key> | |
| <string>❇</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;recycle</string> | |
| <key>with</key> | |
| <string>♻</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;atm</string> | |
| <key>with</key> | |
| <string>🏧</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;cross</string> | |
| <key>with</key> | |
| <string>❌</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;doubleexclamation</string> | |
| <key>with</key> | |
| <string>‼</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;exclamationmark</string> | |
| <key>with</key> | |
| <string>❕</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;questionmark</string> | |
| <key>with</key> | |
| <string>❔</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;circle</string> | |
| <key>with</key> | |
| <string>⭕</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;clock</string> | |
| <key>with</key> | |
| <string>🕒</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;tick</string> | |
| <key>with</key> | |
| <string>✔</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;checkmark</string> | |
| <key>with</key> | |
| <string>✔</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;checkbox</string> | |
| <key>with</key> | |
| <string>☑</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;radiobutton</string> | |
| <key>with</key> | |
| <string>🔘</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;link</string> | |
| <key>with</key> | |
| <string>🔗</string> | |
| </dict> | |
| <dict> | |
| <key>on</key> | |
| <integer>1</integer> | |
| <key>replace</key> | |
| <string>;tsc</string> | |
| <key>with</key> | |
| <string>👉💩😜</string> | |
| </dict> | |
| </array> | |
| </plist> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment