emojivert 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
 - data/.gitignore +17 -0
 - data/Gemfile +4 -0
 - data/LICENSE.txt +22 -0
 - data/README.md +103 -0
 - data/Rakefile +1 -0
 - data/emojivert.gemspec +24 -0
 - data/lib/emojivert.rb +68 -0
 - data/lib/emojivert/mappings.rb +2051 -0
 - data/lib/emojivert/version.rb +3 -0
 - metadata +95 -0
 
    
        checksums.yaml
    ADDED
    
    | 
         @@ -0,0 +1,7 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            ---
         
     | 
| 
      
 2 
     | 
    
         
            +
            SHA1:
         
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: ecf525158e8fb13c380b9455e8e0162d16934ef8
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: 9cfb6525abc8fd48303f88bc91b00580ff053038
         
     | 
| 
      
 5 
     | 
    
         
            +
            SHA512:
         
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: a44c8f9602ca380859716e4baa6fdbae8d5cfa333489e1643bc1cfdb74d8d21db866ea02d1c0f13e038cdd3aa341ab5edf1bc6cd3f1a734da3cfed0225812a60
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: edfc564518a84c1097f039000e386036859b95baef506dce3462201155f6f838a63b98a4ce51841fcd128cd2f318d5c2f2bb27923a3d910bab65a9c2e56293f3
         
     | 
    
        data/.gitignore
    ADDED
    
    
    
        data/Gemfile
    ADDED
    
    
    
        data/LICENSE.txt
    ADDED
    
    | 
         @@ -0,0 +1,22 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            Copyright (c) 2013 Phil Oye
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            MIT License
         
     | 
| 
      
 4 
     | 
    
         
            +
             
     | 
| 
      
 5 
     | 
    
         
            +
            Permission is hereby granted, free of charge, to any person obtaining
         
     | 
| 
      
 6 
     | 
    
         
            +
            a copy of this software and associated documentation files (the
         
     | 
| 
      
 7 
     | 
    
         
            +
            "Software"), to deal in the Software without restriction, including
         
     | 
| 
      
 8 
     | 
    
         
            +
            without limitation the rights to use, copy, modify, merge, publish,
         
     | 
| 
      
 9 
     | 
    
         
            +
            distribute, sublicense, and/or sell copies of the Software, and to
         
     | 
| 
      
 10 
     | 
    
         
            +
            permit persons to whom the Software is furnished to do so, subject to
         
     | 
| 
      
 11 
     | 
    
         
            +
            the following conditions:
         
     | 
| 
      
 12 
     | 
    
         
            +
             
     | 
| 
      
 13 
     | 
    
         
            +
            The above copyright notice and this permission notice shall be
         
     | 
| 
      
 14 
     | 
    
         
            +
            included in all copies or substantial portions of the Software.
         
     | 
| 
      
 15 
     | 
    
         
            +
             
     | 
| 
      
 16 
     | 
    
         
            +
            THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
         
     | 
| 
      
 17 
     | 
    
         
            +
            EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
         
     | 
| 
      
 18 
     | 
    
         
            +
            MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
         
     | 
| 
      
 19 
     | 
    
         
            +
            NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
         
     | 
| 
      
 20 
     | 
    
         
            +
            LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
         
     | 
| 
      
 21 
     | 
    
         
            +
            OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
         
     | 
| 
      
 22 
     | 
    
         
            +
            WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
         
     | 
    
        data/README.md
    ADDED
    
    | 
         @@ -0,0 +1,103 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            # Emojivert
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            This is a tool to translate Emoji Unicode codepoints from one encoding to another.
         
     | 
| 
      
 4 
     | 
    
         
            +
             
     | 
| 
      
 5 
     | 
    
         
            +
            ## Why?
         
     | 
| 
      
 6 
     | 
    
         
            +
             
     | 
| 
      
 7 
     | 
    
         
            +
            Emoji can be encoded in [several ways](http://www.unicode.org/%7Escherer/emoji4unicode/snapshot/full.html):
         
     | 
| 
      
 8 
     | 
    
         
            +
              * Unified
         
     | 
| 
      
 9 
     | 
    
         
            +
              * DoCoMo
         
     | 
| 
      
 10 
     | 
    
         
            +
              * KDDI
         
     | 
| 
      
 11 
     | 
    
         
            +
              * SoftBank
         
     | 
| 
      
 12 
     | 
    
         
            +
              * Google
         
     | 
| 
      
 13 
     | 
    
         
            +
             
     | 
| 
      
 14 
     | 
    
         
            +
            This utility lets you convert from one to the other.
         
     | 
| 
      
 15 
     | 
    
         
            +
             
     | 
| 
      
 16 
     | 
    
         
            +
            I personally ran into this issue because Facebook uses the Google encoding in their Graph API. To get them to show up properly on OS X/iOS, you need to convert them to unified Unicode.
         
     | 
| 
      
 17 
     | 
    
         
            +
             
     | 
| 
      
 18 
     | 
    
         
            +
             
     | 
| 
      
 19 
     | 
    
         
            +
            ## Usage
         
     | 
| 
      
 20 
     | 
    
         
            +
             
     | 
| 
      
 21 
     | 
    
         
            +
            The methods you'll need for translation are of the form:
         
     | 
| 
      
 22 
     | 
    
         
            +
             
     | 
| 
      
 23 
     | 
    
         
            +
                Emojivert.FROMENCODING_to_TOENCODING(string)
         
     | 
| 
      
 24 
     | 
    
         
            +
             
     | 
| 
      
 25 
     | 
    
         
            +
            Conversions are available from the four private use to unified Unicode (and vice versa):
         
     | 
| 
      
 26 
     | 
    
         
            +
              * `docomo_to_unified` and `unified_to_docomo`
         
     | 
| 
      
 27 
     | 
    
         
            +
              * `kddi_to_unified` and `unified_to_kddi`
         
     | 
| 
      
 28 
     | 
    
         
            +
              * `softbank_to_unified` and `unified_to_softbank`
         
     | 
| 
      
 29 
     | 
    
         
            +
              * `google_to_unified` and `unified_to_google`
         
     | 
| 
      
 30 
     | 
    
         
            +
             
     | 
| 
      
 31 
     | 
    
         
            +
            In addition there is an "encoding" for HTML. It creates HTML classes for use with CSS/Images (not supplied, see [caveat](#caveats))
         
     | 
| 
      
 32 
     | 
    
         
            +
              * `unified_to_html` and `html_to_unified`
         
     | 
| 
      
 33 
     | 
    
         
            +
             
     | 
| 
      
 34 
     | 
    
         
            +
            There are also methods for getting the Unicode name from a Unified code point and vice versa.
         
     | 
| 
      
 35 
     | 
    
         
            +
              * `unified_to_name` and `name_to_unified`
         
     | 
| 
      
 36 
     | 
    
         
            +
             
     | 
| 
      
 37 
     | 
    
         
            +
             
     | 
| 
      
 38 
     | 
    
         
            +
            The following shows the basic usage, starting with JSON as an example.
         
     | 
| 
      
 39 
     | 
    
         
            +
             
     | 
| 
      
 40 
     | 
    
         
            +
                json = '"All work and no play, makes \ud83d\ude0e\ a dull boy \udbba\udf59."'
         
     | 
| 
      
 41 
     | 
    
         
            +
                => "\"All work and no play, makes \\ud83d\\ude0e\\ a dull boy \\udbba\\udf59.\""
         
     | 
| 
      
 42 
     | 
    
         
            +
             
     | 
| 
      
 43 
     | 
    
         
            +
                str = ActiveSupport::JSON.decode(json)
         
     | 
| 
      
 44 
     | 
    
         
            +
                => "All work and no play, makes π a dull boy σΎ."
         
     | 
| 
      
 45 
     | 
    
         
            +
             
     | 
| 
      
 46 
     | 
    
         
            +
                Emojivert.google_to_unified(str)
         
     | 
| 
      
 47 
     | 
    
         
            +
                => "All work and no play, makes π a dull boy π€."
         
     | 
| 
      
 48 
     | 
    
         
            +
             
     | 
| 
      
 49 
     | 
    
         
            +
            Working with Unicode names:
         
     | 
| 
      
 50 
     | 
    
         
            +
             
     | 
| 
      
 51 
     | 
    
         
            +
                Emojivert.name_to_unified('PILE OF POO')
         
     | 
| 
      
 52 
     | 
    
         
            +
                => "π©"
         
     | 
| 
      
 53 
     | 
    
         
            +
                Emojivert.unified_to_name("π©")
         
     | 
| 
      
 54 
     | 
    
         
            +
                => "PILE OF POO"
         
     | 
| 
      
 55 
     | 
    
         
            +
             
     | 
| 
      
 56 
     | 
    
         
            +
             
     | 
| 
      
 57 
     | 
    
         
            +
            ## Caveats
         
     | 
| 
      
 58 
     | 
    
         
            +
             
     | 
| 
      
 59 
     | 
    
         
            +
            I used the mappings from the [rails-emoji](https://github.com/uken/rails-emoji) project and I didn't check them. The standards may change (or might have already). I personally have only used the `google_to_unified` translation, your mileage may vary on the rest.
         
     | 
| 
      
 60 
     | 
    
         
            +
             
     | 
| 
      
 61 
     | 
    
         
            +
            There are methods to convert to an HTML representation of emoji for use with CSS and image sprites. I've included the methods, but not the CSS / images necessary to make use of them. Again, check out the [rails-emoji](https://github.com/uken/rails-emoji) project if you to pursue this. There are several other emoji libraries that may be useful for rendering emoji with images, [see the list below](https://github.com/philoye/emojivert#other-emoji-projects).
         
     | 
| 
      
 62 
     | 
    
         
            +
             
     | 
| 
      
 63 
     | 
    
         
            +
             
     | 
| 
      
 64 
     | 
    
         
            +
            ## Installation
         
     | 
| 
      
 65 
     | 
    
         
            +
             
     | 
| 
      
 66 
     | 
    
         
            +
            Add this line to your application's Gemfile:
         
     | 
| 
      
 67 
     | 
    
         
            +
             
     | 
| 
      
 68 
     | 
    
         
            +
                gem 'emojivert'
         
     | 
| 
      
 69 
     | 
    
         
            +
             
     | 
| 
      
 70 
     | 
    
         
            +
            And then execute:
         
     | 
| 
      
 71 
     | 
    
         
            +
             
     | 
| 
      
 72 
     | 
    
         
            +
                $ bundle
         
     | 
| 
      
 73 
     | 
    
         
            +
             
     | 
| 
      
 74 
     | 
    
         
            +
            Or install it yourself as:
         
     | 
| 
      
 75 
     | 
    
         
            +
             
     | 
| 
      
 76 
     | 
    
         
            +
                $ gem install emojivert
         
     | 
| 
      
 77 
     | 
    
         
            +
             
     | 
| 
      
 78 
     | 
    
         
            +
             
     | 
| 
      
 79 
     | 
    
         
            +
            ## Credits
         
     | 
| 
      
 80 
     | 
    
         
            +
             
     | 
| 
      
 81 
     | 
    
         
            +
            The hard work was already done by [Uken](https://github.com/uken) and the [rails-emoji](https://github.com/uken/rails-emoji). I simply converted it from an engine to a gem.
         
     | 
| 
      
 82 
     | 
    
         
            +
             
     | 
| 
      
 83 
     | 
    
         
            +
             
     | 
| 
      
 84 
     | 
    
         
            +
            ## Other Emoji Projects
         
     | 
| 
      
 85 
     | 
    
         
            +
             
     | 
| 
      
 86 
     | 
    
         
            +
            * [Rumoji](https://github.com/mwunsch/rumoji)
         
     | 
| 
      
 87 
     | 
    
         
            +
            * [PHP-Emoji](https://github.com/iamcal/php-emoji)
         
     | 
| 
      
 88 
     | 
    
         
            +
            * [Gemoji](https://github.com/github/gemoji)
         
     | 
| 
      
 89 
     | 
    
         
            +
            * [Rails-Emoji](https://github.com/uken/rails-emoji)
         
     | 
| 
      
 90 
     | 
    
         
            +
            * [Rails_Emoji](https://github.com/jsw0528/rails_emoji)
         
     | 
| 
      
 91 
     | 
    
         
            +
            * [Emoji](https://github.com/steveklabnik/emoji)
         
     | 
| 
      
 92 
     | 
    
         
            +
            * [PhantomOpenEmoji](https://github.com/Genshin/PhantomOpenEmoji)
         
     | 
| 
      
 93 
     | 
    
         
            +
            * [Emojidex-Rails](https://github.com/Genshin/emojidex-rails)
         
     | 
| 
      
 94 
     | 
    
         
            +
            * [Emojistatic](https://github.com/mroth/emojistatic)
         
     | 
| 
      
 95 
     | 
    
         
            +
             
     | 
| 
      
 96 
     | 
    
         
            +
             
     | 
| 
      
 97 
     | 
    
         
            +
            ## Contributing
         
     | 
| 
      
 98 
     | 
    
         
            +
             
     | 
| 
      
 99 
     | 
    
         
            +
            1. Fork it
         
     | 
| 
      
 100 
     | 
    
         
            +
            2. Create your feature branch (`git checkout -b my-new-feature`)
         
     | 
| 
      
 101 
     | 
    
         
            +
            3. Commit your changes (`git commit -am 'Add some feature'`)
         
     | 
| 
      
 102 
     | 
    
         
            +
            4. Push to the branch (`git push origin my-new-feature`)
         
     | 
| 
      
 103 
     | 
    
         
            +
            5. Create new Pull Request
         
     | 
    
        data/Rakefile
    ADDED
    
    | 
         @@ -0,0 +1 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            require "bundler/gem_tasks"
         
     | 
    
        data/emojivert.gemspec
    ADDED
    
    | 
         @@ -0,0 +1,24 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            # coding: utf-8
         
     | 
| 
      
 2 
     | 
    
         
            +
            lib = File.expand_path('../lib', __FILE__)
         
     | 
| 
      
 3 
     | 
    
         
            +
            $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
         
     | 
| 
      
 4 
     | 
    
         
            +
            require 'emojivert/version'
         
     | 
| 
      
 5 
     | 
    
         
            +
             
     | 
| 
      
 6 
     | 
    
         
            +
            Gem::Specification.new do |spec|
         
     | 
| 
      
 7 
     | 
    
         
            +
              spec.name          = "emojivert"
         
     | 
| 
      
 8 
     | 
    
         
            +
              spec.version       = Emojivert::VERSION
         
     | 
| 
      
 9 
     | 
    
         
            +
              spec.authors       = ["Phil Oye"]
         
     | 
| 
      
 10 
     | 
    
         
            +
              spec.email         = ["philoye@philoye.com"]
         
     | 
| 
      
 11 
     | 
    
         
            +
              spec.description   = %q{Translate emoji from one encoding to another.}
         
     | 
| 
      
 12 
     | 
    
         
            +
              spec.summary       = %q{Translate emoji from one encoding to another.}
         
     | 
| 
      
 13 
     | 
    
         
            +
              spec.homepage      = "http://github.com/philoye/emojivert"
         
     | 
| 
      
 14 
     | 
    
         
            +
              spec.license       = "MIT"
         
     | 
| 
      
 15 
     | 
    
         
            +
             
     | 
| 
      
 16 
     | 
    
         
            +
              spec.files         = `git ls-files`.split($/)
         
     | 
| 
      
 17 
     | 
    
         
            +
              spec.executables   = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
         
     | 
| 
      
 18 
     | 
    
         
            +
              spec.test_files    = spec.files.grep(%r{^(test|spec|features)/})
         
     | 
| 
      
 19 
     | 
    
         
            +
              spec.require_paths = ["lib"]
         
     | 
| 
      
 20 
     | 
    
         
            +
             
     | 
| 
      
 21 
     | 
    
         
            +
              spec.add_dependency 'activesupport', ['>= 3.0.0']
         
     | 
| 
      
 22 
     | 
    
         
            +
              spec.add_development_dependency "bundler", "~> 1.3"
         
     | 
| 
      
 23 
     | 
    
         
            +
              spec.add_development_dependency "rake"
         
     | 
| 
      
 24 
     | 
    
         
            +
            end
         
     | 
    
        data/lib/emojivert.rb
    ADDED
    
    | 
         @@ -0,0 +1,68 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            require 'active_support/core_ext/object/blank'
         
     | 
| 
      
 2 
     | 
    
         
            +
            require 'emojivert/version'
         
     | 
| 
      
 3 
     | 
    
         
            +
            require 'emojivert/mappings'
         
     | 
| 
      
 4 
     | 
    
         
            +
             
     | 
| 
      
 5 
     | 
    
         
            +
            module Emojivert
         
     | 
| 
      
 6 
     | 
    
         
            +
              class << self
         
     | 
| 
      
 7 
     | 
    
         
            +
             
     | 
| 
      
 8 
     | 
    
         
            +
                def docomo_to_unified(text)
         
     | 
| 
      
 9 
     | 
    
         
            +
                  emoji_convert(text, 'docomo_to_unified')
         
     | 
| 
      
 10 
     | 
    
         
            +
                end
         
     | 
| 
      
 11 
     | 
    
         
            +
                def kddi_to_unified(text)
         
     | 
| 
      
 12 
     | 
    
         
            +
                  emoji_convert(text, 'kddi_to_unified')
         
     | 
| 
      
 13 
     | 
    
         
            +
                end
         
     | 
| 
      
 14 
     | 
    
         
            +
                def softbank_to_unified(text)
         
     | 
| 
      
 15 
     | 
    
         
            +
                  emoji_convert(text, 'softbank_to_unified')
         
     | 
| 
      
 16 
     | 
    
         
            +
                end
         
     | 
| 
      
 17 
     | 
    
         
            +
                def google_to_unified(text)
         
     | 
| 
      
 18 
     | 
    
         
            +
                  emoji_convert(text, 'google_to_unified')
         
     | 
| 
      
 19 
     | 
    
         
            +
                end
         
     | 
| 
      
 20 
     | 
    
         
            +
             
     | 
| 
      
 21 
     | 
    
         
            +
             
     | 
| 
      
 22 
     | 
    
         
            +
                def unified_to_docomo(text)
         
     | 
| 
      
 23 
     | 
    
         
            +
                  emoji_convert(text, 'unified_to_docomo')
         
     | 
| 
      
 24 
     | 
    
         
            +
                end
         
     | 
| 
      
 25 
     | 
    
         
            +
                def unified_to_kddi(text)
         
     | 
| 
      
 26 
     | 
    
         
            +
                  emoji_convert(text, 'unified_to_kddi')
         
     | 
| 
      
 27 
     | 
    
         
            +
                end
         
     | 
| 
      
 28 
     | 
    
         
            +
                def unified_to_softbank(text)
         
     | 
| 
      
 29 
     | 
    
         
            +
                  emoji_convert(text, 'unified_to_softbank')
         
     | 
| 
      
 30 
     | 
    
         
            +
                end
         
     | 
| 
      
 31 
     | 
    
         
            +
                def unified_to_google(text)
         
     | 
| 
      
 32 
     | 
    
         
            +
                  emoji_convert(text, 'unified_to_google')
         
     | 
| 
      
 33 
     | 
    
         
            +
                end
         
     | 
| 
      
 34 
     | 
    
         
            +
             
     | 
| 
      
 35 
     | 
    
         
            +
             
     | 
| 
      
 36 
     | 
    
         
            +
                def unified_to_html(text)
         
     | 
| 
      
 37 
     | 
    
         
            +
                  emoji_convert(text, 'unified_to_html')
         
     | 
| 
      
 38 
     | 
    
         
            +
                end
         
     | 
| 
      
 39 
     | 
    
         
            +
                def html_to_unified(text)
         
     | 
| 
      
 40 
     | 
    
         
            +
                  emoji_convert(text, 'html_to_unified')
         
     | 
| 
      
 41 
     | 
    
         
            +
                end
         
     | 
| 
      
 42 
     | 
    
         
            +
             
     | 
| 
      
 43 
     | 
    
         
            +
             
     | 
| 
      
 44 
     | 
    
         
            +
                def unified_to_name(unified_cp)
         
     | 
| 
      
 45 
     | 
    
         
            +
                  EMOJI_MAPS['unified_to_name'][unified_cp] ? EMOJI_MAPS['unified_to_name'][unified_cp] : '?'
         
     | 
| 
      
 46 
     | 
    
         
            +
                end
         
     | 
| 
      
 47 
     | 
    
         
            +
                def name_to_unified(name)
         
     | 
| 
      
 48 
     | 
    
         
            +
                  EMOJI_MAPS['name_to_unified'][name] ? EMOJI_MAPS['name_to_unified'][name] : '?'
         
     | 
| 
      
 49 
     | 
    
         
            +
                end
         
     | 
| 
      
 50 
     | 
    
         
            +
             
     | 
| 
      
 51 
     | 
    
         
            +
                private
         
     | 
| 
      
 52 
     | 
    
         
            +
             
     | 
| 
      
 53 
     | 
    
         
            +
                def emoji_convert(text, char_map)
         
     | 
| 
      
 54 
     | 
    
         
            +
                  ret_str = text
         
     | 
| 
      
 55 
     | 
    
         
            +
                  if text.present? and char_map.present?
         
     | 
| 
      
 56 
     | 
    
         
            +
                    EMOJI_MAPS[char_map].each do |k, v|
         
     | 
| 
      
 57 
     | 
    
         
            +
                      k = k.unpack('U*').pack('U*')
         
     | 
| 
      
 58 
     | 
    
         
            +
                      v = v.unpack('U*').pack('U*')
         
     | 
| 
      
 59 
     | 
    
         
            +
                      ret_str.gsub!(k, v)
         
     | 
| 
      
 60 
     | 
    
         
            +
                    end
         
     | 
| 
      
 61 
     | 
    
         
            +
                  end
         
     | 
| 
      
 62 
     | 
    
         
            +
                  ret_str
         
     | 
| 
      
 63 
     | 
    
         
            +
                end
         
     | 
| 
      
 64 
     | 
    
         
            +
             
     | 
| 
      
 65 
     | 
    
         
            +
              end
         
     | 
| 
      
 66 
     | 
    
         
            +
             
     | 
| 
      
 67 
     | 
    
         
            +
            end
         
     | 
| 
      
 68 
     | 
    
         
            +
             
     | 
| 
         @@ -0,0 +1,2051 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            module Emojivert
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
              EMOJI_MAPS = {
         
     | 
| 
      
 4 
     | 
    
         
            +
                'unified_to_name' => {
         
     | 
| 
      
 5 
     | 
    
         
            +
                  "\xe2\x98\x80" => 'BLACK SUN WITH RAYS',
         
     | 
| 
      
 6 
     | 
    
         
            +
                  "\xe2\x98\x81" => 'CLOUD',
         
     | 
| 
      
 7 
     | 
    
         
            +
                  "\xe2\x98\x94" => 'UMBRELLA WITH RAIN DROPS',
         
     | 
| 
      
 8 
     | 
    
         
            +
                  "\xe2\x9b\x84" => 'SNOWMAN WITHOUT SNOW',
         
     | 
| 
      
 9 
     | 
    
         
            +
                  "\xe2\x9a\xa1" => 'HIGH VOLTAGE SIGN',
         
     | 
| 
      
 10 
     | 
    
         
            +
                  "\xf0\x9f\x8c\x80" => 'CYCLONE',
         
     | 
| 
      
 11 
     | 
    
         
            +
                  "\xf0\x9f\x8c\x81" => 'FOGGY',
         
     | 
| 
      
 12 
     | 
    
         
            +
                  "\xf0\x9f\x8c\x82" => 'CLOSED UMBRELLA',
         
     | 
| 
      
 13 
     | 
    
         
            +
                  "\xf0\x9f\x8c\x83" => 'NIGHT WITH STARS',
         
     | 
| 
      
 14 
     | 
    
         
            +
                  "\xf0\x9f\x8c\x84" => 'SUNRISE OVER MOUNTAINS',
         
     | 
| 
      
 15 
     | 
    
         
            +
                  "\xf0\x9f\x8c\x85" => 'SUNRISE',
         
     | 
| 
      
 16 
     | 
    
         
            +
                  "\xf0\x9f\x8c\x86" => 'CITYSCAPE AT DUSK',
         
     | 
| 
      
 17 
     | 
    
         
            +
                  "\xf0\x9f\x8c\x87" => 'SUNSET OVER BUILDINGS',
         
     | 
| 
      
 18 
     | 
    
         
            +
                  "\xf0\x9f\x8c\x88" => 'RAINBOW',
         
     | 
| 
      
 19 
     | 
    
         
            +
                  "\xe2\x9d\x84" => 'SNOWFLAKE',
         
     | 
| 
      
 20 
     | 
    
         
            +
                  "\xe2\x9b\x85" => 'SUN BEHIND CLOUD',
         
     | 
| 
      
 21 
     | 
    
         
            +
                  "\xf0\x9f\x8c\x89" => 'BRIDGE AT NIGHT',
         
     | 
| 
      
 22 
     | 
    
         
            +
                  "\xf0\x9f\x8c\x8a" => 'WATER WAVE',
         
     | 
| 
      
 23 
     | 
    
         
            +
                  "\xf0\x9f\x8c\x8b" => 'VOLCANO',
         
     | 
| 
      
 24 
     | 
    
         
            +
                  "\xf0\x9f\x8c\x8c" => 'MILKY WAY',
         
     | 
| 
      
 25 
     | 
    
         
            +
                  "\xf0\x9f\x8c\x8f" => 'EARTH GLOBE ASIA-AUSTRALIA',
         
     | 
| 
      
 26 
     | 
    
         
            +
                  "\xf0\x9f\x8c\x91" => 'NEW MOON SYMBOL',
         
     | 
| 
      
 27 
     | 
    
         
            +
                  "\xf0\x9f\x8c\x94" => 'WAXING GIBBOUS MOON SYMBOL',
         
     | 
| 
      
 28 
     | 
    
         
            +
                  "\xf0\x9f\x8c\x93" => 'FIRST QUARTER MOON SYMBOL',
         
     | 
| 
      
 29 
     | 
    
         
            +
                  "\xf0\x9f\x8c\x99" => 'CRESCENT MOON',
         
     | 
| 
      
 30 
     | 
    
         
            +
                  "\xf0\x9f\x8c\x95" => 'FULL MOON SYMBOL',
         
     | 
| 
      
 31 
     | 
    
         
            +
                  "\xf0\x9f\x8c\x9b" => 'FIRST QUARTER MOON WITH FACE',
         
     | 
| 
      
 32 
     | 
    
         
            +
                  "\xf0\x9f\x8c\x9f" => 'GLOWING STAR',
         
     | 
| 
      
 33 
     | 
    
         
            +
                  "\xf0\x9f\x8c\xa0" => 'SHOOTING STAR',
         
     | 
| 
      
 34 
     | 
    
         
            +
                  "\xf0\x9f\x95\x90" => 'CLOCK FACE ONE OCLOCK',
         
     | 
| 
      
 35 
     | 
    
         
            +
                  "\xf0\x9f\x95\x91" => 'CLOCK FACE TWO OCLOCK',
         
     | 
| 
      
 36 
     | 
    
         
            +
                  "\xf0\x9f\x95\x92" => 'CLOCK FACE THREE OCLOCK',
         
     | 
| 
      
 37 
     | 
    
         
            +
                  "\xf0\x9f\x95\x93" => 'CLOCK FACE FOUR OCLOCK',
         
     | 
| 
      
 38 
     | 
    
         
            +
                  "\xf0\x9f\x95\x94" => 'CLOCK FACE FIVE OCLOCK',
         
     | 
| 
      
 39 
     | 
    
         
            +
                  "\xf0\x9f\x95\x95" => 'CLOCK FACE SIX OCLOCK',
         
     | 
| 
      
 40 
     | 
    
         
            +
                  "\xf0\x9f\x95\x96" => 'CLOCK FACE SEVEN OCLOCK',
         
     | 
| 
      
 41 
     | 
    
         
            +
                  "\xf0\x9f\x95\x97" => 'CLOCK FACE EIGHT OCLOCK',
         
     | 
| 
      
 42 
     | 
    
         
            +
                  "\xf0\x9f\x95\x98" => 'CLOCK FACE NINE OCLOCK',
         
     | 
| 
      
 43 
     | 
    
         
            +
                  "\xf0\x9f\x95\x99" => 'CLOCK FACE TEN OCLOCK',
         
     | 
| 
      
 44 
     | 
    
         
            +
                  "\xf0\x9f\x95\x9a" => 'CLOCK FACE ELEVEN OCLOCK',
         
     | 
| 
      
 45 
     | 
    
         
            +
                  "\xf0\x9f\x95\x9b" => 'CLOCK FACE TWELVE OCLOCK',
         
     | 
| 
      
 46 
     | 
    
         
            +
                  "\xe2\x8c\x9a" => 'WATCH',
         
     | 
| 
      
 47 
     | 
    
         
            +
                  "\xe2\x8c\x9b" => 'HOURGLASS',
         
     | 
| 
      
 48 
     | 
    
         
            +
                  "\xe2\x8f\xb0" => 'ALARM CLOCK',
         
     | 
| 
      
 49 
     | 
    
         
            +
                  "\xe2\x8f\xb3" => 'HOURGLASS WITH FLOWING SAND',
         
     | 
| 
      
 50 
     | 
    
         
            +
                  "\xe2\x99\x88" => 'ARIES',
         
     | 
| 
      
 51 
     | 
    
         
            +
                  "\xe2\x99\x89" => 'TAURUS',
         
     | 
| 
      
 52 
     | 
    
         
            +
                  "\xe2\x99\x8a" => 'GEMINI',
         
     | 
| 
      
 53 
     | 
    
         
            +
                  "\xe2\x99\x8b" => 'CANCER',
         
     | 
| 
      
 54 
     | 
    
         
            +
                  "\xe2\x99\x8c" => 'LEO',
         
     | 
| 
      
 55 
     | 
    
         
            +
                  "\xe2\x99\x8d" => 'VIRGO',
         
     | 
| 
      
 56 
     | 
    
         
            +
                  "\xe2\x99\x8e" => 'LIBRA',
         
     | 
| 
      
 57 
     | 
    
         
            +
                  "\xe2\x99\x8f" => 'SCORPIUS',
         
     | 
| 
      
 58 
     | 
    
         
            +
                  "\xe2\x99\x90" => 'SAGITTARIUS',
         
     | 
| 
      
 59 
     | 
    
         
            +
                  "\xe2\x99\x91" => 'CAPRICORN',
         
     | 
| 
      
 60 
     | 
    
         
            +
                  "\xe2\x99\x92" => 'AQUARIUS',
         
     | 
| 
      
 61 
     | 
    
         
            +
                  "\xe2\x99\x93" => 'PISCES',
         
     | 
| 
      
 62 
     | 
    
         
            +
                  "\xe2\x9b\x8e" => 'OPHIUCHUS',
         
     | 
| 
      
 63 
     | 
    
         
            +
                  "\xf0\x9f\x8d\x80" => 'FOUR LEAF CLOVER',
         
     | 
| 
      
 64 
     | 
    
         
            +
                  "\xf0\x9f\x8c\xb7" => 'TULIP',
         
     | 
| 
      
 65 
     | 
    
         
            +
                  "\xf0\x9f\x8c\xb1" => 'SEEDLING',
         
     | 
| 
      
 66 
     | 
    
         
            +
                  "\xf0\x9f\x8d\x81" => 'char_mapLE LEAF',
         
     | 
| 
      
 67 
     | 
    
         
            +
                  "\xf0\x9f\x8c\xb8" => 'CHERRY BLOSSOM',
         
     | 
| 
      
 68 
     | 
    
         
            +
                  "\xf0\x9f\x8c\xb9" => 'ROSE',
         
     | 
| 
      
 69 
     | 
    
         
            +
                  "\xf0\x9f\x8d\x82" => 'FALLEN LEAF',
         
     | 
| 
      
 70 
     | 
    
         
            +
                  "\xf0\x9f\x8d\x83" => 'LEAF FLUTTERING IN WIND',
         
     | 
| 
      
 71 
     | 
    
         
            +
                  "\xf0\x9f\x8c\xba" => 'HIBISCUS',
         
     | 
| 
      
 72 
     | 
    
         
            +
                  "\xf0\x9f\x8c\xbb" => 'SUNFLOWER',
         
     | 
| 
      
 73 
     | 
    
         
            +
                  "\xf0\x9f\x8c\xb4" => 'PALM TREE',
         
     | 
| 
      
 74 
     | 
    
         
            +
                  "\xf0\x9f\x8c\xb5" => 'CACTUS',
         
     | 
| 
      
 75 
     | 
    
         
            +
                  "\xf0\x9f\x8c\xbe" => 'EAR OF RICE',
         
     | 
| 
      
 76 
     | 
    
         
            +
                  "\xf0\x9f\x8c\xbd" => 'EAR OF MAIZE',
         
     | 
| 
      
 77 
     | 
    
         
            +
                  "\xf0\x9f\x8d\x84" => 'MUSHROOM',
         
     | 
| 
      
 78 
     | 
    
         
            +
                  "\xf0\x9f\x8c\xb0" => 'CHESTNUT',
         
     | 
| 
      
 79 
     | 
    
         
            +
                  "\xf0\x9f\x8c\xbc" => 'BLOSSOM',
         
     | 
| 
      
 80 
     | 
    
         
            +
                  "\xf0\x9f\x8c\xbf" => 'HERB',
         
     | 
| 
      
 81 
     | 
    
         
            +
                  "\xf0\x9f\x8d\x92" => 'CHERRIES',
         
     | 
| 
      
 82 
     | 
    
         
            +
                  "\xf0\x9f\x8d\x8c" => 'BANANA',
         
     | 
| 
      
 83 
     | 
    
         
            +
                  "\xf0\x9f\x8d\x8e" => 'RED APPLE',
         
     | 
| 
      
 84 
     | 
    
         
            +
                  "\xf0\x9f\x8d\x8a" => 'TANGERINE',
         
     | 
| 
      
 85 
     | 
    
         
            +
                  "\xf0\x9f\x8d\x93" => 'STRAWBERRY',
         
     | 
| 
      
 86 
     | 
    
         
            +
                  "\xf0\x9f\x8d\x89" => 'WATERMELON',
         
     | 
| 
      
 87 
     | 
    
         
            +
                  "\xf0\x9f\x8d\x85" => 'TOMATO',
         
     | 
| 
      
 88 
     | 
    
         
            +
                  "\xf0\x9f\x8d\x86" => 'AUBERGINE',
         
     | 
| 
      
 89 
     | 
    
         
            +
                  "\xf0\x9f\x8d\x88" => 'MELON',
         
     | 
| 
      
 90 
     | 
    
         
            +
                  "\xf0\x9f\x8d\x8d" => 'PINEAPPLE',
         
     | 
| 
      
 91 
     | 
    
         
            +
                  "\xf0\x9f\x8d\x87" => 'GRAPES',
         
     | 
| 
      
 92 
     | 
    
         
            +
                  "\xf0\x9f\x8d\x91" => 'PEACH',
         
     | 
| 
      
 93 
     | 
    
         
            +
                  "\xf0\x9f\x8d\x8f" => 'GREEN APPLE',
         
     | 
| 
      
 94 
     | 
    
         
            +
                  "\xf0\x9f\x91\x80" => 'EYES',
         
     | 
| 
      
 95 
     | 
    
         
            +
                  "\xf0\x9f\x91\x82" => 'EAR',
         
     | 
| 
      
 96 
     | 
    
         
            +
                  "\xf0\x9f\x91\x83" => 'NOSE',
         
     | 
| 
      
 97 
     | 
    
         
            +
                  "\xf0\x9f\x91\x84" => 'MOUTH',
         
     | 
| 
      
 98 
     | 
    
         
            +
                  "\xf0\x9f\x91\x85" => 'TONGUE',
         
     | 
| 
      
 99 
     | 
    
         
            +
                  "\xf0\x9f\x92\x84" => 'LIPSTICK',
         
     | 
| 
      
 100 
     | 
    
         
            +
                  "\xf0\x9f\x92\x85" => 'NAIL POLISH',
         
     | 
| 
      
 101 
     | 
    
         
            +
                  "\xf0\x9f\x92\x86" => 'FACE MASSAGE',
         
     | 
| 
      
 102 
     | 
    
         
            +
                  "\xf0\x9f\x92\x87" => 'HAIRCUT',
         
     | 
| 
      
 103 
     | 
    
         
            +
                  "\xf0\x9f\x92\x88" => 'BARBER POLE',
         
     | 
| 
      
 104 
     | 
    
         
            +
                  "\xf0\x9f\x91\xa4" => 'BUST IN SILHOUETTE',
         
     | 
| 
      
 105 
     | 
    
         
            +
                  "\xf0\x9f\x91\xa6" => 'BOY',
         
     | 
| 
      
 106 
     | 
    
         
            +
                  "\xf0\x9f\x91\xa7" => 'GIRL',
         
     | 
| 
      
 107 
     | 
    
         
            +
                  "\xf0\x9f\x91\xa8" => 'MAN',
         
     | 
| 
      
 108 
     | 
    
         
            +
                  "\xf0\x9f\x91\xa9" => 'WOMAN',
         
     | 
| 
      
 109 
     | 
    
         
            +
                  "\xf0\x9f\x91\xaa" => 'FAMILY',
         
     | 
| 
      
 110 
     | 
    
         
            +
                  "\xf0\x9f\x91\xab" => 'MAN AND WOMAN HOLDING HANDS',
         
     | 
| 
      
 111 
     | 
    
         
            +
                  "\xf0\x9f\x91\xae" => 'POLICE OFFICER',
         
     | 
| 
      
 112 
     | 
    
         
            +
                  "\xf0\x9f\x91\xaf" => 'WOMAN WITH BUNNY EARS',
         
     | 
| 
      
 113 
     | 
    
         
            +
                  "\xf0\x9f\x91\xb0" => 'BRIDE WITH VEIL',
         
     | 
| 
      
 114 
     | 
    
         
            +
                  "\xf0\x9f\x91\xb1" => 'PERSON WITH BLOND HAIR',
         
     | 
| 
      
 115 
     | 
    
         
            +
                  "\xf0\x9f\x91\xb2" => 'MAN WITH GUA PI MAO',
         
     | 
| 
      
 116 
     | 
    
         
            +
                  "\xf0\x9f\x91\xb3" => 'MAN WITH TURBAN',
         
     | 
| 
      
 117 
     | 
    
         
            +
                  "\xf0\x9f\x91\xb4" => 'OLDER MAN',
         
     | 
| 
      
 118 
     | 
    
         
            +
                  "\xf0\x9f\x91\xb5" => 'OLDER WOMAN',
         
     | 
| 
      
 119 
     | 
    
         
            +
                  "\xf0\x9f\x91\xb6" => 'BABY',
         
     | 
| 
      
 120 
     | 
    
         
            +
                  "\xf0\x9f\x91\xb7" => 'CONSTRUCTION WORKER',
         
     | 
| 
      
 121 
     | 
    
         
            +
                  "\xf0\x9f\x91\xb8" => 'PRINCESS',
         
     | 
| 
      
 122 
     | 
    
         
            +
                  "\xf0\x9f\x91\xb9" => 'JAPANESE OGRE',
         
     | 
| 
      
 123 
     | 
    
         
            +
                  "\xf0\x9f\x91\xba" => 'JAPANESE GOBLIN',
         
     | 
| 
      
 124 
     | 
    
         
            +
                  "\xf0\x9f\x91\xbb" => 'GHOST',
         
     | 
| 
      
 125 
     | 
    
         
            +
                  "\xf0\x9f\x91\xbc" => 'BABY ANGEL',
         
     | 
| 
      
 126 
     | 
    
         
            +
                  "\xf0\x9f\x91\xbd" => 'EXTRATERRESTRIAL ALIEN',
         
     | 
| 
      
 127 
     | 
    
         
            +
                  "\xf0\x9f\x91\xbe" => 'ALIEN MONSTER',
         
     | 
| 
      
 128 
     | 
    
         
            +
                  "\xf0\x9f\x91\xbf" => 'IMP',
         
     | 
| 
      
 129 
     | 
    
         
            +
                  "\xf0\x9f\x92\x80" => 'SKULL',
         
     | 
| 
      
 130 
     | 
    
         
            +
                  "\xf0\x9f\x92\x81" => 'INFORMATION DESK PERSON',
         
     | 
| 
      
 131 
     | 
    
         
            +
                  "\xf0\x9f\x92\x82" => 'GUARDSMAN',
         
     | 
| 
      
 132 
     | 
    
         
            +
                  "\xf0\x9f\x92\x83" => 'DANCER',
         
     | 
| 
      
 133 
     | 
    
         
            +
                  "\xf0\x9f\x90\x8c" => 'SNAIL',
         
     | 
| 
      
 134 
     | 
    
         
            +
                  "\xf0\x9f\x90\x8d" => 'SNAKE',
         
     | 
| 
      
 135 
     | 
    
         
            +
                  "\xf0\x9f\x90\x8e" => 'HORSE',
         
     | 
| 
      
 136 
     | 
    
         
            +
                  "\xf0\x9f\x90\x94" => 'CHICKEN',
         
     | 
| 
      
 137 
     | 
    
         
            +
                  "\xf0\x9f\x90\x97" => 'BOAR',
         
     | 
| 
      
 138 
     | 
    
         
            +
                  "\xf0\x9f\x90\xab" => 'BACTRIAN CAMEL',
         
     | 
| 
      
 139 
     | 
    
         
            +
                  "\xf0\x9f\x90\x98" => 'ELEPHANT',
         
     | 
| 
      
 140 
     | 
    
         
            +
                  "\xf0\x9f\x90\xa8" => 'KOALA',
         
     | 
| 
      
 141 
     | 
    
         
            +
                  "\xf0\x9f\x90\x92" => 'MONKEY',
         
     | 
| 
      
 142 
     | 
    
         
            +
                  "\xf0\x9f\x90\x91" => 'SHEEP',
         
     | 
| 
      
 143 
     | 
    
         
            +
                  "\xf0\x9f\x90\x99" => 'OCTOPUS',
         
     | 
| 
      
 144 
     | 
    
         
            +
                  "\xf0\x9f\x90\x9a" => 'SPIRAL SHELL',
         
     | 
| 
      
 145 
     | 
    
         
            +
                  "\xf0\x9f\x90\x9b" => 'BUG',
         
     | 
| 
      
 146 
     | 
    
         
            +
                  "\xf0\x9f\x90\x9c" => 'ANT',
         
     | 
| 
      
 147 
     | 
    
         
            +
                  "\xf0\x9f\x90\x9d" => 'HONEYBEE',
         
     | 
| 
      
 148 
     | 
    
         
            +
                  "\xf0\x9f\x90\x9e" => 'LADY BEETLE',
         
     | 
| 
      
 149 
     | 
    
         
            +
                  "\xf0\x9f\x90\xa0" => 'TROPICAL FISH',
         
     | 
| 
      
 150 
     | 
    
         
            +
                  "\xf0\x9f\x90\xa1" => 'BLOWFISH',
         
     | 
| 
      
 151 
     | 
    
         
            +
                  "\xf0\x9f\x90\xa2" => 'TURTLE',
         
     | 
| 
      
 152 
     | 
    
         
            +
                  "\xf0\x9f\x90\xa4" => 'BABY CHICK',
         
     | 
| 
      
 153 
     | 
    
         
            +
                  "\xf0\x9f\x90\xa5" => 'FRONT-FACING BABY CHICK',
         
     | 
| 
      
 154 
     | 
    
         
            +
                  "\xf0\x9f\x90\xa6" => 'BIRD',
         
     | 
| 
      
 155 
     | 
    
         
            +
                  "\xf0\x9f\x90\xa3" => 'HATCHING CHICK',
         
     | 
| 
      
 156 
     | 
    
         
            +
                  "\xf0\x9f\x90\xa7" => 'PENGUIN',
         
     | 
| 
      
 157 
     | 
    
         
            +
                  "\xf0\x9f\x90\xa9" => 'POODLE',
         
     | 
| 
      
 158 
     | 
    
         
            +
                  "\xf0\x9f\x90\x9f" => 'FISH',
         
     | 
| 
      
 159 
     | 
    
         
            +
                  "\xf0\x9f\x90\xac" => 'DOLPHIN',
         
     | 
| 
      
 160 
     | 
    
         
            +
                  "\xf0\x9f\x90\xad" => 'MOUSE FACE',
         
     | 
| 
      
 161 
     | 
    
         
            +
                  "\xf0\x9f\x90\xaf" => 'TIGER FACE',
         
     | 
| 
      
 162 
     | 
    
         
            +
                  "\xf0\x9f\x90\xb1" => 'CAT FACE',
         
     | 
| 
      
 163 
     | 
    
         
            +
                  "\xf0\x9f\x90\xb3" => 'SPOUTING WHALE',
         
     | 
| 
      
 164 
     | 
    
         
            +
                  "\xf0\x9f\x90\xb4" => 'HORSE FACE',
         
     | 
| 
      
 165 
     | 
    
         
            +
                  "\xf0\x9f\x90\xb5" => 'MONKEY FACE',
         
     | 
| 
      
 166 
     | 
    
         
            +
                  "\xf0\x9f\x90\xb6" => 'DOG FACE',
         
     | 
| 
      
 167 
     | 
    
         
            +
                  "\xf0\x9f\x90\xb7" => 'PIG FACE',
         
     | 
| 
      
 168 
     | 
    
         
            +
                  "\xf0\x9f\x90\xbb" => 'BEAR FACE',
         
     | 
| 
      
 169 
     | 
    
         
            +
                  "\xf0\x9f\x90\xb9" => 'HAMSTER FACE',
         
     | 
| 
      
 170 
     | 
    
         
            +
                  "\xf0\x9f\x90\xba" => 'WOLF FACE',
         
     | 
| 
      
 171 
     | 
    
         
            +
                  "\xf0\x9f\x90\xae" => 'COW FACE',
         
     | 
| 
      
 172 
     | 
    
         
            +
                  "\xf0\x9f\x90\xb0" => 'RABBIT FACE',
         
     | 
| 
      
 173 
     | 
    
         
            +
                  "\xf0\x9f\x90\xb8" => 'FROG FACE',
         
     | 
| 
      
 174 
     | 
    
         
            +
                  "\xf0\x9f\x90\xbe" => 'PAW PRINTS',
         
     | 
| 
      
 175 
     | 
    
         
            +
                  "\xf0\x9f\x90\xb2" => 'DRAGON FACE',
         
     | 
| 
      
 176 
     | 
    
         
            +
                  "\xf0\x9f\x90\xbc" => 'PANDA FACE',
         
     | 
| 
      
 177 
     | 
    
         
            +
                  "\xf0\x9f\x90\xbd" => 'PIG NOSE',
         
     | 
| 
      
 178 
     | 
    
         
            +
                  "\xf0\x9f\x98\xa0" => 'ANGRY FACE',
         
     | 
| 
      
 179 
     | 
    
         
            +
                  "\xf0\x9f\x98\xa9" => 'WEARY FACE',
         
     | 
| 
      
 180 
     | 
    
         
            +
                  "\xf0\x9f\x98\xb2" => 'ASTONISHED FACE',
         
     | 
| 
      
 181 
     | 
    
         
            +
                  "\xf0\x9f\x98\x9e" => 'DISAPPOINTED FACE',
         
     | 
| 
      
 182 
     | 
    
         
            +
                  "\xf0\x9f\x98\xb5" => 'DIZZY FACE',
         
     | 
| 
      
 183 
     | 
    
         
            +
                  "\xf0\x9f\x98\xb0" => 'FACE WITH OPEN MOUTH AND COLD SWEAT',
         
     | 
| 
      
 184 
     | 
    
         
            +
                  "\xf0\x9f\x98\x92" => 'UNAMUSED FACE',
         
     | 
| 
      
 185 
     | 
    
         
            +
                  "\xf0\x9f\x98\x8d" => 'SMILING FACE WITH HEART-SHAPED EYES',
         
     | 
| 
      
 186 
     | 
    
         
            +
                  "\xf0\x9f\x98\xa4" => 'FACE WITH LOOK OF TRIUMPH',
         
     | 
| 
      
 187 
     | 
    
         
            +
                  "\xf0\x9f\x98\x9c" => 'FACE WITH STUCK-OUT TONGUE AND WINKING EYE',
         
     | 
| 
      
 188 
     | 
    
         
            +
                  "\xf0\x9f\x98\x9d" => 'FACE WITH STUCK-OUT TONGUE AND TIGHTLY-CLOSED EYES',
         
     | 
| 
      
 189 
     | 
    
         
            +
                  "\xf0\x9f\x98\x8b" => 'FACE SAVOURING DELICIOUS FOOD',
         
     | 
| 
      
 190 
     | 
    
         
            +
                  "\xf0\x9f\x98\x98" => 'FACE THROWING A KISS',
         
     | 
| 
      
 191 
     | 
    
         
            +
                  "\xf0\x9f\x98\x9a" => 'KISSING FACE WITH CLOSED EYES',
         
     | 
| 
      
 192 
     | 
    
         
            +
                  "\xf0\x9f\x98\xb7" => 'FACE WITH MEDICAL MASK',
         
     | 
| 
      
 193 
     | 
    
         
            +
                  "\xf0\x9f\x98\xb3" => 'FLUSHED FACE',
         
     | 
| 
      
 194 
     | 
    
         
            +
                  "\xf0\x9f\x98\x83" => 'SMILING FACE WITH OPEN MOUTH',
         
     | 
| 
      
 195 
     | 
    
         
            +
                  "\xf0\x9f\x98\x85" => 'SMILING FACE WITH OPEN MOUTH AND COLD SWEAT',
         
     | 
| 
      
 196 
     | 
    
         
            +
                  "\xf0\x9f\x98\x86" => 'SMILING FACE WITH OPEN MOUTH AND TIGHTLY-CLOSED EYES',
         
     | 
| 
      
 197 
     | 
    
         
            +
                  "\xf0\x9f\x98\x81" => 'GRINNING FACE WITH SMILING EYES',
         
     | 
| 
      
 198 
     | 
    
         
            +
                  "\xf0\x9f\x98\x82" => 'FACE WITH TEARS OF JOY',
         
     | 
| 
      
 199 
     | 
    
         
            +
                  "\xf0\x9f\x98\x8a" => 'SMILING FACE WITH SMILING EYES',
         
     | 
| 
      
 200 
     | 
    
         
            +
                  "\xe2\x98\xba" => 'WHITE SMILING FACE',
         
     | 
| 
      
 201 
     | 
    
         
            +
                  "\xf0\x9f\x98\x84" => 'SMILING FACE WITH OPEN MOUTH AND SMILING EYES',
         
     | 
| 
      
 202 
     | 
    
         
            +
                  "\xf0\x9f\x98\xa2" => 'CRYING FACE',
         
     | 
| 
      
 203 
     | 
    
         
            +
                  "\xf0\x9f\x98\xad" => 'LOUDLY CRYING FACE',
         
     | 
| 
      
 204 
     | 
    
         
            +
                  "\xf0\x9f\x98\xa8" => 'FEARFUL FACE',
         
     | 
| 
      
 205 
     | 
    
         
            +
                  "\xf0\x9f\x98\xa3" => 'PERSEVERING FACE',
         
     | 
| 
      
 206 
     | 
    
         
            +
                  "\xf0\x9f\x98\xa1" => 'POUTING FACE',
         
     | 
| 
      
 207 
     | 
    
         
            +
                  "\xf0\x9f\x98\x8c" => 'RELIEVED FACE',
         
     | 
| 
      
 208 
     | 
    
         
            +
                  "\xf0\x9f\x98\x96" => 'CONFOUNDED FACE',
         
     | 
| 
      
 209 
     | 
    
         
            +
                  "\xf0\x9f\x98\x94" => 'PENSIVE FACE',
         
     | 
| 
      
 210 
     | 
    
         
            +
                  "\xf0\x9f\x98\xb1" => 'FACE SCREAMING IN FEAR',
         
     | 
| 
      
 211 
     | 
    
         
            +
                  "\xf0\x9f\x98\xaa" => 'SLEEPY FACE',
         
     | 
| 
      
 212 
     | 
    
         
            +
                  "\xf0\x9f\x98\x8f" => 'SMIRKING FACE',
         
     | 
| 
      
 213 
     | 
    
         
            +
                  "\xf0\x9f\x98\x93" => 'FACE WITH COLD SWEAT',
         
     | 
| 
      
 214 
     | 
    
         
            +
                  "\xf0\x9f\x98\xa5" => 'DISAPPOINTED BUT RELIEVED FACE',
         
     | 
| 
      
 215 
     | 
    
         
            +
                  "\xf0\x9f\x98\xab" => 'TIRED FACE',
         
     | 
| 
      
 216 
     | 
    
         
            +
                  "\xf0\x9f\x98\x89" => 'WINKING FACE',
         
     | 
| 
      
 217 
     | 
    
         
            +
                  "\xf0\x9f\x98\xba" => 'SMILING CAT FACE WITH OPEN MOUTH',
         
     | 
| 
      
 218 
     | 
    
         
            +
                  "\xf0\x9f\x98\xb8" => 'GRINNING CAT FACE WITH SMILING EYES',
         
     | 
| 
      
 219 
     | 
    
         
            +
                  "\xf0\x9f\x98\xb9" => 'CAT FACE WITH TEARS OF JOY',
         
     | 
| 
      
 220 
     | 
    
         
            +
                  "\xf0\x9f\x98\xbd" => 'KISSING CAT FACE WITH CLOSED EYES',
         
     | 
| 
      
 221 
     | 
    
         
            +
                  "\xf0\x9f\x98\xbb" => 'SMILING CAT FACE WITH HEART-SHAPED EYES',
         
     | 
| 
      
 222 
     | 
    
         
            +
                  "\xf0\x9f\x98\xbf" => 'CRYING CAT FACE',
         
     | 
| 
      
 223 
     | 
    
         
            +
                  "\xf0\x9f\x98\xbe" => 'POUTING CAT FACE',
         
     | 
| 
      
 224 
     | 
    
         
            +
                  "\xf0\x9f\x98\xbc" => 'CAT FACE WITH WRY SMILE',
         
     | 
| 
      
 225 
     | 
    
         
            +
                  "\xf0\x9f\x99\x80" => 'WEARY CAT FACE',
         
     | 
| 
      
 226 
     | 
    
         
            +
                  "\xf0\x9f\x99\x85" => 'FACE WITH NO GOOD GESTURE',
         
     | 
| 
      
 227 
     | 
    
         
            +
                  "\xf0\x9f\x99\x86" => 'FACE WITH OK GESTURE',
         
     | 
| 
      
 228 
     | 
    
         
            +
                  "\xf0\x9f\x99\x87" => 'PERSON BOWING DEEPLY',
         
     | 
| 
      
 229 
     | 
    
         
            +
                  "\xf0\x9f\x99\x88" => 'SEE-NO-EVIL MONKEY',
         
     | 
| 
      
 230 
     | 
    
         
            +
                  "\xf0\x9f\x99\x8a" => 'SPEAK-NO-EVIL MONKEY',
         
     | 
| 
      
 231 
     | 
    
         
            +
                  "\xf0\x9f\x99\x89" => 'HEAR-NO-EVIL MONKEY',
         
     | 
| 
      
 232 
     | 
    
         
            +
                  "\xf0\x9f\x99\x8b" => 'HAPPY PERSON RAISING ONE HAND',
         
     | 
| 
      
 233 
     | 
    
         
            +
                  "\xf0\x9f\x99\x8c" => 'PERSON RAISING BOTH HANDS IN CELEBRATION',
         
     | 
| 
      
 234 
     | 
    
         
            +
                  "\xf0\x9f\x99\x8d" => 'PERSON FROWNING',
         
     | 
| 
      
 235 
     | 
    
         
            +
                  "\xf0\x9f\x99\x8e" => 'PERSON WITH POUTING FACE',
         
     | 
| 
      
 236 
     | 
    
         
            +
                  "\xf0\x9f\x99\x8f" => 'PERSON WITH FOLDED HANDS',
         
     | 
| 
      
 237 
     | 
    
         
            +
                  "\xf0\x9f\x8f\xa0" => 'HOUSE BUILDING',
         
     | 
| 
      
 238 
     | 
    
         
            +
                  "\xf0\x9f\x8f\xa1" => 'HOUSE WITH GARDEN',
         
     | 
| 
      
 239 
     | 
    
         
            +
                  "\xf0\x9f\x8f\xa2" => 'OFFICE BUILDING',
         
     | 
| 
      
 240 
     | 
    
         
            +
                  "\xf0\x9f\x8f\xa3" => 'JAPANESE POST OFFICE',
         
     | 
| 
      
 241 
     | 
    
         
            +
                  "\xf0\x9f\x8f\xa5" => 'HOSPITAL',
         
     | 
| 
      
 242 
     | 
    
         
            +
                  "\xf0\x9f\x8f\xa6" => 'BANK',
         
     | 
| 
      
 243 
     | 
    
         
            +
                  "\xf0\x9f\x8f\xa7" => 'AUTOMATED TELLER MACHINE',
         
     | 
| 
      
 244 
     | 
    
         
            +
                  "\xf0\x9f\x8f\xa8" => 'HOTEL',
         
     | 
| 
      
 245 
     | 
    
         
            +
                  "\xf0\x9f\x8f\xa9" => 'LOVE HOTEL',
         
     | 
| 
      
 246 
     | 
    
         
            +
                  "\xf0\x9f\x8f\xaa" => 'CONVENIENCE STORE',
         
     | 
| 
      
 247 
     | 
    
         
            +
                  "\xf0\x9f\x8f\xab" => 'SCHOOL',
         
     | 
| 
      
 248 
     | 
    
         
            +
                  "\xe2\x9b\xaa" => 'CHURCH',
         
     | 
| 
      
 249 
     | 
    
         
            +
                  "\xe2\x9b\xb2" => 'FOUNTAIN',
         
     | 
| 
      
 250 
     | 
    
         
            +
                  "\xf0\x9f\x8f\xac" => 'DEPARTMENT STORE',
         
     | 
| 
      
 251 
     | 
    
         
            +
                  "\xf0\x9f\x8f\xaf" => 'JAPANESE CASTLE',
         
     | 
| 
      
 252 
     | 
    
         
            +
                  "\xf0\x9f\x8f\xb0" => 'EUROPEAN CASTLE',
         
     | 
| 
      
 253 
     | 
    
         
            +
                  "\xf0\x9f\x8f\xad" => 'FACTORY',
         
     | 
| 
      
 254 
     | 
    
         
            +
                  "\xe2\x9a\x93" => 'ANCHOR',
         
     | 
| 
      
 255 
     | 
    
         
            +
                  "\xf0\x9f\x8f\xae" => 'IZAKAYA LANTERN',
         
     | 
| 
      
 256 
     | 
    
         
            +
                  "\xf0\x9f\x97\xbb" => 'MOUNT FUJI',
         
     | 
| 
      
 257 
     | 
    
         
            +
                  "\xf0\x9f\x97\xbc" => 'TOKYO TOWER',
         
     | 
| 
      
 258 
     | 
    
         
            +
                  "\xf0\x9f\x97\xbd" => 'STATUE OF LIBERTY',
         
     | 
| 
      
 259 
     | 
    
         
            +
                  "\xf0\x9f\x97\xbe" => 'SILHOUETTE OF JAPAN',
         
     | 
| 
      
 260 
     | 
    
         
            +
                  "\xf0\x9f\x97\xbf" => 'MOYAI',
         
     | 
| 
      
 261 
     | 
    
         
            +
                  "\xf0\x9f\x91\x9e" => 'MANS SHOE',
         
     | 
| 
      
 262 
     | 
    
         
            +
                  "\xf0\x9f\x91\x9f" => 'ATHLETIC SHOE',
         
     | 
| 
      
 263 
     | 
    
         
            +
                  "\xf0\x9f\x91\xa0" => 'HIGH-HEELED SHOE',
         
     | 
| 
      
 264 
     | 
    
         
            +
                  "\xf0\x9f\x91\xa1" => 'WOMANS SANDAL',
         
     | 
| 
      
 265 
     | 
    
         
            +
                  "\xf0\x9f\x91\xa2" => 'WOMANS BOOTS',
         
     | 
| 
      
 266 
     | 
    
         
            +
                  "\xf0\x9f\x91\xa3" => 'FOOTPRINTS',
         
     | 
| 
      
 267 
     | 
    
         
            +
                  "\xf0\x9f\x91\x93" => 'EYEGLASSES',
         
     | 
| 
      
 268 
     | 
    
         
            +
                  "\xf0\x9f\x91\x95" => 'T-SHIRT',
         
     | 
| 
      
 269 
     | 
    
         
            +
                  "\xf0\x9f\x91\x96" => 'JEANS',
         
     | 
| 
      
 270 
     | 
    
         
            +
                  "\xf0\x9f\x91\x91" => 'CROWN',
         
     | 
| 
      
 271 
     | 
    
         
            +
                  "\xf0\x9f\x91\x94" => 'NECKTIE',
         
     | 
| 
      
 272 
     | 
    
         
            +
                  "\xf0\x9f\x91\x92" => 'WOMANS HAT',
         
     | 
| 
      
 273 
     | 
    
         
            +
                  "\xf0\x9f\x91\x97" => 'DRESS',
         
     | 
| 
      
 274 
     | 
    
         
            +
                  "\xf0\x9f\x91\x98" => 'KIMONO',
         
     | 
| 
      
 275 
     | 
    
         
            +
                  "\xf0\x9f\x91\x99" => 'BIKINI',
         
     | 
| 
      
 276 
     | 
    
         
            +
                  "\xf0\x9f\x91\x9a" => 'WOMANS CLOTHES',
         
     | 
| 
      
 277 
     | 
    
         
            +
                  "\xf0\x9f\x91\x9b" => 'PURSE',
         
     | 
| 
      
 278 
     | 
    
         
            +
                  "\xf0\x9f\x91\x9c" => 'HANDBAG',
         
     | 
| 
      
 279 
     | 
    
         
            +
                  "\xf0\x9f\x91\x9d" => 'POUCH',
         
     | 
| 
      
 280 
     | 
    
         
            +
                  "\xf0\x9f\x92\xb0" => 'MONEY BAG',
         
     | 
| 
      
 281 
     | 
    
         
            +
                  "\xf0\x9f\x92\xb1" => 'CURRENCY EXCHANGE',
         
     | 
| 
      
 282 
     | 
    
         
            +
                  "\xf0\x9f\x92\xb9" => 'CHART WITH UPWARDS TREND AND YEN SIGN',
         
     | 
| 
      
 283 
     | 
    
         
            +
                  "\xf0\x9f\x92\xb2" => 'HEAVY DOLLAR SIGN',
         
     | 
| 
      
 284 
     | 
    
         
            +
                  "\xf0\x9f\x92\xb3" => 'CREDIT CARD',
         
     | 
| 
      
 285 
     | 
    
         
            +
                  "\xf0\x9f\x92\xb4" => 'BANKNOTE WITH YEN SIGN',
         
     | 
| 
      
 286 
     | 
    
         
            +
                  "\xf0\x9f\x92\xb5" => 'BANKNOTE WITH DOLLAR SIGN',
         
     | 
| 
      
 287 
     | 
    
         
            +
                  "\xf0\x9f\x92\xb8" => 'MONEY WITH WINGS',
         
     | 
| 
      
 288 
     | 
    
         
            +
                  "\xf0\x9f\x87\xa8\xf0\x9f\x87\xb3" => 'REGIONAL INDICATOR SYMBOL LETTERS CN',
         
     | 
| 
      
 289 
     | 
    
         
            +
                  "\xf0\x9f\x87\xa9\xf0\x9f\x87\xaa" => 'REGIONAL INDICATOR SYMBOL LETTERS DE',
         
     | 
| 
      
 290 
     | 
    
         
            +
                  "\xf0\x9f\x87\xaa\xf0\x9f\x87\xb8" => 'REGIONAL INDICATOR SYMBOL LETTERS ES',
         
     | 
| 
      
 291 
     | 
    
         
            +
                  "\xf0\x9f\x87\xab\xf0\x9f\x87\xb7" => 'REGIONAL INDICATOR SYMBOL LETTERS FR',
         
     | 
| 
      
 292 
     | 
    
         
            +
                  "\xf0\x9f\x87\xac\xf0\x9f\x87\xa7" => 'REGIONAL INDICATOR SYMBOL LETTERS GB',
         
     | 
| 
      
 293 
     | 
    
         
            +
                  "\xf0\x9f\x87\xae\xf0\x9f\x87\xb9" => 'REGIONAL INDICATOR SYMBOL LETTERS IT',
         
     | 
| 
      
 294 
     | 
    
         
            +
                  "\xf0\x9f\x87\xaf\xf0\x9f\x87\xb5" => 'REGIONAL INDICATOR SYMBOL LETTERS JP',
         
     | 
| 
      
 295 
     | 
    
         
            +
                  "\xf0\x9f\x87\xb0\xf0\x9f\x87\xb7" => 'REGIONAL INDICATOR SYMBOL LETTERS KR',
         
     | 
| 
      
 296 
     | 
    
         
            +
                  "\xf0\x9f\x87\xb7\xf0\x9f\x87\xba" => 'REGIONAL INDICATOR SYMBOL LETTERS RU',
         
     | 
| 
      
 297 
     | 
    
         
            +
                  "\xf0\x9f\x87\xba\xf0\x9f\x87\xb8" => 'REGIONAL INDICATOR SYMBOL LETTERS US',
         
     | 
| 
      
 298 
     | 
    
         
            +
                  "\xf0\x9f\x94\xa5" => 'FIRE',
         
     | 
| 
      
 299 
     | 
    
         
            +
                  "\xf0\x9f\x94\xa6" => 'ELECTRIC TORCH',
         
     | 
| 
      
 300 
     | 
    
         
            +
                  "\xf0\x9f\x94\xa7" => 'WRENCH',
         
     | 
| 
      
 301 
     | 
    
         
            +
                  "\xf0\x9f\x94\xa8" => 'HAMMER',
         
     | 
| 
      
 302 
     | 
    
         
            +
                  "\xf0\x9f\x94\xa9" => 'NUT AND BOLT',
         
     | 
| 
      
 303 
     | 
    
         
            +
                  "\xf0\x9f\x94\xaa" => 'HOCHO',
         
     | 
| 
      
 304 
     | 
    
         
            +
                  "\xf0\x9f\x94\xab" => 'PISTOL',
         
     | 
| 
      
 305 
     | 
    
         
            +
                  "\xf0\x9f\x94\xae" => 'CRYSTAL BALL',
         
     | 
| 
      
 306 
     | 
    
         
            +
                  "\xf0\x9f\x94\xaf" => 'SIX POINTED STAR WITH MIDDLE DOT',
         
     | 
| 
      
 307 
     | 
    
         
            +
                  "\xf0\x9f\x94\xb0" => 'JAPANESE SYMBOL FOR BEGINNER',
         
     | 
| 
      
 308 
     | 
    
         
            +
                  "\xf0\x9f\x94\xb1" => 'TRIDENT EMBLEM',
         
     | 
| 
      
 309 
     | 
    
         
            +
                  "\xf0\x9f\x92\x89" => 'SYRINGE',
         
     | 
| 
      
 310 
     | 
    
         
            +
                  "\xf0\x9f\x92\x8a" => 'PILL',
         
     | 
| 
      
 311 
     | 
    
         
            +
                  "\xf0\x9f\x85\xb0" => 'NEGATIVE SQUARED LATIN CAPITAL LETTER A',
         
     | 
| 
      
 312 
     | 
    
         
            +
                  "\xf0\x9f\x85\xb1" => 'NEGATIVE SQUARED LATIN CAPITAL LETTER B',
         
     | 
| 
      
 313 
     | 
    
         
            +
                  "\xf0\x9f\x86\x8e" => 'NEGATIVE SQUARED AB',
         
     | 
| 
      
 314 
     | 
    
         
            +
                  "\xf0\x9f\x85\xbe" => 'NEGATIVE SQUARED LATIN CAPITAL LETTER O',
         
     | 
| 
      
 315 
     | 
    
         
            +
                  "\xf0\x9f\x8e\x80" => 'RIBBON',
         
     | 
| 
      
 316 
     | 
    
         
            +
                  "\xf0\x9f\x8e\x81" => 'WRAPPED PRESENT',
         
     | 
| 
      
 317 
     | 
    
         
            +
                  "\xf0\x9f\x8e\x82" => 'BIRTHDAY CAKE',
         
     | 
| 
      
 318 
     | 
    
         
            +
                  "\xf0\x9f\x8e\x84" => 'CHRISTMAS TREE',
         
     | 
| 
      
 319 
     | 
    
         
            +
                  "\xf0\x9f\x8e\x85" => 'FATHER CHRISTMAS',
         
     | 
| 
      
 320 
     | 
    
         
            +
                  "\xf0\x9f\x8e\x8c" => 'CROSSED FLAGS',
         
     | 
| 
      
 321 
     | 
    
         
            +
                  "\xf0\x9f\x8e\x86" => 'FIREWORKS',
         
     | 
| 
      
 322 
     | 
    
         
            +
                  "\xf0\x9f\x8e\x88" => 'BALLOON',
         
     | 
| 
      
 323 
     | 
    
         
            +
                  "\xf0\x9f\x8e\x89" => 'PARTY POPPER',
         
     | 
| 
      
 324 
     | 
    
         
            +
                  "\xf0\x9f\x8e\x8d" => 'PINE DECORATION',
         
     | 
| 
      
 325 
     | 
    
         
            +
                  "\xf0\x9f\x8e\x8e" => 'JAPANESE DOLLS',
         
     | 
| 
      
 326 
     | 
    
         
            +
                  "\xf0\x9f\x8e\x93" => 'GRADUATION CAP',
         
     | 
| 
      
 327 
     | 
    
         
            +
                  "\xf0\x9f\x8e\x92" => 'SCHOOL SATCHEL',
         
     | 
| 
      
 328 
     | 
    
         
            +
                  "\xf0\x9f\x8e\x8f" => 'CARP STREAMER',
         
     | 
| 
      
 329 
     | 
    
         
            +
                  "\xf0\x9f\x8e\x87" => 'FIREWORK SPARKLER',
         
     | 
| 
      
 330 
     | 
    
         
            +
                  "\xf0\x9f\x8e\x90" => 'WIND CHIME',
         
     | 
| 
      
 331 
     | 
    
         
            +
                  "\xf0\x9f\x8e\x83" => 'JACK-O-LANTERN',
         
     | 
| 
      
 332 
     | 
    
         
            +
                  "\xf0\x9f\x8e\x8a" => 'CONFETTI BALL',
         
     | 
| 
      
 333 
     | 
    
         
            +
                  "\xf0\x9f\x8e\x8b" => 'TANABATA TREE',
         
     | 
| 
      
 334 
     | 
    
         
            +
                  "\xf0\x9f\x8e\x91" => 'MOON VIEWING CEREMONY',
         
     | 
| 
      
 335 
     | 
    
         
            +
                  "\xf0\x9f\x93\x9f" => 'PAGER',
         
     | 
| 
      
 336 
     | 
    
         
            +
                  "\xe2\x98\x8e" => 'BLACK TELEPHONE',
         
     | 
| 
      
 337 
     | 
    
         
            +
                  "\xf0\x9f\x93\x9e" => 'TELEPHONE RECEIVER',
         
     | 
| 
      
 338 
     | 
    
         
            +
                  "\xf0\x9f\x93\xb1" => 'MOBILE PHONE',
         
     | 
| 
      
 339 
     | 
    
         
            +
                  "\xf0\x9f\x93\xb2" => 'MOBILE PHONE WITH RIGHTWARDS ARROW AT LEFT',
         
     | 
| 
      
 340 
     | 
    
         
            +
                  "\xf0\x9f\x93\x9d" => 'MEMO',
         
     | 
| 
      
 341 
     | 
    
         
            +
                  "\xf0\x9f\x93\xa0" => 'FAX MACHINE',
         
     | 
| 
      
 342 
     | 
    
         
            +
                  "\xe2\x9c\x89" => 'ENVELOPE',
         
     | 
| 
      
 343 
     | 
    
         
            +
                  "\xf0\x9f\x93\xa8" => 'INCOMING ENVELOPE',
         
     | 
| 
      
 344 
     | 
    
         
            +
                  "\xf0\x9f\x93\xa9" => 'ENVELOPE WITH DOWNWARDS ARROW ABOVE',
         
     | 
| 
      
 345 
     | 
    
         
            +
                  "\xf0\x9f\x93\xaa" => 'CLOSED MAILBOX WITH LOWERED FLAG',
         
     | 
| 
      
 346 
     | 
    
         
            +
                  "\xf0\x9f\x93\xab" => 'CLOSED MAILBOX WITH RAISED FLAG',
         
     | 
| 
      
 347 
     | 
    
         
            +
                  "\xf0\x9f\x93\xae" => 'POSTBOX',
         
     | 
| 
      
 348 
     | 
    
         
            +
                  "\xf0\x9f\x93\xb0" => 'NEWSPAPER',
         
     | 
| 
      
 349 
     | 
    
         
            +
                  "\xf0\x9f\x93\xa2" => 'PUBLIC ADDRESS LOUDSPEAKER',
         
     | 
| 
      
 350 
     | 
    
         
            +
                  "\xf0\x9f\x93\xa3" => 'CHEERING MEGAPHONE',
         
     | 
| 
      
 351 
     | 
    
         
            +
                  "\xf0\x9f\x93\xa1" => 'SATELLITE ANTENNA',
         
     | 
| 
      
 352 
     | 
    
         
            +
                  "\xf0\x9f\x93\xa4" => 'OUTBOX TRAY',
         
     | 
| 
      
 353 
     | 
    
         
            +
                  "\xf0\x9f\x93\xa5" => 'INBOX TRAY',
         
     | 
| 
      
 354 
     | 
    
         
            +
                  "\xf0\x9f\x93\xa6" => 'PACKAGE',
         
     | 
| 
      
 355 
     | 
    
         
            +
                  "\xf0\x9f\x93\xa7" => 'E-MAIL SYMBOL',
         
     | 
| 
      
 356 
     | 
    
         
            +
                  "\xf0\x9f\x94\xa0" => 'INPUT SYMBOL FOR LATIN CAPITAL LETTERS',
         
     | 
| 
      
 357 
     | 
    
         
            +
                  "\xf0\x9f\x94\xa1" => 'INPUT SYMBOL FOR LATIN SMALL LETTERS',
         
     | 
| 
      
 358 
     | 
    
         
            +
                  "\xf0\x9f\x94\xa2" => 'INPUT SYMBOL FOR NUMBERS',
         
     | 
| 
      
 359 
     | 
    
         
            +
                  "\xf0\x9f\x94\xa3" => 'INPUT SYMBOL FOR SYMBOLS',
         
     | 
| 
      
 360 
     | 
    
         
            +
                  "\xf0\x9f\x94\xa4" => 'INPUT SYMBOL FOR LATIN LETTERS',
         
     | 
| 
      
 361 
     | 
    
         
            +
                  "\xe2\x9c\x92" => 'BLACK NIB',
         
     | 
| 
      
 362 
     | 
    
         
            +
                  "\xf0\x9f\x92\xba" => 'SEAT',
         
     | 
| 
      
 363 
     | 
    
         
            +
                  "\xf0\x9f\x92\xbb" => 'PERSONAL COMPUTER',
         
     | 
| 
      
 364 
     | 
    
         
            +
                  "\xe2\x9c\x8f" => 'PENCIL',
         
     | 
| 
      
 365 
     | 
    
         
            +
                  "\xf0\x9f\x93\x8e" => 'PAPERCLIP',
         
     | 
| 
      
 366 
     | 
    
         
            +
                  "\xf0\x9f\x92\xbc" => 'BRIEFCASE',
         
     | 
| 
      
 367 
     | 
    
         
            +
                  "\xf0\x9f\x92\xbd" => 'MINIDISC',
         
     | 
| 
      
 368 
     | 
    
         
            +
                  "\xf0\x9f\x92\xbe" => 'FLOPPY DISK',
         
     | 
| 
      
 369 
     | 
    
         
            +
                  "\xf0\x9f\x92\xbf" => 'OPTICAL DISC',
         
     | 
| 
      
 370 
     | 
    
         
            +
                  "\xf0\x9f\x93\x80" => 'DVD',
         
     | 
| 
      
 371 
     | 
    
         
            +
                  "\xe2\x9c\x82" => 'BLACK SCISSORS',
         
     | 
| 
      
 372 
     | 
    
         
            +
                  "\xf0\x9f\x93\x8d" => 'ROUND PUSHPIN',
         
     | 
| 
      
 373 
     | 
    
         
            +
                  "\xf0\x9f\x93\x83" => 'PAGE WITH CURL',
         
     | 
| 
      
 374 
     | 
    
         
            +
                  "\xf0\x9f\x93\x84" => 'PAGE FACING UP',
         
     | 
| 
      
 375 
     | 
    
         
            +
                  "\xf0\x9f\x93\x85" => 'CALENDAR',
         
     | 
| 
      
 376 
     | 
    
         
            +
                  "\xf0\x9f\x93\x81" => 'FILE FOLDER',
         
     | 
| 
      
 377 
     | 
    
         
            +
                  "\xf0\x9f\x93\x82" => 'OPEN FILE FOLDER',
         
     | 
| 
      
 378 
     | 
    
         
            +
                  "\xf0\x9f\x93\x93" => 'NOTEBOOK',
         
     | 
| 
      
 379 
     | 
    
         
            +
                  "\xf0\x9f\x93\x96" => 'OPEN BOOK',
         
     | 
| 
      
 380 
     | 
    
         
            +
                  "\xf0\x9f\x93\x94" => 'NOTEBOOK WITH DECORATIVE COVER',
         
     | 
| 
      
 381 
     | 
    
         
            +
                  "\xf0\x9f\x93\x95" => 'CLOSED BOOK',
         
     | 
| 
      
 382 
     | 
    
         
            +
                  "\xf0\x9f\x93\x97" => 'GREEN BOOK',
         
     | 
| 
      
 383 
     | 
    
         
            +
                  "\xf0\x9f\x93\x98" => 'BLUE BOOK',
         
     | 
| 
      
 384 
     | 
    
         
            +
                  "\xf0\x9f\x93\x99" => 'ORANGE BOOK',
         
     | 
| 
      
 385 
     | 
    
         
            +
                  "\xf0\x9f\x93\x9a" => 'BOOKS',
         
     | 
| 
      
 386 
     | 
    
         
            +
                  "\xf0\x9f\x93\x9b" => 'NAME BADGE',
         
     | 
| 
      
 387 
     | 
    
         
            +
                  "\xf0\x9f\x93\x9c" => 'SCROLL',
         
     | 
| 
      
 388 
     | 
    
         
            +
                  "\xf0\x9f\x93\x8b" => 'CLIPBOARD',
         
     | 
| 
      
 389 
     | 
    
         
            +
                  "\xf0\x9f\x93\x86" => 'TEAR-OFF CALENDAR',
         
     | 
| 
      
 390 
     | 
    
         
            +
                  "\xf0\x9f\x93\x8a" => 'BAR CHART',
         
     | 
| 
      
 391 
     | 
    
         
            +
                  "\xf0\x9f\x93\x88" => 'CHART WITH UPWARDS TREND',
         
     | 
| 
      
 392 
     | 
    
         
            +
                  "\xf0\x9f\x93\x89" => 'CHART WITH DOWNWARDS TREND',
         
     | 
| 
      
 393 
     | 
    
         
            +
                  "\xf0\x9f\x93\x87" => 'CARD INDEX',
         
     | 
| 
      
 394 
     | 
    
         
            +
                  "\xf0\x9f\x93\x8c" => 'PUSHPIN',
         
     | 
| 
      
 395 
     | 
    
         
            +
                  "\xf0\x9f\x93\x92" => 'LEDGER',
         
     | 
| 
      
 396 
     | 
    
         
            +
                  "\xf0\x9f\x93\x8f" => 'STRAIGHT RULER',
         
     | 
| 
      
 397 
     | 
    
         
            +
                  "\xf0\x9f\x93\x90" => 'TRIANGULAR RULER',
         
     | 
| 
      
 398 
     | 
    
         
            +
                  "\xf0\x9f\x93\x91" => 'BOOKMARK TABS',
         
     | 
| 
      
 399 
     | 
    
         
            +
                  "\xf0\x9f\x8e\xbd" => 'RUNNING SHIRT WITH SASH',
         
     | 
| 
      
 400 
     | 
    
         
            +
                  "\xe2\x9a\xbe" => 'BASEBALL',
         
     | 
| 
      
 401 
     | 
    
         
            +
                  "\xe2\x9b\xb3" => 'FLAG IN HOLE',
         
     | 
| 
      
 402 
     | 
    
         
            +
                  "\xf0\x9f\x8e\xbe" => 'TENNIS RACQUET AND BALL',
         
     | 
| 
      
 403 
     | 
    
         
            +
                  "\xe2\x9a\xbd" => 'SOCCER BALL',
         
     | 
| 
      
 404 
     | 
    
         
            +
                  "\xf0\x9f\x8e\xbf" => 'SKI AND SKI BOOT',
         
     | 
| 
      
 405 
     | 
    
         
            +
                  "\xf0\x9f\x8f\x80" => 'BASKETBALL AND HOOP',
         
     | 
| 
      
 406 
     | 
    
         
            +
                  "\xf0\x9f\x8f\x81" => 'CHEQUERED FLAG',
         
     | 
| 
      
 407 
     | 
    
         
            +
                  "\xf0\x9f\x8f\x82" => 'SNOWBOARDER',
         
     | 
| 
      
 408 
     | 
    
         
            +
                  "\xf0\x9f\x8f\x83" => 'RUNNER',
         
     | 
| 
      
 409 
     | 
    
         
            +
                  "\xf0\x9f\x8f\x84" => 'SURFER',
         
     | 
| 
      
 410 
     | 
    
         
            +
                  "\xf0\x9f\x8f\x86" => 'TROPHY',
         
     | 
| 
      
 411 
     | 
    
         
            +
                  "\xf0\x9f\x8f\x88" => 'AMERICAN FOOTBALL',
         
     | 
| 
      
 412 
     | 
    
         
            +
                  "\xf0\x9f\x8f\x8a" => 'SWIMMER',
         
     | 
| 
      
 413 
     | 
    
         
            +
                  "\xf0\x9f\x9a\x83" => 'RAILWAY CAR',
         
     | 
| 
      
 414 
     | 
    
         
            +
                  "\xf0\x9f\x9a\x87" => 'METRO',
         
     | 
| 
      
 415 
     | 
    
         
            +
                  "\xe2\x93\x82" => 'CIRCLED LATIN CAPITAL LETTER M',
         
     | 
| 
      
 416 
     | 
    
         
            +
                  "\xf0\x9f\x9a\x84" => 'HIGH-SPEED TRAIN',
         
     | 
| 
      
 417 
     | 
    
         
            +
                  "\xf0\x9f\x9a\x85" => 'HIGH-SPEED TRAIN WITH BULLET NOSE',
         
     | 
| 
      
 418 
     | 
    
         
            +
                  "\xf0\x9f\x9a\x97" => 'AUTOMOBILE',
         
     | 
| 
      
 419 
     | 
    
         
            +
                  "\xf0\x9f\x9a\x99" => 'RECREATIONAL VEHICLE',
         
     | 
| 
      
 420 
     | 
    
         
            +
                  "\xf0\x9f\x9a\x8c" => 'BUS',
         
     | 
| 
      
 421 
     | 
    
         
            +
                  "\xf0\x9f\x9a\x8f" => 'BUS STOP',
         
     | 
| 
      
 422 
     | 
    
         
            +
                  "\xf0\x9f\x9a\xa2" => 'SHIP',
         
     | 
| 
      
 423 
     | 
    
         
            +
                  "\xe2\x9c\x88" => 'AIRPLANE',
         
     | 
| 
      
 424 
     | 
    
         
            +
                  "\xe2\x9b\xb5" => 'SAILBOAT',
         
     | 
| 
      
 425 
     | 
    
         
            +
                  "\xf0\x9f\x9a\x89" => 'STATION',
         
     | 
| 
      
 426 
     | 
    
         
            +
                  "\xf0\x9f\x9a\x80" => 'ROCKET',
         
     | 
| 
      
 427 
     | 
    
         
            +
                  "\xf0\x9f\x9a\xa4" => 'SPEEDBOAT',
         
     | 
| 
      
 428 
     | 
    
         
            +
                  "\xf0\x9f\x9a\x95" => 'TAXI',
         
     | 
| 
      
 429 
     | 
    
         
            +
                  "\xf0\x9f\x9a\x9a" => 'DELIVERY TRUCK',
         
     | 
| 
      
 430 
     | 
    
         
            +
                  "\xf0\x9f\x9a\x92" => 'FIRE ENGINE',
         
     | 
| 
      
 431 
     | 
    
         
            +
                  "\xf0\x9f\x9a\x91" => 'AMBULANCE',
         
     | 
| 
      
 432 
     | 
    
         
            +
                  "\xf0\x9f\x9a\x93" => 'POLICE CAR',
         
     | 
| 
      
 433 
     | 
    
         
            +
                  "\xe2\x9b\xbd" => 'FUEL PUMP',
         
     | 
| 
      
 434 
     | 
    
         
            +
                  "\xf0\x9f\x85\xbf" => 'NEGATIVE SQUARED LATIN CAPITAL LETTER P',
         
     | 
| 
      
 435 
     | 
    
         
            +
                  "\xf0\x9f\x9a\xa5" => 'HORIZONTAL TRAFFIC LIGHT',
         
     | 
| 
      
 436 
     | 
    
         
            +
                  "\xf0\x9f\x9a\xa7" => 'CONSTRUCTION SIGN',
         
     | 
| 
      
 437 
     | 
    
         
            +
                  "\xf0\x9f\x9a\xa8" => 'POLICE CARS REVOLVING LIGHT',
         
     | 
| 
      
 438 
     | 
    
         
            +
                  "\xe2\x99\xa8" => 'HOT SPRINGS',
         
     | 
| 
      
 439 
     | 
    
         
            +
                  "\xe2\x9b\xba" => 'TENT',
         
     | 
| 
      
 440 
     | 
    
         
            +
                  "\xf0\x9f\x8e\xa0" => 'CAROUSEL HORSE',
         
     | 
| 
      
 441 
     | 
    
         
            +
                  "\xf0\x9f\x8e\xa1" => 'FERRIS WHEEL',
         
     | 
| 
      
 442 
     | 
    
         
            +
                  "\xf0\x9f\x8e\xa2" => 'ROLLER COASTER',
         
     | 
| 
      
 443 
     | 
    
         
            +
                  "\xf0\x9f\x8e\xa3" => 'FISHING POLE AND FISH',
         
     | 
| 
      
 444 
     | 
    
         
            +
                  "\xf0\x9f\x8e\xa4" => 'MICROPHONE',
         
     | 
| 
      
 445 
     | 
    
         
            +
                  "\xf0\x9f\x8e\xa5" => 'MOVIE CAMERA',
         
     | 
| 
      
 446 
     | 
    
         
            +
                  "\xf0\x9f\x8e\xa6" => 'CINEMA',
         
     | 
| 
      
 447 
     | 
    
         
            +
                  "\xf0\x9f\x8e\xa7" => 'HEADPHONE',
         
     | 
| 
      
 448 
     | 
    
         
            +
                  "\xf0\x9f\x8e\xa8" => 'ARTIST PALETTE',
         
     | 
| 
      
 449 
     | 
    
         
            +
                  "\xf0\x9f\x8e\xa9" => 'TOP HAT',
         
     | 
| 
      
 450 
     | 
    
         
            +
                  "\xf0\x9f\x8e\xaa" => 'CIRCUS TENT',
         
     | 
| 
      
 451 
     | 
    
         
            +
                  "\xf0\x9f\x8e\xab" => 'TICKET',
         
     | 
| 
      
 452 
     | 
    
         
            +
                  "\xf0\x9f\x8e\xac" => 'CLAPPER BOARD',
         
     | 
| 
      
 453 
     | 
    
         
            +
                  "\xf0\x9f\x8e\xad" => 'PERFORMING ARTS',
         
     | 
| 
      
 454 
     | 
    
         
            +
                  "\xf0\x9f\x8e\xae" => 'VIDEO GAME',
         
     | 
| 
      
 455 
     | 
    
         
            +
                  "\xf0\x9f\x80\x84" => 'MAHJONG TILE RED DRAGON',
         
     | 
| 
      
 456 
     | 
    
         
            +
                  "\xf0\x9f\x8e\xaf" => 'DIRECT HIT',
         
     | 
| 
      
 457 
     | 
    
         
            +
                  "\xf0\x9f\x8e\xb0" => 'SLOT MACHINE',
         
     | 
| 
      
 458 
     | 
    
         
            +
                  "\xf0\x9f\x8e\xb1" => 'BILLIARDS',
         
     | 
| 
      
 459 
     | 
    
         
            +
                  "\xf0\x9f\x8e\xb2" => 'GAME DIE',
         
     | 
| 
      
 460 
     | 
    
         
            +
                  "\xf0\x9f\x8e\xb3" => 'BOWLING',
         
     | 
| 
      
 461 
     | 
    
         
            +
                  "\xf0\x9f\x8e\xb4" => 'FLOWER PLAYING CARDS',
         
     | 
| 
      
 462 
     | 
    
         
            +
                  "\xf0\x9f\x83\x8f" => 'PLAYING CARD BLACK JOKER',
         
     | 
| 
      
 463 
     | 
    
         
            +
                  "\xf0\x9f\x8e\xb5" => 'MUSICAL NOTE',
         
     | 
| 
      
 464 
     | 
    
         
            +
                  "\xf0\x9f\x8e\xb6" => 'MULTIPLE MUSICAL NOTES',
         
     | 
| 
      
 465 
     | 
    
         
            +
                  "\xf0\x9f\x8e\xb7" => 'SAXOPHONE',
         
     | 
| 
      
 466 
     | 
    
         
            +
                  "\xf0\x9f\x8e\xb8" => 'GUITAR',
         
     | 
| 
      
 467 
     | 
    
         
            +
                  "\xf0\x9f\x8e\xb9" => 'MUSICAL KEYBOARD',
         
     | 
| 
      
 468 
     | 
    
         
            +
                  "\xf0\x9f\x8e\xba" => 'TRUMPET',
         
     | 
| 
      
 469 
     | 
    
         
            +
                  "\xf0\x9f\x8e\xbb" => 'VIOLIN',
         
     | 
| 
      
 470 
     | 
    
         
            +
                  "\xf0\x9f\x8e\xbc" => 'MUSICAL SCORE',
         
     | 
| 
      
 471 
     | 
    
         
            +
                  "\xe3\x80\xbd" => 'PART ALTERNATION MARK',
         
     | 
| 
      
 472 
     | 
    
         
            +
                  "\xf0\x9f\x93\xb7" => 'CAMERA',
         
     | 
| 
      
 473 
     | 
    
         
            +
                  "\xf0\x9f\x93\xb9" => 'VIDEO CAMERA',
         
     | 
| 
      
 474 
     | 
    
         
            +
                  "\xf0\x9f\x93\xba" => 'TELEVISION',
         
     | 
| 
      
 475 
     | 
    
         
            +
                  "\xf0\x9f\x93\xbb" => 'RADIO',
         
     | 
| 
      
 476 
     | 
    
         
            +
                  "\xf0\x9f\x93\xbc" => 'VIDEOCASSETTE',
         
     | 
| 
      
 477 
     | 
    
         
            +
                  "\xf0\x9f\x92\x8b" => 'KISS MARK',
         
     | 
| 
      
 478 
     | 
    
         
            +
                  "\xf0\x9f\x92\x8c" => 'LOVE LETTER',
         
     | 
| 
      
 479 
     | 
    
         
            +
                  "\xf0\x9f\x92\x8d" => 'RING',
         
     | 
| 
      
 480 
     | 
    
         
            +
                  "\xf0\x9f\x92\x8e" => 'GEM STONE',
         
     | 
| 
      
 481 
     | 
    
         
            +
                  "\xf0\x9f\x92\x8f" => 'KISS',
         
     | 
| 
      
 482 
     | 
    
         
            +
                  "\xf0\x9f\x92\x90" => 'BOUQUET',
         
     | 
| 
      
 483 
     | 
    
         
            +
                  "\xf0\x9f\x92\x91" => 'COUPLE WITH HEART',
         
     | 
| 
      
 484 
     | 
    
         
            +
                  "\xf0\x9f\x92\x92" => 'WEDDING',
         
     | 
| 
      
 485 
     | 
    
         
            +
                  "\xf0\x9f\x94\x9e" => 'NO ONE UNDER EIGHTEEN SYMBOL',
         
     | 
| 
      
 486 
     | 
    
         
            +
                  "\xc2\xa9" => 'COPYRIGHT SIGN',
         
     | 
| 
      
 487 
     | 
    
         
            +
                  "\xc2\xae" => 'REGISTERED SIGN',
         
     | 
| 
      
 488 
     | 
    
         
            +
                  "\xe2\x84\xa2" => 'TRADE MARK SIGN',
         
     | 
| 
      
 489 
     | 
    
         
            +
                  "\xe2\x84\xb9" => 'INFORMATION SOURCE',
         
     | 
| 
      
 490 
     | 
    
         
            +
                  "#\xe2\x83\xa3" => 'HASH KEY',
         
     | 
| 
      
 491 
     | 
    
         
            +
                  "1\xe2\x83\xa3" => 'KEYCAP 1',
         
     | 
| 
      
 492 
     | 
    
         
            +
                  "2\xe2\x83\xa3" => 'KEYCAP 2',
         
     | 
| 
      
 493 
     | 
    
         
            +
                  "3\xe2\x83\xa3" => 'KEYCAP 3',
         
     | 
| 
      
 494 
     | 
    
         
            +
                  "4\xe2\x83\xa3" => 'KEYCAP 4',
         
     | 
| 
      
 495 
     | 
    
         
            +
                  "5\xe2\x83\xa3" => 'KEYCAP 5',
         
     | 
| 
      
 496 
     | 
    
         
            +
                  "6\xe2\x83\xa3" => 'KEYCAP 6',
         
     | 
| 
      
 497 
     | 
    
         
            +
                  "7\xe2\x83\xa3" => 'KEYCAP 7',
         
     | 
| 
      
 498 
     | 
    
         
            +
                  "8\xe2\x83\xa3" => 'KEYCAP 8',
         
     | 
| 
      
 499 
     | 
    
         
            +
                  "9\xe2\x83\xa3" => 'KEYCAP 9',
         
     | 
| 
      
 500 
     | 
    
         
            +
                  "0\xe2\x83\xa3" => 'KEYCAP 0',
         
     | 
| 
      
 501 
     | 
    
         
            +
                  "\xf0\x9f\x94\x9f" => 'KEYCAP TEN',
         
     | 
| 
      
 502 
     | 
    
         
            +
                  "\xf0\x9f\x93\xb6" => 'ANTENNA WITH BARS',
         
     | 
| 
      
 503 
     | 
    
         
            +
                  "\xf0\x9f\x93\xb3" => 'VIBRATION MODE',
         
     | 
| 
      
 504 
     | 
    
         
            +
                  "\xf0\x9f\x93\xb4" => 'MOBILE PHONE OFF',
         
     | 
| 
      
 505 
     | 
    
         
            +
                  "\xf0\x9f\x8d\x94" => 'HAMBURGER',
         
     | 
| 
      
 506 
     | 
    
         
            +
                  "\xf0\x9f\x8d\x99" => 'RICE BALL',
         
     | 
| 
      
 507 
     | 
    
         
            +
                  "\xf0\x9f\x8d\xb0" => 'SHORTCAKE',
         
     | 
| 
      
 508 
     | 
    
         
            +
                  "\xf0\x9f\x8d\x9c" => 'STEAMING BOWL',
         
     | 
| 
      
 509 
     | 
    
         
            +
                  "\xf0\x9f\x8d\x9e" => 'BREAD',
         
     | 
| 
      
 510 
     | 
    
         
            +
                  "\xf0\x9f\x8d\xb3" => 'COOKING',
         
     | 
| 
      
 511 
     | 
    
         
            +
                  "\xf0\x9f\x8d\xa6" => 'SOFT ICE CREAM',
         
     | 
| 
      
 512 
     | 
    
         
            +
                  "\xf0\x9f\x8d\x9f" => 'FRENCH FRIES',
         
     | 
| 
      
 513 
     | 
    
         
            +
                  "\xf0\x9f\x8d\xa1" => 'DANGO',
         
     | 
| 
      
 514 
     | 
    
         
            +
                  "\xf0\x9f\x8d\x98" => 'RICE CRACKER',
         
     | 
| 
      
 515 
     | 
    
         
            +
                  "\xf0\x9f\x8d\x9a" => 'COOKED RICE',
         
     | 
| 
      
 516 
     | 
    
         
            +
                  "\xf0\x9f\x8d\x9d" => 'SPAGHETTI',
         
     | 
| 
      
 517 
     | 
    
         
            +
                  "\xf0\x9f\x8d\x9b" => 'CURRY AND RICE',
         
     | 
| 
      
 518 
     | 
    
         
            +
                  "\xf0\x9f\x8d\xa2" => 'ODEN',
         
     | 
| 
      
 519 
     | 
    
         
            +
                  "\xf0\x9f\x8d\xa3" => 'SUSHI',
         
     | 
| 
      
 520 
     | 
    
         
            +
                  "\xf0\x9f\x8d\xb1" => 'BENTO BOX',
         
     | 
| 
      
 521 
     | 
    
         
            +
                  "\xf0\x9f\x8d\xb2" => 'POT OF FOOD',
         
     | 
| 
      
 522 
     | 
    
         
            +
                  "\xf0\x9f\x8d\xa7" => 'SHAVED ICE',
         
     | 
| 
      
 523 
     | 
    
         
            +
                  "\xf0\x9f\x8d\x96" => 'MEAT ON BONE',
         
     | 
| 
      
 524 
     | 
    
         
            +
                  "\xf0\x9f\x8d\xa5" => 'FISH CAKE WITH SWIRL DESIGN',
         
     | 
| 
      
 525 
     | 
    
         
            +
                  "\xf0\x9f\x8d\xa0" => 'ROASTED SWEET POTATO',
         
     | 
| 
      
 526 
     | 
    
         
            +
                  "\xf0\x9f\x8d\x95" => 'SLICE OF PIZZA',
         
     | 
| 
      
 527 
     | 
    
         
            +
                  "\xf0\x9f\x8d\x97" => 'POULTRY LEG',
         
     | 
| 
      
 528 
     | 
    
         
            +
                  "\xf0\x9f\x8d\xa8" => 'ICE CREAM',
         
     | 
| 
      
 529 
     | 
    
         
            +
                  "\xf0\x9f\x8d\xa9" => 'DOUGHNUT',
         
     | 
| 
      
 530 
     | 
    
         
            +
                  "\xf0\x9f\x8d\xaa" => 'COOKIE',
         
     | 
| 
      
 531 
     | 
    
         
            +
                  "\xf0\x9f\x8d\xab" => 'CHOCOLATE BAR',
         
     | 
| 
      
 532 
     | 
    
         
            +
                  "\xf0\x9f\x8d\xac" => 'CANDY',
         
     | 
| 
      
 533 
     | 
    
         
            +
                  "\xf0\x9f\x8d\xad" => 'LOLLIPOP',
         
     | 
| 
      
 534 
     | 
    
         
            +
                  "\xf0\x9f\x8d\xae" => 'CUSTARD',
         
     | 
| 
      
 535 
     | 
    
         
            +
                  "\xf0\x9f\x8d\xaf" => 'HONEY POT',
         
     | 
| 
      
 536 
     | 
    
         
            +
                  "\xf0\x9f\x8d\xa4" => 'FRIED SHRIMP',
         
     | 
| 
      
 537 
     | 
    
         
            +
                  "\xf0\x9f\x8d\xb4" => 'FORK AND KNIFE',
         
     | 
| 
      
 538 
     | 
    
         
            +
                  "\xe2\x98\x95" => 'HOT BEVERAGE',
         
     | 
| 
      
 539 
     | 
    
         
            +
                  "\xf0\x9f\x8d\xb8" => 'COCKTAIL GLASS',
         
     | 
| 
      
 540 
     | 
    
         
            +
                  "\xf0\x9f\x8d\xba" => 'BEER MUG',
         
     | 
| 
      
 541 
     | 
    
         
            +
                  "\xf0\x9f\x8d\xb5" => 'TEACUP WITHOUT HANDLE',
         
     | 
| 
      
 542 
     | 
    
         
            +
                  "\xf0\x9f\x8d\xb6" => 'SAKE BOTTLE AND CUP',
         
     | 
| 
      
 543 
     | 
    
         
            +
                  "\xf0\x9f\x8d\xb7" => 'WINE GLASS',
         
     | 
| 
      
 544 
     | 
    
         
            +
                  "\xf0\x9f\x8d\xbb" => 'CLINKING BEER MUGS',
         
     | 
| 
      
 545 
     | 
    
         
            +
                  "\xf0\x9f\x8d\xb9" => 'TROPICAL DRINK',
         
     | 
| 
      
 546 
     | 
    
         
            +
                  "\xe2\x86\x97" => 'NORTH EAST ARROW',
         
     | 
| 
      
 547 
     | 
    
         
            +
                  "\xe2\x86\x98" => 'SOUTH EAST ARROW',
         
     | 
| 
      
 548 
     | 
    
         
            +
                  "\xe2\x86\x96" => 'NORTH WEST ARROW',
         
     | 
| 
      
 549 
     | 
    
         
            +
                  "\xe2\x86\x99" => 'SOUTH WEST ARROW',
         
     | 
| 
      
 550 
     | 
    
         
            +
                  "\xe2\xa4\xb4" => 'ARROW POINTING RIGHTWARDS THEN CURVING UPWARDS',
         
     | 
| 
      
 551 
     | 
    
         
            +
                  "\xe2\xa4\xb5" => 'ARROW POINTING RIGHTWARDS THEN CURVING DOWNWARDS',
         
     | 
| 
      
 552 
     | 
    
         
            +
                  "\xe2\x86\x94" => 'LEFT RIGHT ARROW',
         
     | 
| 
      
 553 
     | 
    
         
            +
                  "\xe2\x86\x95" => 'UP DOWN ARROW',
         
     | 
| 
      
 554 
     | 
    
         
            +
                  "\xe2\xac\x86" => 'UPWARDS BLACK ARROW',
         
     | 
| 
      
 555 
     | 
    
         
            +
                  "\xe2\xac\x87" => 'DOWNWARDS BLACK ARROW',
         
     | 
| 
      
 556 
     | 
    
         
            +
                  "\xe2\x9e\xa1" => 'BLACK RIGHTWARDS ARROW',
         
     | 
| 
      
 557 
     | 
    
         
            +
                  "\xe2\xac\x85" => 'LEFTWARDS BLACK ARROW',
         
     | 
| 
      
 558 
     | 
    
         
            +
                  "\xe2\x96\xb6" => 'BLACK RIGHT-POINTING TRIANGLE',
         
     | 
| 
      
 559 
     | 
    
         
            +
                  "\xe2\x97\x80" => 'BLACK LEFT-POINTING TRIANGLE',
         
     | 
| 
      
 560 
     | 
    
         
            +
                  "\xe2\x8f\xa9" => 'BLACK RIGHT-POINTING DOUBLE TRIANGLE',
         
     | 
| 
      
 561 
     | 
    
         
            +
                  "\xe2\x8f\xaa" => 'BLACK LEFT-POINTING DOUBLE TRIANGLE',
         
     | 
| 
      
 562 
     | 
    
         
            +
                  "\xe2\x8f\xab" => 'BLACK UP-POINTING DOUBLE TRIANGLE',
         
     | 
| 
      
 563 
     | 
    
         
            +
                  "\xe2\x8f\xac" => 'BLACK DOWN-POINTING DOUBLE TRIANGLE',
         
     | 
| 
      
 564 
     | 
    
         
            +
                  "\xf0\x9f\x94\xba" => 'UP-POINTING RED TRIANGLE',
         
     | 
| 
      
 565 
     | 
    
         
            +
                  "\xf0\x9f\x94\xbb" => 'DOWN-POINTING RED TRIANGLE',
         
     | 
| 
      
 566 
     | 
    
         
            +
                  "\xf0\x9f\x94\xbc" => 'UP-POINTING SMALL RED TRIANGLE',
         
     | 
| 
      
 567 
     | 
    
         
            +
                  "\xf0\x9f\x94\xbd" => 'DOWN-POINTING SMALL RED TRIANGLE',
         
     | 
| 
      
 568 
     | 
    
         
            +
                  "\xe2\xad\x95" => 'HEAVY LARGE CIRCLE',
         
     | 
| 
      
 569 
     | 
    
         
            +
                  "\xe2\x9d\x8c" => 'CROSS MARK',
         
     | 
| 
      
 570 
     | 
    
         
            +
                  "\xe2\x9d\x8e" => 'NEGATIVE SQUARED CROSS MARK',
         
     | 
| 
      
 571 
     | 
    
         
            +
                  "\xe2\x9d\x97" => 'HEAVY EXCLAMATION MARK SYMBOL',
         
     | 
| 
      
 572 
     | 
    
         
            +
                  "\xe2\x81\x89" => 'EXCLAMATION QUESTION MARK',
         
     | 
| 
      
 573 
     | 
    
         
            +
                  "\xe2\x80\xbc" => 'DOUBLE EXCLAMATION MARK',
         
     | 
| 
      
 574 
     | 
    
         
            +
                  "\xe2\x9d\x93" => 'BLACK QUESTION MARK ORNAMENT',
         
     | 
| 
      
 575 
     | 
    
         
            +
                  "\xe2\x9d\x94" => 'WHITE QUESTION MARK ORNAMENT',
         
     | 
| 
      
 576 
     | 
    
         
            +
                  "\xe2\x9d\x95" => 'WHITE EXCLAMATION MARK ORNAMENT',
         
     | 
| 
      
 577 
     | 
    
         
            +
                  "\xe3\x80\xb0" => 'WAVY DASH',
         
     | 
| 
      
 578 
     | 
    
         
            +
                  "\xe2\x9e\xb0" => 'CURLY LOOP',
         
     | 
| 
      
 579 
     | 
    
         
            +
                  "\xe2\x9e\xbf" => 'DOUBLE CURLY LOOP',
         
     | 
| 
      
 580 
     | 
    
         
            +
                  "\xe2\x9d\xa4" => 'HEAVY BLACK HEART',
         
     | 
| 
      
 581 
     | 
    
         
            +
                  "\xf0\x9f\x92\x93" => 'BEATING HEART',
         
     | 
| 
      
 582 
     | 
    
         
            +
                  "\xf0\x9f\x92\x94" => 'BROKEN HEART',
         
     | 
| 
      
 583 
     | 
    
         
            +
                  "\xf0\x9f\x92\x95" => 'TWO HEARTS',
         
     | 
| 
      
 584 
     | 
    
         
            +
                  "\xf0\x9f\x92\x96" => 'SPARKLING HEART',
         
     | 
| 
      
 585 
     | 
    
         
            +
                  "\xf0\x9f\x92\x97" => 'GROWING HEART',
         
     | 
| 
      
 586 
     | 
    
         
            +
                  "\xf0\x9f\x92\x98" => 'HEART WITH ARROW',
         
     | 
| 
      
 587 
     | 
    
         
            +
                  "\xf0\x9f\x92\x99" => 'BLUE HEART',
         
     | 
| 
      
 588 
     | 
    
         
            +
                  "\xf0\x9f\x92\x9a" => 'GREEN HEART',
         
     | 
| 
      
 589 
     | 
    
         
            +
                  "\xf0\x9f\x92\x9b" => 'YELLOW HEART',
         
     | 
| 
      
 590 
     | 
    
         
            +
                  "\xf0\x9f\x92\x9c" => 'PURPLE HEART',
         
     | 
| 
      
 591 
     | 
    
         
            +
                  "\xf0\x9f\x92\x9d" => 'HEART WITH RIBBON',
         
     | 
| 
      
 592 
     | 
    
         
            +
                  "\xf0\x9f\x92\x9e" => 'REVOLVING HEARTS',
         
     | 
| 
      
 593 
     | 
    
         
            +
                  "\xf0\x9f\x92\x9f" => 'HEART DECORATION',
         
     | 
| 
      
 594 
     | 
    
         
            +
                  "\xe2\x99\xa5" => 'BLACK HEART SUIT',
         
     | 
| 
      
 595 
     | 
    
         
            +
                  "\xe2\x99\xa0" => 'BLACK SPADE SUIT',
         
     | 
| 
      
 596 
     | 
    
         
            +
                  "\xe2\x99\xa6" => 'BLACK DIAMOND SUIT',
         
     | 
| 
      
 597 
     | 
    
         
            +
                  "\xe2\x99\xa3" => 'BLACK CLUB SUIT',
         
     | 
| 
      
 598 
     | 
    
         
            +
                  "\xf0\x9f\x9a\xac" => 'SMOKING SYMBOL',
         
     | 
| 
      
 599 
     | 
    
         
            +
                  "\xf0\x9f\x9a\xad" => 'NO SMOKING SYMBOL',
         
     | 
| 
      
 600 
     | 
    
         
            +
                  "\xe2\x99\xbf" => 'WHEELCHAIR SYMBOL',
         
     | 
| 
      
 601 
     | 
    
         
            +
                  "\xf0\x9f\x9a\xa9" => 'TRIANGULAR FLAG ON POST',
         
     | 
| 
      
 602 
     | 
    
         
            +
                  "\xe2\x9a\xa0" => 'WARNING SIGN',
         
     | 
| 
      
 603 
     | 
    
         
            +
                  "\xe2\x9b\x94" => 'NO ENTRY',
         
     | 
| 
      
 604 
     | 
    
         
            +
                  "\xe2\x99\xbb" => 'BLACK UNIVERSAL RECYCLING SYMBOL',
         
     | 
| 
      
 605 
     | 
    
         
            +
                  "\xf0\x9f\x9a\xb2" => 'BICYCLE',
         
     | 
| 
      
 606 
     | 
    
         
            +
                  "\xf0\x9f\x9a\xb6" => 'PEDESTRIAN',
         
     | 
| 
      
 607 
     | 
    
         
            +
                  "\xf0\x9f\x9a\xb9" => 'MENS SYMBOL',
         
     | 
| 
      
 608 
     | 
    
         
            +
                  "\xf0\x9f\x9a\xba" => 'WOMENS SYMBOL',
         
     | 
| 
      
 609 
     | 
    
         
            +
                  "\xf0\x9f\x9b\x80" => 'BATH',
         
     | 
| 
      
 610 
     | 
    
         
            +
                  "\xf0\x9f\x9a\xbb" => 'RESTROOM',
         
     | 
| 
      
 611 
     | 
    
         
            +
                  "\xf0\x9f\x9a\xbd" => 'TOILET',
         
     | 
| 
      
 612 
     | 
    
         
            +
                  "\xf0\x9f\x9a\xbe" => 'WATER CLOSET',
         
     | 
| 
      
 613 
     | 
    
         
            +
                  "\xf0\x9f\x9a\xbc" => 'BABY SYMBOL',
         
     | 
| 
      
 614 
     | 
    
         
            +
                  "\xf0\x9f\x9a\xaa" => 'DOOR',
         
     | 
| 
      
 615 
     | 
    
         
            +
                  "\xf0\x9f\x9a\xab" => 'NO ENTRY SIGN',
         
     | 
| 
      
 616 
     | 
    
         
            +
                  "\xe2\x9c\x94" => 'HEAVY CHECK MARK',
         
     | 
| 
      
 617 
     | 
    
         
            +
                  "\xf0\x9f\x86\x91" => 'SQUARED CL',
         
     | 
| 
      
 618 
     | 
    
         
            +
                  "\xf0\x9f\x86\x92" => 'SQUARED COOL',
         
     | 
| 
      
 619 
     | 
    
         
            +
                  "\xf0\x9f\x86\x93" => 'SQUARED FREE',
         
     | 
| 
      
 620 
     | 
    
         
            +
                  "\xf0\x9f\x86\x94" => 'SQUARED ID',
         
     | 
| 
      
 621 
     | 
    
         
            +
                  "\xf0\x9f\x86\x95" => 'SQUARED NEW',
         
     | 
| 
      
 622 
     | 
    
         
            +
                  "\xf0\x9f\x86\x96" => 'SQUARED NG',
         
     | 
| 
      
 623 
     | 
    
         
            +
                  "\xf0\x9f\x86\x97" => 'SQUARED OK',
         
     | 
| 
      
 624 
     | 
    
         
            +
                  "\xf0\x9f\x86\x98" => 'SQUARED SOS',
         
     | 
| 
      
 625 
     | 
    
         
            +
                  "\xf0\x9f\x86\x99" => 'SQUARED UP WITH EXCLAMATION MARK',
         
     | 
| 
      
 626 
     | 
    
         
            +
                  "\xf0\x9f\x86\x9a" => 'SQUARED VS',
         
     | 
| 
      
 627 
     | 
    
         
            +
                  "\xf0\x9f\x88\x81" => 'SQUARED KATAKANA KOKO',
         
     | 
| 
      
 628 
     | 
    
         
            +
                  "\xf0\x9f\x88\x82" => 'SQUARED KATAKANA SA',
         
     | 
| 
      
 629 
     | 
    
         
            +
                  "\xf0\x9f\x88\xb2" => 'SQUARED CJK UNIFIED IDEOGRAPH-7981',
         
     | 
| 
      
 630 
     | 
    
         
            +
                  "\xf0\x9f\x88\xb3" => 'SQUARED CJK UNIFIED IDEOGRAPH-7A7A',
         
     | 
| 
      
 631 
     | 
    
         
            +
                  "\xf0\x9f\x88\xb4" => 'SQUARED CJK UNIFIED IDEOGRAPH-5408',
         
     | 
| 
      
 632 
     | 
    
         
            +
                  "\xf0\x9f\x88\xb5" => 'SQUARED CJK UNIFIED IDEOGRAPH-6E80',
         
     | 
| 
      
 633 
     | 
    
         
            +
                  "\xf0\x9f\x88\xb6" => 'SQUARED CJK UNIFIED IDEOGRAPH-6709',
         
     | 
| 
      
 634 
     | 
    
         
            +
                  "\xf0\x9f\x88\x9a" => 'SQUARED CJK UNIFIED IDEOGRAPH-7121',
         
     | 
| 
      
 635 
     | 
    
         
            +
                  "\xf0\x9f\x88\xb7" => 'SQUARED CJK UNIFIED IDEOGRAPH-6708',
         
     | 
| 
      
 636 
     | 
    
         
            +
                  "\xf0\x9f\x88\xb8" => 'SQUARED CJK UNIFIED IDEOGRAPH-7533',
         
     | 
| 
      
 637 
     | 
    
         
            +
                  "\xf0\x9f\x88\xb9" => 'SQUARED CJK UNIFIED IDEOGRAPH-5272',
         
     | 
| 
      
 638 
     | 
    
         
            +
                  "\xf0\x9f\x88\xaf" => 'SQUARED CJK UNIFIED IDEOGRAPH-6307',
         
     | 
| 
      
 639 
     | 
    
         
            +
                  "\xf0\x9f\x88\xba" => 'SQUARED CJK UNIFIED IDEOGRAPH-55B6',
         
     | 
| 
      
 640 
     | 
    
         
            +
                  "\xe3\x8a\x99" => 'CIRCLED IDEOGRAPH SECRET',
         
     | 
| 
      
 641 
     | 
    
         
            +
                  "\xe3\x8a\x97" => 'CIRCLED IDEOGRAPH CONGRATULATION',
         
     | 
| 
      
 642 
     | 
    
         
            +
                  "\xf0\x9f\x89\x90" => 'CIRCLED IDEOGRAPH ADVANTAGE',
         
     | 
| 
      
 643 
     | 
    
         
            +
                  "\xf0\x9f\x89\x91" => 'CIRCLED IDEOGRAPH ACCEPT',
         
     | 
| 
      
 644 
     | 
    
         
            +
                  "\xe2\x9e\x95" => 'HEAVY PLUS SIGN',
         
     | 
| 
      
 645 
     | 
    
         
            +
                  "\xe2\x9e\x96" => 'HEAVY MINUS SIGN',
         
     | 
| 
      
 646 
     | 
    
         
            +
                  "\xe2\x9c\x96" => 'HEAVY MULTIPLICATION X',
         
     | 
| 
      
 647 
     | 
    
         
            +
                  "\xe2\x9e\x97" => 'HEAVY DIVISION SIGN',
         
     | 
| 
      
 648 
     | 
    
         
            +
                  "\xf0\x9f\x92\xa0" => 'DIAMOND SHAPE WITH A DOT INSIDE',
         
     | 
| 
      
 649 
     | 
    
         
            +
                  "\xf0\x9f\x92\xa1" => 'ELECTRIC LIGHT BULB',
         
     | 
| 
      
 650 
     | 
    
         
            +
                  "\xf0\x9f\x92\xa2" => 'ANGER SYMBOL',
         
     | 
| 
      
 651 
     | 
    
         
            +
                  "\xf0\x9f\x92\xa3" => 'BOMB',
         
     | 
| 
      
 652 
     | 
    
         
            +
                  "\xf0\x9f\x92\xa4" => 'SLEEPING SYMBOL',
         
     | 
| 
      
 653 
     | 
    
         
            +
                  "\xf0\x9f\x92\xa5" => 'COLLISION SYMBOL',
         
     | 
| 
      
 654 
     | 
    
         
            +
                  "\xf0\x9f\x92\xa6" => 'SPLASHING SWEAT SYMBOL',
         
     | 
| 
      
 655 
     | 
    
         
            +
                  "\xf0\x9f\x92\xa7" => 'DROPLET',
         
     | 
| 
      
 656 
     | 
    
         
            +
                  "\xf0\x9f\x92\xa8" => 'DASH SYMBOL',
         
     | 
| 
      
 657 
     | 
    
         
            +
                  "\xf0\x9f\x92\xa9" => 'PILE OF POO',
         
     | 
| 
      
 658 
     | 
    
         
            +
                  "\xf0\x9f\x92\xaa" => 'FLEXED BICEPS',
         
     | 
| 
      
 659 
     | 
    
         
            +
                  "\xf0\x9f\x92\xab" => 'DIZZY SYMBOL',
         
     | 
| 
      
 660 
     | 
    
         
            +
                  "\xf0\x9f\x92\xac" => 'SPEECH BALLOON',
         
     | 
| 
      
 661 
     | 
    
         
            +
                  "\xe2\x9c\xa8" => 'SPARKLES',
         
     | 
| 
      
 662 
     | 
    
         
            +
                  "\xe2\x9c\xb4" => 'EIGHT POINTED BLACK STAR',
         
     | 
| 
      
 663 
     | 
    
         
            +
                  "\xe2\x9c\xb3" => 'EIGHT SPOKED ASTERISK',
         
     | 
| 
      
 664 
     | 
    
         
            +
                  "\xe2\x9a\xaa" => 'MEDIUM WHITE CIRCLE',
         
     | 
| 
      
 665 
     | 
    
         
            +
                  "\xe2\x9a\xab" => 'MEDIUM BLACK CIRCLE',
         
     | 
| 
      
 666 
     | 
    
         
            +
                  "\xf0\x9f\x94\xb4" => 'LARGE RED CIRCLE',
         
     | 
| 
      
 667 
     | 
    
         
            +
                  "\xf0\x9f\x94\xb5" => 'LARGE BLUE CIRCLE',
         
     | 
| 
      
 668 
     | 
    
         
            +
                  "\xf0\x9f\x94\xb2" => 'BLACK SQUARE BUTTON',
         
     | 
| 
      
 669 
     | 
    
         
            +
                  "\xf0\x9f\x94\xb3" => 'WHITE SQUARE BUTTON',
         
     | 
| 
      
 670 
     | 
    
         
            +
                  "\xe2\xad\x90" => 'WHITE MEDIUM STAR',
         
     | 
| 
      
 671 
     | 
    
         
            +
                  "\xe2\xac\x9c" => 'WHITE LARGE SQUARE',
         
     | 
| 
      
 672 
     | 
    
         
            +
                  "\xe2\xac\x9b" => 'BLACK LARGE SQUARE',
         
     | 
| 
      
 673 
     | 
    
         
            +
                  "\xe2\x96\xab" => 'WHITE SMALL SQUARE',
         
     | 
| 
      
 674 
     | 
    
         
            +
                  "\xe2\x96\xaa" => 'BLACK SMALL SQUARE',
         
     | 
| 
      
 675 
     | 
    
         
            +
                  "\xe2\x97\xbd" => 'WHITE MEDIUM SMALL SQUARE',
         
     | 
| 
      
 676 
     | 
    
         
            +
                  "\xe2\x97\xbe" => 'BLACK MEDIUM SMALL SQUARE',
         
     | 
| 
      
 677 
     | 
    
         
            +
                  "\xe2\x97\xbb" => 'WHITE MEDIUM SQUARE',
         
     | 
| 
      
 678 
     | 
    
         
            +
                  "\xe2\x97\xbc" => 'BLACK MEDIUM SQUARE',
         
     | 
| 
      
 679 
     | 
    
         
            +
                  "\xf0\x9f\x94\xb6" => 'LARGE ORANGE DIAMOND',
         
     | 
| 
      
 680 
     | 
    
         
            +
                  "\xf0\x9f\x94\xb7" => 'LARGE BLUE DIAMOND',
         
     | 
| 
      
 681 
     | 
    
         
            +
                  "\xf0\x9f\x94\xb8" => 'SMALL ORANGE DIAMOND',
         
     | 
| 
      
 682 
     | 
    
         
            +
                  "\xf0\x9f\x94\xb9" => 'SMALL BLUE DIAMOND',
         
     | 
| 
      
 683 
     | 
    
         
            +
                  "\xe2\x9d\x87" => 'SPARKLE',
         
     | 
| 
      
 684 
     | 
    
         
            +
                  "\xf0\x9f\x92\xae" => 'WHITE FLOWER',
         
     | 
| 
      
 685 
     | 
    
         
            +
                  "\xf0\x9f\x92\xaf" => 'HUNDRED POINTS SYMBOL',
         
     | 
| 
      
 686 
     | 
    
         
            +
                  "\xe2\x86\xa9" => 'LEFTWARDS ARROW WITH HOOK',
         
     | 
| 
      
 687 
     | 
    
         
            +
                  "\xe2\x86\xaa" => 'RIGHTWARDS ARROW WITH HOOK',
         
     | 
| 
      
 688 
     | 
    
         
            +
                  "\xf0\x9f\x94\x83" => 'CLOCKWISE DOWNWARDS AND UPWARDS OPEN CIRCLE ARROWS',
         
     | 
| 
      
 689 
     | 
    
         
            +
                  "\xf0\x9f\x94\x8a" => 'SPEAKER WITH THREE SOUND WAVES',
         
     | 
| 
      
 690 
     | 
    
         
            +
                  "\xf0\x9f\x94\x8b" => 'BATTERY',
         
     | 
| 
      
 691 
     | 
    
         
            +
                  "\xf0\x9f\x94\x8c" => 'ELECTRIC PLUG',
         
     | 
| 
      
 692 
     | 
    
         
            +
                  "\xf0\x9f\x94\x8d" => 'LEFT-POINTING MAGNIFYING GLASS',
         
     | 
| 
      
 693 
     | 
    
         
            +
                  "\xf0\x9f\x94\x8e" => 'RIGHT-POINTING MAGNIFYING GLASS',
         
     | 
| 
      
 694 
     | 
    
         
            +
                  "\xf0\x9f\x94\x92" => 'LOCK',
         
     | 
| 
      
 695 
     | 
    
         
            +
                  "\xf0\x9f\x94\x93" => 'OPEN LOCK',
         
     | 
| 
      
 696 
     | 
    
         
            +
                  "\xf0\x9f\x94\x8f" => 'LOCK WITH INK PEN',
         
     | 
| 
      
 697 
     | 
    
         
            +
                  "\xf0\x9f\x94\x90" => 'CLOSED LOCK WITH KEY',
         
     | 
| 
      
 698 
     | 
    
         
            +
                  "\xf0\x9f\x94\x91" => 'KEY',
         
     | 
| 
      
 699 
     | 
    
         
            +
                  "\xf0\x9f\x94\x94" => 'BELL',
         
     | 
| 
      
 700 
     | 
    
         
            +
                  "\xe2\x98\x91" => 'BALLOT BOX WITH CHECK',
         
     | 
| 
      
 701 
     | 
    
         
            +
                  "\xf0\x9f\x94\x98" => 'RADIO BUTTON',
         
     | 
| 
      
 702 
     | 
    
         
            +
                  "\xf0\x9f\x94\x96" => 'BOOKMARK',
         
     | 
| 
      
 703 
     | 
    
         
            +
                  "\xf0\x9f\x94\x97" => 'LINK SYMBOL',
         
     | 
| 
      
 704 
     | 
    
         
            +
                  "\xf0\x9f\x94\x99" => 'BACK WITH LEFTWARDS ARROW ABOVE',
         
     | 
| 
      
 705 
     | 
    
         
            +
                  "\xf0\x9f\x94\x9a" => 'END WITH LEFTWARDS ARROW ABOVE',
         
     | 
| 
      
 706 
     | 
    
         
            +
                  "\xf0\x9f\x94\x9b" => 'ON WITH EXCLAMATION MARK WITH LEFT RIGHT ARROW ABOVE',
         
     | 
| 
      
 707 
     | 
    
         
            +
                  "\xf0\x9f\x94\x9c" => 'SOON WITH RIGHTWARDS ARROW ABOVE',
         
     | 
| 
      
 708 
     | 
    
         
            +
                  "\xf0\x9f\x94\x9d" => 'TOP WITH UPWARDS ARROW ABOVE',
         
     | 
| 
      
 709 
     | 
    
         
            +
                  "\xe2\x80\x83" => 'EM SPACE',
         
     | 
| 
      
 710 
     | 
    
         
            +
                  "\xe2\x80\x82" => 'EN SPACE',
         
     | 
| 
      
 711 
     | 
    
         
            +
                  "\xe2\x80\x85" => 'FOUR-PER-EM SPACE',
         
     | 
| 
      
 712 
     | 
    
         
            +
                  "\xe2\x9c\x85" => 'WHITE HEAVY CHECK MARK',
         
     | 
| 
      
 713 
     | 
    
         
            +
                  "\xe2\x9c\x8a" => 'RAISED FIST',
         
     | 
| 
      
 714 
     | 
    
         
            +
                  "\xe2\x9c\x8b" => 'RAISED HAND',
         
     | 
| 
      
 715 
     | 
    
         
            +
                  "\xe2\x9c\x8c" => 'VICTORY HAND',
         
     | 
| 
      
 716 
     | 
    
         
            +
                  "\xf0\x9f\x91\x8a" => 'FISTED HAND SIGN',
         
     | 
| 
      
 717 
     | 
    
         
            +
                  "\xf0\x9f\x91\x8d" => 'THUMBS UP SIGN',
         
     | 
| 
      
 718 
     | 
    
         
            +
                  "\xe2\x98\x9d" => 'WHITE UP POINTING INDEX',
         
     | 
| 
      
 719 
     | 
    
         
            +
                  "\xf0\x9f\x91\x86" => 'WHITE UP POINTING BACKHAND INDEX',
         
     | 
| 
      
 720 
     | 
    
         
            +
                  "\xf0\x9f\x91\x87" => 'WHITE DOWN POINTING BACKHAND INDEX',
         
     | 
| 
      
 721 
     | 
    
         
            +
                  "\xf0\x9f\x91\x88" => 'WHITE LEFT POINTING BACKHAND INDEX',
         
     | 
| 
      
 722 
     | 
    
         
            +
                  "\xf0\x9f\x91\x89" => 'WHITE RIGHT POINTING BACKHAND INDEX',
         
     | 
| 
      
 723 
     | 
    
         
            +
                  "\xf0\x9f\x91\x8b" => 'WAVING HAND SIGN',
         
     | 
| 
      
 724 
     | 
    
         
            +
                  "\xf0\x9f\x91\x8f" => 'CLAPPING HANDS SIGN',
         
     | 
| 
      
 725 
     | 
    
         
            +
                  "\xf0\x9f\x91\x8c" => 'OK HAND SIGN',
         
     | 
| 
      
 726 
     | 
    
         
            +
                  "\xf0\x9f\x91\x8e" => 'THUMBS DOWN SIGN',
         
     | 
| 
      
 727 
     | 
    
         
            +
                  "\xf0\x9f\x91\x90" => 'OPEN HANDS SIGN',
         
     | 
| 
      
 728 
     | 
    
         
            +
                },
         
     | 
| 
      
 729 
     | 
    
         
            +
                'kaomoji' => {
         
     | 
| 
      
 730 
     | 
    
         
            +
                  "0"=>"[\xe9\x9c\xa7]", "1"=>"[\xe5\xa4\x95\xe7\x84\xbc\xe3\x81\x91]", "2"=>"[\xe8\x99\xb9]", "3"=>"[\xe9\x9b\xaa\xe7\xb5\x90\xe6\x99\xb6]",
         
     | 
| 
      
 731 
     | 
    
         
            +
                  "4"=>"[\xe7\x81\xab\xe5\xb1\xb1]", "5"=>"[\xe5\x9c\xb0\xe7\x90\x83]", "6"=>"\xe2\x97\x8f", "7"=>"\xe2\x97\x8b", "8"=>"[\xe2\x98\x86]",
         
     | 
| 
      
 732 
     | 
    
         
            +
                  "9"=>"\xe2\x98\x86\xe5\xbd\xa1", "10"=>"[\xe8\x85\x95\xe6\x99\x82\xe8\xa8\x88]", "11"=>"[\xe7\xa0\x82\xe6\x99\x82\xe8\xa8\x88]", "12"=>"[\xe8\x9b\x87\xe4\xbd\xbf\xe5\xba\xa7]", "13"=>"[\xe3\x83\x90\xe3\x83\xa9]",
         
     | 
| 
      
 733 
     | 
    
         
            +
                  "14"=>"[\xe9\xa2\xa8\xe3\x81\xab\xe8\x88\x9e\xe3\x81\x86\xe8\x91\x89]", "15"=>"[\xe3\x83\x8f\xe3\x82\xa4\xe3\x83\x93\xe3\x82\xb9\xe3\x82\xab\xe3\x82\xb9]", "16"=>"[\xe3\x81\xb2\xe3\x81\xbe\xe3\x82\x8f\xe3\x82\x8a]", "17"=>"[\xe3\x83\xa4\xe3\x82\xb7]", "18"=>"[\xe3\x82\xb5\xe3\x83\x9c\xe3\x83\x86\xe3\x83\xb3]",
         
     | 
| 
      
 734 
     | 
    
         
            +
                  "19"=>"[\xe7\xa8\xb2\xe7\xa9\x82]", "20"=>"[\xe3\x81\xa8\xe3\x81\x86\xe3\x82\x82\xe3\x82\x8d\xe3\x81\x93\xe3\x81\x97]", "21"=>"[\xe3\x82\xad\xe3\x83\x8e\xe3\x82\xb3]", "22"=>"[\xe6\xa0\x97]", "23"=>"[\xe8\x8a\xb1]",
         
     | 
| 
      
 735 
     | 
    
         
            +
                  "24"=>"[\xe3\x81\x95\xe3\x81\x8f\xe3\x82\x89\xe3\x82\x93\xe3\x81\xbc]", "25"=>"[\xe3\x83\x90\xe3\x83\x8a\xe3\x83\x8a]", "26"=>"[\xe3\x81\xbf\xe3\x81\x8b\xe3\x82\x93]", "27"=>"[\xe3\x82\xa4\xe3\x83\x81\xe3\x82\xb4]", "28"=>"[\xe3\x82\xb9\xe3\x82\xa4\xe3\x82\xab]",
         
     | 
| 
      
 736 
     | 
    
         
            +
                  "29"=>"[\xe3\x83\x88\xe3\x83\x9e\xe3\x83\x88]", "30"=>"[\xe3\x83\x8a\xe3\x82\xb9]", "31"=>"[\xe3\x83\xa1\xe3\x83\xad\xe3\x83\xb3]", "32"=>"[\xe3\x83\x91\xe3\x82\xa4\xe3\x83\x8a\xe3\x83\x83\xe3\x83\x97\xe3\x83\xab]", "33"=>"[\xe3\x83\x96\xe3\x83\x89\xe3\x82\xa6]",
         
     | 
| 
      
 737 
     | 
    
         
            +
                  "34"=>"[\xe3\x83\xa2\xe3\x83\xa2]", "35"=>"[\xe9\xbc\xbb]", "36"=>"[\xe3\x83\x9e\xe3\x83\x8b\xe3\x82\xad\xe3\x83\xa5\xe3\x82\xa2]", "37"=>"[\xe3\x82\xa8\xe3\x82\xb9\xe3\x83\x86]", "38"=>"[\xe5\xba\x8a\xe5\xb1\x8b]",
         
     | 
| 
      
 738 
     | 
    
         
            +
                  "39"=>"\xe3\x80\x93", "40"=>"[\xe5\xae\xb6\xe6\x97\x8f]", "41"=>"[\xe3\x82\xab\xe3\x83\x83\xe3\x83\x97\xe3\x83\xab]", "42"=>"[\xe8\xad\xa6\xe5\xae\x98]", "43"=>"[\xe3\x83\x90\xe3\x83\x8b\xe3\x83\xbc]",
         
     | 
| 
      
 739 
     | 
    
         
            +
                  "44"=>"[\xe8\x8a\xb1\xe5\xab\x81]", "45"=>"[\xe7\x99\xbd\xe4\xba\xba]", "46"=>"[\xe4\xb8\xad\xe5\x9b\xbd\xe4\xba\xba]", "47"=>"[\xe3\x82\xa4\xe3\x83\xb3\xe3\x83\x89\xe4\xba\xba]", "48"=>"[\xe3\x81\x8a\xe3\x81\x98\xe3\x81\x84\xe3\x81\x95\xe3\x82\x93]",
         
     | 
| 
      
 740 
     | 
    
         
            +
                  "49"=>"[\xe3\x81\x8a\xe3\x81\xb0\xe3\x81\x82\xe3\x81\x95\xe3\x82\x93]", "50"=>"[\xe8\xb5\xa4\xe3\x81\xa1\xe3\x82\x83\xe3\x82\x93]", "51"=>"[\xe5\xb7\xa5\xe4\xba\x8b\xe7\x8f\xbe\xe5\xa0\xb4\xe3\x81\xae\xe4\xba\xba]", "52"=>"[\xe3\x81\x8a\xe5\xa7\xab\xe6\xa7\x98]", "53"=>"[\xe3\x81\xaa\xe3\x81\xbe\xe3\x81\xaf\xe3\x81\x92]",
         
     | 
| 
      
 741 
     | 
    
         
            +
                  "54"=>"[\xe5\xa4\xa9\xe7\x8b\x97]", "55"=>"[\xe3\x81\x8a\xe5\x8c\x96\xe3\x81\x91]", "56"=>"[\xe5\xa4\xa9\xe4\xbd\xbf]", "57"=>"[UFO]", "58"=>"[\xe5\xae\x87\xe5\xae\x99\xe4\xba\xba]",
         
     | 
| 
      
 742 
     | 
    
         
            +
                  "59"=>"[\xe3\x82\xa2\xe3\x82\xaf\xe3\x83\x9e]", "60"=>"[\xe3\x83\x89\xe3\x82\xaf\xe3\x83\xad]", "61"=>"[\xe6\xa1\x88\xe5\x86\x85]", "62"=>"[\xe8\xa1\x9b\xe5\x85\xb5]", "63"=>"[\xe3\x83\x80\xe3\x83\xb3\xe3\x82\xb9]",
         
     | 
| 
      
 743 
     | 
    
         
            +
                  "64"=>"[\xe3\x82\xab\xe3\x82\xbf\xe3\x83\x84\xe3\x83\xa0\xe3\x83\xaa]", "65"=>"[\xe3\x83\x98\xe3\x83\x93]", "66"=>"[\xe3\x83\x8b\xe3\x83\xaf\xe3\x83\x88\xe3\x83\xaa]", "67"=>"[\xe3\x82\xa4\xe3\x83\x8e\xe3\x82\xb7\xe3\x82\xb7]", "68"=>"[\xe3\x83\xa9\xe3\x82\xaf\xe3\x83\x80]",
         
     | 
| 
      
 744 
     | 
    
         
            +
                  "69"=>"[\xe3\x82\xbe\xe3\x82\xa6]", "70"=>"[\xe3\x82\xb3\xe3\x82\xa2\xe3\x83\xa9]", "71"=>"[\xe3\x82\xb5\xe3\x83\xab]", "72"=>"[\xe3\x83\x92\xe3\x83\x84\xe3\x82\xb8]", "73"=>"[\xe3\x82\xbf\xe3\x82\xb3]",
         
     | 
| 
      
 745 
     | 
    
         
            +
                  "74"=>"[\xe5\xb7\xbb\xe8\xb2\x9d]", "75"=>"[\xe3\x82\xb2\xe3\x82\xb8\xe3\x82\xb2\xe3\x82\xb8]", "76"=>"[\xe3\x82\xa2\xe3\x83\xaa]", "77"=>"[\xe3\x83\x9f\xe3\x83\x84\xe3\x83\x90\xe3\x83\x81]", "78"=>"[\xe3\x81\xa6\xe3\x82\x93\xe3\x81\xa8\xe3\x81\x86\xe8\x99\xab]",
         
     | 
| 
      
 746 
     | 
    
         
            +
                  "79"=>"[\xe3\x82\xab\xe3\x83\xa1]", "80"=>"[\xe3\x82\xa4\xe3\x83\xab\xe3\x82\xab]", "81"=>"[\xe3\x83\x8d\xe3\x82\xba\xe3\x83\x9f]", "82"=>"[\xe3\x83\x88\xe3\x83\xa9]", "83"=>"[\xe3\x82\xaf\xe3\x82\xb8\xe3\x83\xa9]",
         
     | 
| 
      
 747 
     | 
    
         
            +
                  "84"=>"[\xe3\x82\xaf\xe3\x83\x9e]", "85"=>"[\xe3\x83\x8f\xe3\x83\xa0\xe3\x82\xb9\xe3\x82\xbf\xe3\x83\xbc]", "86"=>"[\xe7\x89\x9b]", "87"=>"[\xe3\x82\xa6\xe3\x82\xb5\xe3\x82\xae]", "88"=>"[\xe3\x82\xab\xe3\x82\xa8\xe3\x83\xab]",
         
     | 
| 
      
 748 
     | 
    
         
            +
                  "89"=>"[\xe8\xbe\xb0]", "90"=>"[\xe3\x83\x91\xe3\x83\xb3\xe3\x83\x80]", "91"=>"[\xe9\xa2\xa8\xe9\x82\xaa\xe3\x81\xb2\xe3\x81\x8d]", "92"=>"m(_ _)m", "93"=>"(/_\xef\xbc\xbc)",
         
     | 
| 
      
 749 
     | 
    
         
            +
                  "94"=>"(\xe3\x83\xbb\xc3\x97\xe3\x83\xbb)", "95"=>"|(\xe3\x83\xbb\xc3\x97\xe3\x83\xbb)|", "96"=>"(^-^)/", "97"=>"\xef\xbc\xbc(^o^)\xef\xbc\x8f", "98"=>"(>\xe4\xba\xba<)",
         
     | 
| 
      
 750 
     | 
    
         
            +
                  "99"=>"[\xe6\x95\x99\xe4\xbc\x9a]", "100"=>"[\xe5\x99\xb4\xe6\xb0\xb4]", "101"=>"[\xe3\x83\x87\xe3\x83\x91\xe3\x83\xbc\xe3\x83\x88]", "102"=>"[\xe5\x9f\x8e]", "103"=>"[\xe5\xb7\xa5\xe5\xa0\xb4]",
         
     | 
| 
      
 751 
     | 
    
         
            +
                  "104"=>"[\xe6\x9d\xb1\xe4\xba\xac\xe3\x82\xbf\xe3\x83\xaf\xe3\x83\xbc]", "105"=>"[\xe8\x87\xaa\xe7\x94\xb1\xe3\x81\xae\xe5\xa5\xb3\xe7\xa5\x9e]", "106"=>"[\xe6\x97\xa5\xe6\x9c\xac\xe5\x9c\xb0\xe5\x9b\xb3]", "107"=>"[\xe3\x83\xa2\xe3\x82\xa2\xe3\x82\xa4]", "108"=>"[\xe3\x83\x96\xe3\x83\xbc\xe3\x83\x84]",
         
     | 
| 
      
 752 
     | 
    
         
            +
                  "109"=>"[\xe3\x83\xa1\xe3\x82\xac\xe3\x83\x8d]", "110"=>"[\xe3\x82\xb8\xe3\x83\xbc\xe3\x83\xb3\xe3\x82\xba]", "111"=>"[\xe3\x83\x8d\xe3\x82\xaf\xe3\x82\xbf\xe3\x82\xa4]", "112"=>"[\xe5\xb8\xbd\xe5\xad\x90]", "113"=>"[\xe3\x83\x89\xe3\x83\xac\xe3\x82\xb9]",
         
     | 
| 
      
 753 
     | 
    
         
            +
                  "114"=>"[\xe7\x9d\x80\xe7\x89\xa9]", "115"=>"[\xe3\x83\x93\xe3\x82\xad\xe3\x83\x8b]", "116"=>"[\xe8\xb2\xa1\xe5\xb8\x83]", "117"=>"[\xe3\x81\xb5\xe3\x81\x8f\xe3\x82\x8d]", "118"=>"[\xef\xbf\xa5]",
         
     | 
| 
      
 754 
     | 
    
         
            +
                  "119"=>"[\xe6\xa0\xaa\xe4\xbe\xa1]", "120"=>"[\xe3\x82\xab\xe3\x83\xbc\xe3\x83\x89]", "121"=>"\xef\xbf\xa5", "122"=>"[\xe9\xa3\x9b\xe3\x82\x93\xe3\x81\xa7\xe3\x81\x84\xe3\x81\x8f\xe3\x81\x8a\xe9\x87\x91]", "123"=>"[\xe4\xb8\xad\xe5\x9b\xbd]",
         
     | 
| 
      
 755 
     | 
    
         
            +
                  "124"=>"[\xe3\x83\x89\xe3\x82\xa4\xe3\x83\x84]", "125"=>"[\xe3\x82\xb9\xe3\x83\x9a\xe3\x82\xa4\xe3\x83\xb3]", "126"=>"[\xe3\x83\x95\xe3\x83\xa9\xe3\x83\xb3\xe3\x82\xb9]", "127"=>"[\xe3\x82\xa4\xe3\x82\xae\xe3\x83\xaa\xe3\x82\xb9]", "128"=>"[\xe3\x82\xa4\xe3\x82\xbf\xe3\x83\xaa\xe3\x82\xa2]",
         
     | 
| 
      
 756 
     | 
    
         
            +
                  "129"=>"[\xe6\x97\xa5\xe3\x81\xae\xe4\xb8\xb8]", "130"=>"[\xe9\x9f\x93\xe5\x9b\xbd]", "131"=>"[\xe3\x83\xad\xe3\x82\xb7\xe3\x82\xa2]", "132"=>"[USA]", "133"=>"[\xe7\x82\x8e]",
         
     | 
| 
      
 757 
     | 
    
         
            +
                  "134"=>"[\xe6\x87\x90\xe4\xb8\xad\xe9\x9b\xbb\xe7\x81\xaf]", "135"=>"[\xe3\x83\xac\xe3\x83\xb3\xe3\x83\x81]", "136"=>"[\xe3\x83\x8f\xe3\x83\xb3\xe3\x83\x9e\xe3\x83\xbc]", "137"=>"[\xe3\x83\x8d\xe3\x82\xb8]", "138"=>"[\xe5\x8c\x85\xe4\xb8\x81]",
         
     | 
| 
      
 758 
     | 
    
         
            +
                  "139"=>"[\xe3\x83\x94\xe3\x82\xb9\xe3\x83\x88\xe3\x83\xab]", "140"=>"[\xe5\x8d\xa0\xe3\x81\x84]", "141"=>"[\xe8\x8b\xa5\xe8\x91\x89\xe3\x83\x9e\xe3\x83\xbc\xe3\x82\xaf]", "142"=>"[\xe6\xb3\xa8\xe5\xb0\x84]", "143"=>"[\xe8\x96\xac]",
         
     | 
| 
      
 759 
     | 
    
         
            +
                  "144"=>"[A]", "145"=>"[B]", "146"=>"[AB]", "147"=>"[O]", "148"=>"[\xe3\x82\xb5\xe3\x83\xb3\xe3\x82\xbf]",
         
     | 
| 
      
 760 
     | 
    
         
            +
                  "149"=>"[\xe7\xa5\x9d\xe6\x97\xa5]", "150"=>"[\xe8\x8a\xb1\xe7\x81\xab]", "151"=>"[\xe9\xa2\xa8\xe8\x88\xb9]", "152"=>"[\xe3\x82\xaf\xe3\x83\xa9\xe3\x83\x83\xe3\x82\xab\xe3\x83\xbc]", "153"=>"[\xe9\x96\x80\xe6\x9d\xbe]",
         
     | 
| 
      
 761 
     | 
    
         
            +
                  "154"=>"[\xe3\x81\xb2\xe3\x81\xaa\xe7\xa5\xad\xe3\x82\x8a]", "155"=>"[\xe5\x8d\x92\xe6\xa5\xad\xe5\xbc\x8f]", "156"=>"[\xe3\x83\xa9\xe3\x83\xb3\xe3\x83\x89\xe3\x82\xbb\xe3\x83\xab]", "157"=>"[\xe3\x81\x93\xe3\x81\x84\xe3\x81\xae\xe3\x81\xbc\xe3\x82\x8a]", "158"=>"[\xe7\xb7\x9a\xe9\xa6\x99\xe8\x8a\xb1\xe7\x81\xab]",
         
     | 
| 
      
 762 
     | 
    
         
            +
                  "159"=>"[\xe9\xa2\xa8\xe9\x88\xb4]", "160"=>"[\xe3\x83\x8f\xe3\x83\xad\xe3\x82\xa6\xe3\x82\xa3\xe3\x83\xb3]", "161"=>"[\xe3\x82\xaa\xe3\x83\xa1\xe3\x83\x87\xe3\x83\x88\xe3\x82\xa6]", "162"=>"[\xe4\xb8\x83\xe5\xa4\x95]", "163"=>"[\xe3\x81\x8a\xe6\x9c\x88\xe8\xa6\x8b]",
         
     | 
| 
      
 763 
     | 
    
         
            +
                  "164"=>"[\xe3\x83\x9d\xe3\x82\xb1\xe3\x83\x99\xe3\x83\xab]", "165"=>"[\xe6\x96\xb0\xe8\x81\x9e]", "166"=>"[\xe3\x82\xb9\xe3\x83\x94\xe3\x83\xbc\xe3\x82\xab]", "167"=>"[\xe3\x83\xa1\xe3\x82\xac\xe3\x83\x9b\xe3\x83\xb3]", "168"=>"[\xe3\x82\xa2\xe3\x83\xb3\xe3\x83\x86\xe3\x83\x8a]",
         
     | 
| 
      
 764 
     | 
    
         
            +
                  "169"=>"[\xe9\x80\x81\xe4\xbf\xa1BOX]", "170"=>"[\xe5\x8f\x97\xe4\xbf\xa1BOX]", "171"=>"[ABCD]", "172"=>"[abcd]", "173"=>"[1234]",
         
     | 
| 
      
 765 
     | 
    
         
            +
                  "174"=>"[\xe8\xa8\x98\xe5\x8f\xb7]", "175"=>"[ABC]", "176"=>"[\xe3\x83\x9a\xe3\x83\xb3]", "177"=>"[\xe3\x81\x84\xe3\x81\x99]", "178"=>"[\xe3\x82\xaf\xe3\x83\xaa\xe3\x83\x83\xe3\x83\x97]",
         
     | 
| 
      
 766 
     | 
    
         
            +
                  "179"=>"[MD]", "180"=>"[\xe3\x83\x95\xe3\x83\xad\xe3\x83\x83\xe3\x83\x94\xe3\x83\xbc]", "181"=>"[\xe7\x94\xbb\xe3\x81\xb3\xe3\x82\x87\xe3\x81\x86]", "182"=>"[\xe3\x82\xab\xe3\x83\xac\xe3\x83\xb3\xe3\x83\x80\xe3\x83\xbc]", "183"=>"[\xe3\x83\x95\xe3\x82\xa9\xe3\x83\xab\xe3\x83\x80]",
         
     | 
| 
      
 767 
     | 
    
         
            +
                  "184"=>"[\xe5\x90\x8d\xe6\x9c\xad]", "185"=>"[\xe3\x82\xb9\xe3\x82\xaf\xe3\x83\xad\xe3\x83\xbc\xe3\x83\xab]", "186"=>"[\xe3\x82\xb0\xe3\x83\xa9\xe3\x83\x95]", "187"=>"[\xe5\xae\x9a\xe8\xa6\x8f]", "188"=>"[\xe4\xb8\x89\xe8\xa7\x92\xe5\xae\x9a\xe8\xa6\x8f]",
         
     | 
| 
      
 768 
     | 
    
         
            +
                  "189"=>"[\xe3\x82\xb9\xe3\x83\x8e\xe3\x83\x9c]", "190"=>"[\xe3\x83\x88\xe3\x83\xad\xe3\x83\x95\xe3\x82\xa3\xe3\x83\xbc]", "191"=>"[\xe3\x83\x95\xe3\x83\x83\xe3\x83\x88\xe3\x83\x9c\xe3\x83\xbc\xe3\x83\xab]", "192"=>"[\xe6\xb0\xb4\xe6\xb3\xb3]", "193"=>"[\xe3\x83\x90\xe3\x82\xb9\xe5\x81\x9c]",
         
     | 
| 
      
 769 
     | 
    
         
            +
                  "194"=>"[\xe9\xa7\x85]", "195"=>"[\xe3\x83\xad\xe3\x82\xb1\xe3\x83\x83\xe3\x83\x88]", "196"=>"[\xe3\x83\x88\xe3\x83\xa9\xe3\x83\x83\xe3\x82\xaf]", "197"=>"[\xe6\xb6\x88\xe9\x98\xb2\xe8\xbb\x8a]", "198"=>"[\xe6\x95\x91\xe6\x80\xa5\xe8\xbb\x8a]",
         
     | 
| 
      
 770 
     | 
    
         
            +
                  "199"=>"[\xe3\x83\x91\xe3\x83\x88\xe3\x82\xab\xe3\x83\xbc]", "200"=>"[\xe5\xb7\xa5\xe4\xba\x8b\xe4\xb8\xad]", "201"=>"[\xe3\x82\xad\xe3\x83\xa3\xe3\x83\xb3\xe3\x83\x97]", "202"=>"[\xe8\xa6\xb3\xe8\xa6\xa7\xe8\xbb\x8a]", "203"=>"[\xe3\x82\xb8\xe3\x82\xa7\xe3\x83\x83\xe3\x83\x88\xe3\x82\xb3\xe3\x83\xbc\xe3\x82\xb9\xe3\x82\xbf\xe3\x83\xbc]",
         
     | 
| 
      
 771 
     | 
    
         
            +
                  "204"=>"[\xe3\x82\xa4\xe3\x83\x99\xe3\x83\xb3\xe3\x83\x88]", "205"=>"[\xe6\xbc\x94\xe5\x8a\x87]", "206"=>"[\xe3\x82\xb2\xe3\x83\xbc\xe3\x83\xa0]", "207"=>"[\xe9\xba\xbb\xe9\x9b\x80]", "208"=>"[\xe7\x9a\x84\xe4\xb8\xad]",
         
     | 
| 
      
 772 
     | 
    
         
            +
                  "209"=>"[777]", "210"=>"[\xe3\x83\x93\xe3\x83\xaa\xe3\x83\xa4\xe3\x83\xbc\xe3\x83\x89]", "211"=>"[\xe3\x82\xb5\xe3\x82\xa4\xe3\x82\xb3\xe3\x83\xad]", "212"=>"[\xe3\x83\x9c\xe3\x83\xbc\xe3\x83\xaa\xe3\x83\xb3\xe3\x82\xb0]", "213"=>"[\xe8\x8a\xb1\xe6\x9c\xad]",
         
     | 
| 
      
 773 
     | 
    
         
            +
                  "214"=>"[\xe3\x82\xb8\xe3\x83\xa7\xe3\x83\xbc\xe3\x82\xab\xe3\x83\xbc]", "215"=>"[\xe3\x82\xb5\xe3\x83\x83\xe3\x82\xaf\xe3\x82\xb9]", "216"=>"[\xe3\x82\xae\xe3\x82\xbf\xe3\x83\xbc]", "217"=>"[\xe3\x83\x94\xe3\x82\xa2\xe3\x83\x8e]", "218"=>"[\xe3\x83\x88\xe3\x83\xa9\xe3\x83\xb3\xe3\x83\x9a\xe3\x83\x83\xe3\x83\x88]",
         
     | 
| 
      
 774 
     | 
    
         
            +
                  "219"=>"[\xe3\x83\x90\xe3\x82\xa4\xe3\x82\xaa\xe3\x83\xaa\xe3\x83\xb3]", "220"=>"[\xe6\xad\x8c\xe8\xa8\x98\xe5\x8f\xb7]", "221"=>"[\xe3\x83\xa9\xe3\x82\xb8\xe3\x82\xaa]", "222"=>"[\xe3\x83\x93\xe3\x83\x87\xe3\x82\xaa]", "223"=>"[\xe8\x8a\xb1\xe6\x9d\x9f]",
         
     | 
| 
      
 775 
     | 
    
         
            +
                  "224"=>"[\xe7\xb5\x90\xe5\xa9\x9a\xe5\xbc\x8f]", "225"=>"[18\xe7\xa6\x81]", "226"=>"[\xef\xbd\x89]", "227"=>"[10]", "228"=>"[\xe3\x83\x90\xe3\x83\xaa3]",
         
     | 
| 
      
 776 
     | 
    
         
            +
                  "229"=>"[\xe3\x83\x9e\xe3\x83\x8a\xe3\x83\xbc\xe3\x83\xa2\xe3\x83\xbc\xe3\x83\x89]", "230"=>"[\xe3\x82\xb1\xe3\x83\xbc\xe3\x82\xbf\xe3\x82\xa4OFF]", "231"=>"[\xe3\x83\x95\xe3\x83\xa9\xe3\x82\xa4\xe3\x83\x91\xe3\x83\xb3]", "232"=>"[\xe3\x82\xbd\xe3\x83\x95\xe3\x83\x88\xe3\x82\xaf\xe3\x83\xaa\xe3\x83\xbc\xe3\x83\xa0]", "233"=>"[\xe3\x83\x9d\xe3\x83\x86\xe3\x83\x88]",
         
     | 
| 
      
 777 
     | 
    
         
            +
                  "234"=>"[\xe3\x81\xa0\xe3\x82\x93\xe3\x81\x94]", "235"=>"[\xe3\x81\x9b\xe3\x82\x93\xe3\x81\xb9\xe3\x81\x84]", "236"=>"[\xe3\x83\x91\xe3\x82\xb9\xe3\x82\xbf]", "237"=>"[\xe3\x82\xab\xe3\x83\xac\xe3\x83\xbc]", "238"=>"[\xe3\x81\x8a\xe3\x81\xa7\xe3\x82\x93]",
         
     | 
| 
      
 778 
     | 
    
         
            +
                  "239"=>"[\xe3\x81\x99\xe3\x81\x97]", "240"=>"[\xe5\xbc\x81\xe5\xbd\x93]", "241"=>"[\xe9\x8d\x8b]", "242"=>"[\xe3\x82\xab\xe3\x82\xad\xe6\xb0\xb7]", "243"=>"[\xe8\x82\x89]",
         
     | 
| 
      
 779 
     | 
    
         
            +
                  "244"=>"[\xe3\x81\xaa\xe3\x82\x8b\xe3\x81\xa8]", "245"=>"[\xe3\x82\x84\xe3\x81\x8d\xe3\x81\x84\xe3\x82\x82]", "246"=>"[\xe3\x83\x94\xe3\x82\xb6]", "247"=>"[\xe3\x83\x81\xe3\x82\xad\xe3\x83\xb3]", "248"=>"[\xe3\x82\xa2\xe3\x82\xa4\xe3\x82\xb9\xe3\x82\xaf\xe3\x83\xaa\xe3\x83\xbc\xe3\x83\xa0]",
         
     | 
| 
      
 780 
     | 
    
         
            +
                  "249"=>"[\xe3\x83\x89\xe3\x83\xbc\xe3\x83\x8a\xe3\x83\x84]", "250"=>"[\xe3\x82\xaf\xe3\x83\x83\xe3\x82\xad\xe3\x83\xbc]", "251"=>"[\xe3\x83\x81\xe3\x83\xa7\xe3\x82\xb3]", "252"=>"[\xe3\x82\xad\xe3\x83\xa3\xe3\x83\xb3\xe3\x83\x87\xe3\x82\xa3]", "253"=>"[\xe3\x83\x97\xe3\x83\xaa\xe3\x83\xb3]",
         
     | 
| 
      
 781 
     | 
    
         
            +
                  "254"=>"[\xe3\x83\x8f\xe3\x83\x81\xe3\x83\x9f\xe3\x83\x84]", "255"=>"[\xe3\x82\xa8\xe3\x83\x93\xe3\x83\x95\xe3\x83\xa9\xe3\x82\xa4]", "256"=>"\xe2\x87\x94", "257"=>"\xe2\x86\x91\xe2\x86\x93", "258"=>"[\xe2\x86\x91]",
         
     | 
| 
      
 782 
     | 
    
         
            +
                  "259"=>"[\xe2\x86\x93]", "260"=>"[\xe2\x86\x92]", "261"=>"[\xe2\x86\x90]", "262"=>"[>]", "263"=>"[<]",
         
     | 
| 
      
 783 
     | 
    
         
            +
                  "264"=>"[>>]", "265"=>"[<<]", "266"=>"\xe2\x96\xb2", "267"=>"\xe2\x96\xbc", "268"=>"[\xc3\x97]",
         
     | 
| 
      
 784 
     | 
    
         
            +
                  "269"=>"\xef\xbc\x81\xef\xbc\x9f", "270"=>"\xef\xbc\x81\xef\xbc\x81", "271"=>"[\xef\xbc\x9f]", "272"=>"\xef\xbd\x9e", "273"=>"[\xe3\x83\x95\xe3\x83\xaa\xe3\x83\xbc\xe3\x83\x80\xe3\x82\xa4\xe3\x83\xa4\xe3\x83\xab]",
         
     | 
| 
      
 785 
     | 
    
         
            +
                  "274"=>"[\xe6\x97\x97]", "275"=>"[\xe2\x99\x82]", "276"=>"[\xe2\x99\x80]", "277"=>"[\xe3\x83\x89\xe3\x82\xa2]", "278"=>"[\xe7\xa6\x81\xe6\xad\xa2]",
         
     | 
| 
      
 786 
     | 
    
         
            +
                  "279"=>"[\xe3\x83\x81\xe3\x82\xa7\xe3\x83\x83\xe3\x82\xaf\xe3\x83\x9e\xe3\x83\xbc\xe3\x82\xaf]", "280"=>"[CL]", "281"=>"[COOL]", "282"=>"[FREE]", "283"=>"[NG]",
         
     | 
| 
      
 787 
     | 
    
         
            +
                  "284"=>"[SOS]", "285"=>"[UP!]", "286"=>"[VS]", "287"=>"[\xe3\x82\xb3\xe3\x82\xb3]", "288"=>"[\xe3\x82\xb5\xe3\x83\xbc\xe3\x83\x93\xe3\x82\xb9]",
         
     | 
| 
      
 788 
     | 
    
         
            +
                  "289"=>"[\xe7\xa6\x81]", "290"=>"[\xe5\x90\x88]", "291"=>"[\xe6\x9c\x89]", "292"=>"[\xe7\x84\xa1]", "293"=>"[\xe6\x9c\x88]",
         
     | 
| 
      
 789 
     | 
    
         
            +
                  "294"=>"[\xe7\x94\xb3]", "295"=>"[\xe5\x89\xb2]", "296"=>"[\xe6\x8c\x87]", "297"=>"[\xe5\x96\xb6]", "298"=>"[\xe7\xa5\x9d]",
         
     | 
| 
      
 790 
     | 
    
         
            +
                  "299"=>"[\xe5\xbe\x97]", "300"=>"[\xe5\x8f\xaf]", "301"=>"[\xef\xbc\x8b]", "302"=>"[\xef\xbc\x8d]", "303"=>"[\xc3\xb7]",
         
     | 
| 
      
 791 
     | 
    
         
            +
                  "304"=>"[\xe3\x83\x89\xe3\x83\xb3\xe3\x83\x83]", "305"=>"[\xe3\x82\xa6\xe3\x83\xb3\xe3\x83\x81]", "306"=>"[\xe5\x8a\x9b\xe3\x81\x93\xe3\x81\xb6]", "307"=>"[\xe3\x82\xaf\xe3\x83\xa9\xe3\x82\xaf\xe3\x83\xa9]", "308"=>"[\xe3\x83\x95\xe3\x82\xad\xe3\x83\x80\xe3\x82\xb7]",
         
     | 
| 
      
 792 
     | 
    
         
            +
                  "309"=>"\xe2\x96\xa0", "310"=>"\xe2\x97\x86", "311"=>"[\xe8\x8a\xb1\xe4\xb8\xb8]", "312"=>"[100\xe7\x82\xb9]", "313"=>"\xe2\x86\x90\xe2\x94\x98",
         
     | 
| 
      
 793 
     | 
    
         
            +
                  "314"=>"\xe2\x94\x94\xe2\x86\x92", "315"=>"[\xe9\x9b\xbb\xe6\xb1\xa0]", "316"=>"[\xe3\x82\xb3\xe3\x83\xb3\xe3\x82\xbb\xe3\x83\xb3\xe3\x83\x88]", "317"=>"[\xe3\x83\xa9\xe3\x82\xb8\xe3\x82\xaa\xe3\x83\x9c\xe3\x82\xbf\xe3\x83\xb3]", "318"=>"[\xe3\x83\x96\xe3\x83\x83\xe3\x82\xaf\xe3\x83\x9e\xe3\x83\xbc\xe3\x82\xaf]",
         
     | 
| 
      
 794 
     | 
    
         
            +
                  "319"=>"[\xe3\x83\xaa\xe3\x83\xb3\xe3\x82\xaf]", "320"=>"[\xe2\x86\x90BACK]", "321"=>"[end]", "322"=>"[ON]", "323"=>"[SOON]",
         
     | 
| 
      
 795 
     | 
    
         
            +
                  "324"=>"[TOP]", "325"=>"[\xe4\xba\xba\xe5\xb7\xae\xe3\x81\x97\xe6\x8c\x87]", "326"=>"[\xe6\x8b\x8d\xe6\x89\x8b]",
         
     | 
| 
      
 796 
     | 
    
         
            +
                },
         
     | 
| 
      
 797 
     | 
    
         
            +
                'unified_to_docomo' => {
         
     | 
| 
      
 798 
     | 
    
         
            +
                  "\xe2\x98\x80"=>"\xee\x98\xbe", "\xe2\x98\x81"=>"\xee\x98\xbf", "\xe2\x98\x94"=>"\xee\x99\x80", "\xe2\x9b\x84"=>"\xee\x99\x81",
         
     | 
| 
      
 799 
     | 
    
         
            +
                  "\xe2\x9a\xa1"=>"\xee\x99\x82", "\xf0\x9f\x8c\x80"=>"\xee\x99\x83", "\xf0\x9f\x8c\x81"=>"\xee\x99\x84", "\xf0\x9f\x8c\x82"=>"\xee\x99\x85", "\xf0\x9f\x8c\x83"=>"\xee\x9a\xb3",
         
     | 
| 
      
 800 
     | 
    
         
            +
                  "\xf0\x9f\x8c\x84"=>"\xee\x98\xbe", "\xf0\x9f\x8c\x85"=>"\xee\x98\xbe", "\xf0\x9f\x8c\x86"=>"[\xe5\xa4\x95\xe7\x84\xbc\xe3\x81\x91]", "\xf0\x9f\x8c\x87"=>"\xee\x98\xbe", "\xf0\x9f\x8c\x88"=>"[\xe8\x99\xb9]",
         
     | 
| 
      
 801 
     | 
    
         
            +
                  "\xe2\x9d\x84"=>"[\xe9\x9b\xaa\xe7\xb5\x90\xe6\x99\xb6]", "\xe2\x9b\x85"=>"\xee\x98\xbe\xee\x98\xbf", "\xf0\x9f\x8c\x89"=>"\xee\x9a\xb3", "\xf0\x9f\x8c\x8a"=>"\xee\x9c\xbf", "\xf0\x9f\x8c\x8b"=>"[\xe7\x81\xab\xe5\xb1\xb1]",
         
     | 
| 
      
 802 
     | 
    
         
            +
                  "\xf0\x9f\x8c\x8c"=>"\xee\x9a\xb3", "\xf0\x9f\x8c\x8f"=>"[\xe5\x9c\xb0\xe7\x90\x83]", "\xf0\x9f\x8c\x91"=>"\xee\x9a\x9c", "\xf0\x9f\x8c\x94"=>"\xee\x9a\x9d", "\xf0\x9f\x8c\x93"=>"\xee\x9a\x9e",
         
     | 
| 
      
 803 
     | 
    
         
            +
                  "\xf0\x9f\x8c\x99"=>"\xee\x9a\x9f", "\xf0\x9f\x8c\x95"=>"\xee\x9a\xa0", "\xf0\x9f\x8c\x9b"=>"\xee\x9a\x9e", "\xf0\x9f\x8c\x9f"=>"[\xe2\x98\x86]", "\xf0\x9f\x8c\xa0"=>"\xe2\x98\x86\xe5\xbd\xa1",
         
     | 
| 
      
 804 
     | 
    
         
            +
                  "\xf0\x9f\x95\x90"=>"\xee\x9a\xba", "\xf0\x9f\x95\x91"=>"\xee\x9a\xba", "\xf0\x9f\x95\x92"=>"\xee\x9a\xba", "\xf0\x9f\x95\x93"=>"\xee\x9a\xba", "\xf0\x9f\x95\x94"=>"\xee\x9a\xba",
         
     | 
| 
      
 805 
     | 
    
         
            +
                  "\xf0\x9f\x95\x95"=>"\xee\x9a\xba", "\xf0\x9f\x95\x96"=>"\xee\x9a\xba", "\xf0\x9f\x95\x97"=>"\xee\x9a\xba", "\xf0\x9f\x95\x98"=>"\xee\x9a\xba", "\xf0\x9f\x95\x99"=>"\xee\x9a\xba",
         
     | 
| 
      
 806 
     | 
    
         
            +
                  "\xf0\x9f\x95\x9a"=>"\xee\x9a\xba", "\xf0\x9f\x95\x9b"=>"\xee\x9a\xba", "\xe2\x8c\x9a"=>"\xee\x9c\x9f", "\xe2\x8c\x9b"=>"\xee\x9c\x9c", "\xe2\x8f\xb0"=>"\xee\x9a\xba",
         
     | 
| 
      
 807 
     | 
    
         
            +
                  "\xe2\x8f\xb3"=>"\xee\x9c\x9c", "\xe2\x99\x88"=>"\xee\x99\x86", "\xe2\x99\x89"=>"\xee\x99\x87", "\xe2\x99\x8a"=>"\xee\x99\x88", "\xe2\x99\x8b"=>"\xee\x99\x89",
         
     | 
| 
      
 808 
     | 
    
         
            +
                  "\xe2\x99\x8c"=>"\xee\x99\x8a", "\xe2\x99\x8d"=>"\xee\x99\x8b", "\xe2\x99\x8e"=>"\xee\x99\x8c", "\xe2\x99\x8f"=>"\xee\x99\x8d", "\xe2\x99\x90"=>"\xee\x99\x8e",
         
     | 
| 
      
 809 
     | 
    
         
            +
                  "\xe2\x99\x91"=>"\xee\x99\x8f", "\xe2\x99\x92"=>"\xee\x99\x90", "\xe2\x99\x93"=>"\xee\x99\x91", "\xe2\x9b\x8e"=>"[\xe8\x9b\x87\xe4\xbd\xbf\xe5\xba\xa7]", "\xf0\x9f\x8d\x80"=>"\xee\x9d\x81",
         
     | 
| 
      
 810 
     | 
    
         
            +
                  "\xf0\x9f\x8c\xb7"=>"\xee\x9d\x83", "\xf0\x9f\x8c\xb1"=>"\xee\x9d\x86", "\xf0\x9f\x8d\x81"=>"\xee\x9d\x87", "\xf0\x9f\x8c\xb8"=>"\xee\x9d\x88", "\xf0\x9f\x8c\xb9"=>"[\xe3\x83\x90\xe3\x83\xa9]",
         
     | 
| 
      
 811 
     | 
    
         
            +
                  "\xf0\x9f\x8d\x82"=>"\xee\x9d\x87", "\xf0\x9f\x8d\x83"=>"[\xe9\xa2\xa8\xe3\x81\xab\xe8\x88\x9e\xe3\x81\x86\xe8\x91\x89]", "\xf0\x9f\x8c\xba"=>"[\xe3\x83\x8f\xe3\x82\xa4\xe3\x83\x93\xe3\x82\xb9\xe3\x82\xab\xe3\x82\xb9]", "\xf0\x9f\x8c\xbb"=>"[\xe3\x81\xb2\xe3\x81\xbe\xe3\x82\x8f\xe3\x82\x8a]", "\xf0\x9f\x8c\xb4"=>"[\xe3\x83\xa4\xe3\x82\xb7]",
         
     | 
| 
      
 812 
     | 
    
         
            +
                  "\xf0\x9f\x8c\xb5"=>"[\xe3\x82\xb5\xe3\x83\x9c\xe3\x83\x86\xe3\x83\xb3]", "\xf0\x9f\x8c\xbe"=>"[\xe7\xa8\xb2\xe7\xa9\x82]", "\xf0\x9f\x8c\xbd"=>"[\xe3\x81\xa8\xe3\x81\x86\xe3\x82\x82\xe3\x82\x8d\xe3\x81\x93\xe3\x81\x97]", "\xf0\x9f\x8d\x84"=>"[\xe3\x82\xad\xe3\x83\x8e\xe3\x82\xb3]", "\xf0\x9f\x8c\xb0"=>"[\xe6\xa0\x97]",
         
     | 
| 
      
 813 
     | 
    
         
            +
                  "\xf0\x9f\x8c\xbc"=>"[\xe8\x8a\xb1]", "\xf0\x9f\x8c\xbf"=>"\xee\x9d\x81", "\xf0\x9f\x8d\x92"=>"\xee\x9d\x82", "\xf0\x9f\x8d\x8c"=>"\xee\x9d\x84", "\xf0\x9f\x8d\x8e"=>"\xee\x9d\x85",
         
     | 
| 
      
 814 
     | 
    
         
            +
                  "\xf0\x9f\x8d\x8a"=>"[\xe3\x81\xbf\xe3\x81\x8b\xe3\x82\x93]", "\xf0\x9f\x8d\x93"=>"[\xe3\x82\xa4\xe3\x83\x81\xe3\x82\xb4]", "\xf0\x9f\x8d\x89"=>"[\xe3\x82\xb9\xe3\x82\xa4\xe3\x82\xab]", "\xf0\x9f\x8d\x85"=>"[\xe3\x83\x88\xe3\x83\x9e\xe3\x83\x88]", "\xf0\x9f\x8d\x86"=>"[\xe3\x83\x8a\xe3\x82\xb9]",
         
     | 
| 
      
 815 
     | 
    
         
            +
                  "\xf0\x9f\x8d\x88"=>"[\xe3\x83\xa1\xe3\x83\xad\xe3\x83\xb3]", "\xf0\x9f\x8d\x8d"=>"[\xe3\x83\x91\xe3\x82\xa4\xe3\x83\x8a\xe3\x83\x83\xe3\x83\x97\xe3\x83\xab]", "\xf0\x9f\x8d\x87"=>"[\xe3\x83\x96\xe3\x83\x89\xe3\x82\xa6]", "\xf0\x9f\x8d\x91"=>"[\xe3\x83\xa2\xe3\x83\xa2]", "\xf0\x9f\x8d\x8f"=>"\xee\x9d\x85",
         
     | 
| 
      
 816 
     | 
    
         
            +
                  "\xf0\x9f\x91\x80"=>"\xee\x9a\x91", "\xf0\x9f\x91\x82"=>"\xee\x9a\x92", "\xf0\x9f\x91\x83"=>"[\xe9\xbc\xbb]", "\xf0\x9f\x91\x84"=>"\xee\x9b\xb9", "\xf0\x9f\x91\x85"=>"\xee\x9c\xa8",
         
     | 
| 
      
 817 
     | 
    
         
            +
                  "\xf0\x9f\x92\x84"=>"\xee\x9c\x90", "\xf0\x9f\x92\x85"=>"[\xe3\x83\x9e\xe3\x83\x8b\xe3\x82\xad\xe3\x83\xa5\xe3\x82\xa2]", "\xf0\x9f\x92\x86"=>"[\xe3\x82\xa8\xe3\x82\xb9\xe3\x83\x86]", "\xf0\x9f\x92\x87"=>"\xee\x99\xb5", "\xf0\x9f\x92\x88"=>"[\xe5\xba\x8a\xe5\xb1\x8b]",
         
     | 
| 
      
 818 
     | 
    
         
            +
                  "\xf0\x9f\x91\xa4"=>"\xee\x9a\xb1", "\xf0\x9f\x91\xa6"=>"\xee\x9b\xb0", "\xf0\x9f\x91\xa7"=>"\xee\x9b\xb0", "\xf0\x9f\x91\xa8"=>"\xee\x9b\xb0", "\xf0\x9f\x91\xa9"=>"\xee\x9b\xb0",
         
     | 
| 
      
 819 
     | 
    
         
            +
                  "\xf0\x9f\x91\xaa"=>"[\xe5\xae\xb6\xe6\x97\x8f]", "\xf0\x9f\x91\xab"=>"[\xe3\x82\xab\xe3\x83\x83\xe3\x83\x97\xe3\x83\xab]", "\xf0\x9f\x91\xae"=>"[\xe8\xad\xa6\xe5\xae\x98]", "\xf0\x9f\x91\xaf"=>"[\xe3\x83\x90\xe3\x83\x8b\xe3\x83\xbc]", "\xf0\x9f\x91\xb0"=>"[\xe8\x8a\xb1\xe5\xab\x81]",
         
     | 
| 
      
 820 
     | 
    
         
            +
                  "\xf0\x9f\x91\xb1"=>"[\xe7\x99\xbd\xe4\xba\xba]", "\xf0\x9f\x91\xb2"=>"[\xe4\xb8\xad\xe5\x9b\xbd\xe4\xba\xba]", "\xf0\x9f\x91\xb3"=>"[\xe3\x82\xa4\xe3\x83\xb3\xe3\x83\x89\xe4\xba\xba]", "\xf0\x9f\x91\xb4"=>"[\xe3\x81\x8a\xe3\x81\x98\xe3\x81\x84\xe3\x81\x95\xe3\x82\x93]", "\xf0\x9f\x91\xb5"=>"[\xe3\x81\x8a\xe3\x81\xb0\xe3\x81\x82\xe3\x81\x95\xe3\x82\x93]",
         
     | 
| 
      
 821 
     | 
    
         
            +
                  "\xf0\x9f\x91\xb6"=>"[\xe8\xb5\xa4\xe3\x81\xa1\xe3\x82\x83\xe3\x82\x93]", "\xf0\x9f\x91\xb7"=>"[\xe5\xb7\xa5\xe4\xba\x8b\xe7\x8f\xbe\xe5\xa0\xb4\xe3\x81\xae\xe4\xba\xba]", "\xf0\x9f\x91\xb8"=>"[\xe3\x81\x8a\xe5\xa7\xab\xe6\xa7\x98]", "\xf0\x9f\x91\xb9"=>"[\xe3\x81\xaa\xe3\x81\xbe\xe3\x81\xaf\xe3\x81\x92]", "\xf0\x9f\x91\xba"=>"[\xe5\xa4\xa9\xe7\x8b\x97]",
         
     | 
| 
      
 822 
     | 
    
         
            +
                  "\xf0\x9f\x91\xbb"=>"[\xe3\x81\x8a\xe5\x8c\x96\xe3\x81\x91]", "\xf0\x9f\x91\xbc"=>"[\xe5\xa4\xa9\xe4\xbd\xbf]", "\xf0\x9f\x91\xbd"=>"[UFO]", "\xf0\x9f\x91\xbe"=>"[\xe5\xae\x87\xe5\xae\x99\xe4\xba\xba]", "\xf0\x9f\x91\xbf"=>"[\xe3\x82\xa2\xe3\x82\xaf\xe3\x83\x9e]",
         
     | 
| 
      
 823 
     | 
    
         
            +
                  "\xf0\x9f\x92\x80"=>"[\xe3\x83\x89\xe3\x82\xaf\xe3\x83\xad]", "\xf0\x9f\x92\x81"=>"[\xe6\xa1\x88\xe5\x86\x85]", "\xf0\x9f\x92\x82"=>"[\xe8\xa1\x9b\xe5\x85\xb5]", "\xf0\x9f\x92\x83"=>"[\xe3\x83\x80\xe3\x83\xb3\xe3\x82\xb9]", "\xf0\x9f\x90\x8c"=>"\xee\x9d\x8e",
         
     | 
| 
      
 824 
     | 
    
         
            +
                  "\xf0\x9f\x90\x8d"=>"[\xe3\x83\x98\xe3\x83\x93]", "\xf0\x9f\x90\x8e"=>"\xee\x9d\x94", "\xf0\x9f\x90\x94"=>"[\xe3\x83\x8b\xe3\x83\xaf\xe3\x83\x88\xe3\x83\xaa]", "\xf0\x9f\x90\x97"=>"[\xe3\x82\xa4\xe3\x83\x8e\xe3\x82\xb7\xe3\x82\xb7]", "\xf0\x9f\x90\xab"=>"[\xe3\x83\xa9\xe3\x82\xaf\xe3\x83\x80]",
         
     | 
| 
      
 825 
     | 
    
         
            +
                  "\xf0\x9f\x90\x98"=>"[\xe3\x82\xbe\xe3\x82\xa6]", "\xf0\x9f\x90\xa8"=>"[\xe3\x82\xb3\xe3\x82\xa2\xe3\x83\xa9]", "\xf0\x9f\x90\x92"=>"[\xe3\x82\xb5\xe3\x83\xab]", "\xf0\x9f\x90\x91"=>"[\xe3\x83\x92\xe3\x83\x84\xe3\x82\xb8]", "\xf0\x9f\x90\x99"=>"[\xe3\x82\xbf\xe3\x82\xb3]",
         
     | 
| 
      
 826 
     | 
    
         
            +
                  "\xf0\x9f\x90\x9a"=>"[\xe5\xb7\xbb\xe8\xb2\x9d]", "\xf0\x9f\x90\x9b"=>"[\xe3\x82\xb2\xe3\x82\xb8\xe3\x82\xb2\xe3\x82\xb8]", "\xf0\x9f\x90\x9c"=>"[\xe3\x82\xa2\xe3\x83\xaa]", "\xf0\x9f\x90\x9d"=>"[\xe3\x83\x9f\xe3\x83\x84\xe3\x83\x90\xe3\x83\x81]", "\xf0\x9f\x90\x9e"=>"[\xe3\x81\xa6\xe3\x82\x93\xe3\x81\xa8\xe3\x81\x86\xe8\x99\xab]",
         
     | 
| 
      
 827 
     | 
    
         
            +
                  "\xf0\x9f\x90\xa0"=>"\xee\x9d\x91", "\xf0\x9f\x90\xa1"=>"\xee\x9d\x91", "\xf0\x9f\x90\xa2"=>"[\xe3\x82\xab\xe3\x83\xa1]", "\xf0\x9f\x90\xa4"=>"\xee\x9d\x8f", "\xf0\x9f\x90\xa5"=>"\xee\x9d\x8f",
         
     | 
| 
      
 828 
     | 
    
         
            +
                  "\xf0\x9f\x90\xa6"=>"\xee\x9d\x8f", "\xf0\x9f\x90\xa3"=>"\xee\x9d\x8f", "\xf0\x9f\x90\xa7"=>"\xee\x9d\x90", "\xf0\x9f\x90\xa9"=>"\xee\x9a\xa1", "\xf0\x9f\x90\x9f"=>"\xee\x9d\x91",
         
     | 
| 
      
 829 
     | 
    
         
            +
                  "\xf0\x9f\x90\xac"=>"[\xe3\x82\xa4\xe3\x83\xab\xe3\x82\xab]", "\xf0\x9f\x90\xad"=>"[\xe3\x83\x8d\xe3\x82\xba\xe3\x83\x9f]", "\xf0\x9f\x90\xaf"=>"[\xe3\x83\x88\xe3\x83\xa9]", "\xf0\x9f\x90\xb1"=>"\xee\x9a\xa2", "\xf0\x9f\x90\xb3"=>"[\xe3\x82\xaf\xe3\x82\xb8\xe3\x83\xa9]",
         
     | 
| 
      
 830 
     | 
    
         
            +
                  "\xf0\x9f\x90\xb4"=>"\xee\x9d\x94", "\xf0\x9f\x90\xb5"=>"[\xe3\x82\xb5\xe3\x83\xab]", "\xf0\x9f\x90\xb6"=>"\xee\x9a\xa1", "\xf0\x9f\x90\xb7"=>"\xee\x9d\x95", "\xf0\x9f\x90\xbb"=>"[\xe3\x82\xaf\xe3\x83\x9e]",
         
     | 
| 
      
 831 
     | 
    
         
            +
                  "\xf0\x9f\x90\xb9"=>"[\xe3\x83\x8f\xe3\x83\xa0\xe3\x82\xb9\xe3\x82\xbf\xe3\x83\xbc]", "\xf0\x9f\x90\xba"=>"\xee\x9a\xa1", "\xf0\x9f\x90\xae"=>"[\xe7\x89\x9b]", "\xf0\x9f\x90\xb0"=>"[\xe3\x82\xa6\xe3\x82\xb5\xe3\x82\xae]", "\xf0\x9f\x90\xb8"=>"[\xe3\x82\xab\xe3\x82\xa8\xe3\x83\xab]",
         
     | 
| 
      
 832 
     | 
    
         
            +
                  "\xf0\x9f\x90\xbe"=>"\xee\x9a\x98", "\xf0\x9f\x90\xb2"=>"[\xe8\xbe\xb0]", "\xf0\x9f\x90\xbc"=>"[\xe3\x83\x91\xe3\x83\xb3\xe3\x83\x80]", "\xf0\x9f\x90\xbd"=>"\xee\x9d\x95", "\xf0\x9f\x98\xa0"=>"\xee\x9b\xb1",
         
     | 
| 
      
 833 
     | 
    
         
            +
                  "\xf0\x9f\x98\xa9"=>"\xee\x9b\xb3", "\xf0\x9f\x98\xb2"=>"\xee\x9b\xb4", "\xf0\x9f\x98\x9e"=>"\xee\x9b\xb2", "\xf0\x9f\x98\xb5"=>"\xee\x9b\xb4", "\xf0\x9f\x98\xb0"=>"\xee\x9c\xa3",
         
     | 
| 
      
 834 
     | 
    
         
            +
                  "\xf0\x9f\x98\x92"=>"\xee\x9c\xa5", "\xf0\x9f\x98\x8d"=>"\xee\x9c\xa6", "\xf0\x9f\x98\xa4"=>"\xee\x9d\x93", "\xf0\x9f\x98\x9c"=>"\xee\x9c\xa8", "\xf0\x9f\x98\x9d"=>"\xee\x9c\xa8",
         
     | 
| 
      
 835 
     | 
    
         
            +
                  "\xf0\x9f\x98\x8b"=>"\xee\x9d\x92", "\xf0\x9f\x98\x98"=>"\xee\x9c\xa6", "\xf0\x9f\x98\x9a"=>"\xee\x9c\xa6", "\xf0\x9f\x98\xb7"=>"[\xe9\xa2\xa8\xe9\x82\xaa\xe3\x81\xb2\xe3\x81\x8d]", "\xf0\x9f\x98\xb3"=>"\xee\x9c\xaa",
         
     | 
| 
      
 836 
     | 
    
         
            +
                  "\xf0\x9f\x98\x83"=>"\xee\x9b\xb0", "\xf0\x9f\x98\x85"=>"\xee\x9c\xa2", "\xf0\x9f\x98\x86"=>"\xee\x9c\xaa", "\xf0\x9f\x98\x81"=>"\xee\x9d\x93", "\xf0\x9f\x98\x82"=>"\xee\x9c\xaa",
         
     | 
| 
      
 837 
     | 
    
         
            +
                  "\xf0\x9f\x98\x8a"=>"\xee\x9b\xb0", "\xe2\x98\xba"=>"\xee\x9b\xb0", "\xf0\x9f\x98\x84"=>"\xee\x9b\xb0", "\xf0\x9f\x98\xa2"=>"\xee\x9c\xae", "\xf0\x9f\x98\xad"=>"\xee\x9c\xad",
         
     | 
| 
      
 838 
     | 
    
         
            +
                  "\xf0\x9f\x98\xa8"=>"\xee\x9d\x97", "\xf0\x9f\x98\xa3"=>"\xee\x9c\xab", "\xf0\x9f\x98\xa1"=>"\xee\x9c\xa4", "\xf0\x9f\x98\x8c"=>"\xee\x9c\xa1", "\xf0\x9f\x98\x96"=>"\xee\x9b\xb3",
         
     | 
| 
      
 839 
     | 
    
         
            +
                  "\xf0\x9f\x98\x94"=>"\xee\x9c\xa0", "\xf0\x9f\x98\xb1"=>"\xee\x9d\x97", "\xf0\x9f\x98\xaa"=>"\xee\x9c\x81", "\xf0\x9f\x98\x8f"=>"\xee\x9c\xac", "\xf0\x9f\x98\x93"=>"\xee\x9c\xa3",
         
     | 
| 
      
 840 
     | 
    
         
            +
                  "\xf0\x9f\x98\xa5"=>"\xee\x9c\xa3", "\xf0\x9f\x98\xab"=>"\xee\x9c\xab", "\xf0\x9f\x98\x89"=>"\xee\x9c\xa9", "\xf0\x9f\x98\xba"=>"\xee\x9b\xb0", "\xf0\x9f\x98\xb8"=>"\xee\x9d\x93",
         
     | 
| 
      
 841 
     | 
    
         
            +
                  "\xf0\x9f\x98\xb9"=>"\xee\x9c\xaa", "\xf0\x9f\x98\xbd"=>"\xee\x9c\xa6", "\xf0\x9f\x98\xbb"=>"\xee\x9c\xa6", "\xf0\x9f\x98\xbf"=>"\xee\x9c\xae", "\xf0\x9f\x98\xbe"=>"\xee\x9c\xa4",
         
     | 
| 
      
 842 
     | 
    
         
            +
                  "\xf0\x9f\x98\xbc"=>"\xee\x9d\x93", "\xf0\x9f\x99\x80"=>"\xee\x9b\xb3", "\xf0\x9f\x99\x85"=>"\xee\x9c\xaf", "\xf0\x9f\x99\x86"=>"\xee\x9c\x8b", "\xf0\x9f\x99\x87"=>"m(_ _)m",
         
     | 
| 
      
 843 
     | 
    
         
            +
                  "\xf0\x9f\x99\x88"=>"(/_\xef\xbc\xbc)", "\xf0\x9f\x99\x8a"=>"(\xe3\x83\xbb\xc3\x97\xe3\x83\xbb)", "\xf0\x9f\x99\x89"=>"|(\xe3\x83\xbb\xc3\x97\xe3\x83\xbb)|", "\xf0\x9f\x99\x8b"=>"(^-^)/", "\xf0\x9f\x99\x8c"=>"\xef\xbc\xbc(^o^)\xef\xbc\x8f",
         
     | 
| 
      
 844 
     | 
    
         
            +
                  "\xf0\x9f\x99\x8d"=>"\xee\x9b\xb3", "\xf0\x9f\x99\x8e"=>"\xee\x9b\xb1", "\xf0\x9f\x99\x8f"=>"(>\xe4\xba\xba<)", "\xf0\x9f\x8f\xa0"=>"\xee\x99\xa3", "\xf0\x9f\x8f\xa1"=>"\xee\x99\xa3",
         
     | 
| 
      
 845 
     | 
    
         
            +
                  "\xf0\x9f\x8f\xa2"=>"\xee\x99\xa4", "\xf0\x9f\x8f\xa3"=>"\xee\x99\xa5", "\xf0\x9f\x8f\xa5"=>"\xee\x99\xa6", "\xf0\x9f\x8f\xa6"=>"\xee\x99\xa7", "\xf0\x9f\x8f\xa7"=>"\xee\x99\xa8",
         
     | 
| 
      
 846 
     | 
    
         
            +
                  "\xf0\x9f\x8f\xa8"=>"\xee\x99\xa9", "\xf0\x9f\x8f\xa9"=>"\xee\x99\xa9\xee\x9b\xaf", "\xf0\x9f\x8f\xaa"=>"\xee\x99\xaa", "\xf0\x9f\x8f\xab"=>"\xee\x9c\xbe", "\xe2\x9b\xaa"=>"[\xe6\x95\x99\xe4\xbc\x9a]",
         
     | 
| 
      
 847 
     | 
    
         
            +
                  "\xe2\x9b\xb2"=>"[\xe5\x99\xb4\xe6\xb0\xb4]", "\xf0\x9f\x8f\xac"=>"[\xe3\x83\x87\xe3\x83\x91\xe3\x83\xbc\xe3\x83\x88]", "\xf0\x9f\x8f\xaf"=>"[\xe5\x9f\x8e]", "\xf0\x9f\x8f\xb0"=>"[\xe5\x9f\x8e]", "\xf0\x9f\x8f\xad"=>"[\xe5\xb7\xa5\xe5\xa0\xb4]",
         
     | 
| 
      
 848 
     | 
    
         
            +
                  "\xe2\x9a\x93"=>"\xee\x99\xa1", "\xf0\x9f\x8f\xae"=>"\xee\x9d\x8b", "\xf0\x9f\x97\xbb"=>"\xee\x9d\x80", "\xf0\x9f\x97\xbc"=>"[\xe6\x9d\xb1\xe4\xba\xac\xe3\x82\xbf\xe3\x83\xaf\xe3\x83\xbc]", "\xf0\x9f\x97\xbd"=>"[\xe8\x87\xaa\xe7\x94\xb1\xe3\x81\xae\xe5\xa5\xb3\xe7\xa5\x9e]",
         
     | 
| 
      
 849 
     | 
    
         
            +
                  "\xf0\x9f\x97\xbe"=>"[\xe6\x97\xa5\xe6\x9c\xac\xe5\x9c\xb0\xe5\x9b\xb3]", "\xf0\x9f\x97\xbf"=>"[\xe3\x83\xa2\xe3\x82\xa2\xe3\x82\xa4]", "\xf0\x9f\x91\x9e"=>"\xee\x9a\x99", "\xf0\x9f\x91\x9f"=>"\xee\x9a\x99", "\xf0\x9f\x91\xa0"=>"\xee\x99\xb4",
         
     | 
| 
      
 850 
     | 
    
         
            +
                  "\xf0\x9f\x91\xa1"=>"\xee\x99\xb4", "\xf0\x9f\x91\xa2"=>"[\xe3\x83\x96\xe3\x83\xbc\xe3\x83\x84]", "\xf0\x9f\x91\xa3"=>"\xee\x9a\x98", "\xf0\x9f\x91\x93"=>"\xee\x9a\x9a", "\xf0\x9f\x91\x95"=>"\xee\x9c\x8e",
         
     | 
| 
      
 851 
     | 
    
         
            +
                  "\xf0\x9f\x91\x96"=>"\xee\x9c\x91", "\xf0\x9f\x91\x91"=>"\xee\x9c\x9a", "\xf0\x9f\x91\x94"=>"[\xe3\x83\x8d\xe3\x82\xaf\xe3\x82\xbf\xe3\x82\xa4]", "\xf0\x9f\x91\x92"=>"[\xe5\xb8\xbd\xe5\xad\x90]", "\xf0\x9f\x91\x97"=>"[\xe3\x83\x89\xe3\x83\xac\xe3\x82\xb9]",
         
     | 
| 
      
 852 
     | 
    
         
            +
                  "\xf0\x9f\x91\x98"=>"[\xe7\x9d\x80\xe7\x89\xa9]", "\xf0\x9f\x91\x99"=>"[\xe3\x83\x93\xe3\x82\xad\xe3\x83\x8b]", "\xf0\x9f\x91\x9a"=>"\xee\x9c\x8e", "\xf0\x9f\x91\x9b"=>"\xee\x9c\x8f", "\xf0\x9f\x91\x9c"=>"\xee\x9a\x82",
         
     | 
| 
      
 853 
     | 
    
         
            +
                  "\xf0\x9f\x91\x9d"=>"\xee\x9a\xad", "\xf0\x9f\x92\xb0"=>"\xee\x9c\x95", "\xf0\x9f\x92\xb1"=>"[\xef\xbf\xa5]", "\xf0\x9f\x92\xb9"=>"[\xe6\xa0\xaa\xe4\xbe\xa1]", "\xf0\x9f\x92\xb2"=>"\xee\x9c\x95",
         
     | 
| 
      
 854 
     | 
    
         
            +
                  "\xf0\x9f\x92\xb3"=>"[\xe3\x82\xab\xe3\x83\xbc\xe3\x83\x89]", "\xf0\x9f\x92\xb4"=>"\xee\x9b\x96", "\xf0\x9f\x92\xb5"=>"\xee\x9c\x95", "\xf0\x9f\x92\xb8"=>"[\xe9\xa3\x9b\xe3\x82\x93\xe3\x81\xa7\xe3\x81\x84\xe3\x81\x8f\xe3\x81\x8a\xe9\x87\x91]", "\xf0\x9f\x87\xa8\xf0\x9f\x87\xb3"=>"[\xe4\xb8\xad\xe5\x9b\xbd]",
         
     | 
| 
      
 855 
     | 
    
         
            +
                  "\xf0\x9f\x87\xa9\xf0\x9f\x87\xaa"=>"[\xe3\x83\x89\xe3\x82\xa4\xe3\x83\x84]", "\xf0\x9f\x87\xaa\xf0\x9f\x87\xb8"=>"[\xe3\x82\xb9\xe3\x83\x9a\xe3\x82\xa4\xe3\x83\xb3]", "\xf0\x9f\x87\xab\xf0\x9f\x87\xb7"=>"[\xe3\x83\x95\xe3\x83\xa9\xe3\x83\xb3\xe3\x82\xb9]", "\xf0\x9f\x87\xac\xf0\x9f\x87\xa7"=>"[\xe3\x82\xa4\xe3\x82\xae\xe3\x83\xaa\xe3\x82\xb9]", "\xf0\x9f\x87\xae\xf0\x9f\x87\xb9"=>"[\xe3\x82\xa4\xe3\x82\xbf\xe3\x83\xaa\xe3\x82\xa2]",
         
     | 
| 
      
 856 
     | 
    
         
            +
                  "\xf0\x9f\x87\xaf\xf0\x9f\x87\xb5"=>"[\xe6\x97\xa5\xe3\x81\xae\xe4\xb8\xb8]", "\xf0\x9f\x87\xb0\xf0\x9f\x87\xb7"=>"[\xe9\x9f\x93\xe5\x9b\xbd]", "\xf0\x9f\x87\xb7\xf0\x9f\x87\xba"=>"[\xe3\x83\xad\xe3\x82\xb7\xe3\x82\xa2]", "\xf0\x9f\x87\xba\xf0\x9f\x87\xb8"=>"[USA]", "\xf0\x9f\x94\xa5"=>"[\xe7\x82\x8e]",
         
     | 
| 
      
 857 
     | 
    
         
            +
                  "\xf0\x9f\x94\xa6"=>"\xee\x9b\xbb", "\xf0\x9f\x94\xa7"=>"\xee\x9c\x98", "\xf0\x9f\x94\xa8"=>"[\xe3\x83\x8f\xe3\x83\xb3\xe3\x83\x9e\xe3\x83\xbc]", "\xf0\x9f\x94\xa9"=>"[\xe3\x83\x8d\xe3\x82\xb8]", "\xf0\x9f\x94\xaa"=>"[\xe5\x8c\x85\xe4\xb8\x81]",
         
     | 
| 
      
 858 
     | 
    
         
            +
                  "\xf0\x9f\x94\xab"=>"[\xe3\x83\x94\xe3\x82\xb9\xe3\x83\x88\xe3\x83\xab]", "\xf0\x9f\x94\xae"=>"[\xe5\x8d\xa0\xe3\x81\x84]", "\xf0\x9f\x94\xaf"=>"[\xe5\x8d\xa0\xe3\x81\x84]", "\xf0\x9f\x94\xb0"=>"[\xe8\x8b\xa5\xe8\x91\x89\xe3\x83\x9e\xe3\x83\xbc\xe3\x82\xaf]", "\xf0\x9f\x94\xb1"=>"\xee\x9c\x9a",
         
     | 
| 
      
 859 
     | 
    
         
            +
                  "\xf0\x9f\x92\x89"=>"[\xe6\xb3\xa8\xe5\xb0\x84]", "\xf0\x9f\x92\x8a"=>"[\xe8\x96\xac]", "\xf0\x9f\x85\xb0"=>"[A]", "\xf0\x9f\x85\xb1"=>"[B]", "\xf0\x9f\x86\x8e"=>"[AB]",
         
     | 
| 
      
 860 
     | 
    
         
            +
                  "\xf0\x9f\x85\xbe"=>"[O]", "\xf0\x9f\x8e\x80"=>"\xee\x9a\x84", "\xf0\x9f\x8e\x81"=>"\xee\x9a\x85", "\xf0\x9f\x8e\x82"=>"\xee\x9a\x86", "\xf0\x9f\x8e\x84"=>"\xee\x9a\xa4",
         
     | 
| 
      
 861 
     | 
    
         
            +
                  "\xf0\x9f\x8e\x85"=>"[\xe3\x82\xb5\xe3\x83\xb3\xe3\x82\xbf]", "\xf0\x9f\x8e\x8c"=>"[\xe7\xa5\x9d\xe6\x97\xa5]", "\xf0\x9f\x8e\x86"=>"[\xe8\x8a\xb1\xe7\x81\xab]", "\xf0\x9f\x8e\x88"=>"[\xe9\xa2\xa8\xe8\x88\xb9]", "\xf0\x9f\x8e\x89"=>"[\xe3\x82\xaf\xe3\x83\xa9\xe3\x83\x83\xe3\x82\xab\xe3\x83\xbc]",
         
     | 
| 
      
 862 
     | 
    
         
            +
                  "\xf0\x9f\x8e\x8d"=>"[\xe9\x96\x80\xe6\x9d\xbe]", "\xf0\x9f\x8e\x8e"=>"[\xe3\x81\xb2\xe3\x81\xaa\xe7\xa5\xad\xe3\x82\x8a]", "\xf0\x9f\x8e\x93"=>"[\xe5\x8d\x92\xe6\xa5\xad\xe5\xbc\x8f]", "\xf0\x9f\x8e\x92"=>"[\xe3\x83\xa9\xe3\x83\xb3\xe3\x83\x89\xe3\x82\xbb\xe3\x83\xab]", "\xf0\x9f\x8e\x8f"=>"[\xe3\x81\x93\xe3\x81\x84\xe3\x81\xae\xe3\x81\xbc\xe3\x82\x8a]",
         
     | 
| 
      
 863 
     | 
    
         
            +
                  "\xf0\x9f\x8e\x87"=>"[\xe7\xb7\x9a\xe9\xa6\x99\xe8\x8a\xb1\xe7\x81\xab]", "\xf0\x9f\x8e\x90"=>"[\xe9\xa2\xa8\xe9\x88\xb4]", "\xf0\x9f\x8e\x83"=>"[\xe3\x83\x8f\xe3\x83\xad\xe3\x82\xa6\xe3\x82\xa3\xe3\x83\xb3]", "\xf0\x9f\x8e\x8a"=>"[\xe3\x82\xaa\xe3\x83\xa1\xe3\x83\x87\xe3\x83\x88\xe3\x82\xa6]", "\xf0\x9f\x8e\x8b"=>"[\xe4\xb8\x83\xe5\xa4\x95]",
         
     | 
| 
      
 864 
     | 
    
         
            +
                  "\xf0\x9f\x8e\x91"=>"[\xe3\x81\x8a\xe6\x9c\x88\xe8\xa6\x8b]", "\xf0\x9f\x93\x9f"=>"\xee\x99\x9a", "\xe2\x98\x8e"=>"\xee\x9a\x87", "\xf0\x9f\x93\x9e"=>"\xee\x9a\x87", "\xf0\x9f\x93\xb1"=>"\xee\x9a\x88",
         
     | 
| 
      
 865 
     | 
    
         
            +
                  "\xf0\x9f\x93\xb2"=>"\xee\x9b\x8e", "\xf0\x9f\x93\x9d"=>"\xee\x9a\x89", "\xf0\x9f\x93\xa0"=>"\xee\x9b\x90", "\xe2\x9c\x89"=>"\xee\x9b\x93", "\xf0\x9f\x93\xa8"=>"\xee\x9b\x8f",
         
     | 
| 
      
 866 
     | 
    
         
            +
                  "\xf0\x9f\x93\xa9"=>"\xee\x9b\x8f", "\xf0\x9f\x93\xaa"=>"\xee\x99\xa5", "\xf0\x9f\x93\xab"=>"\xee\x99\xa5", "\xf0\x9f\x93\xae"=>"\xee\x99\xa5", "\xf0\x9f\x93\xb0"=>"[\xe6\x96\xb0\xe8\x81\x9e]",
         
     | 
| 
      
 867 
     | 
    
         
            +
                  "\xf0\x9f\x93\xa2"=>"[\xe3\x82\xb9\xe3\x83\x94\xe3\x83\xbc\xe3\x82\xab]", "\xf0\x9f\x93\xa3"=>"[\xe3\x83\xa1\xe3\x82\xac\xe3\x83\x9b\xe3\x83\xb3]", "\xf0\x9f\x93\xa1"=>"[\xe3\x82\xa2\xe3\x83\xb3\xe3\x83\x86\xe3\x83\x8a]", "\xf0\x9f\x93\xa4"=>"[\xe9\x80\x81\xe4\xbf\xa1BOX]", "\xf0\x9f\x93\xa5"=>"[\xe5\x8f\x97\xe4\xbf\xa1BOX]",
         
     | 
| 
      
 868 
     | 
    
         
            +
                  "\xf0\x9f\x93\xa6"=>"\xee\x9a\x85", "\xf0\x9f\x93\xa7"=>"\xee\x9b\x93", "\xf0\x9f\x94\xa0"=>"[ABCD]", "\xf0\x9f\x94\xa1"=>"[abcd]", "\xf0\x9f\x94\xa2"=>"[1234]",
         
     | 
| 
      
 869 
     | 
    
         
            +
                  "\xf0\x9f\x94\xa3"=>"[\xe8\xa8\x98\xe5\x8f\xb7]", "\xf0\x9f\x94\xa4"=>"[ABC]", "\xe2\x9c\x92"=>"\xee\x9a\xae", "\xf0\x9f\x92\xba"=>"\xee\x9a\xb2", "\xf0\x9f\x92\xbb"=>"\xee\x9c\x96",
         
     | 
| 
      
 870 
     | 
    
         
            +
                  "\xe2\x9c\x8f"=>"\xee\x9c\x99", "\xf0\x9f\x93\x8e"=>"\xee\x9c\xb0", "\xf0\x9f\x92\xbc"=>"\xee\x9a\x82", "\xf0\x9f\x92\xbd"=>"[MD]", "\xf0\x9f\x92\xbe"=>"[\xe3\x83\x95\xe3\x83\xad\xe3\x83\x83\xe3\x83\x94\xe3\x83\xbc]",
         
     | 
| 
      
 871 
     | 
    
         
            +
                  "\xf0\x9f\x92\xbf"=>"\xee\x9a\x8c", "\xf0\x9f\x93\x80"=>"\xee\x9a\x8c", "\xe2\x9c\x82"=>"\xee\x99\xb5", "\xf0\x9f\x93\x8d"=>"[\xe7\x94\xbb\xe3\x81\xb3\xe3\x82\x87\xe3\x81\x86]", "\xf0\x9f\x93\x83"=>"\xee\x9a\x89",
         
     | 
| 
      
 872 
     | 
    
         
            +
                  "\xf0\x9f\x93\x84"=>"\xee\x9a\x89", "\xf0\x9f\x93\x85"=>"[\xe3\x82\xab\xe3\x83\xac\xe3\x83\xb3\xe3\x83\x80\xe3\x83\xbc]", "\xf0\x9f\x93\x81"=>"[\xe3\x83\x95\xe3\x82\xa9\xe3\x83\xab\xe3\x83\x80]", "\xf0\x9f\x93\x82"=>"[\xe3\x83\x95\xe3\x82\xa9\xe3\x83\xab\xe3\x83\x80]", "\xf0\x9f\x93\x93"=>"\xee\x9a\x83",
         
     | 
| 
      
 873 
     | 
    
         
            +
                  "\xf0\x9f\x93\x96"=>"\xee\x9a\x83", "\xf0\x9f\x93\x94"=>"\xee\x9a\x83", "\xf0\x9f\x93\x95"=>"\xee\x9a\x83", "\xf0\x9f\x93\x97"=>"\xee\x9a\x83", "\xf0\x9f\x93\x98"=>"\xee\x9a\x83",
         
     | 
| 
      
 874 
     | 
    
         
            +
                  "\xf0\x9f\x93\x99"=>"\xee\x9a\x83", "\xf0\x9f\x93\x9a"=>"\xee\x9a\x83", "\xf0\x9f\x93\x9b"=>"[\xe5\x90\x8d\xe6\x9c\xad]", "\xf0\x9f\x93\x9c"=>"\xee\x9c\x8a", "\xf0\x9f\x93\x8b"=>"\xee\x9a\x89",
         
     | 
| 
      
 875 
     | 
    
         
            +
                  "\xf0\x9f\x93\x86"=>"[\xe3\x82\xab\xe3\x83\xac\xe3\x83\xb3\xe3\x83\x80\xe3\x83\xbc]", "\xf0\x9f\x93\x8a"=>"[\xe3\x82\xb0\xe3\x83\xa9\xe3\x83\x95]", "\xf0\x9f\x93\x88"=>"[\xe3\x82\xb0\xe3\x83\xa9\xe3\x83\x95]", "\xf0\x9f\x93\x89"=>"[\xe3\x82\xb0\xe3\x83\xa9\xe3\x83\x95]", "\xf0\x9f\x93\x87"=>"\xee\x9a\x83",
         
     | 
| 
      
 876 
     | 
    
         
            +
                  "\xf0\x9f\x93\x8c"=>"[\xe7\x94\xbb\xe3\x81\xb3\xe3\x82\x87\xe3\x81\x86]", "\xf0\x9f\x93\x92"=>"\xee\x9a\x83", "\xf0\x9f\x93\x8f"=>"[\xe5\xae\x9a\xe8\xa6\x8f]", "\xf0\x9f\x93\x90"=>"[\xe4\xb8\x89\xe8\xa7\x92\xe5\xae\x9a\xe8\xa6\x8f]", "\xf0\x9f\x93\x91"=>"\xee\x9a\x89",
         
     | 
| 
      
 877 
     | 
    
         
            +
                  "\xf0\x9f\x8e\xbd"=>"\xee\x99\x92", "\xe2\x9a\xbe"=>"\xee\x99\x93", "\xe2\x9b\xb3"=>"\xee\x99\x94", "\xf0\x9f\x8e\xbe"=>"\xee\x99\x95", "\xe2\x9a\xbd"=>"\xee\x99\x96",
         
     | 
| 
      
 878 
     | 
    
         
            +
                  "\xf0\x9f\x8e\xbf"=>"\xee\x99\x97", "\xf0\x9f\x8f\x80"=>"\xee\x99\x98", "\xf0\x9f\x8f\x81"=>"\xee\x99\x99", "\xf0\x9f\x8f\x82"=>"\xee\x9c\x92", "\xf0\x9f\x8f\x83"=>"\xee\x9c\xb3",
         
     | 
| 
      
 879 
     | 
    
         
            +
                  "\xf0\x9f\x8f\x84"=>"\xee\x9c\x92", "\xf0\x9f\x8f\x86"=>"[\xe3\x83\x88\xe3\x83\xad\xe3\x83\x95\xe3\x82\xa3\xe3\x83\xbc]", "\xf0\x9f\x8f\x88"=>"[\xe3\x83\x95\xe3\x83\x83\xe3\x83\x88\xe3\x83\x9c\xe3\x83\xbc\xe3\x83\xab]", "\xf0\x9f\x8f\x8a"=>"[\xe6\xb0\xb4\xe6\xb3\xb3]", "\xf0\x9f\x9a\x83"=>"\xee\x99\x9b",
         
     | 
| 
      
 880 
     | 
    
         
            +
                  "\xf0\x9f\x9a\x87"=>"\xee\x99\x9c", "\xe2\x93\x82"=>"\xee\x99\x9c", "\xf0\x9f\x9a\x84"=>"\xee\x99\x9d", "\xf0\x9f\x9a\x85"=>"\xee\x99\x9d", "\xf0\x9f\x9a\x97"=>"\xee\x99\x9e",
         
     | 
| 
      
 881 
     | 
    
         
            +
                  "\xf0\x9f\x9a\x99"=>"\xee\x99\x9f", "\xf0\x9f\x9a\x8c"=>"\xee\x99\xa0", "\xf0\x9f\x9a\x8f"=>"[\xe3\x83\x90\xe3\x82\xb9\xe5\x81\x9c]", "\xf0\x9f\x9a\xa2"=>"\xee\x99\xa1", "\xe2\x9c\x88"=>"\xee\x99\xa2",
         
     | 
| 
      
 882 
     | 
    
         
            +
                  "\xe2\x9b\xb5"=>"\xee\x9a\xa3", "\xf0\x9f\x9a\x89"=>"[\xe9\xa7\x85]", "\xf0\x9f\x9a\x80"=>"[\xe3\x83\xad\xe3\x82\xb1\xe3\x83\x83\xe3\x83\x88]", "\xf0\x9f\x9a\xa4"=>"\xee\x9a\xa3", "\xf0\x9f\x9a\x95"=>"\xee\x99\x9e",
         
     | 
| 
      
 883 
     | 
    
         
            +
                  "\xf0\x9f\x9a\x9a"=>"[\xe3\x83\x88\xe3\x83\xa9\xe3\x83\x83\xe3\x82\xaf]", "\xf0\x9f\x9a\x92"=>"[\xe6\xb6\x88\xe9\x98\xb2\xe8\xbb\x8a]", "\xf0\x9f\x9a\x91"=>"[\xe6\x95\x91\xe6\x80\xa5\xe8\xbb\x8a]", "\xf0\x9f\x9a\x93"=>"[\xe3\x83\x91\xe3\x83\x88\xe3\x82\xab\xe3\x83\xbc]", "\xe2\x9b\xbd"=>"\xee\x99\xab",
         
     | 
| 
      
 884 
     | 
    
         
            +
                  "\xf0\x9f\x85\xbf"=>"\xee\x99\xac", "\xf0\x9f\x9a\xa5"=>"\xee\x99\xad", "\xf0\x9f\x9a\xa7"=>"[\xe5\xb7\xa5\xe4\xba\x8b\xe4\xb8\xad]", "\xf0\x9f\x9a\xa8"=>"[\xe3\x83\x91\xe3\x83\x88\xe3\x82\xab\xe3\x83\xbc]", "\xe2\x99\xa8"=>"\xee\x9b\xb7",
         
     | 
| 
      
 885 
     | 
    
         
            +
                  "\xe2\x9b\xba"=>"[\xe3\x82\xad\xe3\x83\xa3\xe3\x83\xb3\xe3\x83\x97]", "\xf0\x9f\x8e\xa0"=>"\xee\x99\xb9", "\xf0\x9f\x8e\xa1"=>"[\xe8\xa6\xb3\xe8\xa6\xa7\xe8\xbb\x8a]", "\xf0\x9f\x8e\xa2"=>"[\xe3\x82\xb8\xe3\x82\xa7\xe3\x83\x83\xe3\x83\x88\xe3\x82\xb3\xe3\x83\xbc\xe3\x82\xb9\xe3\x82\xbf\xe3\x83\xbc]", "\xf0\x9f\x8e\xa3"=>"\xee\x9d\x91",
         
     | 
| 
      
 886 
     | 
    
         
            +
                  "\xf0\x9f\x8e\xa4"=>"\xee\x99\xb6", "\xf0\x9f\x8e\xa5"=>"\xee\x99\xb7", "\xf0\x9f\x8e\xa6"=>"\xee\x99\xb7", "\xf0\x9f\x8e\xa7"=>"\xee\x99\xba", "\xf0\x9f\x8e\xa8"=>"\xee\x99\xbb",
         
     | 
| 
      
 887 
     | 
    
         
            +
                  "\xf0\x9f\x8e\xa9"=>"\xee\x99\xbc", "\xf0\x9f\x8e\xaa"=>"\xee\x99\xbd", "\xf0\x9f\x8e\xab"=>"\xee\x99\xbe", "\xf0\x9f\x8e\xac"=>"\xee\x9a\xac", "\xf0\x9f\x8e\xad"=>"[\xe6\xbc\x94\xe5\x8a\x87]",
         
     | 
| 
      
 888 
     | 
    
         
            +
                  "\xf0\x9f\x8e\xae"=>"\xee\x9a\x8b", "\xf0\x9f\x80\x84"=>"[\xe9\xba\xbb\xe9\x9b\x80]", "\xf0\x9f\x8e\xaf"=>"[\xe7\x9a\x84\xe4\xb8\xad]", "\xf0\x9f\x8e\xb0"=>"[777]", "\xf0\x9f\x8e\xb1"=>"[\xe3\x83\x93\xe3\x83\xaa\xe3\x83\xa4\xe3\x83\xbc\xe3\x83\x89]",
         
     | 
| 
      
 889 
     | 
    
         
            +
                  "\xf0\x9f\x8e\xb2"=>"[\xe3\x82\xb5\xe3\x82\xa4\xe3\x82\xb3\xe3\x83\xad]", "\xf0\x9f\x8e\xb3"=>"[\xe3\x83\x9c\xe3\x83\xbc\xe3\x83\xaa\xe3\x83\xb3\xe3\x82\xb0]", "\xf0\x9f\x8e\xb4"=>"[\xe8\x8a\xb1\xe6\x9c\xad]", "\xf0\x9f\x83\x8f"=>"[\xe3\x82\xb8\xe3\x83\xa7\xe3\x83\xbc\xe3\x82\xab\xe3\x83\xbc]", "\xf0\x9f\x8e\xb5"=>"\xee\x9b\xb6",
         
     | 
| 
      
 890 
     | 
    
         
            +
                  "\xf0\x9f\x8e\xb6"=>"\xee\x9b\xbf", "\xf0\x9f\x8e\xb7"=>"[\xe3\x82\xb5\xe3\x83\x83\xe3\x82\xaf\xe3\x82\xb9]", "\xf0\x9f\x8e\xb8"=>"[\xe3\x82\xae\xe3\x82\xbf\xe3\x83\xbc]", "\xf0\x9f\x8e\xb9"=>"[\xe3\x83\x94\xe3\x82\xa2\xe3\x83\x8e]", "\xf0\x9f\x8e\xba"=>"[\xe3\x83\x88\xe3\x83\xa9\xe3\x83\xb3\xe3\x83\x9a\xe3\x83\x83\xe3\x83\x88]",
         
     | 
| 
      
 891 
     | 
    
         
            +
                  "\xf0\x9f\x8e\xbb"=>"[\xe3\x83\x90\xe3\x82\xa4\xe3\x82\xaa\xe3\x83\xaa\xe3\x83\xb3]", "\xf0\x9f\x8e\xbc"=>"\xee\x9b\xbf", "\xe3\x80\xbd"=>"[\xe6\xad\x8c\xe8\xa8\x98\xe5\x8f\xb7]", "\xf0\x9f\x93\xb7"=>"\xee\x9a\x81", "\xf0\x9f\x93\xb9"=>"\xee\x99\xb7",
         
     | 
| 
      
 892 
     | 
    
         
            +
                  "\xf0\x9f\x93\xba"=>"\xee\x9a\x8a", "\xf0\x9f\x93\xbb"=>"[\xe3\x83\xa9\xe3\x82\xb8\xe3\x82\xaa]", "\xf0\x9f\x93\xbc"=>"[\xe3\x83\x93\xe3\x83\x87\xe3\x82\xaa]", "\xf0\x9f\x92\x8b"=>"\xee\x9b\xb9", "\xf0\x9f\x92\x8c"=>"\xee\x9c\x97",
         
     | 
| 
      
 893 
     | 
    
         
            +
                  "\xf0\x9f\x92\x8d"=>"\xee\x9c\x9b", "\xf0\x9f\x92\x8e"=>"\xee\x9c\x9b", "\xf0\x9f\x92\x8f"=>"\xee\x9b\xb9", "\xf0\x9f\x92\x90"=>"[\xe8\x8a\xb1\xe6\x9d\x9f]", "\xf0\x9f\x92\x91"=>"\xee\x9b\xad",
         
     | 
| 
      
 894 
     | 
    
         
            +
                  "\xf0\x9f\x92\x92"=>"[\xe7\xb5\x90\xe5\xa9\x9a\xe5\xbc\x8f]", "\xf0\x9f\x94\x9e"=>"[18\xe7\xa6\x81]", "\xc2\xa9"=>"\xee\x9c\xb1", "\xc2\xae"=>"\xee\x9c\xb6", "\xe2\x84\xa2"=>"\xee\x9c\xb2",
         
     | 
| 
      
 895 
     | 
    
         
            +
                  "\xe2\x84\xb9"=>"[\xef\xbd\x89]", "#\xe2\x83\xa3"=>"\xee\x9b\xa0", "1\xe2\x83\xa3"=>"\xee\x9b\xa2", "2\xe2\x83\xa3"=>"\xee\x9b\xa3", "3\xe2\x83\xa3"=>"\xee\x9b\xa4",
         
     | 
| 
      
 896 
     | 
    
         
            +
                  "4\xe2\x83\xa3"=>"\xee\x9b\xa5", "5\xe2\x83\xa3"=>"\xee\x9b\xa6", "6\xe2\x83\xa3"=>"\xee\x9b\xa7", "7\xe2\x83\xa3"=>"\xee\x9b\xa8", "8\xe2\x83\xa3"=>"\xee\x9b\xa9",
         
     | 
| 
      
 897 
     | 
    
         
            +
                  "9\xe2\x83\xa3"=>"\xee\x9b\xaa", "0\xe2\x83\xa3"=>"\xee\x9b\xab", "\xf0\x9f\x94\x9f"=>"[10]", "\xf0\x9f\x93\xb6"=>"[\xe3\x83\x90\xe3\x83\xaa3]", "\xf0\x9f\x93\xb3"=>"[\xe3\x83\x9e\xe3\x83\x8a\xe3\x83\xbc\xe3\x83\xa2\xe3\x83\xbc\xe3\x83\x89]",
         
     | 
| 
      
 898 
     | 
    
         
            +
                  "\xf0\x9f\x93\xb4"=>"[\xe3\x82\xb1\xe3\x83\xbc\xe3\x82\xbf\xe3\x82\xa4OFF]", "\xf0\x9f\x8d\x94"=>"\xee\x99\xb3", "\xf0\x9f\x8d\x99"=>"\xee\x9d\x89", "\xf0\x9f\x8d\xb0"=>"\xee\x9d\x8a", "\xf0\x9f\x8d\x9c"=>"\xee\x9d\x8c",
         
     | 
| 
      
 899 
     | 
    
         
            +
                  "\xf0\x9f\x8d\x9e"=>"\xee\x9d\x8d", "\xf0\x9f\x8d\xb3"=>"[\xe3\x83\x95\xe3\x83\xa9\xe3\x82\xa4\xe3\x83\x91\xe3\x83\xb3]", "\xf0\x9f\x8d\xa6"=>"[\xe3\x82\xbd\xe3\x83\x95\xe3\x83\x88\xe3\x82\xaf\xe3\x83\xaa\xe3\x83\xbc\xe3\x83\xa0]", "\xf0\x9f\x8d\x9f"=>"[\xe3\x83\x9d\xe3\x83\x86\xe3\x83\x88]", "\xf0\x9f\x8d\xa1"=>"[\xe3\x81\xa0\xe3\x82\x93\xe3\x81\x94]",
         
     | 
| 
      
 900 
     | 
    
         
            +
                  "\xf0\x9f\x8d\x98"=>"[\xe3\x81\x9b\xe3\x82\x93\xe3\x81\xb9\xe3\x81\x84]", "\xf0\x9f\x8d\x9a"=>"\xee\x9d\x8c", "\xf0\x9f\x8d\x9d"=>"[\xe3\x83\x91\xe3\x82\xb9\xe3\x82\xbf]", "\xf0\x9f\x8d\x9b"=>"[\xe3\x82\xab\xe3\x83\xac\xe3\x83\xbc]", "\xf0\x9f\x8d\xa2"=>"[\xe3\x81\x8a\xe3\x81\xa7\xe3\x82\x93]",
         
     | 
| 
      
 901 
     | 
    
         
            +
                  "\xf0\x9f\x8d\xa3"=>"[\xe3\x81\x99\xe3\x81\x97]", "\xf0\x9f\x8d\xb1"=>"[\xe5\xbc\x81\xe5\xbd\x93]", "\xf0\x9f\x8d\xb2"=>"[\xe9\x8d\x8b]", "\xf0\x9f\x8d\xa7"=>"[\xe3\x82\xab\xe3\x82\xad\xe6\xb0\xb7]", "\xf0\x9f\x8d\x96"=>"[\xe8\x82\x89]",
         
     | 
| 
      
 902 
     | 
    
         
            +
                  "\xf0\x9f\x8d\xa5"=>"\xee\x99\x83", "\xf0\x9f\x8d\xa0"=>"[\xe3\x82\x84\xe3\x81\x8d\xe3\x81\x84\xe3\x82\x82]", "\xf0\x9f\x8d\x95"=>"[\xe3\x83\x94\xe3\x82\xb6]", "\xf0\x9f\x8d\x97"=>"[\xe3\x83\x81\xe3\x82\xad\xe3\x83\xb3]", "\xf0\x9f\x8d\xa8"=>"[\xe3\x82\xa2\xe3\x82\xa4\xe3\x82\xb9\xe3\x82\xaf\xe3\x83\xaa\xe3\x83\xbc\xe3\x83\xa0]",
         
     | 
| 
      
 903 
     | 
    
         
            +
                  "\xf0\x9f\x8d\xa9"=>"[\xe3\x83\x89\xe3\x83\xbc\xe3\x83\x8a\xe3\x83\x84]", "\xf0\x9f\x8d\xaa"=>"[\xe3\x82\xaf\xe3\x83\x83\xe3\x82\xad\xe3\x83\xbc]", "\xf0\x9f\x8d\xab"=>"[\xe3\x83\x81\xe3\x83\xa7\xe3\x82\xb3]", "\xf0\x9f\x8d\xac"=>"[\xe3\x82\xad\xe3\x83\xa3\xe3\x83\xb3\xe3\x83\x87\xe3\x82\xa3]", "\xf0\x9f\x8d\xad"=>"[\xe3\x82\xad\xe3\x83\xa3\xe3\x83\xb3\xe3\x83\x87\xe3\x82\xa3]",
         
     | 
| 
      
 904 
     | 
    
         
            +
                  "\xf0\x9f\x8d\xae"=>"[\xe3\x83\x97\xe3\x83\xaa\xe3\x83\xb3]", "\xf0\x9f\x8d\xaf"=>"[\xe3\x83\x8f\xe3\x83\x81\xe3\x83\x9f\xe3\x83\x84]", "\xf0\x9f\x8d\xa4"=>"[\xe3\x82\xa8\xe3\x83\x93\xe3\x83\x95\xe3\x83\xa9\xe3\x82\xa4]", "\xf0\x9f\x8d\xb4"=>"\xee\x99\xaf", "\xe2\x98\x95"=>"\xee\x99\xb0",
         
     | 
| 
      
 905 
     | 
    
         
            +
                  "\xf0\x9f\x8d\xb8"=>"\xee\x99\xb1", "\xf0\x9f\x8d\xba"=>"\xee\x99\xb2", "\xf0\x9f\x8d\xb5"=>"\xee\x9c\x9e", "\xf0\x9f\x8d\xb6"=>"\xee\x9d\x8b", "\xf0\x9f\x8d\xb7"=>"\xee\x9d\x96",
         
     | 
| 
      
 906 
     | 
    
         
            +
                  "\xf0\x9f\x8d\xbb"=>"\xee\x99\xb2", "\xf0\x9f\x8d\xb9"=>"\xee\x99\xb1", "\xe2\x86\x97"=>"\xee\x99\xb8", "\xe2\x86\x98"=>"\xee\x9a\x96", "\xe2\x86\x96"=>"\xee\x9a\x97",
         
     | 
| 
      
 907 
     | 
    
         
            +
                  "\xe2\x86\x99"=>"\xee\x9a\xa5", "\xe2\xa4\xb4"=>"\xee\x9b\xb5", "\xe2\xa4\xb5"=>"\xee\x9c\x80", "\xe2\x86\x94"=>"\xee\x9c\xbc", "\xe2\x86\x95"=>"\xee\x9c\xbd",
         
     | 
| 
      
 908 
     | 
    
         
            +
                  "\xe2\xac\x86"=>"[\xe2\x86\x91]", "\xe2\xac\x87"=>"[\xe2\x86\x93]", "\xe2\x9e\xa1"=>"[\xe2\x86\x92]", "\xe2\xac\x85"=>"[\xe2\x86\x90]", "\xe2\x96\xb6"=>"[>]",
         
     | 
| 
      
 909 
     | 
    
         
            +
                  "\xe2\x97\x80"=>"[<]", "\xe2\x8f\xa9"=>"[>>]", "\xe2\x8f\xaa"=>"[<<]", "\xe2\x8f\xab"=>"\xe2\x96\xb2", "\xe2\x8f\xac"=>"\xe2\x96\xbc",
         
     | 
| 
      
 910 
     | 
    
         
            +
                  "\xf0\x9f\x94\xba"=>"\xe2\x96\xb2", "\xf0\x9f\x94\xbb"=>"\xe2\x96\xbc", "\xf0\x9f\x94\xbc"=>"\xe2\x96\xb2", "\xf0\x9f\x94\xbd"=>"\xe2\x96\xbc", "\xe2\xad\x95"=>"\xee\x9a\xa0",
         
     | 
| 
      
 911 
     | 
    
         
            +
                  "\xe2\x9d\x8c"=>"[\xc3\x97]", "\xe2\x9d\x8e"=>"[\xc3\x97]", "\xe2\x9d\x97"=>"\xee\x9c\x82", "\xe2\x81\x89"=>"\xee\x9c\x83", "\xe2\x80\xbc"=>"\xee\x9c\x84",
         
     | 
| 
      
 912 
     | 
    
         
            +
                  "\xe2\x9d\x93"=>"[\xef\xbc\x9f]", "\xe2\x9d\x94"=>"[\xef\xbc\x9f]", "\xe2\x9d\x95"=>"\xee\x9c\x82", "\xe3\x80\xb0"=>"\xee\x9c\x89", "\xe2\x9e\xb0"=>"\xee\x9c\x8a",
         
     | 
| 
      
 913 
     | 
    
         
            +
                  "\xe2\x9e\xbf"=>"\xee\x9b\x9f", "\xe2\x9d\xa4"=>"\xee\x9b\xac", "\xf0\x9f\x92\x93"=>"\xee\x9b\xad", "\xf0\x9f\x92\x94"=>"\xee\x9b\xae", "\xf0\x9f\x92\x95"=>"\xee\x9b\xaf",
         
     | 
| 
      
 914 
     | 
    
         
            +
                  "\xf0\x9f\x92\x96"=>"\xee\x9b\xac", "\xf0\x9f\x92\x97"=>"\xee\x9b\xad", "\xf0\x9f\x92\x98"=>"\xee\x9b\xac", "\xf0\x9f\x92\x99"=>"\xee\x9b\xac", "\xf0\x9f\x92\x9a"=>"\xee\x9b\xac",
         
     | 
| 
      
 915 
     | 
    
         
            +
                  "\xf0\x9f\x92\x9b"=>"\xee\x9b\xac", "\xf0\x9f\x92\x9c"=>"\xee\x9b\xac", "\xf0\x9f\x92\x9d"=>"\xee\x9b\xac", "\xf0\x9f\x92\x9e"=>"\xee\x9b\xad", "\xf0\x9f\x92\x9f"=>"\xee\x9b\xb8",
         
     | 
| 
      
 916 
     | 
    
         
            +
                  "\xe2\x99\xa5"=>"\xee\x9a\x8d", "\xe2\x99\xa0"=>"\xee\x9a\x8e", "\xe2\x99\xa6"=>"\xee\x9a\x8f", "\xe2\x99\xa3"=>"\xee\x9a\x90", "\xf0\x9f\x9a\xac"=>"\xee\x99\xbf",
         
     | 
| 
      
 917 
     | 
    
         
            +
                  "\xf0\x9f\x9a\xad"=>"\xee\x9a\x80", "\xe2\x99\xbf"=>"\xee\x9a\x9b", "\xf0\x9f\x9a\xa9"=>"\xee\x9b\x9e", "\xe2\x9a\xa0"=>"\xee\x9c\xb7", "\xe2\x9b\x94"=>"\xee\x9c\xaf",
         
     | 
| 
      
 918 
     | 
    
         
            +
                  "\xe2\x99\xbb"=>"\xee\x9c\xb5", "\xf0\x9f\x9a\xb2"=>"\xee\x9c\x9d", "\xf0\x9f\x9a\xb6"=>"\xee\x9c\xb3", "\xf0\x9f\x9a\xb9"=>"[\xe2\x99\x82]", "\xf0\x9f\x9a\xba"=>"[\xe2\x99\x80]",
         
     | 
| 
      
 919 
     | 
    
         
            +
                  "\xf0\x9f\x9b\x80"=>"\xee\x9b\xb7", "\xf0\x9f\x9a\xbb"=>"\xee\x99\xae", "\xf0\x9f\x9a\xbd"=>"\xee\x99\xae", "\xf0\x9f\x9a\xbe"=>"\xee\x99\xae", "\xf0\x9f\x9a\xbc"=>"[\xe8\xb5\xa4\xe3\x81\xa1\xe3\x82\x83\xe3\x82\x93]",
         
     | 
| 
      
 920 
     | 
    
         
            +
                  "\xf0\x9f\x9a\xaa"=>"\xee\x9c\x94", "\xf0\x9f\x9a\xab"=>"\xee\x9c\xb8", "\xe2\x9c\x94"=>"[\xe3\x83\x81\xe3\x82\xa7\xe3\x83\x83\xe3\x82\xaf\xe3\x83\x9e\xe3\x83\xbc\xe3\x82\xaf]", "\xf0\x9f\x86\x91"=>"\xee\x9b\x9b", "\xf0\x9f\x86\x92"=>"[COOL]",
         
     | 
| 
      
 921 
     | 
    
         
            +
                  "\xf0\x9f\x86\x93"=>"\xee\x9b\x97", "\xf0\x9f\x86\x94"=>"\xee\x9b\x98", "\xf0\x9f\x86\x95"=>"\xee\x9b\x9d", "\xf0\x9f\x86\x96"=>"\xee\x9c\xaf", "\xf0\x9f\x86\x97"=>"\xee\x9c\x8b",
         
     | 
| 
      
 922 
     | 
    
         
            +
                  "\xf0\x9f\x86\x98"=>"[SOS]", "\xf0\x9f\x86\x99"=>"[UP!]", "\xf0\x9f\x86\x9a"=>"[VS]", "\xf0\x9f\x88\x81"=>"[\xe3\x82\xb3\xe3\x82\xb3]", "\xf0\x9f\x88\x82"=>"[\xe3\x82\xb5\xe3\x83\xbc\xe3\x83\x93\xe3\x82\xb9]",
         
     | 
| 
      
 923 
     | 
    
         
            +
                  "\xf0\x9f\x88\xb2"=>"\xee\x9c\xb8", "\xf0\x9f\x88\xb3"=>"\xee\x9c\xb9", "\xf0\x9f\x88\xb4"=>"\xee\x9c\xba", "\xf0\x9f\x88\xb5"=>"\xee\x9c\xbb", "\xf0\x9f\x88\xb6"=>"[\xe6\x9c\x89]",
         
     | 
| 
      
 924 
     | 
    
         
            +
                  "\xf0\x9f\x88\x9a"=>"[\xe7\x84\xa1]", "\xf0\x9f\x88\xb7"=>"[\xe6\x9c\x88]", "\xf0\x9f\x88\xb8"=>"[\xe7\x94\xb3]", "\xf0\x9f\x88\xb9"=>"[\xe5\x89\xb2]", "\xf0\x9f\x88\xaf"=>"[\xe6\x8c\x87]",
         
     | 
| 
      
 925 
     | 
    
         
            +
                  "\xf0\x9f\x88\xba"=>"[\xe5\x96\xb6]", "\xe3\x8a\x99"=>"\xee\x9c\xb4", "\xe3\x8a\x97"=>"[\xe7\xa5\x9d]", "\xf0\x9f\x89\x90"=>"[\xe5\xbe\x97]", "\xf0\x9f\x89\x91"=>"[\xe5\x8f\xaf]",
         
     | 
| 
      
 926 
     | 
    
         
            +
                  "\xe2\x9e\x95"=>"[\xef\xbc\x8b]", "\xe2\x9e\x96"=>"[\xef\xbc\x8d]", "\xe2\x9c\x96"=>"[\xc3\x97]", "\xe2\x9e\x97"=>"[\xc3\xb7]", "\xf0\x9f\x92\xa0"=>"\xee\x9b\xb8",
         
     | 
| 
      
 927 
     | 
    
         
            +
                  "\xf0\x9f\x92\xa1"=>"\xee\x9b\xbb", "\xf0\x9f\x92\xa2"=>"\xee\x9b\xbc", "\xf0\x9f\x92\xa3"=>"\xee\x9b\xbe", "\xf0\x9f\x92\xa4"=>"\xee\x9c\x81", "\xf0\x9f\x92\xa5"=>"\xee\x9c\x85",
         
     | 
| 
      
 928 
     | 
    
         
            +
                  "\xf0\x9f\x92\xa6"=>"\xee\x9c\x86", "\xf0\x9f\x92\xa7"=>"\xee\x9c\x87", "\xf0\x9f\x92\xa8"=>"\xee\x9c\x88", "\xf0\x9f\x92\xa9"=>"[\xe3\x82\xa6\xe3\x83\xb3\xe3\x83\x81]", "\xf0\x9f\x92\xaa"=>"[\xe5\x8a\x9b\xe3\x81\x93\xe3\x81\xb6]",
         
     | 
| 
      
 929 
     | 
    
         
            +
                  "\xf0\x9f\x92\xab"=>"[\xe3\x82\xaf\xe3\x83\xa9\xe3\x82\xaf\xe3\x83\xa9]", "\xf0\x9f\x92\xac"=>"[\xe3\x83\x95\xe3\x82\xad\xe3\x83\x80\xe3\x82\xb7]", "\xe2\x9c\xa8"=>"\xee\x9b\xba", "\xe2\x9c\xb4"=>"\xee\x9b\xb8", "\xe2\x9c\xb3"=>"\xee\x9b\xb8",
         
     | 
| 
      
 930 
     | 
    
         
            +
                  "\xe2\x9a\xaa"=>"\xee\x9a\x9c", "\xe2\x9a\xab"=>"\xee\x9a\x9c", "\xf0\x9f\x94\xb4"=>"\xee\x9a\x9c", "\xf0\x9f\x94\xb5"=>"\xee\x9a\x9c", "\xf0\x9f\x94\xb2"=>"\xee\x9a\x9c",
         
     | 
| 
      
 931 
     | 
    
         
            +
                  "\xf0\x9f\x94\xb3"=>"\xee\x9a\x9c", "\xe2\xad\x90"=>"[\xe2\x98\x86]", "\xe2\xac\x9c"=>"\xe2\x96\xa0", "\xe2\xac\x9b"=>"\xe2\x96\xa0", "\xe2\x96\xab"=>"\xe2\x96\xa0",
         
     | 
| 
      
 932 
     | 
    
         
            +
                  "\xe2\x96\xaa"=>"\xe2\x96\xa0", "\xe2\x97\xbd"=>"\xe2\x96\xa0", "\xe2\x97\xbe"=>"\xe2\x96\xa0", "\xe2\x97\xbb"=>"\xe2\x96\xa0", "\xe2\x97\xbc"=>"\xe2\x96\xa0",
         
     | 
| 
      
 933 
     | 
    
         
            +
                  "\xf0\x9f\x94\xb6"=>"\xe2\x97\x86", "\xf0\x9f\x94\xb7"=>"\xe2\x97\x86", "\xf0\x9f\x94\xb8"=>"\xe2\x97\x86", "\xf0\x9f\x94\xb9"=>"\xe2\x97\x86", "\xe2\x9d\x87"=>"\xee\x9b\xba",
         
     | 
| 
      
 934 
     | 
    
         
            +
                  "\xf0\x9f\x92\xae"=>"[\xe8\x8a\xb1\xe4\xb8\xb8]", "\xf0\x9f\x92\xaf"=>"[100\xe7\x82\xb9]", "\xe2\x86\xa9"=>"\xee\x9b\x9a", "\xe2\x86\xaa"=>"\xe2\x94\x94\xe2\x86\x92", "\xf0\x9f\x94\x83"=>"\xee\x9c\xb5",
         
     | 
| 
      
 935 
     | 
    
         
            +
                  "\xf0\x9f\x94\x8a"=>"[\xe3\x82\xb9\xe3\x83\x94\xe3\x83\xbc\xe3\x82\xab]", "\xf0\x9f\x94\x8b"=>"[\xe9\x9b\xbb\xe6\xb1\xa0]", "\xf0\x9f\x94\x8c"=>"[\xe3\x82\xb3\xe3\x83\xb3\xe3\x82\xbb\xe3\x83\xb3\xe3\x83\x88]", "\xf0\x9f\x94\x8d"=>"\xee\x9b\x9c", "\xf0\x9f\x94\x8e"=>"\xee\x9b\x9c",
         
     | 
| 
      
 936 
     | 
    
         
            +
                  "\xf0\x9f\x94\x92"=>"\xee\x9b\x99", "\xf0\x9f\x94\x93"=>"\xee\x9b\x99", "\xf0\x9f\x94\x8f"=>"\xee\x9b\x99", "\xf0\x9f\x94\x90"=>"\xee\x9b\x99", "\xf0\x9f\x94\x91"=>"\xee\x9b\x99",
         
     | 
| 
      
 937 
     | 
    
         
            +
                  "\xf0\x9f\x94\x94"=>"\xee\x9c\x93", "\xe2\x98\x91"=>"[\xe3\x83\x81\xe3\x82\xa7\xe3\x83\x83\xe3\x82\xaf\xe3\x83\x9e\xe3\x83\xbc\xe3\x82\xaf]", "\xf0\x9f\x94\x98"=>"[\xe3\x83\xa9\xe3\x82\xb8\xe3\x82\xaa\xe3\x83\x9c\xe3\x82\xbf\xe3\x83\xb3]", "\xf0\x9f\x94\x96"=>"[\xe3\x83\x96\xe3\x83\x83\xe3\x82\xaf\xe3\x83\x9e\xe3\x83\xbc\xe3\x82\xaf]", "\xf0\x9f\x94\x97"=>"[\xe3\x83\xaa\xe3\x83\xb3\xe3\x82\xaf]",
         
     | 
| 
      
 938 
     | 
    
         
            +
                  "\xf0\x9f\x94\x99"=>"[\xe2\x86\x90BACK]", "\xf0\x9f\x94\x9a"=>"\xee\x9a\xb9", "\xf0\x9f\x94\x9b"=>"\xee\x9a\xb8", "\xf0\x9f\x94\x9c"=>"\xee\x9a\xb7", "\xf0\x9f\x94\x9d"=>"[TOP]",
         
     | 
| 
      
 939 
     | 
    
         
            +
                  "\xe2\x80\x83"=>"\xe3\x80\x93", "\xe2\x80\x82"=>"\xe3\x80\x93", "\xe2\x80\x85"=>"\xe3\x80\x93", "\xe2\x9c\x85"=>"[\xe3\x83\x81\xe3\x82\xa7\xe3\x83\x83\xe3\x82\xaf\xe3\x83\x9e\xe3\x83\xbc\xe3\x82\xaf]", "\xe2\x9c\x8a"=>"\xee\x9a\x93",
         
     | 
| 
      
 940 
     | 
    
         
            +
                  "\xe2\x9c\x8b"=>"\xee\x9a\x95", "\xe2\x9c\x8c"=>"\xee\x9a\x94", "\xf0\x9f\x91\x8a"=>"\xee\x9b\xbd", "\xf0\x9f\x91\x8d"=>"\xee\x9c\xa7", "\xe2\x98\x9d"=>"[\xe4\xba\xba\xe5\xb7\xae\xe3\x81\x97\xe6\x8c\x87]",
         
     | 
| 
      
 941 
     | 
    
         
            +
                  "\xf0\x9f\x91\x86"=>"[\xe2\x86\x91]", "\xf0\x9f\x91\x87"=>"[\xe2\x86\x93]", "\xf0\x9f\x91\x88"=>"[\xe2\x86\x90]", "\xf0\x9f\x91\x89"=>"[\xe2\x86\x92]", "\xf0\x9f\x91\x8b"=>"\xee\x9a\x95",
         
     | 
| 
      
 942 
     | 
    
         
            +
                  "\xf0\x9f\x91\x8f"=>"[\xe6\x8b\x8d\xe6\x89\x8b]", "\xf0\x9f\x91\x8c"=>"\xee\x9c\x8b", "\xf0\x9f\x91\x8e"=>"\xee\x9c\x80", "\xf0\x9f\x91\x90"=>"\xee\x9a\x95",
         
     | 
| 
      
 943 
     | 
    
         
            +
                },
         
     | 
| 
      
 944 
     | 
    
         
            +
                'unified_to_kddi' => {
         
     | 
| 
      
 945 
     | 
    
         
            +
                  "\xe2\x98\x80"=>"\xee\x92\x88", "\xe2\x98\x81"=>"\xee\x92\x8d", "\xe2\x98\x94"=>"\xee\x92\x8c", "\xe2\x9b\x84"=>"\xee\x92\x85",
         
     | 
| 
      
 946 
     | 
    
         
            +
                  "\xe2\x9a\xa1"=>"\xee\x92\x87", "\xf0\x9f\x8c\x80"=>"\xee\x91\xa9", "\xf0\x9f\x8c\x81"=>"\xee\x96\x98", "\xf0\x9f\x8c\x82"=>"\xee\xab\xa8", "\xf0\x9f\x8c\x83"=>"\xee\xab\xb1",
         
     | 
| 
      
 947 
     | 
    
         
            +
                  "\xf0\x9f\x8c\x84"=>"\xee\xab\xb4", "\xf0\x9f\x8c\x85"=>"\xee\xab\xb4", "\xf0\x9f\x8c\x86"=>"\xee\x97\x9a", "\xf0\x9f\x8c\x87"=>"\xee\x97\x9a", "\xf0\x9f\x8c\x88"=>"\xee\xab\xb2",
         
     | 
| 
      
 948 
     | 
    
         
            +
                  "\xe2\x9d\x84"=>"\xee\x92\x8a", "\xe2\x9b\x85"=>"\xee\x92\x8e", "\xf0\x9f\x8c\x89"=>"\xee\x92\xbf", "\xf0\x9f\x8c\x8a"=>"\xee\xad\xbc", "\xf0\x9f\x8c\x8b"=>"\xee\xad\x93",
         
     | 
| 
      
 949 
     | 
    
         
            +
                  "\xf0\x9f\x8c\x8c"=>"\xee\xad\x9f", "\xf0\x9f\x8c\x8f"=>"\xee\x96\xb3", "\xf0\x9f\x8c\x91"=>"\xee\x96\xa8", "\xf0\x9f\x8c\x94"=>"\xee\x96\xa9", "\xf0\x9f\x8c\x93"=>"\xee\x96\xaa",
         
     | 
| 
      
 950 
     | 
    
         
            +
                  "\xf0\x9f\x8c\x99"=>"\xee\x92\x86", "\xf0\x9f\x8c\x95"=>"\xe2\x97\x8b", "\xf0\x9f\x8c\x9b"=>"\xee\x92\x89", "\xf0\x9f\x8c\x9f"=>"\xee\x92\x8b", "\xf0\x9f\x8c\xa0"=>"\xee\x91\xa8",
         
     | 
| 
      
 951 
     | 
    
         
            +
                  "\xf0\x9f\x95\x90"=>"\xee\x96\x94", "\xf0\x9f\x95\x91"=>"\xee\x96\x94", "\xf0\x9f\x95\x92"=>"\xee\x96\x94", "\xf0\x9f\x95\x93"=>"\xee\x96\x94", "\xf0\x9f\x95\x94"=>"\xee\x96\x94",
         
     | 
| 
      
 952 
     | 
    
         
            +
                  "\xf0\x9f\x95\x95"=>"\xee\x96\x94", "\xf0\x9f\x95\x96"=>"\xee\x96\x94", "\xf0\x9f\x95\x97"=>"\xee\x96\x94", "\xf0\x9f\x95\x98"=>"\xee\x96\x94", "\xf0\x9f\x95\x99"=>"\xee\x96\x94",
         
     | 
| 
      
 953 
     | 
    
         
            +
                  "\xf0\x9f\x95\x9a"=>"\xee\x96\x94", "\xf0\x9f\x95\x9b"=>"\xee\x96\x94", "\xe2\x8c\x9a"=>"\xee\x95\xba", "\xe2\x8c\x9b"=>"\xee\x95\xbb", "\xe2\x8f\xb0"=>"\xee\x96\x94",
         
     | 
| 
      
 954 
     | 
    
         
            +
                  "\xe2\x8f\xb3"=>"\xee\x91\xbc", "\xe2\x99\x88"=>"\xee\x92\x8f", "\xe2\x99\x89"=>"\xee\x92\x90", "\xe2\x99\x8a"=>"\xee\x92\x91", "\xe2\x99\x8b"=>"\xee\x92\x92",
         
     | 
| 
      
 955 
     | 
    
         
            +
                  "\xe2\x99\x8c"=>"\xee\x92\x93", "\xe2\x99\x8d"=>"\xee\x92\x94", "\xe2\x99\x8e"=>"\xee\x92\x95", "\xe2\x99\x8f"=>"\xee\x92\x96", "\xe2\x99\x90"=>"\xee\x92\x97",
         
     | 
| 
      
 956 
     | 
    
         
            +
                  "\xe2\x99\x91"=>"\xee\x92\x98", "\xe2\x99\x92"=>"\xee\x92\x99", "\xe2\x99\x93"=>"\xee\x92\x9a", "\xe2\x9b\x8e"=>"\xee\x92\x9b", "\xf0\x9f\x8d\x80"=>"\xee\x94\x93",
         
     | 
| 
      
 957 
     | 
    
         
            +
                  "\xf0\x9f\x8c\xb7"=>"\xee\x93\xa4", "\xf0\x9f\x8c\xb1"=>"\xee\xad\xbd", "\xf0\x9f\x8d\x81"=>"\xee\x93\x8e", "\xf0\x9f\x8c\xb8"=>"\xee\x93\x8a", "\xf0\x9f\x8c\xb9"=>"\xee\x96\xba",
         
     | 
| 
      
 958 
     | 
    
         
            +
                  "\xf0\x9f\x8d\x82"=>"\xee\x97\x8d", "\xf0\x9f\x8d\x83"=>"\xee\x97\x8d", "\xf0\x9f\x8c\xba"=>"\xee\xaa\x94", "\xf0\x9f\x8c\xbb"=>"\xee\x93\xa3", "\xf0\x9f\x8c\xb4"=>"\xee\x93\xa2",
         
     | 
| 
      
 959 
     | 
    
         
            +
                  "\xf0\x9f\x8c\xb5"=>"\xee\xaa\x96", "\xf0\x9f\x8c\xbe"=>"[\xe7\xa8\xb2\xe7\xa9\x82]", "\xf0\x9f\x8c\xbd"=>"\xee\xac\xb6", "\xf0\x9f\x8d\x84"=>"\xee\xac\xb7", "\xf0\x9f\x8c\xb0"=>"\xee\xac\xb8",
         
     | 
| 
      
 960 
     | 
    
         
            +
                  "\xf0\x9f\x8c\xbc"=>"\xee\xad\x89", "\xf0\x9f\x8c\xbf"=>"\xee\xae\x82", "\xf0\x9f\x8d\x92"=>"\xee\x93\x92", "\xf0\x9f\x8d\x8c"=>"\xee\xac\xb5", "\xf0\x9f\x8d\x8e"=>"\xee\xaa\xb9",
         
     | 
| 
      
 961 
     | 
    
         
            +
                  "\xf0\x9f\x8d\x8a"=>"\xee\xaa\xba", "\xf0\x9f\x8d\x93"=>"\xee\x93\x94", "\xf0\x9f\x8d\x89"=>"\xee\x93\x8d", "\xf0\x9f\x8d\x85"=>"\xee\xaa\xbb", "\xf0\x9f\x8d\x86"=>"\xee\xaa\xbc",
         
     | 
| 
      
 962 
     | 
    
         
            +
                  "\xf0\x9f\x8d\x88"=>"\xee\xac\xb2", "\xf0\x9f\x8d\x8d"=>"\xee\xac\xb3", "\xf0\x9f\x8d\x87"=>"\xee\xac\xb4", "\xf0\x9f\x8d\x91"=>"\xee\xac\xb9", "\xf0\x9f\x8d\x8f"=>"\xee\xad\x9a",
         
     | 
| 
      
 963 
     | 
    
         
            +
                  "\xf0\x9f\x91\x80"=>"\xee\x96\xa4", "\xf0\x9f\x91\x82"=>"\xee\x96\xa5", "\xf0\x9f\x91\x83"=>"\xee\xab\x90", "\xf0\x9f\x91\x84"=>"\xee\xab\x91", "\xf0\x9f\x91\x85"=>"\xee\xad\x87",
         
     | 
| 
      
 964 
     | 
    
         
            +
                  "\xf0\x9f\x92\x84"=>"\xee\x94\x89", "\xf0\x9f\x92\x85"=>"\xee\xaa\xa0", "\xf0\x9f\x92\x86"=>"\xee\x94\x8b", "\xf0\x9f\x92\x87"=>"\xee\xaa\xa1", "\xf0\x9f\x92\x88"=>"\xee\xaa\xa2",
         
     | 
| 
      
 965 
     | 
    
         
            +
                  "\xf0\x9f\x91\xa4"=>"\xe3\x80\x93", "\xf0\x9f\x91\xa6"=>"\xee\x93\xbc", "\xf0\x9f\x91\xa7"=>"\xee\x93\xba", "\xf0\x9f\x91\xa8"=>"\xee\x93\xbc", "\xf0\x9f\x91\xa9"=>"\xee\x93\xba",
         
     | 
| 
      
 966 
     | 
    
         
            +
                  "\xf0\x9f\x91\xaa"=>"\xee\x94\x81", "\xf0\x9f\x91\xab"=>"[\xe3\x82\xab\xe3\x83\x83\xe3\x83\x97\xe3\x83\xab]", "\xf0\x9f\x91\xae"=>"\xee\x97\x9d", "\xf0\x9f\x91\xaf"=>"\xee\xab\x9b", "\xf0\x9f\x91\xb0"=>"\xee\xab\xa9",
         
     | 
| 
      
 967 
     | 
    
         
            +
                  "\xf0\x9f\x91\xb1"=>"\xee\xac\x93", "\xf0\x9f\x91\xb2"=>"\xee\xac\x94", "\xf0\x9f\x91\xb3"=>"\xee\xac\x95", "\xf0\x9f\x91\xb4"=>"\xee\xac\x96", "\xf0\x9f\x91\xb5"=>"\xee\xac\x97",
         
     | 
| 
      
 968 
     | 
    
         
            +
                  "\xf0\x9f\x91\xb6"=>"\xee\xac\x98", "\xf0\x9f\x91\xb7"=>"\xee\xac\x99", "\xf0\x9f\x91\xb8"=>"\xee\xac\x9a", "\xf0\x9f\x91\xb9"=>"\xee\xad\x84", "\xf0\x9f\x91\xba"=>"\xee\xad\x85",
         
     | 
| 
      
 969 
     | 
    
         
            +
                  "\xf0\x9f\x91\xbb"=>"\xee\x93\x8b", "\xf0\x9f\x91\xbc"=>"\xee\x96\xbf", "\xf0\x9f\x91\xbd"=>"\xee\x94\x8e", "\xf0\x9f\x91\xbe"=>"\xee\x93\xac", "\xf0\x9f\x91\xbf"=>"\xee\x93\xaf",
         
     | 
| 
      
 970 
     | 
    
         
            +
                  "\xf0\x9f\x92\x80"=>"\xee\x93\xb8", "\xf0\x9f\x92\x81"=>"[\xe6\xa1\x88\xe5\x86\x85]", "\xf0\x9f\x92\x82"=>"[\xe8\xa1\x9b\xe5\x85\xb5]", "\xf0\x9f\x92\x83"=>"\xee\xac\x9c", "\xf0\x9f\x90\x8c"=>"\xee\xad\xbe",
         
     | 
| 
      
 971 
     | 
    
         
            +
                  "\xf0\x9f\x90\x8d"=>"\xee\xac\xa2", "\xf0\x9f\x90\x8e"=>"\xee\x93\x98", "\xf0\x9f\x90\x94"=>"\xee\xac\xa3", "\xf0\x9f\x90\x97"=>"\xee\xac\xa4", "\xf0\x9f\x90\xab"=>"\xee\xac\xa5",
         
     | 
| 
      
 972 
     | 
    
         
            +
                  "\xf0\x9f\x90\x98"=>"\xee\xac\x9f", "\xf0\x9f\x90\xa8"=>"\xee\xac\xa0", "\xf0\x9f\x90\x92"=>"\xee\x93\x99", "\xf0\x9f\x90\x91"=>"\xee\x92\x8f", "\xf0\x9f\x90\x99"=>"\xee\x97\x87",
         
     | 
| 
      
 973 
     | 
    
         
            +
                  "\xf0\x9f\x90\x9a"=>"\xee\xab\xac", "\xf0\x9f\x90\x9b"=>"\xee\xac\x9e", "\xf0\x9f\x90\x9c"=>"\xee\x93\x9d", "\xf0\x9f\x90\x9d"=>"\xee\xad\x97", "\xf0\x9f\x90\x9e"=>"\xee\xad\x98",
         
     | 
| 
      
 974 
     | 
    
         
            +
                  "\xf0\x9f\x90\xa0"=>"\xee\xac\x9d", "\xf0\x9f\x90\xa1"=>"\xee\x93\x93", "\xf0\x9f\x90\xa2"=>"\xee\x97\x94", "\xf0\x9f\x90\xa4"=>"\xee\x93\xa0", "\xf0\x9f\x90\xa5"=>"\xee\xad\xb6",
         
     | 
| 
      
 975 
     | 
    
         
            +
                  "\xf0\x9f\x90\xa6"=>"\xee\x93\xa0", "\xf0\x9f\x90\xa3"=>"\xee\x97\x9b", "\xf0\x9f\x90\xa7"=>"\xee\x93\x9c", "\xf0\x9f\x90\xa9"=>"\xee\x93\x9f", "\xf0\x9f\x90\x9f"=>"\xee\x92\x9a",
         
     | 
| 
      
 976 
     | 
    
         
            +
                  "\xf0\x9f\x90\xac"=>"\xee\xac\x9b", "\xf0\x9f\x90\xad"=>"\xee\x97\x82", "\xf0\x9f\x90\xaf"=>"\xee\x97\x80", "\xf0\x9f\x90\xb1"=>"\xee\x93\x9b", "\xf0\x9f\x90\xb3"=>"\xee\x91\xb0",
         
     | 
| 
      
 977 
     | 
    
         
            +
                  "\xf0\x9f\x90\xb4"=>"\xee\x93\x98", "\xf0\x9f\x90\xb5"=>"\xee\x93\x99", "\xf0\x9f\x90\xb6"=>"\xee\x93\xa1", "\xf0\x9f\x90\xb7"=>"\xee\x93\x9e", "\xf0\x9f\x90\xbb"=>"\xee\x97\x81",
         
     | 
| 
      
 978 
     | 
    
         
            +
                  "\xf0\x9f\x90\xb9"=>"[\xe3\x83\x8f\xe3\x83\xa0\xe3\x82\xb9\xe3\x82\xbf\xe3\x83\xbc]", "\xf0\x9f\x90\xba"=>"\xee\x93\xa1", "\xf0\x9f\x90\xae"=>"\xee\xac\xa1", "\xf0\x9f\x90\xb0"=>"\xee\x93\x97", "\xf0\x9f\x90\xb8"=>"\xee\x93\x9a",
         
     | 
| 
      
 979 
     | 
    
         
            +
                  "\xf0\x9f\x90\xbe"=>"\xee\x93\xae", "\xf0\x9f\x90\xb2"=>"\xee\xac\xbf", "\xf0\x9f\x90\xbc"=>"\xee\xad\x86", "\xf0\x9f\x90\xbd"=>"\xee\xad\x88", "\xf0\x9f\x98\xa0"=>"\xee\x91\xb2",
         
     | 
| 
      
 980 
     | 
    
         
            +
                  "\xf0\x9f\x98\xa9"=>"\xee\xad\xa7", "\xf0\x9f\x98\xb2"=>"\xee\xab\x8a", "\xf0\x9f\x98\x9e"=>"\xee\xab\x80", "\xf0\x9f\x98\xb5"=>"\xee\x96\xae", "\xf0\x9f\x98\xb0"=>"\xee\xab\x8b",
         
     | 
| 
      
 981 
     | 
    
         
            +
                  "\xf0\x9f\x98\x92"=>"\xee\xab\x89", "\xf0\x9f\x98\x8d"=>"\xee\x97\x84", "\xf0\x9f\x98\xa4"=>"\xee\xab\x81", "\xf0\x9f\x98\x9c"=>"\xee\x93\xa7", "\xf0\x9f\x98\x9d"=>"\xee\x93\xa7",
         
     | 
| 
      
 982 
     | 
    
         
            +
                  "\xf0\x9f\x98\x8b"=>"\xee\xab\x8d", "\xf0\x9f\x98\x98"=>"\xee\xab\x8f", "\xf0\x9f\x98\x9a"=>"\xee\xab\x8e", "\xf0\x9f\x98\xb7"=>"\xee\xab\x87", "\xf0\x9f\x98\xb3"=>"\xee\xab\x88",
         
     | 
| 
      
 983 
     | 
    
         
            +
                  "\xf0\x9f\x98\x83"=>"\xee\x91\xb1", "\xf0\x9f\x98\x85"=>"\xee\x91\xb1\xee\x96\xb1", "\xf0\x9f\x98\x86"=>"\xee\xab\x85", "\xf0\x9f\x98\x81"=>"\xee\xae\x80", "\xf0\x9f\x98\x82"=>"\xee\xad\xa4",
         
     | 
| 
      
 984 
     | 
    
         
            +
                  "\xf0\x9f\x98\x8a"=>"\xee\xab\x8d", "\xe2\x98\xba"=>"\xee\x93\xbb", "\xf0\x9f\x98\x84"=>"\xee\x91\xb1", "\xf0\x9f\x98\xa2"=>"\xee\xad\xa9", "\xf0\x9f\x98\xad"=>"\xee\x91\xb3",
         
     | 
| 
      
 985 
     | 
    
         
            +
                  "\xf0\x9f\x98\xa8"=>"\xee\xab\x86", "\xf0\x9f\x98\xa3"=>"\xee\xab\x82", "\xf0\x9f\x98\xa1"=>"\xee\xad\x9d", "\xf0\x9f\x98\x8c"=>"\xee\xab\x85", "\xf0\x9f\x98\x96"=>"\xee\xab\x83",
         
     | 
| 
      
 986 
     | 
    
         
            +
                  "\xf0\x9f\x98\x94"=>"\xee\xab\x80", "\xf0\x9f\x98\xb1"=>"\xee\x97\x85", "\xf0\x9f\x98\xaa"=>"\xee\xab\x84", "\xf0\x9f\x98\x8f"=>"\xee\xaa\xbf", "\xf0\x9f\x98\x93"=>"\xee\x97\x86",
         
     | 
| 
      
 987 
     | 
    
         
            +
                  "\xf0\x9f\x98\xa5"=>"\xee\x97\x86", "\xf0\x9f\x98\xab"=>"\xee\x91\xb4", "\xf0\x9f\x98\x89"=>"\xee\x97\x83", "\xf0\x9f\x98\xba"=>"\xee\xad\xa1", "\xf0\x9f\x98\xb8"=>"\xee\xad\xbf",
         
     | 
| 
      
 988 
     | 
    
         
            +
                  "\xf0\x9f\x98\xb9"=>"\xee\xad\xa3", "\xf0\x9f\x98\xbd"=>"\xee\xad\xa0", "\xf0\x9f\x98\xbb"=>"\xee\xad\xa5", "\xf0\x9f\x98\xbf"=>"\xee\xad\xa8", "\xf0\x9f\x98\xbe"=>"\xee\xad\x9e",
         
     | 
| 
      
 989 
     | 
    
         
            +
                  "\xf0\x9f\x98\xbc"=>"\xee\xad\xaa", "\xf0\x9f\x99\x80"=>"\xee\xad\xa6", "\xf0\x9f\x99\x85"=>"\xee\xab\x97", "\xf0\x9f\x99\x86"=>"\xee\xab\x98", "\xf0\x9f\x99\x87"=>"\xee\xab\x99",
         
     | 
| 
      
 990 
     | 
    
         
            +
                  "\xf0\x9f\x99\x88"=>"\xee\xad\x90", "\xf0\x9f\x99\x8a"=>"\xee\xad\x91", "\xf0\x9f\x99\x89"=>"\xee\xad\x92", "\xf0\x9f\x99\x8b"=>"\xee\xae\x85", "\xf0\x9f\x99\x8c"=>"\xee\xae\x86",
         
     | 
| 
      
 991 
     | 
    
         
            +
                  "\xf0\x9f\x99\x8d"=>"\xee\xae\x87", "\xf0\x9f\x99\x8e"=>"\xee\xae\x88", "\xf0\x9f\x99\x8f"=>"\xee\xab\x92", "\xf0\x9f\x8f\xa0"=>"\xee\x92\xab", "\xf0\x9f\x8f\xa1"=>"\xee\xac\x89",
         
     | 
| 
      
 992 
     | 
    
         
            +
                  "\xf0\x9f\x8f\xa2"=>"\xee\x92\xad", "\xf0\x9f\x8f\xa3"=>"\xee\x97\x9e", "\xf0\x9f\x8f\xa5"=>"\xee\x97\x9f", "\xf0\x9f\x8f\xa6"=>"\xee\x92\xaa", "\xf0\x9f\x8f\xa7"=>"\xee\x92\xa3",
         
     | 
| 
      
 993 
     | 
    
         
            +
                  "\xf0\x9f\x8f\xa8"=>"\xee\xaa\x81", "\xf0\x9f\x8f\xa9"=>"\xee\xab\xb3", "\xf0\x9f\x8f\xaa"=>"\xee\x92\xa4", "\xf0\x9f\x8f\xab"=>"\xee\xaa\x80", "\xe2\x9b\xaa"=>"\xee\x96\xbb",
         
     | 
| 
      
 994 
     | 
    
         
            +
                  "\xe2\x9b\xb2"=>"\xee\x97\x8f", "\xf0\x9f\x8f\xac"=>"\xee\xab\xb6", "\xf0\x9f\x8f\xaf"=>"\xee\xab\xb7", "\xf0\x9f\x8f\xb0"=>"\xee\xab\xb8", "\xf0\x9f\x8f\xad"=>"\xee\xab\xb9",
         
     | 
| 
      
 995 
     | 
    
         
            +
                  "\xe2\x9a\x93"=>"\xee\x92\xa9", "\xf0\x9f\x8f\xae"=>"\xee\x92\xbd", "\xf0\x9f\x97\xbb"=>"\xee\x96\xbd", "\xf0\x9f\x97\xbc"=>"\xee\x93\x80", "\xf0\x9f\x97\xbd"=>"[\xe8\x87\xaa\xe7\x94\xb1\xe3\x81\xae\xe5\xa5\xb3\xe7\xa5\x9e]",
         
     | 
| 
      
 996 
     | 
    
         
            +
                  "\xf0\x9f\x97\xbe"=>"\xee\x95\xb2", "\xf0\x9f\x97\xbf"=>"\xee\xad\xac", "\xf0\x9f\x91\x9e"=>"\xee\x96\xb7", "\xf0\x9f\x91\x9f"=>"\xee\xac\xab", "\xf0\x9f\x91\xa0"=>"\xee\x94\x9a",
         
     | 
| 
      
 997 
     | 
    
         
            +
                  "\xf0\x9f\x91\xa1"=>"\xee\x94\x9a", "\xf0\x9f\x91\xa2"=>"\xee\xaa\x9f", "\xf0\x9f\x91\xa3"=>"\xee\xac\xaa", "\xf0\x9f\x91\x93"=>"\xee\x93\xbe", "\xf0\x9f\x91\x95"=>"\xee\x96\xb6",
         
     | 
| 
      
 998 
     | 
    
         
            +
                  "\xf0\x9f\x91\x96"=>"\xee\xad\xb7", "\xf0\x9f\x91\x91"=>"\xee\x97\x89", "\xf0\x9f\x91\x94"=>"\xee\xaa\x93", "\xf0\x9f\x91\x92"=>"\xee\xaa\x9e", "\xf0\x9f\x91\x97"=>"\xee\xad\xab",
         
     | 
| 
      
 999 
     | 
    
         
            +
                  "\xf0\x9f\x91\x98"=>"\xee\xaa\xa3", "\xf0\x9f\x91\x99"=>"\xee\xaa\xa4", "\xf0\x9f\x91\x9a"=>"\xee\x94\x8d", "\xf0\x9f\x91\x9b"=>"\xee\x94\x84", "\xf0\x9f\x91\x9c"=>"\xee\x92\x9c",
         
     | 
| 
      
 1000 
     | 
    
         
            +
                  "\xf0\x9f\x91\x9d"=>"[\xe3\x81\xb5\xe3\x81\x8f\xe3\x82\x8d]", "\xf0\x9f\x92\xb0"=>"\xee\x93\x87", "\xf0\x9f\x92\xb1"=>"[\xef\xbf\xa5]", "\xf0\x9f\x92\xb9"=>"\xee\x97\x9c", "\xf0\x9f\x92\xb2"=>"\xee\x95\xb9",
         
     | 
| 
      
 1001 
     | 
    
         
            +
                  "\xf0\x9f\x92\xb3"=>"\xee\x95\xbc", "\xf0\x9f\x92\xb4"=>"\xee\x95\xbd", "\xf0\x9f\x92\xb5"=>"\xee\x96\x85", "\xf0\x9f\x92\xb8"=>"\xee\xad\x9b", "\xf0\x9f\x87\xa8\xf0\x9f\x87\xb3"=>"\xee\xac\x91",
         
     | 
| 
      
 1002 
     | 
    
         
            +
                  "\xf0\x9f\x87\xa9\xf0\x9f\x87\xaa"=>"\xee\xac\x8e", "\xf0\x9f\x87\xaa\xf0\x9f\x87\xb8"=>"\xee\x97\x95", "\xf0\x9f\x87\xab\xf0\x9f\x87\xb7"=>"\xee\xab\xba", "\xf0\x9f\x87\xac\xf0\x9f\x87\xa7"=>"\xee\xac\x90", "\xf0\x9f\x87\xae\xf0\x9f\x87\xb9"=>"\xee\xac\x8f",
         
     | 
| 
      
 1003 
     | 
    
         
            +
                  "\xf0\x9f\x87\xaf\xf0\x9f\x87\xb5"=>"\xee\x93\x8c", "\xf0\x9f\x87\xb0\xf0\x9f\x87\xb7"=>"\xee\xac\x92", "\xf0\x9f\x87\xb7\xf0\x9f\x87\xba"=>"\xee\x97\x96", "\xf0\x9f\x87\xba\xf0\x9f\x87\xb8"=>"\xee\x95\xb3", "\xf0\x9f\x94\xa5"=>"\xee\x91\xbb",
         
     | 
| 
      
 1004 
     | 
    
         
            +
                  "\xf0\x9f\x94\xa6"=>"\xee\x96\x83", "\xf0\x9f\x94\xa7"=>"\xee\x96\x87", "\xf0\x9f\x94\xa8"=>"\xee\x97\x8b", "\xf0\x9f\x94\xa9"=>"\xee\x96\x81", "\xf0\x9f\x94\xaa"=>"\xee\x95\xbf",
         
     | 
| 
      
 1005 
     | 
    
         
            +
                  "\xf0\x9f\x94\xab"=>"\xee\x94\x8a", "\xf0\x9f\x94\xae"=>"\xee\xaa\x8f", "\xf0\x9f\x94\xaf"=>"\xee\xaa\x8f", "\xf0\x9f\x94\xb0"=>"\xee\x92\x80", "\xf0\x9f\x94\xb1"=>"\xee\x97\x89",
         
     | 
| 
      
 1006 
     | 
    
         
            +
                  "\xf0\x9f\x92\x89"=>"\xee\x94\x90", "\xf0\x9f\x92\x8a"=>"\xee\xaa\x9a", "\xf0\x9f\x85\xb0"=>"\xee\xac\xa6", "\xf0\x9f\x85\xb1"=>"\xee\xac\xa7", "\xf0\x9f\x86\x8e"=>"\xee\xac\xa9",
         
     | 
| 
      
 1007 
     | 
    
         
            +
                  "\xf0\x9f\x85\xbe"=>"\xee\xac\xa8", "\xf0\x9f\x8e\x80"=>"\xee\x96\x9f", "\xf0\x9f\x8e\x81"=>"\xee\x93\x8f", "\xf0\x9f\x8e\x82"=>"\xee\x96\xa0", "\xf0\x9f\x8e\x84"=>"\xee\x93\x89",
         
     | 
| 
      
 1008 
     | 
    
         
            +
                  "\xf0\x9f\x8e\x85"=>"\xee\xab\xb0", "\xf0\x9f\x8e\x8c"=>"\xee\x97\x99", "\xf0\x9f\x8e\x86"=>"\xee\x97\x8c", "\xf0\x9f\x8e\x88"=>"\xee\xaa\x9b", "\xf0\x9f\x8e\x89"=>"\xee\xaa\x9c",
         
     | 
| 
      
 1009 
     | 
    
         
            +
                  "\xf0\x9f\x8e\x8d"=>"\xee\xab\xa3", "\xf0\x9f\x8e\x8e"=>"\xee\xab\xa4", "\xf0\x9f\x8e\x93"=>"\xee\xab\xa5", "\xf0\x9f\x8e\x92"=>"\xee\xab\xa6", "\xf0\x9f\x8e\x8f"=>"\xee\xab\xa7",
         
     | 
| 
      
 1010 
     | 
    
         
            +
                  "\xf0\x9f\x8e\x87"=>"\xee\xab\xab", "\xf0\x9f\x8e\x90"=>"\xee\xab\xad", "\xf0\x9f\x8e\x83"=>"\xee\xab\xae", "\xf0\x9f\x8e\x8a"=>"\xee\x91\xaf", "\xf0\x9f\x8e\x8b"=>"\xee\xac\xbd",
         
     | 
| 
      
 1011 
     | 
    
         
            +
                  "\xf0\x9f\x8e\x91"=>"\xee\xab\xaf", "\xf0\x9f\x93\x9f"=>"\xee\x96\x9b", "\xe2\x98\x8e"=>"\xee\x96\x96", "\xf0\x9f\x93\x9e"=>"\xee\x94\x9e", "\xf0\x9f\x93\xb1"=>"\xee\x96\x88",
         
     | 
| 
      
 1012 
     | 
    
         
            +
                  "\xf0\x9f\x93\xb2"=>"\xee\xac\x88", "\xf0\x9f\x93\x9d"=>"\xee\xaa\x92", "\xf0\x9f\x93\xa0"=>"\xee\x94\xa0", "\xe2\x9c\x89"=>"\xee\x94\xa1", "\xf0\x9f\x93\xa8"=>"\xee\x96\x91",
         
     | 
| 
      
 1013 
     | 
    
         
            +
                  "\xf0\x9f\x93\xa9"=>"\xee\xad\xa2", "\xf0\x9f\x93\xaa"=>"\xee\x94\x9b", "\xf0\x9f\x93\xab"=>"\xee\xac\x8a", "\xf0\x9f\x93\xae"=>"\xee\x94\x9b", "\xf0\x9f\x93\xb0"=>"\xee\x96\x8b",
         
     | 
| 
      
 1014 
     | 
    
         
            +
                  "\xf0\x9f\x93\xa2"=>"\xee\x94\x91", "\xf0\x9f\x93\xa3"=>"\xee\x94\x91", "\xf0\x9f\x93\xa1"=>"\xee\x92\xa8", "\xf0\x9f\x93\xa4"=>"\xee\x96\x92", "\xf0\x9f\x93\xa5"=>"\xee\x96\x93",
         
     | 
| 
      
 1015 
     | 
    
         
            +
                  "\xf0\x9f\x93\xa6"=>"\xee\x94\x9f", "\xf0\x9f\x93\xa7"=>"\xee\xad\xb1", "\xf0\x9f\x94\xa0"=>"\xee\xab\xbd", "\xf0\x9f\x94\xa1"=>"\xee\xab\xbe", "\xf0\x9f\x94\xa2"=>"\xee\xab\xbf",
         
     | 
| 
      
 1016 
     | 
    
         
            +
                  "\xf0\x9f\x94\xa3"=>"\xee\xac\x80", "\xf0\x9f\x94\xa4"=>"\xee\xad\x95", "\xe2\x9c\x92"=>"\xee\xac\x83", "\xf0\x9f\x92\xba"=>"[\xe3\x81\x84\xe3\x81\x99]", "\xf0\x9f\x92\xbb"=>"\xee\x96\xb8",
         
     | 
| 
      
 1017 
     | 
    
         
            +
                  "\xe2\x9c\x8f"=>"\xee\x92\xa1", "\xf0\x9f\x93\x8e"=>"\xee\x92\xa0", "\xf0\x9f\x92\xbc"=>"\xee\x97\x8e", "\xf0\x9f\x92\xbd"=>"\xee\x96\x82", "\xf0\x9f\x92\xbe"=>"\xee\x95\xa2",
         
     | 
| 
      
 1018 
     | 
    
         
            +
                  "\xf0\x9f\x92\xbf"=>"\xee\x94\x8c", "\xf0\x9f\x93\x80"=>"\xee\x94\x8c", "\xe2\x9c\x82"=>"\xee\x94\x96", "\xf0\x9f\x93\x8d"=>"\xee\x95\xa0", "\xf0\x9f\x93\x83"=>"\xee\x95\xa1",
         
     | 
| 
      
 1019 
     | 
    
         
            +
                  "\xf0\x9f\x93\x84"=>"\xee\x95\xa9", "\xf0\x9f\x93\x85"=>"\xee\x95\xa3", "\xf0\x9f\x93\x81"=>"\xee\x96\x8f", "\xf0\x9f\x93\x82"=>"\xee\x96\x90", "\xf0\x9f\x93\x93"=>"\xee\x95\xab",
         
     | 
| 
      
 1020 
     | 
    
         
            +
                  "\xf0\x9f\x93\x96"=>"\xee\x92\x9f", "\xf0\x9f\x93\x94"=>"\xee\x92\x9d", "\xf0\x9f\x93\x95"=>"\xee\x95\xa8", "\xf0\x9f\x93\x97"=>"\xee\x95\xa5", "\xf0\x9f\x93\x98"=>"\xee\x95\xa6",
         
     | 
| 
      
 1021 
     | 
    
         
            +
                  "\xf0\x9f\x93\x99"=>"\xee\x95\xa7", "\xf0\x9f\x93\x9a"=>"\xee\x95\xaf", "\xf0\x9f\x93\x9b"=>"\xee\x94\x9d", "\xf0\x9f\x93\x9c"=>"\xee\x95\x9f", "\xf0\x9f\x93\x8b"=>"\xee\x95\xa4",
         
     | 
| 
      
 1022 
     | 
    
         
            +
                  "\xf0\x9f\x93\x86"=>"\xee\x95\xaa", "\xf0\x9f\x93\x8a"=>"\xee\x95\xb4", "\xf0\x9f\x93\x88"=>"\xee\x95\xb5", "\xf0\x9f\x93\x89"=>"\xee\x95\xb6", "\xf0\x9f\x93\x87"=>"\xee\x95\xac",
         
     | 
| 
      
 1023 
     | 
    
         
            +
                  "\xf0\x9f\x93\x8c"=>"\xee\x95\xad", "\xf0\x9f\x93\x92"=>"\xee\x95\xae", "\xf0\x9f\x93\x8f"=>"\xee\x95\xb0", "\xf0\x9f\x93\x90"=>"\xee\x92\xa2", "\xf0\x9f\x93\x91"=>"\xee\xac\x8b",
         
     | 
| 
      
 1024 
     | 
    
         
            +
                  "\xf0\x9f\x8e\xbd"=>"\xe3\x80\x93", "\xe2\x9a\xbe"=>"\xee\x92\xba", "\xe2\x9b\xb3"=>"\xee\x96\x99", "\xf0\x9f\x8e\xbe"=>"\xee\x92\xb7", "\xe2\x9a\xbd"=>"\xee\x92\xb6",
         
     | 
| 
      
 1025 
     | 
    
         
            +
                  "\xf0\x9f\x8e\xbf"=>"\xee\xaa\xac", "\xf0\x9f\x8f\x80"=>"\xee\x96\x9a", "\xf0\x9f\x8f\x81"=>"\xee\x92\xb9", "\xf0\x9f\x8f\x82"=>"\xee\x92\xb8", "\xf0\x9f\x8f\x83"=>"\xee\x91\xab",
         
     | 
| 
      
 1026 
     | 
    
         
            +
                  "\xf0\x9f\x8f\x84"=>"\xee\xad\x81", "\xf0\x9f\x8f\x86"=>"\xee\x97\x93", "\xf0\x9f\x8f\x88"=>"\xee\x92\xbb", "\xf0\x9f\x8f\x8a"=>"\xee\xab\x9e", "\xf0\x9f\x9a\x83"=>"\xee\x92\xb5",
         
     | 
| 
      
 1027 
     | 
    
         
            +
                  "\xf0\x9f\x9a\x87"=>"\xee\x96\xbc", "\xe2\x93\x82"=>"\xee\x96\xbc", "\xf0\x9f\x9a\x84"=>"\xee\x92\xb0", "\xf0\x9f\x9a\x85"=>"\xee\x92\xb0", "\xf0\x9f\x9a\x97"=>"\xee\x92\xb1",
         
     | 
| 
      
 1028 
     | 
    
         
            +
                  "\xf0\x9f\x9a\x99"=>"\xee\x92\xb1", "\xf0\x9f\x9a\x8c"=>"\xee\x92\xaf", "\xf0\x9f\x9a\x8f"=>"\xee\x92\xa7", "\xf0\x9f\x9a\xa2"=>"\xee\xaa\x82", "\xe2\x9c\x88"=>"\xee\x92\xb3",
         
     | 
| 
      
 1029 
     | 
    
         
            +
                  "\xe2\x9b\xb5"=>"\xee\x92\xb4", "\xf0\x9f\x9a\x89"=>"\xee\xad\xad", "\xf0\x9f\x9a\x80"=>"\xee\x97\x88", "\xf0\x9f\x9a\xa4"=>"\xee\x92\xb4", "\xf0\x9f\x9a\x95"=>"\xee\x92\xb1",
         
     | 
| 
      
 1030 
     | 
    
         
            +
                  "\xf0\x9f\x9a\x9a"=>"\xee\x92\xb2", "\xf0\x9f\x9a\x92"=>"\xee\xab\x9f", "\xf0\x9f\x9a\x91"=>"\xee\xab\xa0", "\xf0\x9f\x9a\x93"=>"\xee\xab\xa1", "\xe2\x9b\xbd"=>"\xee\x95\xb1",
         
     | 
| 
      
 1031 
     | 
    
         
            +
                  "\xf0\x9f\x85\xbf"=>"\xee\x92\xa6", "\xf0\x9f\x9a\xa5"=>"\xee\x91\xaa", "\xf0\x9f\x9a\xa7"=>"\xee\x97\x97", "\xf0\x9f\x9a\xa8"=>"\xee\xad\xb3", "\xe2\x99\xa8"=>"\xee\x92\xbc",
         
     | 
| 
      
 1032 
     | 
    
         
            +
                  "\xe2\x9b\xba"=>"\xee\x97\x90", "\xf0\x9f\x8e\xa0"=>"\xe3\x80\x93", "\xf0\x9f\x8e\xa1"=>"\xee\x91\xad", "\xf0\x9f\x8e\xa2"=>"\xee\xab\xa2", "\xf0\x9f\x8e\xa3"=>"\xee\xad\x82",
         
     | 
| 
      
 1033 
     | 
    
         
            +
                  "\xf0\x9f\x8e\xa4"=>"\xee\x94\x83", "\xf0\x9f\x8e\xa5"=>"\xee\x94\x97", "\xf0\x9f\x8e\xa6"=>"\xee\x94\x97", "\xf0\x9f\x8e\xa7"=>"\xee\x94\x88", "\xf0\x9f\x8e\xa8"=>"\xee\x96\x9c",
         
     | 
| 
      
 1034 
     | 
    
         
            +
                  "\xf0\x9f\x8e\xa9"=>"\xee\xab\xb5", "\xf0\x9f\x8e\xaa"=>"\xee\x96\x9e", "\xf0\x9f\x8e\xab"=>"\xee\x92\x9e", "\xf0\x9f\x8e\xac"=>"\xee\x92\xbe", "\xf0\x9f\x8e\xad"=>"\xee\x96\x9d",
         
     | 
| 
      
 1035 
     | 
    
         
            +
                  "\xf0\x9f\x8e\xae"=>"\xee\x93\x86", "\xf0\x9f\x80\x84"=>"\xee\x97\x91", "\xf0\x9f\x8e\xaf"=>"\xee\x93\x85", "\xf0\x9f\x8e\xb0"=>"\xee\x91\xae", "\xf0\x9f\x8e\xb1"=>"\xee\xab\x9d",
         
     | 
| 
      
 1036 
     | 
    
         
            +
                  "\xf0\x9f\x8e\xb2"=>"\xee\x93\x88", "\xf0\x9f\x8e\xb3"=>"\xee\xad\x83", "\xf0\x9f\x8e\xb4"=>"\xee\xad\xae", "\xf0\x9f\x83\x8f"=>"\xee\xad\xaf", "\xf0\x9f\x8e\xb5"=>"\xee\x96\xbe",
         
     | 
| 
      
 1037 
     | 
    
         
            +
                  "\xf0\x9f\x8e\xb6"=>"\xee\x94\x85", "\xf0\x9f\x8e\xb7"=>"[\xe3\x82\xb5\xe3\x83\x83\xe3\x82\xaf\xe3\x82\xb9]", "\xf0\x9f\x8e\xb8"=>"\xee\x94\x86", "\xf0\x9f\x8e\xb9"=>"\xee\xad\x80", "\xf0\x9f\x8e\xba"=>"\xee\xab\x9c",
         
     | 
| 
      
 1038 
     | 
    
         
            +
                  "\xf0\x9f\x8e\xbb"=>"\xee\x94\x87", "\xf0\x9f\x8e\xbc"=>"\xee\xab\x8c", "\xe3\x80\xbd"=>"[\xe6\xad\x8c\xe8\xa8\x98\xe5\x8f\xb7]", "\xf0\x9f\x93\xb7"=>"\xee\x94\x95", "\xf0\x9f\x93\xb9"=>"\xee\x95\xbe",
         
     | 
| 
      
 1039 
     | 
    
         
            +
                  "\xf0\x9f\x93\xba"=>"\xee\x94\x82", "\xf0\x9f\x93\xbb"=>"\xee\x96\xb9", "\xf0\x9f\x93\xbc"=>"\xee\x96\x80", "\xf0\x9f\x92\x8b"=>"\xee\x93\xab", "\xf0\x9f\x92\x8c"=>"\xee\xad\xb8",
         
     | 
| 
      
 1040 
     | 
    
         
            +
                  "\xf0\x9f\x92\x8d"=>"\xee\x94\x94", "\xf0\x9f\x92\x8e"=>"\xee\x94\x94", "\xf0\x9f\x92\x8f"=>"\xee\x97\x8a", "\xf0\x9f\x92\x90"=>"\xee\xaa\x95", "\xf0\x9f\x92\x91"=>"\xee\xab\x9a",
         
     | 
| 
      
 1041 
     | 
    
         
            +
                  "\xf0\x9f\x92\x92"=>"\xee\x96\xbb", "\xf0\x9f\x94\x9e"=>"\xee\xaa\x83", "\xc2\xa9"=>"\xee\x95\x98", "\xc2\xae"=>"\xee\x95\x99", "\xe2\x84\xa2"=>"\xee\x95\x8e",
         
     | 
| 
      
 1042 
     | 
    
         
            +
                  "\xe2\x84\xb9"=>"\xee\x94\xb3", "#\xe2\x83\xa3"=>"\xee\xae\x84", "1\xe2\x83\xa3"=>"\xee\x94\xa2", "2\xe2\x83\xa3"=>"\xee\x94\xa3", "3\xe2\x83\xa3"=>"\xee\x94\xa4",
         
     | 
| 
      
 1043 
     | 
    
         
            +
                  "4\xe2\x83\xa3"=>"\xee\x94\xa5", "5\xe2\x83\xa3"=>"\xee\x94\xa6", "6\xe2\x83\xa3"=>"\xee\x94\xa7", "7\xe2\x83\xa3"=>"\xee\x94\xa8", "8\xe2\x83\xa3"=>"\xee\x94\xa9",
         
     | 
| 
      
 1044 
     | 
    
         
            +
                  "9\xe2\x83\xa3"=>"\xee\x94\xaa", "0\xe2\x83\xa3"=>"\xee\x96\xac", "\xf0\x9f\x94\x9f"=>"\xee\x94\xab", "\xf0\x9f\x93\xb6"=>"\xee\xaa\x84", "\xf0\x9f\x93\xb3"=>"\xee\xaa\x90",
         
     | 
| 
      
 1045 
     | 
    
         
            +
                  "\xf0\x9f\x93\xb4"=>"\xee\xaa\x91", "\xf0\x9f\x8d\x94"=>"\xee\x93\x96", "\xf0\x9f\x8d\x99"=>"\xee\x93\x95", "\xf0\x9f\x8d\xb0"=>"\xee\x93\x90", "\xf0\x9f\x8d\x9c"=>"\xee\x96\xb4",
         
     | 
| 
      
 1046 
     | 
    
         
            +
                  "\xf0\x9f\x8d\x9e"=>"\xee\xaa\xaf", "\xf0\x9f\x8d\xb3"=>"\xee\x93\x91", "\xf0\x9f\x8d\xa6"=>"\xee\xaa\xb0", "\xf0\x9f\x8d\x9f"=>"\xee\xaa\xb1", "\xf0\x9f\x8d\xa1"=>"\xee\xaa\xb2",
         
     | 
| 
      
 1047 
     | 
    
         
            +
                  "\xf0\x9f\x8d\x98"=>"\xee\xaa\xb3", "\xf0\x9f\x8d\x9a"=>"\xee\xaa\xb4", "\xf0\x9f\x8d\x9d"=>"\xee\xaa\xb5", "\xf0\x9f\x8d\x9b"=>"\xee\xaa\xb6", "\xf0\x9f\x8d\xa2"=>"\xee\xaa\xb7",
         
     | 
| 
      
 1048 
     | 
    
         
            +
                  "\xf0\x9f\x8d\xa3"=>"\xee\xaa\xb8", "\xf0\x9f\x8d\xb1"=>"\xee\xaa\xbd", "\xf0\x9f\x8d\xb2"=>"\xee\xaa\xbe", "\xf0\x9f\x8d\xa7"=>"\xee\xab\xaa", "\xf0\x9f\x8d\x96"=>"\xee\x93\x84",
         
     | 
| 
      
 1049 
     | 
    
         
            +
                  "\xf0\x9f\x8d\xa5"=>"\xee\x93\xad", "\xf0\x9f\x8d\xa0"=>"\xee\xac\xba", "\xf0\x9f\x8d\x95"=>"\xee\xac\xbb", "\xf0\x9f\x8d\x97"=>"\xee\xac\xbc", "\xf0\x9f\x8d\xa8"=>"\xee\xad\x8a",
         
     | 
| 
      
 1050 
     | 
    
         
            +
                  "\xf0\x9f\x8d\xa9"=>"\xee\xad\x8b", "\xf0\x9f\x8d\xaa"=>"\xee\xad\x8c", "\xf0\x9f\x8d\xab"=>"\xee\xad\x8d", "\xf0\x9f\x8d\xac"=>"\xee\xad\x8e", "\xf0\x9f\x8d\xad"=>"\xee\xad\x8f",
         
     | 
| 
      
 1051 
     | 
    
         
            +
                  "\xf0\x9f\x8d\xae"=>"\xee\xad\x96", "\xf0\x9f\x8d\xaf"=>"\xee\xad\x99", "\xf0\x9f\x8d\xa4"=>"\xee\xad\xb0", "\xf0\x9f\x8d\xb4"=>"\xee\x92\xac", "\xe2\x98\x95"=>"\xee\x96\x97",
         
     | 
| 
      
 1052 
     | 
    
         
            +
                  "\xf0\x9f\x8d\xb8"=>"\xee\x93\x82", "\xf0\x9f\x8d\xba"=>"\xee\x93\x83", "\xf0\x9f\x8d\xb5"=>"\xee\xaa\xae", "\xf0\x9f\x8d\xb6"=>"\xee\xaa\x97", "\xf0\x9f\x8d\xb7"=>"\xee\x93\x81",
         
     | 
| 
      
 1053 
     | 
    
         
            +
                  "\xf0\x9f\x8d\xbb"=>"\xee\xaa\x98", "\xf0\x9f\x8d\xb9"=>"\xee\xac\xbe", "\xe2\x86\x97"=>"\xee\x95\x95", "\xe2\x86\x98"=>"\xee\x95\x8d", "\xe2\x86\x96"=>"\xee\x95\x8c",
         
     | 
| 
      
 1054 
     | 
    
         
            +
                  "\xe2\x86\x99"=>"\xee\x95\x96", "\xe2\xa4\xb4"=>"\xee\xac\xad", "\xe2\xa4\xb5"=>"\xee\xac\xae", "\xe2\x86\x94"=>"\xee\xad\xba", "\xe2\x86\x95"=>"\xee\xad\xbb",
         
     | 
| 
      
 1055 
     | 
    
         
            +
                  "\xe2\xac\x86"=>"\xee\x94\xbf", "\xe2\xac\x87"=>"\xee\x95\x80", "\xe2\x9e\xa1"=>"\xee\x95\x92", "\xe2\xac\x85"=>"\xee\x95\x93", "\xe2\x96\xb6"=>"\xee\x94\xae",
         
     | 
| 
      
 1056 
     | 
    
         
            +
                  "\xe2\x97\x80"=>"\xee\x94\xad", "\xe2\x8f\xa9"=>"\xee\x94\xb0", "\xe2\x8f\xaa"=>"\xee\x94\xaf", "\xe2\x8f\xab"=>"\xee\x95\x85", "\xe2\x8f\xac"=>"\xee\x95\x84",
         
     | 
| 
      
 1057 
     | 
    
         
            +
                  "\xf0\x9f\x94\xba"=>"\xee\x95\x9a", "\xf0\x9f\x94\xbb"=>"\xee\x95\x9b", "\xf0\x9f\x94\xbc"=>"\xee\x95\x83", "\xf0\x9f\x94\xbd"=>"\xee\x95\x82", "\xe2\xad\x95"=>"\xee\xaa\xad",
         
     | 
| 
      
 1058 
     | 
    
         
            +
                  "\xe2\x9d\x8c"=>"\xee\x95\x90", "\xe2\x9d\x8e"=>"\xee\x95\x91", "\xe2\x9d\x97"=>"\xee\x92\x82", "\xe2\x81\x89"=>"\xee\xac\xaf", "\xe2\x80\xbc"=>"\xee\xac\xb0",
         
     | 
| 
      
 1059 
     | 
    
         
            +
                  "\xe2\x9d\x93"=>"\xee\x92\x83", "\xe2\x9d\x94"=>"\xee\x92\x83", "\xe2\x9d\x95"=>"\xee\x92\x82", "\xe3\x80\xb0"=>"\xe3\x80\x93", "\xe2\x9e\xb0"=>"\xee\xac\xb1",
         
     | 
| 
      
 1060 
     | 
    
         
            +
                  "\xe2\x9e\xbf"=>"[\xe3\x83\x95\xe3\x83\xaa\xe3\x83\xbc\xe3\x83\x80\xe3\x82\xa4\xe3\x83\xa4\xe3\x83\xab]", "\xe2\x9d\xa4"=>"\xee\x96\x95", "\xf0\x9f\x92\x93"=>"\xee\xad\xb5", "\xf0\x9f\x92\x94"=>"\xee\x91\xb7", "\xf0\x9f\x92\x95"=>"\xee\x91\xb8",
         
     | 
| 
      
 1061 
     | 
    
         
            +
                  "\xf0\x9f\x92\x96"=>"\xee\xaa\xa6", "\xf0\x9f\x92\x97"=>"\xee\xad\xb5", "\xf0\x9f\x92\x98"=>"\xee\x93\xaa", "\xf0\x9f\x92\x99"=>"\xee\xaa\xa7", "\xf0\x9f\x92\x9a"=>"\xee\xaa\xa8",
         
     | 
| 
      
 1062 
     | 
    
         
            +
                  "\xf0\x9f\x92\x9b"=>"\xee\xaa\xa9", "\xf0\x9f\x92\x9c"=>"\xee\xaa\xaa", "\xf0\x9f\x92\x9d"=>"\xee\xad\x94", "\xf0\x9f\x92\x9e"=>"\xee\x96\xaf", "\xf0\x9f\x92\x9f"=>"\xee\x96\x95",
         
     | 
| 
      
 1063 
     | 
    
         
            +
                  "\xe2\x99\xa5"=>"\xee\xaa\xa5", "\xe2\x99\xa0"=>"\xee\x96\xa1", "\xe2\x99\xa6"=>"\xee\x96\xa2", "\xe2\x99\xa3"=>"\xee\x96\xa3", "\xf0\x9f\x9a\xac"=>"\xee\x91\xbd",
         
     | 
| 
      
 1064 
     | 
    
         
            +
                  "\xf0\x9f\x9a\xad"=>"\xee\x91\xbe", "\xe2\x99\xbf"=>"\xee\x91\xbf", "\xf0\x9f\x9a\xa9"=>"\xee\xac\xac", "\xe2\x9a\xa0"=>"\xee\x92\x81", "\xe2\x9b\x94"=>"\xee\x92\x84",
         
     | 
| 
      
 1065 
     | 
    
         
            +
                  "\xe2\x99\xbb"=>"\xee\xad\xb9", "\xf0\x9f\x9a\xb2"=>"\xee\x92\xae", "\xf0\x9f\x9a\xb6"=>"\xee\xad\xb2", "\xf0\x9f\x9a\xb9"=>"[\xe2\x99\x82]", "\xf0\x9f\x9a\xba"=>"[\xe2\x99\x80]",
         
     | 
| 
      
 1066 
     | 
    
         
            +
                  "\xf0\x9f\x9b\x80"=>"\xee\x97\x98", "\xf0\x9f\x9a\xbb"=>"\xee\x92\xa5", "\xf0\x9f\x9a\xbd"=>"\xee\x92\xa5", "\xf0\x9f\x9a\xbe"=>"\xee\x92\xa5", "\xf0\x9f\x9a\xbc"=>"\xee\xac\x98",
         
     | 
| 
      
 1067 
     | 
    
         
            +
                  "\xf0\x9f\x9a\xaa"=>"[\xe3\x83\x89\xe3\x82\xa2]", "\xf0\x9f\x9a\xab"=>"\xee\x95\x81", "\xe2\x9c\x94"=>"\xee\x95\x97", "\xf0\x9f\x86\x91"=>"\xee\x96\xab", "\xf0\x9f\x86\x92"=>"\xee\xaa\x85",
         
     | 
| 
      
 1068 
     | 
    
         
            +
                  "\xf0\x9f\x86\x93"=>"\xee\x95\xb8", "\xf0\x9f\x86\x94"=>"\xee\xaa\x88", "\xf0\x9f\x86\x95"=>"\xee\x96\xb5", "\xf0\x9f\x86\x96"=>"[NG]", "\xf0\x9f\x86\x97"=>"\xee\x96\xad",
         
     | 
| 
      
 1069 
     | 
    
         
            +
                  "\xf0\x9f\x86\x98"=>"\xee\x93\xa8", "\xf0\x9f\x86\x99"=>"\xee\x94\x8f", "\xf0\x9f\x86\x9a"=>"\xee\x97\x92", "\xf0\x9f\x88\x81"=>"[\xe3\x82\xb3\xe3\x82\xb3]", "\xf0\x9f\x88\x82"=>"\xee\xaa\x87",
         
     | 
| 
      
 1070 
     | 
    
         
            +
                  "\xf0\x9f\x88\xb2"=>"[\xe7\xa6\x81]", "\xf0\x9f\x88\xb3"=>"\xee\xaa\x8a", "\xf0\x9f\x88\xb4"=>"[\xe5\x90\x88]", "\xf0\x9f\x88\xb5"=>"\xee\xaa\x89", "\xf0\x9f\x88\xb6"=>"[\xe6\x9c\x89]",
         
     | 
| 
      
 1071 
     | 
    
         
            +
                  "\xf0\x9f\x88\x9a"=>"[\xe7\x84\xa1]", "\xf0\x9f\x88\xb7"=>"[\xe6\x9c\x88]", "\xf0\x9f\x88\xb8"=>"[\xe7\x94\xb3]", "\xf0\x9f\x88\xb9"=>"\xee\xaa\x86", "\xf0\x9f\x88\xaf"=>"\xee\xaa\x8b",
         
     | 
| 
      
 1072 
     | 
    
         
            +
                  "\xf0\x9f\x88\xba"=>"\xee\xaa\x8c", "\xe3\x8a\x99"=>"\xee\x93\xb1", "\xe3\x8a\x97"=>"\xee\xaa\x99", "\xf0\x9f\x89\x90"=>"\xee\x93\xb7", "\xf0\x9f\x89\x91"=>"\xee\xac\x81",
         
     | 
| 
      
 1073 
     | 
    
         
            +
                  "\xe2\x9e\x95"=>"\xee\x94\xbc", "\xe2\x9e\x96"=>"\xee\x94\xbd", "\xe2\x9c\x96"=>"\xee\x95\x8f", "\xe2\x9e\x97"=>"\xee\x95\x94", "\xf0\x9f\x92\xa0"=>"\xe3\x80\x93",
         
     | 
| 
      
 1074 
     | 
    
         
            +
                  "\xf0\x9f\x92\xa1"=>"\xee\x91\xb6", "\xf0\x9f\x92\xa2"=>"\xee\x93\xa5", "\xf0\x9f\x92\xa3"=>"\xee\x91\xba", "\xf0\x9f\x92\xa4"=>"\xee\x91\xb5", "\xf0\x9f\x92\xa5"=>"\xee\x96\xb0",
         
     | 
| 
      
 1075 
     | 
    
         
            +
                  "\xf0\x9f\x92\xa6"=>"\xee\x96\xb1", "\xf0\x9f\x92\xa7"=>"\xee\x93\xa6", "\xf0\x9f\x92\xa8"=>"\xee\x93\xb4", "\xf0\x9f\x92\xa9"=>"\xee\x93\xb5", "\xf0\x9f\x92\xaa"=>"\xee\x93\xa9",
         
     | 
| 
      
 1076 
     | 
    
         
            +
                  "\xf0\x9f\x92\xab"=>"\xee\xad\x9c", "\xf0\x9f\x92\xac"=>"\xee\x93\xbd", "\xe2\x9c\xa8"=>"\xee\xaa\xab", "\xe2\x9c\xb4"=>"\xee\x91\xb9", "\xe2\x9c\xb3"=>"\xee\x94\xbe",
         
     | 
| 
      
 1077 
     | 
    
         
            +
                  "\xe2\x9a\xaa"=>"\xee\x94\xba", "\xe2\x9a\xab"=>"\xee\x94\xbb", "\xf0\x9f\x94\xb4"=>"\xee\x95\x8a", "\xf0\x9f\x94\xb5"=>"\xee\x95\x8b", "\xf0\x9f\x94\xb2"=>"\xee\x95\x8b",
         
     | 
| 
      
 1078 
     | 
    
         
            +
                  "\xf0\x9f\x94\xb3"=>"\xee\x95\x8b", "\xe2\xad\x90"=>"\xee\x92\x8b", "\xe2\xac\x9c"=>"\xee\x95\x88", "\xe2\xac\x9b"=>"\xee\x95\x89", "\xe2\x96\xab"=>"\xee\x94\xb1",
         
     | 
| 
      
 1079 
     | 
    
         
            +
                  "\xe2\x96\xaa"=>"\xee\x94\xb2", "\xe2\x97\xbd"=>"\xee\x94\xb4", "\xe2\x97\xbe"=>"\xee\x94\xb5", "\xe2\x97\xbb"=>"\xee\x94\xb8", "\xe2\x97\xbc"=>"\xee\x94\xb9",
         
     | 
| 
      
 1080 
     | 
    
         
            +
                  "\xf0\x9f\x94\xb6"=>"\xee\x95\x86", "\xf0\x9f\x94\xb7"=>"\xee\x95\x87", "\xf0\x9f\x94\xb8"=>"\xee\x94\xb6", "\xf0\x9f\x94\xb9"=>"\xee\x94\xb7", "\xe2\x9d\x87"=>"\xee\x91\xac",
         
     | 
| 
      
 1081 
     | 
    
         
            +
                  "\xf0\x9f\x92\xae"=>"\xee\x93\xb0", "\xf0\x9f\x92\xaf"=>"\xee\x93\xb2", "\xe2\x86\xa9"=>"\xee\x95\x9d", "\xe2\x86\xaa"=>"\xee\x95\x9c", "\xf0\x9f\x94\x83"=>"\xee\xac\x8d",
         
     | 
| 
      
 1082 
     | 
    
         
            +
                  "\xf0\x9f\x94\x8a"=>"\xee\x94\x91", "\xf0\x9f\x94\x8b"=>"\xee\x96\x84", "\xf0\x9f\x94\x8c"=>"\xee\x96\x89", "\xf0\x9f\x94\x8d"=>"\xee\x94\x98", "\xf0\x9f\x94\x8e"=>"\xee\xac\x85",
         
     | 
| 
      
 1083 
     | 
    
         
            +
                  "\xf0\x9f\x94\x92"=>"\xee\x94\x9c", "\xf0\x9f\x94\x93"=>"\xee\x94\x9c", "\xf0\x9f\x94\x8f"=>"\xee\xac\x8c", "\xf0\x9f\x94\x90"=>"\xee\xab\xbc", "\xf0\x9f\x94\x91"=>"\xee\x94\x99",
         
     | 
| 
      
 1084 
     | 
    
         
            +
                  "\xf0\x9f\x94\x94"=>"\xee\x94\x92", "\xe2\x98\x91"=>"\xee\xac\x82", "\xf0\x9f\x94\x98"=>"\xee\xac\x84", "\xf0\x9f\x94\x96"=>"\xee\xac\x87", "\xf0\x9f\x94\x97"=>"\xee\x96\x8a",
         
     | 
| 
      
 1085 
     | 
    
         
            +
                  "\xf0\x9f\x94\x99"=>"\xee\xac\x86", "\xf0\x9f\x94\x9a"=>"[end]", "\xf0\x9f\x94\x9b"=>"[ON]", "\xf0\x9f\x94\x9c"=>"[SOON]", "\xf0\x9f\x94\x9d"=>"[TOP]",
         
     | 
| 
      
 1086 
     | 
    
         
            +
                  "\xe2\x80\x83"=>"\xee\x96\x8c", "\xe2\x80\x82"=>"\xee\x96\x8d", "\xe2\x80\x85"=>"\xee\x96\x8e", "\xe2\x9c\x85"=>"\xee\x95\x9e", "\xe2\x9c\x8a"=>"\xee\xae\x83",
         
     | 
| 
      
 1087 
     | 
    
         
            +
                  "\xe2\x9c\x8b"=>"\xee\x96\xa7", "\xe2\x9c\x8c"=>"\xee\x96\xa6", "\xf0\x9f\x91\x8a"=>"\xee\x93\xb3", "\xf0\x9f\x91\x8d"=>"\xee\x93\xb9", "\xe2\x98\x9d"=>"\xee\x93\xb6",
         
     | 
| 
      
 1088 
     | 
    
         
            +
                  "\xf0\x9f\x91\x86"=>"\xee\xaa\x8d", "\xf0\x9f\x91\x87"=>"\xee\xaa\x8e", "\xf0\x9f\x91\x88"=>"\xee\x93\xbf", "\xf0\x9f\x91\x89"=>"\xee\x94\x80", "\xf0\x9f\x91\x8b"=>"\xee\xab\x96",
         
     | 
| 
      
 1089 
     | 
    
         
            +
                  "\xf0\x9f\x91\x8f"=>"\xee\xab\x93", "\xf0\x9f\x91\x8c"=>"\xee\xab\x94", "\xf0\x9f\x91\x8e"=>"\xee\xab\x95", "\xf0\x9f\x91\x90"=>"\xee\xab\x96",
         
     | 
| 
      
 1090 
     | 
    
         
            +
                },
         
     | 
| 
      
 1091 
     | 
    
         
            +
                'unified_to_softbank' => {
         
     | 
| 
      
 1092 
     | 
    
         
            +
                  "\xe2\x98\x80"=>"\xee\x81\x8a", "\xe2\x98\x81"=>"\xee\x81\x89", "\xe2\x98\x94"=>"\xee\x81\x8b", "\xe2\x9b\x84"=>"\xee\x81\x88",
         
     | 
| 
      
 1093 
     | 
    
         
            +
                  "\xe2\x9a\xa1"=>"\xee\x84\xbd", "\xf0\x9f\x8c\x80"=>"\xee\x91\x83", "\xf0\x9f\x8c\x81"=>"[\xe9\x9c\xa7]", "\xf0\x9f\x8c\x82"=>"\xee\x90\xbc", "\xf0\x9f\x8c\x83"=>"\xee\x91\x8b",
         
     | 
| 
      
 1094 
     | 
    
         
            +
                  "\xf0\x9f\x8c\x84"=>"\xee\x81\x8d", "\xf0\x9f\x8c\x85"=>"\xee\x91\x89", "\xf0\x9f\x8c\x86"=>"\xee\x85\x86", "\xf0\x9f\x8c\x87"=>"\xee\x91\x8a", "\xf0\x9f\x8c\x88"=>"\xee\x91\x8c",
         
     | 
| 
      
 1095 
     | 
    
         
            +
                  "\xe2\x9d\x84"=>"[\xe9\x9b\xaa\xe7\xb5\x90\xe6\x99\xb6]", "\xe2\x9b\x85"=>"\xee\x81\x8a\xee\x81\x89", "\xf0\x9f\x8c\x89"=>"\xee\x91\x8b", "\xf0\x9f\x8c\x8a"=>"\xee\x90\xbe", "\xf0\x9f\x8c\x8b"=>"[\xe7\x81\xab\xe5\xb1\xb1]",
         
     | 
| 
      
 1096 
     | 
    
         
            +
                  "\xf0\x9f\x8c\x8c"=>"\xee\x91\x8b", "\xf0\x9f\x8c\x8f"=>"[\xe5\x9c\xb0\xe7\x90\x83]", "\xf0\x9f\x8c\x91"=>"\xe2\x97\x8f", "\xf0\x9f\x8c\x94"=>"\xee\x81\x8c", "\xf0\x9f\x8c\x93"=>"\xee\x81\x8c",
         
     | 
| 
      
 1097 
     | 
    
         
            +
                  "\xf0\x9f\x8c\x99"=>"\xee\x81\x8c", "\xf0\x9f\x8c\x95"=>"\xe2\x97\x8b", "\xf0\x9f\x8c\x9b"=>"\xee\x81\x8c", "\xf0\x9f\x8c\x9f"=>"\xee\x8c\xb5", "\xf0\x9f\x8c\xa0"=>"\xe2\x98\x86\xe5\xbd\xa1",
         
     | 
| 
      
 1098 
     | 
    
         
            +
                  "\xf0\x9f\x95\x90"=>"\xee\x80\xa4", "\xf0\x9f\x95\x91"=>"\xee\x80\xa5", "\xf0\x9f\x95\x92"=>"\xee\x80\xa6", "\xf0\x9f\x95\x93"=>"\xee\x80\xa7", "\xf0\x9f\x95\x94"=>"\xee\x80\xa8",
         
     | 
| 
      
 1099 
     | 
    
         
            +
                  "\xf0\x9f\x95\x95"=>"\xee\x80\xa9", "\xf0\x9f\x95\x96"=>"\xee\x80\xaa", "\xf0\x9f\x95\x97"=>"\xee\x80\xab", "\xf0\x9f\x95\x98"=>"\xee\x80\xac", "\xf0\x9f\x95\x99"=>"\xee\x80\xad",
         
     | 
| 
      
 1100 
     | 
    
         
            +
                  "\xf0\x9f\x95\x9a"=>"\xee\x80\xae", "\xf0\x9f\x95\x9b"=>"\xee\x80\xaf", "\xe2\x8c\x9a"=>"[\xe8\x85\x95\xe6\x99\x82\xe8\xa8\x88]", "\xe2\x8c\x9b"=>"[\xe7\xa0\x82\xe6\x99\x82\xe8\xa8\x88]", "\xe2\x8f\xb0"=>"\xee\x80\xad",
         
     | 
| 
      
 1101 
     | 
    
         
            +
                  "\xe2\x8f\xb3"=>"[\xe7\xa0\x82\xe6\x99\x82\xe8\xa8\x88]", "\xe2\x99\x88"=>"\xee\x88\xbf", "\xe2\x99\x89"=>"\xee\x89\x80", "\xe2\x99\x8a"=>"\xee\x89\x81", "\xe2\x99\x8b"=>"\xee\x89\x82",
         
     | 
| 
      
 1102 
     | 
    
         
            +
                  "\xe2\x99\x8c"=>"\xee\x89\x83", "\xe2\x99\x8d"=>"\xee\x89\x84", "\xe2\x99\x8e"=>"\xee\x89\x85", "\xe2\x99\x8f"=>"\xee\x89\x86", "\xe2\x99\x90"=>"\xee\x89\x87",
         
     | 
| 
      
 1103 
     | 
    
         
            +
                  "\xe2\x99\x91"=>"\xee\x89\x88", "\xe2\x99\x92"=>"\xee\x89\x89", "\xe2\x99\x93"=>"\xee\x89\x8a", "\xe2\x9b\x8e"=>"\xee\x89\x8b", "\xf0\x9f\x8d\x80"=>"\xee\x84\x90",
         
     | 
| 
      
 1104 
     | 
    
         
            +
                  "\xf0\x9f\x8c\xb7"=>"\xee\x8c\x84", "\xf0\x9f\x8c\xb1"=>"\xee\x84\x90", "\xf0\x9f\x8d\x81"=>"\xee\x84\x98", "\xf0\x9f\x8c\xb8"=>"\xee\x80\xb0", "\xf0\x9f\x8c\xb9"=>"\xee\x80\xb2",
         
     | 
| 
      
 1105 
     | 
    
         
            +
                  "\xf0\x9f\x8d\x82"=>"\xee\x84\x99", "\xf0\x9f\x8d\x83"=>"\xee\x91\x87", "\xf0\x9f\x8c\xba"=>"\xee\x8c\x83", "\xf0\x9f\x8c\xbb"=>"\xee\x8c\x85", "\xf0\x9f\x8c\xb4"=>"\xee\x8c\x87",
         
     | 
| 
      
 1106 
     | 
    
         
            +
                  "\xf0\x9f\x8c\xb5"=>"\xee\x8c\x88", "\xf0\x9f\x8c\xbe"=>"\xee\x91\x84", "\xf0\x9f\x8c\xbd"=>"[\xe3\x81\xa8\xe3\x81\x86\xe3\x82\x82\xe3\x82\x8d\xe3\x81\x93\xe3\x81\x97]", "\xf0\x9f\x8d\x84"=>"[\xe3\x82\xad\xe3\x83\x8e\xe3\x82\xb3]", "\xf0\x9f\x8c\xb0"=>"[\xe6\xa0\x97]",
         
     | 
| 
      
 1107 
     | 
    
         
            +
                  "\xf0\x9f\x8c\xbc"=>"\xee\x8c\x85", "\xf0\x9f\x8c\xbf"=>"\xee\x84\x90", "\xf0\x9f\x8d\x92"=>"[\xe3\x81\x95\xe3\x81\x8f\xe3\x82\x89\xe3\x82\x93\xe3\x81\xbc]", "\xf0\x9f\x8d\x8c"=>"[\xe3\x83\x90\xe3\x83\x8a\xe3\x83\x8a]", "\xf0\x9f\x8d\x8e"=>"\xee\x8d\x85",
         
     | 
| 
      
 1108 
     | 
    
         
            +
                  "\xf0\x9f\x8d\x8a"=>"\xee\x8d\x86", "\xf0\x9f\x8d\x93"=>"\xee\x8d\x87", "\xf0\x9f\x8d\x89"=>"\xee\x8d\x88", "\xf0\x9f\x8d\x85"=>"\xee\x8d\x89", "\xf0\x9f\x8d\x86"=>"\xee\x8d\x8a",
         
     | 
| 
      
 1109 
     | 
    
         
            +
                  "\xf0\x9f\x8d\x88"=>"[\xe3\x83\xa1\xe3\x83\xad\xe3\x83\xb3]", "\xf0\x9f\x8d\x8d"=>"[\xe3\x83\x91\xe3\x82\xa4\xe3\x83\x8a\xe3\x83\x83\xe3\x83\x97\xe3\x83\xab]", "\xf0\x9f\x8d\x87"=>"[\xe3\x83\x96\xe3\x83\x89\xe3\x82\xa6]", "\xf0\x9f\x8d\x91"=>"[\xe3\x83\xa2\xe3\x83\xa2]", "\xf0\x9f\x8d\x8f"=>"\xee\x8d\x85",
         
     | 
| 
      
 1110 
     | 
    
         
            +
                  "\xf0\x9f\x91\x80"=>"\xee\x90\x99", "\xf0\x9f\x91\x82"=>"\xee\x90\x9b", "\xf0\x9f\x91\x83"=>"\xee\x90\x9a", "\xf0\x9f\x91\x84"=>"\xee\x90\x9c", "\xf0\x9f\x91\x85"=>"\xee\x90\x89",
         
     | 
| 
      
 1111 
     | 
    
         
            +
                  "\xf0\x9f\x92\x84"=>"\xee\x8c\x9c", "\xf0\x9f\x92\x85"=>"\xee\x8c\x9d", "\xf0\x9f\x92\x86"=>"\xee\x8c\x9e", "\xf0\x9f\x92\x87"=>"\xee\x8c\x9f", "\xf0\x9f\x92\x88"=>"\xee\x8c\xa0",
         
     | 
| 
      
 1112 
     | 
    
         
            +
                  "\xf0\x9f\x91\xa4"=>"\xe3\x80\x93", "\xf0\x9f\x91\xa6"=>"\xee\x80\x81", "\xf0\x9f\x91\xa7"=>"\xee\x80\x82", "\xf0\x9f\x91\xa8"=>"\xee\x80\x84", "\xf0\x9f\x91\xa9"=>"\xee\x80\x85",
         
     | 
| 
      
 1113 
     | 
    
         
            +
                  "\xf0\x9f\x91\xaa"=>"[\xe5\xae\xb6\xe6\x97\x8f]", "\xf0\x9f\x91\xab"=>"\xee\x90\xa8", "\xf0\x9f\x91\xae"=>"\xee\x85\x92", "\xf0\x9f\x91\xaf"=>"\xee\x90\xa9", "\xf0\x9f\x91\xb0"=>"[\xe8\x8a\xb1\xe5\xab\x81]",
         
     | 
| 
      
 1114 
     | 
    
         
            +
                  "\xf0\x9f\x91\xb1"=>"\xee\x94\x95", "\xf0\x9f\x91\xb2"=>"\xee\x94\x96", "\xf0\x9f\x91\xb3"=>"\xee\x94\x97", "\xf0\x9f\x91\xb4"=>"\xee\x94\x98", "\xf0\x9f\x91\xb5"=>"\xee\x94\x99",
         
     | 
| 
      
 1115 
     | 
    
         
            +
                  "\xf0\x9f\x91\xb6"=>"\xee\x94\x9a", "\xf0\x9f\x91\xb7"=>"\xee\x94\x9b", "\xf0\x9f\x91\xb8"=>"\xee\x94\x9c", "\xf0\x9f\x91\xb9"=>"[\xe3\x81\xaa\xe3\x81\xbe\xe3\x81\xaf\xe3\x81\x92]", "\xf0\x9f\x91\xba"=>"[\xe5\xa4\xa9\xe7\x8b\x97]",
         
     | 
| 
      
 1116 
     | 
    
         
            +
                  "\xf0\x9f\x91\xbb"=>"\xee\x84\x9b", "\xf0\x9f\x91\xbc"=>"\xee\x81\x8e", "\xf0\x9f\x91\xbd"=>"\xee\x84\x8c", "\xf0\x9f\x91\xbe"=>"\xee\x84\xab", "\xf0\x9f\x91\xbf"=>"\xee\x84\x9a",
         
     | 
| 
      
 1117 
     | 
    
         
            +
                  "\xf0\x9f\x92\x80"=>"\xee\x84\x9c", "\xf0\x9f\x92\x81"=>"\xee\x89\x93", "\xf0\x9f\x92\x82"=>"\xee\x94\x9e", "\xf0\x9f\x92\x83"=>"\xee\x94\x9f", "\xf0\x9f\x90\x8c"=>"[\xe3\x82\xab\xe3\x82\xbf\xe3\x83\x84\xe3\x83\xa0\xe3\x83\xaa]",
         
     | 
| 
      
 1118 
     | 
    
         
            +
                  "\xf0\x9f\x90\x8d"=>"\xee\x94\xad", "\xf0\x9f\x90\x8e"=>"\xee\x84\xb4", "\xf0\x9f\x90\x94"=>"\xee\x94\xae", "\xf0\x9f\x90\x97"=>"\xee\x94\xaf", "\xf0\x9f\x90\xab"=>"\xee\x94\xb0",
         
     | 
| 
      
 1119 
     | 
    
         
            +
                  "\xf0\x9f\x90\x98"=>"\xee\x94\xa6", "\xf0\x9f\x90\xa8"=>"\xee\x94\xa7", "\xf0\x9f\x90\x92"=>"\xee\x94\xa8", "\xf0\x9f\x90\x91"=>"\xee\x94\xa9", "\xf0\x9f\x90\x99"=>"\xee\x84\x8a",
         
     | 
| 
      
 1120 
     | 
    
         
            +
                  "\xf0\x9f\x90\x9a"=>"\xee\x91\x81", "\xf0\x9f\x90\x9b"=>"\xee\x94\xa5", "\xf0\x9f\x90\x9c"=>"[\xe3\x82\xa2\xe3\x83\xaa]", "\xf0\x9f\x90\x9d"=>"[\xe3\x83\x9f\xe3\x83\x84\xe3\x83\x90\xe3\x83\x81]", "\xf0\x9f\x90\x9e"=>"[\xe3\x81\xa6\xe3\x82\x93\xe3\x81\xa8\xe3\x81\x86\xe8\x99\xab]",
         
     | 
| 
      
 1121 
     | 
    
         
            +
                  "\xf0\x9f\x90\xa0"=>"\xee\x94\xa2", "\xf0\x9f\x90\xa1"=>"\xee\x80\x99", "\xf0\x9f\x90\xa2"=>"[\xe3\x82\xab\xe3\x83\xa1]", "\xf0\x9f\x90\xa4"=>"\xee\x94\xa3", "\xf0\x9f\x90\xa5"=>"\xee\x94\xa3",
         
     | 
| 
      
 1122 
     | 
    
         
            +
                  "\xf0\x9f\x90\xa6"=>"\xee\x94\xa1", "\xf0\x9f\x90\xa3"=>"\xee\x94\xa3", "\xf0\x9f\x90\xa7"=>"\xee\x81\x95", "\xf0\x9f\x90\xa9"=>"\xee\x81\x92", "\xf0\x9f\x90\x9f"=>"\xee\x80\x99",
         
     | 
| 
      
 1123 
     | 
    
         
            +
                  "\xf0\x9f\x90\xac"=>"\xee\x94\xa0", "\xf0\x9f\x90\xad"=>"\xee\x81\x93", "\xf0\x9f\x90\xaf"=>"\xee\x81\x90", "\xf0\x9f\x90\xb1"=>"\xee\x81\x8f", "\xf0\x9f\x90\xb3"=>"\xee\x81\x94",
         
     | 
| 
      
 1124 
     | 
    
         
            +
                  "\xf0\x9f\x90\xb4"=>"\xee\x80\x9a", "\xf0\x9f\x90\xb5"=>"\xee\x84\x89", "\xf0\x9f\x90\xb6"=>"\xee\x81\x92", "\xf0\x9f\x90\xb7"=>"\xee\x84\x8b", "\xf0\x9f\x90\xbb"=>"\xee\x81\x91",
         
     | 
| 
      
 1125 
     | 
    
         
            +
                  "\xf0\x9f\x90\xb9"=>"\xee\x94\xa4", "\xf0\x9f\x90\xba"=>"\xee\x94\xaa", "\xf0\x9f\x90\xae"=>"\xee\x94\xab", "\xf0\x9f\x90\xb0"=>"\xee\x94\xac", "\xf0\x9f\x90\xb8"=>"\xee\x94\xb1",
         
     | 
| 
      
 1126 
     | 
    
         
            +
                  "\xf0\x9f\x90\xbe"=>"\xee\x94\xb6", "\xf0\x9f\x90\xb2"=>"[\xe8\xbe\xb0]", "\xf0\x9f\x90\xbc"=>"[\xe3\x83\x91\xe3\x83\xb3\xe3\x83\x80]", "\xf0\x9f\x90\xbd"=>"\xee\x84\x8b", "\xf0\x9f\x98\xa0"=>"\xee\x81\x99",
         
     | 
| 
      
 1127 
     | 
    
         
            +
                  "\xf0\x9f\x98\xa9"=>"\xee\x90\x83", "\xf0\x9f\x98\xb2"=>"\xee\x90\x90", "\xf0\x9f\x98\x9e"=>"\xee\x81\x98", "\xf0\x9f\x98\xb5"=>"\xee\x90\x86", "\xf0\x9f\x98\xb0"=>"\xee\x90\x8f",
         
     | 
| 
      
 1128 
     | 
    
         
            +
                  "\xf0\x9f\x98\x92"=>"\xee\x90\x8e", "\xf0\x9f\x98\x8d"=>"\xee\x84\x86", "\xf0\x9f\x98\xa4"=>"\xee\x90\x84", "\xf0\x9f\x98\x9c"=>"\xee\x84\x85", "\xf0\x9f\x98\x9d"=>"\xee\x90\x89",
         
     | 
| 
      
 1129 
     | 
    
         
            +
                  "\xf0\x9f\x98\x8b"=>"\xee\x81\x96", "\xf0\x9f\x98\x98"=>"\xee\x90\x98", "\xf0\x9f\x98\x9a"=>"\xee\x90\x97", "\xf0\x9f\x98\xb7"=>"\xee\x90\x8c", "\xf0\x9f\x98\xb3"=>"\xee\x90\x8d",
         
     | 
| 
      
 1130 
     | 
    
         
            +
                  "\xf0\x9f\x98\x83"=>"\xee\x81\x97", "\xf0\x9f\x98\x85"=>"\xee\x90\x95\xee\x8c\xb1", "\xf0\x9f\x98\x86"=>"\xee\x90\x8a", "\xf0\x9f\x98\x81"=>"\xee\x90\x84", "\xf0\x9f\x98\x82"=>"\xee\x90\x92",
         
     | 
| 
      
 1131 
     | 
    
         
            +
                  "\xf0\x9f\x98\x8a"=>"\xee\x81\x96", "\xe2\x98\xba"=>"\xee\x90\x94", "\xf0\x9f\x98\x84"=>"\xee\x90\x95", "\xf0\x9f\x98\xa2"=>"\xee\x90\x93", "\xf0\x9f\x98\xad"=>"\xee\x90\x91",
         
     | 
| 
      
 1132 
     | 
    
         
            +
                  "\xf0\x9f\x98\xa8"=>"\xee\x90\x8b", "\xf0\x9f\x98\xa3"=>"\xee\x90\x86", "\xf0\x9f\x98\xa1"=>"\xee\x90\x96", "\xf0\x9f\x98\x8c"=>"\xee\x90\x8a", "\xf0\x9f\x98\x96"=>"\xee\x90\x87",
         
     | 
| 
      
 1133 
     | 
    
         
            +
                  "\xf0\x9f\x98\x94"=>"\xee\x90\x83", "\xf0\x9f\x98\xb1"=>"\xee\x84\x87", "\xf0\x9f\x98\xaa"=>"\xee\x90\x88", "\xf0\x9f\x98\x8f"=>"\xee\x90\x82", "\xf0\x9f\x98\x93"=>"\xee\x84\x88",
         
     | 
| 
      
 1134 
     | 
    
         
            +
                  "\xf0\x9f\x98\xa5"=>"\xee\x90\x81", "\xf0\x9f\x98\xab"=>"\xee\x90\x86", "\xf0\x9f\x98\x89"=>"\xee\x90\x85", "\xf0\x9f\x98\xba"=>"\xee\x81\x97", "\xf0\x9f\x98\xb8"=>"\xee\x90\x84",
         
     | 
| 
      
 1135 
     | 
    
         
            +
                  "\xf0\x9f\x98\xb9"=>"\xee\x90\x92", "\xf0\x9f\x98\xbd"=>"\xee\x90\x98", "\xf0\x9f\x98\xbb"=>"\xee\x84\x86", "\xf0\x9f\x98\xbf"=>"\xee\x90\x93", "\xf0\x9f\x98\xbe"=>"\xee\x90\x96",
         
     | 
| 
      
 1136 
     | 
    
         
            +
                  "\xf0\x9f\x98\xbc"=>"\xee\x90\x84", "\xf0\x9f\x99\x80"=>"\xee\x90\x83", "\xf0\x9f\x99\x85"=>"\xee\x90\xa3", "\xf0\x9f\x99\x86"=>"\xee\x90\xa4", "\xf0\x9f\x99\x87"=>"\xee\x90\xa6",
         
     | 
| 
      
 1137 
     | 
    
         
            +
                  "\xf0\x9f\x99\x88"=>"(/_\xef\xbc\xbc)", "\xf0\x9f\x99\x8a"=>"(\xe3\x83\xbb\xc3\x97\xe3\x83\xbb)", "\xf0\x9f\x99\x89"=>"|(\xe3\x83\xbb\xc3\x97\xe3\x83\xbb)|", "\xf0\x9f\x99\x8b"=>"\xee\x80\x92", "\xf0\x9f\x99\x8c"=>"\xee\x90\xa7",
         
     | 
| 
      
 1138 
     | 
    
         
            +
                  "\xf0\x9f\x99\x8d"=>"\xee\x90\x83", "\xf0\x9f\x99\x8e"=>"\xee\x90\x96", "\xf0\x9f\x99\x8f"=>"\xee\x90\x9d", "\xf0\x9f\x8f\xa0"=>"\xee\x80\xb6", "\xf0\x9f\x8f\xa1"=>"\xee\x80\xb6",
         
     | 
| 
      
 1139 
     | 
    
         
            +
                  "\xf0\x9f\x8f\xa2"=>"\xee\x80\xb8", "\xf0\x9f\x8f\xa3"=>"\xee\x85\x93", "\xf0\x9f\x8f\xa5"=>"\xee\x85\x95", "\xf0\x9f\x8f\xa6"=>"\xee\x85\x8d", "\xf0\x9f\x8f\xa7"=>"\xee\x85\x94",
         
     | 
| 
      
 1140 
     | 
    
         
            +
                  "\xf0\x9f\x8f\xa8"=>"\xee\x85\x98", "\xf0\x9f\x8f\xa9"=>"\xee\x94\x81", "\xf0\x9f\x8f\xaa"=>"\xee\x85\x96", "\xf0\x9f\x8f\xab"=>"\xee\x85\x97", "\xe2\x9b\xaa"=>"\xee\x80\xb7",
         
     | 
| 
      
 1141 
     | 
    
         
            +
                  "\xe2\x9b\xb2"=>"\xee\x84\xa1", "\xf0\x9f\x8f\xac"=>"\xee\x94\x84", "\xf0\x9f\x8f\xaf"=>"\xee\x94\x85", "\xf0\x9f\x8f\xb0"=>"\xee\x94\x86", "\xf0\x9f\x8f\xad"=>"\xee\x94\x88",
         
     | 
| 
      
 1142 
     | 
    
         
            +
                  "\xe2\x9a\x93"=>"\xee\x88\x82", "\xf0\x9f\x8f\xae"=>"\xee\x8c\x8b", "\xf0\x9f\x97\xbb"=>"\xee\x80\xbb", "\xf0\x9f\x97\xbc"=>"\xee\x94\x89", "\xf0\x9f\x97\xbd"=>"\xee\x94\x9d",
         
     | 
| 
      
 1143 
     | 
    
         
            +
                  "\xf0\x9f\x97\xbe"=>"[\xe6\x97\xa5\xe6\x9c\xac\xe5\x9c\xb0\xe5\x9b\xb3]", "\xf0\x9f\x97\xbf"=>"[\xe3\x83\xa2\xe3\x82\xa2\xe3\x82\xa4]", "\xf0\x9f\x91\x9e"=>"\xee\x80\x87", "\xf0\x9f\x91\x9f"=>"\xee\x80\x87", "\xf0\x9f\x91\xa0"=>"\xee\x84\xbe",
         
     | 
| 
      
 1144 
     | 
    
         
            +
                  "\xf0\x9f\x91\xa1"=>"\xee\x8c\x9a", "\xf0\x9f\x91\xa2"=>"\xee\x8c\x9b", "\xf0\x9f\x91\xa3"=>"\xee\x94\xb6", "\xf0\x9f\x91\x93"=>"[\xe3\x83\xa1\xe3\x82\xac\xe3\x83\x8d]", "\xf0\x9f\x91\x95"=>"\xee\x80\x86",
         
     | 
| 
      
 1145 
     | 
    
         
            +
                  "\xf0\x9f\x91\x96"=>"[\xe3\x82\xb8\xe3\x83\xbc\xe3\x83\xb3\xe3\x82\xba]", "\xf0\x9f\x91\x91"=>"\xee\x84\x8e", "\xf0\x9f\x91\x94"=>"\xee\x8c\x82", "\xf0\x9f\x91\x92"=>"\xee\x8c\x98", "\xf0\x9f\x91\x97"=>"\xee\x8c\x99",
         
     | 
| 
      
 1146 
     | 
    
         
            +
                  "\xf0\x9f\x91\x98"=>"\xee\x8c\xa1", "\xf0\x9f\x91\x99"=>"\xee\x8c\xa2", "\xf0\x9f\x91\x9a"=>"\xee\x80\x86", "\xf0\x9f\x91\x9b"=>"[\xe8\xb2\xa1\xe5\xb8\x83]", "\xf0\x9f\x91\x9c"=>"\xee\x8c\xa3",
         
     | 
| 
      
 1147 
     | 
    
         
            +
                  "\xf0\x9f\x91\x9d"=>"[\xe3\x81\xb5\xe3\x81\x8f\xe3\x82\x8d]", "\xf0\x9f\x92\xb0"=>"\xee\x84\xaf", "\xf0\x9f\x92\xb1"=>"\xee\x85\x89", "\xf0\x9f\x92\xb9"=>"\xee\x85\x8a", "\xf0\x9f\x92\xb2"=>"\xee\x84\xaf",
         
     | 
| 
      
 1148 
     | 
    
         
            +
                  "\xf0\x9f\x92\xb3"=>"[\xe3\x82\xab\xe3\x83\xbc\xe3\x83\x89]", "\xf0\x9f\x92\xb4"=>"\xef\xbf\xa5", "\xf0\x9f\x92\xb5"=>"\xee\x84\xaf", "\xf0\x9f\x92\xb8"=>"[\xe9\xa3\x9b\xe3\x82\x93\xe3\x81\xa7\xe3\x81\x84\xe3\x81\x8f\xe3\x81\x8a\xe9\x87\x91]", "\xf0\x9f\x87\xa8\xf0\x9f\x87\xb3"=>"\xee\x94\x93",
         
     | 
| 
      
 1149 
     | 
    
         
            +
                  "\xf0\x9f\x87\xa9\xf0\x9f\x87\xaa"=>"\xee\x94\x8e", "\xf0\x9f\x87\xaa\xf0\x9f\x87\xb8"=>"\xee\x94\x91", "\xf0\x9f\x87\xab\xf0\x9f\x87\xb7"=>"\xee\x94\x8d", "\xf0\x9f\x87\xac\xf0\x9f\x87\xa7"=>"\xee\x94\x90", "\xf0\x9f\x87\xae\xf0\x9f\x87\xb9"=>"\xee\x94\x8f",
         
     | 
| 
      
 1150 
     | 
    
         
            +
                  "\xf0\x9f\x87\xaf\xf0\x9f\x87\xb5"=>"\xee\x94\x8b", "\xf0\x9f\x87\xb0\xf0\x9f\x87\xb7"=>"\xee\x94\x94", "\xf0\x9f\x87\xb7\xf0\x9f\x87\xba"=>"\xee\x94\x92", "\xf0\x9f\x87\xba\xf0\x9f\x87\xb8"=>"\xee\x94\x8c", "\xf0\x9f\x94\xa5"=>"\xee\x84\x9d",
         
     | 
| 
      
 1151 
     | 
    
         
            +
                  "\xf0\x9f\x94\xa6"=>"[\xe6\x87\x90\xe4\xb8\xad\xe9\x9b\xbb\xe7\x81\xaf]", "\xf0\x9f\x94\xa7"=>"[\xe3\x83\xac\xe3\x83\xb3\xe3\x83\x81]", "\xf0\x9f\x94\xa8"=>"\xee\x84\x96", "\xf0\x9f\x94\xa9"=>"[\xe3\x83\x8d\xe3\x82\xb8]", "\xf0\x9f\x94\xaa"=>"[\xe5\x8c\x85\xe4\xb8\x81]",
         
     | 
| 
      
 1152 
     | 
    
         
            +
                  "\xf0\x9f\x94\xab"=>"\xee\x84\x93", "\xf0\x9f\x94\xae"=>"\xee\x88\xbe", "\xf0\x9f\x94\xaf"=>"\xee\x88\xbe", "\xf0\x9f\x94\xb0"=>"\xee\x88\x89", "\xf0\x9f\x94\xb1"=>"\xee\x80\xb1",
         
     | 
| 
      
 1153 
     | 
    
         
            +
                  "\xf0\x9f\x92\x89"=>"\xee\x84\xbb", "\xf0\x9f\x92\x8a"=>"\xee\x8c\x8f", "\xf0\x9f\x85\xb0"=>"\xee\x94\xb2", "\xf0\x9f\x85\xb1"=>"\xee\x94\xb3", "\xf0\x9f\x86\x8e"=>"\xee\x94\xb4",
         
     | 
| 
      
 1154 
     | 
    
         
            +
                  "\xf0\x9f\x85\xbe"=>"\xee\x94\xb5", "\xf0\x9f\x8e\x80"=>"\xee\x8c\x94", "\xf0\x9f\x8e\x81"=>"\xee\x84\x92", "\xf0\x9f\x8e\x82"=>"\xee\x8d\x8b", "\xf0\x9f\x8e\x84"=>"\xee\x80\xb3",
         
     | 
| 
      
 1155 
     | 
    
         
            +
                  "\xf0\x9f\x8e\x85"=>"\xee\x91\x88", "\xf0\x9f\x8e\x8c"=>"\xee\x85\x83", "\xf0\x9f\x8e\x86"=>"\xee\x84\x97", "\xf0\x9f\x8e\x88"=>"\xee\x8c\x90", "\xf0\x9f\x8e\x89"=>"\xee\x8c\x92",
         
     | 
| 
      
 1156 
     | 
    
         
            +
                  "\xf0\x9f\x8e\x8d"=>"\xee\x90\xb6", "\xf0\x9f\x8e\x8e"=>"\xee\x90\xb8", "\xf0\x9f\x8e\x93"=>"\xee\x90\xb9", "\xf0\x9f\x8e\x92"=>"\xee\x90\xba", "\xf0\x9f\x8e\x8f"=>"\xee\x90\xbb",
         
     | 
| 
      
 1157 
     | 
    
         
            +
                  "\xf0\x9f\x8e\x87"=>"\xee\x91\x80", "\xf0\x9f\x8e\x90"=>"\xee\x91\x82", "\xf0\x9f\x8e\x83"=>"\xee\x91\x85", "\xf0\x9f\x8e\x8a"=>"[\xe3\x82\xaa\xe3\x83\xa1\xe3\x83\x87\xe3\x83\x88\xe3\x82\xa6]", "\xf0\x9f\x8e\x8b"=>"[\xe4\xb8\x83\xe5\xa4\x95]",
         
     | 
| 
      
 1158 
     | 
    
         
            +
                  "\xf0\x9f\x8e\x91"=>"\xee\x91\x86", "\xf0\x9f\x93\x9f"=>"[\xe3\x83\x9d\xe3\x82\xb1\xe3\x83\x99\xe3\x83\xab]", "\xe2\x98\x8e"=>"\xee\x80\x89", "\xf0\x9f\x93\x9e"=>"\xee\x80\x89", "\xf0\x9f\x93\xb1"=>"\xee\x80\x8a",
         
     | 
| 
      
 1159 
     | 
    
         
            +
                  "\xf0\x9f\x93\xb2"=>"\xee\x84\x84", "\xf0\x9f\x93\x9d"=>"\xee\x8c\x81", "\xf0\x9f\x93\xa0"=>"\xee\x80\x8b", "\xe2\x9c\x89"=>"\xee\x84\x83", "\xf0\x9f\x93\xa8"=>"\xee\x84\x83",
         
     | 
| 
      
 1160 
     | 
    
         
            +
                  "\xf0\x9f\x93\xa9"=>"\xee\x84\x83", "\xf0\x9f\x93\xaa"=>"\xee\x84\x81", "\xf0\x9f\x93\xab"=>"\xee\x84\x81", "\xf0\x9f\x93\xae"=>"\xee\x84\x82", "\xf0\x9f\x93\xb0"=>"[\xe6\x96\xb0\xe8\x81\x9e]",
         
     | 
| 
      
 1161 
     | 
    
         
            +
                  "\xf0\x9f\x93\xa2"=>"\xee\x85\x82", "\xf0\x9f\x93\xa3"=>"\xee\x8c\x97", "\xf0\x9f\x93\xa1"=>"\xee\x85\x8b", "\xf0\x9f\x93\xa4"=>"[\xe9\x80\x81\xe4\xbf\xa1BOX]", "\xf0\x9f\x93\xa5"=>"[\xe5\x8f\x97\xe4\xbf\xa1BOX]",
         
     | 
| 
      
 1162 
     | 
    
         
            +
                  "\xf0\x9f\x93\xa6"=>"\xee\x84\x92", "\xf0\x9f\x93\xa7"=>"\xee\x84\x83", "\xf0\x9f\x94\xa0"=>"[ABCD]", "\xf0\x9f\x94\xa1"=>"[abcd]", "\xf0\x9f\x94\xa2"=>"[1234]",
         
     | 
| 
      
 1163 
     | 
    
         
            +
                  "\xf0\x9f\x94\xa3"=>"[\xe8\xa8\x98\xe5\x8f\xb7]", "\xf0\x9f\x94\xa4"=>"[ABC]", "\xe2\x9c\x92"=>"[\xe3\x83\x9a\xe3\x83\xb3]", "\xf0\x9f\x92\xba"=>"\xee\x84\x9f", "\xf0\x9f\x92\xbb"=>"\xee\x80\x8c",
         
     | 
| 
      
 1164 
     | 
    
         
            +
                  "\xe2\x9c\x8f"=>"\xee\x8c\x81", "\xf0\x9f\x93\x8e"=>"[\xe3\x82\xaf\xe3\x83\xaa\xe3\x83\x83\xe3\x83\x97]", "\xf0\x9f\x92\xbc"=>"\xee\x84\x9e", "\xf0\x9f\x92\xbd"=>"\xee\x8c\x96", "\xf0\x9f\x92\xbe"=>"\xee\x8c\x96",
         
     | 
| 
      
 1165 
     | 
    
         
            +
                  "\xf0\x9f\x92\xbf"=>"\xee\x84\xa6", "\xf0\x9f\x93\x80"=>"\xee\x84\xa7", "\xe2\x9c\x82"=>"\xee\x8c\x93", "\xf0\x9f\x93\x8d"=>"[\xe7\x94\xbb\xe3\x81\xb3\xe3\x82\x87\xe3\x81\x86]", "\xf0\x9f\x93\x83"=>"\xee\x8c\x81",
         
     | 
| 
      
 1166 
     | 
    
         
            +
                  "\xf0\x9f\x93\x84"=>"\xee\x8c\x81", "\xf0\x9f\x93\x85"=>"[\xe3\x82\xab\xe3\x83\xac\xe3\x83\xb3\xe3\x83\x80\xe3\x83\xbc]", "\xf0\x9f\x93\x81"=>"[\xe3\x83\x95\xe3\x82\xa9\xe3\x83\xab\xe3\x83\x80]", "\xf0\x9f\x93\x82"=>"[\xe3\x83\x95\xe3\x82\xa9\xe3\x83\xab\xe3\x83\x80]", "\xf0\x9f\x93\x93"=>"\xee\x85\x88",
         
     | 
| 
      
 1167 
     | 
    
         
            +
                  "\xf0\x9f\x93\x96"=>"\xee\x85\x88", "\xf0\x9f\x93\x94"=>"\xee\x85\x88", "\xf0\x9f\x93\x95"=>"\xee\x85\x88", "\xf0\x9f\x93\x97"=>"\xee\x85\x88", "\xf0\x9f\x93\x98"=>"\xee\x85\x88",
         
     | 
| 
      
 1168 
     | 
    
         
            +
                  "\xf0\x9f\x93\x99"=>"\xee\x85\x88", "\xf0\x9f\x93\x9a"=>"\xee\x85\x88", "\xf0\x9f\x93\x9b"=>"[\xe5\x90\x8d\xe6\x9c\xad]", "\xf0\x9f\x93\x9c"=>"[\xe3\x82\xb9\xe3\x82\xaf\xe3\x83\xad\xe3\x83\xbc\xe3\x83\xab]", "\xf0\x9f\x93\x8b"=>"\xee\x8c\x81",
         
     | 
| 
      
 1169 
     | 
    
         
            +
                  "\xf0\x9f\x93\x86"=>"[\xe3\x82\xab\xe3\x83\xac\xe3\x83\xb3\xe3\x83\x80\xe3\x83\xbc]", "\xf0\x9f\x93\x8a"=>"\xee\x85\x8a", "\xf0\x9f\x93\x88"=>"\xee\x85\x8a", "\xf0\x9f\x93\x89"=>"[\xe3\x82\xb0\xe3\x83\xa9\xe3\x83\x95]", "\xf0\x9f\x93\x87"=>"\xee\x85\x88",
         
     | 
| 
      
 1170 
     | 
    
         
            +
                  "\xf0\x9f\x93\x8c"=>"[\xe7\x94\xbb\xe3\x81\xb3\xe3\x82\x87\xe3\x81\x86]", "\xf0\x9f\x93\x92"=>"\xee\x85\x88", "\xf0\x9f\x93\x8f"=>"[\xe5\xae\x9a\xe8\xa6\x8f]", "\xf0\x9f\x93\x90"=>"[\xe4\xb8\x89\xe8\xa7\x92\xe5\xae\x9a\xe8\xa6\x8f]", "\xf0\x9f\x93\x91"=>"\xee\x8c\x81",
         
     | 
| 
      
 1171 
     | 
    
         
            +
                  "\xf0\x9f\x8e\xbd"=>"\xe3\x80\x93", "\xe2\x9a\xbe"=>"\xee\x80\x96", "\xe2\x9b\xb3"=>"\xee\x80\x94", "\xf0\x9f\x8e\xbe"=>"\xee\x80\x95", "\xe2\x9a\xbd"=>"\xee\x80\x98",
         
     | 
| 
      
 1172 
     | 
    
         
            +
                  "\xf0\x9f\x8e\xbf"=>"\xee\x80\x93", "\xf0\x9f\x8f\x80"=>"\xee\x90\xaa", "\xf0\x9f\x8f\x81"=>"\xee\x84\xb2", "\xf0\x9f\x8f\x82"=>"[\xe3\x82\xb9\xe3\x83\x8e\xe3\x83\x9c]", "\xf0\x9f\x8f\x83"=>"\xee\x84\x95",
         
     | 
| 
      
 1173 
     | 
    
         
            +
                  "\xf0\x9f\x8f\x84"=>"\xee\x80\x97", "\xf0\x9f\x8f\x86"=>"\xee\x84\xb1", "\xf0\x9f\x8f\x88"=>"\xee\x90\xab", "\xf0\x9f\x8f\x8a"=>"\xee\x90\xad", "\xf0\x9f\x9a\x83"=>"\xee\x80\x9e",
         
     | 
| 
      
 1174 
     | 
    
         
            +
                  "\xf0\x9f\x9a\x87"=>"\xee\x90\xb4", "\xe2\x93\x82"=>"\xee\x90\xb4", "\xf0\x9f\x9a\x84"=>"\xee\x90\xb5", "\xf0\x9f\x9a\x85"=>"\xee\x80\x9f", "\xf0\x9f\x9a\x97"=>"\xee\x80\x9b",
         
     | 
| 
      
 1175 
     | 
    
         
            +
                  "\xf0\x9f\x9a\x99"=>"\xee\x90\xae", "\xf0\x9f\x9a\x8c"=>"\xee\x85\x99", "\xf0\x9f\x9a\x8f"=>"\xee\x85\x90", "\xf0\x9f\x9a\xa2"=>"\xee\x88\x82", "\xe2\x9c\x88"=>"\xee\x80\x9d",
         
     | 
| 
      
 1176 
     | 
    
         
            +
                  "\xe2\x9b\xb5"=>"\xee\x80\x9c", "\xf0\x9f\x9a\x89"=>"\xee\x80\xb9", "\xf0\x9f\x9a\x80"=>"\xee\x84\x8d", "\xf0\x9f\x9a\xa4"=>"\xee\x84\xb5", "\xf0\x9f\x9a\x95"=>"\xee\x85\x9a",
         
     | 
| 
      
 1177 
     | 
    
         
            +
                  "\xf0\x9f\x9a\x9a"=>"\xee\x90\xaf", "\xf0\x9f\x9a\x92"=>"\xee\x90\xb0", "\xf0\x9f\x9a\x91"=>"\xee\x90\xb1", "\xf0\x9f\x9a\x93"=>"\xee\x90\xb2", "\xe2\x9b\xbd"=>"\xee\x80\xba",
         
     | 
| 
      
 1178 
     | 
    
         
            +
                  "\xf0\x9f\x85\xbf"=>"\xee\x85\x8f", "\xf0\x9f\x9a\xa5"=>"\xee\x85\x8e", "\xf0\x9f\x9a\xa7"=>"\xee\x84\xb7", "\xf0\x9f\x9a\xa8"=>"\xee\x90\xb2", "\xe2\x99\xa8"=>"\xee\x84\xa3",
         
     | 
| 
      
 1179 
     | 
    
         
            +
                  "\xe2\x9b\xba"=>"\xee\x84\xa2", "\xf0\x9f\x8e\xa0"=>"\xe3\x80\x93", "\xf0\x9f\x8e\xa1"=>"\xee\x84\xa4", "\xf0\x9f\x8e\xa2"=>"\xee\x90\xb3", "\xf0\x9f\x8e\xa3"=>"\xee\x80\x99",
         
     | 
| 
      
 1180 
     | 
    
         
            +
                  "\xf0\x9f\x8e\xa4"=>"\xee\x80\xbc", "\xf0\x9f\x8e\xa5"=>"\xee\x80\xbd", "\xf0\x9f\x8e\xa6"=>"\xee\x94\x87", "\xf0\x9f\x8e\xa7"=>"\xee\x8c\x8a", "\xf0\x9f\x8e\xa8"=>"\xee\x94\x82",
         
     | 
| 
      
 1181 
     | 
    
         
            +
                  "\xf0\x9f\x8e\xa9"=>"\xee\x94\x83", "\xf0\x9f\x8e\xaa"=>"[\xe3\x82\xa4\xe3\x83\x99\xe3\x83\xb3\xe3\x83\x88]", "\xf0\x9f\x8e\xab"=>"\xee\x84\xa5", "\xf0\x9f\x8e\xac"=>"\xee\x8c\xa4", "\xf0\x9f\x8e\xad"=>"\xee\x94\x83",
         
     | 
| 
      
 1182 
     | 
    
         
            +
                  "\xf0\x9f\x8e\xae"=>"[\xe3\x82\xb2\xe3\x83\xbc\xe3\x83\xa0]", "\xf0\x9f\x80\x84"=>"\xee\x84\xad", "\xf0\x9f\x8e\xaf"=>"\xee\x84\xb0", "\xf0\x9f\x8e\xb0"=>"\xee\x84\xb3", "\xf0\x9f\x8e\xb1"=>"\xee\x90\xac",
         
     | 
| 
      
 1183 
     | 
    
         
            +
                  "\xf0\x9f\x8e\xb2"=>"[\xe3\x82\xb5\xe3\x82\xa4\xe3\x82\xb3\xe3\x83\xad]", "\xf0\x9f\x8e\xb3"=>"[\xe3\x83\x9c\xe3\x83\xbc\xe3\x83\xaa\xe3\x83\xb3\xe3\x82\xb0]", "\xf0\x9f\x8e\xb4"=>"[\xe8\x8a\xb1\xe6\x9c\xad]", "\xf0\x9f\x83\x8f"=>"[\xe3\x82\xb8\xe3\x83\xa7\xe3\x83\xbc\xe3\x82\xab\xe3\x83\xbc]", "\xf0\x9f\x8e\xb5"=>"\xee\x80\xbe",
         
     | 
| 
      
 1184 
     | 
    
         
            +
                  "\xf0\x9f\x8e\xb6"=>"\xee\x8c\xa6", "\xf0\x9f\x8e\xb7"=>"\xee\x81\x80", "\xf0\x9f\x8e\xb8"=>"\xee\x81\x81", "\xf0\x9f\x8e\xb9"=>"[\xe3\x83\x94\xe3\x82\xa2\xe3\x83\x8e]", "\xf0\x9f\x8e\xba"=>"\xee\x81\x82",
         
     | 
| 
      
 1185 
     | 
    
         
            +
                  "\xf0\x9f\x8e\xbb"=>"[\xe3\x83\x90\xe3\x82\xa4\xe3\x82\xaa\xe3\x83\xaa\xe3\x83\xb3]", "\xf0\x9f\x8e\xbc"=>"\xee\x8c\xa6", "\xe3\x80\xbd"=>"\xee\x84\xac", "\xf0\x9f\x93\xb7"=>"\xee\x80\x88", "\xf0\x9f\x93\xb9"=>"\xee\x80\xbd",
         
     | 
| 
      
 1186 
     | 
    
         
            +
                  "\xf0\x9f\x93\xba"=>"\xee\x84\xaa", "\xf0\x9f\x93\xbb"=>"\xee\x84\xa8", "\xf0\x9f\x93\xbc"=>"\xee\x84\xa9", "\xf0\x9f\x92\x8b"=>"\xee\x80\x83", "\xf0\x9f\x92\x8c"=>"\xee\x84\x83\xee\x8c\xa8",
         
     | 
| 
      
 1187 
     | 
    
         
            +
                  "\xf0\x9f\x92\x8d"=>"\xee\x80\xb4", "\xf0\x9f\x92\x8e"=>"\xee\x80\xb5", "\xf0\x9f\x92\x8f"=>"\xee\x84\x91", "\xf0\x9f\x92\x90"=>"\xee\x8c\x86", "\xf0\x9f\x92\x91"=>"\xee\x90\xa5",
         
     | 
| 
      
 1188 
     | 
    
         
            +
                  "\xf0\x9f\x92\x92"=>"\xee\x90\xbd", "\xf0\x9f\x94\x9e"=>"\xee\x88\x87", "\xc2\xa9"=>"\xee\x89\x8e", "\xc2\xae"=>"\xee\x89\x8f", "\xe2\x84\xa2"=>"\xee\x94\xb7",
         
     | 
| 
      
 1189 
     | 
    
         
            +
                  "\xe2\x84\xb9"=>"[\xef\xbd\x89]", "#\xe2\x83\xa3"=>"\xee\x88\x90", "1\xe2\x83\xa3"=>"\xee\x88\x9c", "2\xe2\x83\xa3"=>"\xee\x88\x9d", "3\xe2\x83\xa3"=>"\xee\x88\x9e",
         
     | 
| 
      
 1190 
     | 
    
         
            +
                  "4\xe2\x83\xa3"=>"\xee\x88\x9f", "5\xe2\x83\xa3"=>"\xee\x88\xa0", "6\xe2\x83\xa3"=>"\xee\x88\xa1", "7\xe2\x83\xa3"=>"\xee\x88\xa2", "8\xe2\x83\xa3"=>"\xee\x88\xa3",
         
     | 
| 
      
 1191 
     | 
    
         
            +
                  "9\xe2\x83\xa3"=>"\xee\x88\xa4", "0\xe2\x83\xa3"=>"\xee\x88\xa5", "\xf0\x9f\x94\x9f"=>"[10]", "\xf0\x9f\x93\xb6"=>"\xee\x88\x8b", "\xf0\x9f\x93\xb3"=>"\xee\x89\x90",
         
     | 
| 
      
 1192 
     | 
    
         
            +
                  "\xf0\x9f\x93\xb4"=>"\xee\x89\x91", "\xf0\x9f\x8d\x94"=>"\xee\x84\xa0", "\xf0\x9f\x8d\x99"=>"\xee\x8d\x82", "\xf0\x9f\x8d\xb0"=>"\xee\x81\x86", "\xf0\x9f\x8d\x9c"=>"\xee\x8d\x80",
         
     | 
| 
      
 1193 
     | 
    
         
            +
                  "\xf0\x9f\x8d\x9e"=>"\xee\x8c\xb9", "\xf0\x9f\x8d\xb3"=>"\xee\x85\x87", "\xf0\x9f\x8d\xa6"=>"\xee\x8c\xba", "\xf0\x9f\x8d\x9f"=>"\xee\x8c\xbb", "\xf0\x9f\x8d\xa1"=>"\xee\x8c\xbc",
         
     | 
| 
      
 1194 
     | 
    
         
            +
                  "\xf0\x9f\x8d\x98"=>"\xee\x8c\xbd", "\xf0\x9f\x8d\x9a"=>"\xee\x8c\xbe", "\xf0\x9f\x8d\x9d"=>"\xee\x8c\xbf", "\xf0\x9f\x8d\x9b"=>"\xee\x8d\x81", "\xf0\x9f\x8d\xa2"=>"\xee\x8d\x83",
         
     | 
| 
      
 1195 
     | 
    
         
            +
                  "\xf0\x9f\x8d\xa3"=>"\xee\x8d\x84", "\xf0\x9f\x8d\xb1"=>"\xee\x8d\x8c", "\xf0\x9f\x8d\xb2"=>"\xee\x8d\x8d", "\xf0\x9f\x8d\xa7"=>"\xee\x90\xbf", "\xf0\x9f\x8d\x96"=>"[\xe8\x82\x89]",
         
     | 
| 
      
 1196 
     | 
    
         
            +
                  "\xf0\x9f\x8d\xa5"=>"[\xe3\x81\xaa\xe3\x82\x8b\xe3\x81\xa8]", "\xf0\x9f\x8d\xa0"=>"[\xe3\x82\x84\xe3\x81\x8d\xe3\x81\x84\xe3\x82\x82]", "\xf0\x9f\x8d\x95"=>"[\xe3\x83\x94\xe3\x82\xb6]", "\xf0\x9f\x8d\x97"=>"[\xe3\x83\x81\xe3\x82\xad\xe3\x83\xb3]", "\xf0\x9f\x8d\xa8"=>"[\xe3\x82\xa2\xe3\x82\xa4\xe3\x82\xb9\xe3\x82\xaf\xe3\x83\xaa\xe3\x83\xbc\xe3\x83\xa0]",
         
     | 
| 
      
 1197 
     | 
    
         
            +
                  "\xf0\x9f\x8d\xa9"=>"[\xe3\x83\x89\xe3\x83\xbc\xe3\x83\x8a\xe3\x83\x84]", "\xf0\x9f\x8d\xaa"=>"[\xe3\x82\xaf\xe3\x83\x83\xe3\x82\xad\xe3\x83\xbc]", "\xf0\x9f\x8d\xab"=>"[\xe3\x83\x81\xe3\x83\xa7\xe3\x82\xb3]", "\xf0\x9f\x8d\xac"=>"[\xe3\x82\xad\xe3\x83\xa3\xe3\x83\xb3\xe3\x83\x87\xe3\x82\xa3]", "\xf0\x9f\x8d\xad"=>"[\xe3\x82\xad\xe3\x83\xa3\xe3\x83\xb3\xe3\x83\x87\xe3\x82\xa3]",
         
     | 
| 
      
 1198 
     | 
    
         
            +
                  "\xf0\x9f\x8d\xae"=>"[\xe3\x83\x97\xe3\x83\xaa\xe3\x83\xb3]", "\xf0\x9f\x8d\xaf"=>"[\xe3\x83\x8f\xe3\x83\x81\xe3\x83\x9f\xe3\x83\x84]", "\xf0\x9f\x8d\xa4"=>"[\xe3\x82\xa8\xe3\x83\x93\xe3\x83\x95\xe3\x83\xa9\xe3\x82\xa4]", "\xf0\x9f\x8d\xb4"=>"\xee\x81\x83", "\xe2\x98\x95"=>"\xee\x81\x85",
         
     | 
| 
      
 1199 
     | 
    
         
            +
                  "\xf0\x9f\x8d\xb8"=>"\xee\x81\x84", "\xf0\x9f\x8d\xba"=>"\xee\x81\x87", "\xf0\x9f\x8d\xb5"=>"\xee\x8c\xb8", "\xf0\x9f\x8d\xb6"=>"\xee\x8c\x8b", "\xf0\x9f\x8d\xb7"=>"\xee\x81\x84",
         
     | 
| 
      
 1200 
     | 
    
         
            +
                  "\xf0\x9f\x8d\xbb"=>"\xee\x8c\x8c", "\xf0\x9f\x8d\xb9"=>"\xee\x81\x84", "\xe2\x86\x97"=>"\xee\x88\xb6", "\xe2\x86\x98"=>"\xee\x88\xb8", "\xe2\x86\x96"=>"\xee\x88\xb7",
         
     | 
| 
      
 1201 
     | 
    
         
            +
                  "\xe2\x86\x99"=>"\xee\x88\xb9", "\xe2\xa4\xb4"=>"\xee\x88\xb6", "\xe2\xa4\xb5"=>"\xee\x88\xb8", "\xe2\x86\x94"=>"\xe2\x87\x94", "\xe2\x86\x95"=>"\xe2\x86\x91\xe2\x86\x93",
         
     | 
| 
      
 1202 
     | 
    
         
            +
                  "\xe2\xac\x86"=>"\xee\x88\xb2", "\xe2\xac\x87"=>"\xee\x88\xb3", "\xe2\x9e\xa1"=>"\xee\x88\xb4", "\xe2\xac\x85"=>"\xee\x88\xb5", "\xe2\x96\xb6"=>"\xee\x88\xba",
         
     | 
| 
      
 1203 
     | 
    
         
            +
                  "\xe2\x97\x80"=>"\xee\x88\xbb", "\xe2\x8f\xa9"=>"\xee\x88\xbc", "\xe2\x8f\xaa"=>"\xee\x88\xbd", "\xe2\x8f\xab"=>"\xe2\x96\xb2", "\xe2\x8f\xac"=>"\xe2\x96\xbc",
         
     | 
| 
      
 1204 
     | 
    
         
            +
                  "\xf0\x9f\x94\xba"=>"\xe2\x96\xb2", "\xf0\x9f\x94\xbb"=>"\xe2\x96\xbc", "\xf0\x9f\x94\xbc"=>"\xe2\x96\xb2", "\xf0\x9f\x94\xbd"=>"\xe2\x96\xbc", "\xe2\xad\x95"=>"\xee\x8c\xb2",
         
     | 
| 
      
 1205 
     | 
    
         
            +
                  "\xe2\x9d\x8c"=>"\xee\x8c\xb3", "\xe2\x9d\x8e"=>"\xee\x8c\xb3", "\xe2\x9d\x97"=>"\xee\x80\xa1", "\xe2\x81\x89"=>"\xef\xbc\x81\xef\xbc\x9f", "\xe2\x80\xbc"=>"\xef\xbc\x81\xef\xbc\x81",
         
     | 
| 
      
 1206 
     | 
    
         
            +
                  "\xe2\x9d\x93"=>"\xee\x80\xa0", "\xe2\x9d\x94"=>"\xee\x8c\xb6", "\xe2\x9d\x95"=>"\xee\x8c\xb7", "\xe3\x80\xb0"=>"\xe3\x80\x93", "\xe2\x9e\xb0"=>"\xef\xbd\x9e",
         
     | 
| 
      
 1207 
     | 
    
         
            +
                  "\xe2\x9e\xbf"=>"\xee\x88\x91", "\xe2\x9d\xa4"=>"\xee\x80\xa2", "\xf0\x9f\x92\x93"=>"\xee\x8c\xa7", "\xf0\x9f\x92\x94"=>"\xee\x80\xa3", "\xf0\x9f\x92\x95"=>"\xee\x8c\xa7",
         
     | 
| 
      
 1208 
     | 
    
         
            +
                  "\xf0\x9f\x92\x96"=>"\xee\x8c\xa7", "\xf0\x9f\x92\x97"=>"\xee\x8c\xa8", "\xf0\x9f\x92\x98"=>"\xee\x8c\xa9", "\xf0\x9f\x92\x99"=>"\xee\x8c\xaa", "\xf0\x9f\x92\x9a"=>"\xee\x8c\xab",
         
     | 
| 
      
 1209 
     | 
    
         
            +
                  "\xf0\x9f\x92\x9b"=>"\xee\x8c\xac", "\xf0\x9f\x92\x9c"=>"\xee\x8c\xad", "\xf0\x9f\x92\x9d"=>"\xee\x90\xb7", "\xf0\x9f\x92\x9e"=>"\xee\x8c\xa7", "\xf0\x9f\x92\x9f"=>"\xee\x88\x84",
         
     | 
| 
      
 1210 
     | 
    
         
            +
                  "\xe2\x99\xa5"=>"\xee\x88\x8c", "\xe2\x99\xa0"=>"\xee\x88\x8e", "\xe2\x99\xa6"=>"\xee\x88\x8d", "\xe2\x99\xa3"=>"\xee\x88\x8f", "\xf0\x9f\x9a\xac"=>"\xee\x8c\x8e",
         
     | 
| 
      
 1211 
     | 
    
         
            +
                  "\xf0\x9f\x9a\xad"=>"\xee\x88\x88", "\xe2\x99\xbf"=>"\xee\x88\x8a", "\xf0\x9f\x9a\xa9"=>"[\xe6\x97\x97]", "\xe2\x9a\xa0"=>"\xee\x89\x92", "\xe2\x9b\x94"=>"\xee\x84\xb7",
         
     | 
| 
      
 1212 
     | 
    
         
            +
                  "\xe2\x99\xbb"=>"\xe2\x86\x91\xe2\x86\x93", "\xf0\x9f\x9a\xb2"=>"\xee\x84\xb6", "\xf0\x9f\x9a\xb6"=>"\xee\x88\x81", "\xf0\x9f\x9a\xb9"=>"\xee\x84\xb8", "\xf0\x9f\x9a\xba"=>"\xee\x84\xb9",
         
     | 
| 
      
 1213 
     | 
    
         
            +
                  "\xf0\x9f\x9b\x80"=>"\xee\x84\xbf", "\xf0\x9f\x9a\xbb"=>"\xee\x85\x91", "\xf0\x9f\x9a\xbd"=>"\xee\x85\x80", "\xf0\x9f\x9a\xbe"=>"\xee\x8c\x89", "\xf0\x9f\x9a\xbc"=>"\xee\x84\xba",
         
     | 
| 
      
 1214 
     | 
    
         
            +
                  "\xf0\x9f\x9a\xaa"=>"[\xe3\x83\x89\xe3\x82\xa2]", "\xf0\x9f\x9a\xab"=>"[\xe7\xa6\x81\xe6\xad\xa2]", "\xe2\x9c\x94"=>"[\xe3\x83\x81\xe3\x82\xa7\xe3\x83\x83\xe3\x82\xaf\xe3\x83\x9e\xe3\x83\xbc\xe3\x82\xaf]", "\xf0\x9f\x86\x91"=>"[CL]", "\xf0\x9f\x86\x92"=>"\xee\x88\x94",
         
     | 
| 
      
 1215 
     | 
    
         
            +
                  "\xf0\x9f\x86\x93"=>"[FREE]", "\xf0\x9f\x86\x94"=>"\xee\x88\xa9", "\xf0\x9f\x86\x95"=>"\xee\x88\x92", "\xf0\x9f\x86\x96"=>"[NG]", "\xf0\x9f\x86\x97"=>"\xee\x89\x8d",
         
     | 
| 
      
 1216 
     | 
    
         
            +
                  "\xf0\x9f\x86\x98"=>"[SOS]", "\xf0\x9f\x86\x99"=>"\xee\x88\x93", "\xf0\x9f\x86\x9a"=>"\xee\x84\xae", "\xf0\x9f\x88\x81"=>"\xee\x88\x83", "\xf0\x9f\x88\x82"=>"\xee\x88\xa8",
         
     | 
| 
      
 1217 
     | 
    
         
            +
                  "\xf0\x9f\x88\xb2"=>"[\xe7\xa6\x81]", "\xf0\x9f\x88\xb3"=>"\xee\x88\xab", "\xf0\x9f\x88\xb4"=>"[\xe5\x90\x88]", "\xf0\x9f\x88\xb5"=>"\xee\x88\xaa", "\xf0\x9f\x88\xb6"=>"\xee\x88\x95",
         
     | 
| 
      
 1218 
     | 
    
         
            +
                  "\xf0\x9f\x88\x9a"=>"\xee\x88\x96", "\xf0\x9f\x88\xb7"=>"\xee\x88\x97", "\xf0\x9f\x88\xb8"=>"\xee\x88\x98", "\xf0\x9f\x88\xb9"=>"\xee\x88\xa7", "\xf0\x9f\x88\xaf"=>"\xee\x88\xac",
         
     | 
| 
      
 1219 
     | 
    
         
            +
                  "\xf0\x9f\x88\xba"=>"\xee\x88\xad", "\xe3\x8a\x99"=>"\xee\x8c\x95", "\xe3\x8a\x97"=>"\xee\x8c\x8d", "\xf0\x9f\x89\x90"=>"\xee\x88\xa6", "\xf0\x9f\x89\x91"=>"[\xe5\x8f\xaf]",
         
     | 
| 
      
 1220 
     | 
    
         
            +
                  "\xe2\x9e\x95"=>"[\xef\xbc\x8b]", "\xe2\x9e\x96"=>"[\xef\xbc\x8d]", "\xe2\x9c\x96"=>"\xee\x8c\xb3", "\xe2\x9e\x97"=>"[\xc3\xb7]", "\xf0\x9f\x92\xa0"=>"\xe3\x80\x93",
         
     | 
| 
      
 1221 
     | 
    
         
            +
                  "\xf0\x9f\x92\xa1"=>"\xee\x84\x8f", "\xf0\x9f\x92\xa2"=>"\xee\x8c\xb4", "\xf0\x9f\x92\xa3"=>"\xee\x8c\x91", "\xf0\x9f\x92\xa4"=>"\xee\x84\xbc", "\xf0\x9f\x92\xa5"=>"[\xe3\x83\x89\xe3\x83\xb3\xe3\x83\x83]",
         
     | 
| 
      
 1222 
     | 
    
         
            +
                  "\xf0\x9f\x92\xa6"=>"\xee\x8c\xb1", "\xf0\x9f\x92\xa7"=>"\xee\x8c\xb1", "\xf0\x9f\x92\xa8"=>"\xee\x8c\xb0", "\xf0\x9f\x92\xa9"=>"\xee\x81\x9a", "\xf0\x9f\x92\xaa"=>"\xee\x85\x8c",
         
     | 
| 
      
 1223 
     | 
    
         
            +
                  "\xf0\x9f\x92\xab"=>"\xee\x90\x87", "\xf0\x9f\x92\xac"=>"[\xe3\x83\x95\xe3\x82\xad\xe3\x83\x80\xe3\x82\xb7]", "\xe2\x9c\xa8"=>"\xee\x8c\xae", "\xe2\x9c\xb4"=>"\xee\x88\x85", "\xe2\x9c\xb3"=>"\xee\x88\x86",
         
     | 
| 
      
 1224 
     | 
    
         
            +
                  "\xe2\x9a\xaa"=>"\xee\x88\x99", "\xe2\x9a\xab"=>"\xee\x88\x99", "\xf0\x9f\x94\xb4"=>"\xee\x88\x99", "\xf0\x9f\x94\xb5"=>"\xee\x88\x9a", "\xf0\x9f\x94\xb2"=>"\xee\x88\x9a",
         
     | 
| 
      
 1225 
     | 
    
         
            +
                  "\xf0\x9f\x94\xb3"=>"\xee\x88\x9b", "\xe2\xad\x90"=>"\xee\x8c\xaf", "\xe2\xac\x9c"=>"\xee\x88\x9b", "\xe2\xac\x9b"=>"\xee\x88\x9a", "\xe2\x96\xab"=>"\xee\x88\x9b",
         
     | 
| 
      
 1226 
     | 
    
         
            +
                  "\xe2\x96\xaa"=>"\xee\x88\x9a", "\xe2\x97\xbd"=>"\xee\x88\x9b", "\xe2\x97\xbe"=>"\xee\x88\x9a", "\xe2\x97\xbb"=>"\xee\x88\x9b", "\xe2\x97\xbc"=>"\xee\x88\x9a",
         
     | 
| 
      
 1227 
     | 
    
         
            +
                  "\xf0\x9f\x94\xb6"=>"\xee\x88\x9b", "\xf0\x9f\x94\xb7"=>"\xee\x88\x9b", "\xf0\x9f\x94\xb8"=>"\xee\x88\x9b", "\xf0\x9f\x94\xb9"=>"\xee\x88\x9b", "\xe2\x9d\x87"=>"\xee\x8c\xae",
         
     | 
| 
      
 1228 
     | 
    
         
            +
                  "\xf0\x9f\x92\xae"=>"[\xe8\x8a\xb1\xe4\xb8\xb8]", "\xf0\x9f\x92\xaf"=>"[100\xe7\x82\xb9]", "\xe2\x86\xa9"=>"\xe2\x86\x90\xe2\x94\x98", "\xe2\x86\xaa"=>"\xe2\x94\x94\xe2\x86\x92", "\xf0\x9f\x94\x83"=>"\xe2\x86\x91\xe2\x86\x93",
         
     | 
| 
      
 1229 
     | 
    
         
            +
                  "\xf0\x9f\x94\x8a"=>"\xee\x85\x81", "\xf0\x9f\x94\x8b"=>"[\xe9\x9b\xbb\xe6\xb1\xa0]", "\xf0\x9f\x94\x8c"=>"[\xe3\x82\xb3\xe3\x83\xb3\xe3\x82\xbb\xe3\x83\xb3\xe3\x83\x88]", "\xf0\x9f\x94\x8d"=>"\xee\x84\x94", "\xf0\x9f\x94\x8e"=>"\xee\x84\x94",
         
     | 
| 
      
 1230 
     | 
    
         
            +
                  "\xf0\x9f\x94\x92"=>"\xee\x85\x84", "\xf0\x9f\x94\x93"=>"\xee\x85\x85", "\xf0\x9f\x94\x8f"=>"\xee\x85\x84", "\xf0\x9f\x94\x90"=>"\xee\x85\x84", "\xf0\x9f\x94\x91"=>"\xee\x80\xbf",
         
     | 
| 
      
 1231 
     | 
    
         
            +
                  "\xf0\x9f\x94\x94"=>"\xee\x8c\xa5", "\xe2\x98\x91"=>"[\xe3\x83\x81\xe3\x82\xa7\xe3\x83\x83\xe3\x82\xaf\xe3\x83\x9e\xe3\x83\xbc\xe3\x82\xaf]", "\xf0\x9f\x94\x98"=>"[\xe3\x83\xa9\xe3\x82\xb8\xe3\x82\xaa\xe3\x83\x9c\xe3\x82\xbf\xe3\x83\xb3]", "\xf0\x9f\x94\x96"=>"[\xe3\x83\x96\xe3\x83\x83\xe3\x82\xaf\xe3\x83\x9e\xe3\x83\xbc\xe3\x82\xaf]", "\xf0\x9f\x94\x97"=>"[\xe3\x83\xaa\xe3\x83\xb3\xe3\x82\xaf]",
         
     | 
| 
      
 1232 
     | 
    
         
            +
                  "\xf0\x9f\x94\x99"=>"\xee\x88\xb5", "\xf0\x9f\x94\x9a"=>"[end]", "\xf0\x9f\x94\x9b"=>"[ON]", "\xf0\x9f\x94\x9c"=>"[SOON]", "\xf0\x9f\x94\x9d"=>"\xee\x89\x8c",
         
     | 
| 
      
 1233 
     | 
    
         
            +
                  "\xe2\x80\x83"=>"\xe3\x80\x93", "\xe2\x80\x82"=>"\xe3\x80\x93", "\xe2\x80\x85"=>"\xe3\x80\x93", "\xe2\x9c\x85"=>"[\xe3\x83\x81\xe3\x82\xa7\xe3\x83\x83\xe3\x82\xaf\xe3\x83\x9e\xe3\x83\xbc\xe3\x82\xaf]", "\xe2\x9c\x8a"=>"\xee\x80\x90",
         
     | 
| 
      
 1234 
     | 
    
         
            +
                  "\xe2\x9c\x8b"=>"\xee\x80\x92", "\xe2\x9c\x8c"=>"\xee\x80\x91", "\xf0\x9f\x91\x8a"=>"\xee\x80\x8d", "\xf0\x9f\x91\x8d"=>"\xee\x80\x8e", "\xe2\x98\x9d"=>"\xee\x80\x8f",
         
     | 
| 
      
 1235 
     | 
    
         
            +
                  "\xf0\x9f\x91\x86"=>"\xee\x88\xae", "\xf0\x9f\x91\x87"=>"\xee\x88\xaf", "\xf0\x9f\x91\x88"=>"\xee\x88\xb0", "\xf0\x9f\x91\x89"=>"\xee\x88\xb1", "\xf0\x9f\x91\x8b"=>"\xee\x90\x9e",
         
     | 
| 
      
 1236 
     | 
    
         
            +
                  "\xf0\x9f\x91\x8f"=>"\xee\x90\x9f", "\xf0\x9f\x91\x8c"=>"\xee\x90\xa0", "\xf0\x9f\x91\x8e"=>"\xee\x90\xa1", "\xf0\x9f\x91\x90"=>"\xee\x90\xa2",
         
     | 
| 
      
 1237 
     | 
    
         
            +
                },
         
     | 
| 
      
 1238 
     | 
    
         
            +
                'unified_to_google' => {
         
     | 
| 
      
 1239 
     | 
    
         
            +
                  "\xe2\x98\x80"=>"\xf3\xbe\x80\x80", "\xe2\x98\x81"=>"\xf3\xbe\x80\x81", "\xe2\x98\x94"=>"\xf3\xbe\x80\x82", "\xe2\x9b\x84"=>"\xf3\xbe\x80\x83",
         
     | 
| 
      
 1240 
     | 
    
         
            +
                  "\xe2\x9a\xa1"=>"\xf3\xbe\x80\x84", "\xf0\x9f\x8c\x80"=>"\xf3\xbe\x80\x85", "\xf0\x9f\x8c\x81"=>"\xf3\xbe\x80\x86", "\xf0\x9f\x8c\x82"=>"\xf3\xbe\x80\x87", "\xf0\x9f\x8c\x83"=>"\xf3\xbe\x80\x88",
         
     | 
| 
      
 1241 
     | 
    
         
            +
                  "\xf0\x9f\x8c\x84"=>"\xf3\xbe\x80\x89", "\xf0\x9f\x8c\x85"=>"\xf3\xbe\x80\x8a", "\xf0\x9f\x8c\x86"=>"\xf3\xbe\x80\x8b", "\xf0\x9f\x8c\x87"=>"\xf3\xbe\x80\x8c", "\xf0\x9f\x8c\x88"=>"\xf3\xbe\x80\x8d",
         
     | 
| 
      
 1242 
     | 
    
         
            +
                  "\xe2\x9d\x84"=>"\xf3\xbe\x80\x8e", "\xe2\x9b\x85"=>"\xf3\xbe\x80\x8f", "\xf0\x9f\x8c\x89"=>"\xf3\xbe\x80\x90", "\xf0\x9f\x8c\x8a"=>"\xf3\xbe\x80\xb8", "\xf0\x9f\x8c\x8b"=>"\xf3\xbe\x80\xba",
         
     | 
| 
      
 1243 
     | 
    
         
            +
                  "\xf0\x9f\x8c\x8c"=>"\xf3\xbe\x80\xbb", "\xf0\x9f\x8c\x8f"=>"\xf3\xbe\x80\xb9", "\xf0\x9f\x8c\x91"=>"\xf3\xbe\x80\x91", "\xf0\x9f\x8c\x94"=>"\xf3\xbe\x80\x92", "\xf0\x9f\x8c\x93"=>"\xf3\xbe\x80\x93",
         
     | 
| 
      
 1244 
     | 
    
         
            +
                  "\xf0\x9f\x8c\x99"=>"\xf3\xbe\x80\x94", "\xf0\x9f\x8c\x95"=>"\xf3\xbe\x80\x95", "\xf0\x9f\x8c\x9b"=>"\xf3\xbe\x80\x96", "\xf0\x9f\x8c\x9f"=>"\xf3\xbe\xad\xa9", "\xf0\x9f\x8c\xa0"=>"\xf3\xbe\xad\xaa",
         
     | 
| 
      
 1245 
     | 
    
         
            +
                  "\xf0\x9f\x95\x90"=>"\xf3\xbe\x80\x9e", "\xf0\x9f\x95\x91"=>"\xf3\xbe\x80\x9f", "\xf0\x9f\x95\x92"=>"\xf3\xbe\x80\xa0", "\xf0\x9f\x95\x93"=>"\xf3\xbe\x80\xa1", "\xf0\x9f\x95\x94"=>"\xf3\xbe\x80\xa2",
         
     | 
| 
      
 1246 
     | 
    
         
            +
                  "\xf0\x9f\x95\x95"=>"\xf3\xbe\x80\xa3", "\xf0\x9f\x95\x96"=>"\xf3\xbe\x80\xa4", "\xf0\x9f\x95\x97"=>"\xf3\xbe\x80\xa5", "\xf0\x9f\x95\x98"=>"\xf3\xbe\x80\xa6", "\xf0\x9f\x95\x99"=>"\xf3\xbe\x80\xa7",
         
     | 
| 
      
 1247 
     | 
    
         
            +
                  "\xf0\x9f\x95\x9a"=>"\xf3\xbe\x80\xa8", "\xf0\x9f\x95\x9b"=>"\xf3\xbe\x80\xa9", "\xe2\x8c\x9a"=>"\xf3\xbe\x80\x9d", "\xe2\x8c\x9b"=>"\xf3\xbe\x80\x9c", "\xe2\x8f\xb0"=>"\xf3\xbe\x80\xaa",
         
     | 
| 
      
 1248 
     | 
    
         
            +
                  "\xe2\x8f\xb3"=>"\xf3\xbe\x80\x9b", "\xe2\x99\x88"=>"\xf3\xbe\x80\xab", "\xe2\x99\x89"=>"\xf3\xbe\x80\xac", "\xe2\x99\x8a"=>"\xf3\xbe\x80\xad", "\xe2\x99\x8b"=>"\xf3\xbe\x80\xae",
         
     | 
| 
      
 1249 
     | 
    
         
            +
                  "\xe2\x99\x8c"=>"\xf3\xbe\x80\xaf", "\xe2\x99\x8d"=>"\xf3\xbe\x80\xb0", "\xe2\x99\x8e"=>"\xf3\xbe\x80\xb1", "\xe2\x99\x8f"=>"\xf3\xbe\x80\xb2", "\xe2\x99\x90"=>"\xf3\xbe\x80\xb3",
         
     | 
| 
      
 1250 
     | 
    
         
            +
                  "\xe2\x99\x91"=>"\xf3\xbe\x80\xb4", "\xe2\x99\x92"=>"\xf3\xbe\x80\xb5", "\xe2\x99\x93"=>"\xf3\xbe\x80\xb6", "\xe2\x9b\x8e"=>"\xf3\xbe\x80\xb7", "\xf0\x9f\x8d\x80"=>"\xf3\xbe\x80\xbc",
         
     | 
| 
      
 1251 
     | 
    
         
            +
                  "\xf0\x9f\x8c\xb7"=>"\xf3\xbe\x80\xbd", "\xf0\x9f\x8c\xb1"=>"\xf3\xbe\x80\xbe", "\xf0\x9f\x8d\x81"=>"\xf3\xbe\x80\xbf", "\xf0\x9f\x8c\xb8"=>"\xf3\xbe\x81\x80", "\xf0\x9f\x8c\xb9"=>"\xf3\xbe\x81\x81",
         
     | 
| 
      
 1252 
     | 
    
         
            +
                  "\xf0\x9f\x8d\x82"=>"\xf3\xbe\x81\x82", "\xf0\x9f\x8d\x83"=>"\xf3\xbe\x81\x83", "\xf0\x9f\x8c\xba"=>"\xf3\xbe\x81\x85", "\xf0\x9f\x8c\xbb"=>"\xf3\xbe\x81\x86", "\xf0\x9f\x8c\xb4"=>"\xf3\xbe\x81\x87",
         
     | 
| 
      
 1253 
     | 
    
         
            +
                  "\xf0\x9f\x8c\xb5"=>"\xf3\xbe\x81\x88", "\xf0\x9f\x8c\xbe"=>"\xf3\xbe\x81\x89", "\xf0\x9f\x8c\xbd"=>"\xf3\xbe\x81\x8a", "\xf0\x9f\x8d\x84"=>"\xf3\xbe\x81\x8b", "\xf0\x9f\x8c\xb0"=>"\xf3\xbe\x81\x8c",
         
     | 
| 
      
 1254 
     | 
    
         
            +
                  "\xf0\x9f\x8c\xbc"=>"\xf3\xbe\x81\x8d", "\xf0\x9f\x8c\xbf"=>"\xf3\xbe\x81\x8e", "\xf0\x9f\x8d\x92"=>"\xf3\xbe\x81\x8f", "\xf0\x9f\x8d\x8c"=>"\xf3\xbe\x81\x90", "\xf0\x9f\x8d\x8e"=>"\xf3\xbe\x81\x91",
         
     | 
| 
      
 1255 
     | 
    
         
            +
                  "\xf0\x9f\x8d\x8a"=>"\xf3\xbe\x81\x92", "\xf0\x9f\x8d\x93"=>"\xf3\xbe\x81\x93", "\xf0\x9f\x8d\x89"=>"\xf3\xbe\x81\x94", "\xf0\x9f\x8d\x85"=>"\xf3\xbe\x81\x95", "\xf0\x9f\x8d\x86"=>"\xf3\xbe\x81\x96",
         
     | 
| 
      
 1256 
     | 
    
         
            +
                  "\xf0\x9f\x8d\x88"=>"\xf3\xbe\x81\x97", "\xf0\x9f\x8d\x8d"=>"\xf3\xbe\x81\x98", "\xf0\x9f\x8d\x87"=>"\xf3\xbe\x81\x99", "\xf0\x9f\x8d\x91"=>"\xf3\xbe\x81\x9a", "\xf0\x9f\x8d\x8f"=>"\xf3\xbe\x81\x9b",
         
     | 
| 
      
 1257 
     | 
    
         
            +
                  "\xf0\x9f\x91\x80"=>"\xf3\xbe\x86\x90", "\xf0\x9f\x91\x82"=>"\xf3\xbe\x86\x91", "\xf0\x9f\x91\x83"=>"\xf3\xbe\x86\x92", "\xf0\x9f\x91\x84"=>"\xf3\xbe\x86\x93", "\xf0\x9f\x91\x85"=>"\xf3\xbe\x86\x94",
         
     | 
| 
      
 1258 
     | 
    
         
            +
                  "\xf0\x9f\x92\x84"=>"\xf3\xbe\x86\x95", "\xf0\x9f\x92\x85"=>"\xf3\xbe\x86\x96", "\xf0\x9f\x92\x86"=>"\xf3\xbe\x86\x97", "\xf0\x9f\x92\x87"=>"\xf3\xbe\x86\x98", "\xf0\x9f\x92\x88"=>"\xf3\xbe\x86\x99",
         
     | 
| 
      
 1259 
     | 
    
         
            +
                  "\xf0\x9f\x91\xa4"=>"\xf3\xbe\x86\x9a", "\xf0\x9f\x91\xa6"=>"\xf3\xbe\x86\x9b", "\xf0\x9f\x91\xa7"=>"\xf3\xbe\x86\x9c", "\xf0\x9f\x91\xa8"=>"\xf3\xbe\x86\x9d", "\xf0\x9f\x91\xa9"=>"\xf3\xbe\x86\x9e",
         
     | 
| 
      
 1260 
     | 
    
         
            +
                  "\xf0\x9f\x91\xaa"=>"\xf3\xbe\x86\x9f", "\xf0\x9f\x91\xab"=>"\xf3\xbe\x86\xa0", "\xf0\x9f\x91\xae"=>"\xf3\xbe\x86\xa1", "\xf0\x9f\x91\xaf"=>"\xf3\xbe\x86\xa2", "\xf0\x9f\x91\xb0"=>"\xf3\xbe\x86\xa3",
         
     | 
| 
      
 1261 
     | 
    
         
            +
                  "\xf0\x9f\x91\xb1"=>"\xf3\xbe\x86\xa4", "\xf0\x9f\x91\xb2"=>"\xf3\xbe\x86\xa5", "\xf0\x9f\x91\xb3"=>"\xf3\xbe\x86\xa6", "\xf0\x9f\x91\xb4"=>"\xf3\xbe\x86\xa7", "\xf0\x9f\x91\xb5"=>"\xf3\xbe\x86\xa8",
         
     | 
| 
      
 1262 
     | 
    
         
            +
                  "\xf0\x9f\x91\xb6"=>"\xf3\xbe\x86\xa9", "\xf0\x9f\x91\xb7"=>"\xf3\xbe\x86\xaa", "\xf0\x9f\x91\xb8"=>"\xf3\xbe\x86\xab", "\xf0\x9f\x91\xb9"=>"\xf3\xbe\x86\xac", "\xf0\x9f\x91\xba"=>"\xf3\xbe\x86\xad",
         
     | 
| 
      
 1263 
     | 
    
         
            +
                  "\xf0\x9f\x91\xbb"=>"\xf3\xbe\x86\xae", "\xf0\x9f\x91\xbc"=>"\xf3\xbe\x86\xaf", "\xf0\x9f\x91\xbd"=>"\xf3\xbe\x86\xb0", "\xf0\x9f\x91\xbe"=>"\xf3\xbe\x86\xb1", "\xf0\x9f\x91\xbf"=>"\xf3\xbe\x86\xb2",
         
     | 
| 
      
 1264 
     | 
    
         
            +
                  "\xf0\x9f\x92\x80"=>"\xf3\xbe\x86\xb3", "\xf0\x9f\x92\x81"=>"\xf3\xbe\x86\xb4", "\xf0\x9f\x92\x82"=>"\xf3\xbe\x86\xb5", "\xf0\x9f\x92\x83"=>"\xf3\xbe\x86\xb6", "\xf0\x9f\x90\x8c"=>"\xf3\xbe\x86\xb9",
         
     | 
| 
      
 1265 
     | 
    
         
            +
                  "\xf0\x9f\x90\x8d"=>"\xf3\xbe\x87\x93", "\xf0\x9f\x90\x8e"=>"\xf3\xbe\x9f\x9c", "\xf0\x9f\x90\x94"=>"\xf3\xbe\x87\x94", "\xf0\x9f\x90\x97"=>"\xf3\xbe\x87\x95", "\xf0\x9f\x90\xab"=>"\xf3\xbe\x87\x96",
         
     | 
| 
      
 1266 
     | 
    
         
            +
                  "\xf0\x9f\x90\x98"=>"\xf3\xbe\x87\x8c", "\xf0\x9f\x90\xa8"=>"\xf3\xbe\x87\x8d", "\xf0\x9f\x90\x92"=>"\xf3\xbe\x87\x8e", "\xf0\x9f\x90\x91"=>"\xf3\xbe\x87\x8f", "\xf0\x9f\x90\x99"=>"\xf3\xbe\x87\x85",
         
     | 
| 
      
 1267 
     | 
    
         
            +
                  "\xf0\x9f\x90\x9a"=>"\xf3\xbe\x87\x86", "\xf0\x9f\x90\x9b"=>"\xf3\xbe\x87\x8b", "\xf0\x9f\x90\x9c"=>"\xf3\xbe\x87\x9a", "\xf0\x9f\x90\x9d"=>"\xf3\xbe\x87\xa1", "\xf0\x9f\x90\x9e"=>"\xf3\xbe\x87\xa2",
         
     | 
| 
      
 1268 
     | 
    
         
            +
                  "\xf0\x9f\x90\xa0"=>"\xf3\xbe\x87\x89", "\xf0\x9f\x90\xa1"=>"\xf3\xbe\x87\x99", "\xf0\x9f\x90\xa2"=>"\xf3\xbe\x87\x9c", "\xf0\x9f\x90\xa4"=>"\xf3\xbe\x86\xba", "\xf0\x9f\x90\xa5"=>"\xf3\xbe\x86\xbb",
         
     | 
| 
      
 1269 
     | 
    
         
            +
                  "\xf0\x9f\x90\xa6"=>"\xf3\xbe\x87\x88", "\xf0\x9f\x90\xa3"=>"\xf3\xbe\x87\x9d", "\xf0\x9f\x90\xa7"=>"\xf3\xbe\x86\xbc", "\xf0\x9f\x90\xa9"=>"\xf3\xbe\x87\x98", "\xf0\x9f\x90\x9f"=>"\xf3\xbe\x86\xbd",
         
     | 
| 
      
 1270 
     | 
    
         
            +
                  "\xf0\x9f\x90\xac"=>"\xf3\xbe\x87\x87", "\xf0\x9f\x90\xad"=>"\xf3\xbe\x87\x82", "\xf0\x9f\x90\xaf"=>"\xf3\xbe\x87\x80", "\xf0\x9f\x90\xb1"=>"\xf3\xbe\x86\xb8", "\xf0\x9f\x90\xb3"=>"\xf3\xbe\x87\x83",
         
     | 
| 
      
 1271 
     | 
    
         
            +
                  "\xf0\x9f\x90\xb4"=>"\xf3\xbe\x86\xbe", "\xf0\x9f\x90\xb5"=>"\xf3\xbe\x87\x84", "\xf0\x9f\x90\xb6"=>"\xf3\xbe\x86\xb7", "\xf0\x9f\x90\xb7"=>"\xf3\xbe\x86\xbf", "\xf0\x9f\x90\xbb"=>"\xf3\xbe\x87\x81",
         
     | 
| 
      
 1272 
     | 
    
         
            +
                  "\xf0\x9f\x90\xb9"=>"\xf3\xbe\x87\x8a", "\xf0\x9f\x90\xba"=>"\xf3\xbe\x87\x90", "\xf0\x9f\x90\xae"=>"\xf3\xbe\x87\x91", "\xf0\x9f\x90\xb0"=>"\xf3\xbe\x87\x92", "\xf0\x9f\x90\xb8"=>"\xf3\xbe\x87\x97",
         
     | 
| 
      
 1273 
     | 
    
         
            +
                  "\xf0\x9f\x90\xbe"=>"\xf3\xbe\x87\x9b", "\xf0\x9f\x90\xb2"=>"\xf3\xbe\x87\x9e", "\xf0\x9f\x90\xbc"=>"\xf3\xbe\x87\x9f", "\xf0\x9f\x90\xbd"=>"\xf3\xbe\x87\xa0", "\xf0\x9f\x98\xa0"=>"\xf3\xbe\x8c\xa0",
         
     | 
| 
      
 1274 
     | 
    
         
            +
                  "\xf0\x9f\x98\xa9"=>"\xf3\xbe\x8c\xa1", "\xf0\x9f\x98\xb2"=>"\xf3\xbe\x8c\xa2", "\xf0\x9f\x98\x9e"=>"\xf3\xbe\x8c\xa3", "\xf0\x9f\x98\xb5"=>"\xf3\xbe\x8c\xa4", "\xf0\x9f\x98\xb0"=>"\xf3\xbe\x8c\xa5",
         
     | 
| 
      
 1275 
     | 
    
         
            +
                  "\xf0\x9f\x98\x92"=>"\xf3\xbe\x8c\xa6", "\xf0\x9f\x98\x8d"=>"\xf3\xbe\x8c\xa7", "\xf0\x9f\x98\xa4"=>"\xf3\xbe\x8c\xa8", "\xf0\x9f\x98\x9c"=>"\xf3\xbe\x8c\xa9", "\xf0\x9f\x98\x9d"=>"\xf3\xbe\x8c\xaa",
         
     | 
| 
      
 1276 
     | 
    
         
            +
                  "\xf0\x9f\x98\x8b"=>"\xf3\xbe\x8c\xab", "\xf0\x9f\x98\x98"=>"\xf3\xbe\x8c\xac", "\xf0\x9f\x98\x9a"=>"\xf3\xbe\x8c\xad", "\xf0\x9f\x98\xb7"=>"\xf3\xbe\x8c\xae", "\xf0\x9f\x98\xb3"=>"\xf3\xbe\x8c\xaf",
         
     | 
| 
      
 1277 
     | 
    
         
            +
                  "\xf0\x9f\x98\x83"=>"\xf3\xbe\x8c\xb0", "\xf0\x9f\x98\x85"=>"\xf3\xbe\x8c\xb1", "\xf0\x9f\x98\x86"=>"\xf3\xbe\x8c\xb2", "\xf0\x9f\x98\x81"=>"\xf3\xbe\x8c\xb3", "\xf0\x9f\x98\x82"=>"\xf3\xbe\x8c\xb4",
         
     | 
| 
      
 1278 
     | 
    
         
            +
                  "\xf0\x9f\x98\x8a"=>"\xf3\xbe\x8c\xb5", "\xe2\x98\xba"=>"\xf3\xbe\x8c\xb6", "\xf0\x9f\x98\x84"=>"\xf3\xbe\x8c\xb8", "\xf0\x9f\x98\xa2"=>"\xf3\xbe\x8c\xb9", "\xf0\x9f\x98\xad"=>"\xf3\xbe\x8c\xba",
         
     | 
| 
      
 1279 
     | 
    
         
            +
                  "\xf0\x9f\x98\xa8"=>"\xf3\xbe\x8c\xbb", "\xf0\x9f\x98\xa3"=>"\xf3\xbe\x8c\xbc", "\xf0\x9f\x98\xa1"=>"\xf3\xbe\x8c\xbd", "\xf0\x9f\x98\x8c"=>"\xf3\xbe\x8c\xbe", "\xf0\x9f\x98\x96"=>"\xf3\xbe\x8c\xbf",
         
     | 
| 
      
 1280 
     | 
    
         
            +
                  "\xf0\x9f\x98\x94"=>"\xf3\xbe\x8d\x80", "\xf0\x9f\x98\xb1"=>"\xf3\xbe\x8d\x81", "\xf0\x9f\x98\xaa"=>"\xf3\xbe\x8d\x82", "\xf0\x9f\x98\x8f"=>"\xf3\xbe\x8d\x83", "\xf0\x9f\x98\x93"=>"\xf3\xbe\x8d\x84",
         
     | 
| 
      
 1281 
     | 
    
         
            +
                  "\xf0\x9f\x98\xa5"=>"\xf3\xbe\x8d\x85", "\xf0\x9f\x98\xab"=>"\xf3\xbe\x8d\x86", "\xf0\x9f\x98\x89"=>"\xf3\xbe\x8d\x87", "\xf0\x9f\x98\xba"=>"\xf3\xbe\x8d\x88", "\xf0\x9f\x98\xb8"=>"\xf3\xbe\x8d\x89",
         
     | 
| 
      
 1282 
     | 
    
         
            +
                  "\xf0\x9f\x98\xb9"=>"\xf3\xbe\x8d\x8a", "\xf0\x9f\x98\xbd"=>"\xf3\xbe\x8d\x8b", "\xf0\x9f\x98\xbb"=>"\xf3\xbe\x8d\x8c", "\xf0\x9f\x98\xbf"=>"\xf3\xbe\x8d\x8d", "\xf0\x9f\x98\xbe"=>"\xf3\xbe\x8d\x8e",
         
     | 
| 
      
 1283 
     | 
    
         
            +
                  "\xf0\x9f\x98\xbc"=>"\xf3\xbe\x8d\x8f", "\xf0\x9f\x99\x80"=>"\xf3\xbe\x8d\x90", "\xf0\x9f\x99\x85"=>"\xf3\xbe\x8d\x91", "\xf0\x9f\x99\x86"=>"\xf3\xbe\x8d\x92", "\xf0\x9f\x99\x87"=>"\xf3\xbe\x8d\x93",
         
     | 
| 
      
 1284 
     | 
    
         
            +
                  "\xf0\x9f\x99\x88"=>"\xf3\xbe\x8d\x94", "\xf0\x9f\x99\x8a"=>"\xf3\xbe\x8d\x95", "\xf0\x9f\x99\x89"=>"\xf3\xbe\x8d\x96", "\xf0\x9f\x99\x8b"=>"\xf3\xbe\x8d\x97", "\xf0\x9f\x99\x8c"=>"\xf3\xbe\x8d\x98",
         
     | 
| 
      
 1285 
     | 
    
         
            +
                  "\xf0\x9f\x99\x8d"=>"\xf3\xbe\x8d\x99", "\xf0\x9f\x99\x8e"=>"\xf3\xbe\x8d\x9a", "\xf0\x9f\x99\x8f"=>"\xf3\xbe\x8d\x9b", "\xf0\x9f\x8f\xa0"=>"\xf3\xbe\x92\xb0", "\xf0\x9f\x8f\xa1"=>"\xf3\xbe\x92\xb1",
         
     | 
| 
      
 1286 
     | 
    
         
            +
                  "\xf0\x9f\x8f\xa2"=>"\xf3\xbe\x92\xb2", "\xf0\x9f\x8f\xa3"=>"\xf3\xbe\x92\xb3", "\xf0\x9f\x8f\xa5"=>"\xf3\xbe\x92\xb4", "\xf0\x9f\x8f\xa6"=>"\xf3\xbe\x92\xb5", "\xf0\x9f\x8f\xa7"=>"\xf3\xbe\x92\xb6",
         
     | 
| 
      
 1287 
     | 
    
         
            +
                  "\xf0\x9f\x8f\xa8"=>"\xf3\xbe\x92\xb7", "\xf0\x9f\x8f\xa9"=>"\xf3\xbe\x92\xb8", "\xf0\x9f\x8f\xaa"=>"\xf3\xbe\x92\xb9", "\xf0\x9f\x8f\xab"=>"\xf3\xbe\x92\xba", "\xe2\x9b\xaa"=>"\xf3\xbe\x92\xbb",
         
     | 
| 
      
 1288 
     | 
    
         
            +
                  "\xe2\x9b\xb2"=>"\xf3\xbe\x92\xbc", "\xf0\x9f\x8f\xac"=>"\xf3\xbe\x92\xbd", "\xf0\x9f\x8f\xaf"=>"\xf3\xbe\x92\xbe", "\xf0\x9f\x8f\xb0"=>"\xf3\xbe\x92\xbf", "\xf0\x9f\x8f\xad"=>"\xf3\xbe\x93\x80",
         
     | 
| 
      
 1289 
     | 
    
         
            +
                  "\xe2\x9a\x93"=>"\xf3\xbe\x93\x81", "\xf0\x9f\x8f\xae"=>"\xf3\xbe\x93\x82", "\xf0\x9f\x97\xbb"=>"\xf3\xbe\x93\x83", "\xf0\x9f\x97\xbc"=>"\xf3\xbe\x93\x84", "\xf0\x9f\x97\xbd"=>"\xf3\xbe\x93\x86",
         
     | 
| 
      
 1290 
     | 
    
         
            +
                  "\xf0\x9f\x97\xbe"=>"\xf3\xbe\x93\x87", "\xf0\x9f\x97\xbf"=>"\xf3\xbe\x93\x88", "\xf0\x9f\x91\x9e"=>"\xf3\xbe\x93\x8c", "\xf0\x9f\x91\x9f"=>"\xf3\xbe\x93\x8d", "\xf0\x9f\x91\xa0"=>"\xf3\xbe\x93\x96",
         
     | 
| 
      
 1291 
     | 
    
         
            +
                  "\xf0\x9f\x91\xa1"=>"\xf3\xbe\x93\x97", "\xf0\x9f\x91\xa2"=>"\xf3\xbe\x93\x98", "\xf0\x9f\x91\xa3"=>"\xf3\xbe\x95\x93", "\xf0\x9f\x91\x93"=>"\xf3\xbe\x93\x8e", "\xf0\x9f\x91\x95"=>"\xf3\xbe\x93\x8f",
         
     | 
| 
      
 1292 
     | 
    
         
            +
                  "\xf0\x9f\x91\x96"=>"\xf3\xbe\x93\x90", "\xf0\x9f\x91\x91"=>"\xf3\xbe\x93\x91", "\xf0\x9f\x91\x94"=>"\xf3\xbe\x93\x93", "\xf0\x9f\x91\x92"=>"\xf3\xbe\x93\x94", "\xf0\x9f\x91\x97"=>"\xf3\xbe\x93\x95",
         
     | 
| 
      
 1293 
     | 
    
         
            +
                  "\xf0\x9f\x91\x98"=>"\xf3\xbe\x93\x99", "\xf0\x9f\x91\x99"=>"\xf3\xbe\x93\x9a", "\xf0\x9f\x91\x9a"=>"\xf3\xbe\x93\x9b", "\xf0\x9f\x91\x9b"=>"\xf3\xbe\x93\x9c", "\xf0\x9f\x91\x9c"=>"\xf3\xbe\x93\xb0",
         
     | 
| 
      
 1294 
     | 
    
         
            +
                  "\xf0\x9f\x91\x9d"=>"\xf3\xbe\x93\xb1", "\xf0\x9f\x92\xb0"=>"\xf3\xbe\x93\x9d", "\xf0\x9f\x92\xb1"=>"\xf3\xbe\x93\x9e", "\xf0\x9f\x92\xb9"=>"\xf3\xbe\x93\x9f", "\xf0\x9f\x92\xb2"=>"\xf3\xbe\x93\xa0",
         
     | 
| 
      
 1295 
     | 
    
         
            +
                  "\xf0\x9f\x92\xb3"=>"\xf3\xbe\x93\xa1", "\xf0\x9f\x92\xb4"=>"\xf3\xbe\x93\xa2", "\xf0\x9f\x92\xb5"=>"\xf3\xbe\x93\xa3", "\xf0\x9f\x92\xb8"=>"\xf3\xbe\x93\xa4", "\xf0\x9f\x87\xa8\xf0\x9f\x87\xb3"=>"\xf3\xbe\x93\xad",
         
     | 
| 
      
 1296 
     | 
    
         
            +
                  "\xf0\x9f\x87\xa9\xf0\x9f\x87\xaa"=>"\xf3\xbe\x93\xa8", "\xf0\x9f\x87\xaa\xf0\x9f\x87\xb8"=>"\xf3\xbe\x93\xab", "\xf0\x9f\x87\xab\xf0\x9f\x87\xb7"=>"\xf3\xbe\x93\xa7", "\xf0\x9f\x87\xac\xf0\x9f\x87\xa7"=>"\xf3\xbe\x93\xaa", "\xf0\x9f\x87\xae\xf0\x9f\x87\xb9"=>"\xf3\xbe\x93\xa9",
         
     | 
| 
      
 1297 
     | 
    
         
            +
                  "\xf0\x9f\x87\xaf\xf0\x9f\x87\xb5"=>"\xf3\xbe\x93\xa5", "\xf0\x9f\x87\xb0\xf0\x9f\x87\xb7"=>"\xf3\xbe\x93\xae", "\xf0\x9f\x87\xb7\xf0\x9f\x87\xba"=>"\xf3\xbe\x93\xac", "\xf0\x9f\x87\xba\xf0\x9f\x87\xb8"=>"\xf3\xbe\x93\xa6", "\xf0\x9f\x94\xa5"=>"\xf3\xbe\x93\xb6",
         
     | 
| 
      
 1298 
     | 
    
         
            +
                  "\xf0\x9f\x94\xa6"=>"\xf3\xbe\x93\xbb", "\xf0\x9f\x94\xa7"=>"\xf3\xbe\x93\x89", "\xf0\x9f\x94\xa8"=>"\xf3\xbe\x93\x8a", "\xf0\x9f\x94\xa9"=>"\xf3\xbe\x93\x8b", "\xf0\x9f\x94\xaa"=>"\xf3\xbe\x93\xba",
         
     | 
| 
      
 1299 
     | 
    
         
            +
                  "\xf0\x9f\x94\xab"=>"\xf3\xbe\x93\xb5", "\xf0\x9f\x94\xae"=>"\xf3\xbe\x93\xb7", "\xf0\x9f\x94\xaf"=>"\xf3\xbe\x93\xb8", "\xf0\x9f\x94\xb0"=>"\xf3\xbe\x81\x84", "\xf0\x9f\x94\xb1"=>"\xf3\xbe\x93\x92",
         
     | 
| 
      
 1300 
     | 
    
         
            +
                  "\xf0\x9f\x92\x89"=>"\xf3\xbe\x94\x89", "\xf0\x9f\x92\x8a"=>"\xf3\xbe\x94\x8a", "\xf0\x9f\x85\xb0"=>"\xf3\xbe\x94\x8b", "\xf0\x9f\x85\xb1"=>"\xf3\xbe\x94\x8c", "\xf0\x9f\x86\x8e"=>"\xf3\xbe\x94\x8d",
         
     | 
| 
      
 1301 
     | 
    
         
            +
                  "\xf0\x9f\x85\xbe"=>"\xf3\xbe\x94\x8e", "\xf0\x9f\x8e\x80"=>"\xf3\xbe\x94\x8f", "\xf0\x9f\x8e\x81"=>"\xf3\xbe\x94\x90", "\xf0\x9f\x8e\x82"=>"\xf3\xbe\x94\x91", "\xf0\x9f\x8e\x84"=>"\xf3\xbe\x94\x92",
         
     | 
| 
      
 1302 
     | 
    
         
            +
                  "\xf0\x9f\x8e\x85"=>"\xf3\xbe\x94\x93", "\xf0\x9f\x8e\x8c"=>"\xf3\xbe\x94\x94", "\xf0\x9f\x8e\x86"=>"\xf3\xbe\x94\x95", "\xf0\x9f\x8e\x88"=>"\xf3\xbe\x94\x96", "\xf0\x9f\x8e\x89"=>"\xf3\xbe\x94\x97",
         
     | 
| 
      
 1303 
     | 
    
         
            +
                  "\xf0\x9f\x8e\x8d"=>"\xf3\xbe\x94\x98", "\xf0\x9f\x8e\x8e"=>"\xf3\xbe\x94\x99", "\xf0\x9f\x8e\x93"=>"\xf3\xbe\x94\x9a", "\xf0\x9f\x8e\x92"=>"\xf3\xbe\x94\x9b", "\xf0\x9f\x8e\x8f"=>"\xf3\xbe\x94\x9c",
         
     | 
| 
      
 1304 
     | 
    
         
            +
                  "\xf0\x9f\x8e\x87"=>"\xf3\xbe\x94\x9d", "\xf0\x9f\x8e\x90"=>"\xf3\xbe\x94\x9e", "\xf0\x9f\x8e\x83"=>"\xf3\xbe\x94\x9f", "\xf0\x9f\x8e\x8a"=>"\xf3\xbe\x94\xa0", "\xf0\x9f\x8e\x8b"=>"\xf3\xbe\x94\xa1",
         
     | 
| 
      
 1305 
     | 
    
         
            +
                  "\xf0\x9f\x8e\x91"=>"\xf3\xbe\x80\x97", "\xf0\x9f\x93\x9f"=>"\xf3\xbe\x94\xa2", "\xe2\x98\x8e"=>"\xf3\xbe\x94\xa3", "\xf0\x9f\x93\x9e"=>"\xf3\xbe\x94\xa4", "\xf0\x9f\x93\xb1"=>"\xf3\xbe\x94\xa5",
         
     | 
| 
      
 1306 
     | 
    
         
            +
                  "\xf0\x9f\x93\xb2"=>"\xf3\xbe\x94\xa6", "\xf0\x9f\x93\x9d"=>"\xf3\xbe\x94\xa7", "\xf0\x9f\x93\xa0"=>"\xf3\xbe\x94\xa8", "\xe2\x9c\x89"=>"\xf3\xbe\x94\xa9", "\xf0\x9f\x93\xa8"=>"\xf3\xbe\x94\xaa",
         
     | 
| 
      
 1307 
     | 
    
         
            +
                  "\xf0\x9f\x93\xa9"=>"\xf3\xbe\x94\xab", "\xf0\x9f\x93\xaa"=>"\xf3\xbe\x94\xac", "\xf0\x9f\x93\xab"=>"\xf3\xbe\x94\xad", "\xf0\x9f\x93\xae"=>"\xf3\xbe\x94\xae", "\xf0\x9f\x93\xb0"=>"\xf3\xbe\xa0\xa2",
         
     | 
| 
      
 1308 
     | 
    
         
            +
                  "\xf0\x9f\x93\xa2"=>"\xf3\xbe\x94\xaf", "\xf0\x9f\x93\xa3"=>"\xf3\xbe\x94\xb0", "\xf0\x9f\x93\xa1"=>"\xf3\xbe\x94\xb1", "\xf0\x9f\x93\xa4"=>"\xf3\xbe\x94\xb3", "\xf0\x9f\x93\xa5"=>"\xf3\xbe\x94\xb4",
         
     | 
| 
      
 1309 
     | 
    
         
            +
                  "\xf0\x9f\x93\xa6"=>"\xf3\xbe\x94\xb5", "\xf0\x9f\x93\xa7"=>"\xf3\xbe\xae\x92", "\xf0\x9f\x94\xa0"=>"\xf3\xbe\xad\xbc", "\xf0\x9f\x94\xa1"=>"\xf3\xbe\xad\xbd", "\xf0\x9f\x94\xa2"=>"\xf3\xbe\xad\xbe",
         
     | 
| 
      
 1310 
     | 
    
         
            +
                  "\xf0\x9f\x94\xa3"=>"\xf3\xbe\xad\xbf", "\xf0\x9f\x94\xa4"=>"\xf3\xbe\xae\x80", "\xe2\x9c\x92"=>"\xf3\xbe\x94\xb6", "\xf0\x9f\x92\xba"=>"\xf3\xbe\x94\xb7", "\xf0\x9f\x92\xbb"=>"\xf3\xbe\x94\xb8",
         
     | 
| 
      
 1311 
     | 
    
         
            +
                  "\xe2\x9c\x8f"=>"\xf3\xbe\x94\xb9", "\xf0\x9f\x93\x8e"=>"\xf3\xbe\x94\xba", "\xf0\x9f\x92\xbc"=>"\xf3\xbe\x94\xbb", "\xf0\x9f\x92\xbd"=>"\xf3\xbe\x94\xbc", "\xf0\x9f\x92\xbe"=>"\xf3\xbe\x94\xbd",
         
     | 
| 
      
 1312 
     | 
    
         
            +
                  "\xf0\x9f\x92\xbf"=>"\xf3\xbe\xa0\x9d", "\xf0\x9f\x93\x80"=>"\xf3\xbe\xa0\x9e", "\xe2\x9c\x82"=>"\xf3\xbe\x94\xbe", "\xf0\x9f\x93\x8d"=>"\xf3\xbe\x94\xbf", "\xf0\x9f\x93\x83"=>"\xf3\xbe\x95\x80",
         
     | 
| 
      
 1313 
     | 
    
         
            +
                  "\xf0\x9f\x93\x84"=>"\xf3\xbe\x95\x81", "\xf0\x9f\x93\x85"=>"\xf3\xbe\x95\x82", "\xf0\x9f\x93\x81"=>"\xf3\xbe\x95\x83", "\xf0\x9f\x93\x82"=>"\xf3\xbe\x95\x84", "\xf0\x9f\x93\x93"=>"\xf3\xbe\x95\x85",
         
     | 
| 
      
 1314 
     | 
    
         
            +
                  "\xf0\x9f\x93\x96"=>"\xf3\xbe\x95\x86", "\xf0\x9f\x93\x94"=>"\xf3\xbe\x95\x87", "\xf0\x9f\x93\x95"=>"\xf3\xbe\x94\x82", "\xf0\x9f\x93\x97"=>"\xf3\xbe\x93\xbf", "\xf0\x9f\x93\x98"=>"\xf3\xbe\x94\x80",
         
     | 
| 
      
 1315 
     | 
    
         
            +
                  "\xf0\x9f\x93\x99"=>"\xf3\xbe\x94\x81", "\xf0\x9f\x93\x9a"=>"\xf3\xbe\x94\x83", "\xf0\x9f\x93\x9b"=>"\xf3\xbe\x94\x84", "\xf0\x9f\x93\x9c"=>"\xf3\xbe\x93\xbd", "\xf0\x9f\x93\x8b"=>"\xf3\xbe\x95\x88",
         
     | 
| 
      
 1316 
     | 
    
         
            +
                  "\xf0\x9f\x93\x86"=>"\xf3\xbe\x95\x89", "\xf0\x9f\x93\x8a"=>"\xf3\xbe\x95\x8a", "\xf0\x9f\x93\x88"=>"\xf3\xbe\x95\x8b", "\xf0\x9f\x93\x89"=>"\xf3\xbe\x95\x8c", "\xf0\x9f\x93\x87"=>"\xf3\xbe\x95\x8d",
         
     | 
| 
      
 1317 
     | 
    
         
            +
                  "\xf0\x9f\x93\x8c"=>"\xf3\xbe\x95\x8e", "\xf0\x9f\x93\x92"=>"\xf3\xbe\x95\x8f", "\xf0\x9f\x93\x8f"=>"\xf3\xbe\x95\x90", "\xf0\x9f\x93\x90"=>"\xf3\xbe\x95\x91", "\xf0\x9f\x93\x91"=>"\xf3\xbe\x95\x92",
         
     | 
| 
      
 1318 
     | 
    
         
            +
                  "\xf0\x9f\x8e\xbd"=>"\xf3\xbe\x9f\x90", "\xe2\x9a\xbe"=>"\xf3\xbe\x9f\x91", "\xe2\x9b\xb3"=>"\xf3\xbe\x9f\x92", "\xf0\x9f\x8e\xbe"=>"\xf3\xbe\x9f\x93", "\xe2\x9a\xbd"=>"\xf3\xbe\x9f\x94",
         
     | 
| 
      
 1319 
     | 
    
         
            +
                  "\xf0\x9f\x8e\xbf"=>"\xf3\xbe\x9f\x95", "\xf0\x9f\x8f\x80"=>"\xf3\xbe\x9f\x96", "\xf0\x9f\x8f\x81"=>"\xf3\xbe\x9f\x97", "\xf0\x9f\x8f\x82"=>"\xf3\xbe\x9f\x98", "\xf0\x9f\x8f\x83"=>"\xf3\xbe\x9f\x99",
         
     | 
| 
      
 1320 
     | 
    
         
            +
                  "\xf0\x9f\x8f\x84"=>"\xf3\xbe\x9f\x9a", "\xf0\x9f\x8f\x86"=>"\xf3\xbe\x9f\x9b", "\xf0\x9f\x8f\x88"=>"\xf3\xbe\x9f\x9d", "\xf0\x9f\x8f\x8a"=>"\xf3\xbe\x9f\x9e", "\xf0\x9f\x9a\x83"=>"\xf3\xbe\x9f\x9f",
         
     | 
| 
      
 1321 
     | 
    
         
            +
                  "\xf0\x9f\x9a\x87"=>"\xf3\xbe\x9f\xa0", "\xe2\x93\x82"=>"\xf3\xbe\x9f\xa1", "\xf0\x9f\x9a\x84"=>"\xf3\xbe\x9f\xa2", "\xf0\x9f\x9a\x85"=>"\xf3\xbe\x9f\xa3", "\xf0\x9f\x9a\x97"=>"\xf3\xbe\x9f\xa4",
         
     | 
| 
      
 1322 
     | 
    
         
            +
                  "\xf0\x9f\x9a\x99"=>"\xf3\xbe\x9f\xa5", "\xf0\x9f\x9a\x8c"=>"\xf3\xbe\x9f\xa6", "\xf0\x9f\x9a\x8f"=>"\xf3\xbe\x9f\xa7", "\xf0\x9f\x9a\xa2"=>"\xf3\xbe\x9f\xa8", "\xe2\x9c\x88"=>"\xf3\xbe\x9f\xa9",
         
     | 
| 
      
 1323 
     | 
    
         
            +
                  "\xe2\x9b\xb5"=>"\xf3\xbe\x9f\xaa", "\xf0\x9f\x9a\x89"=>"\xf3\xbe\x9f\xac", "\xf0\x9f\x9a\x80"=>"\xf3\xbe\x9f\xad", "\xf0\x9f\x9a\xa4"=>"\xf3\xbe\x9f\xae", "\xf0\x9f\x9a\x95"=>"\xf3\xbe\x9f\xaf",
         
     | 
| 
      
 1324 
     | 
    
         
            +
                  "\xf0\x9f\x9a\x9a"=>"\xf3\xbe\x9f\xb1", "\xf0\x9f\x9a\x92"=>"\xf3\xbe\x9f\xb2", "\xf0\x9f\x9a\x91"=>"\xf3\xbe\x9f\xb3", "\xf0\x9f\x9a\x93"=>"\xf3\xbe\x9f\xb4", "\xe2\x9b\xbd"=>"\xf3\xbe\x9f\xb5",
         
     | 
| 
      
 1325 
     | 
    
         
            +
                  "\xf0\x9f\x85\xbf"=>"\xf3\xbe\x9f\xb6", "\xf0\x9f\x9a\xa5"=>"\xf3\xbe\x9f\xb7", "\xf0\x9f\x9a\xa7"=>"\xf3\xbe\x9f\xb8", "\xf0\x9f\x9a\xa8"=>"\xf3\xbe\x9f\xb9", "\xe2\x99\xa8"=>"\xf3\xbe\x9f\xba",
         
     | 
| 
      
 1326 
     | 
    
         
            +
                  "\xe2\x9b\xba"=>"\xf3\xbe\x9f\xbb", "\xf0\x9f\x8e\xa0"=>"\xf3\xbe\x9f\xbc", "\xf0\x9f\x8e\xa1"=>"\xf3\xbe\x9f\xbd", "\xf0\x9f\x8e\xa2"=>"\xf3\xbe\x9f\xbe", "\xf0\x9f\x8e\xa3"=>"\xf3\xbe\x9f\xbf",
         
     | 
| 
      
 1327 
     | 
    
         
            +
                  "\xf0\x9f\x8e\xa4"=>"\xf3\xbe\xa0\x80", "\xf0\x9f\x8e\xa5"=>"\xf3\xbe\xa0\x81", "\xf0\x9f\x8e\xa6"=>"\xf3\xbe\xa0\x82", "\xf0\x9f\x8e\xa7"=>"\xf3\xbe\xa0\x83", "\xf0\x9f\x8e\xa8"=>"\xf3\xbe\xa0\x84",
         
     | 
| 
      
 1328 
     | 
    
         
            +
                  "\xf0\x9f\x8e\xa9"=>"\xf3\xbe\xa0\x85", "\xf0\x9f\x8e\xaa"=>"\xf3\xbe\xa0\x86", "\xf0\x9f\x8e\xab"=>"\xf3\xbe\xa0\x87", "\xf0\x9f\x8e\xac"=>"\xf3\xbe\xa0\x88", "\xf0\x9f\x8e\xad"=>"\xf3\xbe\xa0\x89",
         
     | 
| 
      
 1329 
     | 
    
         
            +
                  "\xf0\x9f\x8e\xae"=>"\xf3\xbe\xa0\x8a", "\xf0\x9f\x80\x84"=>"\xf3\xbe\xa0\x8b", "\xf0\x9f\x8e\xaf"=>"\xf3\xbe\xa0\x8c", "\xf0\x9f\x8e\xb0"=>"\xf3\xbe\xa0\x8d", "\xf0\x9f\x8e\xb1"=>"\xf3\xbe\xa0\x8e",
         
     | 
| 
      
 1330 
     | 
    
         
            +
                  "\xf0\x9f\x8e\xb2"=>"\xf3\xbe\xa0\x8f", "\xf0\x9f\x8e\xb3"=>"\xf3\xbe\xa0\x90", "\xf0\x9f\x8e\xb4"=>"\xf3\xbe\xa0\x91", "\xf0\x9f\x83\x8f"=>"\xf3\xbe\xa0\x92", "\xf0\x9f\x8e\xb5"=>"\xf3\xbe\xa0\x93",
         
     | 
| 
      
 1331 
     | 
    
         
            +
                  "\xf0\x9f\x8e\xb6"=>"\xf3\xbe\xa0\x94", "\xf0\x9f\x8e\xb7"=>"\xf3\xbe\xa0\x95", "\xf0\x9f\x8e\xb8"=>"\xf3\xbe\xa0\x96", "\xf0\x9f\x8e\xb9"=>"\xf3\xbe\xa0\x97", "\xf0\x9f\x8e\xba"=>"\xf3\xbe\xa0\x98",
         
     | 
| 
      
 1332 
     | 
    
         
            +
                  "\xf0\x9f\x8e\xbb"=>"\xf3\xbe\xa0\x99", "\xf0\x9f\x8e\xbc"=>"\xf3\xbe\xa0\x9a", "\xe3\x80\xbd"=>"\xf3\xbe\xa0\x9b", "\xf0\x9f\x93\xb7"=>"\xf3\xbe\x93\xaf", "\xf0\x9f\x93\xb9"=>"\xf3\xbe\x93\xb9",
         
     | 
| 
      
 1333 
     | 
    
         
            +
                  "\xf0\x9f\x93\xba"=>"\xf3\xbe\xa0\x9c", "\xf0\x9f\x93\xbb"=>"\xf3\xbe\xa0\x9f", "\xf0\x9f\x93\xbc"=>"\xf3\xbe\xa0\xa0", "\xf0\x9f\x92\x8b"=>"\xf3\xbe\xa0\xa3", "\xf0\x9f\x92\x8c"=>"\xf3\xbe\xa0\xa4",
         
     | 
| 
      
 1334 
     | 
    
         
            +
                  "\xf0\x9f\x92\x8d"=>"\xf3\xbe\xa0\xa5", "\xf0\x9f\x92\x8e"=>"\xf3\xbe\xa0\xa6", "\xf0\x9f\x92\x8f"=>"\xf3\xbe\xa0\xa7", "\xf0\x9f\x92\x90"=>"\xf3\xbe\xa0\xa8", "\xf0\x9f\x92\x91"=>"\xf3\xbe\xa0\xa9",
         
     | 
| 
      
 1335 
     | 
    
         
            +
                  "\xf0\x9f\x92\x92"=>"\xf3\xbe\xa0\xaa", "\xf0\x9f\x94\x9e"=>"\xf3\xbe\xac\xa5", "\xc2\xa9"=>"\xf3\xbe\xac\xa9", "\xc2\xae"=>"\xf3\xbe\xac\xad", "\xe2\x84\xa2"=>"\xf3\xbe\xac\xaa",
         
     | 
| 
      
 1336 
     | 
    
         
            +
                  "\xe2\x84\xb9"=>"\xf3\xbe\xad\x87", "#\xe2\x83\xa3"=>"\xf3\xbe\xa0\xac", "1\xe2\x83\xa3"=>"\xf3\xbe\xa0\xae", "2\xe2\x83\xa3"=>"\xf3\xbe\xa0\xaf", "3\xe2\x83\xa3"=>"\xf3\xbe\xa0\xb0",
         
     | 
| 
      
 1337 
     | 
    
         
            +
                  "4\xe2\x83\xa3"=>"\xf3\xbe\xa0\xb1", "5\xe2\x83\xa3"=>"\xf3\xbe\xa0\xb2", "6\xe2\x83\xa3"=>"\xf3\xbe\xa0\xb3", "7\xe2\x83\xa3"=>"\xf3\xbe\xa0\xb4", "8\xe2\x83\xa3"=>"\xf3\xbe\xa0\xb5",
         
     | 
| 
      
 1338 
     | 
    
         
            +
                  "9\xe2\x83\xa3"=>"\xf3\xbe\xa0\xb6", "0\xe2\x83\xa3"=>"\xf3\xbe\xa0\xb7", "\xf0\x9f\x94\x9f"=>"\xf3\xbe\xa0\xbb", "\xf0\x9f\x93\xb6"=>"\xf3\xbe\xa0\xb8", "\xf0\x9f\x93\xb3"=>"\xf3\xbe\xa0\xb9",
         
     | 
| 
      
 1339 
     | 
    
         
            +
                  "\xf0\x9f\x93\xb4"=>"\xf3\xbe\xa0\xba", "\xf0\x9f\x8d\x94"=>"\xf3\xbe\xa5\xa0", "\xf0\x9f\x8d\x99"=>"\xf3\xbe\xa5\xa1", "\xf0\x9f\x8d\xb0"=>"\xf3\xbe\xa5\xa2", "\xf0\x9f\x8d\x9c"=>"\xf3\xbe\xa5\xa3",
         
     | 
| 
      
 1340 
     | 
    
         
            +
                  "\xf0\x9f\x8d\x9e"=>"\xf3\xbe\xa5\xa4", "\xf0\x9f\x8d\xb3"=>"\xf3\xbe\xa5\xa5", "\xf0\x9f\x8d\xa6"=>"\xf3\xbe\xa5\xa6", "\xf0\x9f\x8d\x9f"=>"\xf3\xbe\xa5\xa7", "\xf0\x9f\x8d\xa1"=>"\xf3\xbe\xa5\xa8",
         
     | 
| 
      
 1341 
     | 
    
         
            +
                  "\xf0\x9f\x8d\x98"=>"\xf3\xbe\xa5\xa9", "\xf0\x9f\x8d\x9a"=>"\xf3\xbe\xa5\xaa", "\xf0\x9f\x8d\x9d"=>"\xf3\xbe\xa5\xab", "\xf0\x9f\x8d\x9b"=>"\xf3\xbe\xa5\xac", "\xf0\x9f\x8d\xa2"=>"\xf3\xbe\xa5\xad",
         
     | 
| 
      
 1342 
     | 
    
         
            +
                  "\xf0\x9f\x8d\xa3"=>"\xf3\xbe\xa5\xae", "\xf0\x9f\x8d\xb1"=>"\xf3\xbe\xa5\xaf", "\xf0\x9f\x8d\xb2"=>"\xf3\xbe\xa5\xb0", "\xf0\x9f\x8d\xa7"=>"\xf3\xbe\xa5\xb1", "\xf0\x9f\x8d\x96"=>"\xf3\xbe\xa5\xb2",
         
     | 
| 
      
 1343 
     | 
    
         
            +
                  "\xf0\x9f\x8d\xa5"=>"\xf3\xbe\xa5\xb3", "\xf0\x9f\x8d\xa0"=>"\xf3\xbe\xa5\xb4", "\xf0\x9f\x8d\x95"=>"\xf3\xbe\xa5\xb5", "\xf0\x9f\x8d\x97"=>"\xf3\xbe\xa5\xb6", "\xf0\x9f\x8d\xa8"=>"\xf3\xbe\xa5\xb7",
         
     | 
| 
      
 1344 
     | 
    
         
            +
                  "\xf0\x9f\x8d\xa9"=>"\xf3\xbe\xa5\xb8", "\xf0\x9f\x8d\xaa"=>"\xf3\xbe\xa5\xb9", "\xf0\x9f\x8d\xab"=>"\xf3\xbe\xa5\xba", "\xf0\x9f\x8d\xac"=>"\xf3\xbe\xa5\xbb", "\xf0\x9f\x8d\xad"=>"\xf3\xbe\xa5\xbc",
         
     | 
| 
      
 1345 
     | 
    
         
            +
                  "\xf0\x9f\x8d\xae"=>"\xf3\xbe\xa5\xbd", "\xf0\x9f\x8d\xaf"=>"\xf3\xbe\xa5\xbe", "\xf0\x9f\x8d\xa4"=>"\xf3\xbe\xa5\xbf", "\xf0\x9f\x8d\xb4"=>"\xf3\xbe\xa6\x80", "\xe2\x98\x95"=>"\xf3\xbe\xa6\x81",
         
     | 
| 
      
 1346 
     | 
    
         
            +
                  "\xf0\x9f\x8d\xb8"=>"\xf3\xbe\xa6\x82", "\xf0\x9f\x8d\xba"=>"\xf3\xbe\xa6\x83", "\xf0\x9f\x8d\xb5"=>"\xf3\xbe\xa6\x84", "\xf0\x9f\x8d\xb6"=>"\xf3\xbe\xa6\x85", "\xf0\x9f\x8d\xb7"=>"\xf3\xbe\xa6\x86",
         
     | 
| 
      
 1347 
     | 
    
         
            +
                  "\xf0\x9f\x8d\xbb"=>"\xf3\xbe\xa6\x87", "\xf0\x9f\x8d\xb9"=>"\xf3\xbe\xa6\x88", "\xe2\x86\x97"=>"\xf3\xbe\xab\xb0", "\xe2\x86\x98"=>"\xf3\xbe\xab\xb1", "\xe2\x86\x96"=>"\xf3\xbe\xab\xb2",
         
     | 
| 
      
 1348 
     | 
    
         
            +
                  "\xe2\x86\x99"=>"\xf3\xbe\xab\xb3", "\xe2\xa4\xb4"=>"\xf3\xbe\xab\xb4", "\xe2\xa4\xb5"=>"\xf3\xbe\xab\xb5", "\xe2\x86\x94"=>"\xf3\xbe\xab\xb6", "\xe2\x86\x95"=>"\xf3\xbe\xab\xb7",
         
     | 
| 
      
 1349 
     | 
    
         
            +
                  "\xe2\xac\x86"=>"\xf3\xbe\xab\xb8", "\xe2\xac\x87"=>"\xf3\xbe\xab\xb9", "\xe2\x9e\xa1"=>"\xf3\xbe\xab\xba", "\xe2\xac\x85"=>"\xf3\xbe\xab\xbb", "\xe2\x96\xb6"=>"\xf3\xbe\xab\xbc",
         
     | 
| 
      
 1350 
     | 
    
         
            +
                  "\xe2\x97\x80"=>"\xf3\xbe\xab\xbd", "\xe2\x8f\xa9"=>"\xf3\xbe\xab\xbe", "\xe2\x8f\xaa"=>"\xf3\xbe\xab\xbf", "\xe2\x8f\xab"=>"\xf3\xbe\xac\x83", "\xe2\x8f\xac"=>"\xf3\xbe\xac\x82",
         
     | 
| 
      
 1351 
     | 
    
         
            +
                  "\xf0\x9f\x94\xba"=>"\xf3\xbe\xad\xb8", "\xf0\x9f\x94\xbb"=>"\xf3\xbe\xad\xb9", "\xf0\x9f\x94\xbc"=>"\xf3\xbe\xac\x81", "\xf0\x9f\x94\xbd"=>"\xf3\xbe\xac\x80", "\xe2\xad\x95"=>"\xf3\xbe\xad\x84",
         
     | 
| 
      
 1352 
     | 
    
         
            +
                  "\xe2\x9d\x8c"=>"\xf3\xbe\xad\x85", "\xe2\x9d\x8e"=>"\xf3\xbe\xad\x86", "\xe2\x9d\x97"=>"\xf3\xbe\xac\x84", "\xe2\x81\x89"=>"\xf3\xbe\xac\x85", "\xe2\x80\xbc"=>"\xf3\xbe\xac\x86",
         
     | 
| 
      
 1353 
     | 
    
         
            +
                  "\xe2\x9d\x93"=>"\xf3\xbe\xac\x89", "\xe2\x9d\x94"=>"\xf3\xbe\xac\x8a", "\xe2\x9d\x95"=>"\xf3\xbe\xac\x8b", "\xe3\x80\xb0"=>"\xf3\xbe\xac\x87", "\xe2\x9e\xb0"=>"\xf3\xbe\xac\x88",
         
     | 
| 
      
 1354 
     | 
    
         
            +
                  "\xe2\x9e\xbf"=>"\xf3\xbe\xa0\xab", "\xe2\x9d\xa4"=>"\xf3\xbe\xac\x8c", "\xf0\x9f\x92\x93"=>"\xf3\xbe\xac\x8d", "\xf0\x9f\x92\x94"=>"\xf3\xbe\xac\x8e", "\xf0\x9f\x92\x95"=>"\xf3\xbe\xac\x8f",
         
     | 
| 
      
 1355 
     | 
    
         
            +
                  "\xf0\x9f\x92\x96"=>"\xf3\xbe\xac\x90", "\xf0\x9f\x92\x97"=>"\xf3\xbe\xac\x91", "\xf0\x9f\x92\x98"=>"\xf3\xbe\xac\x92", "\xf0\x9f\x92\x99"=>"\xf3\xbe\xac\x93", "\xf0\x9f\x92\x9a"=>"\xf3\xbe\xac\x94",
         
     | 
| 
      
 1356 
     | 
    
         
            +
                  "\xf0\x9f\x92\x9b"=>"\xf3\xbe\xac\x95", "\xf0\x9f\x92\x9c"=>"\xf3\xbe\xac\x96", "\xf0\x9f\x92\x9d"=>"\xf3\xbe\xac\x97", "\xf0\x9f\x92\x9e"=>"\xf3\xbe\xac\x98", "\xf0\x9f\x92\x9f"=>"\xf3\xbe\xac\x99",
         
     | 
| 
      
 1357 
     | 
    
         
            +
                  "\xe2\x99\xa5"=>"\xf3\xbe\xac\x9a", "\xe2\x99\xa0"=>"\xf3\xbe\xac\x9b", "\xe2\x99\xa6"=>"\xf3\xbe\xac\x9c", "\xe2\x99\xa3"=>"\xf3\xbe\xac\x9d", "\xf0\x9f\x9a\xac"=>"\xf3\xbe\xac\x9e",
         
     | 
| 
      
 1358 
     | 
    
         
            +
                  "\xf0\x9f\x9a\xad"=>"\xf3\xbe\xac\x9f", "\xe2\x99\xbf"=>"\xf3\xbe\xac\xa0", "\xf0\x9f\x9a\xa9"=>"\xf3\xbe\xac\xa2", "\xe2\x9a\xa0"=>"\xf3\xbe\xac\xa3", "\xe2\x9b\x94"=>"\xf3\xbe\xac\xa6",
         
     | 
| 
      
 1359 
     | 
    
         
            +
                  "\xe2\x99\xbb"=>"\xf3\xbe\xac\xac", "\xf0\x9f\x9a\xb2"=>"\xf3\xbe\x9f\xab", "\xf0\x9f\x9a\xb6"=>"\xf3\xbe\x9f\xb0", "\xf0\x9f\x9a\xb9"=>"\xf3\xbe\xac\xb3", "\xf0\x9f\x9a\xba"=>"\xf3\xbe\xac\xb4",
         
     | 
| 
      
 1360 
     | 
    
         
            +
                  "\xf0\x9f\x9b\x80"=>"\xf3\xbe\x94\x85", "\xf0\x9f\x9a\xbb"=>"\xf3\xbe\x94\x86", "\xf0\x9f\x9a\xbd"=>"\xf3\xbe\x94\x87", "\xf0\x9f\x9a\xbe"=>"\xf3\xbe\x94\x88", "\xf0\x9f\x9a\xbc"=>"\xf3\xbe\xac\xb5",
         
     | 
| 
      
 1361 
     | 
    
         
            +
                  "\xf0\x9f\x9a\xaa"=>"\xf3\xbe\x93\xb3", "\xf0\x9f\x9a\xab"=>"\xf3\xbe\xad\x88", "\xe2\x9c\x94"=>"\xf3\xbe\xad\x89", "\xf0\x9f\x86\x91"=>"\xf3\xbe\xae\x84", "\xf0\x9f\x86\x92"=>"\xf3\xbe\xac\xb8",
         
     | 
| 
      
 1362 
     | 
    
         
            +
                  "\xf0\x9f\x86\x93"=>"\xf3\xbe\xac\xa1", "\xf0\x9f\x86\x94"=>"\xf3\xbe\xae\x81", "\xf0\x9f\x86\x95"=>"\xf3\xbe\xac\xb6", "\xf0\x9f\x86\x96"=>"\xf3\xbe\xac\xa8", "\xf0\x9f\x86\x97"=>"\xf3\xbe\xac\xa7",
         
     | 
| 
      
 1363 
     | 
    
         
            +
                  "\xf0\x9f\x86\x98"=>"\xf3\xbe\xad\x8f", "\xf0\x9f\x86\x99"=>"\xf3\xbe\xac\xb7", "\xf0\x9f\x86\x9a"=>"\xf3\xbe\xac\xb2", "\xf0\x9f\x88\x81"=>"\xf3\xbe\xac\xa4", "\xf0\x9f\x88\x82"=>"\xf3\xbe\xac\xbf",
         
     | 
| 
      
 1364 
     | 
    
         
            +
                  "\xf0\x9f\x88\xb2"=>"\xf3\xbe\xac\xae", "\xf0\x9f\x88\xb3"=>"\xf3\xbe\xac\xaf", "\xf0\x9f\x88\xb4"=>"\xf3\xbe\xac\xb0", "\xf0\x9f\x88\xb5"=>"\xf3\xbe\xac\xb1", "\xf0\x9f\x88\xb6"=>"\xf3\xbe\xac\xb9",
         
     | 
| 
      
 1365 
     | 
    
         
            +
                  "\xf0\x9f\x88\x9a"=>"\xf3\xbe\xac\xba", "\xf0\x9f\x88\xb7"=>"\xf3\xbe\xac\xbb", "\xf0\x9f\x88\xb8"=>"\xf3\xbe\xac\xbc", "\xf0\x9f\x88\xb9"=>"\xf3\xbe\xac\xbe", "\xf0\x9f\x88\xaf"=>"\xf3\xbe\xad\x80",
         
     | 
| 
      
 1366 
     | 
    
         
            +
                  "\xf0\x9f\x88\xba"=>"\xf3\xbe\xad\x81", "\xe3\x8a\x99"=>"\xf3\xbe\xac\xab", "\xe3\x8a\x97"=>"\xf3\xbe\xad\x83", "\xf0\x9f\x89\x90"=>"\xf3\xbe\xac\xbd", "\xf0\x9f\x89\x91"=>"\xf3\xbe\xad\x90",
         
     | 
| 
      
 1367 
     | 
    
         
            +
                  "\xe2\x9e\x95"=>"\xf3\xbe\xad\x91", "\xe2\x9e\x96"=>"\xf3\xbe\xad\x92", "\xe2\x9c\x96"=>"\xf3\xbe\xad\x93", "\xe2\x9e\x97"=>"\xf3\xbe\xad\x94", "\xf0\x9f\x92\xa0"=>"\xf3\xbe\xad\x95",
         
     | 
| 
      
 1368 
     | 
    
         
            +
                  "\xf0\x9f\x92\xa1"=>"\xf3\xbe\xad\x96", "\xf0\x9f\x92\xa2"=>"\xf3\xbe\xad\x97", "\xf0\x9f\x92\xa3"=>"\xf3\xbe\xad\x98", "\xf0\x9f\x92\xa4"=>"\xf3\xbe\xad\x99", "\xf0\x9f\x92\xa5"=>"\xf3\xbe\xad\x9a",
         
     | 
| 
      
 1369 
     | 
    
         
            +
                  "\xf0\x9f\x92\xa6"=>"\xf3\xbe\xad\x9b", "\xf0\x9f\x92\xa7"=>"\xf3\xbe\xad\x9c", "\xf0\x9f\x92\xa8"=>"\xf3\xbe\xad\x9d", "\xf0\x9f\x92\xa9"=>"\xf3\xbe\x93\xb4", "\xf0\x9f\x92\xaa"=>"\xf3\xbe\xad\x9e",
         
     | 
| 
      
 1370 
     | 
    
         
            +
                  "\xf0\x9f\x92\xab"=>"\xf3\xbe\xad\x9f", "\xf0\x9f\x92\xac"=>"\xf3\xbe\x94\xb2", "\xe2\x9c\xa8"=>"\xf3\xbe\xad\xa0", "\xe2\x9c\xb4"=>"\xf3\xbe\xad\xa1", "\xe2\x9c\xb3"=>"\xf3\xbe\xad\xa2",
         
     | 
| 
      
 1371 
     | 
    
         
            +
                  "\xe2\x9a\xaa"=>"\xf3\xbe\xad\xa5", "\xe2\x9a\xab"=>"\xf3\xbe\xad\xa6", "\xf0\x9f\x94\xb4"=>"\xf3\xbe\xad\xa3", "\xf0\x9f\x94\xb5"=>"\xf3\xbe\xad\xa4", "\xf0\x9f\x94\xb2"=>"\xf3\xbe\xad\xa4",
         
     | 
| 
      
 1372 
     | 
    
         
            +
                  "\xf0\x9f\x94\xb3"=>"\xf3\xbe\xad\xa7", "\xe2\xad\x90"=>"\xf3\xbe\xad\xa8", "\xe2\xac\x9c"=>"\xf3\xbe\xad\xab", "\xe2\xac\x9b"=>"\xf3\xbe\xad\xac", "\xe2\x96\xab"=>"\xf3\xbe\xad\xad",
         
     | 
| 
      
 1373 
     | 
    
         
            +
                  "\xe2\x96\xaa"=>"\xf3\xbe\xad\xae", "\xe2\x97\xbd"=>"\xf3\xbe\xad\xaf", "\xe2\x97\xbe"=>"\xf3\xbe\xad\xb0", "\xe2\x97\xbb"=>"\xf3\xbe\xad\xb1", "\xe2\x97\xbc"=>"\xf3\xbe\xad\xb2",
         
     | 
| 
      
 1374 
     | 
    
         
            +
                  "\xf0\x9f\x94\xb6"=>"\xf3\xbe\xad\xb3", "\xf0\x9f\x94\xb7"=>"\xf3\xbe\xad\xb4", "\xf0\x9f\x94\xb8"=>"\xf3\xbe\xad\xb5", "\xf0\x9f\x94\xb9"=>"\xf3\xbe\xad\xb6", "\xe2\x9d\x87"=>"\xf3\xbe\xad\xb7",
         
     | 
| 
      
 1375 
     | 
    
         
            +
                  "\xf0\x9f\x92\xae"=>"\xf3\xbe\xad\xba", "\xf0\x9f\x92\xaf"=>"\xf3\xbe\xad\xbb", "\xe2\x86\xa9"=>"\xf3\xbe\xae\x83", "\xe2\x86\xaa"=>"\xf3\xbe\xae\x88", "\xf0\x9f\x94\x83"=>"\xf3\xbe\xae\x91",
         
     | 
| 
      
 1376 
     | 
    
         
            +
                  "\xf0\x9f\x94\x8a"=>"\xf3\xbe\xa0\xa1", "\xf0\x9f\x94\x8b"=>"\xf3\xbe\x93\xbc", "\xf0\x9f\x94\x8c"=>"\xf3\xbe\x93\xbe", "\xf0\x9f\x94\x8d"=>"\xf3\xbe\xae\x85", "\xf0\x9f\x94\x8e"=>"\xf3\xbe\xae\x8d",
         
     | 
| 
      
 1377 
     | 
    
         
            +
                  "\xf0\x9f\x94\x92"=>"\xf3\xbe\xae\x86", "\xf0\x9f\x94\x93"=>"\xf3\xbe\xae\x87", "\xf0\x9f\x94\x8f"=>"\xf3\xbe\xae\x90", "\xf0\x9f\x94\x90"=>"\xf3\xbe\xae\x8a", "\xf0\x9f\x94\x91"=>"\xf3\xbe\xae\x82",
         
     | 
| 
      
 1378 
     | 
    
         
            +
                  "\xf0\x9f\x94\x94"=>"\xf3\xbe\x93\xb2", "\xe2\x98\x91"=>"\xf3\xbe\xae\x8b", "\xf0\x9f\x94\x98"=>"\xf3\xbe\xae\x8c", "\xf0\x9f\x94\x96"=>"\xf3\xbe\xae\x8f", "\xf0\x9f\x94\x97"=>"\xf3\xbe\xad\x8b",
         
     | 
| 
      
 1379 
     | 
    
         
            +
                  "\xf0\x9f\x94\x99"=>"\xf3\xbe\xae\x8e", "\xf0\x9f\x94\x9a"=>"\xf3\xbe\x80\x9a", "\xf0\x9f\x94\x9b"=>"\xf3\xbe\x80\x99", "\xf0\x9f\x94\x9c"=>"\xf3\xbe\x80\x98", "\xf0\x9f\x94\x9d"=>"\xf3\xbe\xad\x82",
         
     | 
| 
      
 1380 
     | 
    
         
            +
                  "\xe2\x80\x83"=>"\xf3\xbe\xad\x8c", "\xe2\x80\x82"=>"\xf3\xbe\xad\x8d", "\xe2\x80\x85"=>"\xf3\xbe\xad\x8e", "\xe2\x9c\x85"=>"\xf3\xbe\xad\x8a", "\xe2\x9c\x8a"=>"\xf3\xbe\xae\x93",
         
     | 
| 
      
 1381 
     | 
    
         
            +
                  "\xe2\x9c\x8b"=>"\xf3\xbe\xae\x95", "\xe2\x9c\x8c"=>"\xf3\xbe\xae\x94", "\xf0\x9f\x91\x8a"=>"\xf3\xbe\xae\x96", "\xf0\x9f\x91\x8d"=>"\xf3\xbe\xae\x97", "\xe2\x98\x9d"=>"\xf3\xbe\xae\x98",
         
     | 
| 
      
 1382 
     | 
    
         
            +
                  "\xf0\x9f\x91\x86"=>"\xf3\xbe\xae\x99", "\xf0\x9f\x91\x87"=>"\xf3\xbe\xae\x9a", "\xf0\x9f\x91\x88"=>"\xf3\xbe\xae\x9b", "\xf0\x9f\x91\x89"=>"\xf3\xbe\xae\x9c", "\xf0\x9f\x91\x8b"=>"\xf3\xbe\xae\x9d",
         
     | 
| 
      
 1383 
     | 
    
         
            +
                  "\xf0\x9f\x91\x8f"=>"\xf3\xbe\xae\x9e", "\xf0\x9f\x91\x8c"=>"\xf3\xbe\xae\x9f", "\xf0\x9f\x91\x8e"=>"\xf3\xbe\xae\xa0", "\xf0\x9f\x91\x90"=>"\xf3\xbe\xae\xa1",
         
     | 
| 
      
 1384 
     | 
    
         
            +
                },
         
     | 
| 
      
 1385 
     | 
    
         
            +
                'docomo_to_unified' => {
         
     | 
| 
      
 1386 
     | 
    
         
            +
                  "\xee\x98\xbe"=>"\xf0\x9f\x8c\x87", "\xee\x98\xbf"=>"\xe2\x98\x81", "\xee\x99\x80"=>"\xe2\x98\x94", "\xee\x99\x81"=>"\xe2\x9b\x84",
         
     | 
| 
      
 1387 
     | 
    
         
            +
                  "\xee\x99\x82"=>"\xe2\x9a\xa1", "\xee\x99\x83"=>"\xf0\x9f\x8d\xa5", "\xee\x99\x84"=>"\xf0\x9f\x8c\x81", "\xee\x99\x85"=>"\xf0\x9f\x8c\x82", "\xee\x9a\xb3"=>"\xf0\x9f\x8c\x8c",
         
     | 
| 
      
 1388 
     | 
    
         
            +
                  "[\xe5\xa4\x95\xe7\x84\xbc\xe3\x81\x91]"=>"\xf0\x9f\x8c\x86", "[\xe8\x99\xb9]"=>"\xf0\x9f\x8c\x88", "[\xe9\x9b\xaa\xe7\xb5\x90\xe6\x99\xb6]"=>"\xe2\x9d\x84", "\xee\x98\xbe\xee\x98\xbf"=>"\xe2\x9b\x85", "\xee\x9c\xbf"=>"\xf0\x9f\x8c\x8a",
         
     | 
| 
      
 1389 
     | 
    
         
            +
                  "[\xe7\x81\xab\xe5\xb1\xb1]"=>"\xf0\x9f\x8c\x8b", "[\xe5\x9c\xb0\xe7\x90\x83]"=>"\xf0\x9f\x8c\x8f", "\xee\x9a\x9c"=>"\xf0\x9f\x94\xb3", "\xee\x9a\x9d"=>"\xf0\x9f\x8c\x94", "\xee\x9a\x9e"=>"\xf0\x9f\x8c\x9b",
         
     | 
| 
      
 1390 
     | 
    
         
            +
                  "\xee\x9a\x9f"=>"\xf0\x9f\x8c\x99", "\xee\x9a\xa0"=>"\xe2\xad\x95", "[\xe2\x98\x86]"=>"\xe2\xad\x90", "\xe2\x98\x86\xe5\xbd\xa1"=>"\xf0\x9f\x8c\xa0", "\xee\x9a\xba"=>"\xe2\x8f\xb0",
         
     | 
| 
      
 1391 
     | 
    
         
            +
                  "\xee\x9c\x9f"=>"\xe2\x8c\x9a", "\xee\x9c\x9c"=>"\xe2\x8f\xb3", "\xee\x99\x86"=>"\xe2\x99\x88", "\xee\x99\x87"=>"\xe2\x99\x89", "\xee\x99\x88"=>"\xe2\x99\x8a",
         
     | 
| 
      
 1392 
     | 
    
         
            +
                  "\xee\x99\x89"=>"\xe2\x99\x8b", "\xee\x99\x8a"=>"\xe2\x99\x8c", "\xee\x99\x8b"=>"\xe2\x99\x8d", "\xee\x99\x8c"=>"\xe2\x99\x8e", "\xee\x99\x8d"=>"\xe2\x99\x8f",
         
     | 
| 
      
 1393 
     | 
    
         
            +
                  "\xee\x99\x8e"=>"\xe2\x99\x90", "\xee\x99\x8f"=>"\xe2\x99\x91", "\xee\x99\x90"=>"\xe2\x99\x92", "\xee\x99\x91"=>"\xe2\x99\x93", "[\xe8\x9b\x87\xe4\xbd\xbf\xe5\xba\xa7]"=>"\xe2\x9b\x8e",
         
     | 
| 
      
 1394 
     | 
    
         
            +
                  "\xee\x9d\x81"=>"\xf0\x9f\x8c\xbf", "\xee\x9d\x83"=>"\xf0\x9f\x8c\xb7", "\xee\x9d\x86"=>"\xf0\x9f\x8c\xb1", "\xee\x9d\x87"=>"\xf0\x9f\x8d\x82", "\xee\x9d\x88"=>"\xf0\x9f\x8c\xb8",
         
     | 
| 
      
 1395 
     | 
    
         
            +
                  "[\xe3\x83\x90\xe3\x83\xa9]"=>"\xf0\x9f\x8c\xb9", "[\xe9\xa2\xa8\xe3\x81\xab\xe8\x88\x9e\xe3\x81\x86\xe8\x91\x89]"=>"\xf0\x9f\x8d\x83", "[\xe3\x83\x8f\xe3\x82\xa4\xe3\x83\x93\xe3\x82\xb9\xe3\x82\xab\xe3\x82\xb9]"=>"\xf0\x9f\x8c\xba", "[\xe3\x81\xb2\xe3\x81\xbe\xe3\x82\x8f\xe3\x82\x8a]"=>"\xf0\x9f\x8c\xbb", "[\xe3\x83\xa4\xe3\x82\xb7]"=>"\xf0\x9f\x8c\xb4",
         
     | 
| 
      
 1396 
     | 
    
         
            +
                  "[\xe3\x82\xb5\xe3\x83\x9c\xe3\x83\x86\xe3\x83\xb3]"=>"\xf0\x9f\x8c\xb5", "[\xe7\xa8\xb2\xe7\xa9\x82]"=>"\xf0\x9f\x8c\xbe", "[\xe3\x81\xa8\xe3\x81\x86\xe3\x82\x82\xe3\x82\x8d\xe3\x81\x93\xe3\x81\x97]"=>"\xf0\x9f\x8c\xbd", "[\xe3\x82\xad\xe3\x83\x8e\xe3\x82\xb3]"=>"\xf0\x9f\x8d\x84", "[\xe6\xa0\x97]"=>"\xf0\x9f\x8c\xb0",
         
     | 
| 
      
 1397 
     | 
    
         
            +
                  "[\xe8\x8a\xb1]"=>"\xf0\x9f\x8c\xbc", "\xee\x9d\x82"=>"\xf0\x9f\x8d\x92", "\xee\x9d\x84"=>"\xf0\x9f\x8d\x8c", "\xee\x9d\x85"=>"\xf0\x9f\x8d\x8f", "[\xe3\x81\xbf\xe3\x81\x8b\xe3\x82\x93]"=>"\xf0\x9f\x8d\x8a",
         
     | 
| 
      
 1398 
     | 
    
         
            +
                  "[\xe3\x82\xa4\xe3\x83\x81\xe3\x82\xb4]"=>"\xf0\x9f\x8d\x93", "[\xe3\x82\xb9\xe3\x82\xa4\xe3\x82\xab]"=>"\xf0\x9f\x8d\x89", "[\xe3\x83\x88\xe3\x83\x9e\xe3\x83\x88]"=>"\xf0\x9f\x8d\x85", "[\xe3\x83\x8a\xe3\x82\xb9]"=>"\xf0\x9f\x8d\x86", "[\xe3\x83\xa1\xe3\x83\xad\xe3\x83\xb3]"=>"\xf0\x9f\x8d\x88",
         
     | 
| 
      
 1399 
     | 
    
         
            +
                  "[\xe3\x83\x91\xe3\x82\xa4\xe3\x83\x8a\xe3\x83\x83\xe3\x83\x97\xe3\x83\xab]"=>"\xf0\x9f\x8d\x8d", "[\xe3\x83\x96\xe3\x83\x89\xe3\x82\xa6]"=>"\xf0\x9f\x8d\x87", "[\xe3\x83\xa2\xe3\x83\xa2]"=>"\xf0\x9f\x8d\x91", "\xee\x9a\x91"=>"\xf0\x9f\x91\x80", "\xee\x9a\x92"=>"\xf0\x9f\x91\x82",
         
     | 
| 
      
 1400 
     | 
    
         
            +
                  "[\xe9\xbc\xbb]"=>"\xf0\x9f\x91\x83", "\xee\x9b\xb9"=>"\xf0\x9f\x92\x8f", "\xee\x9c\xa8"=>"\xf0\x9f\x98\x9d", "\xee\x9c\x90"=>"\xf0\x9f\x92\x84", "[\xe3\x83\x9e\xe3\x83\x8b\xe3\x82\xad\xe3\x83\xa5\xe3\x82\xa2]"=>"\xf0\x9f\x92\x85",
         
     | 
| 
      
 1401 
     | 
    
         
            +
                  "[\xe3\x82\xa8\xe3\x82\xb9\xe3\x83\x86]"=>"\xf0\x9f\x92\x86", "\xee\x99\xb5"=>"\xe2\x9c\x82", "[\xe5\xba\x8a\xe5\xb1\x8b]"=>"\xf0\x9f\x92\x88", "\xee\x9a\xb1"=>"\xf0\x9f\x91\xa4", "\xee\x9b\xb0"=>"\xf0\x9f\x98\xba",
         
     | 
| 
      
 1402 
     | 
    
         
            +
                  "[\xe5\xae\xb6\xe6\x97\x8f]"=>"\xf0\x9f\x91\xaa", "[\xe3\x82\xab\xe3\x83\x83\xe3\x83\x97\xe3\x83\xab]"=>"\xf0\x9f\x91\xab", "[\xe8\xad\xa6\xe5\xae\x98]"=>"\xf0\x9f\x91\xae", "[\xe3\x83\x90\xe3\x83\x8b\xe3\x83\xbc]"=>"\xf0\x9f\x91\xaf", "[\xe8\x8a\xb1\xe5\xab\x81]"=>"\xf0\x9f\x91\xb0",
         
     | 
| 
      
 1403 
     | 
    
         
            +
                  "[\xe7\x99\xbd\xe4\xba\xba]"=>"\xf0\x9f\x91\xb1", "[\xe4\xb8\xad\xe5\x9b\xbd\xe4\xba\xba]"=>"\xf0\x9f\x91\xb2", "[\xe3\x82\xa4\xe3\x83\xb3\xe3\x83\x89\xe4\xba\xba]"=>"\xf0\x9f\x91\xb3", "[\xe3\x81\x8a\xe3\x81\x98\xe3\x81\x84\xe3\x81\x95\xe3\x82\x93]"=>"\xf0\x9f\x91\xb4", "[\xe3\x81\x8a\xe3\x81\xb0\xe3\x81\x82\xe3\x81\x95\xe3\x82\x93]"=>"\xf0\x9f\x91\xb5",
         
     | 
| 
      
 1404 
     | 
    
         
            +
                  "[\xe8\xb5\xa4\xe3\x81\xa1\xe3\x82\x83\xe3\x82\x93]"=>"\xf0\x9f\x9a\xbc", "[\xe5\xb7\xa5\xe4\xba\x8b\xe7\x8f\xbe\xe5\xa0\xb4\xe3\x81\xae\xe4\xba\xba]"=>"\xf0\x9f\x91\xb7", "[\xe3\x81\x8a\xe5\xa7\xab\xe6\xa7\x98]"=>"\xf0\x9f\x91\xb8", "[\xe3\x81\xaa\xe3\x81\xbe\xe3\x81\xaf\xe3\x81\x92]"=>"\xf0\x9f\x91\xb9", "[\xe5\xa4\xa9\xe7\x8b\x97]"=>"\xf0\x9f\x91\xba",
         
     | 
| 
      
 1405 
     | 
    
         
            +
                  "[\xe3\x81\x8a\xe5\x8c\x96\xe3\x81\x91]"=>"\xf0\x9f\x91\xbb", "[\xe5\xa4\xa9\xe4\xbd\xbf]"=>"\xf0\x9f\x91\xbc", "[UFO]"=>"\xf0\x9f\x91\xbd", "[\xe5\xae\x87\xe5\xae\x99\xe4\xba\xba]"=>"\xf0\x9f\x91\xbe", "[\xe3\x82\xa2\xe3\x82\xaf\xe3\x83\x9e]"=>"\xf0\x9f\x91\xbf",
         
     | 
| 
      
 1406 
     | 
    
         
            +
                  "[\xe3\x83\x89\xe3\x82\xaf\xe3\x83\xad]"=>"\xf0\x9f\x92\x80", "[\xe6\xa1\x88\xe5\x86\x85]"=>"\xf0\x9f\x92\x81", "[\xe8\xa1\x9b\xe5\x85\xb5]"=>"\xf0\x9f\x92\x82", "[\xe3\x83\x80\xe3\x83\xb3\xe3\x82\xb9]"=>"\xf0\x9f\x92\x83", "\xee\x9d\x8e"=>"\xf0\x9f\x90\x8c",
         
     | 
| 
      
 1407 
     | 
    
         
            +
                  "[\xe3\x83\x98\xe3\x83\x93]"=>"\xf0\x9f\x90\x8d", "\xee\x9d\x94"=>"\xf0\x9f\x90\xb4", "[\xe3\x83\x8b\xe3\x83\xaf\xe3\x83\x88\xe3\x83\xaa]"=>"\xf0\x9f\x90\x94", "[\xe3\x82\xa4\xe3\x83\x8e\xe3\x82\xb7\xe3\x82\xb7]"=>"\xf0\x9f\x90\x97", "[\xe3\x83\xa9\xe3\x82\xaf\xe3\x83\x80]"=>"\xf0\x9f\x90\xab",
         
     | 
| 
      
 1408 
     | 
    
         
            +
                  "[\xe3\x82\xbe\xe3\x82\xa6]"=>"\xf0\x9f\x90\x98", "[\xe3\x82\xb3\xe3\x82\xa2\xe3\x83\xa9]"=>"\xf0\x9f\x90\xa8", "[\xe3\x82\xb5\xe3\x83\xab]"=>"\xf0\x9f\x90\xb5", "[\xe3\x83\x92\xe3\x83\x84\xe3\x82\xb8]"=>"\xf0\x9f\x90\x91", "[\xe3\x82\xbf\xe3\x82\xb3]"=>"\xf0\x9f\x90\x99",
         
     | 
| 
      
 1409 
     | 
    
         
            +
                  "[\xe5\xb7\xbb\xe8\xb2\x9d]"=>"\xf0\x9f\x90\x9a", "[\xe3\x82\xb2\xe3\x82\xb8\xe3\x82\xb2\xe3\x82\xb8]"=>"\xf0\x9f\x90\x9b", "[\xe3\x82\xa2\xe3\x83\xaa]"=>"\xf0\x9f\x90\x9c", "[\xe3\x83\x9f\xe3\x83\x84\xe3\x83\x90\xe3\x83\x81]"=>"\xf0\x9f\x90\x9d", "[\xe3\x81\xa6\xe3\x82\x93\xe3\x81\xa8\xe3\x81\x86\xe8\x99\xab]"=>"\xf0\x9f\x90\x9e",
         
     | 
| 
      
 1410 
     | 
    
         
            +
                  "\xee\x9d\x91"=>"\xf0\x9f\x8e\xa3", "[\xe3\x82\xab\xe3\x83\xa1]"=>"\xf0\x9f\x90\xa2", "\xee\x9d\x8f"=>"\xf0\x9f\x90\xa3", "\xee\x9d\x90"=>"\xf0\x9f\x90\xa7", "\xee\x9a\xa1"=>"\xf0\x9f\x90\xba",
         
     | 
| 
      
 1411 
     | 
    
         
            +
                  "[\xe3\x82\xa4\xe3\x83\xab\xe3\x82\xab]"=>"\xf0\x9f\x90\xac", "[\xe3\x83\x8d\xe3\x82\xba\xe3\x83\x9f]"=>"\xf0\x9f\x90\xad", "[\xe3\x83\x88\xe3\x83\xa9]"=>"\xf0\x9f\x90\xaf", "\xee\x9a\xa2"=>"\xf0\x9f\x90\xb1", "[\xe3\x82\xaf\xe3\x82\xb8\xe3\x83\xa9]"=>"\xf0\x9f\x90\xb3",
         
     | 
| 
      
 1412 
     | 
    
         
            +
                  "\xee\x9d\x95"=>"\xf0\x9f\x90\xbd", "[\xe3\x82\xaf\xe3\x83\x9e]"=>"\xf0\x9f\x90\xbb", "[\xe3\x83\x8f\xe3\x83\xa0\xe3\x82\xb9\xe3\x82\xbf\xe3\x83\xbc]"=>"\xf0\x9f\x90\xb9", "[\xe7\x89\x9b]"=>"\xf0\x9f\x90\xae", "[\xe3\x82\xa6\xe3\x82\xb5\xe3\x82\xae]"=>"\xf0\x9f\x90\xb0",
         
     | 
| 
      
 1413 
     | 
    
         
            +
                  "[\xe3\x82\xab\xe3\x82\xa8\xe3\x83\xab]"=>"\xf0\x9f\x90\xb8", "\xee\x9a\x98"=>"\xf0\x9f\x91\xa3", "[\xe8\xbe\xb0]"=>"\xf0\x9f\x90\xb2", "[\xe3\x83\x91\xe3\x83\xb3\xe3\x83\x80]"=>"\xf0\x9f\x90\xbc", "\xee\x9b\xb1"=>"\xf0\x9f\x99\x8e",
         
     | 
| 
      
 1414 
     | 
    
         
            +
                  "\xee\x9b\xb3"=>"\xf0\x9f\x99\x8d", "\xee\x9b\xb4"=>"\xf0\x9f\x98\xb5", "\xee\x9b\xb2"=>"\xf0\x9f\x98\x9e", "\xee\x9c\xa3"=>"\xf0\x9f\x98\xa5", "\xee\x9c\xa5"=>"\xf0\x9f\x98\x92",
         
     | 
| 
      
 1415 
     | 
    
         
            +
                  "\xee\x9c\xa6"=>"\xf0\x9f\x98\xbb", "\xee\x9d\x93"=>"\xf0\x9f\x98\xbc", "\xee\x9d\x92"=>"\xf0\x9f\x98\x8b", "[\xe9\xa2\xa8\xe9\x82\xaa\xe3\x81\xb2\xe3\x81\x8d]"=>"\xf0\x9f\x98\xb7", "\xee\x9c\xaa"=>"\xf0\x9f\x98\xb9",
         
     | 
| 
      
 1416 
     | 
    
         
            +
                  "\xee\x9c\xa2"=>"\xf0\x9f\x98\x85", "\xee\x9c\xae"=>"\xf0\x9f\x98\xbf", "\xee\x9c\xad"=>"\xf0\x9f\x98\xad", "\xee\x9d\x97"=>"\xf0\x9f\x98\xb1", "\xee\x9c\xab"=>"\xf0\x9f\x98\xab",
         
     | 
| 
      
 1417 
     | 
    
         
            +
                  "\xee\x9c\xa4"=>"\xf0\x9f\x98\xbe", "\xee\x9c\xa1"=>"\xf0\x9f\x98\x8c", "\xee\x9c\xa0"=>"\xf0\x9f\x98\x94", "\xee\x9c\x81"=>"\xf0\x9f\x92\xa4", "\xee\x9c\xac"=>"\xf0\x9f\x98\x8f",
         
     | 
| 
      
 1418 
     | 
    
         
            +
                  "\xee\x9c\xa9"=>"\xf0\x9f\x98\x89", "\xee\x9c\xaf"=>"\xf0\x9f\x86\x96", "\xee\x9c\x8b"=>"\xf0\x9f\x91\x8c", "m(_ _)m"=>"\xf0\x9f\x99\x87", "(/_\xef\xbc\xbc)"=>"\xf0\x9f\x99\x88",
         
     | 
| 
      
 1419 
     | 
    
         
            +
                  "(\xe3\x83\xbb\xc3\x97\xe3\x83\xbb)"=>"\xf0\x9f\x99\x8a", "|(\xe3\x83\xbb\xc3\x97\xe3\x83\xbb)|"=>"\xf0\x9f\x99\x89", "(^-^)/"=>"\xf0\x9f\x99\x8b", "\xef\xbc\xbc(^o^)\xef\xbc\x8f"=>"\xf0\x9f\x99\x8c", "(>\xe4\xba\xba<)"=>"\xf0\x9f\x99\x8f",
         
     | 
| 
      
 1420 
     | 
    
         
            +
                  "\xee\x99\xa3"=>"\xf0\x9f\x8f\xa1", "\xee\x99\xa4"=>"\xf0\x9f\x8f\xa2", "\xee\x99\xa5"=>"\xf0\x9f\x93\xae", "\xee\x99\xa6"=>"\xf0\x9f\x8f\xa5", "\xee\x99\xa7"=>"\xf0\x9f\x8f\xa6",
         
     | 
| 
      
 1421 
     | 
    
         
            +
                  "\xee\x99\xa8"=>"\xf0\x9f\x8f\xa7", "\xee\x99\xa9"=>"\xf0\x9f\x8f\xa8", "\xee\x99\xa9\xee\x9b\xaf"=>"\xf0\x9f\x8f\xa9", "\xee\x99\xaa"=>"\xf0\x9f\x8f\xaa", "\xee\x9c\xbe"=>"\xf0\x9f\x8f\xab",
         
     | 
| 
      
 1422 
     | 
    
         
            +
                  "[\xe6\x95\x99\xe4\xbc\x9a]"=>"\xe2\x9b\xaa", "[\xe5\x99\xb4\xe6\xb0\xb4]"=>"\xe2\x9b\xb2", "[\xe3\x83\x87\xe3\x83\x91\xe3\x83\xbc\xe3\x83\x88]"=>"\xf0\x9f\x8f\xac", "[\xe5\x9f\x8e]"=>"\xf0\x9f\x8f\xb0", "[\xe5\xb7\xa5\xe5\xa0\xb4]"=>"\xf0\x9f\x8f\xad",
         
     | 
| 
      
 1423 
     | 
    
         
            +
                  "\xee\x99\xa1"=>"\xf0\x9f\x9a\xa2", "\xee\x9d\x8b"=>"\xf0\x9f\x8d\xb6", "\xee\x9d\x80"=>"\xf0\x9f\x97\xbb", "[\xe6\x9d\xb1\xe4\xba\xac\xe3\x82\xbf\xe3\x83\xaf\xe3\x83\xbc]"=>"\xf0\x9f\x97\xbc", "[\xe8\x87\xaa\xe7\x94\xb1\xe3\x81\xae\xe5\xa5\xb3\xe7\xa5\x9e]"=>"\xf0\x9f\x97\xbd",
         
     | 
| 
      
 1424 
     | 
    
         
            +
                  "[\xe6\x97\xa5\xe6\x9c\xac\xe5\x9c\xb0\xe5\x9b\xb3]"=>"\xf0\x9f\x97\xbe", "[\xe3\x83\xa2\xe3\x82\xa2\xe3\x82\xa4]"=>"\xf0\x9f\x97\xbf", "\xee\x9a\x99"=>"\xf0\x9f\x91\x9f", "\xee\x99\xb4"=>"\xf0\x9f\x91\xa1", "[\xe3\x83\x96\xe3\x83\xbc\xe3\x83\x84]"=>"\xf0\x9f\x91\xa2",
         
     | 
| 
      
 1425 
     | 
    
         
            +
                  "\xee\x9a\x9a"=>"\xf0\x9f\x91\x93", "\xee\x9c\x8e"=>"\xf0\x9f\x91\x9a", "\xee\x9c\x91"=>"\xf0\x9f\x91\x96", "\xee\x9c\x9a"=>"\xf0\x9f\x94\xb1", "[\xe3\x83\x8d\xe3\x82\xaf\xe3\x82\xbf\xe3\x82\xa4]"=>"\xf0\x9f\x91\x94",
         
     | 
| 
      
 1426 
     | 
    
         
            +
                  "[\xe5\xb8\xbd\xe5\xad\x90]"=>"\xf0\x9f\x91\x92", "[\xe3\x83\x89\xe3\x83\xac\xe3\x82\xb9]"=>"\xf0\x9f\x91\x97", "[\xe7\x9d\x80\xe7\x89\xa9]"=>"\xf0\x9f\x91\x98", "[\xe3\x83\x93\xe3\x82\xad\xe3\x83\x8b]"=>"\xf0\x9f\x91\x99", "\xee\x9c\x8f"=>"\xf0\x9f\x91\x9b",
         
     | 
| 
      
 1427 
     | 
    
         
            +
                  "\xee\x9a\x82"=>"\xf0\x9f\x92\xbc", "\xee\x9a\xad"=>"\xf0\x9f\x91\x9d", "\xee\x9c\x95"=>"\xf0\x9f\x92\xb5", "[\xef\xbf\xa5]"=>"\xf0\x9f\x92\xb1", "[\xe6\xa0\xaa\xe4\xbe\xa1]"=>"\xf0\x9f\x92\xb9",
         
     | 
| 
      
 1428 
     | 
    
         
            +
                  "[\xe3\x82\xab\xe3\x83\xbc\xe3\x83\x89]"=>"\xf0\x9f\x92\xb3", "\xee\x9b\x96"=>"\xf0\x9f\x92\xb4", "[\xe9\xa3\x9b\xe3\x82\x93\xe3\x81\xa7\xe3\x81\x84\xe3\x81\x8f\xe3\x81\x8a\xe9\x87\x91]"=>"\xf0\x9f\x92\xb8", "[\xe4\xb8\xad\xe5\x9b\xbd]"=>"\xf0\x9f\x87\xa8\xf0\x9f\x87\xb3", "[\xe3\x83\x89\xe3\x82\xa4\xe3\x83\x84]"=>"\xf0\x9f\x87\xa9\xf0\x9f\x87\xaa",
         
     | 
| 
      
 1429 
     | 
    
         
            +
                  "[\xe3\x82\xb9\xe3\x83\x9a\xe3\x82\xa4\xe3\x83\xb3]"=>"\xf0\x9f\x87\xaa\xf0\x9f\x87\xb8", "[\xe3\x83\x95\xe3\x83\xa9\xe3\x83\xb3\xe3\x82\xb9]"=>"\xf0\x9f\x87\xab\xf0\x9f\x87\xb7", "[\xe3\x82\xa4\xe3\x82\xae\xe3\x83\xaa\xe3\x82\xb9]"=>"\xf0\x9f\x87\xac\xf0\x9f\x87\xa7", "[\xe3\x82\xa4\xe3\x82\xbf\xe3\x83\xaa\xe3\x82\xa2]"=>"\xf0\x9f\x87\xae\xf0\x9f\x87\xb9", "[\xe6\x97\xa5\xe3\x81\xae\xe4\xb8\xb8]"=>"\xf0\x9f\x87\xaf\xf0\x9f\x87\xb5",
         
     | 
| 
      
 1430 
     | 
    
         
            +
                  "[\xe9\x9f\x93\xe5\x9b\xbd]"=>"\xf0\x9f\x87\xb0\xf0\x9f\x87\xb7", "[\xe3\x83\xad\xe3\x82\xb7\xe3\x82\xa2]"=>"\xf0\x9f\x87\xb7\xf0\x9f\x87\xba", "[USA]"=>"\xf0\x9f\x87\xba\xf0\x9f\x87\xb8", "[\xe7\x82\x8e]"=>"\xf0\x9f\x94\xa5", "\xee\x9b\xbb"=>"\xf0\x9f\x92\xa1",
         
     | 
| 
      
 1431 
     | 
    
         
            +
                  "\xee\x9c\x98"=>"\xf0\x9f\x94\xa7", "[\xe3\x83\x8f\xe3\x83\xb3\xe3\x83\x9e\xe3\x83\xbc]"=>"\xf0\x9f\x94\xa8", "[\xe3\x83\x8d\xe3\x82\xb8]"=>"\xf0\x9f\x94\xa9", "[\xe5\x8c\x85\xe4\xb8\x81]"=>"\xf0\x9f\x94\xaa", "[\xe3\x83\x94\xe3\x82\xb9\xe3\x83\x88\xe3\x83\xab]"=>"\xf0\x9f\x94\xab",
         
     | 
| 
      
 1432 
     | 
    
         
            +
                  "[\xe5\x8d\xa0\xe3\x81\x84]"=>"\xf0\x9f\x94\xaf", "[\xe8\x8b\xa5\xe8\x91\x89\xe3\x83\x9e\xe3\x83\xbc\xe3\x82\xaf]"=>"\xf0\x9f\x94\xb0", "[\xe6\xb3\xa8\xe5\xb0\x84]"=>"\xf0\x9f\x92\x89", "[\xe8\x96\xac]"=>"\xf0\x9f\x92\x8a", "[A]"=>"\xf0\x9f\x85\xb0",
         
     | 
| 
      
 1433 
     | 
    
         
            +
                  "[B]"=>"\xf0\x9f\x85\xb1", "[AB]"=>"\xf0\x9f\x86\x8e", "[O]"=>"\xf0\x9f\x85\xbe", "\xee\x9a\x84"=>"\xf0\x9f\x8e\x80", "\xee\x9a\x85"=>"\xf0\x9f\x93\xa6",
         
     | 
| 
      
 1434 
     | 
    
         
            +
                  "\xee\x9a\x86"=>"\xf0\x9f\x8e\x82", "\xee\x9a\xa4"=>"\xf0\x9f\x8e\x84", "[\xe3\x82\xb5\xe3\x83\xb3\xe3\x82\xbf]"=>"\xf0\x9f\x8e\x85", "[\xe7\xa5\x9d\xe6\x97\xa5]"=>"\xf0\x9f\x8e\x8c", "[\xe8\x8a\xb1\xe7\x81\xab]"=>"\xf0\x9f\x8e\x86",
         
     | 
| 
      
 1435 
     | 
    
         
            +
                  "[\xe9\xa2\xa8\xe8\x88\xb9]"=>"\xf0\x9f\x8e\x88", "[\xe3\x82\xaf\xe3\x83\xa9\xe3\x83\x83\xe3\x82\xab\xe3\x83\xbc]"=>"\xf0\x9f\x8e\x89", "[\xe9\x96\x80\xe6\x9d\xbe]"=>"\xf0\x9f\x8e\x8d", "[\xe3\x81\xb2\xe3\x81\xaa\xe7\xa5\xad\xe3\x82\x8a]"=>"\xf0\x9f\x8e\x8e", "[\xe5\x8d\x92\xe6\xa5\xad\xe5\xbc\x8f]"=>"\xf0\x9f\x8e\x93",
         
     | 
| 
      
 1436 
     | 
    
         
            +
                  "[\xe3\x83\xa9\xe3\x83\xb3\xe3\x83\x89\xe3\x82\xbb\xe3\x83\xab]"=>"\xf0\x9f\x8e\x92", "[\xe3\x81\x93\xe3\x81\x84\xe3\x81\xae\xe3\x81\xbc\xe3\x82\x8a]"=>"\xf0\x9f\x8e\x8f", "[\xe7\xb7\x9a\xe9\xa6\x99\xe8\x8a\xb1\xe7\x81\xab]"=>"\xf0\x9f\x8e\x87", "[\xe9\xa2\xa8\xe9\x88\xb4]"=>"\xf0\x9f\x8e\x90", "[\xe3\x83\x8f\xe3\x83\xad\xe3\x82\xa6\xe3\x82\xa3\xe3\x83\xb3]"=>"\xf0\x9f\x8e\x83",
         
     | 
| 
      
 1437 
     | 
    
         
            +
                  "[\xe3\x82\xaa\xe3\x83\xa1\xe3\x83\x87\xe3\x83\x88\xe3\x82\xa6]"=>"\xf0\x9f\x8e\x8a", "[\xe4\xb8\x83\xe5\xa4\x95]"=>"\xf0\x9f\x8e\x8b", "[\xe3\x81\x8a\xe6\x9c\x88\xe8\xa6\x8b]"=>"\xf0\x9f\x8e\x91", "\xee\x99\x9a"=>"\xf0\x9f\x93\x9f", "\xee\x9a\x87"=>"\xf0\x9f\x93\x9e",
         
     | 
| 
      
 1438 
     | 
    
         
            +
                  "\xee\x9a\x88"=>"\xf0\x9f\x93\xb1", "\xee\x9b\x8e"=>"\xf0\x9f\x93\xb2", "\xee\x9a\x89"=>"\xf0\x9f\x93\x91", "\xee\x9b\x90"=>"\xf0\x9f\x93\xa0", "\xee\x9b\x93"=>"\xf0\x9f\x93\xa7",
         
     | 
| 
      
 1439 
     | 
    
         
            +
                  "\xee\x9b\x8f"=>"\xf0\x9f\x93\xa9", "[\xe6\x96\xb0\xe8\x81\x9e]"=>"\xf0\x9f\x93\xb0", "[\xe3\x82\xb9\xe3\x83\x94\xe3\x83\xbc\xe3\x82\xab]"=>"\xf0\x9f\x94\x8a", "[\xe3\x83\xa1\xe3\x82\xac\xe3\x83\x9b\xe3\x83\xb3]"=>"\xf0\x9f\x93\xa3", "[\xe3\x82\xa2\xe3\x83\xb3\xe3\x83\x86\xe3\x83\x8a]"=>"\xf0\x9f\x93\xa1",
         
     | 
| 
      
 1440 
     | 
    
         
            +
                  "[\xe9\x80\x81\xe4\xbf\xa1BOX]"=>"\xf0\x9f\x93\xa4", "[\xe5\x8f\x97\xe4\xbf\xa1BOX]"=>"\xf0\x9f\x93\xa5", "[ABCD]"=>"\xf0\x9f\x94\xa0", "[abcd]"=>"\xf0\x9f\x94\xa1", "[1234]"=>"\xf0\x9f\x94\xa2",
         
     | 
| 
      
 1441 
     | 
    
         
            +
                  "[\xe8\xa8\x98\xe5\x8f\xb7]"=>"\xf0\x9f\x94\xa3", "[ABC]"=>"\xf0\x9f\x94\xa4", "\xee\x9a\xae"=>"\xe2\x9c\x92", "\xee\x9a\xb2"=>"\xf0\x9f\x92\xba", "\xee\x9c\x96"=>"\xf0\x9f\x92\xbb",
         
     | 
| 
      
 1442 
     | 
    
         
            +
                  "\xee\x9c\x99"=>"\xe2\x9c\x8f", "\xee\x9c\xb0"=>"\xf0\x9f\x93\x8e", "[MD]"=>"\xf0\x9f\x92\xbd", "[\xe3\x83\x95\xe3\x83\xad\xe3\x83\x83\xe3\x83\x94\xe3\x83\xbc]"=>"\xf0\x9f\x92\xbe", "\xee\x9a\x8c"=>"\xf0\x9f\x93\x80",
         
     | 
| 
      
 1443 
     | 
    
         
            +
                  "[\xe7\x94\xbb\xe3\x81\xb3\xe3\x82\x87\xe3\x81\x86]"=>"\xf0\x9f\x93\x8c", "[\xe3\x82\xab\xe3\x83\xac\xe3\x83\xb3\xe3\x83\x80\xe3\x83\xbc]"=>"\xf0\x9f\x93\x86", "[\xe3\x83\x95\xe3\x82\xa9\xe3\x83\xab\xe3\x83\x80]"=>"\xf0\x9f\x93\x82", "\xee\x9a\x83"=>"\xf0\x9f\x93\x92", "[\xe5\x90\x8d\xe6\x9c\xad]"=>"\xf0\x9f\x93\x9b",
         
     | 
| 
      
 1444 
     | 
    
         
            +
                  "\xee\x9c\x8a"=>"\xe2\x9e\xb0", "[\xe3\x82\xb0\xe3\x83\xa9\xe3\x83\x95]"=>"\xf0\x9f\x93\x89", "[\xe5\xae\x9a\xe8\xa6\x8f]"=>"\xf0\x9f\x93\x8f", "[\xe4\xb8\x89\xe8\xa7\x92\xe5\xae\x9a\xe8\xa6\x8f]"=>"\xf0\x9f\x93\x90", "\xee\x99\x92"=>"\xf0\x9f\x8e\xbd",
         
     | 
| 
      
 1445 
     | 
    
         
            +
                  "\xee\x99\x93"=>"\xe2\x9a\xbe", "\xee\x99\x94"=>"\xe2\x9b\xb3", "\xee\x99\x95"=>"\xf0\x9f\x8e\xbe", "\xee\x99\x96"=>"\xe2\x9a\xbd", "\xee\x99\x97"=>"\xf0\x9f\x8e\xbf",
         
     | 
| 
      
 1446 
     | 
    
         
            +
                  "\xee\x99\x98"=>"\xf0\x9f\x8f\x80", "\xee\x99\x99"=>"\xf0\x9f\x8f\x81", "\xee\x9c\x92"=>"\xf0\x9f\x8f\x84", "\xee\x9c\xb3"=>"\xf0\x9f\x9a\xb6", "[\xe3\x83\x88\xe3\x83\xad\xe3\x83\x95\xe3\x82\xa3\xe3\x83\xbc]"=>"\xf0\x9f\x8f\x86",
         
     | 
| 
      
 1447 
     | 
    
         
            +
                  "[\xe3\x83\x95\xe3\x83\x83\xe3\x83\x88\xe3\x83\x9c\xe3\x83\xbc\xe3\x83\xab]"=>"\xf0\x9f\x8f\x88", "[\xe6\xb0\xb4\xe6\xb3\xb3]"=>"\xf0\x9f\x8f\x8a", "\xee\x99\x9b"=>"\xf0\x9f\x9a\x83", "\xee\x99\x9c"=>"\xe2\x93\x82", "\xee\x99\x9d"=>"\xf0\x9f\x9a\x85",
         
     | 
| 
      
 1448 
     | 
    
         
            +
                  "\xee\x99\x9e"=>"\xf0\x9f\x9a\x95", "\xee\x99\x9f"=>"\xf0\x9f\x9a\x99", "\xee\x99\xa0"=>"\xf0\x9f\x9a\x8c", "[\xe3\x83\x90\xe3\x82\xb9\xe5\x81\x9c]"=>"\xf0\x9f\x9a\x8f", "\xee\x99\xa2"=>"\xe2\x9c\x88",
         
     | 
| 
      
 1449 
     | 
    
         
            +
                  "\xee\x9a\xa3"=>"\xf0\x9f\x9a\xa4", "[\xe9\xa7\x85]"=>"\xf0\x9f\x9a\x89", "[\xe3\x83\xad\xe3\x82\xb1\xe3\x83\x83\xe3\x83\x88]"=>"\xf0\x9f\x9a\x80", "[\xe3\x83\x88\xe3\x83\xa9\xe3\x83\x83\xe3\x82\xaf]"=>"\xf0\x9f\x9a\x9a", "[\xe6\xb6\x88\xe9\x98\xb2\xe8\xbb\x8a]"=>"\xf0\x9f\x9a\x92",
         
     | 
| 
      
 1450 
     | 
    
         
            +
                  "[\xe6\x95\x91\xe6\x80\xa5\xe8\xbb\x8a]"=>"\xf0\x9f\x9a\x91", "[\xe3\x83\x91\xe3\x83\x88\xe3\x82\xab\xe3\x83\xbc]"=>"\xf0\x9f\x9a\xa8", "\xee\x99\xab"=>"\xe2\x9b\xbd", "\xee\x99\xac"=>"\xf0\x9f\x85\xbf", "\xee\x99\xad"=>"\xf0\x9f\x9a\xa5",
         
     | 
| 
      
 1451 
     | 
    
         
            +
                  "[\xe5\xb7\xa5\xe4\xba\x8b\xe4\xb8\xad]"=>"\xf0\x9f\x9a\xa7", "\xee\x9b\xb7"=>"\xf0\x9f\x9b\x80", "[\xe3\x82\xad\xe3\x83\xa3\xe3\x83\xb3\xe3\x83\x97]"=>"\xe2\x9b\xba", "\xee\x99\xb9"=>"\xf0\x9f\x8e\xa0", "[\xe8\xa6\xb3\xe8\xa6\xa7\xe8\xbb\x8a]"=>"\xf0\x9f\x8e\xa1",
         
     | 
| 
      
 1452 
     | 
    
         
            +
                  "[\xe3\x82\xb8\xe3\x82\xa7\xe3\x83\x83\xe3\x83\x88\xe3\x82\xb3\xe3\x83\xbc\xe3\x82\xb9\xe3\x82\xbf\xe3\x83\xbc]"=>"\xf0\x9f\x8e\xa2", "\xee\x99\xb6"=>"\xf0\x9f\x8e\xa4", "\xee\x99\xb7"=>"\xf0\x9f\x93\xb9", "\xee\x99\xba"=>"\xf0\x9f\x8e\xa7", "\xee\x99\xbb"=>"\xf0\x9f\x8e\xa8",
         
     | 
| 
      
 1453 
     | 
    
         
            +
                  "\xee\x99\xbc"=>"\xf0\x9f\x8e\xa9", "\xee\x99\xbd"=>"\xf0\x9f\x8e\xaa", "\xee\x99\xbe"=>"\xf0\x9f\x8e\xab", "\xee\x9a\xac"=>"\xf0\x9f\x8e\xac", "[\xe6\xbc\x94\xe5\x8a\x87]"=>"\xf0\x9f\x8e\xad",
         
     | 
| 
      
 1454 
     | 
    
         
            +
                  "\xee\x9a\x8b"=>"\xf0\x9f\x8e\xae", "[\xe9\xba\xbb\xe9\x9b\x80]"=>"\xf0\x9f\x80\x84", "[\xe7\x9a\x84\xe4\xb8\xad]"=>"\xf0\x9f\x8e\xaf", "[777]"=>"\xf0\x9f\x8e\xb0", "[\xe3\x83\x93\xe3\x83\xaa\xe3\x83\xa4\xe3\x83\xbc\xe3\x83\x89]"=>"\xf0\x9f\x8e\xb1",
         
     | 
| 
      
 1455 
     | 
    
         
            +
                  "[\xe3\x82\xb5\xe3\x82\xa4\xe3\x82\xb3\xe3\x83\xad]"=>"\xf0\x9f\x8e\xb2", "[\xe3\x83\x9c\xe3\x83\xbc\xe3\x83\xaa\xe3\x83\xb3\xe3\x82\xb0]"=>"\xf0\x9f\x8e\xb3", "[\xe8\x8a\xb1\xe6\x9c\xad]"=>"\xf0\x9f\x8e\xb4", "[\xe3\x82\xb8\xe3\x83\xa7\xe3\x83\xbc\xe3\x82\xab\xe3\x83\xbc]"=>"\xf0\x9f\x83\x8f", "\xee\x9b\xb6"=>"\xf0\x9f\x8e\xb5",
         
     | 
| 
      
 1456 
     | 
    
         
            +
                  "\xee\x9b\xbf"=>"\xf0\x9f\x8e\xbc", "[\xe3\x82\xb5\xe3\x83\x83\xe3\x82\xaf\xe3\x82\xb9]"=>"\xf0\x9f\x8e\xb7", "[\xe3\x82\xae\xe3\x82\xbf\xe3\x83\xbc]"=>"\xf0\x9f\x8e\xb8", "[\xe3\x83\x94\xe3\x82\xa2\xe3\x83\x8e]"=>"\xf0\x9f\x8e\xb9", "[\xe3\x83\x88\xe3\x83\xa9\xe3\x83\xb3\xe3\x83\x9a\xe3\x83\x83\xe3\x83\x88]"=>"\xf0\x9f\x8e\xba",
         
     | 
| 
      
 1457 
     | 
    
         
            +
                  "[\xe3\x83\x90\xe3\x82\xa4\xe3\x82\xaa\xe3\x83\xaa\xe3\x83\xb3]"=>"\xf0\x9f\x8e\xbb", "[\xe6\xad\x8c\xe8\xa8\x98\xe5\x8f\xb7]"=>"\xe3\x80\xbd", "\xee\x9a\x81"=>"\xf0\x9f\x93\xb7", "\xee\x9a\x8a"=>"\xf0\x9f\x93\xba", "[\xe3\x83\xa9\xe3\x82\xb8\xe3\x82\xaa]"=>"\xf0\x9f\x93\xbb",
         
     | 
| 
      
 1458 
     | 
    
         
            +
                  "[\xe3\x83\x93\xe3\x83\x87\xe3\x82\xaa]"=>"\xf0\x9f\x93\xbc", "\xee\x9c\x97"=>"\xf0\x9f\x92\x8c", "\xee\x9c\x9b"=>"\xf0\x9f\x92\x8e", "[\xe8\x8a\xb1\xe6\x9d\x9f]"=>"\xf0\x9f\x92\x90", "\xee\x9b\xad"=>"\xf0\x9f\x92\x9e",
         
     | 
| 
      
 1459 
     | 
    
         
            +
                  "[\xe7\xb5\x90\xe5\xa9\x9a\xe5\xbc\x8f]"=>"\xf0\x9f\x92\x92", "[18\xe7\xa6\x81]"=>"\xf0\x9f\x94\x9e", "\xee\x9c\xb1"=>"\xc2\xa9", "\xee\x9c\xb6"=>"\xc2\xae", "\xee\x9c\xb2"=>"\xe2\x84\xa2",
         
     | 
| 
      
 1460 
     | 
    
         
            +
                  "[\xef\xbd\x89]"=>"\xe2\x84\xb9", "\xee\x9b\xa0"=>"#\xe2\x83\xa3", "\xee\x9b\xa2"=>"1\xe2\x83\xa3", "\xee\x9b\xa3"=>"2\xe2\x83\xa3", "\xee\x9b\xa4"=>"3\xe2\x83\xa3",
         
     | 
| 
      
 1461 
     | 
    
         
            +
                  "\xee\x9b\xa5"=>"4\xe2\x83\xa3", "\xee\x9b\xa6"=>"5\xe2\x83\xa3", "\xee\x9b\xa7"=>"6\xe2\x83\xa3", "\xee\x9b\xa8"=>"7\xe2\x83\xa3", "\xee\x9b\xa9"=>"8\xe2\x83\xa3",
         
     | 
| 
      
 1462 
     | 
    
         
            +
                  "\xee\x9b\xaa"=>"9\xe2\x83\xa3", "\xee\x9b\xab"=>"0\xe2\x83\xa3", "[10]"=>"\xf0\x9f\x94\x9f", "[\xe3\x83\x90\xe3\x83\xaa3]"=>"\xf0\x9f\x93\xb6", "[\xe3\x83\x9e\xe3\x83\x8a\xe3\x83\xbc\xe3\x83\xa2\xe3\x83\xbc\xe3\x83\x89]"=>"\xf0\x9f\x93\xb3",
         
     | 
| 
      
 1463 
     | 
    
         
            +
                  "[\xe3\x82\xb1\xe3\x83\xbc\xe3\x82\xbf\xe3\x82\xa4OFF]"=>"\xf0\x9f\x93\xb4", "\xee\x99\xb3"=>"\xf0\x9f\x8d\x94", "\xee\x9d\x89"=>"\xf0\x9f\x8d\x99", "\xee\x9d\x8a"=>"\xf0\x9f\x8d\xb0", "\xee\x9d\x8c"=>"\xf0\x9f\x8d\x9a",
         
     | 
| 
      
 1464 
     | 
    
         
            +
                  "\xee\x9d\x8d"=>"\xf0\x9f\x8d\x9e", "[\xe3\x83\x95\xe3\x83\xa9\xe3\x82\xa4\xe3\x83\x91\xe3\x83\xb3]"=>"\xf0\x9f\x8d\xb3", "[\xe3\x82\xbd\xe3\x83\x95\xe3\x83\x88\xe3\x82\xaf\xe3\x83\xaa\xe3\x83\xbc\xe3\x83\xa0]"=>"\xf0\x9f\x8d\xa6", "[\xe3\x83\x9d\xe3\x83\x86\xe3\x83\x88]"=>"\xf0\x9f\x8d\x9f", "[\xe3\x81\xa0\xe3\x82\x93\xe3\x81\x94]"=>"\xf0\x9f\x8d\xa1",
         
     | 
| 
      
 1465 
     | 
    
         
            +
                  "[\xe3\x81\x9b\xe3\x82\x93\xe3\x81\xb9\xe3\x81\x84]"=>"\xf0\x9f\x8d\x98", "[\xe3\x83\x91\xe3\x82\xb9\xe3\x82\xbf]"=>"\xf0\x9f\x8d\x9d", "[\xe3\x82\xab\xe3\x83\xac\xe3\x83\xbc]"=>"\xf0\x9f\x8d\x9b", "[\xe3\x81\x8a\xe3\x81\xa7\xe3\x82\x93]"=>"\xf0\x9f\x8d\xa2", "[\xe3\x81\x99\xe3\x81\x97]"=>"\xf0\x9f\x8d\xa3",
         
     | 
| 
      
 1466 
     | 
    
         
            +
                  "[\xe5\xbc\x81\xe5\xbd\x93]"=>"\xf0\x9f\x8d\xb1", "[\xe9\x8d\x8b]"=>"\xf0\x9f\x8d\xb2", "[\xe3\x82\xab\xe3\x82\xad\xe6\xb0\xb7]"=>"\xf0\x9f\x8d\xa7", "[\xe8\x82\x89]"=>"\xf0\x9f\x8d\x96", "[\xe3\x82\x84\xe3\x81\x8d\xe3\x81\x84\xe3\x82\x82]"=>"\xf0\x9f\x8d\xa0",
         
     | 
| 
      
 1467 
     | 
    
         
            +
                  "[\xe3\x83\x94\xe3\x82\xb6]"=>"\xf0\x9f\x8d\x95", "[\xe3\x83\x81\xe3\x82\xad\xe3\x83\xb3]"=>"\xf0\x9f\x8d\x97", "[\xe3\x82\xa2\xe3\x82\xa4\xe3\x82\xb9\xe3\x82\xaf\xe3\x83\xaa\xe3\x83\xbc\xe3\x83\xa0]"=>"\xf0\x9f\x8d\xa8", "[\xe3\x83\x89\xe3\x83\xbc\xe3\x83\x8a\xe3\x83\x84]"=>"\xf0\x9f\x8d\xa9", "[\xe3\x82\xaf\xe3\x83\x83\xe3\x82\xad\xe3\x83\xbc]"=>"\xf0\x9f\x8d\xaa",
         
     | 
| 
      
 1468 
     | 
    
         
            +
                  "[\xe3\x83\x81\xe3\x83\xa7\xe3\x82\xb3]"=>"\xf0\x9f\x8d\xab", "[\xe3\x82\xad\xe3\x83\xa3\xe3\x83\xb3\xe3\x83\x87\xe3\x82\xa3]"=>"\xf0\x9f\x8d\xad", "[\xe3\x83\x97\xe3\x83\xaa\xe3\x83\xb3]"=>"\xf0\x9f\x8d\xae", "[\xe3\x83\x8f\xe3\x83\x81\xe3\x83\x9f\xe3\x83\x84]"=>"\xf0\x9f\x8d\xaf", "[\xe3\x82\xa8\xe3\x83\x93\xe3\x83\x95\xe3\x83\xa9\xe3\x82\xa4]"=>"\xf0\x9f\x8d\xa4",
         
     | 
| 
      
 1469 
     | 
    
         
            +
                  "\xee\x99\xaf"=>"\xf0\x9f\x8d\xb4", "\xee\x99\xb0"=>"\xe2\x98\x95", "\xee\x99\xb1"=>"\xf0\x9f\x8d\xb9", "\xee\x99\xb2"=>"\xf0\x9f\x8d\xbb", "\xee\x9c\x9e"=>"\xf0\x9f\x8d\xb5",
         
     | 
| 
      
 1470 
     | 
    
         
            +
                  "\xee\x9d\x96"=>"\xf0\x9f\x8d\xb7", "\xee\x99\xb8"=>"\xe2\x86\x97", "\xee\x9a\x96"=>"\xe2\x86\x98", "\xee\x9a\x97"=>"\xe2\x86\x96", "\xee\x9a\xa5"=>"\xe2\x86\x99",
         
     | 
| 
      
 1471 
     | 
    
         
            +
                  "\xee\x9b\xb5"=>"\xe2\xa4\xb4", "\xee\x9c\x80"=>"\xf0\x9f\x91\x8e", "\xee\x9c\xbc"=>"\xe2\x86\x94", "\xee\x9c\xbd"=>"\xe2\x86\x95", "[\xe2\x86\x91]"=>"\xf0\x9f\x91\x86",
         
     | 
| 
      
 1472 
     | 
    
         
            +
                  "[\xe2\x86\x93]"=>"\xf0\x9f\x91\x87", "[\xe2\x86\x92]"=>"\xf0\x9f\x91\x89", "[\xe2\x86\x90]"=>"\xf0\x9f\x91\x88", "[>]"=>"\xe2\x96\xb6", "[<]"=>"\xe2\x97\x80",
         
     | 
| 
      
 1473 
     | 
    
         
            +
                  "[>>]"=>"\xe2\x8f\xa9", "[<<]"=>"\xe2\x8f\xaa", "\xe2\x96\xb2"=>"\xf0\x9f\x94\xbc", "\xe2\x96\xbc"=>"\xf0\x9f\x94\xbd", "[\xc3\x97]"=>"\xe2\x9c\x96",
         
     | 
| 
      
 1474 
     | 
    
         
            +
                  "\xee\x9c\x82"=>"\xe2\x9d\x95", "\xee\x9c\x83"=>"\xe2\x81\x89", "\xee\x9c\x84"=>"\xe2\x80\xbc", "[\xef\xbc\x9f]"=>"\xe2\x9d\x94", "\xee\x9c\x89"=>"\xe3\x80\xb0",
         
     | 
| 
      
 1475 
     | 
    
         
            +
                  "\xee\x9b\x9f"=>"\xe2\x9e\xbf", "\xee\x9b\xac"=>"\xf0\x9f\x92\x9d", "\xee\x9b\xae"=>"\xf0\x9f\x92\x94", "\xee\x9b\xaf"=>"\xf0\x9f\x92\x95", "\xee\x9b\xb8"=>"\xe2\x9c\xb3",
         
     | 
| 
      
 1476 
     | 
    
         
            +
                  "\xee\x9a\x8d"=>"\xe2\x99\xa5", "\xee\x9a\x8e"=>"\xe2\x99\xa0", "\xee\x9a\x8f"=>"\xe2\x99\xa6", "\xee\x9a\x90"=>"\xe2\x99\xa3", "\xee\x99\xbf"=>"\xf0\x9f\x9a\xac",
         
     | 
| 
      
 1477 
     | 
    
         
            +
                  "\xee\x9a\x80"=>"\xf0\x9f\x9a\xad", "\xee\x9a\x9b"=>"\xe2\x99\xbf", "\xee\x9b\x9e"=>"\xf0\x9f\x9a\xa9", "\xee\x9c\xb7"=>"\xe2\x9a\xa0", "\xee\x9c\xb5"=>"\xf0\x9f\x94\x83",
         
     | 
| 
      
 1478 
     | 
    
         
            +
                  "\xee\x9c\x9d"=>"\xf0\x9f\x9a\xb2", "[\xe2\x99\x82]"=>"\xf0\x9f\x9a\xb9", "[\xe2\x99\x80]"=>"\xf0\x9f\x9a\xba", "\xee\x99\xae"=>"\xf0\x9f\x9a\xbe", "\xee\x9c\x94"=>"\xf0\x9f\x9a\xaa",
         
     | 
| 
      
 1479 
     | 
    
         
            +
                  "\xee\x9c\xb8"=>"\xf0\x9f\x88\xb2", "[\xe3\x83\x81\xe3\x82\xa7\xe3\x83\x83\xe3\x82\xaf\xe3\x83\x9e\xe3\x83\xbc\xe3\x82\xaf]"=>"\xe2\x9c\x85", "\xee\x9b\x9b"=>"\xf0\x9f\x86\x91", "[COOL]"=>"\xf0\x9f\x86\x92", "\xee\x9b\x97"=>"\xf0\x9f\x86\x93",
         
     | 
| 
      
 1480 
     | 
    
         
            +
                  "\xee\x9b\x98"=>"\xf0\x9f\x86\x94", "\xee\x9b\x9d"=>"\xf0\x9f\x86\x95", "[SOS]"=>"\xf0\x9f\x86\x98", "[UP!]"=>"\xf0\x9f\x86\x99", "[VS]"=>"\xf0\x9f\x86\x9a",
         
     | 
| 
      
 1481 
     | 
    
         
            +
                  "[\xe3\x82\xb3\xe3\x82\xb3]"=>"\xf0\x9f\x88\x81", "[\xe3\x82\xb5\xe3\x83\xbc\xe3\x83\x93\xe3\x82\xb9]"=>"\xf0\x9f\x88\x82", "\xee\x9c\xb9"=>"\xf0\x9f\x88\xb3", "\xee\x9c\xba"=>"\xf0\x9f\x88\xb4", "\xee\x9c\xbb"=>"\xf0\x9f\x88\xb5",
         
     | 
| 
      
 1482 
     | 
    
         
            +
                  "[\xe6\x9c\x89]"=>"\xf0\x9f\x88\xb6", "[\xe7\x84\xa1]"=>"\xf0\x9f\x88\x9a", "[\xe6\x9c\x88]"=>"\xf0\x9f\x88\xb7", "[\xe7\x94\xb3]"=>"\xf0\x9f\x88\xb8", "[\xe5\x89\xb2]"=>"\xf0\x9f\x88\xb9",
         
     | 
| 
      
 1483 
     | 
    
         
            +
                  "[\xe6\x8c\x87]"=>"\xf0\x9f\x88\xaf", "[\xe5\x96\xb6]"=>"\xf0\x9f\x88\xba", "\xee\x9c\xb4"=>"\xe3\x8a\x99", "[\xe7\xa5\x9d]"=>"\xe3\x8a\x97", "[\xe5\xbe\x97]"=>"\xf0\x9f\x89\x90",
         
     | 
| 
      
 1484 
     | 
    
         
            +
                  "[\xe5\x8f\xaf]"=>"\xf0\x9f\x89\x91", "[\xef\xbc\x8b]"=>"\xe2\x9e\x95", "[\xef\xbc\x8d]"=>"\xe2\x9e\x96", "[\xc3\xb7]"=>"\xe2\x9e\x97", "\xee\x9b\xbc"=>"\xf0\x9f\x92\xa2",
         
     | 
| 
      
 1485 
     | 
    
         
            +
                  "\xee\x9b\xbe"=>"\xf0\x9f\x92\xa3", "\xee\x9c\x85"=>"\xf0\x9f\x92\xa5", "\xee\x9c\x86"=>"\xf0\x9f\x92\xa6", "\xee\x9c\x87"=>"\xf0\x9f\x92\xa7", "\xee\x9c\x88"=>"\xf0\x9f\x92\xa8",
         
     | 
| 
      
 1486 
     | 
    
         
            +
                  "[\xe3\x82\xa6\xe3\x83\xb3\xe3\x83\x81]"=>"\xf0\x9f\x92\xa9", "[\xe5\x8a\x9b\xe3\x81\x93\xe3\x81\xb6]"=>"\xf0\x9f\x92\xaa", "[\xe3\x82\xaf\xe3\x83\xa9\xe3\x82\xaf\xe3\x83\xa9]"=>"\xf0\x9f\x92\xab", "[\xe3\x83\x95\xe3\x82\xad\xe3\x83\x80\xe3\x82\xb7]"=>"\xf0\x9f\x92\xac", "\xee\x9b\xba"=>"\xe2\x9d\x87",
         
     | 
| 
      
 1487 
     | 
    
         
            +
                  "\xe2\x96\xa0"=>"\xe2\x97\xbc", "\xe2\x97\x86"=>"\xf0\x9f\x94\xb9", "[\xe8\x8a\xb1\xe4\xb8\xb8]"=>"\xf0\x9f\x92\xae", "[100\xe7\x82\xb9]"=>"\xf0\x9f\x92\xaf", "\xee\x9b\x9a"=>"\xe2\x86\xa9",
         
     | 
| 
      
 1488 
     | 
    
         
            +
                  "\xe2\x94\x94\xe2\x86\x92"=>"\xe2\x86\xaa", "[\xe9\x9b\xbb\xe6\xb1\xa0]"=>"\xf0\x9f\x94\x8b", "[\xe3\x82\xb3\xe3\x83\xb3\xe3\x82\xbb\xe3\x83\xb3\xe3\x83\x88]"=>"\xf0\x9f\x94\x8c", "\xee\x9b\x9c"=>"\xf0\x9f\x94\x8e", "\xee\x9b\x99"=>"\xf0\x9f\x94\x91",
         
     | 
| 
      
 1489 
     | 
    
         
            +
                  "\xee\x9c\x93"=>"\xf0\x9f\x94\x94", "[\xe3\x83\xa9\xe3\x82\xb8\xe3\x82\xaa\xe3\x83\x9c\xe3\x82\xbf\xe3\x83\xb3]"=>"\xf0\x9f\x94\x98", "[\xe3\x83\x96\xe3\x83\x83\xe3\x82\xaf\xe3\x83\x9e\xe3\x83\xbc\xe3\x82\xaf]"=>"\xf0\x9f\x94\x96", "[\xe3\x83\xaa\xe3\x83\xb3\xe3\x82\xaf]"=>"\xf0\x9f\x94\x97", "[\xe2\x86\x90BACK]"=>"\xf0\x9f\x94\x99",
         
     | 
| 
      
 1490 
     | 
    
         
            +
                  "\xee\x9a\xb9"=>"\xf0\x9f\x94\x9a", "\xee\x9a\xb8"=>"\xf0\x9f\x94\x9b", "\xee\x9a\xb7"=>"\xf0\x9f\x94\x9c", "[TOP]"=>"\xf0\x9f\x94\x9d", "\xe3\x80\x93"=>"\xe2\x80\x85",
         
     | 
| 
      
 1491 
     | 
    
         
            +
                  "\xee\x9a\x93"=>"\xe2\x9c\x8a", "\xee\x9a\x95"=>"\xf0\x9f\x91\x90", "\xee\x9a\x94"=>"\xe2\x9c\x8c", "\xee\x9b\xbd"=>"\xf0\x9f\x91\x8a", "\xee\x9c\xa7"=>"\xf0\x9f\x91\x8d",
         
     | 
| 
      
 1492 
     | 
    
         
            +
                  "[\xe4\xba\xba\xe5\xb7\xae\xe3\x81\x97\xe6\x8c\x87]"=>"\xe2\x98\x9d", "[\xe6\x8b\x8d\xe6\x89\x8b]"=>"\xf0\x9f\x91\x8f",
         
     | 
| 
      
 1493 
     | 
    
         
            +
                },
         
     | 
| 
      
 1494 
     | 
    
         
            +
                'kddi_to_unified' => {
         
     | 
| 
      
 1495 
     | 
    
         
            +
                  "\xee\x92\x88"=>"\xe2\x98\x80", "\xee\x92\x8d"=>"\xe2\x98\x81", "\xee\x92\x8c"=>"\xe2\x98\x94", "\xee\x92\x85"=>"\xe2\x9b\x84",
         
     | 
| 
      
 1496 
     | 
    
         
            +
                  "\xee\x92\x87"=>"\xe2\x9a\xa1", "\xee\x91\xa9"=>"\xf0\x9f\x8c\x80", "\xee\x96\x98"=>"\xf0\x9f\x8c\x81", "\xee\xab\xa8"=>"\xf0\x9f\x8c\x82", "\xee\xab\xb1"=>"\xf0\x9f\x8c\x83",
         
     | 
| 
      
 1497 
     | 
    
         
            +
                  "\xee\xab\xb4"=>"\xf0\x9f\x8c\x85", "\xee\x97\x9a"=>"\xf0\x9f\x8c\x87", "\xee\xab\xb2"=>"\xf0\x9f\x8c\x88", "\xee\x92\x8a"=>"\xe2\x9d\x84", "\xee\x92\x8e"=>"\xe2\x9b\x85",
         
     | 
| 
      
 1498 
     | 
    
         
            +
                  "\xee\x92\xbf"=>"\xf0\x9f\x8c\x89", "\xee\xad\xbc"=>"\xf0\x9f\x8c\x8a", "\xee\xad\x93"=>"\xf0\x9f\x8c\x8b", "\xee\xad\x9f"=>"\xf0\x9f\x8c\x8c", "\xee\x96\xb3"=>"\xf0\x9f\x8c\x8f",
         
     | 
| 
      
 1499 
     | 
    
         
            +
                  "\xee\x96\xa8"=>"\xf0\x9f\x8c\x91", "\xee\x96\xa9"=>"\xf0\x9f\x8c\x94", "\xee\x96\xaa"=>"\xf0\x9f\x8c\x93", "\xee\x92\x86"=>"\xf0\x9f\x8c\x99", "\xe2\x97\x8b"=>"\xf0\x9f\x8c\x95",
         
     | 
| 
      
 1500 
     | 
    
         
            +
                  "\xee\x92\x89"=>"\xf0\x9f\x8c\x9b", "\xee\x92\x8b"=>"\xe2\xad\x90", "\xee\x91\xa8"=>"\xf0\x9f\x8c\xa0", "\xee\x96\x94"=>"\xe2\x8f\xb0", "\xee\x95\xba"=>"\xe2\x8c\x9a",
         
     | 
| 
      
 1501 
     | 
    
         
            +
                  "\xee\x95\xbb"=>"\xe2\x8c\x9b", "\xee\x91\xbc"=>"\xe2\x8f\xb3", "\xee\x92\x8f"=>"\xf0\x9f\x90\x91", "\xee\x92\x90"=>"\xe2\x99\x89", "\xee\x92\x91"=>"\xe2\x99\x8a",
         
     | 
| 
      
 1502 
     | 
    
         
            +
                  "\xee\x92\x92"=>"\xe2\x99\x8b", "\xee\x92\x93"=>"\xe2\x99\x8c", "\xee\x92\x94"=>"\xe2\x99\x8d", "\xee\x92\x95"=>"\xe2\x99\x8e", "\xee\x92\x96"=>"\xe2\x99\x8f",
         
     | 
| 
      
 1503 
     | 
    
         
            +
                  "\xee\x92\x97"=>"\xe2\x99\x90", "\xee\x92\x98"=>"\xe2\x99\x91", "\xee\x92\x99"=>"\xe2\x99\x92", "\xee\x92\x9a"=>"\xf0\x9f\x90\x9f", "\xee\x92\x9b"=>"\xe2\x9b\x8e",
         
     | 
| 
      
 1504 
     | 
    
         
            +
                  "\xee\x94\x93"=>"\xf0\x9f\x8d\x80", "\xee\x93\xa4"=>"\xf0\x9f\x8c\xb7", "\xee\xad\xbd"=>"\xf0\x9f\x8c\xb1", "\xee\x93\x8e"=>"\xf0\x9f\x8d\x81", "\xee\x93\x8a"=>"\xf0\x9f\x8c\xb8",
         
     | 
| 
      
 1505 
     | 
    
         
            +
                  "\xee\x96\xba"=>"\xf0\x9f\x8c\xb9", "\xee\x97\x8d"=>"\xf0\x9f\x8d\x83", "\xee\xaa\x94"=>"\xf0\x9f\x8c\xba", "\xee\x93\xa3"=>"\xf0\x9f\x8c\xbb", "\xee\x93\xa2"=>"\xf0\x9f\x8c\xb4",
         
     | 
| 
      
 1506 
     | 
    
         
            +
                  "\xee\xaa\x96"=>"\xf0\x9f\x8c\xb5", "[\xe7\xa8\xb2\xe7\xa9\x82]"=>"\xf0\x9f\x8c\xbe", "\xee\xac\xb6"=>"\xf0\x9f\x8c\xbd", "\xee\xac\xb7"=>"\xf0\x9f\x8d\x84", "\xee\xac\xb8"=>"\xf0\x9f\x8c\xb0",
         
     | 
| 
      
 1507 
     | 
    
         
            +
                  "\xee\xad\x89"=>"\xf0\x9f\x8c\xbc", "\xee\xae\x82"=>"\xf0\x9f\x8c\xbf", "\xee\x93\x92"=>"\xf0\x9f\x8d\x92", "\xee\xac\xb5"=>"\xf0\x9f\x8d\x8c", "\xee\xaa\xb9"=>"\xf0\x9f\x8d\x8e",
         
     | 
| 
      
 1508 
     | 
    
         
            +
                  "\xee\xaa\xba"=>"\xf0\x9f\x8d\x8a", "\xee\x93\x94"=>"\xf0\x9f\x8d\x93", "\xee\x93\x8d"=>"\xf0\x9f\x8d\x89", "\xee\xaa\xbb"=>"\xf0\x9f\x8d\x85", "\xee\xaa\xbc"=>"\xf0\x9f\x8d\x86",
         
     | 
| 
      
 1509 
     | 
    
         
            +
                  "\xee\xac\xb2"=>"\xf0\x9f\x8d\x88", "\xee\xac\xb3"=>"\xf0\x9f\x8d\x8d", "\xee\xac\xb4"=>"\xf0\x9f\x8d\x87", "\xee\xac\xb9"=>"\xf0\x9f\x8d\x91", "\xee\xad\x9a"=>"\xf0\x9f\x8d\x8f",
         
     | 
| 
      
 1510 
     | 
    
         
            +
                  "\xee\x96\xa4"=>"\xf0\x9f\x91\x80", "\xee\x96\xa5"=>"\xf0\x9f\x91\x82", "\xee\xab\x90"=>"\xf0\x9f\x91\x83", "\xee\xab\x91"=>"\xf0\x9f\x91\x84", "\xee\xad\x87"=>"\xf0\x9f\x91\x85",
         
     | 
| 
      
 1511 
     | 
    
         
            +
                  "\xee\x94\x89"=>"\xf0\x9f\x92\x84", "\xee\xaa\xa0"=>"\xf0\x9f\x92\x85", "\xee\x94\x8b"=>"\xf0\x9f\x92\x86", "\xee\xaa\xa1"=>"\xf0\x9f\x92\x87", "\xee\xaa\xa2"=>"\xf0\x9f\x92\x88",
         
     | 
| 
      
 1512 
     | 
    
         
            +
                  "\xe3\x80\x93"=>"\xf0\x9f\x92\xa0", "\xee\x93\xbc"=>"\xf0\x9f\x91\xa8", "\xee\x93\xba"=>"\xf0\x9f\x91\xa9", "\xee\x94\x81"=>"\xf0\x9f\x91\xaa", "[\xe3\x82\xab\xe3\x83\x83\xe3\x83\x97\xe3\x83\xab]"=>"\xf0\x9f\x91\xab",
         
     | 
| 
      
 1513 
     | 
    
         
            +
                  "\xee\x97\x9d"=>"\xf0\x9f\x91\xae", "\xee\xab\x9b"=>"\xf0\x9f\x91\xaf", "\xee\xab\xa9"=>"\xf0\x9f\x91\xb0", "\xee\xac\x93"=>"\xf0\x9f\x91\xb1", "\xee\xac\x94"=>"\xf0\x9f\x91\xb2",
         
     | 
| 
      
 1514 
     | 
    
         
            +
                  "\xee\xac\x95"=>"\xf0\x9f\x91\xb3", "\xee\xac\x96"=>"\xf0\x9f\x91\xb4", "\xee\xac\x97"=>"\xf0\x9f\x91\xb5", "\xee\xac\x98"=>"\xf0\x9f\x9a\xbc", "\xee\xac\x99"=>"\xf0\x9f\x91\xb7",
         
     | 
| 
      
 1515 
     | 
    
         
            +
                  "\xee\xac\x9a"=>"\xf0\x9f\x91\xb8", "\xee\xad\x84"=>"\xf0\x9f\x91\xb9", "\xee\xad\x85"=>"\xf0\x9f\x91\xba", "\xee\x93\x8b"=>"\xf0\x9f\x91\xbb", "\xee\x96\xbf"=>"\xf0\x9f\x91\xbc",
         
     | 
| 
      
 1516 
     | 
    
         
            +
                  "\xee\x94\x8e"=>"\xf0\x9f\x91\xbd", "\xee\x93\xac"=>"\xf0\x9f\x91\xbe", "\xee\x93\xaf"=>"\xf0\x9f\x91\xbf", "\xee\x93\xb8"=>"\xf0\x9f\x92\x80", "[\xe6\xa1\x88\xe5\x86\x85]"=>"\xf0\x9f\x92\x81",
         
     | 
| 
      
 1517 
     | 
    
         
            +
                  "[\xe8\xa1\x9b\xe5\x85\xb5]"=>"\xf0\x9f\x92\x82", "\xee\xac\x9c"=>"\xf0\x9f\x92\x83", "\xee\xad\xbe"=>"\xf0\x9f\x90\x8c", "\xee\xac\xa2"=>"\xf0\x9f\x90\x8d", "\xee\x93\x98"=>"\xf0\x9f\x90\xb4",
         
     | 
| 
      
 1518 
     | 
    
         
            +
                  "\xee\xac\xa3"=>"\xf0\x9f\x90\x94", "\xee\xac\xa4"=>"\xf0\x9f\x90\x97", "\xee\xac\xa5"=>"\xf0\x9f\x90\xab", "\xee\xac\x9f"=>"\xf0\x9f\x90\x98", "\xee\xac\xa0"=>"\xf0\x9f\x90\xa8",
         
     | 
| 
      
 1519 
     | 
    
         
            +
                  "\xee\x93\x99"=>"\xf0\x9f\x90\xb5", "\xee\x97\x87"=>"\xf0\x9f\x90\x99", "\xee\xab\xac"=>"\xf0\x9f\x90\x9a", "\xee\xac\x9e"=>"\xf0\x9f\x90\x9b", "\xee\x93\x9d"=>"\xf0\x9f\x90\x9c",
         
     | 
| 
      
 1520 
     | 
    
         
            +
                  "\xee\xad\x97"=>"\xf0\x9f\x90\x9d", "\xee\xad\x98"=>"\xf0\x9f\x90\x9e", "\xee\xac\x9d"=>"\xf0\x9f\x90\xa0", "\xee\x93\x93"=>"\xf0\x9f\x90\xa1", "\xee\x97\x94"=>"\xf0\x9f\x90\xa2",
         
     | 
| 
      
 1521 
     | 
    
         
            +
                  "\xee\x93\xa0"=>"\xf0\x9f\x90\xa6", "\xee\xad\xb6"=>"\xf0\x9f\x90\xa5", "\xee\x97\x9b"=>"\xf0\x9f\x90\xa3", "\xee\x93\x9c"=>"\xf0\x9f\x90\xa7", "\xee\x93\x9f"=>"\xf0\x9f\x90\xa9",
         
     | 
| 
      
 1522 
     | 
    
         
            +
                  "\xee\xac\x9b"=>"\xf0\x9f\x90\xac", "\xee\x97\x82"=>"\xf0\x9f\x90\xad", "\xee\x97\x80"=>"\xf0\x9f\x90\xaf", "\xee\x93\x9b"=>"\xf0\x9f\x90\xb1", "\xee\x91\xb0"=>"\xf0\x9f\x90\xb3",
         
     | 
| 
      
 1523 
     | 
    
         
            +
                  "\xee\x93\xa1"=>"\xf0\x9f\x90\xba", "\xee\x93\x9e"=>"\xf0\x9f\x90\xb7", "\xee\x97\x81"=>"\xf0\x9f\x90\xbb", "[\xe3\x83\x8f\xe3\x83\xa0\xe3\x82\xb9\xe3\x82\xbf\xe3\x83\xbc]"=>"\xf0\x9f\x90\xb9", "\xee\xac\xa1"=>"\xf0\x9f\x90\xae",
         
     | 
| 
      
 1524 
     | 
    
         
            +
                  "\xee\x93\x97"=>"\xf0\x9f\x90\xb0", "\xee\x93\x9a"=>"\xf0\x9f\x90\xb8", "\xee\x93\xae"=>"\xf0\x9f\x90\xbe", "\xee\xac\xbf"=>"\xf0\x9f\x90\xb2", "\xee\xad\x86"=>"\xf0\x9f\x90\xbc",
         
     | 
| 
      
 1525 
     | 
    
         
            +
                  "\xee\xad\x88"=>"\xf0\x9f\x90\xbd", "\xee\x91\xb2"=>"\xf0\x9f\x98\xa0", "\xee\xad\xa7"=>"\xf0\x9f\x98\xa9", "\xee\xab\x8a"=>"\xf0\x9f\x98\xb2", "\xee\xab\x80"=>"\xf0\x9f\x98\x94",
         
     | 
| 
      
 1526 
     | 
    
         
            +
                  "\xee\x96\xae"=>"\xf0\x9f\x98\xb5", "\xee\xab\x8b"=>"\xf0\x9f\x98\xb0", "\xee\xab\x89"=>"\xf0\x9f\x98\x92", "\xee\x97\x84"=>"\xf0\x9f\x98\x8d", "\xee\xab\x81"=>"\xf0\x9f\x98\xa4",
         
     | 
| 
      
 1527 
     | 
    
         
            +
                  "\xee\x93\xa7"=>"\xf0\x9f\x98\x9d", "\xee\xab\x8d"=>"\xf0\x9f\x98\x8a", "\xee\xab\x8f"=>"\xf0\x9f\x98\x98", "\xee\xab\x8e"=>"\xf0\x9f\x98\x9a", "\xee\xab\x87"=>"\xf0\x9f\x98\xb7",
         
     | 
| 
      
 1528 
     | 
    
         
            +
                  "\xee\xab\x88"=>"\xf0\x9f\x98\xb3", "\xee\x91\xb1"=>"\xf0\x9f\x98\x84", "\xee\x91\xb1\xee\x96\xb1"=>"\xf0\x9f\x98\x85", "\xee\xab\x85"=>"\xf0\x9f\x98\x8c", "\xee\xae\x80"=>"\xf0\x9f\x98\x81",
         
     | 
| 
      
 1529 
     | 
    
         
            +
                  "\xee\xad\xa4"=>"\xf0\x9f\x98\x82", "\xee\x93\xbb"=>"\xe2\x98\xba", "\xee\xad\xa9"=>"\xf0\x9f\x98\xa2", "\xee\x91\xb3"=>"\xf0\x9f\x98\xad", "\xee\xab\x86"=>"\xf0\x9f\x98\xa8",
         
     | 
| 
      
 1530 
     | 
    
         
            +
                  "\xee\xab\x82"=>"\xf0\x9f\x98\xa3", "\xee\xad\x9d"=>"\xf0\x9f\x98\xa1", "\xee\xab\x83"=>"\xf0\x9f\x98\x96", "\xee\x97\x85"=>"\xf0\x9f\x98\xb1", "\xee\xab\x84"=>"\xf0\x9f\x98\xaa",
         
     | 
| 
      
 1531 
     | 
    
         
            +
                  "\xee\xaa\xbf"=>"\xf0\x9f\x98\x8f", "\xee\x97\x86"=>"\xf0\x9f\x98\xa5", "\xee\x91\xb4"=>"\xf0\x9f\x98\xab", "\xee\x97\x83"=>"\xf0\x9f\x98\x89", "\xee\xad\xa1"=>"\xf0\x9f\x98\xba",
         
     | 
| 
      
 1532 
     | 
    
         
            +
                  "\xee\xad\xbf"=>"\xf0\x9f\x98\xb8", "\xee\xad\xa3"=>"\xf0\x9f\x98\xb9", "\xee\xad\xa0"=>"\xf0\x9f\x98\xbd", "\xee\xad\xa5"=>"\xf0\x9f\x98\xbb", "\xee\xad\xa8"=>"\xf0\x9f\x98\xbf",
         
     | 
| 
      
 1533 
     | 
    
         
            +
                  "\xee\xad\x9e"=>"\xf0\x9f\x98\xbe", "\xee\xad\xaa"=>"\xf0\x9f\x98\xbc", "\xee\xad\xa6"=>"\xf0\x9f\x99\x80", "\xee\xab\x97"=>"\xf0\x9f\x99\x85", "\xee\xab\x98"=>"\xf0\x9f\x99\x86",
         
     | 
| 
      
 1534 
     | 
    
         
            +
                  "\xee\xab\x99"=>"\xf0\x9f\x99\x87", "\xee\xad\x90"=>"\xf0\x9f\x99\x88", "\xee\xad\x91"=>"\xf0\x9f\x99\x8a", "\xee\xad\x92"=>"\xf0\x9f\x99\x89", "\xee\xae\x85"=>"\xf0\x9f\x99\x8b",
         
     | 
| 
      
 1535 
     | 
    
         
            +
                  "\xee\xae\x86"=>"\xf0\x9f\x99\x8c", "\xee\xae\x87"=>"\xf0\x9f\x99\x8d", "\xee\xae\x88"=>"\xf0\x9f\x99\x8e", "\xee\xab\x92"=>"\xf0\x9f\x99\x8f", "\xee\x92\xab"=>"\xf0\x9f\x8f\xa0",
         
     | 
| 
      
 1536 
     | 
    
         
            +
                  "\xee\xac\x89"=>"\xf0\x9f\x8f\xa1", "\xee\x92\xad"=>"\xf0\x9f\x8f\xa2", "\xee\x97\x9e"=>"\xf0\x9f\x8f\xa3", "\xee\x97\x9f"=>"\xf0\x9f\x8f\xa5", "\xee\x92\xaa"=>"\xf0\x9f\x8f\xa6",
         
     | 
| 
      
 1537 
     | 
    
         
            +
                  "\xee\x92\xa3"=>"\xf0\x9f\x8f\xa7", "\xee\xaa\x81"=>"\xf0\x9f\x8f\xa8", "\xee\xab\xb3"=>"\xf0\x9f\x8f\xa9", "\xee\x92\xa4"=>"\xf0\x9f\x8f\xaa", "\xee\xaa\x80"=>"\xf0\x9f\x8f\xab",
         
     | 
| 
      
 1538 
     | 
    
         
            +
                  "\xee\x96\xbb"=>"\xf0\x9f\x92\x92", "\xee\x97\x8f"=>"\xe2\x9b\xb2", "\xee\xab\xb6"=>"\xf0\x9f\x8f\xac", "\xee\xab\xb7"=>"\xf0\x9f\x8f\xaf", "\xee\xab\xb8"=>"\xf0\x9f\x8f\xb0",
         
     | 
| 
      
 1539 
     | 
    
         
            +
                  "\xee\xab\xb9"=>"\xf0\x9f\x8f\xad", "\xee\x92\xa9"=>"\xe2\x9a\x93", "\xee\x92\xbd"=>"\xf0\x9f\x8f\xae", "\xee\x96\xbd"=>"\xf0\x9f\x97\xbb", "\xee\x93\x80"=>"\xf0\x9f\x97\xbc",
         
     | 
| 
      
 1540 
     | 
    
         
            +
                  "[\xe8\x87\xaa\xe7\x94\xb1\xe3\x81\xae\xe5\xa5\xb3\xe7\xa5\x9e]"=>"\xf0\x9f\x97\xbd", "\xee\x95\xb2"=>"\xf0\x9f\x97\xbe", "\xee\xad\xac"=>"\xf0\x9f\x97\xbf", "\xee\x96\xb7"=>"\xf0\x9f\x91\x9e", "\xee\xac\xab"=>"\xf0\x9f\x91\x9f",
         
     | 
| 
      
 1541 
     | 
    
         
            +
                  "\xee\x94\x9a"=>"\xf0\x9f\x91\xa1", "\xee\xaa\x9f"=>"\xf0\x9f\x91\xa2", "\xee\xac\xaa"=>"\xf0\x9f\x91\xa3", "\xee\x93\xbe"=>"\xf0\x9f\x91\x93", "\xee\x96\xb6"=>"\xf0\x9f\x91\x95",
         
     | 
| 
      
 1542 
     | 
    
         
            +
                  "\xee\xad\xb7"=>"\xf0\x9f\x91\x96", "\xee\x97\x89"=>"\xf0\x9f\x94\xb1", "\xee\xaa\x93"=>"\xf0\x9f\x91\x94", "\xee\xaa\x9e"=>"\xf0\x9f\x91\x92", "\xee\xad\xab"=>"\xf0\x9f\x91\x97",
         
     | 
| 
      
 1543 
     | 
    
         
            +
                  "\xee\xaa\xa3"=>"\xf0\x9f\x91\x98", "\xee\xaa\xa4"=>"\xf0\x9f\x91\x99", "\xee\x94\x8d"=>"\xf0\x9f\x91\x9a", "\xee\x94\x84"=>"\xf0\x9f\x91\x9b", "\xee\x92\x9c"=>"\xf0\x9f\x91\x9c",
         
     | 
| 
      
 1544 
     | 
    
         
            +
                  "[\xe3\x81\xb5\xe3\x81\x8f\xe3\x82\x8d]"=>"\xf0\x9f\x91\x9d", "\xee\x93\x87"=>"\xf0\x9f\x92\xb0", "[\xef\xbf\xa5]"=>"\xf0\x9f\x92\xb1", "\xee\x97\x9c"=>"\xf0\x9f\x92\xb9", "\xee\x95\xb9"=>"\xf0\x9f\x92\xb2",
         
     | 
| 
      
 1545 
     | 
    
         
            +
                  "\xee\x95\xbc"=>"\xf0\x9f\x92\xb3", "\xee\x95\xbd"=>"\xf0\x9f\x92\xb4", "\xee\x96\x85"=>"\xf0\x9f\x92\xb5", "\xee\xad\x9b"=>"\xf0\x9f\x92\xb8", "\xee\xac\x91"=>"\xf0\x9f\x87\xa8\xf0\x9f\x87\xb3",
         
     | 
| 
      
 1546 
     | 
    
         
            +
                  "\xee\xac\x8e"=>"\xf0\x9f\x87\xa9\xf0\x9f\x87\xaa", "\xee\x97\x95"=>"\xf0\x9f\x87\xaa\xf0\x9f\x87\xb8", "\xee\xab\xba"=>"\xf0\x9f\x87\xab\xf0\x9f\x87\xb7", "\xee\xac\x90"=>"\xf0\x9f\x87\xac\xf0\x9f\x87\xa7", "\xee\xac\x8f"=>"\xf0\x9f\x87\xae\xf0\x9f\x87\xb9",
         
     | 
| 
      
 1547 
     | 
    
         
            +
                  "\xee\x93\x8c"=>"\xf0\x9f\x87\xaf\xf0\x9f\x87\xb5", "\xee\xac\x92"=>"\xf0\x9f\x87\xb0\xf0\x9f\x87\xb7", "\xee\x97\x96"=>"\xf0\x9f\x87\xb7\xf0\x9f\x87\xba", "\xee\x95\xb3"=>"\xf0\x9f\x87\xba\xf0\x9f\x87\xb8", "\xee\x91\xbb"=>"\xf0\x9f\x94\xa5",
         
     | 
| 
      
 1548 
     | 
    
         
            +
                  "\xee\x96\x83"=>"\xf0\x9f\x94\xa6", "\xee\x96\x87"=>"\xf0\x9f\x94\xa7", "\xee\x97\x8b"=>"\xf0\x9f\x94\xa8", "\xee\x96\x81"=>"\xf0\x9f\x94\xa9", "\xee\x95\xbf"=>"\xf0\x9f\x94\xaa",
         
     | 
| 
      
 1549 
     | 
    
         
            +
                  "\xee\x94\x8a"=>"\xf0\x9f\x94\xab", "\xee\xaa\x8f"=>"\xf0\x9f\x94\xaf", "\xee\x92\x80"=>"\xf0\x9f\x94\xb0", "\xee\x94\x90"=>"\xf0\x9f\x92\x89", "\xee\xaa\x9a"=>"\xf0\x9f\x92\x8a",
         
     | 
| 
      
 1550 
     | 
    
         
            +
                  "\xee\xac\xa6"=>"\xf0\x9f\x85\xb0", "\xee\xac\xa7"=>"\xf0\x9f\x85\xb1", "\xee\xac\xa9"=>"\xf0\x9f\x86\x8e", "\xee\xac\xa8"=>"\xf0\x9f\x85\xbe", "\xee\x96\x9f"=>"\xf0\x9f\x8e\x80",
         
     | 
| 
      
 1551 
     | 
    
         
            +
                  "\xee\x93\x8f"=>"\xf0\x9f\x8e\x81", "\xee\x96\xa0"=>"\xf0\x9f\x8e\x82", "\xee\x93\x89"=>"\xf0\x9f\x8e\x84", "\xee\xab\xb0"=>"\xf0\x9f\x8e\x85", "\xee\x97\x99"=>"\xf0\x9f\x8e\x8c",
         
     | 
| 
      
 1552 
     | 
    
         
            +
                  "\xee\x97\x8c"=>"\xf0\x9f\x8e\x86", "\xee\xaa\x9b"=>"\xf0\x9f\x8e\x88", "\xee\xaa\x9c"=>"\xf0\x9f\x8e\x89", "\xee\xab\xa3"=>"\xf0\x9f\x8e\x8d", "\xee\xab\xa4"=>"\xf0\x9f\x8e\x8e",
         
     | 
| 
      
 1553 
     | 
    
         
            +
                  "\xee\xab\xa5"=>"\xf0\x9f\x8e\x93", "\xee\xab\xa6"=>"\xf0\x9f\x8e\x92", "\xee\xab\xa7"=>"\xf0\x9f\x8e\x8f", "\xee\xab\xab"=>"\xf0\x9f\x8e\x87", "\xee\xab\xad"=>"\xf0\x9f\x8e\x90",
         
     | 
| 
      
 1554 
     | 
    
         
            +
                  "\xee\xab\xae"=>"\xf0\x9f\x8e\x83", "\xee\x91\xaf"=>"\xf0\x9f\x8e\x8a", "\xee\xac\xbd"=>"\xf0\x9f\x8e\x8b", "\xee\xab\xaf"=>"\xf0\x9f\x8e\x91", "\xee\x96\x9b"=>"\xf0\x9f\x93\x9f",
         
     | 
| 
      
 1555 
     | 
    
         
            +
                  "\xee\x96\x96"=>"\xe2\x98\x8e", "\xee\x94\x9e"=>"\xf0\x9f\x93\x9e", "\xee\x96\x88"=>"\xf0\x9f\x93\xb1", "\xee\xac\x88"=>"\xf0\x9f\x93\xb2", "\xee\xaa\x92"=>"\xf0\x9f\x93\x9d",
         
     | 
| 
      
 1556 
     | 
    
         
            +
                  "\xee\x94\xa0"=>"\xf0\x9f\x93\xa0", "\xee\x94\xa1"=>"\xe2\x9c\x89", "\xee\x96\x91"=>"\xf0\x9f\x93\xa8", "\xee\xad\xa2"=>"\xf0\x9f\x93\xa9", "\xee\x94\x9b"=>"\xf0\x9f\x93\xae",
         
     | 
| 
      
 1557 
     | 
    
         
            +
                  "\xee\xac\x8a"=>"\xf0\x9f\x93\xab", "\xee\x96\x8b"=>"\xf0\x9f\x93\xb0", "\xee\x94\x91"=>"\xf0\x9f\x94\x8a", "\xee\x92\xa8"=>"\xf0\x9f\x93\xa1", "\xee\x96\x92"=>"\xf0\x9f\x93\xa4",
         
     | 
| 
      
 1558 
     | 
    
         
            +
                  "\xee\x96\x93"=>"\xf0\x9f\x93\xa5", "\xee\x94\x9f"=>"\xf0\x9f\x93\xa6", "\xee\xad\xb1"=>"\xf0\x9f\x93\xa7", "\xee\xab\xbd"=>"\xf0\x9f\x94\xa0", "\xee\xab\xbe"=>"\xf0\x9f\x94\xa1",
         
     | 
| 
      
 1559 
     | 
    
         
            +
                  "\xee\xab\xbf"=>"\xf0\x9f\x94\xa2", "\xee\xac\x80"=>"\xf0\x9f\x94\xa3", "\xee\xad\x95"=>"\xf0\x9f\x94\xa4", "\xee\xac\x83"=>"\xe2\x9c\x92", "[\xe3\x81\x84\xe3\x81\x99]"=>"\xf0\x9f\x92\xba",
         
     | 
| 
      
 1560 
     | 
    
         
            +
                  "\xee\x96\xb8"=>"\xf0\x9f\x92\xbb", "\xee\x92\xa1"=>"\xe2\x9c\x8f", "\xee\x92\xa0"=>"\xf0\x9f\x93\x8e", "\xee\x97\x8e"=>"\xf0\x9f\x92\xbc", "\xee\x96\x82"=>"\xf0\x9f\x92\xbd",
         
     | 
| 
      
 1561 
     | 
    
         
            +
                  "\xee\x95\xa2"=>"\xf0\x9f\x92\xbe", "\xee\x94\x8c"=>"\xf0\x9f\x93\x80", "\xee\x94\x96"=>"\xe2\x9c\x82", "\xee\x95\xa0"=>"\xf0\x9f\x93\x8d", "\xee\x95\xa1"=>"\xf0\x9f\x93\x83",
         
     | 
| 
      
 1562 
     | 
    
         
            +
                  "\xee\x95\xa9"=>"\xf0\x9f\x93\x84", "\xee\x95\xa3"=>"\xf0\x9f\x93\x85", "\xee\x96\x8f"=>"\xf0\x9f\x93\x81", "\xee\x96\x90"=>"\xf0\x9f\x93\x82", "\xee\x95\xab"=>"\xf0\x9f\x93\x93",
         
     | 
| 
      
 1563 
     | 
    
         
            +
                  "\xee\x92\x9f"=>"\xf0\x9f\x93\x96", "\xee\x92\x9d"=>"\xf0\x9f\x93\x94", "\xee\x95\xa8"=>"\xf0\x9f\x93\x95", "\xee\x95\xa5"=>"\xf0\x9f\x93\x97", "\xee\x95\xa6"=>"\xf0\x9f\x93\x98",
         
     | 
| 
      
 1564 
     | 
    
         
            +
                  "\xee\x95\xa7"=>"\xf0\x9f\x93\x99", "\xee\x95\xaf"=>"\xf0\x9f\x93\x9a", "\xee\x94\x9d"=>"\xf0\x9f\x93\x9b", "\xee\x95\x9f"=>"\xf0\x9f\x93\x9c", "\xee\x95\xa4"=>"\xf0\x9f\x93\x8b",
         
     | 
| 
      
 1565 
     | 
    
         
            +
                  "\xee\x95\xaa"=>"\xf0\x9f\x93\x86", "\xee\x95\xb4"=>"\xf0\x9f\x93\x8a", "\xee\x95\xb5"=>"\xf0\x9f\x93\x88", "\xee\x95\xb6"=>"\xf0\x9f\x93\x89", "\xee\x95\xac"=>"\xf0\x9f\x93\x87",
         
     | 
| 
      
 1566 
     | 
    
         
            +
                  "\xee\x95\xad"=>"\xf0\x9f\x93\x8c", "\xee\x95\xae"=>"\xf0\x9f\x93\x92", "\xee\x95\xb0"=>"\xf0\x9f\x93\x8f", "\xee\x92\xa2"=>"\xf0\x9f\x93\x90", "\xee\xac\x8b"=>"\xf0\x9f\x93\x91",
         
     | 
| 
      
 1567 
     | 
    
         
            +
                  "\xee\x92\xba"=>"\xe2\x9a\xbe", "\xee\x96\x99"=>"\xe2\x9b\xb3", "\xee\x92\xb7"=>"\xf0\x9f\x8e\xbe", "\xee\x92\xb6"=>"\xe2\x9a\xbd", "\xee\xaa\xac"=>"\xf0\x9f\x8e\xbf",
         
     | 
| 
      
 1568 
     | 
    
         
            +
                  "\xee\x96\x9a"=>"\xf0\x9f\x8f\x80", "\xee\x92\xb9"=>"\xf0\x9f\x8f\x81", "\xee\x92\xb8"=>"\xf0\x9f\x8f\x82", "\xee\x91\xab"=>"\xf0\x9f\x8f\x83", "\xee\xad\x81"=>"\xf0\x9f\x8f\x84",
         
     | 
| 
      
 1569 
     | 
    
         
            +
                  "\xee\x97\x93"=>"\xf0\x9f\x8f\x86", "\xee\x92\xbb"=>"\xf0\x9f\x8f\x88", "\xee\xab\x9e"=>"\xf0\x9f\x8f\x8a", "\xee\x92\xb5"=>"\xf0\x9f\x9a\x83", "\xee\x96\xbc"=>"\xe2\x93\x82",
         
     | 
| 
      
 1570 
     | 
    
         
            +
                  "\xee\x92\xb0"=>"\xf0\x9f\x9a\x85", "\xee\x92\xb1"=>"\xf0\x9f\x9a\x95", "\xee\x92\xaf"=>"\xf0\x9f\x9a\x8c", "\xee\x92\xa7"=>"\xf0\x9f\x9a\x8f", "\xee\xaa\x82"=>"\xf0\x9f\x9a\xa2",
         
     | 
| 
      
 1571 
     | 
    
         
            +
                  "\xee\x92\xb3"=>"\xe2\x9c\x88", "\xee\x92\xb4"=>"\xf0\x9f\x9a\xa4", "\xee\xad\xad"=>"\xf0\x9f\x9a\x89", "\xee\x97\x88"=>"\xf0\x9f\x9a\x80", "\xee\x92\xb2"=>"\xf0\x9f\x9a\x9a",
         
     | 
| 
      
 1572 
     | 
    
         
            +
                  "\xee\xab\x9f"=>"\xf0\x9f\x9a\x92", "\xee\xab\xa0"=>"\xf0\x9f\x9a\x91", "\xee\xab\xa1"=>"\xf0\x9f\x9a\x93", "\xee\x95\xb1"=>"\xe2\x9b\xbd", "\xee\x92\xa6"=>"\xf0\x9f\x85\xbf",
         
     | 
| 
      
 1573 
     | 
    
         
            +
                  "\xee\x91\xaa"=>"\xf0\x9f\x9a\xa5", "\xee\x97\x97"=>"\xf0\x9f\x9a\xa7", "\xee\xad\xb3"=>"\xf0\x9f\x9a\xa8", "\xee\x92\xbc"=>"\xe2\x99\xa8", "\xee\x97\x90"=>"\xe2\x9b\xba",
         
     | 
| 
      
 1574 
     | 
    
         
            +
                  "\xee\x91\xad"=>"\xf0\x9f\x8e\xa1", "\xee\xab\xa2"=>"\xf0\x9f\x8e\xa2", "\xee\xad\x82"=>"\xf0\x9f\x8e\xa3", "\xee\x94\x83"=>"\xf0\x9f\x8e\xa4", "\xee\x94\x97"=>"\xf0\x9f\x8e\xa6",
         
     | 
| 
      
 1575 
     | 
    
         
            +
                  "\xee\x94\x88"=>"\xf0\x9f\x8e\xa7", "\xee\x96\x9c"=>"\xf0\x9f\x8e\xa8", "\xee\xab\xb5"=>"\xf0\x9f\x8e\xa9", "\xee\x96\x9e"=>"\xf0\x9f\x8e\xaa", "\xee\x92\x9e"=>"\xf0\x9f\x8e\xab",
         
     | 
| 
      
 1576 
     | 
    
         
            +
                  "\xee\x92\xbe"=>"\xf0\x9f\x8e\xac", "\xee\x96\x9d"=>"\xf0\x9f\x8e\xad", "\xee\x93\x86"=>"\xf0\x9f\x8e\xae", "\xee\x97\x91"=>"\xf0\x9f\x80\x84", "\xee\x93\x85"=>"\xf0\x9f\x8e\xaf",
         
     | 
| 
      
 1577 
     | 
    
         
            +
                  "\xee\x91\xae"=>"\xf0\x9f\x8e\xb0", "\xee\xab\x9d"=>"\xf0\x9f\x8e\xb1", "\xee\x93\x88"=>"\xf0\x9f\x8e\xb2", "\xee\xad\x83"=>"\xf0\x9f\x8e\xb3", "\xee\xad\xae"=>"\xf0\x9f\x8e\xb4",
         
     | 
| 
      
 1578 
     | 
    
         
            +
                  "\xee\xad\xaf"=>"\xf0\x9f\x83\x8f", "\xee\x96\xbe"=>"\xf0\x9f\x8e\xb5", "\xee\x94\x85"=>"\xf0\x9f\x8e\xb6", "[\xe3\x82\xb5\xe3\x83\x83\xe3\x82\xaf\xe3\x82\xb9]"=>"\xf0\x9f\x8e\xb7", "\xee\x94\x86"=>"\xf0\x9f\x8e\xb8",
         
     | 
| 
      
 1579 
     | 
    
         
            +
                  "\xee\xad\x80"=>"\xf0\x9f\x8e\xb9", "\xee\xab\x9c"=>"\xf0\x9f\x8e\xba", "\xee\x94\x87"=>"\xf0\x9f\x8e\xbb", "\xee\xab\x8c"=>"\xf0\x9f\x8e\xbc", "[\xe6\xad\x8c\xe8\xa8\x98\xe5\x8f\xb7]"=>"\xe3\x80\xbd",
         
     | 
| 
      
 1580 
     | 
    
         
            +
                  "\xee\x94\x95"=>"\xf0\x9f\x93\xb7", "\xee\x95\xbe"=>"\xf0\x9f\x93\xb9", "\xee\x94\x82"=>"\xf0\x9f\x93\xba", "\xee\x96\xb9"=>"\xf0\x9f\x93\xbb", "\xee\x96\x80"=>"\xf0\x9f\x93\xbc",
         
     | 
| 
      
 1581 
     | 
    
         
            +
                  "\xee\x93\xab"=>"\xf0\x9f\x92\x8b", "\xee\xad\xb8"=>"\xf0\x9f\x92\x8c", "\xee\x94\x94"=>"\xf0\x9f\x92\x8e", "\xee\x97\x8a"=>"\xf0\x9f\x92\x8f", "\xee\xaa\x95"=>"\xf0\x9f\x92\x90",
         
     | 
| 
      
 1582 
     | 
    
         
            +
                  "\xee\xab\x9a"=>"\xf0\x9f\x92\x91", "\xee\xaa\x83"=>"\xf0\x9f\x94\x9e", "\xee\x95\x98"=>"\xc2\xa9", "\xee\x95\x99"=>"\xc2\xae", "\xee\x95\x8e"=>"\xe2\x84\xa2",
         
     | 
| 
      
 1583 
     | 
    
         
            +
                  "\xee\x94\xb3"=>"\xe2\x84\xb9", "\xee\xae\x84"=>"#\xe2\x83\xa3", "\xee\x94\xa2"=>"1\xe2\x83\xa3", "\xee\x94\xa3"=>"2\xe2\x83\xa3", "\xee\x94\xa4"=>"3\xe2\x83\xa3",
         
     | 
| 
      
 1584 
     | 
    
         
            +
                  "\xee\x94\xa5"=>"4\xe2\x83\xa3", "\xee\x94\xa6"=>"5\xe2\x83\xa3", "\xee\x94\xa7"=>"6\xe2\x83\xa3", "\xee\x94\xa8"=>"7\xe2\x83\xa3", "\xee\x94\xa9"=>"8\xe2\x83\xa3",
         
     | 
| 
      
 1585 
     | 
    
         
            +
                  "\xee\x94\xaa"=>"9\xe2\x83\xa3", "\xee\x96\xac"=>"0\xe2\x83\xa3", "\xee\x94\xab"=>"\xf0\x9f\x94\x9f", "\xee\xaa\x84"=>"\xf0\x9f\x93\xb6", "\xee\xaa\x90"=>"\xf0\x9f\x93\xb3",
         
     | 
| 
      
 1586 
     | 
    
         
            +
                  "\xee\xaa\x91"=>"\xf0\x9f\x93\xb4", "\xee\x93\x96"=>"\xf0\x9f\x8d\x94", "\xee\x93\x95"=>"\xf0\x9f\x8d\x99", "\xee\x93\x90"=>"\xf0\x9f\x8d\xb0", "\xee\x96\xb4"=>"\xf0\x9f\x8d\x9c",
         
     | 
| 
      
 1587 
     | 
    
         
            +
                  "\xee\xaa\xaf"=>"\xf0\x9f\x8d\x9e", "\xee\x93\x91"=>"\xf0\x9f\x8d\xb3", "\xee\xaa\xb0"=>"\xf0\x9f\x8d\xa6", "\xee\xaa\xb1"=>"\xf0\x9f\x8d\x9f", "\xee\xaa\xb2"=>"\xf0\x9f\x8d\xa1",
         
     | 
| 
      
 1588 
     | 
    
         
            +
                  "\xee\xaa\xb3"=>"\xf0\x9f\x8d\x98", "\xee\xaa\xb4"=>"\xf0\x9f\x8d\x9a", "\xee\xaa\xb5"=>"\xf0\x9f\x8d\x9d", "\xee\xaa\xb6"=>"\xf0\x9f\x8d\x9b", "\xee\xaa\xb7"=>"\xf0\x9f\x8d\xa2",
         
     | 
| 
      
 1589 
     | 
    
         
            +
                  "\xee\xaa\xb8"=>"\xf0\x9f\x8d\xa3", "\xee\xaa\xbd"=>"\xf0\x9f\x8d\xb1", "\xee\xaa\xbe"=>"\xf0\x9f\x8d\xb2", "\xee\xab\xaa"=>"\xf0\x9f\x8d\xa7", "\xee\x93\x84"=>"\xf0\x9f\x8d\x96",
         
     | 
| 
      
 1590 
     | 
    
         
            +
                  "\xee\x93\xad"=>"\xf0\x9f\x8d\xa5", "\xee\xac\xba"=>"\xf0\x9f\x8d\xa0", "\xee\xac\xbb"=>"\xf0\x9f\x8d\x95", "\xee\xac\xbc"=>"\xf0\x9f\x8d\x97", "\xee\xad\x8a"=>"\xf0\x9f\x8d\xa8",
         
     | 
| 
      
 1591 
     | 
    
         
            +
                  "\xee\xad\x8b"=>"\xf0\x9f\x8d\xa9", "\xee\xad\x8c"=>"\xf0\x9f\x8d\xaa", "\xee\xad\x8d"=>"\xf0\x9f\x8d\xab", "\xee\xad\x8e"=>"\xf0\x9f\x8d\xac", "\xee\xad\x8f"=>"\xf0\x9f\x8d\xad",
         
     | 
| 
      
 1592 
     | 
    
         
            +
                  "\xee\xad\x96"=>"\xf0\x9f\x8d\xae", "\xee\xad\x99"=>"\xf0\x9f\x8d\xaf", "\xee\xad\xb0"=>"\xf0\x9f\x8d\xa4", "\xee\x92\xac"=>"\xf0\x9f\x8d\xb4", "\xee\x96\x97"=>"\xe2\x98\x95",
         
     | 
| 
      
 1593 
     | 
    
         
            +
                  "\xee\x93\x82"=>"\xf0\x9f\x8d\xb8", "\xee\x93\x83"=>"\xf0\x9f\x8d\xba", "\xee\xaa\xae"=>"\xf0\x9f\x8d\xb5", "\xee\xaa\x97"=>"\xf0\x9f\x8d\xb6", "\xee\x93\x81"=>"\xf0\x9f\x8d\xb7",
         
     | 
| 
      
 1594 
     | 
    
         
            +
                  "\xee\xaa\x98"=>"\xf0\x9f\x8d\xbb", "\xee\xac\xbe"=>"\xf0\x9f\x8d\xb9", "\xee\x95\x95"=>"\xe2\x86\x97", "\xee\x95\x8d"=>"\xe2\x86\x98", "\xee\x95\x8c"=>"\xe2\x86\x96",
         
     | 
| 
      
 1595 
     | 
    
         
            +
                  "\xee\x95\x96"=>"\xe2\x86\x99", "\xee\xac\xad"=>"\xe2\xa4\xb4", "\xee\xac\xae"=>"\xe2\xa4\xb5", "\xee\xad\xba"=>"\xe2\x86\x94", "\xee\xad\xbb"=>"\xe2\x86\x95",
         
     | 
| 
      
 1596 
     | 
    
         
            +
                  "\xee\x94\xbf"=>"\xe2\xac\x86", "\xee\x95\x80"=>"\xe2\xac\x87", "\xee\x95\x92"=>"\xe2\x9e\xa1", "\xee\x95\x93"=>"\xe2\xac\x85", "\xee\x94\xae"=>"\xe2\x96\xb6",
         
     | 
| 
      
 1597 
     | 
    
         
            +
                  "\xee\x94\xad"=>"\xe2\x97\x80", "\xee\x94\xb0"=>"\xe2\x8f\xa9", "\xee\x94\xaf"=>"\xe2\x8f\xaa", "\xee\x95\x85"=>"\xe2\x8f\xab", "\xee\x95\x84"=>"\xe2\x8f\xac",
         
     | 
| 
      
 1598 
     | 
    
         
            +
                  "\xee\x95\x9a"=>"\xf0\x9f\x94\xba", "\xee\x95\x9b"=>"\xf0\x9f\x94\xbb", "\xee\x95\x83"=>"\xf0\x9f\x94\xbc", "\xee\x95\x82"=>"\xf0\x9f\x94\xbd", "\xee\xaa\xad"=>"\xe2\xad\x95",
         
     | 
| 
      
 1599 
     | 
    
         
            +
                  "\xee\x95\x90"=>"\xe2\x9d\x8c", "\xee\x95\x91"=>"\xe2\x9d\x8e", "\xee\x92\x82"=>"\xe2\x9d\x95", "\xee\xac\xaf"=>"\xe2\x81\x89", "\xee\xac\xb0"=>"\xe2\x80\xbc",
         
     | 
| 
      
 1600 
     | 
    
         
            +
                  "\xee\x92\x83"=>"\xe2\x9d\x94", "\xee\xac\xb1"=>"\xe2\x9e\xb0", "[\xe3\x83\x95\xe3\x83\xaa\xe3\x83\xbc\xe3\x83\x80\xe3\x82\xa4\xe3\x83\xa4\xe3\x83\xab]"=>"\xe2\x9e\xbf", "\xee\x96\x95"=>"\xf0\x9f\x92\x9f", "\xee\xad\xb5"=>"\xf0\x9f\x92\x97",
         
     | 
| 
      
 1601 
     | 
    
         
            +
                  "\xee\x91\xb7"=>"\xf0\x9f\x92\x94", "\xee\x91\xb8"=>"\xf0\x9f\x92\x95", "\xee\xaa\xa6"=>"\xf0\x9f\x92\x96", "\xee\x93\xaa"=>"\xf0\x9f\x92\x98", "\xee\xaa\xa7"=>"\xf0\x9f\x92\x99",
         
     | 
| 
      
 1602 
     | 
    
         
            +
                  "\xee\xaa\xa8"=>"\xf0\x9f\x92\x9a", "\xee\xaa\xa9"=>"\xf0\x9f\x92\x9b", "\xee\xaa\xaa"=>"\xf0\x9f\x92\x9c", "\xee\xad\x94"=>"\xf0\x9f\x92\x9d", "\xee\x96\xaf"=>"\xf0\x9f\x92\x9e",
         
     | 
| 
      
 1603 
     | 
    
         
            +
                  "\xee\xaa\xa5"=>"\xe2\x99\xa5", "\xee\x96\xa1"=>"\xe2\x99\xa0", "\xee\x96\xa2"=>"\xe2\x99\xa6", "\xee\x96\xa3"=>"\xe2\x99\xa3", "\xee\x91\xbd"=>"\xf0\x9f\x9a\xac",
         
     | 
| 
      
 1604 
     | 
    
         
            +
                  "\xee\x91\xbe"=>"\xf0\x9f\x9a\xad", "\xee\x91\xbf"=>"\xe2\x99\xbf", "\xee\xac\xac"=>"\xf0\x9f\x9a\xa9", "\xee\x92\x81"=>"\xe2\x9a\xa0", "\xee\x92\x84"=>"\xe2\x9b\x94",
         
     | 
| 
      
 1605 
     | 
    
         
            +
                  "\xee\xad\xb9"=>"\xe2\x99\xbb", "\xee\x92\xae"=>"\xf0\x9f\x9a\xb2", "\xee\xad\xb2"=>"\xf0\x9f\x9a\xb6", "[\xe2\x99\x82]"=>"\xf0\x9f\x9a\xb9", "[\xe2\x99\x80]"=>"\xf0\x9f\x9a\xba",
         
     | 
| 
      
 1606 
     | 
    
         
            +
                  "\xee\x97\x98"=>"\xf0\x9f\x9b\x80", "\xee\x92\xa5"=>"\xf0\x9f\x9a\xbe", "[\xe3\x83\x89\xe3\x82\xa2]"=>"\xf0\x9f\x9a\xaa", "\xee\x95\x81"=>"\xf0\x9f\x9a\xab", "\xee\x95\x97"=>"\xe2\x9c\x94",
         
     | 
| 
      
 1607 
     | 
    
         
            +
                  "\xee\x96\xab"=>"\xf0\x9f\x86\x91", "\xee\xaa\x85"=>"\xf0\x9f\x86\x92", "\xee\x95\xb8"=>"\xf0\x9f\x86\x93", "\xee\xaa\x88"=>"\xf0\x9f\x86\x94", "\xee\x96\xb5"=>"\xf0\x9f\x86\x95",
         
     | 
| 
      
 1608 
     | 
    
         
            +
                  "[NG]"=>"\xf0\x9f\x86\x96", "\xee\x96\xad"=>"\xf0\x9f\x86\x97", "\xee\x93\xa8"=>"\xf0\x9f\x86\x98", "\xee\x94\x8f"=>"\xf0\x9f\x86\x99", "\xee\x97\x92"=>"\xf0\x9f\x86\x9a",
         
     | 
| 
      
 1609 
     | 
    
         
            +
                  "[\xe3\x82\xb3\xe3\x82\xb3]"=>"\xf0\x9f\x88\x81", "\xee\xaa\x87"=>"\xf0\x9f\x88\x82", "[\xe7\xa6\x81]"=>"\xf0\x9f\x88\xb2", "\xee\xaa\x8a"=>"\xf0\x9f\x88\xb3", "[\xe5\x90\x88]"=>"\xf0\x9f\x88\xb4",
         
     | 
| 
      
 1610 
     | 
    
         
            +
                  "\xee\xaa\x89"=>"\xf0\x9f\x88\xb5", "[\xe6\x9c\x89]"=>"\xf0\x9f\x88\xb6", "[\xe7\x84\xa1]"=>"\xf0\x9f\x88\x9a", "[\xe6\x9c\x88]"=>"\xf0\x9f\x88\xb7", "[\xe7\x94\xb3]"=>"\xf0\x9f\x88\xb8",
         
     | 
| 
      
 1611 
     | 
    
         
            +
                  "\xee\xaa\x86"=>"\xf0\x9f\x88\xb9", "\xee\xaa\x8b"=>"\xf0\x9f\x88\xaf", "\xee\xaa\x8c"=>"\xf0\x9f\x88\xba", "\xee\x93\xb1"=>"\xe3\x8a\x99", "\xee\xaa\x99"=>"\xe3\x8a\x97",
         
     | 
| 
      
 1612 
     | 
    
         
            +
                  "\xee\x93\xb7"=>"\xf0\x9f\x89\x90", "\xee\xac\x81"=>"\xf0\x9f\x89\x91", "\xee\x94\xbc"=>"\xe2\x9e\x95", "\xee\x94\xbd"=>"\xe2\x9e\x96", "\xee\x95\x8f"=>"\xe2\x9c\x96",
         
     | 
| 
      
 1613 
     | 
    
         
            +
                  "\xee\x95\x94"=>"\xe2\x9e\x97", "\xee\x91\xb6"=>"\xf0\x9f\x92\xa1", "\xee\x93\xa5"=>"\xf0\x9f\x92\xa2", "\xee\x91\xba"=>"\xf0\x9f\x92\xa3", "\xee\x91\xb5"=>"\xf0\x9f\x92\xa4",
         
     | 
| 
      
 1614 
     | 
    
         
            +
                  "\xee\x96\xb0"=>"\xf0\x9f\x92\xa5", "\xee\x96\xb1"=>"\xf0\x9f\x92\xa6", "\xee\x93\xa6"=>"\xf0\x9f\x92\xa7", "\xee\x93\xb4"=>"\xf0\x9f\x92\xa8", "\xee\x93\xb5"=>"\xf0\x9f\x92\xa9",
         
     | 
| 
      
 1615 
     | 
    
         
            +
                  "\xee\x93\xa9"=>"\xf0\x9f\x92\xaa", "\xee\xad\x9c"=>"\xf0\x9f\x92\xab", "\xee\x93\xbd"=>"\xf0\x9f\x92\xac", "\xee\xaa\xab"=>"\xe2\x9c\xa8", "\xee\x91\xb9"=>"\xe2\x9c\xb4",
         
     | 
| 
      
 1616 
     | 
    
         
            +
                  "\xee\x94\xbe"=>"\xe2\x9c\xb3", "\xee\x94\xba"=>"\xe2\x9a\xaa", "\xee\x94\xbb"=>"\xe2\x9a\xab", "\xee\x95\x8a"=>"\xf0\x9f\x94\xb4", "\xee\x95\x8b"=>"\xf0\x9f\x94\xb3",
         
     | 
| 
      
 1617 
     | 
    
         
            +
                  "\xee\x95\x88"=>"\xe2\xac\x9c", "\xee\x95\x89"=>"\xe2\xac\x9b", "\xee\x94\xb1"=>"\xe2\x96\xab", "\xee\x94\xb2"=>"\xe2\x96\xaa", "\xee\x94\xb4"=>"\xe2\x97\xbd",
         
     | 
| 
      
 1618 
     | 
    
         
            +
                  "\xee\x94\xb5"=>"\xe2\x97\xbe", "\xee\x94\xb8"=>"\xe2\x97\xbb", "\xee\x94\xb9"=>"\xe2\x97\xbc", "\xee\x95\x86"=>"\xf0\x9f\x94\xb6", "\xee\x95\x87"=>"\xf0\x9f\x94\xb7",
         
     | 
| 
      
 1619 
     | 
    
         
            +
                  "\xee\x94\xb6"=>"\xf0\x9f\x94\xb8", "\xee\x94\xb7"=>"\xf0\x9f\x94\xb9", "\xee\x91\xac"=>"\xe2\x9d\x87", "\xee\x93\xb0"=>"\xf0\x9f\x92\xae", "\xee\x93\xb2"=>"\xf0\x9f\x92\xaf",
         
     | 
| 
      
 1620 
     | 
    
         
            +
                  "\xee\x95\x9d"=>"\xe2\x86\xa9", "\xee\x95\x9c"=>"\xe2\x86\xaa", "\xee\xac\x8d"=>"\xf0\x9f\x94\x83", "\xee\x96\x84"=>"\xf0\x9f\x94\x8b", "\xee\x96\x89"=>"\xf0\x9f\x94\x8c",
         
     | 
| 
      
 1621 
     | 
    
         
            +
                  "\xee\x94\x98"=>"\xf0\x9f\x94\x8d", "\xee\xac\x85"=>"\xf0\x9f\x94\x8e", "\xee\x94\x9c"=>"\xf0\x9f\x94\x93", "\xee\xac\x8c"=>"\xf0\x9f\x94\x8f", "\xee\xab\xbc"=>"\xf0\x9f\x94\x90",
         
     | 
| 
      
 1622 
     | 
    
         
            +
                  "\xee\x94\x99"=>"\xf0\x9f\x94\x91", "\xee\x94\x92"=>"\xf0\x9f\x94\x94", "\xee\xac\x82"=>"\xe2\x98\x91", "\xee\xac\x84"=>"\xf0\x9f\x94\x98", "\xee\xac\x87"=>"\xf0\x9f\x94\x96",
         
     | 
| 
      
 1623 
     | 
    
         
            +
                  "\xee\x96\x8a"=>"\xf0\x9f\x94\x97", "\xee\xac\x86"=>"\xf0\x9f\x94\x99", "[end]"=>"\xf0\x9f\x94\x9a", "[ON]"=>"\xf0\x9f\x94\x9b", "[SOON]"=>"\xf0\x9f\x94\x9c",
         
     | 
| 
      
 1624 
     | 
    
         
            +
                  "[TOP]"=>"\xf0\x9f\x94\x9d", "\xee\x96\x8c"=>"\xe2\x80\x83", "\xee\x96\x8d"=>"\xe2\x80\x82", "\xee\x96\x8e"=>"\xe2\x80\x85", "\xee\x95\x9e"=>"\xe2\x9c\x85",
         
     | 
| 
      
 1625 
     | 
    
         
            +
                  "\xee\xae\x83"=>"\xe2\x9c\x8a", "\xee\x96\xa7"=>"\xe2\x9c\x8b", "\xee\x96\xa6"=>"\xe2\x9c\x8c", "\xee\x93\xb3"=>"\xf0\x9f\x91\x8a", "\xee\x93\xb9"=>"\xf0\x9f\x91\x8d",
         
     | 
| 
      
 1626 
     | 
    
         
            +
                  "\xee\x93\xb6"=>"\xe2\x98\x9d", "\xee\xaa\x8d"=>"\xf0\x9f\x91\x86", "\xee\xaa\x8e"=>"\xf0\x9f\x91\x87", "\xee\x93\xbf"=>"\xf0\x9f\x91\x88", "\xee\x94\x80"=>"\xf0\x9f\x91\x89",
         
     | 
| 
      
 1627 
     | 
    
         
            +
                  "\xee\xab\x96"=>"\xf0\x9f\x91\x90", "\xee\xab\x93"=>"\xf0\x9f\x91\x8f", "\xee\xab\x94"=>"\xf0\x9f\x91\x8c", "\xee\xab\x95"=>"\xf0\x9f\x91\x8e",
         
     | 
| 
      
 1628 
     | 
    
         
            +
                },
         
     | 
| 
      
 1629 
     | 
    
         
            +
                'softbank_to_unified' => {
         
     | 
| 
      
 1630 
     | 
    
         
            +
                  "\xee\x81\x8a"=>"\xe2\x98\x80", "\xee\x81\x89"=>"\xe2\x98\x81", "\xee\x81\x8b"=>"\xe2\x98\x94", "\xee\x81\x88"=>"\xe2\x9b\x84",
         
     | 
| 
      
 1631 
     | 
    
         
            +
                  "\xee\x84\xbd"=>"\xe2\x9a\xa1", "\xee\x91\x83"=>"\xf0\x9f\x8c\x80", "[\xe9\x9c\xa7]"=>"\xf0\x9f\x8c\x81", "\xee\x90\xbc"=>"\xf0\x9f\x8c\x82", "\xee\x91\x8b"=>"\xf0\x9f\x8c\x8c",
         
     | 
| 
      
 1632 
     | 
    
         
            +
                  "\xee\x81\x8d"=>"\xf0\x9f\x8c\x84", "\xee\x91\x89"=>"\xf0\x9f\x8c\x85", "\xee\x85\x86"=>"\xf0\x9f\x8c\x86", "\xee\x91\x8a"=>"\xf0\x9f\x8c\x87", "\xee\x91\x8c"=>"\xf0\x9f\x8c\x88",
         
     | 
| 
      
 1633 
     | 
    
         
            +
                  "[\xe9\x9b\xaa\xe7\xb5\x90\xe6\x99\xb6]"=>"\xe2\x9d\x84", "\xee\x81\x8a\xee\x81\x89"=>"\xe2\x9b\x85", "\xee\x90\xbe"=>"\xf0\x9f\x8c\x8a", "[\xe7\x81\xab\xe5\xb1\xb1]"=>"\xf0\x9f\x8c\x8b", "[\xe5\x9c\xb0\xe7\x90\x83]"=>"\xf0\x9f\x8c\x8f",
         
     | 
| 
      
 1634 
     | 
    
         
            +
                  "\xe2\x97\x8f"=>"\xf0\x9f\x8c\x91", "\xee\x81\x8c"=>"\xf0\x9f\x8c\x9b", "\xe2\x97\x8b"=>"\xf0\x9f\x8c\x95", "\xee\x8c\xb5"=>"\xf0\x9f\x8c\x9f", "\xe2\x98\x86\xe5\xbd\xa1"=>"\xf0\x9f\x8c\xa0",
         
     | 
| 
      
 1635 
     | 
    
         
            +
                  "\xee\x80\xa4"=>"\xf0\x9f\x95\x90", "\xee\x80\xa5"=>"\xf0\x9f\x95\x91", "\xee\x80\xa6"=>"\xf0\x9f\x95\x92", "\xee\x80\xa7"=>"\xf0\x9f\x95\x93", "\xee\x80\xa8"=>"\xf0\x9f\x95\x94",
         
     | 
| 
      
 1636 
     | 
    
         
            +
                  "\xee\x80\xa9"=>"\xf0\x9f\x95\x95", "\xee\x80\xaa"=>"\xf0\x9f\x95\x96", "\xee\x80\xab"=>"\xf0\x9f\x95\x97", "\xee\x80\xac"=>"\xf0\x9f\x95\x98", "\xee\x80\xad"=>"\xe2\x8f\xb0",
         
     | 
| 
      
 1637 
     | 
    
         
            +
                  "\xee\x80\xae"=>"\xf0\x9f\x95\x9a", "\xee\x80\xaf"=>"\xf0\x9f\x95\x9b", "[\xe8\x85\x95\xe6\x99\x82\xe8\xa8\x88]"=>"\xe2\x8c\x9a", "[\xe7\xa0\x82\xe6\x99\x82\xe8\xa8\x88]"=>"\xe2\x8f\xb3", "\xee\x88\xbf"=>"\xe2\x99\x88",
         
     | 
| 
      
 1638 
     | 
    
         
            +
                  "\xee\x89\x80"=>"\xe2\x99\x89", "\xee\x89\x81"=>"\xe2\x99\x8a", "\xee\x89\x82"=>"\xe2\x99\x8b", "\xee\x89\x83"=>"\xe2\x99\x8c", "\xee\x89\x84"=>"\xe2\x99\x8d",
         
     | 
| 
      
 1639 
     | 
    
         
            +
                  "\xee\x89\x85"=>"\xe2\x99\x8e", "\xee\x89\x86"=>"\xe2\x99\x8f", "\xee\x89\x87"=>"\xe2\x99\x90", "\xee\x89\x88"=>"\xe2\x99\x91", "\xee\x89\x89"=>"\xe2\x99\x92",
         
     | 
| 
      
 1640 
     | 
    
         
            +
                  "\xee\x89\x8a"=>"\xe2\x99\x93", "\xee\x89\x8b"=>"\xe2\x9b\x8e", "\xee\x84\x90"=>"\xf0\x9f\x8c\xbf", "\xee\x8c\x84"=>"\xf0\x9f\x8c\xb7", "\xee\x84\x98"=>"\xf0\x9f\x8d\x81",
         
     | 
| 
      
 1641 
     | 
    
         
            +
                  "\xee\x80\xb0"=>"\xf0\x9f\x8c\xb8", "\xee\x80\xb2"=>"\xf0\x9f\x8c\xb9", "\xee\x84\x99"=>"\xf0\x9f\x8d\x82", "\xee\x91\x87"=>"\xf0\x9f\x8d\x83", "\xee\x8c\x83"=>"\xf0\x9f\x8c\xba",
         
     | 
| 
      
 1642 
     | 
    
         
            +
                  "\xee\x8c\x85"=>"\xf0\x9f\x8c\xbc", "\xee\x8c\x87"=>"\xf0\x9f\x8c\xb4", "\xee\x8c\x88"=>"\xf0\x9f\x8c\xb5", "\xee\x91\x84"=>"\xf0\x9f\x8c\xbe", "[\xe3\x81\xa8\xe3\x81\x86\xe3\x82\x82\xe3\x82\x8d\xe3\x81\x93\xe3\x81\x97]"=>"\xf0\x9f\x8c\xbd",
         
     | 
| 
      
 1643 
     | 
    
         
            +
                  "[\xe3\x82\xad\xe3\x83\x8e\xe3\x82\xb3]"=>"\xf0\x9f\x8d\x84", "[\xe6\xa0\x97]"=>"\xf0\x9f\x8c\xb0", "[\xe3\x81\x95\xe3\x81\x8f\xe3\x82\x89\xe3\x82\x93\xe3\x81\xbc]"=>"\xf0\x9f\x8d\x92", "[\xe3\x83\x90\xe3\x83\x8a\xe3\x83\x8a]"=>"\xf0\x9f\x8d\x8c", "\xee\x8d\x85"=>"\xf0\x9f\x8d\x8f",
         
     | 
| 
      
 1644 
     | 
    
         
            +
                  "\xee\x8d\x86"=>"\xf0\x9f\x8d\x8a", "\xee\x8d\x87"=>"\xf0\x9f\x8d\x93", "\xee\x8d\x88"=>"\xf0\x9f\x8d\x89", "\xee\x8d\x89"=>"\xf0\x9f\x8d\x85", "\xee\x8d\x8a"=>"\xf0\x9f\x8d\x86",
         
     | 
| 
      
 1645 
     | 
    
         
            +
                  "[\xe3\x83\xa1\xe3\x83\xad\xe3\x83\xb3]"=>"\xf0\x9f\x8d\x88", "[\xe3\x83\x91\xe3\x82\xa4\xe3\x83\x8a\xe3\x83\x83\xe3\x83\x97\xe3\x83\xab]"=>"\xf0\x9f\x8d\x8d", "[\xe3\x83\x96\xe3\x83\x89\xe3\x82\xa6]"=>"\xf0\x9f\x8d\x87", "[\xe3\x83\xa2\xe3\x83\xa2]"=>"\xf0\x9f\x8d\x91", "\xee\x90\x99"=>"\xf0\x9f\x91\x80",
         
     | 
| 
      
 1646 
     | 
    
         
            +
                  "\xee\x90\x9b"=>"\xf0\x9f\x91\x82", "\xee\x90\x9a"=>"\xf0\x9f\x91\x83", "\xee\x90\x9c"=>"\xf0\x9f\x91\x84", "\xee\x90\x89"=>"\xf0\x9f\x98\x9d", "\xee\x8c\x9c"=>"\xf0\x9f\x92\x84",
         
     | 
| 
      
 1647 
     | 
    
         
            +
                  "\xee\x8c\x9d"=>"\xf0\x9f\x92\x85", "\xee\x8c\x9e"=>"\xf0\x9f\x92\x86", "\xee\x8c\x9f"=>"\xf0\x9f\x92\x87", "\xee\x8c\xa0"=>"\xf0\x9f\x92\x88", "\xe3\x80\x93"=>"\xe2\x80\x85",
         
     | 
| 
      
 1648 
     | 
    
         
            +
                  "\xee\x80\x81"=>"\xf0\x9f\x91\xa6", "\xee\x80\x82"=>"\xf0\x9f\x91\xa7", "\xee\x80\x84"=>"\xf0\x9f\x91\xa8", "\xee\x80\x85"=>"\xf0\x9f\x91\xa9", "[\xe5\xae\xb6\xe6\x97\x8f]"=>"\xf0\x9f\x91\xaa",
         
     | 
| 
      
 1649 
     | 
    
         
            +
                  "\xee\x90\xa8"=>"\xf0\x9f\x91\xab", "\xee\x85\x92"=>"\xf0\x9f\x91\xae", "\xee\x90\xa9"=>"\xf0\x9f\x91\xaf", "[\xe8\x8a\xb1\xe5\xab\x81]"=>"\xf0\x9f\x91\xb0", "\xee\x94\x95"=>"\xf0\x9f\x91\xb1",
         
     | 
| 
      
 1650 
     | 
    
         
            +
                  "\xee\x94\x96"=>"\xf0\x9f\x91\xb2", "\xee\x94\x97"=>"\xf0\x9f\x91\xb3", "\xee\x94\x98"=>"\xf0\x9f\x91\xb4", "\xee\x94\x99"=>"\xf0\x9f\x91\xb5", "\xee\x94\x9a"=>"\xf0\x9f\x91\xb6",
         
     | 
| 
      
 1651 
     | 
    
         
            +
                  "\xee\x94\x9b"=>"\xf0\x9f\x91\xb7", "\xee\x94\x9c"=>"\xf0\x9f\x91\xb8", "[\xe3\x81\xaa\xe3\x81\xbe\xe3\x81\xaf\xe3\x81\x92]"=>"\xf0\x9f\x91\xb9", "[\xe5\xa4\xa9\xe7\x8b\x97]"=>"\xf0\x9f\x91\xba", "\xee\x84\x9b"=>"\xf0\x9f\x91\xbb",
         
     | 
| 
      
 1652 
     | 
    
         
            +
                  "\xee\x81\x8e"=>"\xf0\x9f\x91\xbc", "\xee\x84\x8c"=>"\xf0\x9f\x91\xbd", "\xee\x84\xab"=>"\xf0\x9f\x91\xbe", "\xee\x84\x9a"=>"\xf0\x9f\x91\xbf", "\xee\x84\x9c"=>"\xf0\x9f\x92\x80",
         
     | 
| 
      
 1653 
     | 
    
         
            +
                  "\xee\x89\x93"=>"\xf0\x9f\x92\x81", "\xee\x94\x9e"=>"\xf0\x9f\x92\x82", "\xee\x94\x9f"=>"\xf0\x9f\x92\x83", "[\xe3\x82\xab\xe3\x82\xbf\xe3\x83\x84\xe3\x83\xa0\xe3\x83\xaa]"=>"\xf0\x9f\x90\x8c", "\xee\x94\xad"=>"\xf0\x9f\x90\x8d",
         
     | 
| 
      
 1654 
     | 
    
         
            +
                  "\xee\x84\xb4"=>"\xf0\x9f\x90\x8e", "\xee\x94\xae"=>"\xf0\x9f\x90\x94", "\xee\x94\xaf"=>"\xf0\x9f\x90\x97", "\xee\x94\xb0"=>"\xf0\x9f\x90\xab", "\xee\x94\xa6"=>"\xf0\x9f\x90\x98",
         
     | 
| 
      
 1655 
     | 
    
         
            +
                  "\xee\x94\xa7"=>"\xf0\x9f\x90\xa8", "\xee\x94\xa8"=>"\xf0\x9f\x90\x92", "\xee\x94\xa9"=>"\xf0\x9f\x90\x91", "\xee\x84\x8a"=>"\xf0\x9f\x90\x99", "\xee\x91\x81"=>"\xf0\x9f\x90\x9a",
         
     | 
| 
      
 1656 
     | 
    
         
            +
                  "\xee\x94\xa5"=>"\xf0\x9f\x90\x9b", "[\xe3\x82\xa2\xe3\x83\xaa]"=>"\xf0\x9f\x90\x9c", "[\xe3\x83\x9f\xe3\x83\x84\xe3\x83\x90\xe3\x83\x81]"=>"\xf0\x9f\x90\x9d", "[\xe3\x81\xa6\xe3\x82\x93\xe3\x81\xa8\xe3\x81\x86\xe8\x99\xab]"=>"\xf0\x9f\x90\x9e", "\xee\x94\xa2"=>"\xf0\x9f\x90\xa0",
         
     | 
| 
      
 1657 
     | 
    
         
            +
                  "\xee\x80\x99"=>"\xf0\x9f\x8e\xa3", "[\xe3\x82\xab\xe3\x83\xa1]"=>"\xf0\x9f\x90\xa2", "\xee\x94\xa3"=>"\xf0\x9f\x90\xa3", "\xee\x94\xa1"=>"\xf0\x9f\x90\xa6", "\xee\x81\x95"=>"\xf0\x9f\x90\xa7",
         
     | 
| 
      
 1658 
     | 
    
         
            +
                  "\xee\x81\x92"=>"\xf0\x9f\x90\xb6", "\xee\x94\xa0"=>"\xf0\x9f\x90\xac", "\xee\x81\x93"=>"\xf0\x9f\x90\xad", "\xee\x81\x90"=>"\xf0\x9f\x90\xaf", "\xee\x81\x8f"=>"\xf0\x9f\x90\xb1",
         
     | 
| 
      
 1659 
     | 
    
         
            +
                  "\xee\x81\x94"=>"\xf0\x9f\x90\xb3", "\xee\x80\x9a"=>"\xf0\x9f\x90\xb4", "\xee\x84\x89"=>"\xf0\x9f\x90\xb5", "\xee\x84\x8b"=>"\xf0\x9f\x90\xbd", "\xee\x81\x91"=>"\xf0\x9f\x90\xbb",
         
     | 
| 
      
 1660 
     | 
    
         
            +
                  "\xee\x94\xa4"=>"\xf0\x9f\x90\xb9", "\xee\x94\xaa"=>"\xf0\x9f\x90\xba", "\xee\x94\xab"=>"\xf0\x9f\x90\xae", "\xee\x94\xac"=>"\xf0\x9f\x90\xb0", "\xee\x94\xb1"=>"\xf0\x9f\x90\xb8",
         
     | 
| 
      
 1661 
     | 
    
         
            +
                  "\xee\x94\xb6"=>"\xf0\x9f\x91\xa3", "[\xe8\xbe\xb0]"=>"\xf0\x9f\x90\xb2", "[\xe3\x83\x91\xe3\x83\xb3\xe3\x83\x80]"=>"\xf0\x9f\x90\xbc", "\xee\x81\x99"=>"\xf0\x9f\x98\xa0", "\xee\x90\x83"=>"\xf0\x9f\x99\x8d",
         
     | 
| 
      
 1662 
     | 
    
         
            +
                  "\xee\x90\x90"=>"\xf0\x9f\x98\xb2", "\xee\x81\x98"=>"\xf0\x9f\x98\x9e", "\xee\x90\x86"=>"\xf0\x9f\x98\xab", "\xee\x90\x8f"=>"\xf0\x9f\x98\xb0", "\xee\x90\x8e"=>"\xf0\x9f\x98\x92",
         
     | 
| 
      
 1663 
     | 
    
         
            +
                  "\xee\x84\x86"=>"\xf0\x9f\x98\xbb", "\xee\x90\x84"=>"\xf0\x9f\x98\xbc", "\xee\x84\x85"=>"\xf0\x9f\x98\x9c", "\xee\x81\x96"=>"\xf0\x9f\x98\x8a", "\xee\x90\x98"=>"\xf0\x9f\x98\xbd",
         
     | 
| 
      
 1664 
     | 
    
         
            +
                  "\xee\x90\x97"=>"\xf0\x9f\x98\x9a", "\xee\x90\x8c"=>"\xf0\x9f\x98\xb7", "\xee\x90\x8d"=>"\xf0\x9f\x98\xb3", "\xee\x81\x97"=>"\xf0\x9f\x98\xba", "\xee\x90\x95\xee\x8c\xb1"=>"\xf0\x9f\x98\x85",
         
     | 
| 
      
 1665 
     | 
    
         
            +
                  "\xee\x90\x8a"=>"\xf0\x9f\x98\x8c", "\xee\x90\x92"=>"\xf0\x9f\x98\xb9", "\xee\x90\x94"=>"\xe2\x98\xba", "\xee\x90\x95"=>"\xf0\x9f\x98\x84", "\xee\x90\x93"=>"\xf0\x9f\x98\xbf",
         
     | 
| 
      
 1666 
     | 
    
         
            +
                  "\xee\x90\x91"=>"\xf0\x9f\x98\xad", "\xee\x90\x8b"=>"\xf0\x9f\x98\xa8", "\xee\x90\x96"=>"\xf0\x9f\x99\x8e", "\xee\x90\x87"=>"\xf0\x9f\x92\xab", "\xee\x84\x87"=>"\xf0\x9f\x98\xb1",
         
     | 
| 
      
 1667 
     | 
    
         
            +
                  "\xee\x90\x88"=>"\xf0\x9f\x98\xaa", "\xee\x90\x82"=>"\xf0\x9f\x98\x8f", "\xee\x84\x88"=>"\xf0\x9f\x98\x93", "\xee\x90\x81"=>"\xf0\x9f\x98\xa5", "\xee\x90\x85"=>"\xf0\x9f\x98\x89",
         
     | 
| 
      
 1668 
     | 
    
         
            +
                  "\xee\x90\xa3"=>"\xf0\x9f\x99\x85", "\xee\x90\xa4"=>"\xf0\x9f\x99\x86", "\xee\x90\xa6"=>"\xf0\x9f\x99\x87", "(/_\xef\xbc\xbc)"=>"\xf0\x9f\x99\x88", "(\xe3\x83\xbb\xc3\x97\xe3\x83\xbb)"=>"\xf0\x9f\x99\x8a",
         
     | 
| 
      
 1669 
     | 
    
         
            +
                  "|(\xe3\x83\xbb\xc3\x97\xe3\x83\xbb)|"=>"\xf0\x9f\x99\x89", "\xee\x80\x92"=>"\xe2\x9c\x8b", "\xee\x90\xa7"=>"\xf0\x9f\x99\x8c", "\xee\x90\x9d"=>"\xf0\x9f\x99\x8f", "\xee\x80\xb6"=>"\xf0\x9f\x8f\xa1",
         
     | 
| 
      
 1670 
     | 
    
         
            +
                  "\xee\x80\xb8"=>"\xf0\x9f\x8f\xa2", "\xee\x85\x93"=>"\xf0\x9f\x8f\xa3", "\xee\x85\x95"=>"\xf0\x9f\x8f\xa5", "\xee\x85\x8d"=>"\xf0\x9f\x8f\xa6", "\xee\x85\x94"=>"\xf0\x9f\x8f\xa7",
         
     | 
| 
      
 1671 
     | 
    
         
            +
                  "\xee\x85\x98"=>"\xf0\x9f\x8f\xa8", "\xee\x94\x81"=>"\xf0\x9f\x8f\xa9", "\xee\x85\x96"=>"\xf0\x9f\x8f\xaa", "\xee\x85\x97"=>"\xf0\x9f\x8f\xab", "\xee\x80\xb7"=>"\xe2\x9b\xaa",
         
     | 
| 
      
 1672 
     | 
    
         
            +
                  "\xee\x84\xa1"=>"\xe2\x9b\xb2", "\xee\x94\x84"=>"\xf0\x9f\x8f\xac", "\xee\x94\x85"=>"\xf0\x9f\x8f\xaf", "\xee\x94\x86"=>"\xf0\x9f\x8f\xb0", "\xee\x94\x88"=>"\xf0\x9f\x8f\xad",
         
     | 
| 
      
 1673 
     | 
    
         
            +
                  "\xee\x88\x82"=>"\xf0\x9f\x9a\xa2", "\xee\x8c\x8b"=>"\xf0\x9f\x8d\xb6", "\xee\x80\xbb"=>"\xf0\x9f\x97\xbb", "\xee\x94\x89"=>"\xf0\x9f\x97\xbc", "\xee\x94\x9d"=>"\xf0\x9f\x97\xbd",
         
     | 
| 
      
 1674 
     | 
    
         
            +
                  "[\xe6\x97\xa5\xe6\x9c\xac\xe5\x9c\xb0\xe5\x9b\xb3]"=>"\xf0\x9f\x97\xbe", "[\xe3\x83\xa2\xe3\x82\xa2\xe3\x82\xa4]"=>"\xf0\x9f\x97\xbf", "\xee\x80\x87"=>"\xf0\x9f\x91\x9f", "\xee\x84\xbe"=>"\xf0\x9f\x91\xa0", "\xee\x8c\x9a"=>"\xf0\x9f\x91\xa1",
         
     | 
| 
      
 1675 
     | 
    
         
            +
                  "\xee\x8c\x9b"=>"\xf0\x9f\x91\xa2", "[\xe3\x83\xa1\xe3\x82\xac\xe3\x83\x8d]"=>"\xf0\x9f\x91\x93", "\xee\x80\x86"=>"\xf0\x9f\x91\x9a", "[\xe3\x82\xb8\xe3\x83\xbc\xe3\x83\xb3\xe3\x82\xba]"=>"\xf0\x9f\x91\x96", "\xee\x84\x8e"=>"\xf0\x9f\x91\x91",
         
     | 
| 
      
 1676 
     | 
    
         
            +
                  "\xee\x8c\x82"=>"\xf0\x9f\x91\x94", "\xee\x8c\x98"=>"\xf0\x9f\x91\x92", "\xee\x8c\x99"=>"\xf0\x9f\x91\x97", "\xee\x8c\xa1"=>"\xf0\x9f\x91\x98", "\xee\x8c\xa2"=>"\xf0\x9f\x91\x99",
         
     | 
| 
      
 1677 
     | 
    
         
            +
                  "[\xe8\xb2\xa1\xe5\xb8\x83]"=>"\xf0\x9f\x91\x9b", "\xee\x8c\xa3"=>"\xf0\x9f\x91\x9c", "[\xe3\x81\xb5\xe3\x81\x8f\xe3\x82\x8d]"=>"\xf0\x9f\x91\x9d", "\xee\x84\xaf"=>"\xf0\x9f\x92\xb5", "\xee\x85\x89"=>"\xf0\x9f\x92\xb1",
         
     | 
| 
      
 1678 
     | 
    
         
            +
                  "\xee\x85\x8a"=>"\xf0\x9f\x93\x88", "[\xe3\x82\xab\xe3\x83\xbc\xe3\x83\x89]"=>"\xf0\x9f\x92\xb3", "\xef\xbf\xa5"=>"\xf0\x9f\x92\xb4", "[\xe9\xa3\x9b\xe3\x82\x93\xe3\x81\xa7\xe3\x81\x84\xe3\x81\x8f\xe3\x81\x8a\xe9\x87\x91]"=>"\xf0\x9f\x92\xb8", "\xee\x94\x93"=>"\xf0\x9f\x87\xa8\xf0\x9f\x87\xb3",
         
     | 
| 
      
 1679 
     | 
    
         
            +
                  "\xee\x94\x8e"=>"\xf0\x9f\x87\xa9\xf0\x9f\x87\xaa", "\xee\x94\x91"=>"\xf0\x9f\x87\xaa\xf0\x9f\x87\xb8", "\xee\x94\x8d"=>"\xf0\x9f\x87\xab\xf0\x9f\x87\xb7", "\xee\x94\x90"=>"\xf0\x9f\x87\xac\xf0\x9f\x87\xa7", "\xee\x94\x8f"=>"\xf0\x9f\x87\xae\xf0\x9f\x87\xb9",
         
     | 
| 
      
 1680 
     | 
    
         
            +
                  "\xee\x94\x8b"=>"\xf0\x9f\x87\xaf\xf0\x9f\x87\xb5", "\xee\x94\x94"=>"\xf0\x9f\x87\xb0\xf0\x9f\x87\xb7", "\xee\x94\x92"=>"\xf0\x9f\x87\xb7\xf0\x9f\x87\xba", "\xee\x94\x8c"=>"\xf0\x9f\x87\xba\xf0\x9f\x87\xb8", "\xee\x84\x9d"=>"\xf0\x9f\x94\xa5",
         
     | 
| 
      
 1681 
     | 
    
         
            +
                  "[\xe6\x87\x90\xe4\xb8\xad\xe9\x9b\xbb\xe7\x81\xaf]"=>"\xf0\x9f\x94\xa6", "[\xe3\x83\xac\xe3\x83\xb3\xe3\x83\x81]"=>"\xf0\x9f\x94\xa7", "\xee\x84\x96"=>"\xf0\x9f\x94\xa8", "[\xe3\x83\x8d\xe3\x82\xb8]"=>"\xf0\x9f\x94\xa9", "[\xe5\x8c\x85\xe4\xb8\x81]"=>"\xf0\x9f\x94\xaa",
         
     | 
| 
      
 1682 
     | 
    
         
            +
                  "\xee\x84\x93"=>"\xf0\x9f\x94\xab", "\xee\x88\xbe"=>"\xf0\x9f\x94\xaf", "\xee\x88\x89"=>"\xf0\x9f\x94\xb0", "\xee\x80\xb1"=>"\xf0\x9f\x94\xb1", "\xee\x84\xbb"=>"\xf0\x9f\x92\x89",
         
     | 
| 
      
 1683 
     | 
    
         
            +
                  "\xee\x8c\x8f"=>"\xf0\x9f\x92\x8a", "\xee\x94\xb2"=>"\xf0\x9f\x85\xb0", "\xee\x94\xb3"=>"\xf0\x9f\x85\xb1", "\xee\x94\xb4"=>"\xf0\x9f\x86\x8e", "\xee\x94\xb5"=>"\xf0\x9f\x85\xbe",
         
     | 
| 
      
 1684 
     | 
    
         
            +
                  "\xee\x8c\x94"=>"\xf0\x9f\x8e\x80", "\xee\x84\x92"=>"\xf0\x9f\x93\xa6", "\xee\x8d\x8b"=>"\xf0\x9f\x8e\x82", "\xee\x80\xb3"=>"\xf0\x9f\x8e\x84", "\xee\x91\x88"=>"\xf0\x9f\x8e\x85",
         
     | 
| 
      
 1685 
     | 
    
         
            +
                  "\xee\x85\x83"=>"\xf0\x9f\x8e\x8c", "\xee\x84\x97"=>"\xf0\x9f\x8e\x86", "\xee\x8c\x90"=>"\xf0\x9f\x8e\x88", "\xee\x8c\x92"=>"\xf0\x9f\x8e\x89", "\xee\x90\xb6"=>"\xf0\x9f\x8e\x8d",
         
     | 
| 
      
 1686 
     | 
    
         
            +
                  "\xee\x90\xb8"=>"\xf0\x9f\x8e\x8e", "\xee\x90\xb9"=>"\xf0\x9f\x8e\x93", "\xee\x90\xba"=>"\xf0\x9f\x8e\x92", "\xee\x90\xbb"=>"\xf0\x9f\x8e\x8f", "\xee\x91\x80"=>"\xf0\x9f\x8e\x87",
         
     | 
| 
      
 1687 
     | 
    
         
            +
                  "\xee\x91\x82"=>"\xf0\x9f\x8e\x90", "\xee\x91\x85"=>"\xf0\x9f\x8e\x83", "[\xe3\x82\xaa\xe3\x83\xa1\xe3\x83\x87\xe3\x83\x88\xe3\x82\xa6]"=>"\xf0\x9f\x8e\x8a", "[\xe4\xb8\x83\xe5\xa4\x95]"=>"\xf0\x9f\x8e\x8b", "\xee\x91\x86"=>"\xf0\x9f\x8e\x91",
         
     | 
| 
      
 1688 
     | 
    
         
            +
                  "[\xe3\x83\x9d\xe3\x82\xb1\xe3\x83\x99\xe3\x83\xab]"=>"\xf0\x9f\x93\x9f", "\xee\x80\x89"=>"\xf0\x9f\x93\x9e", "\xee\x80\x8a"=>"\xf0\x9f\x93\xb1", "\xee\x84\x84"=>"\xf0\x9f\x93\xb2", "\xee\x8c\x81"=>"\xf0\x9f\x93\x91",
         
     | 
| 
      
 1689 
     | 
    
         
            +
                  "\xee\x80\x8b"=>"\xf0\x9f\x93\xa0", "\xee\x84\x83"=>"\xf0\x9f\x93\xa7", "\xee\x84\x81"=>"\xf0\x9f\x93\xab", "\xee\x84\x82"=>"\xf0\x9f\x93\xae", "[\xe6\x96\xb0\xe8\x81\x9e]"=>"\xf0\x9f\x93\xb0",
         
     | 
| 
      
 1690 
     | 
    
         
            +
                  "\xee\x85\x82"=>"\xf0\x9f\x93\xa2", "\xee\x8c\x97"=>"\xf0\x9f\x93\xa3", "\xee\x85\x8b"=>"\xf0\x9f\x93\xa1", "[\xe9\x80\x81\xe4\xbf\xa1BOX]"=>"\xf0\x9f\x93\xa4", "[\xe5\x8f\x97\xe4\xbf\xa1BOX]"=>"\xf0\x9f\x93\xa5",
         
     | 
| 
      
 1691 
     | 
    
         
            +
                  "[ABCD]"=>"\xf0\x9f\x94\xa0", "[abcd]"=>"\xf0\x9f\x94\xa1", "[1234]"=>"\xf0\x9f\x94\xa2", "[\xe8\xa8\x98\xe5\x8f\xb7]"=>"\xf0\x9f\x94\xa3", "[ABC]"=>"\xf0\x9f\x94\xa4",
         
     | 
| 
      
 1692 
     | 
    
         
            +
                  "[\xe3\x83\x9a\xe3\x83\xb3]"=>"\xe2\x9c\x92", "\xee\x84\x9f"=>"\xf0\x9f\x92\xba", "\xee\x80\x8c"=>"\xf0\x9f\x92\xbb", "[\xe3\x82\xaf\xe3\x83\xaa\xe3\x83\x83\xe3\x83\x97]"=>"\xf0\x9f\x93\x8e", "\xee\x84\x9e"=>"\xf0\x9f\x92\xbc",
         
     | 
| 
      
 1693 
     | 
    
         
            +
                  "\xee\x8c\x96"=>"\xf0\x9f\x92\xbe", "\xee\x84\xa6"=>"\xf0\x9f\x92\xbf", "\xee\x84\xa7"=>"\xf0\x9f\x93\x80", "\xee\x8c\x93"=>"\xe2\x9c\x82", "[\xe7\x94\xbb\xe3\x81\xb3\xe3\x82\x87\xe3\x81\x86]"=>"\xf0\x9f\x93\x8c",
         
     | 
| 
      
 1694 
     | 
    
         
            +
                  "[\xe3\x82\xab\xe3\x83\xac\xe3\x83\xb3\xe3\x83\x80\xe3\x83\xbc]"=>"\xf0\x9f\x93\x86", "[\xe3\x83\x95\xe3\x82\xa9\xe3\x83\xab\xe3\x83\x80]"=>"\xf0\x9f\x93\x82", "\xee\x85\x88"=>"\xf0\x9f\x93\x92", "[\xe5\x90\x8d\xe6\x9c\xad]"=>"\xf0\x9f\x93\x9b", "[\xe3\x82\xb9\xe3\x82\xaf\xe3\x83\xad\xe3\x83\xbc\xe3\x83\xab]"=>"\xf0\x9f\x93\x9c",
         
     | 
| 
      
 1695 
     | 
    
         
            +
                  "[\xe3\x82\xb0\xe3\x83\xa9\xe3\x83\x95]"=>"\xf0\x9f\x93\x89", "[\xe5\xae\x9a\xe8\xa6\x8f]"=>"\xf0\x9f\x93\x8f", "[\xe4\xb8\x89\xe8\xa7\x92\xe5\xae\x9a\xe8\xa6\x8f]"=>"\xf0\x9f\x93\x90", "\xee\x80\x96"=>"\xe2\x9a\xbe", "\xee\x80\x94"=>"\xe2\x9b\xb3",
         
     | 
| 
      
 1696 
     | 
    
         
            +
                  "\xee\x80\x95"=>"\xf0\x9f\x8e\xbe", "\xee\x80\x98"=>"\xe2\x9a\xbd", "\xee\x80\x93"=>"\xf0\x9f\x8e\xbf", "\xee\x90\xaa"=>"\xf0\x9f\x8f\x80", "\xee\x84\xb2"=>"\xf0\x9f\x8f\x81",
         
     | 
| 
      
 1697 
     | 
    
         
            +
                  "[\xe3\x82\xb9\xe3\x83\x8e\xe3\x83\x9c]"=>"\xf0\x9f\x8f\x82", "\xee\x84\x95"=>"\xf0\x9f\x8f\x83", "\xee\x80\x97"=>"\xf0\x9f\x8f\x84", "\xee\x84\xb1"=>"\xf0\x9f\x8f\x86", "\xee\x90\xab"=>"\xf0\x9f\x8f\x88",
         
     | 
| 
      
 1698 
     | 
    
         
            +
                  "\xee\x90\xad"=>"\xf0\x9f\x8f\x8a", "\xee\x80\x9e"=>"\xf0\x9f\x9a\x83", "\xee\x90\xb4"=>"\xe2\x93\x82", "\xee\x90\xb5"=>"\xf0\x9f\x9a\x84", "\xee\x80\x9f"=>"\xf0\x9f\x9a\x85",
         
     | 
| 
      
 1699 
     | 
    
         
            +
                  "\xee\x80\x9b"=>"\xf0\x9f\x9a\x97", "\xee\x90\xae"=>"\xf0\x9f\x9a\x99", "\xee\x85\x99"=>"\xf0\x9f\x9a\x8c", "\xee\x85\x90"=>"\xf0\x9f\x9a\x8f", "\xee\x80\x9d"=>"\xe2\x9c\x88",
         
     | 
| 
      
 1700 
     | 
    
         
            +
                  "\xee\x80\x9c"=>"\xe2\x9b\xb5", "\xee\x80\xb9"=>"\xf0\x9f\x9a\x89", "\xee\x84\x8d"=>"\xf0\x9f\x9a\x80", "\xee\x84\xb5"=>"\xf0\x9f\x9a\xa4", "\xee\x85\x9a"=>"\xf0\x9f\x9a\x95",
         
     | 
| 
      
 1701 
     | 
    
         
            +
                  "\xee\x90\xaf"=>"\xf0\x9f\x9a\x9a", "\xee\x90\xb0"=>"\xf0\x9f\x9a\x92", "\xee\x90\xb1"=>"\xf0\x9f\x9a\x91", "\xee\x90\xb2"=>"\xf0\x9f\x9a\xa8", "\xee\x80\xba"=>"\xe2\x9b\xbd",
         
     | 
| 
      
 1702 
     | 
    
         
            +
                  "\xee\x85\x8f"=>"\xf0\x9f\x85\xbf", "\xee\x85\x8e"=>"\xf0\x9f\x9a\xa5", "\xee\x84\xb7"=>"\xe2\x9b\x94", "\xee\x84\xa3"=>"\xe2\x99\xa8", "\xee\x84\xa2"=>"\xe2\x9b\xba",
         
     | 
| 
      
 1703 
     | 
    
         
            +
                  "\xee\x84\xa4"=>"\xf0\x9f\x8e\xa1", "\xee\x90\xb3"=>"\xf0\x9f\x8e\xa2", "\xee\x80\xbc"=>"\xf0\x9f\x8e\xa4", "\xee\x80\xbd"=>"\xf0\x9f\x93\xb9", "\xee\x94\x87"=>"\xf0\x9f\x8e\xa6",
         
     | 
| 
      
 1704 
     | 
    
         
            +
                  "\xee\x8c\x8a"=>"\xf0\x9f\x8e\xa7", "\xee\x94\x82"=>"\xf0\x9f\x8e\xa8", "\xee\x94\x83"=>"\xf0\x9f\x8e\xad", "[\xe3\x82\xa4\xe3\x83\x99\xe3\x83\xb3\xe3\x83\x88]"=>"\xf0\x9f\x8e\xaa", "\xee\x84\xa5"=>"\xf0\x9f\x8e\xab",
         
     | 
| 
      
 1705 
     | 
    
         
            +
                  "\xee\x8c\xa4"=>"\xf0\x9f\x8e\xac", "[\xe3\x82\xb2\xe3\x83\xbc\xe3\x83\xa0]"=>"\xf0\x9f\x8e\xae", "\xee\x84\xad"=>"\xf0\x9f\x80\x84", "\xee\x84\xb0"=>"\xf0\x9f\x8e\xaf", "\xee\x84\xb3"=>"\xf0\x9f\x8e\xb0",
         
     | 
| 
      
 1706 
     | 
    
         
            +
                  "\xee\x90\xac"=>"\xf0\x9f\x8e\xb1", "[\xe3\x82\xb5\xe3\x82\xa4\xe3\x82\xb3\xe3\x83\xad]"=>"\xf0\x9f\x8e\xb2", "[\xe3\x83\x9c\xe3\x83\xbc\xe3\x83\xaa\xe3\x83\xb3\xe3\x82\xb0]"=>"\xf0\x9f\x8e\xb3", "[\xe8\x8a\xb1\xe6\x9c\xad]"=>"\xf0\x9f\x8e\xb4", "[\xe3\x82\xb8\xe3\x83\xa7\xe3\x83\xbc\xe3\x82\xab\xe3\x83\xbc]"=>"\xf0\x9f\x83\x8f",
         
     | 
| 
      
 1707 
     | 
    
         
            +
                  "\xee\x80\xbe"=>"\xf0\x9f\x8e\xb5", "\xee\x8c\xa6"=>"\xf0\x9f\x8e\xbc", "\xee\x81\x80"=>"\xf0\x9f\x8e\xb7", "\xee\x81\x81"=>"\xf0\x9f\x8e\xb8", "[\xe3\x83\x94\xe3\x82\xa2\xe3\x83\x8e]"=>"\xf0\x9f\x8e\xb9",
         
     | 
| 
      
 1708 
     | 
    
         
            +
                  "\xee\x81\x82"=>"\xf0\x9f\x8e\xba", "[\xe3\x83\x90\xe3\x82\xa4\xe3\x82\xaa\xe3\x83\xaa\xe3\x83\xb3]"=>"\xf0\x9f\x8e\xbb", "\xee\x84\xac"=>"\xe3\x80\xbd", "\xee\x80\x88"=>"\xf0\x9f\x93\xb7", "\xee\x84\xaa"=>"\xf0\x9f\x93\xba",
         
     | 
| 
      
 1709 
     | 
    
         
            +
                  "\xee\x84\xa8"=>"\xf0\x9f\x93\xbb", "\xee\x84\xa9"=>"\xf0\x9f\x93\xbc", "\xee\x80\x83"=>"\xf0\x9f\x92\x8b", "\xee\x84\x83\xee\x8c\xa8"=>"\xf0\x9f\x92\x8c", "\xee\x80\xb4"=>"\xf0\x9f\x92\x8d",
         
     | 
| 
      
 1710 
     | 
    
         
            +
                  "\xee\x80\xb5"=>"\xf0\x9f\x92\x8e", "\xee\x84\x91"=>"\xf0\x9f\x92\x8f", "\xee\x8c\x86"=>"\xf0\x9f\x92\x90", "\xee\x90\xa5"=>"\xf0\x9f\x92\x91", "\xee\x90\xbd"=>"\xf0\x9f\x92\x92",
         
     | 
| 
      
 1711 
     | 
    
         
            +
                  "\xee\x88\x87"=>"\xf0\x9f\x94\x9e", "\xee\x89\x8e"=>"\xc2\xa9", "\xee\x89\x8f"=>"\xc2\xae", "\xee\x94\xb7"=>"\xe2\x84\xa2", "[\xef\xbd\x89]"=>"\xe2\x84\xb9",
         
     | 
| 
      
 1712 
     | 
    
         
            +
                  "\xee\x88\x90"=>"#\xe2\x83\xa3", "\xee\x88\x9c"=>"1\xe2\x83\xa3", "\xee\x88\x9d"=>"2\xe2\x83\xa3", "\xee\x88\x9e"=>"3\xe2\x83\xa3", "\xee\x88\x9f"=>"4\xe2\x83\xa3",
         
     | 
| 
      
 1713 
     | 
    
         
            +
                  "\xee\x88\xa0"=>"5\xe2\x83\xa3", "\xee\x88\xa1"=>"6\xe2\x83\xa3", "\xee\x88\xa2"=>"7\xe2\x83\xa3", "\xee\x88\xa3"=>"8\xe2\x83\xa3", "\xee\x88\xa4"=>"9\xe2\x83\xa3",
         
     | 
| 
      
 1714 
     | 
    
         
            +
                  "\xee\x88\xa5"=>"0\xe2\x83\xa3", "[10]"=>"\xf0\x9f\x94\x9f", "\xee\x88\x8b"=>"\xf0\x9f\x93\xb6", "\xee\x89\x90"=>"\xf0\x9f\x93\xb3", "\xee\x89\x91"=>"\xf0\x9f\x93\xb4",
         
     | 
| 
      
 1715 
     | 
    
         
            +
                  "\xee\x84\xa0"=>"\xf0\x9f\x8d\x94", "\xee\x8d\x82"=>"\xf0\x9f\x8d\x99", "\xee\x81\x86"=>"\xf0\x9f\x8d\xb0", "\xee\x8d\x80"=>"\xf0\x9f\x8d\x9c", "\xee\x8c\xb9"=>"\xf0\x9f\x8d\x9e",
         
     | 
| 
      
 1716 
     | 
    
         
            +
                  "\xee\x85\x87"=>"\xf0\x9f\x8d\xb3", "\xee\x8c\xba"=>"\xf0\x9f\x8d\xa6", "\xee\x8c\xbb"=>"\xf0\x9f\x8d\x9f", "\xee\x8c\xbc"=>"\xf0\x9f\x8d\xa1", "\xee\x8c\xbd"=>"\xf0\x9f\x8d\x98",
         
     | 
| 
      
 1717 
     | 
    
         
            +
                  "\xee\x8c\xbe"=>"\xf0\x9f\x8d\x9a", "\xee\x8c\xbf"=>"\xf0\x9f\x8d\x9d", "\xee\x8d\x81"=>"\xf0\x9f\x8d\x9b", "\xee\x8d\x83"=>"\xf0\x9f\x8d\xa2", "\xee\x8d\x84"=>"\xf0\x9f\x8d\xa3",
         
     | 
| 
      
 1718 
     | 
    
         
            +
                  "\xee\x8d\x8c"=>"\xf0\x9f\x8d\xb1", "\xee\x8d\x8d"=>"\xf0\x9f\x8d\xb2", "\xee\x90\xbf"=>"\xf0\x9f\x8d\xa7", "[\xe8\x82\x89]"=>"\xf0\x9f\x8d\x96", "[\xe3\x81\xaa\xe3\x82\x8b\xe3\x81\xa8]"=>"\xf0\x9f\x8d\xa5",
         
     | 
| 
      
 1719 
     | 
    
         
            +
                  "[\xe3\x82\x84\xe3\x81\x8d\xe3\x81\x84\xe3\x82\x82]"=>"\xf0\x9f\x8d\xa0", "[\xe3\x83\x94\xe3\x82\xb6]"=>"\xf0\x9f\x8d\x95", "[\xe3\x83\x81\xe3\x82\xad\xe3\x83\xb3]"=>"\xf0\x9f\x8d\x97", "[\xe3\x82\xa2\xe3\x82\xa4\xe3\x82\xb9\xe3\x82\xaf\xe3\x83\xaa\xe3\x83\xbc\xe3\x83\xa0]"=>"\xf0\x9f\x8d\xa8", "[\xe3\x83\x89\xe3\x83\xbc\xe3\x83\x8a\xe3\x83\x84]"=>"\xf0\x9f\x8d\xa9",
         
     | 
| 
      
 1720 
     | 
    
         
            +
                  "[\xe3\x82\xaf\xe3\x83\x83\xe3\x82\xad\xe3\x83\xbc]"=>"\xf0\x9f\x8d\xaa", "[\xe3\x83\x81\xe3\x83\xa7\xe3\x82\xb3]"=>"\xf0\x9f\x8d\xab", "[\xe3\x82\xad\xe3\x83\xa3\xe3\x83\xb3\xe3\x83\x87\xe3\x82\xa3]"=>"\xf0\x9f\x8d\xad", "[\xe3\x83\x97\xe3\x83\xaa\xe3\x83\xb3]"=>"\xf0\x9f\x8d\xae", "[\xe3\x83\x8f\xe3\x83\x81\xe3\x83\x9f\xe3\x83\x84]"=>"\xf0\x9f\x8d\xaf",
         
     | 
| 
      
 1721 
     | 
    
         
            +
                  "[\xe3\x82\xa8\xe3\x83\x93\xe3\x83\x95\xe3\x83\xa9\xe3\x82\xa4]"=>"\xf0\x9f\x8d\xa4", "\xee\x81\x83"=>"\xf0\x9f\x8d\xb4", "\xee\x81\x85"=>"\xe2\x98\x95", "\xee\x81\x84"=>"\xf0\x9f\x8d\xb9", "\xee\x81\x87"=>"\xf0\x9f\x8d\xba",
         
     | 
| 
      
 1722 
     | 
    
         
            +
                  "\xee\x8c\xb8"=>"\xf0\x9f\x8d\xb5", "\xee\x8c\x8c"=>"\xf0\x9f\x8d\xbb", "\xee\x88\xb6"=>"\xe2\xa4\xb4", "\xee\x88\xb8"=>"\xe2\xa4\xb5", "\xee\x88\xb7"=>"\xe2\x86\x96",
         
     | 
| 
      
 1723 
     | 
    
         
            +
                  "\xee\x88\xb9"=>"\xe2\x86\x99", "\xe2\x87\x94"=>"\xe2\x86\x94", "\xe2\x86\x91\xe2\x86\x93"=>"\xf0\x9f\x94\x83", "\xee\x88\xb2"=>"\xe2\xac\x86", "\xee\x88\xb3"=>"\xe2\xac\x87",
         
     | 
| 
      
 1724 
     | 
    
         
            +
                  "\xee\x88\xb4"=>"\xe2\x9e\xa1", "\xee\x88\xb5"=>"\xf0\x9f\x94\x99", "\xee\x88\xba"=>"\xe2\x96\xb6", "\xee\x88\xbb"=>"\xe2\x97\x80", "\xee\x88\xbc"=>"\xe2\x8f\xa9",
         
     | 
| 
      
 1725 
     | 
    
         
            +
                  "\xee\x88\xbd"=>"\xe2\x8f\xaa", "\xe2\x96\xb2"=>"\xf0\x9f\x94\xbc", "\xe2\x96\xbc"=>"\xf0\x9f\x94\xbd", "\xee\x8c\xb2"=>"\xe2\xad\x95", "\xee\x8c\xb3"=>"\xe2\x9c\x96",
         
     | 
| 
      
 1726 
     | 
    
         
            +
                  "\xee\x80\xa1"=>"\xe2\x9d\x97", "\xef\xbc\x81\xef\xbc\x9f"=>"\xe2\x81\x89", "\xef\xbc\x81\xef\xbc\x81"=>"\xe2\x80\xbc", "\xee\x80\xa0"=>"\xe2\x9d\x93", "\xee\x8c\xb6"=>"\xe2\x9d\x94",
         
     | 
| 
      
 1727 
     | 
    
         
            +
                  "\xee\x8c\xb7"=>"\xe2\x9d\x95", "\xef\xbd\x9e"=>"\xe2\x9e\xb0", "\xee\x88\x91"=>"\xe2\x9e\xbf", "\xee\x80\xa2"=>"\xe2\x9d\xa4", "\xee\x8c\xa7"=>"\xf0\x9f\x92\x9e",
         
     | 
| 
      
 1728 
     | 
    
         
            +
                  "\xee\x80\xa3"=>"\xf0\x9f\x92\x94", "\xee\x8c\xa8"=>"\xf0\x9f\x92\x97", "\xee\x8c\xa9"=>"\xf0\x9f\x92\x98", "\xee\x8c\xaa"=>"\xf0\x9f\x92\x99", "\xee\x8c\xab"=>"\xf0\x9f\x92\x9a",
         
     | 
| 
      
 1729 
     | 
    
         
            +
                  "\xee\x8c\xac"=>"\xf0\x9f\x92\x9b", "\xee\x8c\xad"=>"\xf0\x9f\x92\x9c", "\xee\x90\xb7"=>"\xf0\x9f\x92\x9d", "\xee\x88\x84"=>"\xf0\x9f\x92\x9f", "\xee\x88\x8c"=>"\xe2\x99\xa5",
         
     | 
| 
      
 1730 
     | 
    
         
            +
                  "\xee\x88\x8e"=>"\xe2\x99\xa0", "\xee\x88\x8d"=>"\xe2\x99\xa6", "\xee\x88\x8f"=>"\xe2\x99\xa3", "\xee\x8c\x8e"=>"\xf0\x9f\x9a\xac", "\xee\x88\x88"=>"\xf0\x9f\x9a\xad",
         
     | 
| 
      
 1731 
     | 
    
         
            +
                  "\xee\x88\x8a"=>"\xe2\x99\xbf", "[\xe6\x97\x97]"=>"\xf0\x9f\x9a\xa9", "\xee\x89\x92"=>"\xe2\x9a\xa0", "\xee\x84\xb6"=>"\xf0\x9f\x9a\xb2", "\xee\x88\x81"=>"\xf0\x9f\x9a\xb6",
         
     | 
| 
      
 1732 
     | 
    
         
            +
                  "\xee\x84\xb8"=>"\xf0\x9f\x9a\xb9", "\xee\x84\xb9"=>"\xf0\x9f\x9a\xba", "\xee\x84\xbf"=>"\xf0\x9f\x9b\x80", "\xee\x85\x91"=>"\xf0\x9f\x9a\xbb", "\xee\x85\x80"=>"\xf0\x9f\x9a\xbd",
         
     | 
| 
      
 1733 
     | 
    
         
            +
                  "\xee\x8c\x89"=>"\xf0\x9f\x9a\xbe", "\xee\x84\xba"=>"\xf0\x9f\x9a\xbc", "[\xe3\x83\x89\xe3\x82\xa2]"=>"\xf0\x9f\x9a\xaa", "[\xe7\xa6\x81\xe6\xad\xa2]"=>"\xf0\x9f\x9a\xab", "[\xe3\x83\x81\xe3\x82\xa7\xe3\x83\x83\xe3\x82\xaf\xe3\x83\x9e\xe3\x83\xbc\xe3\x82\xaf]"=>"\xe2\x9c\x85",
         
     | 
| 
      
 1734 
     | 
    
         
            +
                  "[CL]"=>"\xf0\x9f\x86\x91", "\xee\x88\x94"=>"\xf0\x9f\x86\x92", "[FREE]"=>"\xf0\x9f\x86\x93", "\xee\x88\xa9"=>"\xf0\x9f\x86\x94", "\xee\x88\x92"=>"\xf0\x9f\x86\x95",
         
     | 
| 
      
 1735 
     | 
    
         
            +
                  "[NG]"=>"\xf0\x9f\x86\x96", "\xee\x89\x8d"=>"\xf0\x9f\x86\x97", "[SOS]"=>"\xf0\x9f\x86\x98", "\xee\x88\x93"=>"\xf0\x9f\x86\x99", "\xee\x84\xae"=>"\xf0\x9f\x86\x9a",
         
     | 
| 
      
 1736 
     | 
    
         
            +
                  "\xee\x88\x83"=>"\xf0\x9f\x88\x81", "\xee\x88\xa8"=>"\xf0\x9f\x88\x82", "[\xe7\xa6\x81]"=>"\xf0\x9f\x88\xb2", "\xee\x88\xab"=>"\xf0\x9f\x88\xb3", "[\xe5\x90\x88]"=>"\xf0\x9f\x88\xb4",
         
     | 
| 
      
 1737 
     | 
    
         
            +
                  "\xee\x88\xaa"=>"\xf0\x9f\x88\xb5", "\xee\x88\x95"=>"\xf0\x9f\x88\xb6", "\xee\x88\x96"=>"\xf0\x9f\x88\x9a", "\xee\x88\x97"=>"\xf0\x9f\x88\xb7", "\xee\x88\x98"=>"\xf0\x9f\x88\xb8",
         
     | 
| 
      
 1738 
     | 
    
         
            +
                  "\xee\x88\xa7"=>"\xf0\x9f\x88\xb9", "\xee\x88\xac"=>"\xf0\x9f\x88\xaf", "\xee\x88\xad"=>"\xf0\x9f\x88\xba", "\xee\x8c\x95"=>"\xe3\x8a\x99", "\xee\x8c\x8d"=>"\xe3\x8a\x97",
         
     | 
| 
      
 1739 
     | 
    
         
            +
                  "\xee\x88\xa6"=>"\xf0\x9f\x89\x90", "[\xe5\x8f\xaf]"=>"\xf0\x9f\x89\x91", "[\xef\xbc\x8b]"=>"\xe2\x9e\x95", "[\xef\xbc\x8d]"=>"\xe2\x9e\x96", "[\xc3\xb7]"=>"\xe2\x9e\x97",
         
     | 
| 
      
 1740 
     | 
    
         
            +
                  "\xee\x84\x8f"=>"\xf0\x9f\x92\xa1", "\xee\x8c\xb4"=>"\xf0\x9f\x92\xa2", "\xee\x8c\x91"=>"\xf0\x9f\x92\xa3", "\xee\x84\xbc"=>"\xf0\x9f\x92\xa4", "[\xe3\x83\x89\xe3\x83\xb3\xe3\x83\x83]"=>"\xf0\x9f\x92\xa5",
         
     | 
| 
      
 1741 
     | 
    
         
            +
                  "\xee\x8c\xb1"=>"\xf0\x9f\x92\xa7", "\xee\x8c\xb0"=>"\xf0\x9f\x92\xa8", "\xee\x81\x9a"=>"\xf0\x9f\x92\xa9", "\xee\x85\x8c"=>"\xf0\x9f\x92\xaa", "[\xe3\x83\x95\xe3\x82\xad\xe3\x83\x80\xe3\x82\xb7]"=>"\xf0\x9f\x92\xac",
         
     | 
| 
      
 1742 
     | 
    
         
            +
                  "\xee\x8c\xae"=>"\xe2\x9d\x87", "\xee\x88\x85"=>"\xe2\x9c\xb4", "\xee\x88\x86"=>"\xe2\x9c\xb3", "\xee\x88\x99"=>"\xf0\x9f\x94\xb4", "\xee\x88\x9a"=>"\xe2\x97\xbc",
         
     | 
| 
      
 1743 
     | 
    
         
            +
                  "\xee\x88\x9b"=>"\xf0\x9f\x94\xb9", "\xee\x8c\xaf"=>"\xe2\xad\x90", "[\xe8\x8a\xb1\xe4\xb8\xb8]"=>"\xf0\x9f\x92\xae", "[100\xe7\x82\xb9]"=>"\xf0\x9f\x92\xaf", "\xe2\x86\x90\xe2\x94\x98"=>"\xe2\x86\xa9",
         
     | 
| 
      
 1744 
     | 
    
         
            +
                  "\xe2\x94\x94\xe2\x86\x92"=>"\xe2\x86\xaa", "\xee\x85\x81"=>"\xf0\x9f\x94\x8a", "[\xe9\x9b\xbb\xe6\xb1\xa0]"=>"\xf0\x9f\x94\x8b", "[\xe3\x82\xb3\xe3\x83\xb3\xe3\x82\xbb\xe3\x83\xb3\xe3\x83\x88]"=>"\xf0\x9f\x94\x8c", "\xee\x84\x94"=>"\xf0\x9f\x94\x8e",
         
     | 
| 
      
 1745 
     | 
    
         
            +
                  "\xee\x85\x84"=>"\xf0\x9f\x94\x90", "\xee\x85\x85"=>"\xf0\x9f\x94\x93", "\xee\x80\xbf"=>"\xf0\x9f\x94\x91", "\xee\x8c\xa5"=>"\xf0\x9f\x94\x94", "[\xe3\x83\xa9\xe3\x82\xb8\xe3\x82\xaa\xe3\x83\x9c\xe3\x82\xbf\xe3\x83\xb3]"=>"\xf0\x9f\x94\x98",
         
     | 
| 
      
 1746 
     | 
    
         
            +
                  "[\xe3\x83\x96\xe3\x83\x83\xe3\x82\xaf\xe3\x83\x9e\xe3\x83\xbc\xe3\x82\xaf]"=>"\xf0\x9f\x94\x96", "[\xe3\x83\xaa\xe3\x83\xb3\xe3\x82\xaf]"=>"\xf0\x9f\x94\x97", "[end]"=>"\xf0\x9f\x94\x9a", "[ON]"=>"\xf0\x9f\x94\x9b", "[SOON]"=>"\xf0\x9f\x94\x9c",
         
     | 
| 
      
 1747 
     | 
    
         
            +
                  "\xee\x89\x8c"=>"\xf0\x9f\x94\x9d", "\xee\x80\x90"=>"\xe2\x9c\x8a", "\xee\x80\x91"=>"\xe2\x9c\x8c", "\xee\x80\x8d"=>"\xf0\x9f\x91\x8a", "\xee\x80\x8e"=>"\xf0\x9f\x91\x8d",
         
     | 
| 
      
 1748 
     | 
    
         
            +
                  "\xee\x80\x8f"=>"\xe2\x98\x9d", "\xee\x88\xae"=>"\xf0\x9f\x91\x86", "\xee\x88\xaf"=>"\xf0\x9f\x91\x87", "\xee\x88\xb0"=>"\xf0\x9f\x91\x88", "\xee\x88\xb1"=>"\xf0\x9f\x91\x89",
         
     | 
| 
      
 1749 
     | 
    
         
            +
                  "\xee\x90\x9e"=>"\xf0\x9f\x91\x8b", "\xee\x90\x9f"=>"\xf0\x9f\x91\x8f", "\xee\x90\xa0"=>"\xf0\x9f\x91\x8c", "\xee\x90\xa1"=>"\xf0\x9f\x91\x8e", "\xee\x90\xa2"=>"\xf0\x9f\x91\x90",
         
     | 
| 
      
 1750 
     | 
    
         
            +
                },
         
     | 
| 
      
 1751 
     | 
    
         
            +
                'google_to_unified' => {
         
     | 
| 
      
 1752 
     | 
    
         
            +
                  "\xf3\xbe\x80\x80"=>"\xe2\x98\x80", "\xf3\xbe\x80\x81"=>"\xe2\x98\x81", "\xf3\xbe\x80\x82"=>"\xe2\x98\x94", "\xf3\xbe\x80\x83"=>"\xe2\x9b\x84",
         
     | 
| 
      
 1753 
     | 
    
         
            +
                  "\xf3\xbe\x80\x84"=>"\xe2\x9a\xa1", "\xf3\xbe\x80\x85"=>"\xf0\x9f\x8c\x80", "\xf3\xbe\x80\x86"=>"\xf0\x9f\x8c\x81", "\xf3\xbe\x80\x87"=>"\xf0\x9f\x8c\x82", "\xf3\xbe\x80\x88"=>"\xf0\x9f\x8c\x83",
         
     | 
| 
      
 1754 
     | 
    
         
            +
                  "\xf3\xbe\x80\x89"=>"\xf0\x9f\x8c\x84", "\xf3\xbe\x80\x8a"=>"\xf0\x9f\x8c\x85", "\xf3\xbe\x80\x8b"=>"\xf0\x9f\x8c\x86", "\xf3\xbe\x80\x8c"=>"\xf0\x9f\x8c\x87", "\xf3\xbe\x80\x8d"=>"\xf0\x9f\x8c\x88",
         
     | 
| 
      
 1755 
     | 
    
         
            +
                  "\xf3\xbe\x80\x8e"=>"\xe2\x9d\x84", "\xf3\xbe\x80\x8f"=>"\xe2\x9b\x85", "\xf3\xbe\x80\x90"=>"\xf0\x9f\x8c\x89", "\xf3\xbe\x80\xb8"=>"\xf0\x9f\x8c\x8a", "\xf3\xbe\x80\xba"=>"\xf0\x9f\x8c\x8b",
         
     | 
| 
      
 1756 
     | 
    
         
            +
                  "\xf3\xbe\x80\xbb"=>"\xf0\x9f\x8c\x8c", "\xf3\xbe\x80\xb9"=>"\xf0\x9f\x8c\x8f", "\xf3\xbe\x80\x91"=>"\xf0\x9f\x8c\x91", "\xf3\xbe\x80\x92"=>"\xf0\x9f\x8c\x94", "\xf3\xbe\x80\x93"=>"\xf0\x9f\x8c\x93",
         
     | 
| 
      
 1757 
     | 
    
         
            +
                  "\xf3\xbe\x80\x94"=>"\xf0\x9f\x8c\x99", "\xf3\xbe\x80\x95"=>"\xf0\x9f\x8c\x95", "\xf3\xbe\x80\x96"=>"\xf0\x9f\x8c\x9b", "\xf3\xbe\xad\xa9"=>"\xf0\x9f\x8c\x9f", "\xf3\xbe\xad\xaa"=>"\xf0\x9f\x8c\xa0",
         
     | 
| 
      
 1758 
     | 
    
         
            +
                  "\xf3\xbe\x80\x9e"=>"\xf0\x9f\x95\x90", "\xf3\xbe\x80\x9f"=>"\xf0\x9f\x95\x91", "\xf3\xbe\x80\xa0"=>"\xf0\x9f\x95\x92", "\xf3\xbe\x80\xa1"=>"\xf0\x9f\x95\x93", "\xf3\xbe\x80\xa2"=>"\xf0\x9f\x95\x94",
         
     | 
| 
      
 1759 
     | 
    
         
            +
                  "\xf3\xbe\x80\xa3"=>"\xf0\x9f\x95\x95", "\xf3\xbe\x80\xa4"=>"\xf0\x9f\x95\x96", "\xf3\xbe\x80\xa5"=>"\xf0\x9f\x95\x97", "\xf3\xbe\x80\xa6"=>"\xf0\x9f\x95\x98", "\xf3\xbe\x80\xa7"=>"\xf0\x9f\x95\x99",
         
     | 
| 
      
 1760 
     | 
    
         
            +
                  "\xf3\xbe\x80\xa8"=>"\xf0\x9f\x95\x9a", "\xf3\xbe\x80\xa9"=>"\xf0\x9f\x95\x9b", "\xf3\xbe\x80\x9d"=>"\xe2\x8c\x9a", "\xf3\xbe\x80\x9c"=>"\xe2\x8c\x9b", "\xf3\xbe\x80\xaa"=>"\xe2\x8f\xb0",
         
     | 
| 
      
 1761 
     | 
    
         
            +
                  "\xf3\xbe\x80\x9b"=>"\xe2\x8f\xb3", "\xf3\xbe\x80\xab"=>"\xe2\x99\x88", "\xf3\xbe\x80\xac"=>"\xe2\x99\x89", "\xf3\xbe\x80\xad"=>"\xe2\x99\x8a", "\xf3\xbe\x80\xae"=>"\xe2\x99\x8b",
         
     | 
| 
      
 1762 
     | 
    
         
            +
                  "\xf3\xbe\x80\xaf"=>"\xe2\x99\x8c", "\xf3\xbe\x80\xb0"=>"\xe2\x99\x8d", "\xf3\xbe\x80\xb1"=>"\xe2\x99\x8e", "\xf3\xbe\x80\xb2"=>"\xe2\x99\x8f", "\xf3\xbe\x80\xb3"=>"\xe2\x99\x90",
         
     | 
| 
      
 1763 
     | 
    
         
            +
                  "\xf3\xbe\x80\xb4"=>"\xe2\x99\x91", "\xf3\xbe\x80\xb5"=>"\xe2\x99\x92", "\xf3\xbe\x80\xb6"=>"\xe2\x99\x93", "\xf3\xbe\x80\xb7"=>"\xe2\x9b\x8e", "\xf3\xbe\x80\xbc"=>"\xf0\x9f\x8d\x80",
         
     | 
| 
      
 1764 
     | 
    
         
            +
                  "\xf3\xbe\x80\xbd"=>"\xf0\x9f\x8c\xb7", "\xf3\xbe\x80\xbe"=>"\xf0\x9f\x8c\xb1", "\xf3\xbe\x80\xbf"=>"\xf0\x9f\x8d\x81", "\xf3\xbe\x81\x80"=>"\xf0\x9f\x8c\xb8", "\xf3\xbe\x81\x81"=>"\xf0\x9f\x8c\xb9",
         
     | 
| 
      
 1765 
     | 
    
         
            +
                  "\xf3\xbe\x81\x82"=>"\xf0\x9f\x8d\x82", "\xf3\xbe\x81\x83"=>"\xf0\x9f\x8d\x83", "\xf3\xbe\x81\x85"=>"\xf0\x9f\x8c\xba", "\xf3\xbe\x81\x86"=>"\xf0\x9f\x8c\xbb", "\xf3\xbe\x81\x87"=>"\xf0\x9f\x8c\xb4",
         
     | 
| 
      
 1766 
     | 
    
         
            +
                  "\xf3\xbe\x81\x88"=>"\xf0\x9f\x8c\xb5", "\xf3\xbe\x81\x89"=>"\xf0\x9f\x8c\xbe", "\xf3\xbe\x81\x8a"=>"\xf0\x9f\x8c\xbd", "\xf3\xbe\x81\x8b"=>"\xf0\x9f\x8d\x84", "\xf3\xbe\x81\x8c"=>"\xf0\x9f\x8c\xb0",
         
     | 
| 
      
 1767 
     | 
    
         
            +
                  "\xf3\xbe\x81\x8d"=>"\xf0\x9f\x8c\xbc", "\xf3\xbe\x81\x8e"=>"\xf0\x9f\x8c\xbf", "\xf3\xbe\x81\x8f"=>"\xf0\x9f\x8d\x92", "\xf3\xbe\x81\x90"=>"\xf0\x9f\x8d\x8c", "\xf3\xbe\x81\x91"=>"\xf0\x9f\x8d\x8e",
         
     | 
| 
      
 1768 
     | 
    
         
            +
                  "\xf3\xbe\x81\x92"=>"\xf0\x9f\x8d\x8a", "\xf3\xbe\x81\x93"=>"\xf0\x9f\x8d\x93", "\xf3\xbe\x81\x94"=>"\xf0\x9f\x8d\x89", "\xf3\xbe\x81\x95"=>"\xf0\x9f\x8d\x85", "\xf3\xbe\x81\x96"=>"\xf0\x9f\x8d\x86",
         
     | 
| 
      
 1769 
     | 
    
         
            +
                  "\xf3\xbe\x81\x97"=>"\xf0\x9f\x8d\x88", "\xf3\xbe\x81\x98"=>"\xf0\x9f\x8d\x8d", "\xf3\xbe\x81\x99"=>"\xf0\x9f\x8d\x87", "\xf3\xbe\x81\x9a"=>"\xf0\x9f\x8d\x91", "\xf3\xbe\x81\x9b"=>"\xf0\x9f\x8d\x8f",
         
     | 
| 
      
 1770 
     | 
    
         
            +
                  "\xf3\xbe\x86\x90"=>"\xf0\x9f\x91\x80", "\xf3\xbe\x86\x91"=>"\xf0\x9f\x91\x82", "\xf3\xbe\x86\x92"=>"\xf0\x9f\x91\x83", "\xf3\xbe\x86\x93"=>"\xf0\x9f\x91\x84", "\xf3\xbe\x86\x94"=>"\xf0\x9f\x91\x85",
         
     | 
| 
      
 1771 
     | 
    
         
            +
                  "\xf3\xbe\x86\x95"=>"\xf0\x9f\x92\x84", "\xf3\xbe\x86\x96"=>"\xf0\x9f\x92\x85", "\xf3\xbe\x86\x97"=>"\xf0\x9f\x92\x86", "\xf3\xbe\x86\x98"=>"\xf0\x9f\x92\x87", "\xf3\xbe\x86\x99"=>"\xf0\x9f\x92\x88",
         
     | 
| 
      
 1772 
     | 
    
         
            +
                  "\xf3\xbe\x86\x9a"=>"\xf0\x9f\x91\xa4", "\xf3\xbe\x86\x9b"=>"\xf0\x9f\x91\xa6", "\xf3\xbe\x86\x9c"=>"\xf0\x9f\x91\xa7", "\xf3\xbe\x86\x9d"=>"\xf0\x9f\x91\xa8", "\xf3\xbe\x86\x9e"=>"\xf0\x9f\x91\xa9",
         
     | 
| 
      
 1773 
     | 
    
         
            +
                  "\xf3\xbe\x86\x9f"=>"\xf0\x9f\x91\xaa", "\xf3\xbe\x86\xa0"=>"\xf0\x9f\x91\xab", "\xf3\xbe\x86\xa1"=>"\xf0\x9f\x91\xae", "\xf3\xbe\x86\xa2"=>"\xf0\x9f\x91\xaf", "\xf3\xbe\x86\xa3"=>"\xf0\x9f\x91\xb0",
         
     | 
| 
      
 1774 
     | 
    
         
            +
                  "\xf3\xbe\x86\xa4"=>"\xf0\x9f\x91\xb1", "\xf3\xbe\x86\xa5"=>"\xf0\x9f\x91\xb2", "\xf3\xbe\x86\xa6"=>"\xf0\x9f\x91\xb3", "\xf3\xbe\x86\xa7"=>"\xf0\x9f\x91\xb4", "\xf3\xbe\x86\xa8"=>"\xf0\x9f\x91\xb5",
         
     | 
| 
      
 1775 
     | 
    
         
            +
                  "\xf3\xbe\x86\xa9"=>"\xf0\x9f\x91\xb6", "\xf3\xbe\x86\xaa"=>"\xf0\x9f\x91\xb7", "\xf3\xbe\x86\xab"=>"\xf0\x9f\x91\xb8", "\xf3\xbe\x86\xac"=>"\xf0\x9f\x91\xb9", "\xf3\xbe\x86\xad"=>"\xf0\x9f\x91\xba",
         
     | 
| 
      
 1776 
     | 
    
         
            +
                  "\xf3\xbe\x86\xae"=>"\xf0\x9f\x91\xbb", "\xf3\xbe\x86\xaf"=>"\xf0\x9f\x91\xbc", "\xf3\xbe\x86\xb0"=>"\xf0\x9f\x91\xbd", "\xf3\xbe\x86\xb1"=>"\xf0\x9f\x91\xbe", "\xf3\xbe\x86\xb2"=>"\xf0\x9f\x91\xbf",
         
     | 
| 
      
 1777 
     | 
    
         
            +
                  "\xf3\xbe\x86\xb3"=>"\xf0\x9f\x92\x80", "\xf3\xbe\x86\xb4"=>"\xf0\x9f\x92\x81", "\xf3\xbe\x86\xb5"=>"\xf0\x9f\x92\x82", "\xf3\xbe\x86\xb6"=>"\xf0\x9f\x92\x83", "\xf3\xbe\x86\xb9"=>"\xf0\x9f\x90\x8c",
         
     | 
| 
      
 1778 
     | 
    
         
            +
                  "\xf3\xbe\x87\x93"=>"\xf0\x9f\x90\x8d", "\xf3\xbe\x9f\x9c"=>"\xf0\x9f\x90\x8e", "\xf3\xbe\x87\x94"=>"\xf0\x9f\x90\x94", "\xf3\xbe\x87\x95"=>"\xf0\x9f\x90\x97", "\xf3\xbe\x87\x96"=>"\xf0\x9f\x90\xab",
         
     | 
| 
      
 1779 
     | 
    
         
            +
                  "\xf3\xbe\x87\x8c"=>"\xf0\x9f\x90\x98", "\xf3\xbe\x87\x8d"=>"\xf0\x9f\x90\xa8", "\xf3\xbe\x87\x8e"=>"\xf0\x9f\x90\x92", "\xf3\xbe\x87\x8f"=>"\xf0\x9f\x90\x91", "\xf3\xbe\x87\x85"=>"\xf0\x9f\x90\x99",
         
     | 
| 
      
 1780 
     | 
    
         
            +
                  "\xf3\xbe\x87\x86"=>"\xf0\x9f\x90\x9a", "\xf3\xbe\x87\x8b"=>"\xf0\x9f\x90\x9b", "\xf3\xbe\x87\x9a"=>"\xf0\x9f\x90\x9c", "\xf3\xbe\x87\xa1"=>"\xf0\x9f\x90\x9d", "\xf3\xbe\x87\xa2"=>"\xf0\x9f\x90\x9e",
         
     | 
| 
      
 1781 
     | 
    
         
            +
                  "\xf3\xbe\x87\x89"=>"\xf0\x9f\x90\xa0", "\xf3\xbe\x87\x99"=>"\xf0\x9f\x90\xa1", "\xf3\xbe\x87\x9c"=>"\xf0\x9f\x90\xa2", "\xf3\xbe\x86\xba"=>"\xf0\x9f\x90\xa4", "\xf3\xbe\x86\xbb"=>"\xf0\x9f\x90\xa5",
         
     | 
| 
      
 1782 
     | 
    
         
            +
                  "\xf3\xbe\x87\x88"=>"\xf0\x9f\x90\xa6", "\xf3\xbe\x87\x9d"=>"\xf0\x9f\x90\xa3", "\xf3\xbe\x86\xbc"=>"\xf0\x9f\x90\xa7", "\xf3\xbe\x87\x98"=>"\xf0\x9f\x90\xa9", "\xf3\xbe\x86\xbd"=>"\xf0\x9f\x90\x9f",
         
     | 
| 
      
 1783 
     | 
    
         
            +
                  "\xf3\xbe\x87\x87"=>"\xf0\x9f\x90\xac", "\xf3\xbe\x87\x82"=>"\xf0\x9f\x90\xad", "\xf3\xbe\x87\x80"=>"\xf0\x9f\x90\xaf", "\xf3\xbe\x86\xb8"=>"\xf0\x9f\x90\xb1", "\xf3\xbe\x87\x83"=>"\xf0\x9f\x90\xb3",
         
     | 
| 
      
 1784 
     | 
    
         
            +
                  "\xf3\xbe\x86\xbe"=>"\xf0\x9f\x90\xb4", "\xf3\xbe\x87\x84"=>"\xf0\x9f\x90\xb5", "\xf3\xbe\x86\xb7"=>"\xf0\x9f\x90\xb6", "\xf3\xbe\x86\xbf"=>"\xf0\x9f\x90\xb7", "\xf3\xbe\x87\x81"=>"\xf0\x9f\x90\xbb",
         
     | 
| 
      
 1785 
     | 
    
         
            +
                  "\xf3\xbe\x87\x8a"=>"\xf0\x9f\x90\xb9", "\xf3\xbe\x87\x90"=>"\xf0\x9f\x90\xba", "\xf3\xbe\x87\x91"=>"\xf0\x9f\x90\xae", "\xf3\xbe\x87\x92"=>"\xf0\x9f\x90\xb0", "\xf3\xbe\x87\x97"=>"\xf0\x9f\x90\xb8",
         
     | 
| 
      
 1786 
     | 
    
         
            +
                  "\xf3\xbe\x87\x9b"=>"\xf0\x9f\x90\xbe", "\xf3\xbe\x87\x9e"=>"\xf0\x9f\x90\xb2", "\xf3\xbe\x87\x9f"=>"\xf0\x9f\x90\xbc", "\xf3\xbe\x87\xa0"=>"\xf0\x9f\x90\xbd", "\xf3\xbe\x8c\xa0"=>"\xf0\x9f\x98\xa0",
         
     | 
| 
      
 1787 
     | 
    
         
            +
                  "\xf3\xbe\x8c\xa1"=>"\xf0\x9f\x98\xa9", "\xf3\xbe\x8c\xa2"=>"\xf0\x9f\x98\xb2", "\xf3\xbe\x8c\xa3"=>"\xf0\x9f\x98\x9e", "\xf3\xbe\x8c\xa4"=>"\xf0\x9f\x98\xb5", "\xf3\xbe\x8c\xa5"=>"\xf0\x9f\x98\xb0",
         
     | 
| 
      
 1788 
     | 
    
         
            +
                  "\xf3\xbe\x8c\xa6"=>"\xf0\x9f\x98\x92", "\xf3\xbe\x8c\xa7"=>"\xf0\x9f\x98\x8d", "\xf3\xbe\x8c\xa8"=>"\xf0\x9f\x98\xa4", "\xf3\xbe\x8c\xa9"=>"\xf0\x9f\x98\x9c", "\xf3\xbe\x8c\xaa"=>"\xf0\x9f\x98\x9d",
         
     | 
| 
      
 1789 
     | 
    
         
            +
                  "\xf3\xbe\x8c\xab"=>"\xf0\x9f\x98\x8b", "\xf3\xbe\x8c\xac"=>"\xf0\x9f\x98\x98", "\xf3\xbe\x8c\xad"=>"\xf0\x9f\x98\x9a", "\xf3\xbe\x8c\xae"=>"\xf0\x9f\x98\xb7", "\xf3\xbe\x8c\xaf"=>"\xf0\x9f\x98\xb3",
         
     | 
| 
      
 1790 
     | 
    
         
            +
                  "\xf3\xbe\x8c\xb0"=>"\xf0\x9f\x98\x83", "\xf3\xbe\x8c\xb1"=>"\xf0\x9f\x98\x85", "\xf3\xbe\x8c\xb2"=>"\xf0\x9f\x98\x86", "\xf3\xbe\x8c\xb3"=>"\xf0\x9f\x98\x81", "\xf3\xbe\x8c\xb4"=>"\xf0\x9f\x98\x82",
         
     | 
| 
      
 1791 
     | 
    
         
            +
                  "\xf3\xbe\x8c\xb5"=>"\xf0\x9f\x98\x8a", "\xf3\xbe\x8c\xb6"=>"\xe2\x98\xba", "\xf3\xbe\x8c\xb8"=>"\xf0\x9f\x98\x84", "\xf3\xbe\x8c\xb9"=>"\xf0\x9f\x98\xa2", "\xf3\xbe\x8c\xba"=>"\xf0\x9f\x98\xad",
         
     | 
| 
      
 1792 
     | 
    
         
            +
                  "\xf3\xbe\x8c\xbb"=>"\xf0\x9f\x98\xa8", "\xf3\xbe\x8c\xbc"=>"\xf0\x9f\x98\xa3", "\xf3\xbe\x8c\xbd"=>"\xf0\x9f\x98\xa1", "\xf3\xbe\x8c\xbe"=>"\xf0\x9f\x98\x8c", "\xf3\xbe\x8c\xbf"=>"\xf0\x9f\x98\x96",
         
     | 
| 
      
 1793 
     | 
    
         
            +
                  "\xf3\xbe\x8d\x80"=>"\xf0\x9f\x98\x94", "\xf3\xbe\x8d\x81"=>"\xf0\x9f\x98\xb1", "\xf3\xbe\x8d\x82"=>"\xf0\x9f\x98\xaa", "\xf3\xbe\x8d\x83"=>"\xf0\x9f\x98\x8f", "\xf3\xbe\x8d\x84"=>"\xf0\x9f\x98\x93",
         
     | 
| 
      
 1794 
     | 
    
         
            +
                  "\xf3\xbe\x8d\x85"=>"\xf0\x9f\x98\xa5", "\xf3\xbe\x8d\x86"=>"\xf0\x9f\x98\xab", "\xf3\xbe\x8d\x87"=>"\xf0\x9f\x98\x89", "\xf3\xbe\x8d\x88"=>"\xf0\x9f\x98\xba", "\xf3\xbe\x8d\x89"=>"\xf0\x9f\x98\xb8",
         
     | 
| 
      
 1795 
     | 
    
         
            +
                  "\xf3\xbe\x8d\x8a"=>"\xf0\x9f\x98\xb9", "\xf3\xbe\x8d\x8b"=>"\xf0\x9f\x98\xbd", "\xf3\xbe\x8d\x8c"=>"\xf0\x9f\x98\xbb", "\xf3\xbe\x8d\x8d"=>"\xf0\x9f\x98\xbf", "\xf3\xbe\x8d\x8e"=>"\xf0\x9f\x98\xbe",
         
     | 
| 
      
 1796 
     | 
    
         
            +
                  "\xf3\xbe\x8d\x8f"=>"\xf0\x9f\x98\xbc", "\xf3\xbe\x8d\x90"=>"\xf0\x9f\x99\x80", "\xf3\xbe\x8d\x91"=>"\xf0\x9f\x99\x85", "\xf3\xbe\x8d\x92"=>"\xf0\x9f\x99\x86", "\xf3\xbe\x8d\x93"=>"\xf0\x9f\x99\x87",
         
     | 
| 
      
 1797 
     | 
    
         
            +
                  "\xf3\xbe\x8d\x94"=>"\xf0\x9f\x99\x88", "\xf3\xbe\x8d\x95"=>"\xf0\x9f\x99\x8a", "\xf3\xbe\x8d\x96"=>"\xf0\x9f\x99\x89", "\xf3\xbe\x8d\x97"=>"\xf0\x9f\x99\x8b", "\xf3\xbe\x8d\x98"=>"\xf0\x9f\x99\x8c",
         
     | 
| 
      
 1798 
     | 
    
         
            +
                  "\xf3\xbe\x8d\x99"=>"\xf0\x9f\x99\x8d", "\xf3\xbe\x8d\x9a"=>"\xf0\x9f\x99\x8e", "\xf3\xbe\x8d\x9b"=>"\xf0\x9f\x99\x8f", "\xf3\xbe\x92\xb0"=>"\xf0\x9f\x8f\xa0", "\xf3\xbe\x92\xb1"=>"\xf0\x9f\x8f\xa1",
         
     | 
| 
      
 1799 
     | 
    
         
            +
                  "\xf3\xbe\x92\xb2"=>"\xf0\x9f\x8f\xa2", "\xf3\xbe\x92\xb3"=>"\xf0\x9f\x8f\xa3", "\xf3\xbe\x92\xb4"=>"\xf0\x9f\x8f\xa5", "\xf3\xbe\x92\xb5"=>"\xf0\x9f\x8f\xa6", "\xf3\xbe\x92\xb6"=>"\xf0\x9f\x8f\xa7",
         
     | 
| 
      
 1800 
     | 
    
         
            +
                  "\xf3\xbe\x92\xb7"=>"\xf0\x9f\x8f\xa8", "\xf3\xbe\x92\xb8"=>"\xf0\x9f\x8f\xa9", "\xf3\xbe\x92\xb9"=>"\xf0\x9f\x8f\xaa", "\xf3\xbe\x92\xba"=>"\xf0\x9f\x8f\xab", "\xf3\xbe\x92\xbb"=>"\xe2\x9b\xaa",
         
     | 
| 
      
 1801 
     | 
    
         
            +
                  "\xf3\xbe\x92\xbc"=>"\xe2\x9b\xb2", "\xf3\xbe\x92\xbd"=>"\xf0\x9f\x8f\xac", "\xf3\xbe\x92\xbe"=>"\xf0\x9f\x8f\xaf", "\xf3\xbe\x92\xbf"=>"\xf0\x9f\x8f\xb0", "\xf3\xbe\x93\x80"=>"\xf0\x9f\x8f\xad",
         
     | 
| 
      
 1802 
     | 
    
         
            +
                  "\xf3\xbe\x93\x81"=>"\xe2\x9a\x93", "\xf3\xbe\x93\x82"=>"\xf0\x9f\x8f\xae", "\xf3\xbe\x93\x83"=>"\xf0\x9f\x97\xbb", "\xf3\xbe\x93\x84"=>"\xf0\x9f\x97\xbc", "\xf3\xbe\x93\x86"=>"\xf0\x9f\x97\xbd",
         
     | 
| 
      
 1803 
     | 
    
         
            +
                  "\xf3\xbe\x93\x87"=>"\xf0\x9f\x97\xbe", "\xf3\xbe\x93\x88"=>"\xf0\x9f\x97\xbf", "\xf3\xbe\x93\x8c"=>"\xf0\x9f\x91\x9e", "\xf3\xbe\x93\x8d"=>"\xf0\x9f\x91\x9f", "\xf3\xbe\x93\x96"=>"\xf0\x9f\x91\xa0",
         
     | 
| 
      
 1804 
     | 
    
         
            +
                  "\xf3\xbe\x93\x97"=>"\xf0\x9f\x91\xa1", "\xf3\xbe\x93\x98"=>"\xf0\x9f\x91\xa2", "\xf3\xbe\x95\x93"=>"\xf0\x9f\x91\xa3", "\xf3\xbe\x93\x8e"=>"\xf0\x9f\x91\x93", "\xf3\xbe\x93\x8f"=>"\xf0\x9f\x91\x95",
         
     | 
| 
      
 1805 
     | 
    
         
            +
                  "\xf3\xbe\x93\x90"=>"\xf0\x9f\x91\x96", "\xf3\xbe\x93\x91"=>"\xf0\x9f\x91\x91", "\xf3\xbe\x93\x93"=>"\xf0\x9f\x91\x94", "\xf3\xbe\x93\x94"=>"\xf0\x9f\x91\x92", "\xf3\xbe\x93\x95"=>"\xf0\x9f\x91\x97",
         
     | 
| 
      
 1806 
     | 
    
         
            +
                  "\xf3\xbe\x93\x99"=>"\xf0\x9f\x91\x98", "\xf3\xbe\x93\x9a"=>"\xf0\x9f\x91\x99", "\xf3\xbe\x93\x9b"=>"\xf0\x9f\x91\x9a", "\xf3\xbe\x93\x9c"=>"\xf0\x9f\x91\x9b", "\xf3\xbe\x93\xb0"=>"\xf0\x9f\x91\x9c",
         
     | 
| 
      
 1807 
     | 
    
         
            +
                  "\xf3\xbe\x93\xb1"=>"\xf0\x9f\x91\x9d", "\xf3\xbe\x93\x9d"=>"\xf0\x9f\x92\xb0", "\xf3\xbe\x93\x9e"=>"\xf0\x9f\x92\xb1", "\xf3\xbe\x93\x9f"=>"\xf0\x9f\x92\xb9", "\xf3\xbe\x93\xa0"=>"\xf0\x9f\x92\xb2",
         
     | 
| 
      
 1808 
     | 
    
         
            +
                  "\xf3\xbe\x93\xa1"=>"\xf0\x9f\x92\xb3", "\xf3\xbe\x93\xa2"=>"\xf0\x9f\x92\xb4", "\xf3\xbe\x93\xa3"=>"\xf0\x9f\x92\xb5", "\xf3\xbe\x93\xa4"=>"\xf0\x9f\x92\xb8", "\xf3\xbe\x93\xad"=>"\xf0\x9f\x87\xa8\xf0\x9f\x87\xb3",
         
     | 
| 
      
 1809 
     | 
    
         
            +
                  "\xf3\xbe\x93\xa8"=>"\xf0\x9f\x87\xa9\xf0\x9f\x87\xaa", "\xf3\xbe\x93\xab"=>"\xf0\x9f\x87\xaa\xf0\x9f\x87\xb8", "\xf3\xbe\x93\xa7"=>"\xf0\x9f\x87\xab\xf0\x9f\x87\xb7", "\xf3\xbe\x93\xaa"=>"\xf0\x9f\x87\xac\xf0\x9f\x87\xa7", "\xf3\xbe\x93\xa9"=>"\xf0\x9f\x87\xae\xf0\x9f\x87\xb9",
         
     | 
| 
      
 1810 
     | 
    
         
            +
                  "\xf3\xbe\x93\xa5"=>"\xf0\x9f\x87\xaf\xf0\x9f\x87\xb5", "\xf3\xbe\x93\xae"=>"\xf0\x9f\x87\xb0\xf0\x9f\x87\xb7", "\xf3\xbe\x93\xac"=>"\xf0\x9f\x87\xb7\xf0\x9f\x87\xba", "\xf3\xbe\x93\xa6"=>"\xf0\x9f\x87\xba\xf0\x9f\x87\xb8", "\xf3\xbe\x93\xb6"=>"\xf0\x9f\x94\xa5",
         
     | 
| 
      
 1811 
     | 
    
         
            +
                  "\xf3\xbe\x93\xbb"=>"\xf0\x9f\x94\xa6", "\xf3\xbe\x93\x89"=>"\xf0\x9f\x94\xa7", "\xf3\xbe\x93\x8a"=>"\xf0\x9f\x94\xa8", "\xf3\xbe\x93\x8b"=>"\xf0\x9f\x94\xa9", "\xf3\xbe\x93\xba"=>"\xf0\x9f\x94\xaa",
         
     | 
| 
      
 1812 
     | 
    
         
            +
                  "\xf3\xbe\x93\xb5"=>"\xf0\x9f\x94\xab", "\xf3\xbe\x93\xb7"=>"\xf0\x9f\x94\xae", "\xf3\xbe\x93\xb8"=>"\xf0\x9f\x94\xaf", "\xf3\xbe\x81\x84"=>"\xf0\x9f\x94\xb0", "\xf3\xbe\x93\x92"=>"\xf0\x9f\x94\xb1",
         
     | 
| 
      
 1813 
     | 
    
         
            +
                  "\xf3\xbe\x94\x89"=>"\xf0\x9f\x92\x89", "\xf3\xbe\x94\x8a"=>"\xf0\x9f\x92\x8a", "\xf3\xbe\x94\x8b"=>"\xf0\x9f\x85\xb0", "\xf3\xbe\x94\x8c"=>"\xf0\x9f\x85\xb1", "\xf3\xbe\x94\x8d"=>"\xf0\x9f\x86\x8e",
         
     | 
| 
      
 1814 
     | 
    
         
            +
                  "\xf3\xbe\x94\x8e"=>"\xf0\x9f\x85\xbe", "\xf3\xbe\x94\x8f"=>"\xf0\x9f\x8e\x80", "\xf3\xbe\x94\x90"=>"\xf0\x9f\x8e\x81", "\xf3\xbe\x94\x91"=>"\xf0\x9f\x8e\x82", "\xf3\xbe\x94\x92"=>"\xf0\x9f\x8e\x84",
         
     | 
| 
      
 1815 
     | 
    
         
            +
                  "\xf3\xbe\x94\x93"=>"\xf0\x9f\x8e\x85", "\xf3\xbe\x94\x94"=>"\xf0\x9f\x8e\x8c", "\xf3\xbe\x94\x95"=>"\xf0\x9f\x8e\x86", "\xf3\xbe\x94\x96"=>"\xf0\x9f\x8e\x88", "\xf3\xbe\x94\x97"=>"\xf0\x9f\x8e\x89",
         
     | 
| 
      
 1816 
     | 
    
         
            +
                  "\xf3\xbe\x94\x98"=>"\xf0\x9f\x8e\x8d", "\xf3\xbe\x94\x99"=>"\xf0\x9f\x8e\x8e", "\xf3\xbe\x94\x9a"=>"\xf0\x9f\x8e\x93", "\xf3\xbe\x94\x9b"=>"\xf0\x9f\x8e\x92", "\xf3\xbe\x94\x9c"=>"\xf0\x9f\x8e\x8f",
         
     | 
| 
      
 1817 
     | 
    
         
            +
                  "\xf3\xbe\x94\x9d"=>"\xf0\x9f\x8e\x87", "\xf3\xbe\x94\x9e"=>"\xf0\x9f\x8e\x90", "\xf3\xbe\x94\x9f"=>"\xf0\x9f\x8e\x83", "\xf3\xbe\x94\xa0"=>"\xf0\x9f\x8e\x8a", "\xf3\xbe\x94\xa1"=>"\xf0\x9f\x8e\x8b",
         
     | 
| 
      
 1818 
     | 
    
         
            +
                  "\xf3\xbe\x80\x97"=>"\xf0\x9f\x8e\x91", "\xf3\xbe\x94\xa2"=>"\xf0\x9f\x93\x9f", "\xf3\xbe\x94\xa3"=>"\xe2\x98\x8e", "\xf3\xbe\x94\xa4"=>"\xf0\x9f\x93\x9e", "\xf3\xbe\x94\xa5"=>"\xf0\x9f\x93\xb1",
         
     | 
| 
      
 1819 
     | 
    
         
            +
                  "\xf3\xbe\x94\xa6"=>"\xf0\x9f\x93\xb2", "\xf3\xbe\x94\xa7"=>"\xf0\x9f\x93\x9d", "\xf3\xbe\x94\xa8"=>"\xf0\x9f\x93\xa0", "\xf3\xbe\x94\xa9"=>"\xe2\x9c\x89", "\xf3\xbe\x94\xaa"=>"\xf0\x9f\x93\xa8",
         
     | 
| 
      
 1820 
     | 
    
         
            +
                  "\xf3\xbe\x94\xab"=>"\xf0\x9f\x93\xa9", "\xf3\xbe\x94\xac"=>"\xf0\x9f\x93\xaa", "\xf3\xbe\x94\xad"=>"\xf0\x9f\x93\xab", "\xf3\xbe\x94\xae"=>"\xf0\x9f\x93\xae", "\xf3\xbe\xa0\xa2"=>"\xf0\x9f\x93\xb0",
         
     | 
| 
      
 1821 
     | 
    
         
            +
                  "\xf3\xbe\x94\xaf"=>"\xf0\x9f\x93\xa2", "\xf3\xbe\x94\xb0"=>"\xf0\x9f\x93\xa3", "\xf3\xbe\x94\xb1"=>"\xf0\x9f\x93\xa1", "\xf3\xbe\x94\xb3"=>"\xf0\x9f\x93\xa4", "\xf3\xbe\x94\xb4"=>"\xf0\x9f\x93\xa5",
         
     | 
| 
      
 1822 
     | 
    
         
            +
                  "\xf3\xbe\x94\xb5"=>"\xf0\x9f\x93\xa6", "\xf3\xbe\xae\x92"=>"\xf0\x9f\x93\xa7", "\xf3\xbe\xad\xbc"=>"\xf0\x9f\x94\xa0", "\xf3\xbe\xad\xbd"=>"\xf0\x9f\x94\xa1", "\xf3\xbe\xad\xbe"=>"\xf0\x9f\x94\xa2",
         
     | 
| 
      
 1823 
     | 
    
         
            +
                  "\xf3\xbe\xad\xbf"=>"\xf0\x9f\x94\xa3", "\xf3\xbe\xae\x80"=>"\xf0\x9f\x94\xa4", "\xf3\xbe\x94\xb6"=>"\xe2\x9c\x92", "\xf3\xbe\x94\xb7"=>"\xf0\x9f\x92\xba", "\xf3\xbe\x94\xb8"=>"\xf0\x9f\x92\xbb",
         
     | 
| 
      
 1824 
     | 
    
         
            +
                  "\xf3\xbe\x94\xb9"=>"\xe2\x9c\x8f", "\xf3\xbe\x94\xba"=>"\xf0\x9f\x93\x8e", "\xf3\xbe\x94\xbb"=>"\xf0\x9f\x92\xbc", "\xf3\xbe\x94\xbc"=>"\xf0\x9f\x92\xbd", "\xf3\xbe\x94\xbd"=>"\xf0\x9f\x92\xbe",
         
     | 
| 
      
 1825 
     | 
    
         
            +
                  "\xf3\xbe\xa0\x9d"=>"\xf0\x9f\x92\xbf", "\xf3\xbe\xa0\x9e"=>"\xf0\x9f\x93\x80", "\xf3\xbe\x94\xbe"=>"\xe2\x9c\x82", "\xf3\xbe\x94\xbf"=>"\xf0\x9f\x93\x8d", "\xf3\xbe\x95\x80"=>"\xf0\x9f\x93\x83",
         
     | 
| 
      
 1826 
     | 
    
         
            +
                  "\xf3\xbe\x95\x81"=>"\xf0\x9f\x93\x84", "\xf3\xbe\x95\x82"=>"\xf0\x9f\x93\x85", "\xf3\xbe\x95\x83"=>"\xf0\x9f\x93\x81", "\xf3\xbe\x95\x84"=>"\xf0\x9f\x93\x82", "\xf3\xbe\x95\x85"=>"\xf0\x9f\x93\x93",
         
     | 
| 
      
 1827 
     | 
    
         
            +
                  "\xf3\xbe\x95\x86"=>"\xf0\x9f\x93\x96", "\xf3\xbe\x95\x87"=>"\xf0\x9f\x93\x94", "\xf3\xbe\x94\x82"=>"\xf0\x9f\x93\x95", "\xf3\xbe\x93\xbf"=>"\xf0\x9f\x93\x97", "\xf3\xbe\x94\x80"=>"\xf0\x9f\x93\x98",
         
     | 
| 
      
 1828 
     | 
    
         
            +
                  "\xf3\xbe\x94\x81"=>"\xf0\x9f\x93\x99", "\xf3\xbe\x94\x83"=>"\xf0\x9f\x93\x9a", "\xf3\xbe\x94\x84"=>"\xf0\x9f\x93\x9b", "\xf3\xbe\x93\xbd"=>"\xf0\x9f\x93\x9c", "\xf3\xbe\x95\x88"=>"\xf0\x9f\x93\x8b",
         
     | 
| 
      
 1829 
     | 
    
         
            +
                  "\xf3\xbe\x95\x89"=>"\xf0\x9f\x93\x86", "\xf3\xbe\x95\x8a"=>"\xf0\x9f\x93\x8a", "\xf3\xbe\x95\x8b"=>"\xf0\x9f\x93\x88", "\xf3\xbe\x95\x8c"=>"\xf0\x9f\x93\x89", "\xf3\xbe\x95\x8d"=>"\xf0\x9f\x93\x87",
         
     | 
| 
      
 1830 
     | 
    
         
            +
                  "\xf3\xbe\x95\x8e"=>"\xf0\x9f\x93\x8c", "\xf3\xbe\x95\x8f"=>"\xf0\x9f\x93\x92", "\xf3\xbe\x95\x90"=>"\xf0\x9f\x93\x8f", "\xf3\xbe\x95\x91"=>"\xf0\x9f\x93\x90", "\xf3\xbe\x95\x92"=>"\xf0\x9f\x93\x91",
         
     | 
| 
      
 1831 
     | 
    
         
            +
                  "\xf3\xbe\x9f\x90"=>"\xf0\x9f\x8e\xbd", "\xf3\xbe\x9f\x91"=>"\xe2\x9a\xbe", "\xf3\xbe\x9f\x92"=>"\xe2\x9b\xb3", "\xf3\xbe\x9f\x93"=>"\xf0\x9f\x8e\xbe", "\xf3\xbe\x9f\x94"=>"\xe2\x9a\xbd",
         
     | 
| 
      
 1832 
     | 
    
         
            +
                  "\xf3\xbe\x9f\x95"=>"\xf0\x9f\x8e\xbf", "\xf3\xbe\x9f\x96"=>"\xf0\x9f\x8f\x80", "\xf3\xbe\x9f\x97"=>"\xf0\x9f\x8f\x81", "\xf3\xbe\x9f\x98"=>"\xf0\x9f\x8f\x82", "\xf3\xbe\x9f\x99"=>"\xf0\x9f\x8f\x83",
         
     | 
| 
      
 1833 
     | 
    
         
            +
                  "\xf3\xbe\x9f\x9a"=>"\xf0\x9f\x8f\x84", "\xf3\xbe\x9f\x9b"=>"\xf0\x9f\x8f\x86", "\xf3\xbe\x9f\x9d"=>"\xf0\x9f\x8f\x88", "\xf3\xbe\x9f\x9e"=>"\xf0\x9f\x8f\x8a", "\xf3\xbe\x9f\x9f"=>"\xf0\x9f\x9a\x83",
         
     | 
| 
      
 1834 
     | 
    
         
            +
                  "\xf3\xbe\x9f\xa0"=>"\xf0\x9f\x9a\x87", "\xf3\xbe\x9f\xa1"=>"\xe2\x93\x82", "\xf3\xbe\x9f\xa2"=>"\xf0\x9f\x9a\x84", "\xf3\xbe\x9f\xa3"=>"\xf0\x9f\x9a\x85", "\xf3\xbe\x9f\xa4"=>"\xf0\x9f\x9a\x97",
         
     | 
| 
      
 1835 
     | 
    
         
            +
                  "\xf3\xbe\x9f\xa5"=>"\xf0\x9f\x9a\x99", "\xf3\xbe\x9f\xa6"=>"\xf0\x9f\x9a\x8c", "\xf3\xbe\x9f\xa7"=>"\xf0\x9f\x9a\x8f", "\xf3\xbe\x9f\xa8"=>"\xf0\x9f\x9a\xa2", "\xf3\xbe\x9f\xa9"=>"\xe2\x9c\x88",
         
     | 
| 
      
 1836 
     | 
    
         
            +
                  "\xf3\xbe\x9f\xaa"=>"\xe2\x9b\xb5", "\xf3\xbe\x9f\xac"=>"\xf0\x9f\x9a\x89", "\xf3\xbe\x9f\xad"=>"\xf0\x9f\x9a\x80", "\xf3\xbe\x9f\xae"=>"\xf0\x9f\x9a\xa4", "\xf3\xbe\x9f\xaf"=>"\xf0\x9f\x9a\x95",
         
     | 
| 
      
 1837 
     | 
    
         
            +
                  "\xf3\xbe\x9f\xb1"=>"\xf0\x9f\x9a\x9a", "\xf3\xbe\x9f\xb2"=>"\xf0\x9f\x9a\x92", "\xf3\xbe\x9f\xb3"=>"\xf0\x9f\x9a\x91", "\xf3\xbe\x9f\xb4"=>"\xf0\x9f\x9a\x93", "\xf3\xbe\x9f\xb5"=>"\xe2\x9b\xbd",
         
     | 
| 
      
 1838 
     | 
    
         
            +
                  "\xf3\xbe\x9f\xb6"=>"\xf0\x9f\x85\xbf", "\xf3\xbe\x9f\xb7"=>"\xf0\x9f\x9a\xa5", "\xf3\xbe\x9f\xb8"=>"\xf0\x9f\x9a\xa7", "\xf3\xbe\x9f\xb9"=>"\xf0\x9f\x9a\xa8", "\xf3\xbe\x9f\xba"=>"\xe2\x99\xa8",
         
     | 
| 
      
 1839 
     | 
    
         
            +
                  "\xf3\xbe\x9f\xbb"=>"\xe2\x9b\xba", "\xf3\xbe\x9f\xbc"=>"\xf0\x9f\x8e\xa0", "\xf3\xbe\x9f\xbd"=>"\xf0\x9f\x8e\xa1", "\xf3\xbe\x9f\xbe"=>"\xf0\x9f\x8e\xa2", "\xf3\xbe\x9f\xbf"=>"\xf0\x9f\x8e\xa3",
         
     | 
| 
      
 1840 
     | 
    
         
            +
                  "\xf3\xbe\xa0\x80"=>"\xf0\x9f\x8e\xa4", "\xf3\xbe\xa0\x81"=>"\xf0\x9f\x8e\xa5", "\xf3\xbe\xa0\x82"=>"\xf0\x9f\x8e\xa6", "\xf3\xbe\xa0\x83"=>"\xf0\x9f\x8e\xa7", "\xf3\xbe\xa0\x84"=>"\xf0\x9f\x8e\xa8",
         
     | 
| 
      
 1841 
     | 
    
         
            +
                  "\xf3\xbe\xa0\x85"=>"\xf0\x9f\x8e\xa9", "\xf3\xbe\xa0\x86"=>"\xf0\x9f\x8e\xaa", "\xf3\xbe\xa0\x87"=>"\xf0\x9f\x8e\xab", "\xf3\xbe\xa0\x88"=>"\xf0\x9f\x8e\xac", "\xf3\xbe\xa0\x89"=>"\xf0\x9f\x8e\xad",
         
     | 
| 
      
 1842 
     | 
    
         
            +
                  "\xf3\xbe\xa0\x8a"=>"\xf0\x9f\x8e\xae", "\xf3\xbe\xa0\x8b"=>"\xf0\x9f\x80\x84", "\xf3\xbe\xa0\x8c"=>"\xf0\x9f\x8e\xaf", "\xf3\xbe\xa0\x8d"=>"\xf0\x9f\x8e\xb0", "\xf3\xbe\xa0\x8e"=>"\xf0\x9f\x8e\xb1",
         
     | 
| 
      
 1843 
     | 
    
         
            +
                  "\xf3\xbe\xa0\x8f"=>"\xf0\x9f\x8e\xb2", "\xf3\xbe\xa0\x90"=>"\xf0\x9f\x8e\xb3", "\xf3\xbe\xa0\x91"=>"\xf0\x9f\x8e\xb4", "\xf3\xbe\xa0\x92"=>"\xf0\x9f\x83\x8f", "\xf3\xbe\xa0\x93"=>"\xf0\x9f\x8e\xb5",
         
     | 
| 
      
 1844 
     | 
    
         
            +
                  "\xf3\xbe\xa0\x94"=>"\xf0\x9f\x8e\xb6", "\xf3\xbe\xa0\x95"=>"\xf0\x9f\x8e\xb7", "\xf3\xbe\xa0\x96"=>"\xf0\x9f\x8e\xb8", "\xf3\xbe\xa0\x97"=>"\xf0\x9f\x8e\xb9", "\xf3\xbe\xa0\x98"=>"\xf0\x9f\x8e\xba",
         
     | 
| 
      
 1845 
     | 
    
         
            +
                  "\xf3\xbe\xa0\x99"=>"\xf0\x9f\x8e\xbb", "\xf3\xbe\xa0\x9a"=>"\xf0\x9f\x8e\xbc", "\xf3\xbe\xa0\x9b"=>"\xe3\x80\xbd", "\xf3\xbe\x93\xaf"=>"\xf0\x9f\x93\xb7", "\xf3\xbe\x93\xb9"=>"\xf0\x9f\x93\xb9",
         
     | 
| 
      
 1846 
     | 
    
         
            +
                  "\xf3\xbe\xa0\x9c"=>"\xf0\x9f\x93\xba", "\xf3\xbe\xa0\x9f"=>"\xf0\x9f\x93\xbb", "\xf3\xbe\xa0\xa0"=>"\xf0\x9f\x93\xbc", "\xf3\xbe\xa0\xa3"=>"\xf0\x9f\x92\x8b", "\xf3\xbe\xa0\xa4"=>"\xf0\x9f\x92\x8c",
         
     | 
| 
      
 1847 
     | 
    
         
            +
                  "\xf3\xbe\xa0\xa5"=>"\xf0\x9f\x92\x8d", "\xf3\xbe\xa0\xa6"=>"\xf0\x9f\x92\x8e", "\xf3\xbe\xa0\xa7"=>"\xf0\x9f\x92\x8f", "\xf3\xbe\xa0\xa8"=>"\xf0\x9f\x92\x90", "\xf3\xbe\xa0\xa9"=>"\xf0\x9f\x92\x91",
         
     | 
| 
      
 1848 
     | 
    
         
            +
                  "\xf3\xbe\xa0\xaa"=>"\xf0\x9f\x92\x92", "\xf3\xbe\xac\xa5"=>"\xf0\x9f\x94\x9e", "\xf3\xbe\xac\xa9"=>"\xc2\xa9", "\xf3\xbe\xac\xad"=>"\xc2\xae", "\xf3\xbe\xac\xaa"=>"\xe2\x84\xa2",
         
     | 
| 
      
 1849 
     | 
    
         
            +
                  "\xf3\xbe\xad\x87"=>"\xe2\x84\xb9", "\xf3\xbe\xa0\xac"=>"#\xe2\x83\xa3", "\xf3\xbe\xa0\xae"=>"1\xe2\x83\xa3", "\xf3\xbe\xa0\xaf"=>"2\xe2\x83\xa3", "\xf3\xbe\xa0\xb0"=>"3\xe2\x83\xa3",
         
     | 
| 
      
 1850 
     | 
    
         
            +
                  "\xf3\xbe\xa0\xb1"=>"4\xe2\x83\xa3", "\xf3\xbe\xa0\xb2"=>"5\xe2\x83\xa3", "\xf3\xbe\xa0\xb3"=>"6\xe2\x83\xa3", "\xf3\xbe\xa0\xb4"=>"7\xe2\x83\xa3", "\xf3\xbe\xa0\xb5"=>"8\xe2\x83\xa3",
         
     | 
| 
      
 1851 
     | 
    
         
            +
                  "\xf3\xbe\xa0\xb6"=>"9\xe2\x83\xa3", "\xf3\xbe\xa0\xb7"=>"0\xe2\x83\xa3", "\xf3\xbe\xa0\xbb"=>"\xf0\x9f\x94\x9f", "\xf3\xbe\xa0\xb8"=>"\xf0\x9f\x93\xb6", "\xf3\xbe\xa0\xb9"=>"\xf0\x9f\x93\xb3",
         
     | 
| 
      
 1852 
     | 
    
         
            +
                  "\xf3\xbe\xa0\xba"=>"\xf0\x9f\x93\xb4", "\xf3\xbe\xa5\xa0"=>"\xf0\x9f\x8d\x94", "\xf3\xbe\xa5\xa1"=>"\xf0\x9f\x8d\x99", "\xf3\xbe\xa5\xa2"=>"\xf0\x9f\x8d\xb0", "\xf3\xbe\xa5\xa3"=>"\xf0\x9f\x8d\x9c",
         
     | 
| 
      
 1853 
     | 
    
         
            +
                  "\xf3\xbe\xa5\xa4"=>"\xf0\x9f\x8d\x9e", "\xf3\xbe\xa5\xa5"=>"\xf0\x9f\x8d\xb3", "\xf3\xbe\xa5\xa6"=>"\xf0\x9f\x8d\xa6", "\xf3\xbe\xa5\xa7"=>"\xf0\x9f\x8d\x9f", "\xf3\xbe\xa5\xa8"=>"\xf0\x9f\x8d\xa1",
         
     | 
| 
      
 1854 
     | 
    
         
            +
                  "\xf3\xbe\xa5\xa9"=>"\xf0\x9f\x8d\x98", "\xf3\xbe\xa5\xaa"=>"\xf0\x9f\x8d\x9a", "\xf3\xbe\xa5\xab"=>"\xf0\x9f\x8d\x9d", "\xf3\xbe\xa5\xac"=>"\xf0\x9f\x8d\x9b", "\xf3\xbe\xa5\xad"=>"\xf0\x9f\x8d\xa2",
         
     | 
| 
      
 1855 
     | 
    
         
            +
                  "\xf3\xbe\xa5\xae"=>"\xf0\x9f\x8d\xa3", "\xf3\xbe\xa5\xaf"=>"\xf0\x9f\x8d\xb1", "\xf3\xbe\xa5\xb0"=>"\xf0\x9f\x8d\xb2", "\xf3\xbe\xa5\xb1"=>"\xf0\x9f\x8d\xa7", "\xf3\xbe\xa5\xb2"=>"\xf0\x9f\x8d\x96",
         
     | 
| 
      
 1856 
     | 
    
         
            +
                  "\xf3\xbe\xa5\xb3"=>"\xf0\x9f\x8d\xa5", "\xf3\xbe\xa5\xb4"=>"\xf0\x9f\x8d\xa0", "\xf3\xbe\xa5\xb5"=>"\xf0\x9f\x8d\x95", "\xf3\xbe\xa5\xb6"=>"\xf0\x9f\x8d\x97", "\xf3\xbe\xa5\xb7"=>"\xf0\x9f\x8d\xa8",
         
     | 
| 
      
 1857 
     | 
    
         
            +
                  "\xf3\xbe\xa5\xb8"=>"\xf0\x9f\x8d\xa9", "\xf3\xbe\xa5\xb9"=>"\xf0\x9f\x8d\xaa", "\xf3\xbe\xa5\xba"=>"\xf0\x9f\x8d\xab", "\xf3\xbe\xa5\xbb"=>"\xf0\x9f\x8d\xac", "\xf3\xbe\xa5\xbc"=>"\xf0\x9f\x8d\xad",
         
     | 
| 
      
 1858 
     | 
    
         
            +
                  "\xf3\xbe\xa5\xbd"=>"\xf0\x9f\x8d\xae", "\xf3\xbe\xa5\xbe"=>"\xf0\x9f\x8d\xaf", "\xf3\xbe\xa5\xbf"=>"\xf0\x9f\x8d\xa4", "\xf3\xbe\xa6\x80"=>"\xf0\x9f\x8d\xb4", "\xf3\xbe\xa6\x81"=>"\xe2\x98\x95",
         
     | 
| 
      
 1859 
     | 
    
         
            +
                  "\xf3\xbe\xa6\x82"=>"\xf0\x9f\x8d\xb8", "\xf3\xbe\xa6\x83"=>"\xf0\x9f\x8d\xba", "\xf3\xbe\xa6\x84"=>"\xf0\x9f\x8d\xb5", "\xf3\xbe\xa6\x85"=>"\xf0\x9f\x8d\xb6", "\xf3\xbe\xa6\x86"=>"\xf0\x9f\x8d\xb7",
         
     | 
| 
      
 1860 
     | 
    
         
            +
                  "\xf3\xbe\xa6\x87"=>"\xf0\x9f\x8d\xbb", "\xf3\xbe\xa6\x88"=>"\xf0\x9f\x8d\xb9", "\xf3\xbe\xab\xb0"=>"\xe2\x86\x97", "\xf3\xbe\xab\xb1"=>"\xe2\x86\x98", "\xf3\xbe\xab\xb2"=>"\xe2\x86\x96",
         
     | 
| 
      
 1861 
     | 
    
         
            +
                  "\xf3\xbe\xab\xb3"=>"\xe2\x86\x99", "\xf3\xbe\xab\xb4"=>"\xe2\xa4\xb4", "\xf3\xbe\xab\xb5"=>"\xe2\xa4\xb5", "\xf3\xbe\xab\xb6"=>"\xe2\x86\x94", "\xf3\xbe\xab\xb7"=>"\xe2\x86\x95",
         
     | 
| 
      
 1862 
     | 
    
         
            +
                  "\xf3\xbe\xab\xb8"=>"\xe2\xac\x86", "\xf3\xbe\xab\xb9"=>"\xe2\xac\x87", "\xf3\xbe\xab\xba"=>"\xe2\x9e\xa1", "\xf3\xbe\xab\xbb"=>"\xe2\xac\x85", "\xf3\xbe\xab\xbc"=>"\xe2\x96\xb6",
         
     | 
| 
      
 1863 
     | 
    
         
            +
                  "\xf3\xbe\xab\xbd"=>"\xe2\x97\x80", "\xf3\xbe\xab\xbe"=>"\xe2\x8f\xa9", "\xf3\xbe\xab\xbf"=>"\xe2\x8f\xaa", "\xf3\xbe\xac\x83"=>"\xe2\x8f\xab", "\xf3\xbe\xac\x82"=>"\xe2\x8f\xac",
         
     | 
| 
      
 1864 
     | 
    
         
            +
                  "\xf3\xbe\xad\xb8"=>"\xf0\x9f\x94\xba", "\xf3\xbe\xad\xb9"=>"\xf0\x9f\x94\xbb", "\xf3\xbe\xac\x81"=>"\xf0\x9f\x94\xbc", "\xf3\xbe\xac\x80"=>"\xf0\x9f\x94\xbd", "\xf3\xbe\xad\x84"=>"\xe2\xad\x95",
         
     | 
| 
      
 1865 
     | 
    
         
            +
                  "\xf3\xbe\xad\x85"=>"\xe2\x9d\x8c", "\xf3\xbe\xad\x86"=>"\xe2\x9d\x8e", "\xf3\xbe\xac\x84"=>"\xe2\x9d\x97", "\xf3\xbe\xac\x85"=>"\xe2\x81\x89", "\xf3\xbe\xac\x86"=>"\xe2\x80\xbc",
         
     | 
| 
      
 1866 
     | 
    
         
            +
                  "\xf3\xbe\xac\x89"=>"\xe2\x9d\x93", "\xf3\xbe\xac\x8a"=>"\xe2\x9d\x94", "\xf3\xbe\xac\x8b"=>"\xe2\x9d\x95", "\xf3\xbe\xac\x87"=>"\xe3\x80\xb0", "\xf3\xbe\xac\x88"=>"\xe2\x9e\xb0",
         
     | 
| 
      
 1867 
     | 
    
         
            +
                  "\xf3\xbe\xa0\xab"=>"\xe2\x9e\xbf", "\xf3\xbe\xac\x8c"=>"\xe2\x9d\xa4", "\xf3\xbe\xac\x8d"=>"\xf0\x9f\x92\x93", "\xf3\xbe\xac\x8e"=>"\xf0\x9f\x92\x94", "\xf3\xbe\xac\x8f"=>"\xf0\x9f\x92\x95",
         
     | 
| 
      
 1868 
     | 
    
         
            +
                  "\xf3\xbe\xac\x90"=>"\xf0\x9f\x92\x96", "\xf3\xbe\xac\x91"=>"\xf0\x9f\x92\x97", "\xf3\xbe\xac\x92"=>"\xf0\x9f\x92\x98", "\xf3\xbe\xac\x93"=>"\xf0\x9f\x92\x99", "\xf3\xbe\xac\x94"=>"\xf0\x9f\x92\x9a",
         
     | 
| 
      
 1869 
     | 
    
         
            +
                  "\xf3\xbe\xac\x95"=>"\xf0\x9f\x92\x9b", "\xf3\xbe\xac\x96"=>"\xf0\x9f\x92\x9c", "\xf3\xbe\xac\x97"=>"\xf0\x9f\x92\x9d", "\xf3\xbe\xac\x98"=>"\xf0\x9f\x92\x9e", "\xf3\xbe\xac\x99"=>"\xf0\x9f\x92\x9f",
         
     | 
| 
      
 1870 
     | 
    
         
            +
                  "\xf3\xbe\xac\x9a"=>"\xe2\x99\xa5", "\xf3\xbe\xac\x9b"=>"\xe2\x99\xa0", "\xf3\xbe\xac\x9c"=>"\xe2\x99\xa6", "\xf3\xbe\xac\x9d"=>"\xe2\x99\xa3", "\xf3\xbe\xac\x9e"=>"\xf0\x9f\x9a\xac",
         
     | 
| 
      
 1871 
     | 
    
         
            +
                  "\xf3\xbe\xac\x9f"=>"\xf0\x9f\x9a\xad", "\xf3\xbe\xac\xa0"=>"\xe2\x99\xbf", "\xf3\xbe\xac\xa2"=>"\xf0\x9f\x9a\xa9", "\xf3\xbe\xac\xa3"=>"\xe2\x9a\xa0", "\xf3\xbe\xac\xa6"=>"\xe2\x9b\x94",
         
     | 
| 
      
 1872 
     | 
    
         
            +
                  "\xf3\xbe\xac\xac"=>"\xe2\x99\xbb", "\xf3\xbe\x9f\xab"=>"\xf0\x9f\x9a\xb2", "\xf3\xbe\x9f\xb0"=>"\xf0\x9f\x9a\xb6", "\xf3\xbe\xac\xb3"=>"\xf0\x9f\x9a\xb9", "\xf3\xbe\xac\xb4"=>"\xf0\x9f\x9a\xba",
         
     | 
| 
      
 1873 
     | 
    
         
            +
                  "\xf3\xbe\x94\x85"=>"\xf0\x9f\x9b\x80", "\xf3\xbe\x94\x86"=>"\xf0\x9f\x9a\xbb", "\xf3\xbe\x94\x87"=>"\xf0\x9f\x9a\xbd", "\xf3\xbe\x94\x88"=>"\xf0\x9f\x9a\xbe", "\xf3\xbe\xac\xb5"=>"\xf0\x9f\x9a\xbc",
         
     | 
| 
      
 1874 
     | 
    
         
            +
                  "\xf3\xbe\x93\xb3"=>"\xf0\x9f\x9a\xaa", "\xf3\xbe\xad\x88"=>"\xf0\x9f\x9a\xab", "\xf3\xbe\xad\x89"=>"\xe2\x9c\x94", "\xf3\xbe\xae\x84"=>"\xf0\x9f\x86\x91", "\xf3\xbe\xac\xb8"=>"\xf0\x9f\x86\x92",
         
     | 
| 
      
 1875 
     | 
    
         
            +
                  "\xf3\xbe\xac\xa1"=>"\xf0\x9f\x86\x93", "\xf3\xbe\xae\x81"=>"\xf0\x9f\x86\x94", "\xf3\xbe\xac\xb6"=>"\xf0\x9f\x86\x95", "\xf3\xbe\xac\xa8"=>"\xf0\x9f\x86\x96", "\xf3\xbe\xac\xa7"=>"\xf0\x9f\x86\x97",
         
     | 
| 
      
 1876 
     | 
    
         
            +
                  "\xf3\xbe\xad\x8f"=>"\xf0\x9f\x86\x98", "\xf3\xbe\xac\xb7"=>"\xf0\x9f\x86\x99", "\xf3\xbe\xac\xb2"=>"\xf0\x9f\x86\x9a", "\xf3\xbe\xac\xa4"=>"\xf0\x9f\x88\x81", "\xf3\xbe\xac\xbf"=>"\xf0\x9f\x88\x82",
         
     | 
| 
      
 1877 
     | 
    
         
            +
                  "\xf3\xbe\xac\xae"=>"\xf0\x9f\x88\xb2", "\xf3\xbe\xac\xaf"=>"\xf0\x9f\x88\xb3", "\xf3\xbe\xac\xb0"=>"\xf0\x9f\x88\xb4", "\xf3\xbe\xac\xb1"=>"\xf0\x9f\x88\xb5", "\xf3\xbe\xac\xb9"=>"\xf0\x9f\x88\xb6",
         
     | 
| 
      
 1878 
     | 
    
         
            +
                  "\xf3\xbe\xac\xba"=>"\xf0\x9f\x88\x9a", "\xf3\xbe\xac\xbb"=>"\xf0\x9f\x88\xb7", "\xf3\xbe\xac\xbc"=>"\xf0\x9f\x88\xb8", "\xf3\xbe\xac\xbe"=>"\xf0\x9f\x88\xb9", "\xf3\xbe\xad\x80"=>"\xf0\x9f\x88\xaf",
         
     | 
| 
      
 1879 
     | 
    
         
            +
                  "\xf3\xbe\xad\x81"=>"\xf0\x9f\x88\xba", "\xf3\xbe\xac\xab"=>"\xe3\x8a\x99", "\xf3\xbe\xad\x83"=>"\xe3\x8a\x97", "\xf3\xbe\xac\xbd"=>"\xf0\x9f\x89\x90", "\xf3\xbe\xad\x90"=>"\xf0\x9f\x89\x91",
         
     | 
| 
      
 1880 
     | 
    
         
            +
                  "\xf3\xbe\xad\x91"=>"\xe2\x9e\x95", "\xf3\xbe\xad\x92"=>"\xe2\x9e\x96", "\xf3\xbe\xad\x93"=>"\xe2\x9c\x96", "\xf3\xbe\xad\x94"=>"\xe2\x9e\x97", "\xf3\xbe\xad\x95"=>"\xf0\x9f\x92\xa0",
         
     | 
| 
      
 1881 
     | 
    
         
            +
                  "\xf3\xbe\xad\x96"=>"\xf0\x9f\x92\xa1", "\xf3\xbe\xad\x97"=>"\xf0\x9f\x92\xa2", "\xf3\xbe\xad\x98"=>"\xf0\x9f\x92\xa3", "\xf3\xbe\xad\x99"=>"\xf0\x9f\x92\xa4", "\xf3\xbe\xad\x9a"=>"\xf0\x9f\x92\xa5",
         
     | 
| 
      
 1882 
     | 
    
         
            +
                  "\xf3\xbe\xad\x9b"=>"\xf0\x9f\x92\xa6", "\xf3\xbe\xad\x9c"=>"\xf0\x9f\x92\xa7", "\xf3\xbe\xad\x9d"=>"\xf0\x9f\x92\xa8", "\xf3\xbe\x93\xb4"=>"\xf0\x9f\x92\xa9", "\xf3\xbe\xad\x9e"=>"\xf0\x9f\x92\xaa",
         
     | 
| 
      
 1883 
     | 
    
         
            +
                  "\xf3\xbe\xad\x9f"=>"\xf0\x9f\x92\xab", "\xf3\xbe\x94\xb2"=>"\xf0\x9f\x92\xac", "\xf3\xbe\xad\xa0"=>"\xe2\x9c\xa8", "\xf3\xbe\xad\xa1"=>"\xe2\x9c\xb4", "\xf3\xbe\xad\xa2"=>"\xe2\x9c\xb3",
         
     | 
| 
      
 1884 
     | 
    
         
            +
                  "\xf3\xbe\xad\xa5"=>"\xe2\x9a\xaa", "\xf3\xbe\xad\xa6"=>"\xe2\x9a\xab", "\xf3\xbe\xad\xa3"=>"\xf0\x9f\x94\xb4", "\xf3\xbe\xad\xa4"=>"\xf0\x9f\x94\xb2", "\xf3\xbe\xad\xa7"=>"\xf0\x9f\x94\xb3",
         
     | 
| 
      
 1885 
     | 
    
         
            +
                  "\xf3\xbe\xad\xa8"=>"\xe2\xad\x90", "\xf3\xbe\xad\xab"=>"\xe2\xac\x9c", "\xf3\xbe\xad\xac"=>"\xe2\xac\x9b", "\xf3\xbe\xad\xad"=>"\xe2\x96\xab", "\xf3\xbe\xad\xae"=>"\xe2\x96\xaa",
         
     | 
| 
      
 1886 
     | 
    
         
            +
                  "\xf3\xbe\xad\xaf"=>"\xe2\x97\xbd", "\xf3\xbe\xad\xb0"=>"\xe2\x97\xbe", "\xf3\xbe\xad\xb1"=>"\xe2\x97\xbb", "\xf3\xbe\xad\xb2"=>"\xe2\x97\xbc", "\xf3\xbe\xad\xb3"=>"\xf0\x9f\x94\xb6",
         
     | 
| 
      
 1887 
     | 
    
         
            +
                  "\xf3\xbe\xad\xb4"=>"\xf0\x9f\x94\xb7", "\xf3\xbe\xad\xb5"=>"\xf0\x9f\x94\xb8", "\xf3\xbe\xad\xb6"=>"\xf0\x9f\x94\xb9", "\xf3\xbe\xad\xb7"=>"\xe2\x9d\x87", "\xf3\xbe\xad\xba"=>"\xf0\x9f\x92\xae",
         
     | 
| 
      
 1888 
     | 
    
         
            +
                  "\xf3\xbe\xad\xbb"=>"\xf0\x9f\x92\xaf", "\xf3\xbe\xae\x83"=>"\xe2\x86\xa9", "\xf3\xbe\xae\x88"=>"\xe2\x86\xaa", "\xf3\xbe\xae\x91"=>"\xf0\x9f\x94\x83", "\xf3\xbe\xa0\xa1"=>"\xf0\x9f\x94\x8a",
         
     | 
| 
      
 1889 
     | 
    
         
            +
                  "\xf3\xbe\x93\xbc"=>"\xf0\x9f\x94\x8b", "\xf3\xbe\x93\xbe"=>"\xf0\x9f\x94\x8c", "\xf3\xbe\xae\x85"=>"\xf0\x9f\x94\x8d", "\xf3\xbe\xae\x8d"=>"\xf0\x9f\x94\x8e", "\xf3\xbe\xae\x86"=>"\xf0\x9f\x94\x92",
         
     | 
| 
      
 1890 
     | 
    
         
            +
                  "\xf3\xbe\xae\x87"=>"\xf0\x9f\x94\x93", "\xf3\xbe\xae\x90"=>"\xf0\x9f\x94\x8f", "\xf3\xbe\xae\x8a"=>"\xf0\x9f\x94\x90", "\xf3\xbe\xae\x82"=>"\xf0\x9f\x94\x91", "\xf3\xbe\x93\xb2"=>"\xf0\x9f\x94\x94",
         
     | 
| 
      
 1891 
     | 
    
         
            +
                  "\xf3\xbe\xae\x8b"=>"\xe2\x98\x91", "\xf3\xbe\xae\x8c"=>"\xf0\x9f\x94\x98", "\xf3\xbe\xae\x8f"=>"\xf0\x9f\x94\x96", "\xf3\xbe\xad\x8b"=>"\xf0\x9f\x94\x97", "\xf3\xbe\xae\x8e"=>"\xf0\x9f\x94\x99",
         
     | 
| 
      
 1892 
     | 
    
         
            +
                  "\xf3\xbe\x80\x9a"=>"\xf0\x9f\x94\x9a", "\xf3\xbe\x80\x99"=>"\xf0\x9f\x94\x9b", "\xf3\xbe\x80\x98"=>"\xf0\x9f\x94\x9c", "\xf3\xbe\xad\x82"=>"\xf0\x9f\x94\x9d", "\xf3\xbe\xad\x8c"=>"\xe2\x80\x83",
         
     | 
| 
      
 1893 
     | 
    
         
            +
                  "\xf3\xbe\xad\x8d"=>"\xe2\x80\x82", "\xf3\xbe\xad\x8e"=>"\xe2\x80\x85", "\xf3\xbe\xad\x8a"=>"\xe2\x9c\x85", "\xf3\xbe\xae\x93"=>"\xe2\x9c\x8a", "\xf3\xbe\xae\x95"=>"\xe2\x9c\x8b",
         
     | 
| 
      
 1894 
     | 
    
         
            +
                  "\xf3\xbe\xae\x94"=>"\xe2\x9c\x8c", "\xf3\xbe\xae\x96"=>"\xf0\x9f\x91\x8a", "\xf3\xbe\xae\x97"=>"\xf0\x9f\x91\x8d", "\xf3\xbe\xae\x98"=>"\xe2\x98\x9d", "\xf3\xbe\xae\x99"=>"\xf0\x9f\x91\x86",
         
     | 
| 
      
 1895 
     | 
    
         
            +
                  "\xf3\xbe\xae\x9a"=>"\xf0\x9f\x91\x87", "\xf3\xbe\xae\x9b"=>"\xf0\x9f\x91\x88", "\xf3\xbe\xae\x9c"=>"\xf0\x9f\x91\x89", "\xf3\xbe\xae\x9d"=>"\xf0\x9f\x91\x8b", "\xf3\xbe\xae\x9e"=>"\xf0\x9f\x91\x8f",
         
     | 
| 
      
 1896 
     | 
    
         
            +
                  "\xf3\xbe\xae\x9f"=>"\xf0\x9f\x91\x8c", "\xf3\xbe\xae\xa0"=>"\xf0\x9f\x91\x8e", "\xf3\xbe\xae\xa1"=>"\xf0\x9f\x91\x90",
         
     | 
| 
      
 1897 
     | 
    
         
            +
                },
         
     | 
| 
      
 1898 
     | 
    
         
            +
                'unified_to_html' => {
         
     | 
| 
      
 1899 
     | 
    
         
            +
                  "\xe2\x98\x80"=>"<span class=\x22emoji emoji2600\x22></span>", "\xe2\x98\x81"=>"<span class=\x22emoji emoji2601\x22></span>", "\xe2\x98\x94"=>"<span class=\x22emoji emoji2614\x22></span>", "\xe2\x9b\x84"=>"<span class=\x22emoji emoji26c4\x22></span>",
         
     | 
| 
      
 1900 
     | 
    
         
            +
                  "\xe2\x9a\xa1"=>"<span class=\x22emoji emoji26a1\x22></span>", "\xf0\x9f\x8c\x80"=>"<span class=\x22emoji emoji1f300\x22></span>", "\xf0\x9f\x8c\x81"=>"<span class=\x22emoji emoji1f301\x22></span>", "\xf0\x9f\x8c\x82"=>"<span class=\x22emoji emoji1f302\x22></span>", "\xf0\x9f\x8c\x83"=>"<span class=\x22emoji emoji1f303\x22></span>",
         
     | 
| 
      
 1901 
     | 
    
         
            +
                  "\xf0\x9f\x8c\x84"=>"<span class=\x22emoji emoji1f304\x22></span>", "\xf0\x9f\x8c\x85"=>"<span class=\x22emoji emoji1f305\x22></span>", "\xf0\x9f\x8c\x86"=>"<span class=\x22emoji emoji1f306\x22></span>", "\xf0\x9f\x8c\x87"=>"<span class=\x22emoji emoji1f307\x22></span>", "\xf0\x9f\x8c\x88"=>"<span class=\x22emoji emoji1f308\x22></span>",
         
     | 
| 
      
 1902 
     | 
    
         
            +
                  "\xe2\x9d\x84"=>"<span class=\x22emoji emoji2744\x22></span>", "\xe2\x9b\x85"=>"<span class=\x22emoji emoji26c5\x22></span>", "\xf0\x9f\x8c\x89"=>"<span class=\x22emoji emoji1f309\x22></span>", "\xf0\x9f\x8c\x8a"=>"<span class=\x22emoji emoji1f30a\x22></span>", "\xf0\x9f\x8c\x8b"=>"<span class=\x22emoji emoji1f30b\x22></span>",
         
     | 
| 
      
 1903 
     | 
    
         
            +
                  "\xf0\x9f\x8c\x8c"=>"<span class=\x22emoji emoji1f30c\x22></span>", "\xf0\x9f\x8c\x8f"=>"<span class=\x22emoji emoji1f30f\x22></span>", "\xf0\x9f\x8c\x91"=>"<span class=\x22emoji emoji1f311\x22></span>", "\xf0\x9f\x8c\x94"=>"<span class=\x22emoji emoji1f314\x22></span>", "\xf0\x9f\x8c\x93"=>"<span class=\x22emoji emoji1f313\x22></span>",
         
     | 
| 
      
 1904 
     | 
    
         
            +
                  "\xf0\x9f\x8c\x99"=>"<span class=\x22emoji emoji1f319\x22></span>", "\xf0\x9f\x8c\x95"=>"<span class=\x22emoji emoji1f315\x22></span>", "\xf0\x9f\x8c\x9b"=>"<span class=\x22emoji emoji1f31b\x22></span>", "\xf0\x9f\x8c\x9f"=>"<span class=\x22emoji emoji1f31f\x22></span>", "\xf0\x9f\x8c\xa0"=>"<span class=\x22emoji emoji1f320\x22></span>",
         
     | 
| 
      
 1905 
     | 
    
         
            +
                  "\xf0\x9f\x95\x90"=>"<span class=\x22emoji emoji1f550\x22></span>", "\xf0\x9f\x95\x91"=>"<span class=\x22emoji emoji1f551\x22></span>", "\xf0\x9f\x95\x92"=>"<span class=\x22emoji emoji1f552\x22></span>", "\xf0\x9f\x95\x93"=>"<span class=\x22emoji emoji1f553\x22></span>", "\xf0\x9f\x95\x94"=>"<span class=\x22emoji emoji1f554\x22></span>",
         
     | 
| 
      
 1906 
     | 
    
         
            +
                  "\xf0\x9f\x95\x95"=>"<span class=\x22emoji emoji1f555\x22></span>", "\xf0\x9f\x95\x96"=>"<span class=\x22emoji emoji1f556\x22></span>", "\xf0\x9f\x95\x97"=>"<span class=\x22emoji emoji1f557\x22></span>", "\xf0\x9f\x95\x98"=>"<span class=\x22emoji emoji1f558\x22></span>", "\xf0\x9f\x95\x99"=>"<span class=\x22emoji emoji1f559\x22></span>",
         
     | 
| 
      
 1907 
     | 
    
         
            +
                  "\xf0\x9f\x95\x9a"=>"<span class=\x22emoji emoji1f55a\x22></span>", "\xf0\x9f\x95\x9b"=>"<span class=\x22emoji emoji1f55b\x22></span>", "\xe2\x8c\x9a"=>"<span class=\x22emoji emoji231a\x22></span>", "\xe2\x8c\x9b"=>"<span class=\x22emoji emoji231b\x22></span>", "\xe2\x8f\xb0"=>"<span class=\x22emoji emoji23f0\x22></span>",
         
     | 
| 
      
 1908 
     | 
    
         
            +
                  "\xe2\x8f\xb3"=>"<span class=\x22emoji emoji23f3\x22></span>", "\xe2\x99\x88"=>"<span class=\x22emoji emoji2648\x22></span>", "\xe2\x99\x89"=>"<span class=\x22emoji emoji2649\x22></span>", "\xe2\x99\x8a"=>"<span class=\x22emoji emoji264a\x22></span>", "\xe2\x99\x8b"=>"<span class=\x22emoji emoji264b\x22></span>",
         
     | 
| 
      
 1909 
     | 
    
         
            +
                  "\xe2\x99\x8c"=>"<span class=\x22emoji emoji264c\x22></span>", "\xe2\x99\x8d"=>"<span class=\x22emoji emoji264d\x22></span>", "\xe2\x99\x8e"=>"<span class=\x22emoji emoji264e\x22></span>", "\xe2\x99\x8f"=>"<span class=\x22emoji emoji264f\x22></span>", "\xe2\x99\x90"=>"<span class=\x22emoji emoji2650\x22></span>",
         
     | 
| 
      
 1910 
     | 
    
         
            +
                  "\xe2\x99\x91"=>"<span class=\x22emoji emoji2651\x22></span>", "\xe2\x99\x92"=>"<span class=\x22emoji emoji2652\x22></span>", "\xe2\x99\x93"=>"<span class=\x22emoji emoji2653\x22></span>", "\xe2\x9b\x8e"=>"<span class=\x22emoji emoji26ce\x22></span>", "\xf0\x9f\x8d\x80"=>"<span class=\x22emoji emoji1f340\x22></span>",
         
     | 
| 
      
 1911 
     | 
    
         
            +
                  "\xf0\x9f\x8c\xb7"=>"<span class=\x22emoji emoji1f337\x22></span>", "\xf0\x9f\x8c\xb1"=>"<span class=\x22emoji emoji1f331\x22></span>", "\xf0\x9f\x8d\x81"=>"<span class=\x22emoji emoji1f341\x22></span>", "\xf0\x9f\x8c\xb8"=>"<span class=\x22emoji emoji1f338\x22></span>", "\xf0\x9f\x8c\xb9"=>"<span class=\x22emoji emoji1f339\x22></span>",
         
     | 
| 
      
 1912 
     | 
    
         
            +
                  "\xf0\x9f\x8d\x82"=>"<span class=\x22emoji emoji1f342\x22></span>", "\xf0\x9f\x8d\x83"=>"<span class=\x22emoji emoji1f343\x22></span>", "\xf0\x9f\x8c\xba"=>"<span class=\x22emoji emoji1f33a\x22></span>", "\xf0\x9f\x8c\xbb"=>"<span class=\x22emoji emoji1f33b\x22></span>", "\xf0\x9f\x8c\xb4"=>"<span class=\x22emoji emoji1f334\x22></span>",
         
     | 
| 
      
 1913 
     | 
    
         
            +
                  "\xf0\x9f\x8c\xb5"=>"<span class=\x22emoji emoji1f335\x22></span>", "\xf0\x9f\x8c\xbe"=>"<span class=\x22emoji emoji1f33e\x22></span>", "\xf0\x9f\x8c\xbd"=>"<span class=\x22emoji emoji1f33d\x22></span>", "\xf0\x9f\x8d\x84"=>"<span class=\x22emoji emoji1f344\x22></span>", "\xf0\x9f\x8c\xb0"=>"<span class=\x22emoji emoji1f330\x22></span>",
         
     | 
| 
      
 1914 
     | 
    
         
            +
                  "\xf0\x9f\x8c\xbc"=>"<span class=\x22emoji emoji1f33c\x22></span>", "\xf0\x9f\x8c\xbf"=>"<span class=\x22emoji emoji1f33f\x22></span>", "\xf0\x9f\x8d\x92"=>"<span class=\x22emoji emoji1f352\x22></span>", "\xf0\x9f\x8d\x8c"=>"<span class=\x22emoji emoji1f34c\x22></span>", "\xf0\x9f\x8d\x8e"=>"<span class=\x22emoji emoji1f34e\x22></span>",
         
     | 
| 
      
 1915 
     | 
    
         
            +
                  "\xf0\x9f\x8d\x8a"=>"<span class=\x22emoji emoji1f34a\x22></span>", "\xf0\x9f\x8d\x93"=>"<span class=\x22emoji emoji1f353\x22></span>", "\xf0\x9f\x8d\x89"=>"<span class=\x22emoji emoji1f349\x22></span>", "\xf0\x9f\x8d\x85"=>"<span class=\x22emoji emoji1f345\x22></span>", "\xf0\x9f\x8d\x86"=>"<span class=\x22emoji emoji1f346\x22></span>",
         
     | 
| 
      
 1916 
     | 
    
         
            +
                  "\xf0\x9f\x8d\x88"=>"<span class=\x22emoji emoji1f348\x22></span>", "\xf0\x9f\x8d\x8d"=>"<span class=\x22emoji emoji1f34d\x22></span>", "\xf0\x9f\x8d\x87"=>"<span class=\x22emoji emoji1f347\x22></span>", "\xf0\x9f\x8d\x91"=>"<span class=\x22emoji emoji1f351\x22></span>", "\xf0\x9f\x8d\x8f"=>"<span class=\x22emoji emoji1f34f\x22></span>",
         
     | 
| 
      
 1917 
     | 
    
         
            +
                  "\xf0\x9f\x91\x80"=>"<span class=\x22emoji emoji1f440\x22></span>", "\xf0\x9f\x91\x82"=>"<span class=\x22emoji emoji1f442\x22></span>", "\xf0\x9f\x91\x83"=>"<span class=\x22emoji emoji1f443\x22></span>", "\xf0\x9f\x91\x84"=>"<span class=\x22emoji emoji1f444\x22></span>", "\xf0\x9f\x91\x85"=>"<span class=\x22emoji emoji1f445\x22></span>",
         
     | 
| 
      
 1918 
     | 
    
         
            +
                  "\xf0\x9f\x92\x84"=>"<span class=\x22emoji emoji1f484\x22></span>", "\xf0\x9f\x92\x85"=>"<span class=\x22emoji emoji1f485\x22></span>", "\xf0\x9f\x92\x86"=>"<span class=\x22emoji emoji1f486\x22></span>", "\xf0\x9f\x92\x87"=>"<span class=\x22emoji emoji1f487\x22></span>", "\xf0\x9f\x92\x88"=>"<span class=\x22emoji emoji1f488\x22></span>",
         
     | 
| 
      
 1919 
     | 
    
         
            +
                  "\xf0\x9f\x91\xa4"=>"<span class=\x22emoji emoji1f464\x22></span>", "\xf0\x9f\x91\xa6"=>"<span class=\x22emoji emoji1f466\x22></span>", "\xf0\x9f\x91\xa7"=>"<span class=\x22emoji emoji1f467\x22></span>", "\xf0\x9f\x91\xa8"=>"<span class=\x22emoji emoji1f468\x22></span>", "\xf0\x9f\x91\xa9"=>"<span class=\x22emoji emoji1f469\x22></span>",
         
     | 
| 
      
 1920 
     | 
    
         
            +
                  "\xf0\x9f\x91\xaa"=>"<span class=\x22emoji emoji1f46a\x22></span>", "\xf0\x9f\x91\xab"=>"<span class=\x22emoji emoji1f46b\x22></span>", "\xf0\x9f\x91\xae"=>"<span class=\x22emoji emoji1f46e\x22></span>", "\xf0\x9f\x91\xaf"=>"<span class=\x22emoji emoji1f46f\x22></span>", "\xf0\x9f\x91\xb0"=>"<span class=\x22emoji emoji1f470\x22></span>",
         
     | 
| 
      
 1921 
     | 
    
         
            +
                  "\xf0\x9f\x91\xb1"=>"<span class=\x22emoji emoji1f471\x22></span>", "\xf0\x9f\x91\xb2"=>"<span class=\x22emoji emoji1f472\x22></span>", "\xf0\x9f\x91\xb3"=>"<span class=\x22emoji emoji1f473\x22></span>", "\xf0\x9f\x91\xb4"=>"<span class=\x22emoji emoji1f474\x22></span>", "\xf0\x9f\x91\xb5"=>"<span class=\x22emoji emoji1f475\x22></span>",
         
     | 
| 
      
 1922 
     | 
    
         
            +
                  "\xf0\x9f\x91\xb6"=>"<span class=\x22emoji emoji1f476\x22></span>", "\xf0\x9f\x91\xb7"=>"<span class=\x22emoji emoji1f477\x22></span>", "\xf0\x9f\x91\xb8"=>"<span class=\x22emoji emoji1f478\x22></span>", "\xf0\x9f\x91\xb9"=>"<span class=\x22emoji emoji1f479\x22></span>", "\xf0\x9f\x91\xba"=>"<span class=\x22emoji emoji1f47a\x22></span>",
         
     | 
| 
      
 1923 
     | 
    
         
            +
                  "\xf0\x9f\x91\xbb"=>"<span class=\x22emoji emoji1f47b\x22></span>", "\xf0\x9f\x91\xbc"=>"<span class=\x22emoji emoji1f47c\x22></span>", "\xf0\x9f\x91\xbd"=>"<span class=\x22emoji emoji1f47d\x22></span>", "\xf0\x9f\x91\xbe"=>"<span class=\x22emoji emoji1f47e\x22></span>", "\xf0\x9f\x91\xbf"=>"<span class=\x22emoji emoji1f47f\x22></span>",
         
     | 
| 
      
 1924 
     | 
    
         
            +
                  "\xf0\x9f\x92\x80"=>"<span class=\x22emoji emoji1f480\x22></span>", "\xf0\x9f\x92\x81"=>"<span class=\x22emoji emoji1f481\x22></span>", "\xf0\x9f\x92\x82"=>"<span class=\x22emoji emoji1f482\x22></span>", "\xf0\x9f\x92\x83"=>"<span class=\x22emoji emoji1f483\x22></span>", "\xf0\x9f\x90\x8c"=>"<span class=\x22emoji emoji1f40c\x22></span>",
         
     | 
| 
      
 1925 
     | 
    
         
            +
                  "\xf0\x9f\x90\x8d"=>"<span class=\x22emoji emoji1f40d\x22></span>", "\xf0\x9f\x90\x8e"=>"<span class=\x22emoji emoji1f40e\x22></span>", "\xf0\x9f\x90\x94"=>"<span class=\x22emoji emoji1f414\x22></span>", "\xf0\x9f\x90\x97"=>"<span class=\x22emoji emoji1f417\x22></span>", "\xf0\x9f\x90\xab"=>"<span class=\x22emoji emoji1f42b\x22></span>",
         
     | 
| 
      
 1926 
     | 
    
         
            +
                  "\xf0\x9f\x90\x98"=>"<span class=\x22emoji emoji1f418\x22></span>", "\xf0\x9f\x90\xa8"=>"<span class=\x22emoji emoji1f428\x22></span>", "\xf0\x9f\x90\x92"=>"<span class=\x22emoji emoji1f412\x22></span>", "\xf0\x9f\x90\x91"=>"<span class=\x22emoji emoji1f411\x22></span>", "\xf0\x9f\x90\x99"=>"<span class=\x22emoji emoji1f419\x22></span>",
         
     | 
| 
      
 1927 
     | 
    
         
            +
                  "\xf0\x9f\x90\x9a"=>"<span class=\x22emoji emoji1f41a\x22></span>", "\xf0\x9f\x90\x9b"=>"<span class=\x22emoji emoji1f41b\x22></span>", "\xf0\x9f\x90\x9c"=>"<span class=\x22emoji emoji1f41c\x22></span>", "\xf0\x9f\x90\x9d"=>"<span class=\x22emoji emoji1f41d\x22></span>", "\xf0\x9f\x90\x9e"=>"<span class=\x22emoji emoji1f41e\x22></span>",
         
     | 
| 
      
 1928 
     | 
    
         
            +
                  "\xf0\x9f\x90\xa0"=>"<span class=\x22emoji emoji1f420\x22></span>", "\xf0\x9f\x90\xa1"=>"<span class=\x22emoji emoji1f421\x22></span>", "\xf0\x9f\x90\xa2"=>"<span class=\x22emoji emoji1f422\x22></span>", "\xf0\x9f\x90\xa4"=>"<span class=\x22emoji emoji1f424\x22></span>", "\xf0\x9f\x90\xa5"=>"<span class=\x22emoji emoji1f425\x22></span>",
         
     | 
| 
      
 1929 
     | 
    
         
            +
                  "\xf0\x9f\x90\xa6"=>"<span class=\x22emoji emoji1f426\x22></span>", "\xf0\x9f\x90\xa3"=>"<span class=\x22emoji emoji1f423\x22></span>", "\xf0\x9f\x90\xa7"=>"<span class=\x22emoji emoji1f427\x22></span>", "\xf0\x9f\x90\xa9"=>"<span class=\x22emoji emoji1f429\x22></span>", "\xf0\x9f\x90\x9f"=>"<span class=\x22emoji emoji1f41f\x22></span>",
         
     | 
| 
      
 1930 
     | 
    
         
            +
                  "\xf0\x9f\x90\xac"=>"<span class=\x22emoji emoji1f42c\x22></span>", "\xf0\x9f\x90\xad"=>"<span class=\x22emoji emoji1f42d\x22></span>", "\xf0\x9f\x90\xaf"=>"<span class=\x22emoji emoji1f42f\x22></span>", "\xf0\x9f\x90\xb1"=>"<span class=\x22emoji emoji1f431\x22></span>", "\xf0\x9f\x90\xb3"=>"<span class=\x22emoji emoji1f433\x22></span>",
         
     | 
| 
      
 1931 
     | 
    
         
            +
                  "\xf0\x9f\x90\xb4"=>"<span class=\x22emoji emoji1f434\x22></span>", "\xf0\x9f\x90\xb5"=>"<span class=\x22emoji emoji1f435\x22></span>", "\xf0\x9f\x90\xb6"=>"<span class=\x22emoji emoji1f436\x22></span>", "\xf0\x9f\x90\xb7"=>"<span class=\x22emoji emoji1f437\x22></span>", "\xf0\x9f\x90\xbb"=>"<span class=\x22emoji emoji1f43b\x22></span>",
         
     | 
| 
      
 1932 
     | 
    
         
            +
                  "\xf0\x9f\x90\xb9"=>"<span class=\x22emoji emoji1f439\x22></span>", "\xf0\x9f\x90\xba"=>"<span class=\x22emoji emoji1f43a\x22></span>", "\xf0\x9f\x90\xae"=>"<span class=\x22emoji emoji1f42e\x22></span>", "\xf0\x9f\x90\xb0"=>"<span class=\x22emoji emoji1f430\x22></span>", "\xf0\x9f\x90\xb8"=>"<span class=\x22emoji emoji1f438\x22></span>",
         
     | 
| 
      
 1933 
     | 
    
         
            +
                  "\xf0\x9f\x90\xbe"=>"<span class=\x22emoji emoji1f43e\x22></span>", "\xf0\x9f\x90\xb2"=>"<span class=\x22emoji emoji1f432\x22></span>", "\xf0\x9f\x90\xbc"=>"<span class=\x22emoji emoji1f43c\x22></span>", "\xf0\x9f\x90\xbd"=>"<span class=\x22emoji emoji1f43d\x22></span>", "\xf0\x9f\x98\xa0"=>"<span class=\x22emoji emoji1f620\x22></span>",
         
     | 
| 
      
 1934 
     | 
    
         
            +
                  "\xf0\x9f\x98\xa9"=>"<span class=\x22emoji emoji1f629\x22></span>", "\xf0\x9f\x98\xb2"=>"<span class=\x22emoji emoji1f632\x22></span>", "\xf0\x9f\x98\x9e"=>"<span class=\x22emoji emoji1f61e\x22></span>", "\xf0\x9f\x98\xb5"=>"<span class=\x22emoji emoji1f635\x22></span>", "\xf0\x9f\x98\xb0"=>"<span class=\x22emoji emoji1f630\x22></span>",
         
     | 
| 
      
 1935 
     | 
    
         
            +
                  "\xf0\x9f\x98\x92"=>"<span class=\x22emoji emoji1f612\x22></span>", "\xf0\x9f\x98\x8d"=>"<span class=\x22emoji emoji1f60d\x22></span>", "\xf0\x9f\x98\xa4"=>"<span class=\x22emoji emoji1f624\x22></span>", "\xf0\x9f\x98\x9c"=>"<span class=\x22emoji emoji1f61c\x22></span>", "\xf0\x9f\x98\x9d"=>"<span class=\x22emoji emoji1f61d\x22></span>",
         
     | 
| 
      
 1936 
     | 
    
         
            +
                  "\xf0\x9f\x98\x8b"=>"<span class=\x22emoji emoji1f60b\x22></span>", "\xf0\x9f\x98\x98"=>"<span class=\x22emoji emoji1f618\x22></span>", "\xf0\x9f\x98\x9a"=>"<span class=\x22emoji emoji1f61a\x22></span>", "\xf0\x9f\x98\xb7"=>"<span class=\x22emoji emoji1f637\x22></span>", "\xf0\x9f\x98\xb3"=>"<span class=\x22emoji emoji1f633\x22></span>",
         
     | 
| 
      
 1937 
     | 
    
         
            +
                  "\xf0\x9f\x98\x83"=>"<span class=\x22emoji emoji1f603\x22></span>", "\xf0\x9f\x98\x85"=>"<span class=\x22emoji emoji1f605\x22></span>", "\xf0\x9f\x98\x86"=>"<span class=\x22emoji emoji1f606\x22></span>", "\xf0\x9f\x98\x81"=>"<span class=\x22emoji emoji1f601\x22></span>", "\xf0\x9f\x98\x82"=>"<span class=\x22emoji emoji1f602\x22></span>",
         
     | 
| 
      
 1938 
     | 
    
         
            +
                  "\xf0\x9f\x98\x8a"=>"<span class=\x22emoji emoji1f60a\x22></span>", "\xe2\x98\xba"=>"<span class=\x22emoji emoji263a\x22></span>", "\xf0\x9f\x98\x84"=>"<span class=\x22emoji emoji1f604\x22></span>", "\xf0\x9f\x98\xa2"=>"<span class=\x22emoji emoji1f622\x22></span>", "\xf0\x9f\x98\xad"=>"<span class=\x22emoji emoji1f62d\x22></span>",
         
     | 
| 
      
 1939 
     | 
    
         
            +
                  "\xf0\x9f\x98\xa8"=>"<span class=\x22emoji emoji1f628\x22></span>", "\xf0\x9f\x98\xa3"=>"<span class=\x22emoji emoji1f623\x22></span>", "\xf0\x9f\x98\xa1"=>"<span class=\x22emoji emoji1f621\x22></span>", "\xf0\x9f\x98\x8c"=>"<span class=\x22emoji emoji1f60c\x22></span>", "\xf0\x9f\x98\x96"=>"<span class=\x22emoji emoji1f616\x22></span>",
         
     | 
| 
      
 1940 
     | 
    
         
            +
                  "\xf0\x9f\x98\x94"=>"<span class=\x22emoji emoji1f614\x22></span>", "\xf0\x9f\x98\xb1"=>"<span class=\x22emoji emoji1f631\x22></span>", "\xf0\x9f\x98\xaa"=>"<span class=\x22emoji emoji1f62a\x22></span>", "\xf0\x9f\x98\x8f"=>"<span class=\x22emoji emoji1f60f\x22></span>", "\xf0\x9f\x98\x93"=>"<span class=\x22emoji emoji1f613\x22></span>",
         
     | 
| 
      
 1941 
     | 
    
         
            +
                  "\xf0\x9f\x98\xa5"=>"<span class=\x22emoji emoji1f625\x22></span>", "\xf0\x9f\x98\xab"=>"<span class=\x22emoji emoji1f62b\x22></span>", "\xf0\x9f\x98\x89"=>"<span class=\x22emoji emoji1f609\x22></span>", "\xf0\x9f\x98\xba"=>"<span class=\x22emoji emoji1f63a\x22></span>", "\xf0\x9f\x98\xb8"=>"<span class=\x22emoji emoji1f638\x22></span>",
         
     | 
| 
      
 1942 
     | 
    
         
            +
                  "\xf0\x9f\x98\xb9"=>"<span class=\x22emoji emoji1f639\x22></span>", "\xf0\x9f\x98\xbd"=>"<span class=\x22emoji emoji1f63d\x22></span>", "\xf0\x9f\x98\xbb"=>"<span class=\x22emoji emoji1f63b\x22></span>", "\xf0\x9f\x98\xbf"=>"<span class=\x22emoji emoji1f63f\x22></span>", "\xf0\x9f\x98\xbe"=>"<span class=\x22emoji emoji1f63e\x22></span>",
         
     | 
| 
      
 1943 
     | 
    
         
            +
                  "\xf0\x9f\x98\xbc"=>"<span class=\x22emoji emoji1f63c\x22></span>", "\xf0\x9f\x99\x80"=>"<span class=\x22emoji emoji1f640\x22></span>", "\xf0\x9f\x99\x85"=>"<span class=\x22emoji emoji1f645\x22></span>", "\xf0\x9f\x99\x86"=>"<span class=\x22emoji emoji1f646\x22></span>", "\xf0\x9f\x99\x87"=>"<span class=\x22emoji emoji1f647\x22></span>",
         
     | 
| 
      
 1944 
     | 
    
         
            +
                  "\xf0\x9f\x99\x88"=>"<span class=\x22emoji emoji1f648\x22></span>", "\xf0\x9f\x99\x8a"=>"<span class=\x22emoji emoji1f64a\x22></span>", "\xf0\x9f\x99\x89"=>"<span class=\x22emoji emoji1f649\x22></span>", "\xf0\x9f\x99\x8b"=>"<span class=\x22emoji emoji1f64b\x22></span>", "\xf0\x9f\x99\x8c"=>"<span class=\x22emoji emoji1f64c\x22></span>",
         
     | 
| 
      
 1945 
     | 
    
         
            +
                  "\xf0\x9f\x99\x8d"=>"<span class=\x22emoji emoji1f64d\x22></span>", "\xf0\x9f\x99\x8e"=>"<span class=\x22emoji emoji1f64e\x22></span>", "\xf0\x9f\x99\x8f"=>"<span class=\x22emoji emoji1f64f\x22></span>", "\xf0\x9f\x8f\xa0"=>"<span class=\x22emoji emoji1f3e0\x22></span>", "\xf0\x9f\x8f\xa1"=>"<span class=\x22emoji emoji1f3e1\x22></span>",
         
     | 
| 
      
 1946 
     | 
    
         
            +
                  "\xf0\x9f\x8f\xa2"=>"<span class=\x22emoji emoji1f3e2\x22></span>", "\xf0\x9f\x8f\xa3"=>"<span class=\x22emoji emoji1f3e3\x22></span>", "\xf0\x9f\x8f\xa5"=>"<span class=\x22emoji emoji1f3e5\x22></span>", "\xf0\x9f\x8f\xa6"=>"<span class=\x22emoji emoji1f3e6\x22></span>", "\xf0\x9f\x8f\xa7"=>"<span class=\x22emoji emoji1f3e7\x22></span>",
         
     | 
| 
      
 1947 
     | 
    
         
            +
                  "\xf0\x9f\x8f\xa8"=>"<span class=\x22emoji emoji1f3e8\x22></span>", "\xf0\x9f\x8f\xa9"=>"<span class=\x22emoji emoji1f3e9\x22></span>", "\xf0\x9f\x8f\xaa"=>"<span class=\x22emoji emoji1f3ea\x22></span>", "\xf0\x9f\x8f\xab"=>"<span class=\x22emoji emoji1f3eb\x22></span>", "\xe2\x9b\xaa"=>"<span class=\x22emoji emoji26ea\x22></span>",
         
     | 
| 
      
 1948 
     | 
    
         
            +
                  "\xe2\x9b\xb2"=>"<span class=\x22emoji emoji26f2\x22></span>", "\xf0\x9f\x8f\xac"=>"<span class=\x22emoji emoji1f3ec\x22></span>", "\xf0\x9f\x8f\xaf"=>"<span class=\x22emoji emoji1f3ef\x22></span>", "\xf0\x9f\x8f\xb0"=>"<span class=\x22emoji emoji1f3f0\x22></span>", "\xf0\x9f\x8f\xad"=>"<span class=\x22emoji emoji1f3ed\x22></span>",
         
     | 
| 
      
 1949 
     | 
    
         
            +
                  "\xe2\x9a\x93"=>"<span class=\x22emoji emoji2693\x22></span>", "\xf0\x9f\x8f\xae"=>"<span class=\x22emoji emoji1f3ee\x22></span>", "\xf0\x9f\x97\xbb"=>"<span class=\x22emoji emoji1f5fb\x22></span>", "\xf0\x9f\x97\xbc"=>"<span class=\x22emoji emoji1f5fc\x22></span>", "\xf0\x9f\x97\xbd"=>"<span class=\x22emoji emoji1f5fd\x22></span>",
         
     | 
| 
      
 1950 
     | 
    
         
            +
                  "\xf0\x9f\x97\xbe"=>"<span class=\x22emoji emoji1f5fe\x22></span>", "\xf0\x9f\x97\xbf"=>"<span class=\x22emoji emoji1f5ff\x22></span>", "\xf0\x9f\x91\x9e"=>"<span class=\x22emoji emoji1f45e\x22></span>", "\xf0\x9f\x91\x9f"=>"<span class=\x22emoji emoji1f45f\x22></span>", "\xf0\x9f\x91\xa0"=>"<span class=\x22emoji emoji1f460\x22></span>",
         
     | 
| 
      
 1951 
     | 
    
         
            +
                  "\xf0\x9f\x91\xa1"=>"<span class=\x22emoji emoji1f461\x22></span>", "\xf0\x9f\x91\xa2"=>"<span class=\x22emoji emoji1f462\x22></span>", "\xf0\x9f\x91\xa3"=>"<span class=\x22emoji emoji1f463\x22></span>", "\xf0\x9f\x91\x93"=>"<span class=\x22emoji emoji1f453\x22></span>", "\xf0\x9f\x91\x95"=>"<span class=\x22emoji emoji1f455\x22></span>",
         
     | 
| 
      
 1952 
     | 
    
         
            +
                  "\xf0\x9f\x91\x96"=>"<span class=\x22emoji emoji1f456\x22></span>", "\xf0\x9f\x91\x91"=>"<span class=\x22emoji emoji1f451\x22></span>", "\xf0\x9f\x91\x94"=>"<span class=\x22emoji emoji1f454\x22></span>", "\xf0\x9f\x91\x92"=>"<span class=\x22emoji emoji1f452\x22></span>", "\xf0\x9f\x91\x97"=>"<span class=\x22emoji emoji1f457\x22></span>",
         
     | 
| 
      
 1953 
     | 
    
         
            +
                  "\xf0\x9f\x91\x98"=>"<span class=\x22emoji emoji1f458\x22></span>", "\xf0\x9f\x91\x99"=>"<span class=\x22emoji emoji1f459\x22></span>", "\xf0\x9f\x91\x9a"=>"<span class=\x22emoji emoji1f45a\x22></span>", "\xf0\x9f\x91\x9b"=>"<span class=\x22emoji emoji1f45b\x22></span>", "\xf0\x9f\x91\x9c"=>"<span class=\x22emoji emoji1f45c\x22></span>",
         
     | 
| 
      
 1954 
     | 
    
         
            +
                  "\xf0\x9f\x91\x9d"=>"<span class=\x22emoji emoji1f45d\x22></span>", "\xf0\x9f\x92\xb0"=>"<span class=\x22emoji emoji1f4b0\x22></span>", "\xf0\x9f\x92\xb1"=>"<span class=\x22emoji emoji1f4b1\x22></span>", "\xf0\x9f\x92\xb9"=>"<span class=\x22emoji emoji1f4b9\x22></span>", "\xf0\x9f\x92\xb2"=>"<span class=\x22emoji emoji1f4b2\x22></span>",
         
     | 
| 
      
 1955 
     | 
    
         
            +
                  "\xf0\x9f\x92\xb3"=>"<span class=\x22emoji emoji1f4b3\x22></span>", "\xf0\x9f\x92\xb4"=>"<span class=\x22emoji emoji1f4b4\x22></span>", "\xf0\x9f\x92\xb5"=>"<span class=\x22emoji emoji1f4b5\x22></span>", "\xf0\x9f\x92\xb8"=>"<span class=\x22emoji emoji1f4b8\x22></span>", "\xf0\x9f\x87\xa8\xf0\x9f\x87\xb3"=>"<span class=\x22emoji emoji1f1e81f1f3\x22></span>",
         
     | 
| 
      
 1956 
     | 
    
         
            +
                  "\xf0\x9f\x87\xa9\xf0\x9f\x87\xaa"=>"<span class=\x22emoji emoji1f1e91f1ea\x22></span>", "\xf0\x9f\x87\xaa\xf0\x9f\x87\xb8"=>"<span class=\x22emoji emoji1f1ea1f1f8\x22></span>", "\xf0\x9f\x87\xab\xf0\x9f\x87\xb7"=>"<span class=\x22emoji emoji1f1eb1f1f7\x22></span>", "\xf0\x9f\x87\xac\xf0\x9f\x87\xa7"=>"<span class=\x22emoji emoji1f1ec1f1e7\x22></span>", "\xf0\x9f\x87\xae\xf0\x9f\x87\xb9"=>"<span class=\x22emoji emoji1f1ee1f1f9\x22></span>",
         
     | 
| 
      
 1957 
     | 
    
         
            +
                  "\xf0\x9f\x87\xaf\xf0\x9f\x87\xb5"=>"<span class=\x22emoji emoji1f1ef1f1f5\x22></span>", "\xf0\x9f\x87\xb0\xf0\x9f\x87\xb7"=>"<span class=\x22emoji emoji1f1f01f1f7\x22></span>", "\xf0\x9f\x87\xb7\xf0\x9f\x87\xba"=>"<span class=\x22emoji emoji1f1f71f1fa\x22></span>", "\xf0\x9f\x87\xba\xf0\x9f\x87\xb8"=>"<span class=\x22emoji emoji1f1fa1f1f8\x22></span>", "\xf0\x9f\x94\xa5"=>"<span class=\x22emoji emoji1f525\x22></span>",
         
     | 
| 
      
 1958 
     | 
    
         
            +
                  "\xf0\x9f\x94\xa6"=>"<span class=\x22emoji emoji1f526\x22></span>", "\xf0\x9f\x94\xa7"=>"<span class=\x22emoji emoji1f527\x22></span>", "\xf0\x9f\x94\xa8"=>"<span class=\x22emoji emoji1f528\x22></span>", "\xf0\x9f\x94\xa9"=>"<span class=\x22emoji emoji1f529\x22></span>", "\xf0\x9f\x94\xaa"=>"<span class=\x22emoji emoji1f52a\x22></span>",
         
     | 
| 
      
 1959 
     | 
    
         
            +
                  "\xf0\x9f\x94\xab"=>"<span class=\x22emoji emoji1f52b\x22></span>", "\xf0\x9f\x94\xae"=>"<span class=\x22emoji emoji1f52e\x22></span>", "\xf0\x9f\x94\xaf"=>"<span class=\x22emoji emoji1f52f\x22></span>", "\xf0\x9f\x94\xb0"=>"<span class=\x22emoji emoji1f530\x22></span>", "\xf0\x9f\x94\xb1"=>"<span class=\x22emoji emoji1f531\x22></span>",
         
     | 
| 
      
 1960 
     | 
    
         
            +
                  "\xf0\x9f\x92\x89"=>"<span class=\x22emoji emoji1f489\x22></span>", "\xf0\x9f\x92\x8a"=>"<span class=\x22emoji emoji1f48a\x22></span>", "\xf0\x9f\x85\xb0"=>"<span class=\x22emoji emoji1f170\x22></span>", "\xf0\x9f\x85\xb1"=>"<span class=\x22emoji emoji1f171\x22></span>", "\xf0\x9f\x86\x8e"=>"<span class=\x22emoji emoji1f18e\x22></span>",
         
     | 
| 
      
 1961 
     | 
    
         
            +
                  "\xf0\x9f\x85\xbe"=>"<span class=\x22emoji emoji1f17e\x22></span>", "\xf0\x9f\x8e\x80"=>"<span class=\x22emoji emoji1f380\x22></span>", "\xf0\x9f\x8e\x81"=>"<span class=\x22emoji emoji1f381\x22></span>", "\xf0\x9f\x8e\x82"=>"<span class=\x22emoji emoji1f382\x22></span>", "\xf0\x9f\x8e\x84"=>"<span class=\x22emoji emoji1f384\x22></span>",
         
     | 
| 
      
 1962 
     | 
    
         
            +
                  "\xf0\x9f\x8e\x85"=>"<span class=\x22emoji emoji1f385\x22></span>", "\xf0\x9f\x8e\x8c"=>"<span class=\x22emoji emoji1f38c\x22></span>", "\xf0\x9f\x8e\x86"=>"<span class=\x22emoji emoji1f386\x22></span>", "\xf0\x9f\x8e\x88"=>"<span class=\x22emoji emoji1f388\x22></span>", "\xf0\x9f\x8e\x89"=>"<span class=\x22emoji emoji1f389\x22></span>",
         
     | 
| 
      
 1963 
     | 
    
         
            +
                  "\xf0\x9f\x8e\x8d"=>"<span class=\x22emoji emoji1f38d\x22></span>", "\xf0\x9f\x8e\x8e"=>"<span class=\x22emoji emoji1f38e\x22></span>", "\xf0\x9f\x8e\x93"=>"<span class=\x22emoji emoji1f393\x22></span>", "\xf0\x9f\x8e\x92"=>"<span class=\x22emoji emoji1f392\x22></span>", "\xf0\x9f\x8e\x8f"=>"<span class=\x22emoji emoji1f38f\x22></span>",
         
     | 
| 
      
 1964 
     | 
    
         
            +
                  "\xf0\x9f\x8e\x87"=>"<span class=\x22emoji emoji1f387\x22></span>", "\xf0\x9f\x8e\x90"=>"<span class=\x22emoji emoji1f390\x22></span>", "\xf0\x9f\x8e\x83"=>"<span class=\x22emoji emoji1f383\x22></span>", "\xf0\x9f\x8e\x8a"=>"<span class=\x22emoji emoji1f38a\x22></span>", "\xf0\x9f\x8e\x8b"=>"<span class=\x22emoji emoji1f38b\x22></span>",
         
     | 
| 
      
 1965 
     | 
    
         
            +
                  "\xf0\x9f\x8e\x91"=>"<span class=\x22emoji emoji1f391\x22></span>", "\xf0\x9f\x93\x9f"=>"<span class=\x22emoji emoji1f4df\x22></span>", "\xe2\x98\x8e"=>"<span class=\x22emoji emoji260e\x22></span>", "\xf0\x9f\x93\x9e"=>"<span class=\x22emoji emoji1f4de\x22></span>", "\xf0\x9f\x93\xb1"=>"<span class=\x22emoji emoji1f4f1\x22></span>",
         
     | 
| 
      
 1966 
     | 
    
         
            +
                  "\xf0\x9f\x93\xb2"=>"<span class=\x22emoji emoji1f4f2\x22></span>", "\xf0\x9f\x93\x9d"=>"<span class=\x22emoji emoji1f4dd\x22></span>", "\xf0\x9f\x93\xa0"=>"<span class=\x22emoji emoji1f4e0\x22></span>", "\xe2\x9c\x89"=>"<span class=\x22emoji emoji2709\x22></span>", "\xf0\x9f\x93\xa8"=>"<span class=\x22emoji emoji1f4e8\x22></span>",
         
     | 
| 
      
 1967 
     | 
    
         
            +
                  "\xf0\x9f\x93\xa9"=>"<span class=\x22emoji emoji1f4e9\x22></span>", "\xf0\x9f\x93\xaa"=>"<span class=\x22emoji emoji1f4ea\x22></span>", "\xf0\x9f\x93\xab"=>"<span class=\x22emoji emoji1f4eb\x22></span>", "\xf0\x9f\x93\xae"=>"<span class=\x22emoji emoji1f4ee\x22></span>", "\xf0\x9f\x93\xb0"=>"<span class=\x22emoji emoji1f4f0\x22></span>",
         
     | 
| 
      
 1968 
     | 
    
         
            +
                  "\xf0\x9f\x93\xa2"=>"<span class=\x22emoji emoji1f4e2\x22></span>", "\xf0\x9f\x93\xa3"=>"<span class=\x22emoji emoji1f4e3\x22></span>", "\xf0\x9f\x93\xa1"=>"<span class=\x22emoji emoji1f4e1\x22></span>", "\xf0\x9f\x93\xa4"=>"<span class=\x22emoji emoji1f4e4\x22></span>", "\xf0\x9f\x93\xa5"=>"<span class=\x22emoji emoji1f4e5\x22></span>",
         
     | 
| 
      
 1969 
     | 
    
         
            +
                  "\xf0\x9f\x93\xa6"=>"<span class=\x22emoji emoji1f4e6\x22></span>", "\xf0\x9f\x93\xa7"=>"<span class=\x22emoji emoji1f4e7\x22></span>", "\xf0\x9f\x94\xa0"=>"<span class=\x22emoji emoji1f520\x22></span>", "\xf0\x9f\x94\xa1"=>"<span class=\x22emoji emoji1f521\x22></span>", "\xf0\x9f\x94\xa2"=>"<span class=\x22emoji emoji1f522\x22></span>",
         
     | 
| 
      
 1970 
     | 
    
         
            +
                  "\xf0\x9f\x94\xa3"=>"<span class=\x22emoji emoji1f523\x22></span>", "\xf0\x9f\x94\xa4"=>"<span class=\x22emoji emoji1f524\x22></span>", "\xe2\x9c\x92"=>"<span class=\x22emoji emoji2712\x22></span>", "\xf0\x9f\x92\xba"=>"<span class=\x22emoji emoji1f4ba\x22></span>", "\xf0\x9f\x92\xbb"=>"<span class=\x22emoji emoji1f4bb\x22></span>",
         
     | 
| 
      
 1971 
     | 
    
         
            +
                  "\xe2\x9c\x8f"=>"<span class=\x22emoji emoji270f\x22></span>", "\xf0\x9f\x93\x8e"=>"<span class=\x22emoji emoji1f4ce\x22></span>", "\xf0\x9f\x92\xbc"=>"<span class=\x22emoji emoji1f4bc\x22></span>", "\xf0\x9f\x92\xbd"=>"<span class=\x22emoji emoji1f4bd\x22></span>", "\xf0\x9f\x92\xbe"=>"<span class=\x22emoji emoji1f4be\x22></span>",
         
     | 
| 
      
 1972 
     | 
    
         
            +
                  "\xf0\x9f\x92\xbf"=>"<span class=\x22emoji emoji1f4bf\x22></span>", "\xf0\x9f\x93\x80"=>"<span class=\x22emoji emoji1f4c0\x22></span>", "\xe2\x9c\x82"=>"<span class=\x22emoji emoji2702\x22></span>", "\xf0\x9f\x93\x8d"=>"<span class=\x22emoji emoji1f4cd\x22></span>", "\xf0\x9f\x93\x83"=>"<span class=\x22emoji emoji1f4c3\x22></span>",
         
     | 
| 
      
 1973 
     | 
    
         
            +
                  "\xf0\x9f\x93\x84"=>"<span class=\x22emoji emoji1f4c4\x22></span>", "\xf0\x9f\x93\x85"=>"<span class=\x22emoji emoji1f4c5\x22></span>", "\xf0\x9f\x93\x81"=>"<span class=\x22emoji emoji1f4c1\x22></span>", "\xf0\x9f\x93\x82"=>"<span class=\x22emoji emoji1f4c2\x22></span>", "\xf0\x9f\x93\x93"=>"<span class=\x22emoji emoji1f4d3\x22></span>",
         
     | 
| 
      
 1974 
     | 
    
         
            +
                  "\xf0\x9f\x93\x96"=>"<span class=\x22emoji emoji1f4d6\x22></span>", "\xf0\x9f\x93\x94"=>"<span class=\x22emoji emoji1f4d4\x22></span>", "\xf0\x9f\x93\x95"=>"<span class=\x22emoji emoji1f4d5\x22></span>", "\xf0\x9f\x93\x97"=>"<span class=\x22emoji emoji1f4d7\x22></span>", "\xf0\x9f\x93\x98"=>"<span class=\x22emoji emoji1f4d8\x22></span>",
         
     | 
| 
      
 1975 
     | 
    
         
            +
                  "\xf0\x9f\x93\x99"=>"<span class=\x22emoji emoji1f4d9\x22></span>", "\xf0\x9f\x93\x9a"=>"<span class=\x22emoji emoji1f4da\x22></span>", "\xf0\x9f\x93\x9b"=>"<span class=\x22emoji emoji1f4db\x22></span>", "\xf0\x9f\x93\x9c"=>"<span class=\x22emoji emoji1f4dc\x22></span>", "\xf0\x9f\x93\x8b"=>"<span class=\x22emoji emoji1f4cb\x22></span>",
         
     | 
| 
      
 1976 
     | 
    
         
            +
                  "\xf0\x9f\x93\x86"=>"<span class=\x22emoji emoji1f4c6\x22></span>", "\xf0\x9f\x93\x8a"=>"<span class=\x22emoji emoji1f4ca\x22></span>", "\xf0\x9f\x93\x88"=>"<span class=\x22emoji emoji1f4c8\x22></span>", "\xf0\x9f\x93\x89"=>"<span class=\x22emoji emoji1f4c9\x22></span>", "\xf0\x9f\x93\x87"=>"<span class=\x22emoji emoji1f4c7\x22></span>",
         
     | 
| 
      
 1977 
     | 
    
         
            +
                  "\xf0\x9f\x93\x8c"=>"<span class=\x22emoji emoji1f4cc\x22></span>", "\xf0\x9f\x93\x92"=>"<span class=\x22emoji emoji1f4d2\x22></span>", "\xf0\x9f\x93\x8f"=>"<span class=\x22emoji emoji1f4cf\x22></span>", "\xf0\x9f\x93\x90"=>"<span class=\x22emoji emoji1f4d0\x22></span>", "\xf0\x9f\x93\x91"=>"<span class=\x22emoji emoji1f4d1\x22></span>",
         
     | 
| 
      
 1978 
     | 
    
         
            +
                  "\xf0\x9f\x8e\xbd"=>"<span class=\x22emoji emoji1f3bd\x22></span>", "\xe2\x9a\xbe"=>"<span class=\x22emoji emoji26be\x22></span>", "\xe2\x9b\xb3"=>"<span class=\x22emoji emoji26f3\x22></span>", "\xf0\x9f\x8e\xbe"=>"<span class=\x22emoji emoji1f3be\x22></span>", "\xe2\x9a\xbd"=>"<span class=\x22emoji emoji26bd\x22></span>",
         
     | 
| 
      
 1979 
     | 
    
         
            +
                  "\xf0\x9f\x8e\xbf"=>"<span class=\x22emoji emoji1f3bf\x22></span>", "\xf0\x9f\x8f\x80"=>"<span class=\x22emoji emoji1f3c0\x22></span>", "\xf0\x9f\x8f\x81"=>"<span class=\x22emoji emoji1f3c1\x22></span>", "\xf0\x9f\x8f\x82"=>"<span class=\x22emoji emoji1f3c2\x22></span>", "\xf0\x9f\x8f\x83"=>"<span class=\x22emoji emoji1f3c3\x22></span>",
         
     | 
| 
      
 1980 
     | 
    
         
            +
                  "\xf0\x9f\x8f\x84"=>"<span class=\x22emoji emoji1f3c4\x22></span>", "\xf0\x9f\x8f\x86"=>"<span class=\x22emoji emoji1f3c6\x22></span>", "\xf0\x9f\x8f\x88"=>"<span class=\x22emoji emoji1f3c8\x22></span>", "\xf0\x9f\x8f\x8a"=>"<span class=\x22emoji emoji1f3ca\x22></span>", "\xf0\x9f\x9a\x83"=>"<span class=\x22emoji emoji1f683\x22></span>",
         
     | 
| 
      
 1981 
     | 
    
         
            +
                  "\xf0\x9f\x9a\x87"=>"<span class=\x22emoji emoji1f687\x22></span>", "\xe2\x93\x82"=>"<span class=\x22emoji emoji24c2\x22></span>", "\xf0\x9f\x9a\x84"=>"<span class=\x22emoji emoji1f684\x22></span>", "\xf0\x9f\x9a\x85"=>"<span class=\x22emoji emoji1f685\x22></span>", "\xf0\x9f\x9a\x97"=>"<span class=\x22emoji emoji1f697\x22></span>",
         
     | 
| 
      
 1982 
     | 
    
         
            +
                  "\xf0\x9f\x9a\x99"=>"<span class=\x22emoji emoji1f699\x22></span>", "\xf0\x9f\x9a\x8c"=>"<span class=\x22emoji emoji1f68c\x22></span>", "\xf0\x9f\x9a\x8f"=>"<span class=\x22emoji emoji1f68f\x22></span>", "\xf0\x9f\x9a\xa2"=>"<span class=\x22emoji emoji1f6a2\x22></span>", "\xe2\x9c\x88"=>"<span class=\x22emoji emoji2708\x22></span>",
         
     | 
| 
      
 1983 
     | 
    
         
            +
                  "\xe2\x9b\xb5"=>"<span class=\x22emoji emoji26f5\x22></span>", "\xf0\x9f\x9a\x89"=>"<span class=\x22emoji emoji1f689\x22></span>", "\xf0\x9f\x9a\x80"=>"<span class=\x22emoji emoji1f680\x22></span>", "\xf0\x9f\x9a\xa4"=>"<span class=\x22emoji emoji1f6a4\x22></span>", "\xf0\x9f\x9a\x95"=>"<span class=\x22emoji emoji1f695\x22></span>",
         
     | 
| 
      
 1984 
     | 
    
         
            +
                  "\xf0\x9f\x9a\x9a"=>"<span class=\x22emoji emoji1f69a\x22></span>", "\xf0\x9f\x9a\x92"=>"<span class=\x22emoji emoji1f692\x22></span>", "\xf0\x9f\x9a\x91"=>"<span class=\x22emoji emoji1f691\x22></span>", "\xf0\x9f\x9a\x93"=>"<span class=\x22emoji emoji1f693\x22></span>", "\xe2\x9b\xbd"=>"<span class=\x22emoji emoji26fd\x22></span>",
         
     | 
| 
      
 1985 
     | 
    
         
            +
                  "\xf0\x9f\x85\xbf"=>"<span class=\x22emoji emoji1f17f\x22></span>", "\xf0\x9f\x9a\xa5"=>"<span class=\x22emoji emoji1f6a5\x22></span>", "\xf0\x9f\x9a\xa7"=>"<span class=\x22emoji emoji1f6a7\x22></span>", "\xf0\x9f\x9a\xa8"=>"<span class=\x22emoji emoji1f6a8\x22></span>", "\xe2\x99\xa8"=>"<span class=\x22emoji emoji2668\x22></span>",
         
     | 
| 
      
 1986 
     | 
    
         
            +
                  "\xe2\x9b\xba"=>"<span class=\x22emoji emoji26fa\x22></span>", "\xf0\x9f\x8e\xa0"=>"<span class=\x22emoji emoji1f3a0\x22></span>", "\xf0\x9f\x8e\xa1"=>"<span class=\x22emoji emoji1f3a1\x22></span>", "\xf0\x9f\x8e\xa2"=>"<span class=\x22emoji emoji1f3a2\x22></span>", "\xf0\x9f\x8e\xa3"=>"<span class=\x22emoji emoji1f3a3\x22></span>",
         
     | 
| 
      
 1987 
     | 
    
         
            +
                  "\xf0\x9f\x8e\xa4"=>"<span class=\x22emoji emoji1f3a4\x22></span>", "\xf0\x9f\x8e\xa5"=>"<span class=\x22emoji emoji1f3a5\x22></span>", "\xf0\x9f\x8e\xa6"=>"<span class=\x22emoji emoji1f3a6\x22></span>", "\xf0\x9f\x8e\xa7"=>"<span class=\x22emoji emoji1f3a7\x22></span>", "\xf0\x9f\x8e\xa8"=>"<span class=\x22emoji emoji1f3a8\x22></span>",
         
     | 
| 
      
 1988 
     | 
    
         
            +
                  "\xf0\x9f\x8e\xa9"=>"<span class=\x22emoji emoji1f3a9\x22></span>", "\xf0\x9f\x8e\xaa"=>"<span class=\x22emoji emoji1f3aa\x22></span>", "\xf0\x9f\x8e\xab"=>"<span class=\x22emoji emoji1f3ab\x22></span>", "\xf0\x9f\x8e\xac"=>"<span class=\x22emoji emoji1f3ac\x22></span>", "\xf0\x9f\x8e\xad"=>"<span class=\x22emoji emoji1f3ad\x22></span>",
         
     | 
| 
      
 1989 
     | 
    
         
            +
                  "\xf0\x9f\x8e\xae"=>"<span class=\x22emoji emoji1f3ae\x22></span>", "\xf0\x9f\x80\x84"=>"<span class=\x22emoji emoji1f004\x22></span>", "\xf0\x9f\x8e\xaf"=>"<span class=\x22emoji emoji1f3af\x22></span>", "\xf0\x9f\x8e\xb0"=>"<span class=\x22emoji emoji1f3b0\x22></span>", "\xf0\x9f\x8e\xb1"=>"<span class=\x22emoji emoji1f3b1\x22></span>",
         
     | 
| 
      
 1990 
     | 
    
         
            +
                  "\xf0\x9f\x8e\xb2"=>"<span class=\x22emoji emoji1f3b2\x22></span>", "\xf0\x9f\x8e\xb3"=>"<span class=\x22emoji emoji1f3b3\x22></span>", "\xf0\x9f\x8e\xb4"=>"<span class=\x22emoji emoji1f3b4\x22></span>", "\xf0\x9f\x83\x8f"=>"<span class=\x22emoji emoji1f0cf\x22></span>", "\xf0\x9f\x8e\xb5"=>"<span class=\x22emoji emoji1f3b5\x22></span>",
         
     | 
| 
      
 1991 
     | 
    
         
            +
                  "\xf0\x9f\x8e\xb6"=>"<span class=\x22emoji emoji1f3b6\x22></span>", "\xf0\x9f\x8e\xb7"=>"<span class=\x22emoji emoji1f3b7\x22></span>", "\xf0\x9f\x8e\xb8"=>"<span class=\x22emoji emoji1f3b8\x22></span>", "\xf0\x9f\x8e\xb9"=>"<span class=\x22emoji emoji1f3b9\x22></span>", "\xf0\x9f\x8e\xba"=>"<span class=\x22emoji emoji1f3ba\x22></span>",
         
     | 
| 
      
 1992 
     | 
    
         
            +
                  "\xf0\x9f\x8e\xbb"=>"<span class=\x22emoji emoji1f3bb\x22></span>", "\xf0\x9f\x8e\xbc"=>"<span class=\x22emoji emoji1f3bc\x22></span>", "\xe3\x80\xbd"=>"<span class=\x22emoji emoji303d\x22></span>", "\xf0\x9f\x93\xb7"=>"<span class=\x22emoji emoji1f4f7\x22></span>", "\xf0\x9f\x93\xb9"=>"<span class=\x22emoji emoji1f4f9\x22></span>",
         
     | 
| 
      
 1993 
     | 
    
         
            +
                  "\xf0\x9f\x93\xba"=>"<span class=\x22emoji emoji1f4fa\x22></span>", "\xf0\x9f\x93\xbb"=>"<span class=\x22emoji emoji1f4fb\x22></span>", "\xf0\x9f\x93\xbc"=>"<span class=\x22emoji emoji1f4fc\x22></span>", "\xf0\x9f\x92\x8b"=>"<span class=\x22emoji emoji1f48b\x22></span>", "\xf0\x9f\x92\x8c"=>"<span class=\x22emoji emoji1f48c\x22></span>",
         
     | 
| 
      
 1994 
     | 
    
         
            +
                  "\xf0\x9f\x92\x8d"=>"<span class=\x22emoji emoji1f48d\x22></span>", "\xf0\x9f\x92\x8e"=>"<span class=\x22emoji emoji1f48e\x22></span>", "\xf0\x9f\x92\x8f"=>"<span class=\x22emoji emoji1f48f\x22></span>", "\xf0\x9f\x92\x90"=>"<span class=\x22emoji emoji1f490\x22></span>", "\xf0\x9f\x92\x91"=>"<span class=\x22emoji emoji1f491\x22></span>",
         
     | 
| 
      
 1995 
     | 
    
         
            +
                  "\xf0\x9f\x92\x92"=>"<span class=\x22emoji emoji1f492\x22></span>", "\xf0\x9f\x94\x9e"=>"<span class=\x22emoji emoji1f51e\x22></span>", "\xc2\xa9"=>"<span class=\x22emoji emojia9\x22></span>", "\xc2\xae"=>"<span class=\x22emoji emojiae\x22></span>", "\xe2\x84\xa2"=>"<span class=\x22emoji emoji2122\x22></span>",
         
     | 
| 
      
 1996 
     | 
    
         
            +
                  "\xe2\x84\xb9"=>"<span class=\x22emoji emoji2139\x22></span>", "#\xe2\x83\xa3"=>"<span class=\x22emoji emoji2320e3\x22></span>", "1\xe2\x83\xa3"=>"<span class=\x22emoji emoji3120e3\x22></span>", "2\xe2\x83\xa3"=>"<span class=\x22emoji emoji3220e3\x22></span>", "3\xe2\x83\xa3"=>"<span class=\x22emoji emoji3320e3\x22></span>",
         
     | 
| 
      
 1997 
     | 
    
         
            +
                  "4\xe2\x83\xa3"=>"<span class=\x22emoji emoji3420e3\x22></span>", "5\xe2\x83\xa3"=>"<span class=\x22emoji emoji3520e3\x22></span>", "6\xe2\x83\xa3"=>"<span class=\x22emoji emoji3620e3\x22></span>", "7\xe2\x83\xa3"=>"<span class=\x22emoji emoji3720e3\x22></span>", "8\xe2\x83\xa3"=>"<span class=\x22emoji emoji3820e3\x22></span>",
         
     | 
| 
      
 1998 
     | 
    
         
            +
                  "9\xe2\x83\xa3"=>"<span class=\x22emoji emoji3920e3\x22></span>", "0\xe2\x83\xa3"=>"<span class=\x22emoji emoji3020e3\x22></span>", "\xf0\x9f\x94\x9f"=>"<span class=\x22emoji emoji1f51f\x22></span>", "\xf0\x9f\x93\xb6"=>"<span class=\x22emoji emoji1f4f6\x22></span>", "\xf0\x9f\x93\xb3"=>"<span class=\x22emoji emoji1f4f3\x22></span>",
         
     | 
| 
      
 1999 
     | 
    
         
            +
                  "\xf0\x9f\x93\xb4"=>"<span class=\x22emoji emoji1f4f4\x22></span>", "\xf0\x9f\x8d\x94"=>"<span class=\x22emoji emoji1f354\x22></span>", "\xf0\x9f\x8d\x99"=>"<span class=\x22emoji emoji1f359\x22></span>", "\xf0\x9f\x8d\xb0"=>"<span class=\x22emoji emoji1f370\x22></span>", "\xf0\x9f\x8d\x9c"=>"<span class=\x22emoji emoji1f35c\x22></span>",
         
     | 
| 
      
 2000 
     | 
    
         
            +
                  "\xf0\x9f\x8d\x9e"=>"<span class=\x22emoji emoji1f35e\x22></span>", "\xf0\x9f\x8d\xb3"=>"<span class=\x22emoji emoji1f373\x22></span>", "\xf0\x9f\x8d\xa6"=>"<span class=\x22emoji emoji1f366\x22></span>", "\xf0\x9f\x8d\x9f"=>"<span class=\x22emoji emoji1f35f\x22></span>", "\xf0\x9f\x8d\xa1"=>"<span class=\x22emoji emoji1f361\x22></span>",
         
     | 
| 
      
 2001 
     | 
    
         
            +
                  "\xf0\x9f\x8d\x98"=>"<span class=\x22emoji emoji1f358\x22></span>", "\xf0\x9f\x8d\x9a"=>"<span class=\x22emoji emoji1f35a\x22></span>", "\xf0\x9f\x8d\x9d"=>"<span class=\x22emoji emoji1f35d\x22></span>", "\xf0\x9f\x8d\x9b"=>"<span class=\x22emoji emoji1f35b\x22></span>", "\xf0\x9f\x8d\xa2"=>"<span class=\x22emoji emoji1f362\x22></span>",
         
     | 
| 
      
 2002 
     | 
    
         
            +
                  "\xf0\x9f\x8d\xa3"=>"<span class=\x22emoji emoji1f363\x22></span>", "\xf0\x9f\x8d\xb1"=>"<span class=\x22emoji emoji1f371\x22></span>", "\xf0\x9f\x8d\xb2"=>"<span class=\x22emoji emoji1f372\x22></span>", "\xf0\x9f\x8d\xa7"=>"<span class=\x22emoji emoji1f367\x22></span>", "\xf0\x9f\x8d\x96"=>"<span class=\x22emoji emoji1f356\x22></span>",
         
     | 
| 
      
 2003 
     | 
    
         
            +
                  "\xf0\x9f\x8d\xa5"=>"<span class=\x22emoji emoji1f365\x22></span>", "\xf0\x9f\x8d\xa0"=>"<span class=\x22emoji emoji1f360\x22></span>", "\xf0\x9f\x8d\x95"=>"<span class=\x22emoji emoji1f355\x22></span>", "\xf0\x9f\x8d\x97"=>"<span class=\x22emoji emoji1f357\x22></span>", "\xf0\x9f\x8d\xa8"=>"<span class=\x22emoji emoji1f368\x22></span>",
         
     | 
| 
      
 2004 
     | 
    
         
            +
                  "\xf0\x9f\x8d\xa9"=>"<span class=\x22emoji emoji1f369\x22></span>", "\xf0\x9f\x8d\xaa"=>"<span class=\x22emoji emoji1f36a\x22></span>", "\xf0\x9f\x8d\xab"=>"<span class=\x22emoji emoji1f36b\x22></span>", "\xf0\x9f\x8d\xac"=>"<span class=\x22emoji emoji1f36c\x22></span>", "\xf0\x9f\x8d\xad"=>"<span class=\x22emoji emoji1f36d\x22></span>",
         
     | 
| 
      
 2005 
     | 
    
         
            +
                  "\xf0\x9f\x8d\xae"=>"<span class=\x22emoji emoji1f36e\x22></span>", "\xf0\x9f\x8d\xaf"=>"<span class=\x22emoji emoji1f36f\x22></span>", "\xf0\x9f\x8d\xa4"=>"<span class=\x22emoji emoji1f364\x22></span>", "\xf0\x9f\x8d\xb4"=>"<span class=\x22emoji emoji1f374\x22></span>", "\xe2\x98\x95"=>"<span class=\x22emoji emoji2615\x22></span>",
         
     | 
| 
      
 2006 
     | 
    
         
            +
                  "\xf0\x9f\x8d\xb8"=>"<span class=\x22emoji emoji1f378\x22></span>", "\xf0\x9f\x8d\xba"=>"<span class=\x22emoji emoji1f37a\x22></span>", "\xf0\x9f\x8d\xb5"=>"<span class=\x22emoji emoji1f375\x22></span>", "\xf0\x9f\x8d\xb6"=>"<span class=\x22emoji emoji1f376\x22></span>", "\xf0\x9f\x8d\xb7"=>"<span class=\x22emoji emoji1f377\x22></span>",
         
     | 
| 
      
 2007 
     | 
    
         
            +
                  "\xf0\x9f\x8d\xbb"=>"<span class=\x22emoji emoji1f37b\x22></span>", "\xf0\x9f\x8d\xb9"=>"<span class=\x22emoji emoji1f379\x22></span>", "\xe2\x86\x97"=>"<span class=\x22emoji emoji2197\x22></span>", "\xe2\x86\x98"=>"<span class=\x22emoji emoji2198\x22></span>", "\xe2\x86\x96"=>"<span class=\x22emoji emoji2196\x22></span>",
         
     | 
| 
      
 2008 
     | 
    
         
            +
                  "\xe2\x86\x99"=>"<span class=\x22emoji emoji2199\x22></span>", "\xe2\xa4\xb4"=>"<span class=\x22emoji emoji2934\x22></span>", "\xe2\xa4\xb5"=>"<span class=\x22emoji emoji2935\x22></span>", "\xe2\x86\x94"=>"<span class=\x22emoji emoji2194\x22></span>", "\xe2\x86\x95"=>"<span class=\x22emoji emoji2195\x22></span>",
         
     | 
| 
      
 2009 
     | 
    
         
            +
                  "\xe2\xac\x86"=>"<span class=\x22emoji emoji2b06\x22></span>", "\xe2\xac\x87"=>"<span class=\x22emoji emoji2b07\x22></span>", "\xe2\x9e\xa1"=>"<span class=\x22emoji emoji27a1\x22></span>", "\xe2\xac\x85"=>"<span class=\x22emoji emoji2b05\x22></span>", "\xe2\x96\xb6"=>"<span class=\x22emoji emoji25b6\x22></span>",
         
     | 
| 
      
 2010 
     | 
    
         
            +
                  "\xe2\x97\x80"=>"<span class=\x22emoji emoji25c0\x22></span>", "\xe2\x8f\xa9"=>"<span class=\x22emoji emoji23e9\x22></span>", "\xe2\x8f\xaa"=>"<span class=\x22emoji emoji23ea\x22></span>", "\xe2\x8f\xab"=>"<span class=\x22emoji emoji23eb\x22></span>", "\xe2\x8f\xac"=>"<span class=\x22emoji emoji23ec\x22></span>",
         
     | 
| 
      
 2011 
     | 
    
         
            +
                  "\xf0\x9f\x94\xba"=>"<span class=\x22emoji emoji1f53a\x22></span>", "\xf0\x9f\x94\xbb"=>"<span class=\x22emoji emoji1f53b\x22></span>", "\xf0\x9f\x94\xbc"=>"<span class=\x22emoji emoji1f53c\x22></span>", "\xf0\x9f\x94\xbd"=>"<span class=\x22emoji emoji1f53d\x22></span>", "\xe2\xad\x95"=>"<span class=\x22emoji emoji2b55\x22></span>",
         
     | 
| 
      
 2012 
     | 
    
         
            +
                  "\xe2\x9d\x8c"=>"<span class=\x22emoji emoji274c\x22></span>", "\xe2\x9d\x8e"=>"<span class=\x22emoji emoji274e\x22></span>", "\xe2\x9d\x97"=>"<span class=\x22emoji emoji2757\x22></span>", "\xe2\x81\x89"=>"<span class=\x22emoji emoji2049\x22></span>", "\xe2\x80\xbc"=>"<span class=\x22emoji emoji203c\x22></span>",
         
     | 
| 
      
 2013 
     | 
    
         
            +
                  "\xe2\x9d\x93"=>"<span class=\x22emoji emoji2753\x22></span>", "\xe2\x9d\x94"=>"<span class=\x22emoji emoji2754\x22></span>", "\xe2\x9d\x95"=>"<span class=\x22emoji emoji2755\x22></span>", "\xe3\x80\xb0"=>"<span class=\x22emoji emoji3030\x22></span>", "\xe2\x9e\xb0"=>"<span class=\x22emoji emoji27b0\x22></span>",
         
     | 
| 
      
 2014 
     | 
    
         
            +
                  "\xe2\x9e\xbf"=>"<span class=\x22emoji emoji27bf\x22></span>", "\xe2\x9d\xa4"=>"<span class=\x22emoji emoji2764\x22></span>", "\xf0\x9f\x92\x93"=>"<span class=\x22emoji emoji1f493\x22></span>", "\xf0\x9f\x92\x94"=>"<span class=\x22emoji emoji1f494\x22></span>", "\xf0\x9f\x92\x95"=>"<span class=\x22emoji emoji1f495\x22></span>",
         
     | 
| 
      
 2015 
     | 
    
         
            +
                  "\xf0\x9f\x92\x96"=>"<span class=\x22emoji emoji1f496\x22></span>", "\xf0\x9f\x92\x97"=>"<span class=\x22emoji emoji1f497\x22></span>", "\xf0\x9f\x92\x98"=>"<span class=\x22emoji emoji1f498\x22></span>", "\xf0\x9f\x92\x99"=>"<span class=\x22emoji emoji1f499\x22></span>", "\xf0\x9f\x92\x9a"=>"<span class=\x22emoji emoji1f49a\x22></span>",
         
     | 
| 
      
 2016 
     | 
    
         
            +
                  "\xf0\x9f\x92\x9b"=>"<span class=\x22emoji emoji1f49b\x22></span>", "\xf0\x9f\x92\x9c"=>"<span class=\x22emoji emoji1f49c\x22></span>", "\xf0\x9f\x92\x9d"=>"<span class=\x22emoji emoji1f49d\x22></span>", "\xf0\x9f\x92\x9e"=>"<span class=\x22emoji emoji1f49e\x22></span>", "\xf0\x9f\x92\x9f"=>"<span class=\x22emoji emoji1f49f\x22></span>",
         
     | 
| 
      
 2017 
     | 
    
         
            +
                  "\xe2\x99\xa5"=>"<span class=\x22emoji emoji2665\x22></span>", "\xe2\x99\xa0"=>"<span class=\x22emoji emoji2660\x22></span>", "\xe2\x99\xa6"=>"<span class=\x22emoji emoji2666\x22></span>", "\xe2\x99\xa3"=>"<span class=\x22emoji emoji2663\x22></span>", "\xf0\x9f\x9a\xac"=>"<span class=\x22emoji emoji1f6ac\x22></span>",
         
     | 
| 
      
 2018 
     | 
    
         
            +
                  "\xf0\x9f\x9a\xad"=>"<span class=\x22emoji emoji1f6ad\x22></span>", "\xe2\x99\xbf"=>"<span class=\x22emoji emoji267f\x22></span>", "\xf0\x9f\x9a\xa9"=>"<span class=\x22emoji emoji1f6a9\x22></span>", "\xe2\x9a\xa0"=>"<span class=\x22emoji emoji26a0\x22></span>", "\xe2\x9b\x94"=>"<span class=\x22emoji emoji26d4\x22></span>",
         
     | 
| 
      
 2019 
     | 
    
         
            +
                  "\xe2\x99\xbb"=>"<span class=\x22emoji emoji267b\x22></span>", "\xf0\x9f\x9a\xb2"=>"<span class=\x22emoji emoji1f6b2\x22></span>", "\xf0\x9f\x9a\xb6"=>"<span class=\x22emoji emoji1f6b6\x22></span>", "\xf0\x9f\x9a\xb9"=>"<span class=\x22emoji emoji1f6b9\x22></span>", "\xf0\x9f\x9a\xba"=>"<span class=\x22emoji emoji1f6ba\x22></span>",
         
     | 
| 
      
 2020 
     | 
    
         
            +
                  "\xf0\x9f\x9b\x80"=>"<span class=\x22emoji emoji1f6c0\x22></span>", "\xf0\x9f\x9a\xbb"=>"<span class=\x22emoji emoji1f6bb\x22></span>", "\xf0\x9f\x9a\xbd"=>"<span class=\x22emoji emoji1f6bd\x22></span>", "\xf0\x9f\x9a\xbe"=>"<span class=\x22emoji emoji1f6be\x22></span>", "\xf0\x9f\x9a\xbc"=>"<span class=\x22emoji emoji1f6bc\x22></span>",
         
     | 
| 
      
 2021 
     | 
    
         
            +
                  "\xf0\x9f\x9a\xaa"=>"<span class=\x22emoji emoji1f6aa\x22></span>", "\xf0\x9f\x9a\xab"=>"<span class=\x22emoji emoji1f6ab\x22></span>", "\xe2\x9c\x94"=>"<span class=\x22emoji emoji2714\x22></span>", "\xf0\x9f\x86\x91"=>"<span class=\x22emoji emoji1f191\x22></span>", "\xf0\x9f\x86\x92"=>"<span class=\x22emoji emoji1f192\x22></span>",
         
     | 
| 
      
 2022 
     | 
    
         
            +
                  "\xf0\x9f\x86\x93"=>"<span class=\x22emoji emoji1f193\x22></span>", "\xf0\x9f\x86\x94"=>"<span class=\x22emoji emoji1f194\x22></span>", "\xf0\x9f\x86\x95"=>"<span class=\x22emoji emoji1f195\x22></span>", "\xf0\x9f\x86\x96"=>"<span class=\x22emoji emoji1f196\x22></span>", "\xf0\x9f\x86\x97"=>"<span class=\x22emoji emoji1f197\x22></span>",
         
     | 
| 
      
 2023 
     | 
    
         
            +
                  "\xf0\x9f\x86\x98"=>"<span class=\x22emoji emoji1f198\x22></span>", "\xf0\x9f\x86\x99"=>"<span class=\x22emoji emoji1f199\x22></span>", "\xf0\x9f\x86\x9a"=>"<span class=\x22emoji emoji1f19a\x22></span>", "\xf0\x9f\x88\x81"=>"<span class=\x22emoji emoji1f201\x22></span>", "\xf0\x9f\x88\x82"=>"<span class=\x22emoji emoji1f202\x22></span>",
         
     | 
| 
      
 2024 
     | 
    
         
            +
                  "\xf0\x9f\x88\xb2"=>"<span class=\x22emoji emoji1f232\x22></span>", "\xf0\x9f\x88\xb3"=>"<span class=\x22emoji emoji1f233\x22></span>", "\xf0\x9f\x88\xb4"=>"<span class=\x22emoji emoji1f234\x22></span>", "\xf0\x9f\x88\xb5"=>"<span class=\x22emoji emoji1f235\x22></span>", "\xf0\x9f\x88\xb6"=>"<span class=\x22emoji emoji1f236\x22></span>",
         
     | 
| 
      
 2025 
     | 
    
         
            +
                  "\xf0\x9f\x88\x9a"=>"<span class=\x22emoji emoji1f21a\x22></span>", "\xf0\x9f\x88\xb7"=>"<span class=\x22emoji emoji1f237\x22></span>", "\xf0\x9f\x88\xb8"=>"<span class=\x22emoji emoji1f238\x22></span>", "\xf0\x9f\x88\xb9"=>"<span class=\x22emoji emoji1f239\x22></span>", "\xf0\x9f\x88\xaf"=>"<span class=\x22emoji emoji1f22f\x22></span>",
         
     | 
| 
      
 2026 
     | 
    
         
            +
                  "\xf0\x9f\x88\xba"=>"<span class=\x22emoji emoji1f23a\x22></span>", "\xe3\x8a\x99"=>"<span class=\x22emoji emoji3299\x22></span>", "\xe3\x8a\x97"=>"<span class=\x22emoji emoji3297\x22></span>", "\xf0\x9f\x89\x90"=>"<span class=\x22emoji emoji1f250\x22></span>", "\xf0\x9f\x89\x91"=>"<span class=\x22emoji emoji1f251\x22></span>",
         
     | 
| 
      
 2027 
     | 
    
         
            +
                  "\xe2\x9e\x95"=>"<span class=\x22emoji emoji2795\x22></span>", "\xe2\x9e\x96"=>"<span class=\x22emoji emoji2796\x22></span>", "\xe2\x9c\x96"=>"<span class=\x22emoji emoji2716\x22></span>", "\xe2\x9e\x97"=>"<span class=\x22emoji emoji2797\x22></span>", "\xf0\x9f\x92\xa0"=>"<span class=\x22emoji emoji1f4a0\x22></span>",
         
     | 
| 
      
 2028 
     | 
    
         
            +
                  "\xf0\x9f\x92\xa1"=>"<span class=\x22emoji emoji1f4a1\x22></span>", "\xf0\x9f\x92\xa2"=>"<span class=\x22emoji emoji1f4a2\x22></span>", "\xf0\x9f\x92\xa3"=>"<span class=\x22emoji emoji1f4a3\x22></span>", "\xf0\x9f\x92\xa4"=>"<span class=\x22emoji emoji1f4a4\x22></span>", "\xf0\x9f\x92\xa5"=>"<span class=\x22emoji emoji1f4a5\x22></span>",
         
     | 
| 
      
 2029 
     | 
    
         
            +
                  "\xf0\x9f\x92\xa6"=>"<span class=\x22emoji emoji1f4a6\x22></span>", "\xf0\x9f\x92\xa7"=>"<span class=\x22emoji emoji1f4a7\x22></span>", "\xf0\x9f\x92\xa8"=>"<span class=\x22emoji emoji1f4a8\x22></span>", "\xf0\x9f\x92\xa9"=>"<span class=\x22emoji emoji1f4a9\x22></span>", "\xf0\x9f\x92\xaa"=>"<span class=\x22emoji emoji1f4aa\x22></span>",
         
     | 
| 
      
 2030 
     | 
    
         
            +
                  "\xf0\x9f\x92\xab"=>"<span class=\x22emoji emoji1f4ab\x22></span>", "\xf0\x9f\x92\xac"=>"<span class=\x22emoji emoji1f4ac\x22></span>", "\xe2\x9c\xa8"=>"<span class=\x22emoji emoji2728\x22></span>", "\xe2\x9c\xb4"=>"<span class=\x22emoji emoji2734\x22></span>", "\xe2\x9c\xb3"=>"<span class=\x22emoji emoji2733\x22></span>",
         
     | 
| 
      
 2031 
     | 
    
         
            +
                  "\xe2\x9a\xaa"=>"<span class=\x22emoji emoji26aa\x22></span>", "\xe2\x9a\xab"=>"<span class=\x22emoji emoji26ab\x22></span>", "\xf0\x9f\x94\xb4"=>"<span class=\x22emoji emoji1f534\x22></span>", "\xf0\x9f\x94\xb5"=>"<span class=\x22emoji emoji1f535\x22></span>", "\xf0\x9f\x94\xb2"=>"<span class=\x22emoji emoji1f532\x22></span>",
         
     | 
| 
      
 2032 
     | 
    
         
            +
                  "\xf0\x9f\x94\xb3"=>"<span class=\x22emoji emoji1f533\x22></span>", "\xe2\xad\x90"=>"<span class=\x22emoji emoji2b50\x22></span>", "\xe2\xac\x9c"=>"<span class=\x22emoji emoji2b1c\x22></span>", "\xe2\xac\x9b"=>"<span class=\x22emoji emoji2b1b\x22></span>", "\xe2\x96\xab"=>"<span class=\x22emoji emoji25ab\x22></span>",
         
     | 
| 
      
 2033 
     | 
    
         
            +
                  "\xe2\x96\xaa"=>"<span class=\x22emoji emoji25aa\x22></span>", "\xe2\x97\xbd"=>"<span class=\x22emoji emoji25fd\x22></span>", "\xe2\x97\xbe"=>"<span class=\x22emoji emoji25fe\x22></span>", "\xe2\x97\xbb"=>"<span class=\x22emoji emoji25fb\x22></span>", "\xe2\x97\xbc"=>"<span class=\x22emoji emoji25fc\x22></span>",
         
     | 
| 
      
 2034 
     | 
    
         
            +
                  "\xf0\x9f\x94\xb6"=>"<span class=\x22emoji emoji1f536\x22></span>", "\xf0\x9f\x94\xb7"=>"<span class=\x22emoji emoji1f537\x22></span>", "\xf0\x9f\x94\xb8"=>"<span class=\x22emoji emoji1f538\x22></span>", "\xf0\x9f\x94\xb9"=>"<span class=\x22emoji emoji1f539\x22></span>", "\xe2\x9d\x87"=>"<span class=\x22emoji emoji2747\x22></span>",
         
     | 
| 
      
 2035 
     | 
    
         
            +
                  "\xf0\x9f\x92\xae"=>"<span class=\x22emoji emoji1f4ae\x22></span>", "\xf0\x9f\x92\xaf"=>"<span class=\x22emoji emoji1f4af\x22></span>", "\xe2\x86\xa9"=>"<span class=\x22emoji emoji21a9\x22></span>", "\xe2\x86\xaa"=>"<span class=\x22emoji emoji21aa\x22></span>", "\xf0\x9f\x94\x83"=>"<span class=\x22emoji emoji1f503\x22></span>",
         
     | 
| 
      
 2036 
     | 
    
         
            +
                  "\xf0\x9f\x94\x8a"=>"<span class=\x22emoji emoji1f50a\x22></span>", "\xf0\x9f\x94\x8b"=>"<span class=\x22emoji emoji1f50b\x22></span>", "\xf0\x9f\x94\x8c"=>"<span class=\x22emoji emoji1f50c\x22></span>", "\xf0\x9f\x94\x8d"=>"<span class=\x22emoji emoji1f50d\x22></span>", "\xf0\x9f\x94\x8e"=>"<span class=\x22emoji emoji1f50e\x22></span>",
         
     | 
| 
      
 2037 
     | 
    
         
            +
                  "\xf0\x9f\x94\x92"=>"<span class=\x22emoji emoji1f512\x22></span>", "\xf0\x9f\x94\x93"=>"<span class=\x22emoji emoji1f513\x22></span>", "\xf0\x9f\x94\x8f"=>"<span class=\x22emoji emoji1f50f\x22></span>", "\xf0\x9f\x94\x90"=>"<span class=\x22emoji emoji1f510\x22></span>", "\xf0\x9f\x94\x91"=>"<span class=\x22emoji emoji1f511\x22></span>",
         
     | 
| 
      
 2038 
     | 
    
         
            +
                  "\xf0\x9f\x94\x94"=>"<span class=\x22emoji emoji1f514\x22></span>", "\xe2\x98\x91"=>"<span class=\x22emoji emoji2611\x22></span>", "\xf0\x9f\x94\x98"=>"<span class=\x22emoji emoji1f518\x22></span>", "\xf0\x9f\x94\x96"=>"<span class=\x22emoji emoji1f516\x22></span>", "\xf0\x9f\x94\x97"=>"<span class=\x22emoji emoji1f517\x22></span>",
         
     | 
| 
      
 2039 
     | 
    
         
            +
                  "\xf0\x9f\x94\x99"=>"<span class=\x22emoji emoji1f519\x22></span>", "\xf0\x9f\x94\x9a"=>"<span class=\x22emoji emoji1f51a\x22></span>", "\xf0\x9f\x94\x9b"=>"<span class=\x22emoji emoji1f51b\x22></span>", "\xf0\x9f\x94\x9c"=>"<span class=\x22emoji emoji1f51c\x22></span>", "\xf0\x9f\x94\x9d"=>"<span class=\x22emoji emoji1f51d\x22></span>",
         
     | 
| 
      
 2040 
     | 
    
         
            +
                  "\xe2\x80\x83"=>"<span class=\x22emoji emoji2003\x22></span>", "\xe2\x80\x82"=>"<span class=\x22emoji emoji2002\x22></span>", "\xe2\x80\x85"=>"<span class=\x22emoji emoji2005\x22></span>", "\xe2\x9c\x85"=>"<span class=\x22emoji emoji2705\x22></span>", "\xe2\x9c\x8a"=>"<span class=\x22emoji emoji270a\x22></span>",
         
     | 
| 
      
 2041 
     | 
    
         
            +
                  "\xe2\x9c\x8b"=>"<span class=\x22emoji emoji270b\x22></span>", "\xe2\x9c\x8c"=>"<span class=\x22emoji emoji270c\x22></span>", "\xf0\x9f\x91\x8a"=>"<span class=\x22emoji emoji1f44a\x22></span>", "\xf0\x9f\x91\x8d"=>"<span class=\x22emoji emoji1f44d\x22></span>", "\xe2\x98\x9d"=>"<span class=\x22emoji emoji261d\x22></span>",
         
     | 
| 
      
 2042 
     | 
    
         
            +
                  "\xf0\x9f\x91\x86"=>"<span class=\x22emoji emoji1f446\x22></span>", "\xf0\x9f\x91\x87"=>"<span class=\x22emoji emoji1f447\x22></span>", "\xf0\x9f\x91\x88"=>"<span class=\x22emoji emoji1f448\x22></span>", "\xf0\x9f\x91\x89"=>"<span class=\x22emoji emoji1f449\x22></span>", "\xf0\x9f\x91\x8b"=>"<span class=\x22emoji emoji1f44b\x22></span>",
         
     | 
| 
      
 2043 
     | 
    
         
            +
                  "\xf0\x9f\x91\x8f"=>"<span class=\x22emoji emoji1f44f\x22></span>", "\xf0\x9f\x91\x8c"=>"<span class=\x22emoji emoji1f44c\x22></span>", "\xf0\x9f\x91\x8e"=>"<span class=\x22emoji emoji1f44e\x22></span>", "\xf0\x9f\x91\x90"=>"<span class=\x22emoji emoji1f450\x22></span>",
         
     | 
| 
      
 2044 
     | 
    
         
            +
                },
         
     | 
| 
      
 2045 
     | 
    
         
            +
              }
         
     | 
| 
      
 2046 
     | 
    
         
            +
             
     | 
| 
      
 2047 
     | 
    
         
            +
              EMOJI_MAPS['html_to_unified'] = EMOJI_MAPS['unified_to_html'].invert
         
     | 
| 
      
 2048 
     | 
    
         
            +
              EMOJI_MAPS['name_to_unified'] = EMOJI_MAPS['unified_to_name'].invert
         
     | 
| 
      
 2049 
     | 
    
         
            +
             
     | 
| 
      
 2050 
     | 
    
         
            +
            end
         
     | 
| 
      
 2051 
     | 
    
         
            +
             
     |