jpmobile 1.0.0.pre.4 → 1.0.0.pre.5
Sign up to get free protection for your applications and to get access to all the features.
- data/.rspec +4 -0
- data/Gemfile +3 -3
- data/VERSION.yml +2 -2
- data/jpmobile.gemspec +335 -0
- data/lib/jpmobile.rb +0 -1
- data/lib/jpmobile/email.rb +47 -21
- data/lib/jpmobile/mail.rb +33 -26
- data/lib/jpmobile/mailer.rb +2 -0
- data/lib/jpmobile/util.rb +3 -3
- data/spec/unit/email-fixtures/au-attached.eml +1551 -0
- data/spec/unit/email-fixtures/au-decomail.eml +44 -0
- data/spec/unit/email-fixtures/au-emoji.eml +19 -0
- data/spec/unit/email-fixtures/au-emoji2.eml +45 -0
- data/spec/unit/email-fixtures/au-emoji5.eml +24 -0
- data/spec/unit/email-fixtures/docomo-emoji.eml +19 -0
- data/spec/unit/email-fixtures/docomo-gmail-sjis.eml +45 -0
- data/spec/unit/email-fixtures/docomo-jis.eml +20 -0
- data/spec/unit/email-fixtures/pc-mail-multi.eml +77 -0
- data/spec/unit/email-fixtures/pc-mail-single.eml +29 -0
- data/spec/unit/email-fixtures/softbank-blank.eml +20 -0
- data/spec/unit/email-fixtures/softbank-emoji-utf8.eml +19 -0
- data/spec/unit/email-fixtures/softbank-emoji.eml +19 -0
- data/spec/unit/email-fixtures/softbank-gmail-sjis.eml +45 -0
- data/spec/unit/email-fixtures/softbank-gmail-utf8.eml +45 -0
- data/spec/unit/{detect_by_email_spec.rb → email_spec.rb} +25 -2
- data/spec/unit/emoticon_spec.rb +1 -1
- data/spec/unit/encoding_spec.rb +1 -1
- data/spec/unit/is_carrier_spec.rb +1 -1
- data/spec/unit/mail_spec.rb +1 -1
- data/spec/unit/receive_mail_spec.rb +26 -1
- data/spec/unit/util_spec.rb +1 -1
- data/spec/unit/valid_ip_spec.rb +1 -1
- data/test/rails/.gitignore +1 -0
- data/test/rails/overrides/.rspec +5 -0
- data/test/rails/overrides/Gemfile +33 -0
- data/test/rails/overrides/app/views/filter/index.html.erb +0 -0
- data/test/rails/overrides/app/views/hankaku_filter/index.html.erb +0 -0
- data/test/rails/overrides/app/views/hankaku_input_filter/index.html.erb +0 -0
- data/test/rails/overrides/app/views/hankaku_input_filter/index_xhtml.html.erb +1 -0
- data/test/rails/overrides/app/views/layouts/xhtml.html.erb +12 -0
- data/test/rails/overrides/app/views/links/au_gps.html.erb +1 -0
- data/test/rails/overrides/app/views/links/au_location.html.erb +1 -0
- data/test/rails/overrides/app/views/links/docomo_foma_gps.html.erb +1 -0
- data/test/rails/overrides/app/views/links/docomo_openiarea.html.erb +1 -0
- data/test/rails/overrides/app/views/links/docomo_utn.html.erb +1 -0
- data/test/rails/overrides/app/views/links/link.html.erb +1 -0
- data/test/rails/overrides/app/views/links/show_all.html.erb +1 -0
- data/test/rails/overrides/app/views/links/softbank_location.html.erb +1 -0
- data/test/rails/overrides/app/views/links/willcom_location.html.erb +1 -0
- data/test/rails/overrides/app/views/mobile_mailer/multi_message.html.erb +11 -0
- data/test/rails/overrides/app/views/mobile_mailer/multi_message.text.erb +2 -0
- data/test/rails/overrides/app/views/mobile_mailer/view_selection.html.erb +3 -0
- data/test/rails/overrides/app/views/mobile_mailer/view_selection_mobile.html.erb +3 -0
- data/test/rails/overrides/app/views/mobile_mailer/view_selection_mobile_au.html.erb +3 -0
- data/test/rails/overrides/app/views/mobile_mailer/view_selection_mobile_docomo.html.erb +3 -0
- data/test/rails/overrides/app/views/mobile_mailer/view_selection_mobile_emobile.html.erb +3 -0
- data/test/rails/overrides/app/views/mobile_mailer/view_selection_mobile_softbank.html.erb +3 -0
- data/test/rails/overrides/app/views/mobile_mailer/view_selection_mobile_vodafone.html.erb +3 -0
- data/test/rails/overrides/app/views/mobile_mailer/view_selection_mobile_willcom.html.erb +3 -0
- data/test/rails/overrides/app/views/normal_mailer/msg.text.erb +3 -0
- data/test/rails/overrides/app/views/template_path/_partial.html.erb +1 -0
- data/test/rails/overrides/app/views/template_path/_partial_mobile.html.erb +1 -0
- data/test/rails/overrides/app/views/template_path/_partial_mobile_docomo.html.erb +1 -0
- data/test/rails/overrides/app/views/template_path/_partial_smart_phone.html.erb +1 -0
- data/test/rails/overrides/app/views/template_path/_partial_smart_phone_iphone.html.erb +1 -0
- data/test/rails/overrides/app/views/template_path/index.html.erb +1 -0
- data/test/rails/overrides/app/views/template_path/index_mobile.html.erb +1 -0
- data/test/rails/overrides/app/views/template_path/index_mobile_docomo.html.erb +1 -0
- data/test/rails/overrides/app/views/template_path/index_smart_phone.html.erb +1 -0
- data/test/rails/overrides/app/views/template_path/index_smart_phone_iphone.html.erb +1 -0
- data/test/rails/overrides/app/views/template_path/partial.html.erb +2 -0
- data/test/rails/overrides/app/views/template_path/show_mobile.html.erb +1 -0
- data/test/rails/overrides/app/views/template_path/show_mobile_docomo.html.erb +1 -0
- data/test/rails/overrides/spec/fixtures/mobile_mailer/au-attached.eml +1551 -0
- data/test/rails/overrides/spec/fixtures/mobile_mailer/au-decomail.eml +44 -0
- data/test/rails/overrides/spec/fixtures/mobile_mailer/au-emoji.eml +19 -0
- data/test/rails/overrides/spec/fixtures/mobile_mailer/au-emoji2.eml +45 -0
- data/test/rails/overrides/spec/fixtures/mobile_mailer/au-emoji5.eml +24 -0
- data/test/rails/overrides/spec/fixtures/mobile_mailer/docomo-emoji.eml +19 -0
- data/test/rails/overrides/spec/fixtures/mobile_mailer/docomo-gmail-sjis.eml +45 -0
- data/test/rails/overrides/spec/fixtures/mobile_mailer/docomo-jis.eml +20 -0
- data/test/rails/overrides/spec/fixtures/mobile_mailer/no-from.eml +78 -0
- data/test/rails/overrides/spec/fixtures/mobile_mailer/non-jp.eml +45 -0
- data/test/rails/overrides/spec/fixtures/mobile_mailer/softbank-blank.eml +20 -0
- data/test/rails/overrides/spec/fixtures/mobile_mailer/softbank-emoji-utf8.eml +19 -0
- data/test/rails/overrides/spec/fixtures/mobile_mailer/softbank-emoji.eml +19 -0
- data/test/rails/overrides/spec/fixtures/mobile_mailer/softbank-gmail-sjis.eml +45 -0
- data/test/rails/overrides/spec/fixtures/mobile_mailer/softbank-gmail-utf8.eml +45 -0
- data/test/rails/overrides/spec/helpers/helpers_spec.rb +1 -2
- data/test/rails/overrides/spec/models/mobile_mailer_spec.rb +37 -1
- data/test/rails/overrides/spec/models/normal_mailer_spec.rb +1 -1
- data/test/rails/overrides/spec/rcov.opts +2 -0
- data/test/rails/overrides/spec/requests/docomo_guid_spec.rb +1 -2
- data/test/rails/overrides/spec/requests/docomo_spec.rb +1 -2
- data/test/rails/overrides/spec/requests/emobile_spec.rb +1 -2
- data/test/rails/overrides/spec/requests/filter_spec.rb +1 -1
- data/test/rails/overrides/spec/requests/helpers_spec.rb +1 -1
- data/test/rails/overrides/spec/requests/pc_spec.rb +1 -2
- data/test/rails/overrides/spec/requests/softbank_emulator_spec.rb +1 -2
- data/test/rails/overrides/spec/requests/template_path_spec.rb +1 -2
- data/test/rails/overrides/spec/requests/trans_sid_spec.rb +1 -2
- data/test/rails/overrides/spec/spec_helper.rb +1 -1
- metadata +229 -386
- data/test/rails/rails_root/app/controllers/application_controller.rb +0 -6
- data/test/rails/rails_root/app/controllers/docomo_guid_always_controller.rb +0 -3
- data/test/rails/rails_root/app/controllers/docomo_guid_base_controller.rb +0 -5
- data/test/rails/rails_root/app/controllers/docomo_guid_docomo_controller.rb +0 -3
- data/test/rails/rails_root/app/controllers/filter_controller.rb +0 -3
- data/test/rails/rails_root/app/controllers/filter_controller_base.rb +0 -25
- data/test/rails/rails_root/app/controllers/hankaku_filter_controller.rb +0 -3
- data/test/rails/rails_root/app/controllers/hankaku_input_filter_controller.rb +0 -7
- data/test/rails/rails_root/app/controllers/links_controller.rb +0 -28
- data/test/rails/rails_root/app/controllers/mobile_spec_controller.rb +0 -5
- data/test/rails/rails_root/app/controllers/template_path_controller.rb +0 -17
- data/test/rails/rails_root/app/controllers/trans_sid_always_and_session_off_controller.rb +0 -4
- data/test/rails/rails_root/app/controllers/trans_sid_always_controller.rb +0 -3
- data/test/rails/rails_root/app/controllers/trans_sid_base_controller.rb +0 -40
- data/test/rails/rails_root/app/controllers/trans_sid_metal_controller.rb +0 -15
- data/test/rails/rails_root/app/controllers/trans_sid_mobile_controller.rb +0 -3
- data/test/rails/rails_root/app/controllers/trans_sid_none_controller.rb +0 -3
- data/test/rails/rails_root/app/helpers/application_helper.rb +0 -2
- data/test/rails/rails_root/app/models/mobile_mailer.rb +0 -19
- data/test/rails/rails_root/app/models/normal_mailer.rb +0 -9
- data/test/rails/rails_root/app/models/user.rb +0 -2
- data/test/rails/rails_root/autotest/discover.rb +0 -2
- data/test/rails/rails_root/config/application.rb +0 -42
- data/test/rails/rails_root/config/boot.rb +0 -6
- data/test/rails/rails_root/config/environment.rb +0 -5
- data/test/rails/rails_root/config/environments/development.rb +0 -26
- data/test/rails/rails_root/config/environments/production.rb +0 -49
- data/test/rails/rails_root/config/environments/test.rb +0 -35
- data/test/rails/rails_root/config/initializers/backtrace_silencers.rb +0 -7
- data/test/rails/rails_root/config/initializers/inflections.rb +0 -10
- data/test/rails/rails_root/config/initializers/jpmobile_generator.rb +0 -2
- data/test/rails/rails_root/config/initializers/mime_types.rb +0 -5
- data/test/rails/rails_root/config/initializers/secret_token.rb +0 -7
- data/test/rails/rails_root/config/initializers/session_store.rb +0 -2
- data/test/rails/rails_root/config/routes.rb +0 -7
- data/test/rails/rails_root/db/migrate/001_add_sessions_table.rb +0 -16
- data/test/rails/rails_root/db/migrate/20100824062306_create_users.rb +0 -13
- data/test/rails/rails_root/db/schema.rb +0 -31
- data/test/rails/rails_root/db/seeds.rb +0 -7
- data/test/rails/rails_root/spec/helpers/helpers_spec.rb +0 -15
- data/test/rails/rails_root/spec/models/mobile_mailer_spec.rb +0 -737
- data/test/rails/rails_root/spec/models/normal_mailer_spec.rb +0 -34
- data/test/rails/rails_root/spec/requests/docomo_guid_spec.rb +0 -102
- data/test/rails/rails_root/spec/requests/docomo_spec.rb +0 -33
- data/test/rails/rails_root/spec/requests/emobile_spec.rb +0 -53
- data/test/rails/rails_root/spec/requests/filter_spec.rb +0 -221
- data/test/rails/rails_root/spec/requests/helpers_spec.rb +0 -187
- data/test/rails/rails_root/spec/requests/pc_spec.rb +0 -22
- data/test/rails/rails_root/spec/requests/softbank_emulator_spec.rb +0 -21
- data/test/rails/rails_root/spec/requests/template_path_spec.rb +0 -240
- data/test/rails/rails_root/spec/requests/trans_sid_spec.rb +0 -207
- data/test/rails/rails_root/spec/spec_helper.rb +0 -38
- data/test/rails/rails_root/test/performance/browsing_test.rb +0 -9
- data/test/rails/rails_root/test/test_helper.rb +0 -13
- data/test/rails/rails_root/vendor/plugins/jpmobile-ipaddresses/lib/jpmobile-ipaddresses.rb +0 -18
- data/test/rails/rails_root/vendor/plugins/jpmobile-ipaddresses/lib/jpmobile/mobile/ip_addresses/abstract_ip_addresses.rb +0 -23
- data/test/rails/rails_root/vendor/plugins/jpmobile-ipaddresses/lib/jpmobile/mobile/ip_addresses/au.rb +0 -40
- data/test/rails/rails_root/vendor/plugins/jpmobile-ipaddresses/lib/jpmobile/mobile/ip_addresses/docomo.rb +0 -22
- data/test/rails/rails_root/vendor/plugins/jpmobile-ipaddresses/lib/jpmobile/mobile/ip_addresses/emobile.rb +0 -15
- data/test/rails/rails_root/vendor/plugins/jpmobile-ipaddresses/lib/jpmobile/mobile/ip_addresses/softbank.rb +0 -20
- data/test/rails/rails_root/vendor/plugins/jpmobile-ipaddresses/lib/jpmobile/mobile/ip_addresses/willcom.rb +0 -158
- data/test/rails/rails_root/vendor/plugins/jpmobile-terminfo/lib/jpmobile-terminfo.rb +0 -9
- data/test/rails/rails_root/vendor/plugins/jpmobile-terminfo/lib/jpmobile/mobile/terminfo.rb +0 -62
- data/test/rails/rails_root/vendor/plugins/jpmobile-terminfo/lib/jpmobile/mobile/terminfo/docomo.rb +0 -739
- data/test/rails/rails_root/vendor/plugins/jpmobile-terminfo/spec/spec_helper.rb +0 -2
- data/test/rails/rails_root/vendor/plugins/jpmobile-terminfo/spec/terminfo_spec.rb +0 -54
- data/test/rails/rails_root/vendor/plugins/jpmobile/init.rb +0 -3
- data/test/rails/rails_root/vendor/plugins/jpmobile/install.rb +0 -1
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile.rb +0 -59
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/datum_conv.rb +0 -72
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/docomo_guid.rb +0 -43
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/email.rb +0 -33
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/emoticon.rb +0 -205
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/emoticon/au.rb +0 -1931
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/emoticon/conversion_table.rb +0 -3909
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/emoticon/docomo.rb +0 -255
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/emoticon/softbank.rb +0 -965
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/emoticon/z_combine.rb +0 -36
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/encoding.rb +0 -29
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/filter.rb +0 -113
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/helpers.rb +0 -174
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/hook_action_controller.rb +0 -18
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/hook_action_dispatch.rb +0 -2
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/hook_action_view.rb +0 -33
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/lookup_context.rb +0 -2
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mail.rb +0 -330
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mailer.rb +0 -41
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/abstract_mobile.rb +0 -168
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/android.rb +0 -10
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/au.rb +0 -128
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/ddipocket.rb +0 -12
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/docomo.rb +0 -149
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/emobile.rb +0 -16
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/iphone.rb +0 -26
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/smart_phone.rb +0 -21
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/softbank.rb +0 -91
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/vodafone.rb +0 -17
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/willcom.rb +0 -28
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/windows_phone.rb +0 -10
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/path_set.rb +0 -40
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/position.rb +0 -68
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/rack.rb +0 -49
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/rack/filter.rb +0 -50
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/rack/mobile_carrier.rb +0 -33
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/rack/params_filter.rb +0 -47
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/rails.rb +0 -50
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/request_with_mobile.rb +0 -45
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/resolver.rb +0 -38
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/trans_sid.rb +0 -133
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/util.rb +0 -370
- data/test/rails/rails_root/vendor/plugins/jpmobile/tmp/conversion-table.rb +0 -2588
- data/test/rails/rails_root/vendor/plugins/jpmobile/tmp/utf8_to_image.rb +0 -1407
- data/test/rails/rails_root/vendor/plugins/jpmobile/tools/emoji/genregexp.rb +0 -47
- data/test/rails/rails_root/vendor/plugins/jpmobile/tools/generate_au_emoticon_table.rb +0 -34
- data/test/rails/rails_root/vendor/plugins/jpmobile/tools/generate_docomo_emoticon_table.rb +0 -33
- data/test/rails/rails_root/vendor/plugins/jpmobile/tools/generate_emoticon_conversion_table.rb +0 -107
- data/test/rails/rails_root/vendor/plugins/jpmobile/tools/generate_softbank_emoticon_table.rb +0 -31
- data/test/rails/rails_root/vendor/plugins/jpmobile/tools/list_gps_unsupported_au.rb +0 -23
- data/test/rails/rails_root/vendor/plugins/jpmobile/vendor/jpmobile-ipaddresses/lib/jpmobile-ipaddresses.rb +0 -18
- data/test/rails/rails_root/vendor/plugins/jpmobile/vendor/jpmobile-ipaddresses/lib/jpmobile/mobile/ip_addresses/abstract_ip_addresses.rb +0 -23
- data/test/rails/rails_root/vendor/plugins/jpmobile/vendor/jpmobile-ipaddresses/lib/jpmobile/mobile/ip_addresses/au.rb +0 -40
- data/test/rails/rails_root/vendor/plugins/jpmobile/vendor/jpmobile-ipaddresses/lib/jpmobile/mobile/ip_addresses/docomo.rb +0 -22
- data/test/rails/rails_root/vendor/plugins/jpmobile/vendor/jpmobile-ipaddresses/lib/jpmobile/mobile/ip_addresses/emobile.rb +0 -15
- data/test/rails/rails_root/vendor/plugins/jpmobile/vendor/jpmobile-ipaddresses/lib/jpmobile/mobile/ip_addresses/softbank.rb +0 -20
- data/test/rails/rails_root/vendor/plugins/jpmobile/vendor/jpmobile-ipaddresses/lib/jpmobile/mobile/ip_addresses/willcom.rb +0 -158
- data/test/rails/rails_root/vendor/plugins/jpmobile/vendor/jpmobile-terminfo/lib/jpmobile-terminfo.rb +0 -9
- data/test/rails/rails_root/vendor/plugins/jpmobile/vendor/jpmobile-terminfo/lib/jpmobile/mobile/terminfo.rb +0 -62
- data/test/rails/rails_root/vendor/plugins/jpmobile/vendor/jpmobile-terminfo/lib/jpmobile/mobile/terminfo/docomo.rb +0 -739
- data/test/rails/rails_root/vendor/plugins/jpmobile/vendor/jpmobile-terminfo/spec/spec_helper.rb +0 -2
- data/test/rails/rails_root/vendor/plugins/jpmobile/vendor/jpmobile-terminfo/spec/terminfo_spec.rb +0 -54
@@ -1,1407 +0,0 @@
|
|
1
|
-
require 'pp'
|
2
|
-
d2img = {
|
3
|
-
"[[Image(htdocs:emoticons/docomo/F89F.gif)]]" => 0xE63E,
|
4
|
-
"[[Image(htdocs:emoticons/docomo/F8A0.gif)]]" => 0xE63F,
|
5
|
-
"[[Image(htdocs:emoticons/docomo/F8A1.gif)]]" => 0xE640,
|
6
|
-
"[[Image(htdocs:emoticons/docomo/F8A2.gif)]]" => 0xE641,
|
7
|
-
"[[Image(htdocs:emoticons/docomo/F8A3.gif)]]" => 0xE642,
|
8
|
-
"[[Image(htdocs:emoticons/docomo/F8A4.gif)]]" => 0xE643,
|
9
|
-
"[[Image(htdocs:emoticons/docomo/F8A5.gif)]]" => 0xE644,
|
10
|
-
"[[Image(htdocs:emoticons/docomo/F8A6.gif)]]" => 0xE645,
|
11
|
-
"[[Image(htdocs:emoticons/docomo/F8A7.gif)]]" => 0xE646,
|
12
|
-
"[[Image(htdocs:emoticons/docomo/F8A8.gif)]]" => 0xE647,
|
13
|
-
"[[Image(htdocs:emoticons/docomo/F8A9.gif)]]" => 0xE648,
|
14
|
-
"[[Image(htdocs:emoticons/docomo/F8AA.gif)]]" => 0xE649,
|
15
|
-
"[[Image(htdocs:emoticons/docomo/F8AB.gif)]]" => 0xE64A,
|
16
|
-
"[[Image(htdocs:emoticons/docomo/F8AC.gif)]]" => 0xE64B,
|
17
|
-
"[[Image(htdocs:emoticons/docomo/F8AD.gif)]]" => 0xE64C,
|
18
|
-
"[[Image(htdocs:emoticons/docomo/F8AE.gif)]]" => 0xE64D,
|
19
|
-
"[[Image(htdocs:emoticons/docomo/F8AF.gif)]]" => 0xE64E,
|
20
|
-
"[[Image(htdocs:emoticons/docomo/F8B0.gif)]]" => 0xE64F,
|
21
|
-
"[[Image(htdocs:emoticons/docomo/F8B1.gif)]]" => 0xE650,
|
22
|
-
"[[Image(htdocs:emoticons/docomo/F8B2.gif)]]" => 0xE651,
|
23
|
-
"[[Image(htdocs:emoticons/docomo/F8B3.gif)]]" => 0xE652,
|
24
|
-
"[[Image(htdocs:emoticons/docomo/F8B4.gif)]]" => 0xE653,
|
25
|
-
"[[Image(htdocs:emoticons/docomo/F8B5.gif)]]" => 0xE654,
|
26
|
-
"[[Image(htdocs:emoticons/docomo/F8B6.gif)]]" => 0xE655,
|
27
|
-
"[[Image(htdocs:emoticons/docomo/F8B7.gif)]]" => 0xE656,
|
28
|
-
"[[Image(htdocs:emoticons/docomo/F8B8.gif)]]" => 0xE657,
|
29
|
-
"[[Image(htdocs:emoticons/docomo/F8B9.gif)]]" => 0xE658,
|
30
|
-
"[[Image(htdocs:emoticons/docomo/F8BA.gif)]]" => 0xE659,
|
31
|
-
"[[Image(htdocs:emoticons/docomo/F8BB.gif)]]" => 0xE65A,
|
32
|
-
"[[Image(htdocs:emoticons/docomo/F8BC.gif)]]" => 0xE65B,
|
33
|
-
"[[Image(htdocs:emoticons/docomo/F8BD.gif)]]" => 0xE65C,
|
34
|
-
"[[Image(htdocs:emoticons/docomo/F8BE.gif)]]" => 0xE65D,
|
35
|
-
"[[Image(htdocs:emoticons/docomo/F8BF.gif)]]" => 0xE65E,
|
36
|
-
"[[Image(htdocs:emoticons/docomo/F8C0.gif)]]" => 0xE65F,
|
37
|
-
"[[Image(htdocs:emoticons/docomo/F8C1.gif)]]" => 0xE660,
|
38
|
-
"[[Image(htdocs:emoticons/docomo/F8C2.gif)]]" => 0xE661,
|
39
|
-
"[[Image(htdocs:emoticons/docomo/F8C3.gif)]]" => 0xE662,
|
40
|
-
"[[Image(htdocs:emoticons/docomo/F8C4.gif)]]" => 0xE663,
|
41
|
-
"[[Image(htdocs:emoticons/docomo/F8C5.gif)]]" => 0xE664,
|
42
|
-
"[[Image(htdocs:emoticons/docomo/F8C6.gif)]]" => 0xE665,
|
43
|
-
"[[Image(htdocs:emoticons/docomo/F8C7.gif)]]" => 0xE666,
|
44
|
-
"[[Image(htdocs:emoticons/docomo/F8C8.gif)]]" => 0xE667,
|
45
|
-
"[[Image(htdocs:emoticons/docomo/F8C9.gif)]]" => 0xE668,
|
46
|
-
"[[Image(htdocs:emoticons/docomo/F8CA.gif)]]" => 0xE669,
|
47
|
-
"[[Image(htdocs:emoticons/docomo/F8CB.gif)]]" => 0xE66A,
|
48
|
-
"[[Image(htdocs:emoticons/docomo/F8CC.gif)]]" => 0xE66B,
|
49
|
-
"[[Image(htdocs:emoticons/docomo/F8CD.gif)]]" => 0xE66C,
|
50
|
-
"[[Image(htdocs:emoticons/docomo/F8CE.gif)]]" => 0xE66D,
|
51
|
-
"[[Image(htdocs:emoticons/docomo/F8CF.gif)]]" => 0xE66E,
|
52
|
-
"[[Image(htdocs:emoticons/docomo/F8D0.gif)]]" => 0xE66F,
|
53
|
-
"[[Image(htdocs:emoticons/docomo/F8D1.gif)]]" => 0xE670,
|
54
|
-
"[[Image(htdocs:emoticons/docomo/F8D2.gif)]]" => 0xE671,
|
55
|
-
"[[Image(htdocs:emoticons/docomo/F8D3.gif)]]" => 0xE672,
|
56
|
-
"[[Image(htdocs:emoticons/docomo/F8D4.gif)]]" => 0xE673,
|
57
|
-
"[[Image(htdocs:emoticons/docomo/F8D5.gif)]]" => 0xE674,
|
58
|
-
"[[Image(htdocs:emoticons/docomo/F8D6.gif)]]" => 0xE675,
|
59
|
-
"[[Image(htdocs:emoticons/docomo/F8D7.gif)]]" => 0xE676,
|
60
|
-
"[[Image(htdocs:emoticons/docomo/F8D8.gif)]]" => 0xE677,
|
61
|
-
"[[Image(htdocs:emoticons/docomo/F8D9.gif)]]" => 0xE678,
|
62
|
-
"[[Image(htdocs:emoticons/docomo/F8DA.gif)]]" => 0xE679,
|
63
|
-
"[[Image(htdocs:emoticons/docomo/F8DB.gif)]]" => 0xE67A,
|
64
|
-
"[[Image(htdocs:emoticons/docomo/F8DC.gif)]]" => 0xE67B,
|
65
|
-
"[[Image(htdocs:emoticons/docomo/F8DD.gif)]]" => 0xE67C,
|
66
|
-
"[[Image(htdocs:emoticons/docomo/F8DE.gif)]]" => 0xE67D,
|
67
|
-
"[[Image(htdocs:emoticons/docomo/F8DF.gif)]]" => 0xE67E,
|
68
|
-
"[[Image(htdocs:emoticons/docomo/F8E0.gif)]]" => 0xE67F,
|
69
|
-
"[[Image(htdocs:emoticons/docomo/F8E1.gif)]]" => 0xE680,
|
70
|
-
"[[Image(htdocs:emoticons/docomo/F8E2.gif)]]" => 0xE681,
|
71
|
-
"[[Image(htdocs:emoticons/docomo/F8E3.gif)]]" => 0xE682,
|
72
|
-
"[[Image(htdocs:emoticons/docomo/F8E4.gif)]]" => 0xE683,
|
73
|
-
"[[Image(htdocs:emoticons/docomo/F8E5.gif)]]" => 0xE684,
|
74
|
-
"[[Image(htdocs:emoticons/docomo/F8E6.gif)]]" => 0xE685,
|
75
|
-
"[[Image(htdocs:emoticons/docomo/F8E7.gif)]]" => 0xE686,
|
76
|
-
"[[Image(htdocs:emoticons/docomo/F8E8.gif)]]" => 0xE687,
|
77
|
-
"[[Image(htdocs:emoticons/docomo/F8E9.gif)]]" => 0xE688,
|
78
|
-
"[[Image(htdocs:emoticons/docomo/F8EA.gif)]]" => 0xE689,
|
79
|
-
"[[Image(htdocs:emoticons/docomo/F8EB.gif)]]" => 0xE68A,
|
80
|
-
"[[Image(htdocs:emoticons/docomo/F8EC.gif)]]" => 0xE68B,
|
81
|
-
"[[Image(htdocs:emoticons/docomo/F8ED.gif)]]" => 0xE68C,
|
82
|
-
"[[Image(htdocs:emoticons/docomo/F8EE.gif)]]" => 0xE68D,
|
83
|
-
"[[Image(htdocs:emoticons/docomo/F8EF.gif)]]" => 0xE68E,
|
84
|
-
"[[Image(htdocs:emoticons/docomo/F8F0.gif)]]" => 0xE68F,
|
85
|
-
"[[Image(htdocs:emoticons/docomo/F8F1.gif)]]" => 0xE690,
|
86
|
-
"[[Image(htdocs:emoticons/docomo/F8F2.gif)]]" => 0xE691,
|
87
|
-
"[[Image(htdocs:emoticons/docomo/F8F3.gif)]]" => 0xE692,
|
88
|
-
"[[Image(htdocs:emoticons/docomo/F8F4.gif)]]" => 0xE693,
|
89
|
-
"[[Image(htdocs:emoticons/docomo/F8F5.gif)]]" => 0xE694,
|
90
|
-
"[[Image(htdocs:emoticons/docomo/F8F6.gif)]]" => 0xE695,
|
91
|
-
"[[Image(htdocs:emoticons/docomo/F8F7.gif)]]" => 0xE696,
|
92
|
-
"[[Image(htdocs:emoticons/docomo/F8F8.gif)]]" => 0xE697,
|
93
|
-
"[[Image(htdocs:emoticons/docomo/F8F9.gif)]]" => 0xE698,
|
94
|
-
"[[Image(htdocs:emoticons/docomo/F8FA.gif)]]" => 0xE699,
|
95
|
-
"[[Image(htdocs:emoticons/docomo/F8FB.gif)]]" => 0xE69A,
|
96
|
-
"[[Image(htdocs:emoticons/docomo/F8FC.gif)]]" => 0xE69B,
|
97
|
-
"[[Image(htdocs:emoticons/docomo/F940.gif)]]" => 0xE69C,
|
98
|
-
"[[Image(htdocs:emoticons/docomo/F941.gif)]]" => 0xE69D,
|
99
|
-
"[[Image(htdocs:emoticons/docomo/F942.gif)]]" => 0xE69E,
|
100
|
-
"[[Image(htdocs:emoticons/docomo/F943.gif)]]" => 0xE69F,
|
101
|
-
"[[Image(htdocs:emoticons/docomo/F944.gif)]]" => 0xE6A0,
|
102
|
-
"[[Image(htdocs:emoticons/docomo/F945.gif)]]" => 0xE6A1,
|
103
|
-
"[[Image(htdocs:emoticons/docomo/F946.gif)]]" => 0xE6A2,
|
104
|
-
"[[Image(htdocs:emoticons/docomo/F947.gif)]]" => 0xE6A3,
|
105
|
-
"[[Image(htdocs:emoticons/docomo/F948.gif)]]" => 0xE6A4,
|
106
|
-
"[[Image(htdocs:emoticons/docomo/F949.gif)]]" => 0xE6A5,
|
107
|
-
"[[Image(htdocs:emoticons/docomo/F972.gif)]]" => 0xE6CE,
|
108
|
-
"[[Image(htdocs:emoticons/docomo/F973.gif)]]" => 0xE6CF,
|
109
|
-
"[[Image(htdocs:emoticons/docomo/F974.gif)]]" => 0xE6D0,
|
110
|
-
"[[Image(htdocs:emoticons/docomo/F975.gif)]]" => 0xE6D1,
|
111
|
-
"[[Image(htdocs:emoticons/docomo/F976.gif)]]" => 0xE6D2,
|
112
|
-
"[[Image(htdocs:emoticons/docomo/F977.gif)]]" => 0xE6D3,
|
113
|
-
"[[Image(htdocs:emoticons/docomo/F978.gif)]]" => 0xE6D4,
|
114
|
-
"[[Image(htdocs:emoticons/docomo/F979.gif)]]" => 0xE6D5,
|
115
|
-
"[[Image(htdocs:emoticons/docomo/F97A.gif)]]" => 0xE6D6,
|
116
|
-
"[[Image(htdocs:emoticons/docomo/F97B.gif)]]" => 0xE6D7,
|
117
|
-
"[[Image(htdocs:emoticons/docomo/F97C.gif)]]" => 0xE6D8,
|
118
|
-
"[[Image(htdocs:emoticons/docomo/F97D.gif)]]" => 0xE6D9,
|
119
|
-
"[[Image(htdocs:emoticons/docomo/F97E.gif)]]" => 0xE6DA,
|
120
|
-
"[[Image(htdocs:emoticons/docomo/F980.gif)]]" => 0xE6DB,
|
121
|
-
"[[Image(htdocs:emoticons/docomo/F981.gif)]]" => 0xE6DC,
|
122
|
-
"[[Image(htdocs:emoticons/docomo/F982.gif)]]" => 0xE6DD,
|
123
|
-
"[[Image(htdocs:emoticons/docomo/F983.gif)]]" => 0xE6DE,
|
124
|
-
"[[Image(htdocs:emoticons/docomo/F984.gif)]]" => 0xE6DF,
|
125
|
-
"[[Image(htdocs:emoticons/docomo/F985.gif)]]" => 0xE6E0,
|
126
|
-
"[[Image(htdocs:emoticons/docomo/F986.gif)]]" => 0xE6E1,
|
127
|
-
"[[Image(htdocs:emoticons/docomo/F987.gif)]]" => 0xE6E2,
|
128
|
-
"[[Image(htdocs:emoticons/docomo/F988.gif)]]" => 0xE6E3,
|
129
|
-
"[[Image(htdocs:emoticons/docomo/F989.gif)]]" => 0xE6E4,
|
130
|
-
"[[Image(htdocs:emoticons/docomo/F98A.gif)]]" => 0xE6E5,
|
131
|
-
"[[Image(htdocs:emoticons/docomo/F98B.gif)]]" => 0xE6E6,
|
132
|
-
"[[Image(htdocs:emoticons/docomo/F98C.gif)]]" => 0xE6E7,
|
133
|
-
"[[Image(htdocs:emoticons/docomo/F98D.gif)]]" => 0xE6E8,
|
134
|
-
"[[Image(htdocs:emoticons/docomo/F98E.gif)]]" => 0xE6E9,
|
135
|
-
"[[Image(htdocs:emoticons/docomo/F98F.gif)]]" => 0xE6EA,
|
136
|
-
"[[Image(htdocs:emoticons/docomo/F990.gif)]]" => 0xE6EB,
|
137
|
-
"[[Image(htdocs:emoticons/docomo/F9B0.gif)]]" => 0xE70B,
|
138
|
-
"[[Image(htdocs:emoticons/docomo/F991.gif)]]" => 0xE6EC,
|
139
|
-
"[[Image(htdocs:emoticons/docomo/F992.gif)]]" => 0xE6ED,
|
140
|
-
"[[Image(htdocs:emoticons/docomo/F993.gif)]]" => 0xE6EE,
|
141
|
-
"[[Image(htdocs:emoticons/docomo/F994.gif)]]" => 0xE6EF,
|
142
|
-
"[[Image(htdocs:emoticons/docomo/F995.gif)]]" => 0xE6F0,
|
143
|
-
"[[Image(htdocs:emoticons/docomo/F996.gif)]]" => 0xE6F1,
|
144
|
-
"[[Image(htdocs:emoticons/docomo/F997.gif)]]" => 0xE6F2,
|
145
|
-
"[[Image(htdocs:emoticons/docomo/F998.gif)]]" => 0xE6F3,
|
146
|
-
"[[Image(htdocs:emoticons/docomo/F999.gif)]]" => 0xE6F4,
|
147
|
-
"[[Image(htdocs:emoticons/docomo/F99A.gif)]]" => 0xE6F5,
|
148
|
-
"[[Image(htdocs:emoticons/docomo/F99B.gif)]]" => 0xE6F6,
|
149
|
-
"[[Image(htdocs:emoticons/docomo/F99C.gif)]]" => 0xE6F7,
|
150
|
-
"[[Image(htdocs:emoticons/docomo/F99D.gif)]]" => 0xE6F8,
|
151
|
-
"[[Image(htdocs:emoticons/docomo/F99E.gif)]]" => 0xE6F9,
|
152
|
-
"[[Image(htdocs:emoticons/docomo/F99F.gif)]]" => 0xE6FA,
|
153
|
-
"[[Image(htdocs:emoticons/docomo/F9A0.gif)]]" => 0xE6FB,
|
154
|
-
"[[Image(htdocs:emoticons/docomo/F9A1.gif)]]" => 0xE6FC,
|
155
|
-
"[[Image(htdocs:emoticons/docomo/F9A2.gif)]]" => 0xE6FD,
|
156
|
-
"[[Image(htdocs:emoticons/docomo/F9A3.gif)]]" => 0xE6FE,
|
157
|
-
"[[Image(htdocs:emoticons/docomo/F9A4.gif)]]" => 0xE6FF,
|
158
|
-
"[[Image(htdocs:emoticons/docomo/F9A5.gif)]]" => 0xE700,
|
159
|
-
"[[Image(htdocs:emoticons/docomo/F9A6.gif)]]" => 0xE701,
|
160
|
-
"[[Image(htdocs:emoticons/docomo/F9A7.gif)]]" => 0xE702,
|
161
|
-
"[[Image(htdocs:emoticons/docomo/F9A8.gif)]]" => 0xE703,
|
162
|
-
"[[Image(htdocs:emoticons/docomo/F9A9.gif)]]" => 0xE704,
|
163
|
-
"[[Image(htdocs:emoticons/docomo/F9AA.gif)]]" => 0xE705,
|
164
|
-
"[[Image(htdocs:emoticons/docomo/F9AB.gif)]]" => 0xE706,
|
165
|
-
"[[Image(htdocs:emoticons/docomo/F9AC.gif)]]" => 0xE707,
|
166
|
-
"[[Image(htdocs:emoticons/docomo/F9AD.gif)]]" => 0xE708,
|
167
|
-
"[[Image(htdocs:emoticons/docomo/F9AE.gif)]]" => 0xE709,
|
168
|
-
"[[Image(htdocs:emoticons/docomo/F9AF.gif)]]" => 0xE70A,
|
169
|
-
"[[Image(htdocs:emoticons/docomo/F950.gif)]]" => 0xE6AC,
|
170
|
-
"[[Image(htdocs:emoticons/docomo/F951.gif)]]" => 0xE6AD,
|
171
|
-
"[[Image(htdocs:emoticons/docomo/F952.gif)]]" => 0xE6AE,
|
172
|
-
"[[Image(htdocs:emoticons/docomo/F955.gif)]]" => 0xE6B1,
|
173
|
-
"[[Image(htdocs:emoticons/docomo/F956.gif)]]" => 0xE6B2,
|
174
|
-
"[[Image(htdocs:emoticons/docomo/F957.gif)]]" => 0xE6B3,
|
175
|
-
"[[Image(htdocs:emoticons/docomo/F95B.gif)]]" => 0xE6B7,
|
176
|
-
"[[Image(htdocs:emoticons/docomo/F95C.gif)]]" => 0xE6B8,
|
177
|
-
"[[Image(htdocs:emoticons/docomo/F95D.gif)]]" => 0xE6B9,
|
178
|
-
"[[Image(htdocs:emoticons/docomo/F95E.gif)]]" => 0xE6BA,
|
179
|
-
"[[Image(htdocs:emoticons/docomo/F9B1.gif)]]" => 0xE70C,
|
180
|
-
"[[Image(htdocs:emoticons/docomo/F9B2.gif)]]" => 0xE70D,
|
181
|
-
"[[Image(htdocs:emoticons/docomo/F9B3.gif)]]" => 0xE70E,
|
182
|
-
"[[Image(htdocs:emoticons/docomo/F9B4.gif)]]" => 0xE70F,
|
183
|
-
"[[Image(htdocs:emoticons/docomo/F9B5.gif)]]" => 0xE710,
|
184
|
-
"[[Image(htdocs:emoticons/docomo/F9B6.gif)]]" => 0xE711,
|
185
|
-
"[[Image(htdocs:emoticons/docomo/F9B7.gif)]]" => 0xE712,
|
186
|
-
"[[Image(htdocs:emoticons/docomo/F9B8.gif)]]" => 0xE713,
|
187
|
-
"[[Image(htdocs:emoticons/docomo/F9B9.gif)]]" => 0xE714,
|
188
|
-
"[[Image(htdocs:emoticons/docomo/F9BA.gif)]]" => 0xE715,
|
189
|
-
"[[Image(htdocs:emoticons/docomo/F9BB.gif)]]" => 0xE716,
|
190
|
-
"[[Image(htdocs:emoticons/docomo/F9BC.gif)]]" => 0xE717,
|
191
|
-
"[[Image(htdocs:emoticons/docomo/F9BD.gif)]]" => 0xE718,
|
192
|
-
"[[Image(htdocs:emoticons/docomo/F9BE.gif)]]" => 0xE719,
|
193
|
-
"[[Image(htdocs:emoticons/docomo/F9BF.gif)]]" => 0xE71A,
|
194
|
-
"[[Image(htdocs:emoticons/docomo/F9C0.gif)]]" => 0xE71B,
|
195
|
-
"[[Image(htdocs:emoticons/docomo/F9C1.gif)]]" => 0xE71C,
|
196
|
-
"[[Image(htdocs:emoticons/docomo/F9C2.gif)]]" => 0xE71D,
|
197
|
-
"[[Image(htdocs:emoticons/docomo/F9C3.gif)]]" => 0xE71E,
|
198
|
-
"[[Image(htdocs:emoticons/docomo/F9C4.gif)]]" => 0xE71F,
|
199
|
-
"[[Image(htdocs:emoticons/docomo/F9C5.gif)]]" => 0xE720,
|
200
|
-
"[[Image(htdocs:emoticons/docomo/F9C6.gif)]]" => 0xE721,
|
201
|
-
"[[Image(htdocs:emoticons/docomo/F9C7.gif)]]" => 0xE722,
|
202
|
-
"[[Image(htdocs:emoticons/docomo/F9C8.gif)]]" => 0xE723,
|
203
|
-
"[[Image(htdocs:emoticons/docomo/F9C9.gif)]]" => 0xE724,
|
204
|
-
"[[Image(htdocs:emoticons/docomo/F9CA.gif)]]" => 0xE725,
|
205
|
-
"[[Image(htdocs:emoticons/docomo/F9CB.gif)]]" => 0xE726,
|
206
|
-
"[[Image(htdocs:emoticons/docomo/F9CC.gif)]]" => 0xE727,
|
207
|
-
"[[Image(htdocs:emoticons/docomo/F9CD.gif)]]" => 0xE728,
|
208
|
-
"[[Image(htdocs:emoticons/docomo/F9CE.gif)]]" => 0xE729,
|
209
|
-
"[[Image(htdocs:emoticons/docomo/F9CF.gif)]]" => 0xE72A,
|
210
|
-
"[[Image(htdocs:emoticons/docomo/F9D0.gif)]]" => 0xE72B,
|
211
|
-
"[[Image(htdocs:emoticons/docomo/F9D1.gif)]]" => 0xE72C,
|
212
|
-
"[[Image(htdocs:emoticons/docomo/F9D2.gif)]]" => 0xE72D,
|
213
|
-
"[[Image(htdocs:emoticons/docomo/F9D3.gif)]]" => 0xE72E,
|
214
|
-
"[[Image(htdocs:emoticons/docomo/F9D4.gif)]]" => 0xE72F,
|
215
|
-
"[[Image(htdocs:emoticons/docomo/F9D5.gif)]]" => 0xE730,
|
216
|
-
"[[Image(htdocs:emoticons/docomo/F9D6.gif)]]" => 0xE731,
|
217
|
-
"[[Image(htdocs:emoticons/docomo/F9D7.gif)]]" => 0xE732,
|
218
|
-
"[[Image(htdocs:emoticons/docomo/F9D8.gif)]]" => 0xE733,
|
219
|
-
"[[Image(htdocs:emoticons/docomo/F9D9.gif)]]" => 0xE734,
|
220
|
-
"[[Image(htdocs:emoticons/docomo/F9DA.gif)]]" => 0xE735,
|
221
|
-
"[[Image(htdocs:emoticons/docomo/F9DB.gif)]]" => 0xE736,
|
222
|
-
"[[Image(htdocs:emoticons/docomo/F9DC.gif)]]" => 0xE737,
|
223
|
-
"[[Image(htdocs:emoticons/docomo/F9DD.gif)]]" => 0xE738,
|
224
|
-
"[[Image(htdocs:emoticons/docomo/F9DE.gif)]]" => 0xE739,
|
225
|
-
"[[Image(htdocs:emoticons/docomo/F9DF.gif)]]" => 0xE73A,
|
226
|
-
"[[Image(htdocs:emoticons/docomo/F9E0.gif)]]" => 0xE73B,
|
227
|
-
"[[Image(htdocs:emoticons/docomo/F9E1.gif)]]" => 0xE73C,
|
228
|
-
"[[Image(htdocs:emoticons/docomo/F9E2.gif)]]" => 0xE73D,
|
229
|
-
"[[Image(htdocs:emoticons/docomo/F9E3.gif)]]" => 0xE73E,
|
230
|
-
"[[Image(htdocs:emoticons/docomo/F9E4.gif)]]" => 0xE73F,
|
231
|
-
"[[Image(htdocs:emoticons/docomo/F9E5.gif)]]" => 0xE740,
|
232
|
-
"[[Image(htdocs:emoticons/docomo/F9E6.gif)]]" => 0xE741,
|
233
|
-
"[[Image(htdocs:emoticons/docomo/F9E7.gif)]]" => 0xE742,
|
234
|
-
"[[Image(htdocs:emoticons/docomo/F9E8.gif)]]" => 0xE743,
|
235
|
-
"[[Image(htdocs:emoticons/docomo/F9E9.gif)]]" => 0xE744,
|
236
|
-
"[[Image(htdocs:emoticons/docomo/F9EA.gif)]]" => 0xE745,
|
237
|
-
"[[Image(htdocs:emoticons/docomo/F9EB.gif)]]" => 0xE746,
|
238
|
-
"[[Image(htdocs:emoticons/docomo/F9EC.gif)]]" => 0xE747,
|
239
|
-
"[[Image(htdocs:emoticons/docomo/F9ED.gif)]]" => 0xE748,
|
240
|
-
"[[Image(htdocs:emoticons/docomo/F9EE.gif)]]" => 0xE749,
|
241
|
-
"[[Image(htdocs:emoticons/docomo/F9EF.gif)]]" => 0xE74A,
|
242
|
-
"[[Image(htdocs:emoticons/docomo/F9F0.gif)]]" => 0xE74B,
|
243
|
-
"[[Image(htdocs:emoticons/docomo/F9F1.gif)]]" => 0xE74C,
|
244
|
-
"[[Image(htdocs:emoticons/docomo/F9F2.gif)]]" => 0xE74D,
|
245
|
-
"[[Image(htdocs:emoticons/docomo/F9F3.gif)]]" => 0xE74E,
|
246
|
-
"[[Image(htdocs:emoticons/docomo/F9F4.gif)]]" => 0xE74F,
|
247
|
-
"[[Image(htdocs:emoticons/docomo/F9F5.gif)]]" => 0xE750,
|
248
|
-
"[[Image(htdocs:emoticons/docomo/F9F6.gif)]]" => 0xE751,
|
249
|
-
"[[Image(htdocs:emoticons/docomo/F9F7.gif)]]" => 0xE752,
|
250
|
-
"[[Image(htdocs:emoticons/docomo/F9F8.gif)]]" => 0xE753,
|
251
|
-
"[[Image(htdocs:emoticons/docomo/F9F9.gif)]]" => 0xE754,
|
252
|
-
"[[Image(htdocs:emoticons/docomo/F9FA.gif)]]" => 0xE755,
|
253
|
-
"[[Image(htdocs:emoticons/docomo/F9FB.gif)]]" => 0xE756,
|
254
|
-
"[[Image(htdocs:emoticons/docomo/F9FC.gif)]]" => 0xE757,
|
255
|
-
}.invert
|
256
|
-
|
257
|
-
a2img = {
|
258
|
-
"[[Image(htdocs:emoticons/kddi/001.gif)]]" => 0xE481,
|
259
|
-
"[[Image(htdocs:emoticons/kddi/002.gif)]]" => 0xE482,
|
260
|
-
"[[Image(htdocs:emoticons/kddi/003.gif)]]" => 0xE483,
|
261
|
-
"[[Image(htdocs:emoticons/kddi/004.gif)]]" => 0xE52C,
|
262
|
-
"[[Image(htdocs:emoticons/kddi/005.gif)]]" => 0xE52D,
|
263
|
-
"[[Image(htdocs:emoticons/kddi/006.gif)]]" => 0xE52E,
|
264
|
-
"[[Image(htdocs:emoticons/kddi/007.gif)]]" => 0xE52F,
|
265
|
-
"[[Image(htdocs:emoticons/kddi/008.gif)]]" => 0xE530,
|
266
|
-
"[[Image(htdocs:emoticons/kddi/009.gif)]]" => 0xE531,
|
267
|
-
"[[Image(htdocs:emoticons/kddi/010.gif)]]" => 0xE532,
|
268
|
-
"[[Image(htdocs:emoticons/kddi/011.gif)]]" => 0xE533,
|
269
|
-
"[[Image(htdocs:emoticons/kddi/012.gif)]]" => 0xE4C1,
|
270
|
-
"[[Image(htdocs:emoticons/kddi/013.gif)]]" => 0xE511,
|
271
|
-
"[[Image(htdocs:emoticons/kddi/014.gif)]]" => 0xE579,
|
272
|
-
"[[Image(htdocs:emoticons/kddi/015.gif)]]" => 0xE486,
|
273
|
-
"[[Image(htdocs:emoticons/kddi/016.gif)]]" => 0xE487,
|
274
|
-
"[[Image(htdocs:emoticons/kddi/017.gif)]]" => 0xE534,
|
275
|
-
"[[Image(htdocs:emoticons/kddi/018.gif)]]" => 0xE535,
|
276
|
-
"[[Image(htdocs:emoticons/kddi/019.gif)]]" => 0xE536,
|
277
|
-
"[[Image(htdocs:emoticons/kddi/020.gif)]]" => 0xE537,
|
278
|
-
"[[Image(htdocs:emoticons/kddi/021.gif)]]" => 0xE538,
|
279
|
-
"[[Image(htdocs:emoticons/kddi/022.gif)]]" => 0xE539,
|
280
|
-
"[[Image(htdocs:emoticons/kddi/023.gif)]]" => 0xE53A,
|
281
|
-
"[[Image(htdocs:emoticons/kddi/024.gif)]]" => 0xE53B,
|
282
|
-
"[[Image(htdocs:emoticons/kddi/025.gif)]]" => 0xE57A,
|
283
|
-
"[[Image(htdocs:emoticons/kddi/026.gif)]]" => 0xE53C,
|
284
|
-
"[[Image(htdocs:emoticons/kddi/027.gif)]]" => 0xE53D,
|
285
|
-
"[[Image(htdocs:emoticons/kddi/028.gif)]]" => 0xE53E,
|
286
|
-
"[[Image(htdocs:emoticons/kddi/029.gif)]]" => 0xE53F,
|
287
|
-
"[[Image(htdocs:emoticons/kddi/030.gif)]]" => 0xE540,
|
288
|
-
"[[Image(htdocs:emoticons/kddi/031.gif)]]" => 0xE541,
|
289
|
-
"[[Image(htdocs:emoticons/kddi/032.gif)]]" => 0xE542,
|
290
|
-
"[[Image(htdocs:emoticons/kddi/033.gif)]]" => 0xE543,
|
291
|
-
"[[Image(htdocs:emoticons/kddi/034.gif)]]" => 0xE544,
|
292
|
-
"[[Image(htdocs:emoticons/kddi/035.gif)]]" => 0xE545,
|
293
|
-
"[[Image(htdocs:emoticons/kddi/036.gif)]]" => 0xE546,
|
294
|
-
"[[Image(htdocs:emoticons/kddi/037.gif)]]" => 0xE547,
|
295
|
-
"[[Image(htdocs:emoticons/kddi/038.gif)]]" => 0xE548,
|
296
|
-
"[[Image(htdocs:emoticons/kddi/039.gif)]]" => 0xE549,
|
297
|
-
"[[Image(htdocs:emoticons/kddi/040.gif)]]" => 0xE54A,
|
298
|
-
"[[Image(htdocs:emoticons/kddi/041.gif)]]" => 0xE54B,
|
299
|
-
"[[Image(htdocs:emoticons/kddi/042.gif)]]" => 0xE54C,
|
300
|
-
"[[Image(htdocs:emoticons/kddi/043.gif)]]" => 0xE54D,
|
301
|
-
"[[Image(htdocs:emoticons/kddi/044.gif)]]" => 0xE488,
|
302
|
-
"[[Image(htdocs:emoticons/kddi/045.gif)]]" => 0xE4BA,
|
303
|
-
"[[Image(htdocs:emoticons/kddi/046.gif)]]" => 0xE594,
|
304
|
-
"[[Image(htdocs:emoticons/kddi/047.gif)]]" => 0xE489,
|
305
|
-
"[[Image(htdocs:emoticons/kddi/048.gif)]]" => 0xE512,
|
306
|
-
"[[Image(htdocs:emoticons/kddi/049.gif)]]" => 0xE560,
|
307
|
-
"[[Image(htdocs:emoticons/kddi/050.gif)]]" => 0xE4FA,
|
308
|
-
"[[Image(htdocs:emoticons/kddi/051.gif)]]" => 0xE595,
|
309
|
-
"[[Image(htdocs:emoticons/kddi/052.gif)]]" => 0xE4C2,
|
310
|
-
"[[Image(htdocs:emoticons/kddi/053.gif)]]" => 0xE513,
|
311
|
-
"[[Image(htdocs:emoticons/kddi/054.gif)]]" => 0xE54E,
|
312
|
-
"[[Image(htdocs:emoticons/kddi/055.gif)]]" => 0xE54F,
|
313
|
-
"[[Image(htdocs:emoticons/kddi/056.gif)]]" => 0xE561,
|
314
|
-
"[[Image(htdocs:emoticons/kddi/057.gif)]]" => 0xE57B,
|
315
|
-
"[[Image(htdocs:emoticons/kddi/058.gif)]]" => 0xE47C,
|
316
|
-
"[[Image(htdocs:emoticons/kddi/059.gif)]]" => 0xE562,
|
317
|
-
"[[Image(htdocs:emoticons/kddi/060.gif)]]" => 0xE48A,
|
318
|
-
"[[Image(htdocs:emoticons/kddi/061.gif)]]" => 0xE550,
|
319
|
-
"[[Image(htdocs:emoticons/kddi/062.gif)]]" => 0xE551,
|
320
|
-
"[[Image(htdocs:emoticons/kddi/063.gif)]]" => 0xE552,
|
321
|
-
"[[Image(htdocs:emoticons/kddi/064.gif)]]" => 0xE553,
|
322
|
-
"[[Image(htdocs:emoticons/kddi/065.gif)]]" => 0xE4C3,
|
323
|
-
"[[Image(htdocs:emoticons/kddi/066.gif)]]" => 0xE554,
|
324
|
-
"[[Image(htdocs:emoticons/kddi/067.gif)]]" => 0xE563,
|
325
|
-
"[[Image(htdocs:emoticons/kddi/068.gif)]]" => 0xE4FB,
|
326
|
-
"[[Image(htdocs:emoticons/kddi/069.gif)]]" => 0xE48B,
|
327
|
-
"[[Image(htdocs:emoticons/kddi/070.gif)]]" => 0xE555,
|
328
|
-
"[[Image(htdocs:emoticons/kddi/071.gif)]]" => 0xE556,
|
329
|
-
"[[Image(htdocs:emoticons/kddi/072.gif)]]" => 0xE514,
|
330
|
-
"[[Image(htdocs:emoticons/kddi/073.gif)]]" => 0xE557,
|
331
|
-
"[[Image(htdocs:emoticons/kddi/074.gif)]]" => 0xE4DF,
|
332
|
-
"[[Image(htdocs:emoticons/kddi/075.gif)]]" => 0xE468,
|
333
|
-
"[[Image(htdocs:emoticons/kddi/076.gif)]]" => 0xE46C,
|
334
|
-
"[[Image(htdocs:emoticons/kddi/077.gif)]]" => 0xE476,
|
335
|
-
"[[Image(htdocs:emoticons/kddi/078.gif)]]" => 0xE4E0,
|
336
|
-
"[[Image(htdocs:emoticons/kddi/079.gif)]]" => 0xE58F,
|
337
|
-
"[[Image(htdocs:emoticons/kddi/080.gif)]]" => 0xE4FC,
|
338
|
-
"[[Image(htdocs:emoticons/kddi/081.gif)]]" => 0xE558,
|
339
|
-
"[[Image(htdocs:emoticons/kddi/082.gif)]]" => 0xE559,
|
340
|
-
"[[Image(htdocs:emoticons/kddi/083.gif)]]" => 0xE49C,
|
341
|
-
"[[Image(htdocs:emoticons/kddi/084.gif)]]" => 0xE590,
|
342
|
-
"[[Image(htdocs:emoticons/kddi/085.gif)]]" => 0xE596,
|
343
|
-
"[[Image(htdocs:emoticons/kddi/086.gif)]]" => 0xE4FD,
|
344
|
-
"[[Image(htdocs:emoticons/kddi/087.gif)]]" => 0xE57C,
|
345
|
-
"[[Image(htdocs:emoticons/kddi/088.gif)]]" => 0xE55A,
|
346
|
-
"[[Image(htdocs:emoticons/kddi/089.gif)]]" => 0xE55B,
|
347
|
-
"[[Image(htdocs:emoticons/kddi/090.gif)]]" => 0xE573,
|
348
|
-
"[[Image(htdocs:emoticons/kddi/091.gif)]]" => 0xE49D,
|
349
|
-
"[[Image(htdocs:emoticons/kddi/092.gif)]]" => 0xE564,
|
350
|
-
"[[Image(htdocs:emoticons/kddi/093.gif)]]" => 0xE597,
|
351
|
-
"[[Image(htdocs:emoticons/kddi/094.gif)]]" => 0xE515,
|
352
|
-
"[[Image(htdocs:emoticons/kddi/095.gif)]]" => 0xE48C,
|
353
|
-
"[[Image(htdocs:emoticons/kddi/096.gif)]]" => 0xE4BB,
|
354
|
-
"[[Image(htdocs:emoticons/kddi/097.gif)]]" => 0xE565,
|
355
|
-
"[[Image(htdocs:emoticons/kddi/098.gif)]]" => 0xE484,
|
356
|
-
"[[Image(htdocs:emoticons/kddi/099.gif)]]" => 0xE46A,
|
357
|
-
"[[Image(htdocs:emoticons/kddi/100.gif)]]" => 0xE566,
|
358
|
-
"[[Image(htdocs:emoticons/kddi/101.gif)]]" => 0xE567,
|
359
|
-
"[[Image(htdocs:emoticons/kddi/102.gif)]]" => 0xE568,
|
360
|
-
"[[Image(htdocs:emoticons/kddi/103.gif)]]" => 0xE569,
|
361
|
-
"[[Image(htdocs:emoticons/kddi/104.gif)]]" => 0xE516,
|
362
|
-
"[[Image(htdocs:emoticons/kddi/105.gif)]]" => 0xE56A,
|
363
|
-
"[[Image(htdocs:emoticons/kddi/106.gif)]]" => 0xE49E,
|
364
|
-
"[[Image(htdocs:emoticons/kddi/107.gif)]]" => 0xE48D,
|
365
|
-
"[[Image(htdocs:emoticons/kddi/108.gif)]]" => 0xE521,
|
366
|
-
"[[Image(htdocs:emoticons/kddi/109.gif)]]" => 0xE57D,
|
367
|
-
"[[Image(htdocs:emoticons/kddi/110.gif)]]" => 0xE517,
|
368
|
-
"[[Image(htdocs:emoticons/kddi/111.gif)]]" => 0xE57E,
|
369
|
-
"[[Image(htdocs:emoticons/kddi/112.gif)]]" => 0xE4AB,
|
370
|
-
"[[Image(htdocs:emoticons/kddi/113.gif)]]" => 0xE4E4,
|
371
|
-
"[[Image(htdocs:emoticons/kddi/114.gif)]]" => 0xE57F,
|
372
|
-
"[[Image(htdocs:emoticons/kddi/115.gif)]]" => 0xE580,
|
373
|
-
"[[Image(htdocs:emoticons/kddi/116.gif)]]" => 0xE4FE,
|
374
|
-
"[[Image(htdocs:emoticons/kddi/117.gif)]]" => 0xE55C,
|
375
|
-
"[[Image(htdocs:emoticons/kddi/118.gif)]]" => 0xE55D,
|
376
|
-
"[[Image(htdocs:emoticons/kddi/119.gif)]]" => 0xE518,
|
377
|
-
"[[Image(htdocs:emoticons/kddi/120.gif)]]" => 0xE519,
|
378
|
-
"[[Image(htdocs:emoticons/kddi/121.gif)]]" => 0xE56B,
|
379
|
-
"[[Image(htdocs:emoticons/kddi/122.gif)]]" => 0xE49F,
|
380
|
-
"[[Image(htdocs:emoticons/kddi/123.gif)]]" => 0xE581,
|
381
|
-
"[[Image(htdocs:emoticons/kddi/124.gif)]]" => 0xE51A,
|
382
|
-
"[[Image(htdocs:emoticons/kddi/125.gif)]]" => 0xE4B1,
|
383
|
-
"[[Image(htdocs:emoticons/kddi/126.gif)]]" => 0xE582,
|
384
|
-
"[[Image(htdocs:emoticons/kddi/127.gif)]]" => 0xE574,
|
385
|
-
"[[Image(htdocs:emoticons/kddi/128.gif)]]" => 0xE575,
|
386
|
-
"[[Image(htdocs:emoticons/kddi/129.gif)]]" => 0xE51B,
|
387
|
-
"[[Image(htdocs:emoticons/kddi/130.gif)]]" => 0xE583,
|
388
|
-
"[[Image(htdocs:emoticons/kddi/131.gif)]]" => 0xE56C,
|
389
|
-
"[[Image(htdocs:emoticons/kddi/132.gif)]]" => 0xE55E,
|
390
|
-
"[[Image(htdocs:emoticons/kddi/133.gif)]]" => 0xE4CE,
|
391
|
-
"[[Image(htdocs:emoticons/kddi/134.gif)]]" => 0xE4E1,
|
392
|
-
"[[Image(htdocs:emoticons/kddi/135.gif)]]" => 0xE584,
|
393
|
-
"[[Image(htdocs:emoticons/kddi/136.gif)]]" => 0xE55F,
|
394
|
-
"[[Image(htdocs:emoticons/kddi/137.gif)]]" => 0xE56D,
|
395
|
-
"[[Image(htdocs:emoticons/kddi/138.gif)]]" => 0xE51C,
|
396
|
-
"[[Image(htdocs:emoticons/kddi/139.gif)]]" => 0xE585,
|
397
|
-
"[[Image(htdocs:emoticons/kddi/140.gif)]]" => 0xE4FF,
|
398
|
-
"[[Image(htdocs:emoticons/kddi/141.gif)]]" => 0xE500,
|
399
|
-
"[[Image(htdocs:emoticons/kddi/142.gif)]]" => 0xE56E,
|
400
|
-
"[[Image(htdocs:emoticons/kddi/143.gif)]]" => 0xE4A0,
|
401
|
-
"[[Image(htdocs:emoticons/kddi/144.gif)]]" => 0xE4CF,
|
402
|
-
"[[Image(htdocs:emoticons/kddi/145.gif)]]" => 0xE51D,
|
403
|
-
"[[Image(htdocs:emoticons/kddi/146.gif)]]" => 0xE4AC,
|
404
|
-
"[[Image(htdocs:emoticons/kddi/147.gif)]]" => 0xE56F,
|
405
|
-
"[[Image(htdocs:emoticons/kddi/148.gif)]]" => 0xE4B2,
|
406
|
-
"[[Image(htdocs:emoticons/kddi/149.gif)]]" => 0xE4A1,
|
407
|
-
"[[Image(htdocs:emoticons/kddi/150.gif)]]" => 0xE586,
|
408
|
-
"[[Image(htdocs:emoticons/kddi/151.gif)]]" => 0xE591,
|
409
|
-
"[[Image(htdocs:emoticons/kddi/152.gif)]]" => 0xE587,
|
410
|
-
"[[Image(htdocs:emoticons/kddi/153.gif)]]" => 0xE592,
|
411
|
-
"[[Image(htdocs:emoticons/kddi/154.gif)]]" => 0xE593,
|
412
|
-
"[[Image(htdocs:emoticons/kddi/155.gif)]]" => 0xE51E,
|
413
|
-
"[[Image(htdocs:emoticons/kddi/156.gif)]]" => 0xE4AD,
|
414
|
-
"[[Image(htdocs:emoticons/kddi/157.gif)]]" => 0xE570,
|
415
|
-
"[[Image(htdocs:emoticons/kddi/158.gif)]]" => 0xE4A2,
|
416
|
-
"[[Image(htdocs:emoticons/kddi/159.gif)]]" => 0xE576,
|
417
|
-
"[[Image(htdocs:emoticons/kddi/160.gif)]]" => 0xE4C4,
|
418
|
-
"[[Image(htdocs:emoticons/kddi/161.gif)]]" => 0xE588,
|
419
|
-
"[[Image(htdocs:emoticons/kddi/162.gif)]]" => 0xE589,
|
420
|
-
"[[Image(htdocs:emoticons/kddi/163.gif)]]" => 0xE501,
|
421
|
-
"[[Image(htdocs:emoticons/kddi/164.gif)]]" => 0xE58A,
|
422
|
-
"[[Image(htdocs:emoticons/kddi/165.gif)]]" => 0xE51F,
|
423
|
-
"[[Image(htdocs:emoticons/kddi/166.gif)]]" => 0xE520,
|
424
|
-
"[[Image(htdocs:emoticons/kddi/167.gif)]]" => 0xE48E,
|
425
|
-
"[[Image(htdocs:emoticons/kddi/168.gif)]]" => 0xE4B3,
|
426
|
-
"[[Image(htdocs:emoticons/kddi/169.gif)]]" => 0xE4B4,
|
427
|
-
"[[Image(htdocs:emoticons/kddi/170.gif)]]" => 0xE4C8,
|
428
|
-
"[[Image(htdocs:emoticons/kddi/171.gif)]]" => 0xE58B,
|
429
|
-
"[[Image(htdocs:emoticons/kddi/172.gif)]]" => 0xE4B5,
|
430
|
-
"[[Image(htdocs:emoticons/kddi/173.gif)]]" => 0xE58C,
|
431
|
-
"[[Image(htdocs:emoticons/kddi/174.gif)]]" => 0xE58D,
|
432
|
-
"[[Image(htdocs:emoticons/kddi/175.gif)]]" => 0xE58E,
|
433
|
-
"[[Image(htdocs:emoticons/kddi/176.gif)]]" => 0xE47D,
|
434
|
-
"[[Image(htdocs:emoticons/kddi/177.gif)]]" => 0xE47E,
|
435
|
-
"[[Image(htdocs:emoticons/kddi/178.gif)]]" => 0xE47F,
|
436
|
-
"[[Image(htdocs:emoticons/kddi/179.gif)]]" => 0xE480,
|
437
|
-
"[[Image(htdocs:emoticons/kddi/180.gif)]]" => 0xE522,
|
438
|
-
"[[Image(htdocs:emoticons/kddi/181.gif)]]" => 0xE523,
|
439
|
-
"[[Image(htdocs:emoticons/kddi/182.gif)]]" => 0xE524,
|
440
|
-
"[[Image(htdocs:emoticons/kddi/183.gif)]]" => 0xE525,
|
441
|
-
"[[Image(htdocs:emoticons/kddi/184.gif)]]" => 0xE526,
|
442
|
-
"[[Image(htdocs:emoticons/kddi/185.gif)]]" => 0xE527,
|
443
|
-
"[[Image(htdocs:emoticons/kddi/186.gif)]]" => 0xE528,
|
444
|
-
"[[Image(htdocs:emoticons/kddi/187.gif)]]" => 0xE529,
|
445
|
-
"[[Image(htdocs:emoticons/kddi/188.gif)]]" => 0xE52A,
|
446
|
-
"[[Image(htdocs:emoticons/kddi/189.gif)]]" => 0xE52B,
|
447
|
-
"[[Image(htdocs:emoticons/kddi/190.gif)]]" => 0xE469,
|
448
|
-
"[[Image(htdocs:emoticons/kddi/191.gif)]]" => 0xE485,
|
449
|
-
"[[Image(htdocs:emoticons/kddi/192.gif)]]" => 0xE48F,
|
450
|
-
"[[Image(htdocs:emoticons/kddi/193.gif)]]" => 0xE490,
|
451
|
-
"[[Image(htdocs:emoticons/kddi/194.gif)]]" => 0xE491,
|
452
|
-
"[[Image(htdocs:emoticons/kddi/195.gif)]]" => 0xE492,
|
453
|
-
"[[Image(htdocs:emoticons/kddi/196.gif)]]" => 0xE493,
|
454
|
-
"[[Image(htdocs:emoticons/kddi/197.gif)]]" => 0xE494,
|
455
|
-
"[[Image(htdocs:emoticons/kddi/198.gif)]]" => 0xE495,
|
456
|
-
"[[Image(htdocs:emoticons/kddi/199.gif)]]" => 0xE496,
|
457
|
-
"[[Image(htdocs:emoticons/kddi/200.gif)]]" => 0xE497,
|
458
|
-
"[[Image(htdocs:emoticons/kddi/201.gif)]]" => 0xE498,
|
459
|
-
"[[Image(htdocs:emoticons/kddi/202.gif)]]" => 0xE499,
|
460
|
-
"[[Image(htdocs:emoticons/kddi/203.gif)]]" => 0xE49A,
|
461
|
-
"[[Image(htdocs:emoticons/kddi/204.gif)]]" => 0xE49B,
|
462
|
-
"[[Image(htdocs:emoticons/kddi/205.gif)]]" => 0xE4A3,
|
463
|
-
"[[Image(htdocs:emoticons/kddi/206.gif)]]" => 0xE4A4,
|
464
|
-
"[[Image(htdocs:emoticons/kddi/207.gif)]]" => 0xE4A5,
|
465
|
-
"[[Image(htdocs:emoticons/kddi/208.gif)]]" => 0xE4A6,
|
466
|
-
"[[Image(htdocs:emoticons/kddi/209.gif)]]" => 0xE4A7,
|
467
|
-
"[[Image(htdocs:emoticons/kddi/210.gif)]]" => 0xE4A8,
|
468
|
-
"[[Image(htdocs:emoticons/kddi/211.gif)]]" => 0xE4A9,
|
469
|
-
"[[Image(htdocs:emoticons/kddi/212.gif)]]" => 0xE4AA,
|
470
|
-
"[[Image(htdocs:emoticons/kddi/213.gif)]]" => 0xE571,
|
471
|
-
"[[Image(htdocs:emoticons/kddi/214.gif)]]" => 0xE572,
|
472
|
-
"[[Image(htdocs:emoticons/kddi/215.gif)]]" => 0xE4AE,
|
473
|
-
"[[Image(htdocs:emoticons/kddi/216.gif)]]" => 0xE4AF,
|
474
|
-
"[[Image(htdocs:emoticons/kddi/217.gif)]]" => 0xE4B0,
|
475
|
-
"[[Image(htdocs:emoticons/kddi/218.gif)]]" => 0xE46B,
|
476
|
-
"[[Image(htdocs:emoticons/kddi/219.gif)]]" => 0xE4B6,
|
477
|
-
"[[Image(htdocs:emoticons/kddi/220.gif)]]" => 0xE4B7,
|
478
|
-
"[[Image(htdocs:emoticons/kddi/221.gif)]]" => 0xE4B8,
|
479
|
-
"[[Image(htdocs:emoticons/kddi/222.gif)]]" => 0xE4B9,
|
480
|
-
"[[Image(htdocs:emoticons/kddi/223.gif)]]" => 0xE46D,
|
481
|
-
"[[Image(htdocs:emoticons/kddi/224.gif)]]" => 0xE4BC,
|
482
|
-
"[[Image(htdocs:emoticons/kddi/225.gif)]]" => 0xE4BD,
|
483
|
-
"[[Image(htdocs:emoticons/kddi/226.gif)]]" => 0xE4BE,
|
484
|
-
"[[Image(htdocs:emoticons/kddi/227.gif)]]" => 0xE4BF,
|
485
|
-
"[[Image(htdocs:emoticons/kddi/228.gif)]]" => 0xE4C0,
|
486
|
-
"[[Image(htdocs:emoticons/kddi/229.gif)]]" => 0xE46E,
|
487
|
-
"[[Image(htdocs:emoticons/kddi/230.gif)]]" => 0xE46F,
|
488
|
-
"[[Image(htdocs:emoticons/kddi/231.gif)]]" => 0xE4C5,
|
489
|
-
"[[Image(htdocs:emoticons/kddi/232.gif)]]" => 0xE4C6,
|
490
|
-
"[[Image(htdocs:emoticons/kddi/233.gif)]]" => 0xE4C7,
|
491
|
-
"[[Image(htdocs:emoticons/kddi/234.gif)]]" => 0xE4C9,
|
492
|
-
"[[Image(htdocs:emoticons/kddi/235.gif)]]" => 0xE4CA,
|
493
|
-
"[[Image(htdocs:emoticons/kddi/236.gif)]]" => 0xE4CB,
|
494
|
-
"[[Image(htdocs:emoticons/kddi/237.gif)]]" => 0xE4CC,
|
495
|
-
"[[Image(htdocs:emoticons/kddi/238.gif)]]" => 0xE4CD,
|
496
|
-
"[[Image(htdocs:emoticons/kddi/239.gif)]]" => 0xE4D0,
|
497
|
-
"[[Image(htdocs:emoticons/kddi/240.gif)]]" => 0xE4D1,
|
498
|
-
"[[Image(htdocs:emoticons/kddi/241.gif)]]" => 0xE4D2,
|
499
|
-
"[[Image(htdocs:emoticons/kddi/242.gif)]]" => 0xE4D3,
|
500
|
-
"[[Image(htdocs:emoticons/kddi/243.gif)]]" => 0xE4D4,
|
501
|
-
"[[Image(htdocs:emoticons/kddi/244.gif)]]" => 0xE4D5,
|
502
|
-
"[[Image(htdocs:emoticons/kddi/245.gif)]]" => 0xE4D6,
|
503
|
-
"[[Image(htdocs:emoticons/kddi/246.gif)]]" => 0xE470,
|
504
|
-
"[[Image(htdocs:emoticons/kddi/247.gif)]]" => 0xE4D7,
|
505
|
-
"[[Image(htdocs:emoticons/kddi/248.gif)]]" => 0xE4D8,
|
506
|
-
"[[Image(htdocs:emoticons/kddi/249.gif)]]" => 0xE4D9,
|
507
|
-
"[[Image(htdocs:emoticons/kddi/250.gif)]]" => 0xE4DA,
|
508
|
-
"[[Image(htdocs:emoticons/kddi/251.gif)]]" => 0xE4DB,
|
509
|
-
"[[Image(htdocs:emoticons/kddi/252.gif)]]" => 0xE4DC,
|
510
|
-
"[[Image(htdocs:emoticons/kddi/253.gif)]]" => 0xE4DD,
|
511
|
-
"[[Image(htdocs:emoticons/kddi/254.gif)]]" => 0xE4DE,
|
512
|
-
"[[Image(htdocs:emoticons/kddi/255.gif)]]" => 0xE4E2,
|
513
|
-
"[[Image(htdocs:emoticons/kddi/256.gif)]]" => 0xE4E3,
|
514
|
-
"[[Image(htdocs:emoticons/kddi/257.gif)]]" => 0xE471,
|
515
|
-
"[[Image(htdocs:emoticons/kddi/258.gif)]]" => 0xE472,
|
516
|
-
"[[Image(htdocs:emoticons/kddi/259.gif)]]" => 0xE473,
|
517
|
-
"[[Image(htdocs:emoticons/kddi/260.gif)]]" => 0xE474,
|
518
|
-
"[[Image(htdocs:emoticons/kddi/261.gif)]]" => 0xE475,
|
519
|
-
"[[Image(htdocs:emoticons/kddi/262.gif)]]" => 0xE4E5,
|
520
|
-
"[[Image(htdocs:emoticons/kddi/263.gif)]]" => 0xE4E6,
|
521
|
-
"[[Image(htdocs:emoticons/kddi/264.gif)]]" => 0xE4E7,
|
522
|
-
"[[Image(htdocs:emoticons/kddi/265.gif)]]" => 0xE477,
|
523
|
-
"[[Image(htdocs:emoticons/kddi/266.gif)]]" => 0xE478,
|
524
|
-
"[[Image(htdocs:emoticons/kddi/267.gif)]]" => 0xE479,
|
525
|
-
"[[Image(htdocs:emoticons/kddi/268.gif)]]" => 0xE47A,
|
526
|
-
"[[Image(htdocs:emoticons/kddi/269.gif)]]" => 0xE47B,
|
527
|
-
"[[Image(htdocs:emoticons/kddi/270.gif)]]" => 0xE4E8,
|
528
|
-
"[[Image(htdocs:emoticons/kddi/271.gif)]]" => 0xE4E9,
|
529
|
-
"[[Image(htdocs:emoticons/kddi/272.gif)]]" => 0xE4EA,
|
530
|
-
"[[Image(htdocs:emoticons/kddi/273.gif)]]" => 0xE4EB,
|
531
|
-
"[[Image(htdocs:emoticons/kddi/274.gif)]]" => 0xE4EC,
|
532
|
-
"[[Image(htdocs:emoticons/kddi/275.gif)]]" => 0xE4ED,
|
533
|
-
"[[Image(htdocs:emoticons/kddi/276.gif)]]" => 0xE4EE,
|
534
|
-
"[[Image(htdocs:emoticons/kddi/277.gif)]]" => 0xE4EF,
|
535
|
-
"[[Image(htdocs:emoticons/kddi/278.gif)]]" => 0xE4F0,
|
536
|
-
"[[Image(htdocs:emoticons/kddi/279.gif)]]" => 0xE4F1,
|
537
|
-
"[[Image(htdocs:emoticons/kddi/280.gif)]]" => 0xE4F2,
|
538
|
-
"[[Image(htdocs:emoticons/kddi/281.gif)]]" => 0xE4F3,
|
539
|
-
"[[Image(htdocs:emoticons/kddi/282.gif)]]" => 0xE4F4,
|
540
|
-
"[[Image(htdocs:emoticons/kddi/283.gif)]]" => 0xE4F5,
|
541
|
-
"[[Image(htdocs:emoticons/kddi/284.gif)]]" => 0xE4F6,
|
542
|
-
"[[Image(htdocs:emoticons/kddi/285.gif)]]" => 0xE4F7,
|
543
|
-
"[[Image(htdocs:emoticons/kddi/286.gif)]]" => 0xE4F8,
|
544
|
-
"[[Image(htdocs:emoticons/kddi/287.gif)]]" => 0xE4F9,
|
545
|
-
"[[Image(htdocs:emoticons/kddi/288.gif)]]" => 0xE502,
|
546
|
-
"[[Image(htdocs:emoticons/kddi/289.gif)]]" => 0xE503,
|
547
|
-
"[[Image(htdocs:emoticons/kddi/290.gif)]]" => 0xE504,
|
548
|
-
"[[Image(htdocs:emoticons/kddi/291.gif)]]" => 0xE505,
|
549
|
-
"[[Image(htdocs:emoticons/kddi/292.gif)]]" => 0xE506,
|
550
|
-
"[[Image(htdocs:emoticons/kddi/293.gif)]]" => 0xE507,
|
551
|
-
"[[Image(htdocs:emoticons/kddi/294.gif)]]" => 0xE508,
|
552
|
-
"[[Image(htdocs:emoticons/kddi/295.gif)]]" => 0xE509,
|
553
|
-
"[[Image(htdocs:emoticons/kddi/296.gif)]]" => 0xE50A,
|
554
|
-
"[[Image(htdocs:emoticons/kddi/297.gif)]]" => 0xE50B,
|
555
|
-
"[[Image(htdocs:emoticons/kddi/298.gif)]]" => 0xE577,
|
556
|
-
"[[Image(htdocs:emoticons/kddi/299.gif)]]" => 0xE578,
|
557
|
-
"[[Image(htdocs:emoticons/kddi/300.gif)]]" => 0xE50C,
|
558
|
-
"[[Image(htdocs:emoticons/kddi/301.gif)]]" => 0xE50D,
|
559
|
-
"[[Image(htdocs:emoticons/kddi/302.gif)]]" => 0xE50E,
|
560
|
-
"[[Image(htdocs:emoticons/kddi/303.gif)]]" => 0xE50F,
|
561
|
-
"[[Image(htdocs:emoticons/kddi/304.gif)]]" => 0xE510,
|
562
|
-
"[[Image(htdocs:emoticons/kddi/305.gif)]]" => 0xE598,
|
563
|
-
"[[Image(htdocs:emoticons/kddi/306.gif)]]" => 0xE599,
|
564
|
-
"[[Image(htdocs:emoticons/kddi/307.gif)]]" => 0xE59A,
|
565
|
-
"[[Image(htdocs:emoticons/kddi/308.gif)]]" => 0xE59B,
|
566
|
-
"[[Image(htdocs:emoticons/kddi/309.gif)]]" => 0xE59C,
|
567
|
-
"[[Image(htdocs:emoticons/kddi/310.gif)]]" => 0xE59D,
|
568
|
-
"[[Image(htdocs:emoticons/kddi/311.gif)]]" => 0xE59E,
|
569
|
-
"[[Image(htdocs:emoticons/kddi/312.gif)]]" => 0xE59F,
|
570
|
-
"[[Image(htdocs:emoticons/kddi/313.gif)]]" => 0xE5A0,
|
571
|
-
"[[Image(htdocs:emoticons/kddi/314.gif)]]" => 0xE5A1,
|
572
|
-
"[[Image(htdocs:emoticons/kddi/315.gif)]]" => 0xE5A2,
|
573
|
-
"[[Image(htdocs:emoticons/kddi/316.gif)]]" => 0xE5A3,
|
574
|
-
"[[Image(htdocs:emoticons/kddi/317.gif)]]" => 0xE5A4,
|
575
|
-
"[[Image(htdocs:emoticons/kddi/318.gif)]]" => 0xE5A5,
|
576
|
-
"[[Image(htdocs:emoticons/kddi/319.gif)]]" => 0xE5A6,
|
577
|
-
"[[Image(htdocs:emoticons/kddi/320.gif)]]" => 0xE5A7,
|
578
|
-
"[[Image(htdocs:emoticons/kddi/321.gif)]]" => 0xE5A8,
|
579
|
-
"[[Image(htdocs:emoticons/kddi/322.gif)]]" => 0xE5A9,
|
580
|
-
"[[Image(htdocs:emoticons/kddi/323.gif)]]" => 0xE5AA,
|
581
|
-
"[[Image(htdocs:emoticons/kddi/324.gif)]]" => 0xE5AB,
|
582
|
-
"[[Image(htdocs:emoticons/kddi/325.gif)]]" => 0xE5AC,
|
583
|
-
"[[Image(htdocs:emoticons/kddi/326.gif)]]" => 0xE5AD,
|
584
|
-
"[[Image(htdocs:emoticons/kddi/327.gif)]]" => 0xE5AE,
|
585
|
-
"[[Image(htdocs:emoticons/kddi/328.gif)]]" => 0xE5AF,
|
586
|
-
"[[Image(htdocs:emoticons/kddi/329.gif)]]" => 0xE5B0,
|
587
|
-
"[[Image(htdocs:emoticons/kddi/330.gif)]]" => 0xE5B1,
|
588
|
-
"[[Image(htdocs:emoticons/kddi/331.gif)]]" => 0xE5B2,
|
589
|
-
"[[Image(htdocs:emoticons/kddi/332.gif)]]" => 0xE5B3,
|
590
|
-
"[[Image(htdocs:emoticons/kddi/333.gif)]]" => 0xE5B4,
|
591
|
-
"[[Image(htdocs:emoticons/kddi/334.gif)]]" => 0xE5B5,
|
592
|
-
"[[Image(htdocs:emoticons/kddi/335.gif)]]" => 0xE5B6,
|
593
|
-
"[[Image(htdocs:emoticons/kddi/336.gif)]]" => 0xE5B7,
|
594
|
-
"[[Image(htdocs:emoticons/kddi/337.gif)]]" => 0xE5B8,
|
595
|
-
"[[Image(htdocs:emoticons/kddi/338.gif)]]" => 0xE5B9,
|
596
|
-
"[[Image(htdocs:emoticons/kddi/339.gif)]]" => 0xE5BA,
|
597
|
-
"[[Image(htdocs:emoticons/kddi/340.gif)]]" => 0xE5BB,
|
598
|
-
"[[Image(htdocs:emoticons/kddi/341.gif)]]" => 0xE5BC,
|
599
|
-
"[[Image(htdocs:emoticons/kddi/342.gif)]]" => 0xE5BD,
|
600
|
-
"[[Image(htdocs:emoticons/kddi/343.gif)]]" => 0xE5BE,
|
601
|
-
"[[Image(htdocs:emoticons/kddi/344.gif)]]" => 0xE5BF,
|
602
|
-
"[[Image(htdocs:emoticons/kddi/345.gif)]]" => 0xE5C0,
|
603
|
-
"[[Image(htdocs:emoticons/kddi/346.gif)]]" => 0xE5C1,
|
604
|
-
"[[Image(htdocs:emoticons/kddi/347.gif)]]" => 0xE5C2,
|
605
|
-
"[[Image(htdocs:emoticons/kddi/348.gif)]]" => 0xE5C3,
|
606
|
-
"[[Image(htdocs:emoticons/kddi/349.gif)]]" => 0xE5C4,
|
607
|
-
"[[Image(htdocs:emoticons/kddi/350.gif)]]" => 0xE5C5,
|
608
|
-
"[[Image(htdocs:emoticons/kddi/351.gif)]]" => 0xE5C6,
|
609
|
-
"[[Image(htdocs:emoticons/kddi/352.gif)]]" => 0xE5C7,
|
610
|
-
"[[Image(htdocs:emoticons/kddi/353.gif)]]" => 0xE5C8,
|
611
|
-
"[[Image(htdocs:emoticons/kddi/354.gif)]]" => 0xE5C9,
|
612
|
-
"[[Image(htdocs:emoticons/kddi/355.gif)]]" => 0xE5CA,
|
613
|
-
"[[Image(htdocs:emoticons/kddi/356.gif)]]" => 0xE5CB,
|
614
|
-
"[[Image(htdocs:emoticons/kddi/357.gif)]]" => 0xE5CC,
|
615
|
-
"[[Image(htdocs:emoticons/kddi/358.gif)]]" => 0xE5CD,
|
616
|
-
"[[Image(htdocs:emoticons/kddi/359.gif)]]" => 0xE5CE,
|
617
|
-
"[[Image(htdocs:emoticons/kddi/360.gif)]]" => 0xE5CF,
|
618
|
-
"[[Image(htdocs:emoticons/kddi/361.gif)]]" => 0xE5D0,
|
619
|
-
"[[Image(htdocs:emoticons/kddi/362.gif)]]" => 0xE5D1,
|
620
|
-
"[[Image(htdocs:emoticons/kddi/363.gif)]]" => 0xE5D2,
|
621
|
-
"[[Image(htdocs:emoticons/kddi/364.gif)]]" => 0xE5D3,
|
622
|
-
"[[Image(htdocs:emoticons/kddi/365.gif)]]" => 0xE5D4,
|
623
|
-
"[[Image(htdocs:emoticons/kddi/366.gif)]]" => 0xE5D5,
|
624
|
-
"[[Image(htdocs:emoticons/kddi/367.gif)]]" => 0xE5D6,
|
625
|
-
"[[Image(htdocs:emoticons/kddi/368.gif)]]" => 0xE5D7,
|
626
|
-
"[[Image(htdocs:emoticons/kddi/369.gif)]]" => 0xE5D8,
|
627
|
-
"[[Image(htdocs:emoticons/kddi/370.gif)]]" => 0xE5D9,
|
628
|
-
"[[Image(htdocs:emoticons/kddi/371.gif)]]" => 0xE5DA,
|
629
|
-
"[[Image(htdocs:emoticons/kddi/372.gif)]]" => 0xE5DB,
|
630
|
-
"[[Image(htdocs:emoticons/kddi/373.gif)]]" => 0xE5DC,
|
631
|
-
"[[Image(htdocs:emoticons/kddi/374.gif)]]" => 0xE5DD,
|
632
|
-
"[[Image(htdocs:emoticons/kddi/375.gif)]]" => 0xE5DE,
|
633
|
-
"[[Image(htdocs:emoticons/kddi/376.gif)]]" => 0xE5DF,
|
634
|
-
"[[Image(htdocs:emoticons/kddi/377.gif)]]" => 0xEA80,
|
635
|
-
"[[Image(htdocs:emoticons/kddi/378.gif)]]" => 0xEA81,
|
636
|
-
"[[Image(htdocs:emoticons/kddi/379.gif)]]" => 0xEA82,
|
637
|
-
"[[Image(htdocs:emoticons/kddi/380.gif)]]" => 0xEA83,
|
638
|
-
"[[Image(htdocs:emoticons/kddi/381.gif)]]" => 0xEA84,
|
639
|
-
"[[Image(htdocs:emoticons/kddi/382.gif)]]" => 0xEA85,
|
640
|
-
"[[Image(htdocs:emoticons/kddi/383.gif)]]" => 0xEA86,
|
641
|
-
"[[Image(htdocs:emoticons/kddi/384.gif)]]" => 0xEA87,
|
642
|
-
"[[Image(htdocs:emoticons/kddi/385.gif)]]" => 0xEA88,
|
643
|
-
"[[Image(htdocs:emoticons/kddi/386.gif)]]" => 0xEA89,
|
644
|
-
"[[Image(htdocs:emoticons/kddi/387.gif)]]" => 0xEA8A,
|
645
|
-
"[[Image(htdocs:emoticons/kddi/388.gif)]]" => 0xEA8B,
|
646
|
-
"[[Image(htdocs:emoticons/kddi/389.gif)]]" => 0xEA8C,
|
647
|
-
"[[Image(htdocs:emoticons/kddi/390.gif)]]" => 0xEA8D,
|
648
|
-
"[[Image(htdocs:emoticons/kddi/391.gif)]]" => 0xEA8E,
|
649
|
-
"[[Image(htdocs:emoticons/kddi/392.gif)]]" => 0xEA8F,
|
650
|
-
"[[Image(htdocs:emoticons/kddi/393.gif)]]" => 0xEA90,
|
651
|
-
"[[Image(htdocs:emoticons/kddi/394.gif)]]" => 0xEA91,
|
652
|
-
"[[Image(htdocs:emoticons/kddi/395.gif)]]" => 0xEA92,
|
653
|
-
"[[Image(htdocs:emoticons/kddi/396.gif)]]" => 0xEA93,
|
654
|
-
"[[Image(htdocs:emoticons/kddi/397.gif)]]" => 0xEA94,
|
655
|
-
"[[Image(htdocs:emoticons/kddi/398.gif)]]" => 0xEA95,
|
656
|
-
"[[Image(htdocs:emoticons/kddi/399.gif)]]" => 0xEA96,
|
657
|
-
"[[Image(htdocs:emoticons/kddi/400.gif)]]" => 0xEA97,
|
658
|
-
"[[Image(htdocs:emoticons/kddi/401.gif)]]" => 0xEA98,
|
659
|
-
"[[Image(htdocs:emoticons/kddi/402.gif)]]" => 0xEA99,
|
660
|
-
"[[Image(htdocs:emoticons/kddi/403.gif)]]" => 0xEA9A,
|
661
|
-
"[[Image(htdocs:emoticons/kddi/404.gif)]]" => 0xEA9B,
|
662
|
-
"[[Image(htdocs:emoticons/kddi/405.gif)]]" => 0xEA9C,
|
663
|
-
"[[Image(htdocs:emoticons/kddi/406.gif)]]" => 0xEA9D,
|
664
|
-
"[[Image(htdocs:emoticons/kddi/407.gif)]]" => 0xEA9E,
|
665
|
-
"[[Image(htdocs:emoticons/kddi/408.gif)]]" => 0xEA9F,
|
666
|
-
"[[Image(htdocs:emoticons/kddi/409.gif)]]" => 0xEAA0,
|
667
|
-
"[[Image(htdocs:emoticons/kddi/410.gif)]]" => 0xEAA1,
|
668
|
-
"[[Image(htdocs:emoticons/kddi/411.gif)]]" => 0xEAA2,
|
669
|
-
"[[Image(htdocs:emoticons/kddi/412.gif)]]" => 0xEAA3,
|
670
|
-
"[[Image(htdocs:emoticons/kddi/413.gif)]]" => 0xEAA4,
|
671
|
-
"[[Image(htdocs:emoticons/kddi/414.gif)]]" => 0xEAA5,
|
672
|
-
"[[Image(htdocs:emoticons/kddi/415.gif)]]" => 0xEAA6,
|
673
|
-
"[[Image(htdocs:emoticons/kddi/416.gif)]]" => 0xEAA7,
|
674
|
-
"[[Image(htdocs:emoticons/kddi/417.gif)]]" => 0xEAA8,
|
675
|
-
"[[Image(htdocs:emoticons/kddi/418.gif)]]" => 0xEAA9,
|
676
|
-
"[[Image(htdocs:emoticons/kddi/419.gif)]]" => 0xEAAA,
|
677
|
-
"[[Image(htdocs:emoticons/kddi/420.gif)]]" => 0xEAAB,
|
678
|
-
"[[Image(htdocs:emoticons/kddi/421.gif)]]" => 0xEAAC,
|
679
|
-
"[[Image(htdocs:emoticons/kddi/422.gif)]]" => 0xEAAD,
|
680
|
-
"[[Image(htdocs:emoticons/kddi/423.gif)]]" => 0xEAAE,
|
681
|
-
"[[Image(htdocs:emoticons/kddi/424.gif)]]" => 0xEAAF,
|
682
|
-
"[[Image(htdocs:emoticons/kddi/425.gif)]]" => 0xEAB0,
|
683
|
-
"[[Image(htdocs:emoticons/kddi/426.gif)]]" => 0xEAB1,
|
684
|
-
"[[Image(htdocs:emoticons/kddi/427.gif)]]" => 0xEAB2,
|
685
|
-
"[[Image(htdocs:emoticons/kddi/428.gif)]]" => 0xEAB3,
|
686
|
-
"[[Image(htdocs:emoticons/kddi/429.gif)]]" => 0xEAB4,
|
687
|
-
"[[Image(htdocs:emoticons/kddi/430.gif)]]" => 0xEAB5,
|
688
|
-
"[[Image(htdocs:emoticons/kddi/431.gif)]]" => 0xEAB6,
|
689
|
-
"[[Image(htdocs:emoticons/kddi/432.gif)]]" => 0xEAB7,
|
690
|
-
"[[Image(htdocs:emoticons/kddi/433.gif)]]" => 0xEAB8,
|
691
|
-
"[[Image(htdocs:emoticons/kddi/434.gif)]]" => 0xEAB9,
|
692
|
-
"[[Image(htdocs:emoticons/kddi/435.gif)]]" => 0xEABA,
|
693
|
-
"[[Image(htdocs:emoticons/kddi/436.gif)]]" => 0xEABB,
|
694
|
-
"[[Image(htdocs:emoticons/kddi/437.gif)]]" => 0xEABC,
|
695
|
-
"[[Image(htdocs:emoticons/kddi/438.gif)]]" => 0xEABD,
|
696
|
-
"[[Image(htdocs:emoticons/kddi/439.gif)]]" => 0xEABE,
|
697
|
-
"[[Image(htdocs:emoticons/kddi/440.gif)]]" => 0xEABF,
|
698
|
-
"[[Image(htdocs:emoticons/kddi/441.gif)]]" => 0xEAC0,
|
699
|
-
"[[Image(htdocs:emoticons/kddi/442.gif)]]" => 0xEAC1,
|
700
|
-
"[[Image(htdocs:emoticons/kddi/443.gif)]]" => 0xEAC2,
|
701
|
-
"[[Image(htdocs:emoticons/kddi/444.gif)]]" => 0xEAC3,
|
702
|
-
"[[Image(htdocs:emoticons/kddi/445.gif)]]" => 0xEAC4,
|
703
|
-
"[[Image(htdocs:emoticons/kddi/446.gif)]]" => 0xEAC5,
|
704
|
-
"[[Image(htdocs:emoticons/kddi/447.gif)]]" => 0xEAC6,
|
705
|
-
"[[Image(htdocs:emoticons/kddi/448.gif)]]" => 0xEAC7,
|
706
|
-
"[[Image(htdocs:emoticons/kddi/449.gif)]]" => 0xEAC8,
|
707
|
-
"[[Image(htdocs:emoticons/kddi/450.gif)]]" => 0xEAC9,
|
708
|
-
"[[Image(htdocs:emoticons/kddi/451.gif)]]" => 0xEACA,
|
709
|
-
"[[Image(htdocs:emoticons/kddi/452.gif)]]" => 0xEACB,
|
710
|
-
"[[Image(htdocs:emoticons/kddi/453.gif)]]" => 0xEACC,
|
711
|
-
"[[Image(htdocs:emoticons/kddi/454.gif)]]" => 0xEACD,
|
712
|
-
"[[Image(htdocs:emoticons/kddi/455.gif)]]" => 0xEACE,
|
713
|
-
"[[Image(htdocs:emoticons/kddi/456.gif)]]" => 0xEACF,
|
714
|
-
"[[Image(htdocs:emoticons/kddi/457.gif)]]" => 0xEAD0,
|
715
|
-
"[[Image(htdocs:emoticons/kddi/458.gif)]]" => 0xEAD1,
|
716
|
-
"[[Image(htdocs:emoticons/kddi/459.gif)]]" => 0xEAD2,
|
717
|
-
"[[Image(htdocs:emoticons/kddi/460.gif)]]" => 0xEAD3,
|
718
|
-
"[[Image(htdocs:emoticons/kddi/461.gif)]]" => 0xEAD4,
|
719
|
-
"[[Image(htdocs:emoticons/kddi/462.gif)]]" => 0xEAD5,
|
720
|
-
"[[Image(htdocs:emoticons/kddi/463.gif)]]" => 0xEAD6,
|
721
|
-
"[[Image(htdocs:emoticons/kddi/464.gif)]]" => 0xEAD7,
|
722
|
-
"[[Image(htdocs:emoticons/kddi/465.gif)]]" => 0xEAD8,
|
723
|
-
"[[Image(htdocs:emoticons/kddi/466.gif)]]" => 0xEAD9,
|
724
|
-
"[[Image(htdocs:emoticons/kddi/467.gif)]]" => 0xEADA,
|
725
|
-
"[[Image(htdocs:emoticons/kddi/468.gif)]]" => 0xEADB,
|
726
|
-
"[[Image(htdocs:emoticons/kddi/469.gif)]]" => 0xEADC,
|
727
|
-
"[[Image(htdocs:emoticons/kddi/470.gif)]]" => 0xEADD,
|
728
|
-
"[[Image(htdocs:emoticons/kddi/471.gif)]]" => 0xEADE,
|
729
|
-
"[[Image(htdocs:emoticons/kddi/472.gif)]]" => 0xEADF,
|
730
|
-
"[[Image(htdocs:emoticons/kddi/473.gif)]]" => 0xEAE0,
|
731
|
-
"[[Image(htdocs:emoticons/kddi/474.gif)]]" => 0xEAE1,
|
732
|
-
"[[Image(htdocs:emoticons/kddi/475.gif)]]" => 0xEAE2,
|
733
|
-
"[[Image(htdocs:emoticons/kddi/476.gif)]]" => 0xEAE3,
|
734
|
-
"[[Image(htdocs:emoticons/kddi/477.gif)]]" => 0xEAE4,
|
735
|
-
"[[Image(htdocs:emoticons/kddi/478.gif)]]" => 0xEAE5,
|
736
|
-
"[[Image(htdocs:emoticons/kddi/479.gif)]]" => 0xEAE6,
|
737
|
-
"[[Image(htdocs:emoticons/kddi/480.gif)]]" => 0xEAE7,
|
738
|
-
"[[Image(htdocs:emoticons/kddi/481.gif)]]" => 0xEAE8,
|
739
|
-
"[[Image(htdocs:emoticons/kddi/482.gif)]]" => 0xEAE9,
|
740
|
-
"[[Image(htdocs:emoticons/kddi/483.gif)]]" => 0xEAEA,
|
741
|
-
"[[Image(htdocs:emoticons/kddi/484.gif)]]" => 0xEAEB,
|
742
|
-
"[[Image(htdocs:emoticons/kddi/485.gif)]]" => 0xEAEC,
|
743
|
-
"[[Image(htdocs:emoticons/kddi/486.gif)]]" => 0xEAED,
|
744
|
-
"[[Image(htdocs:emoticons/kddi/487.gif)]]" => 0xEAEE,
|
745
|
-
"[[Image(htdocs:emoticons/kddi/488.gif)]]" => 0xEAEF,
|
746
|
-
"[[Image(htdocs:emoticons/kddi/489.gif)]]" => 0xEAF0,
|
747
|
-
"[[Image(htdocs:emoticons/kddi/490.gif)]]" => 0xEAF1,
|
748
|
-
"[[Image(htdocs:emoticons/kddi/491.gif)]]" => 0xEAF2,
|
749
|
-
"[[Image(htdocs:emoticons/kddi/492.gif)]]" => 0xEAF3,
|
750
|
-
"[[Image(htdocs:emoticons/kddi/493.gif)]]" => 0xEAF4,
|
751
|
-
"[[Image(htdocs:emoticons/kddi/494.gif)]]" => 0xEAF5,
|
752
|
-
"[[Image(htdocs:emoticons/kddi/495.gif)]]" => 0xEAF6,
|
753
|
-
"[[Image(htdocs:emoticons/kddi/496.gif)]]" => 0xEAF7,
|
754
|
-
"[[Image(htdocs:emoticons/kddi/497.gif)]]" => 0xEAF8,
|
755
|
-
"[[Image(htdocs:emoticons/kddi/498.gif)]]" => 0xEAF9,
|
756
|
-
"[[Image(htdocs:emoticons/kddi/499.gif)]]" => 0xEAFA,
|
757
|
-
"[[Image(htdocs:emoticons/kddi/500.gif)]]" => 0xEAFB,
|
758
|
-
"[[Image(htdocs:emoticons/kddi/501.gif)]]" => 0xEAFC,
|
759
|
-
"[[Image(htdocs:emoticons/kddi/502.gif)]]" => 0xEAFD,
|
760
|
-
"[[Image(htdocs:emoticons/kddi/503.gif)]]" => 0xEAFE,
|
761
|
-
"[[Image(htdocs:emoticons/kddi/504.gif)]]" => 0xEAFF,
|
762
|
-
"[[Image(htdocs:emoticons/kddi/505.gif)]]" => 0xEB00,
|
763
|
-
"[[Image(htdocs:emoticons/kddi/506.gif)]]" => 0xEB01,
|
764
|
-
"[[Image(htdocs:emoticons/kddi/507.gif)]]" => 0xEB02,
|
765
|
-
"[[Image(htdocs:emoticons/kddi/508.gif)]]" => 0xEB03,
|
766
|
-
"[[Image(htdocs:emoticons/kddi/509.gif)]]" => 0xEB04,
|
767
|
-
"[[Image(htdocs:emoticons/kddi/510.gif)]]" => 0xEB05,
|
768
|
-
"[[Image(htdocs:emoticons/kddi/511.gif)]]" => 0xEB06,
|
769
|
-
"[[Image(htdocs:emoticons/kddi/512.gif)]]" => 0xEB07,
|
770
|
-
"[[Image(htdocs:emoticons/kddi/513.gif)]]" => 0xEB08,
|
771
|
-
"[[Image(htdocs:emoticons/kddi/514.gif)]]" => 0xEB09,
|
772
|
-
"[[Image(htdocs:emoticons/kddi/515.gif)]]" => 0xEB0A,
|
773
|
-
"[[Image(htdocs:emoticons/kddi/516.gif)]]" => 0xEB0B,
|
774
|
-
"[[Image(htdocs:emoticons/kddi/517.gif)]]" => 0xEB0C,
|
775
|
-
"[[Image(htdocs:emoticons/kddi/518.gif)]]" => 0xEB0D,
|
776
|
-
"[[Image(htdocs:emoticons/kddi/700.gif)]]" => 0xEB0E,
|
777
|
-
"[[Image(htdocs:emoticons/kddi/701.gif)]]" => 0xEB0F,
|
778
|
-
"[[Image(htdocs:emoticons/kddi/702.gif)]]" => 0xEB10,
|
779
|
-
"[[Image(htdocs:emoticons/kddi/703.gif)]]" => 0xEB11,
|
780
|
-
"[[Image(htdocs:emoticons/kddi/704.gif)]]" => 0xEB12,
|
781
|
-
"[[Image(htdocs:emoticons/kddi/705.gif)]]" => 0xEB13,
|
782
|
-
"[[Image(htdocs:emoticons/kddi/706.gif)]]" => 0xEB14,
|
783
|
-
"[[Image(htdocs:emoticons/kddi/707.gif)]]" => 0xEB15,
|
784
|
-
"[[Image(htdocs:emoticons/kddi/708.gif)]]" => 0xEB16,
|
785
|
-
"[[Image(htdocs:emoticons/kddi/709.gif)]]" => 0xEB17,
|
786
|
-
"[[Image(htdocs:emoticons/kddi/710.gif)]]" => 0xEB18,
|
787
|
-
"[[Image(htdocs:emoticons/kddi/711.gif)]]" => 0xEB19,
|
788
|
-
"[[Image(htdocs:emoticons/kddi/712.gif)]]" => 0xEB1A,
|
789
|
-
"[[Image(htdocs:emoticons/kddi/713.gif)]]" => 0xEB1B,
|
790
|
-
"[[Image(htdocs:emoticons/kddi/714.gif)]]" => 0xEB1C,
|
791
|
-
"[[Image(htdocs:emoticons/kddi/715.gif)]]" => 0xEB1D,
|
792
|
-
"[[Image(htdocs:emoticons/kddi/716.gif)]]" => 0xEB1F,
|
793
|
-
"[[Image(htdocs:emoticons/kddi/717.gif)]]" => 0xEB1F,
|
794
|
-
"[[Image(htdocs:emoticons/kddi/718.gif)]]" => 0xEB20,
|
795
|
-
"[[Image(htdocs:emoticons/kddi/719.gif)]]" => 0xEB21,
|
796
|
-
"[[Image(htdocs:emoticons/kddi/720.gif)]]" => 0xEB22,
|
797
|
-
"[[Image(htdocs:emoticons/kddi/721.gif)]]" => 0xEB23,
|
798
|
-
"[[Image(htdocs:emoticons/kddi/722.gif)]]" => 0xEB24,
|
799
|
-
"[[Image(htdocs:emoticons/kddi/723.gif)]]" => 0xEB25,
|
800
|
-
"[[Image(htdocs:emoticons/kddi/724.gif)]]" => 0xEB26,
|
801
|
-
"[[Image(htdocs:emoticons/kddi/725.gif)]]" => 0xEB27,
|
802
|
-
"[[Image(htdocs:emoticons/kddi/726.gif)]]" => 0xEB28,
|
803
|
-
"[[Image(htdocs:emoticons/kddi/727.gif)]]" => 0xEB29,
|
804
|
-
"[[Image(htdocs:emoticons/kddi/728.gif)]]" => 0xEB2A,
|
805
|
-
"[[Image(htdocs:emoticons/kddi/729.gif)]]" => 0xEB2B,
|
806
|
-
"[[Image(htdocs:emoticons/kddi/730.gif)]]" => 0xEB2C,
|
807
|
-
"[[Image(htdocs:emoticons/kddi/731.gif)]]" => 0xEB2D,
|
808
|
-
"[[Image(htdocs:emoticons/kddi/732.gif)]]" => 0xEB2E,
|
809
|
-
"[[Image(htdocs:emoticons/kddi/733.gif)]]" => 0xEB2F,
|
810
|
-
"[[Image(htdocs:emoticons/kddi/734.gif)]]" => 0xEB30,
|
811
|
-
"[[Image(htdocs:emoticons/kddi/735.gif)]]" => 0xEB31,
|
812
|
-
"[[Image(htdocs:emoticons/kddi/736.gif)]]" => 0xEB32,
|
813
|
-
"[[Image(htdocs:emoticons/kddi/737.gif)]]" => 0xEB33,
|
814
|
-
"[[Image(htdocs:emoticons/kddi/738.gif)]]" => 0xEB34,
|
815
|
-
"[[Image(htdocs:emoticons/kddi/739.gif)]]" => 0xEB35,
|
816
|
-
"[[Image(htdocs:emoticons/kddi/740.gif)]]" => 0xEB36,
|
817
|
-
"[[Image(htdocs:emoticons/kddi/741.gif)]]" => 0xEB37,
|
818
|
-
"[[Image(htdocs:emoticons/kddi/742.gif)]]" => 0xEB38,
|
819
|
-
"[[Image(htdocs:emoticons/kddi/743.gif)]]" => 0xEB39,
|
820
|
-
"[[Image(htdocs:emoticons/kddi/744.gif)]]" => 0xEB3A,
|
821
|
-
"[[Image(htdocs:emoticons/kddi/745.gif)]]" => 0xEB3B,
|
822
|
-
"[[Image(htdocs:emoticons/kddi/746.gif)]]" => 0xEB3C,
|
823
|
-
"[[Image(htdocs:emoticons/kddi/747.gif)]]" => 0xEB3D,
|
824
|
-
"[[Image(htdocs:emoticons/kddi/748.gif)]]" => 0xEB3E,
|
825
|
-
"[[Image(htdocs:emoticons/kddi/749.gif)]]" => 0xEB3F,
|
826
|
-
"[[Image(htdocs:emoticons/kddi/750.gif)]]" => 0xEB40,
|
827
|
-
"[[Image(htdocs:emoticons/kddi/751.gif)]]" => 0xEB41,
|
828
|
-
"[[Image(htdocs:emoticons/kddi/752.gif)]]" => 0xEB42,
|
829
|
-
"[[Image(htdocs:emoticons/kddi/753.gif)]]" => 0xEB43,
|
830
|
-
"[[Image(htdocs:emoticons/kddi/754.gif)]]" => 0xEB44,
|
831
|
-
"[[Image(htdocs:emoticons/kddi/755.gif)]]" => 0xEB45,
|
832
|
-
"[[Image(htdocs:emoticons/kddi/756.gif)]]" => 0xEB46,
|
833
|
-
"[[Image(htdocs:emoticons/kddi/757.gif)]]" => 0xEB47,
|
834
|
-
"[[Image(htdocs:emoticons/kddi/758.gif)]]" => 0xEB48,
|
835
|
-
"[[Image(htdocs:emoticons/kddi/759.gif)]]" => 0xEB49,
|
836
|
-
"[[Image(htdocs:emoticons/kddi/760.gif)]]" => 0xEB4A,
|
837
|
-
"[[Image(htdocs:emoticons/kddi/761.gif)]]" => 0xEB4B,
|
838
|
-
"[[Image(htdocs:emoticons/kddi/762.gif)]]" => 0xEB4C,
|
839
|
-
"[[Image(htdocs:emoticons/kddi/763.gif)]]" => 0xEB4D,
|
840
|
-
"[[Image(htdocs:emoticons/kddi/764.gif)]]" => 0xEB4E,
|
841
|
-
"[[Image(htdocs:emoticons/kddi/765.gif)]]" => 0xEB4F,
|
842
|
-
"[[Image(htdocs:emoticons/kddi/766.gif)]]" => 0xEB50,
|
843
|
-
"[[Image(htdocs:emoticons/kddi/767.gif)]]" => 0xEB51,
|
844
|
-
"[[Image(htdocs:emoticons/kddi/768.gif)]]" => 0xEB52,
|
845
|
-
"[[Image(htdocs:emoticons/kddi/769.gif)]]" => 0xEB53,
|
846
|
-
"[[Image(htdocs:emoticons/kddi/770.gif)]]" => 0xEB54,
|
847
|
-
"[[Image(htdocs:emoticons/kddi/771.gif)]]" => 0xEB55,
|
848
|
-
"[[Image(htdocs:emoticons/kddi/772.gif)]]" => 0xEB56,
|
849
|
-
"[[Image(htdocs:emoticons/kddi/773.gif)]]" => 0xEB57,
|
850
|
-
"[[Image(htdocs:emoticons/kddi/774.gif)]]" => 0xEB58,
|
851
|
-
"[[Image(htdocs:emoticons/kddi/775.gif)]]" => 0xEB59,
|
852
|
-
"[[Image(htdocs:emoticons/kddi/776.gif)]]" => 0xEB5A,
|
853
|
-
"[[Image(htdocs:emoticons/kddi/777.gif)]]" => 0xEB5B,
|
854
|
-
"[[Image(htdocs:emoticons/kddi/778.gif)]]" => 0xEB5C,
|
855
|
-
"[[Image(htdocs:emoticons/kddi/779.gif)]]" => 0xEB5D,
|
856
|
-
"[[Image(htdocs:emoticons/kddi/780.gif)]]" => 0xEB5E,
|
857
|
-
"[[Image(htdocs:emoticons/kddi/781.gif)]]" => 0xEB5F,
|
858
|
-
"[[Image(htdocs:emoticons/kddi/782.gif)]]" => 0xEB60,
|
859
|
-
"[[Image(htdocs:emoticons/kddi/783.gif)]]" => 0xEB61,
|
860
|
-
"[[Image(htdocs:emoticons/kddi/784.gif)]]" => 0xEB62,
|
861
|
-
"[[Image(htdocs:emoticons/kddi/785.gif)]]" => 0xEB63,
|
862
|
-
"[[Image(htdocs:emoticons/kddi/786.gif)]]" => 0xEB64,
|
863
|
-
"[[Image(htdocs:emoticons/kddi/787.gif)]]" => 0xEB65,
|
864
|
-
"[[Image(htdocs:emoticons/kddi/788.gif)]]" => 0xEB66,
|
865
|
-
"[[Image(htdocs:emoticons/kddi/789.gif)]]" => 0xEB67,
|
866
|
-
"[[Image(htdocs:emoticons/kddi/790.gif)]]" => 0xEB68,
|
867
|
-
"[[Image(htdocs:emoticons/kddi/791.gif)]]" => 0xEB69,
|
868
|
-
"[[Image(htdocs:emoticons/kddi/792.gif)]]" => 0xEB6A,
|
869
|
-
"[[Image(htdocs:emoticons/kddi/793.gif)]]" => 0xEB6B,
|
870
|
-
"[[Image(htdocs:emoticons/kddi/794.gif)]]" => 0xEB6C,
|
871
|
-
"[[Image(htdocs:emoticons/kddi/795.gif)]]" => 0xEB6D,
|
872
|
-
"[[Image(htdocs:emoticons/kddi/796.gif)]]" => 0xEB6E,
|
873
|
-
"[[Image(htdocs:emoticons/kddi/797.gif)]]" => 0xEB6F,
|
874
|
-
"[[Image(htdocs:emoticons/kddi/798.gif)]]" => 0xEB70,
|
875
|
-
"[[Image(htdocs:emoticons/kddi/799.gif)]]" => 0xEB71,
|
876
|
-
"[[Image(htdocs:emoticons/kddi/800.gif)]]" => 0xEB72,
|
877
|
-
"[[Image(htdocs:emoticons/kddi/801.gif)]]" => 0xEB73,
|
878
|
-
"[[Image(htdocs:emoticons/kddi/802.gif)]]" => 0xEB74,
|
879
|
-
"[[Image(htdocs:emoticons/kddi/803.gif)]]" => 0xEB75,
|
880
|
-
"[[Image(htdocs:emoticons/kddi/804.gif)]]" => 0xEB76,
|
881
|
-
"[[Image(htdocs:emoticons/kddi/805.gif)]]" => 0xEB77,
|
882
|
-
"[[Image(htdocs:emoticons/kddi/806.gif)]]" => 0xEB78,
|
883
|
-
"[[Image(htdocs:emoticons/kddi/807.gif)]]" => 0xEB79,
|
884
|
-
"[[Image(htdocs:emoticons/kddi/808.gif)]]" => 0xEB7A,
|
885
|
-
"[[Image(htdocs:emoticons/kddi/809.gif)]]" => 0xEB7B,
|
886
|
-
"[[Image(htdocs:emoticons/kddi/810.gif)]]" => 0xEB7C,
|
887
|
-
"[[Image(htdocs:emoticons/kddi/811.gif)]]" => 0xEB7D,
|
888
|
-
"[[Image(htdocs:emoticons/kddi/812.gif)]]" => 0xEB7E,
|
889
|
-
"[[Image(htdocs:emoticons/kddi/813.gif)]]" => 0xEB7F,
|
890
|
-
"[[Image(htdocs:emoticons/kddi/814.gif)]]" => 0xEB80,
|
891
|
-
"[[Image(htdocs:emoticons/kddi/815.gif)]]" => 0xEB81,
|
892
|
-
"[[Image(htdocs:emoticons/kddi/816.gif)]]" => 0xEB82,
|
893
|
-
"[[Image(htdocs:emoticons/kddi/817.gif)]]" => 0xEB83,
|
894
|
-
"[[Image(htdocs:emoticons/kddi/818.gif)]]" => 0xEB84,
|
895
|
-
"[[Image(htdocs:emoticons/kddi/819.gif)]]" => 0xEB85,
|
896
|
-
"[[Image(htdocs:emoticons/kddi/820.gif)]]" => 0xEB86,
|
897
|
-
"[[Image(htdocs:emoticons/kddi/821.gif)]]" => 0xEB87,
|
898
|
-
"[[Image(htdocs:emoticons/kddi/822.gif)]]" => 0xEB88,
|
899
|
-
"[[Image(htdocs:emoticons/kddi/823.gif)]]" => 0xEB89,
|
900
|
-
"[[Image(htdocs:emoticons/kddi/824.gif)]]" => 0xEB8A,
|
901
|
-
"[[Image(htdocs:emoticons/kddi/825.gif)]]" => 0xEB8B,
|
902
|
-
"[[Image(htdocs:emoticons/kddi/826.gif)]]" => 0xEB8C,
|
903
|
-
"[[Image(htdocs:emoticons/kddi/827.gif)]]" => 0xEB8D,
|
904
|
-
"[[Image(htdocs:emoticons/kddi/828.gif)]]" => 0xEB8E,
|
905
|
-
}.invert
|
906
|
-
|
907
|
-
s2img = {
|
908
|
-
"[[Image(htdocs:emoticons/softbank/E001.gif)]]" => 0xF001,
|
909
|
-
"[[Image(htdocs:emoticons/softbank/E002.gif)]]" => 0xF002,
|
910
|
-
"[[Image(htdocs:emoticons/softbank/E003.gif)]]" => 0xF003,
|
911
|
-
"[[Image(htdocs:emoticons/softbank/E004.gif)]]" => 0xF004,
|
912
|
-
"[[Image(htdocs:emoticons/softbank/E005.gif)]]" => 0xF005,
|
913
|
-
"[[Image(htdocs:emoticons/softbank/E006.gif)]]" => 0xF006,
|
914
|
-
"[[Image(htdocs:emoticons/softbank/E007.gif)]]" => 0xF007,
|
915
|
-
"[[Image(htdocs:emoticons/softbank/E008.gif)]]" => 0xF008,
|
916
|
-
"[[Image(htdocs:emoticons/softbank/E009.gif)]]" => 0xF009,
|
917
|
-
"[[Image(htdocs:emoticons/softbank/E00A.gif)]]" => 0xF00A,
|
918
|
-
"[[Image(htdocs:emoticons/softbank/E00B.gif)]]" => 0xF00B,
|
919
|
-
"[[Image(htdocs:emoticons/softbank/E00C.gif)]]" => 0xF00C,
|
920
|
-
"[[Image(htdocs:emoticons/softbank/E00D.gif)]]" => 0xF00D,
|
921
|
-
"[[Image(htdocs:emoticons/softbank/E00E.gif)]]" => 0xF00E,
|
922
|
-
"[[Image(htdocs:emoticons/softbank/E00F.gif)]]" => 0xF00F,
|
923
|
-
"[[Image(htdocs:emoticons/softbank/E010.gif)]]" => 0xF010,
|
924
|
-
"[[Image(htdocs:emoticons/softbank/E011.gif)]]" => 0xF011,
|
925
|
-
"[[Image(htdocs:emoticons/softbank/E012.gif)]]" => 0xF012,
|
926
|
-
"[[Image(htdocs:emoticons/softbank/E013.gif)]]" => 0xF013,
|
927
|
-
"[[Image(htdocs:emoticons/softbank/E014.gif)]]" => 0xF014,
|
928
|
-
"[[Image(htdocs:emoticons/softbank/E015.gif)]]" => 0xF015,
|
929
|
-
"[[Image(htdocs:emoticons/softbank/E016.gif)]]" => 0xF016,
|
930
|
-
"[[Image(htdocs:emoticons/softbank/E017.gif)]]" => 0xF017,
|
931
|
-
"[[Image(htdocs:emoticons/softbank/E018.gif)]]" => 0xF018,
|
932
|
-
"[[Image(htdocs:emoticons/softbank/E019.gif)]]" => 0xF019,
|
933
|
-
"[[Image(htdocs:emoticons/softbank/E01A.gif)]]" => 0xF01A,
|
934
|
-
"[[Image(htdocs:emoticons/softbank/E01B.gif)]]" => 0xF01B,
|
935
|
-
"[[Image(htdocs:emoticons/softbank/E01C.gif)]]" => 0xF01C,
|
936
|
-
"[[Image(htdocs:emoticons/softbank/E01D.gif)]]" => 0xF01D,
|
937
|
-
"[[Image(htdocs:emoticons/softbank/E01E.gif)]]" => 0xF01E,
|
938
|
-
"[[Image(htdocs:emoticons/softbank/E01F.gif)]]" => 0xF01F,
|
939
|
-
"[[Image(htdocs:emoticons/softbank/E020.gif)]]" => 0xF020,
|
940
|
-
"[[Image(htdocs:emoticons/softbank/E021.gif)]]" => 0xF021,
|
941
|
-
"[[Image(htdocs:emoticons/softbank/E022.gif)]]" => 0xF022,
|
942
|
-
"[[Image(htdocs:emoticons/softbank/E023.gif)]]" => 0xF023,
|
943
|
-
"[[Image(htdocs:emoticons/softbank/E024.gif)]]" => 0xF024,
|
944
|
-
"[[Image(htdocs:emoticons/softbank/E025.gif)]]" => 0xF025,
|
945
|
-
"[[Image(htdocs:emoticons/softbank/E026.gif)]]" => 0xF026,
|
946
|
-
"[[Image(htdocs:emoticons/softbank/E027.gif)]]" => 0xF027,
|
947
|
-
"[[Image(htdocs:emoticons/softbank/E028.gif)]]" => 0xF028,
|
948
|
-
"[[Image(htdocs:emoticons/softbank/E029.gif)]]" => 0xF029,
|
949
|
-
"[[Image(htdocs:emoticons/softbank/E02A.gif)]]" => 0xF02A,
|
950
|
-
"[[Image(htdocs:emoticons/softbank/E02B.gif)]]" => 0xF02B,
|
951
|
-
"[[Image(htdocs:emoticons/softbank/E02C.gif)]]" => 0xF02C,
|
952
|
-
"[[Image(htdocs:emoticons/softbank/E02D.gif)]]" => 0xF02D,
|
953
|
-
"[[Image(htdocs:emoticons/softbank/E02E.gif)]]" => 0xF02E,
|
954
|
-
"[[Image(htdocs:emoticons/softbank/E02F.gif)]]" => 0xF02F,
|
955
|
-
"[[Image(htdocs:emoticons/softbank/E030.gif)]]" => 0xF030,
|
956
|
-
"[[Image(htdocs:emoticons/softbank/E031.gif)]]" => 0xF031,
|
957
|
-
"[[Image(htdocs:emoticons/softbank/E032.gif)]]" => 0xF032,
|
958
|
-
"[[Image(htdocs:emoticons/softbank/E033.gif)]]" => 0xF033,
|
959
|
-
"[[Image(htdocs:emoticons/softbank/E034.gif)]]" => 0xF034,
|
960
|
-
"[[Image(htdocs:emoticons/softbank/E035.gif)]]" => 0xF035,
|
961
|
-
"[[Image(htdocs:emoticons/softbank/E036.gif)]]" => 0xF036,
|
962
|
-
"[[Image(htdocs:emoticons/softbank/E037.gif)]]" => 0xF037,
|
963
|
-
"[[Image(htdocs:emoticons/softbank/E038.gif)]]" => 0xF038,
|
964
|
-
"[[Image(htdocs:emoticons/softbank/E039.gif)]]" => 0xF039,
|
965
|
-
"[[Image(htdocs:emoticons/softbank/E03A.gif)]]" => 0xF03A,
|
966
|
-
"[[Image(htdocs:emoticons/softbank/E03B.gif)]]" => 0xF03B,
|
967
|
-
"[[Image(htdocs:emoticons/softbank/E03C.gif)]]" => 0xF03C,
|
968
|
-
"[[Image(htdocs:emoticons/softbank/E03D.gif)]]" => 0xF03D,
|
969
|
-
"[[Image(htdocs:emoticons/softbank/E03E.gif)]]" => 0xF03E,
|
970
|
-
"[[Image(htdocs:emoticons/softbank/E03F.gif)]]" => 0xF03F,
|
971
|
-
"[[Image(htdocs:emoticons/softbank/E040.gif)]]" => 0xF040,
|
972
|
-
"[[Image(htdocs:emoticons/softbank/E041.gif)]]" => 0xF041,
|
973
|
-
"[[Image(htdocs:emoticons/softbank/E042.gif)]]" => 0xF042,
|
974
|
-
"[[Image(htdocs:emoticons/softbank/E043.gif)]]" => 0xF043,
|
975
|
-
"[[Image(htdocs:emoticons/softbank/E044.gif)]]" => 0xF044,
|
976
|
-
"[[Image(htdocs:emoticons/softbank/E045.gif)]]" => 0xF045,
|
977
|
-
"[[Image(htdocs:emoticons/softbank/E046.gif)]]" => 0xF046,
|
978
|
-
"[[Image(htdocs:emoticons/softbank/E047.gif)]]" => 0xF047,
|
979
|
-
"[[Image(htdocs:emoticons/softbank/E048.gif)]]" => 0xF048,
|
980
|
-
"[[Image(htdocs:emoticons/softbank/E049.gif)]]" => 0xF049,
|
981
|
-
"[[Image(htdocs:emoticons/softbank/E04A.gif)]]" => 0xF04A,
|
982
|
-
"[[Image(htdocs:emoticons/softbank/E04B.gif)]]" => 0xF04B,
|
983
|
-
"[[Image(htdocs:emoticons/softbank/E04C.gif)]]" => 0xF04C,
|
984
|
-
"[[Image(htdocs:emoticons/softbank/E04D.gif)]]" => 0xF04D,
|
985
|
-
"[[Image(htdocs:emoticons/softbank/E04E.gif)]]" => 0xF04E,
|
986
|
-
"[[Image(htdocs:emoticons/softbank/E04F.gif)]]" => 0xF04F,
|
987
|
-
"[[Image(htdocs:emoticons/softbank/E050.gif)]]" => 0xF050,
|
988
|
-
"[[Image(htdocs:emoticons/softbank/E051.gif)]]" => 0xF051,
|
989
|
-
"[[Image(htdocs:emoticons/softbank/E052.gif)]]" => 0xF052,
|
990
|
-
"[[Image(htdocs:emoticons/softbank/E053.gif)]]" => 0xF053,
|
991
|
-
"[[Image(htdocs:emoticons/softbank/E054.gif)]]" => 0xF054,
|
992
|
-
"[[Image(htdocs:emoticons/softbank/E055.gif)]]" => 0xF055,
|
993
|
-
"[[Image(htdocs:emoticons/softbank/E056.gif)]]" => 0xF056,
|
994
|
-
"[[Image(htdocs:emoticons/softbank/E057.gif)]]" => 0xF057,
|
995
|
-
"[[Image(htdocs:emoticons/softbank/E058.gif)]]" => 0xF058,
|
996
|
-
"[[Image(htdocs:emoticons/softbank/E059.gif)]]" => 0xF059,
|
997
|
-
"[[Image(htdocs:emoticons/softbank/E05A.gif)]]" => 0xF05A,
|
998
|
-
"[[Image(htdocs:emoticons/softbank/E101.gif)]]" => 0xF101,
|
999
|
-
"[[Image(htdocs:emoticons/softbank/E102.gif)]]" => 0xF102,
|
1000
|
-
"[[Image(htdocs:emoticons/softbank/E103.gif)]]" => 0xF103,
|
1001
|
-
"[[Image(htdocs:emoticons/softbank/E104.gif)]]" => 0xF104,
|
1002
|
-
"[[Image(htdocs:emoticons/softbank/E105.gif)]]" => 0xF105,
|
1003
|
-
"[[Image(htdocs:emoticons/softbank/E106.gif)]]" => 0xF106,
|
1004
|
-
"[[Image(htdocs:emoticons/softbank/E107.gif)]]" => 0xF107,
|
1005
|
-
"[[Image(htdocs:emoticons/softbank/E108.gif)]]" => 0xF108,
|
1006
|
-
"[[Image(htdocs:emoticons/softbank/E109.gif)]]" => 0xF109,
|
1007
|
-
"[[Image(htdocs:emoticons/softbank/E10A.gif)]]" => 0xF10A,
|
1008
|
-
"[[Image(htdocs:emoticons/softbank/E10B.gif)]]" => 0xF10B,
|
1009
|
-
"[[Image(htdocs:emoticons/softbank/E10C.gif)]]" => 0xF10C,
|
1010
|
-
"[[Image(htdocs:emoticons/softbank/E10D.gif)]]" => 0xF10D,
|
1011
|
-
"[[Image(htdocs:emoticons/softbank/E10E.gif)]]" => 0xF10E,
|
1012
|
-
"[[Image(htdocs:emoticons/softbank/E10F.gif)]]" => 0xF10F,
|
1013
|
-
"[[Image(htdocs:emoticons/softbank/E110.gif)]]" => 0xF110,
|
1014
|
-
"[[Image(htdocs:emoticons/softbank/E111.gif)]]" => 0xF111,
|
1015
|
-
"[[Image(htdocs:emoticons/softbank/E112.gif)]]" => 0xF112,
|
1016
|
-
"[[Image(htdocs:emoticons/softbank/E113.gif)]]" => 0xF113,
|
1017
|
-
"[[Image(htdocs:emoticons/softbank/E114.gif)]]" => 0xF114,
|
1018
|
-
"[[Image(htdocs:emoticons/softbank/E115.gif)]]" => 0xF115,
|
1019
|
-
"[[Image(htdocs:emoticons/softbank/E116.gif)]]" => 0xF116,
|
1020
|
-
"[[Image(htdocs:emoticons/softbank/E117.gif)]]" => 0xF117,
|
1021
|
-
"[[Image(htdocs:emoticons/softbank/E118.gif)]]" => 0xF118,
|
1022
|
-
"[[Image(htdocs:emoticons/softbank/E119.gif)]]" => 0xF119,
|
1023
|
-
"[[Image(htdocs:emoticons/softbank/E11A.gif)]]" => 0xF11A,
|
1024
|
-
"[[Image(htdocs:emoticons/softbank/E11B.gif)]]" => 0xF11B,
|
1025
|
-
"[[Image(htdocs:emoticons/softbank/E11C.gif)]]" => 0xF11C,
|
1026
|
-
"[[Image(htdocs:emoticons/softbank/E11D.gif)]]" => 0xF11D,
|
1027
|
-
"[[Image(htdocs:emoticons/softbank/E11E.gif)]]" => 0xF11E,
|
1028
|
-
"[[Image(htdocs:emoticons/softbank/E11F.gif)]]" => 0xF11F,
|
1029
|
-
"[[Image(htdocs:emoticons/softbank/E120.gif)]]" => 0xF120,
|
1030
|
-
"[[Image(htdocs:emoticons/softbank/E121.gif)]]" => 0xF121,
|
1031
|
-
"[[Image(htdocs:emoticons/softbank/E122.gif)]]" => 0xF122,
|
1032
|
-
"[[Image(htdocs:emoticons/softbank/E123.gif)]]" => 0xF123,
|
1033
|
-
"[[Image(htdocs:emoticons/softbank/E124.gif)]]" => 0xF124,
|
1034
|
-
"[[Image(htdocs:emoticons/softbank/E125.gif)]]" => 0xF125,
|
1035
|
-
"[[Image(htdocs:emoticons/softbank/E126.gif)]]" => 0xF126,
|
1036
|
-
"[[Image(htdocs:emoticons/softbank/E127.gif)]]" => 0xF127,
|
1037
|
-
"[[Image(htdocs:emoticons/softbank/E128.gif)]]" => 0xF128,
|
1038
|
-
"[[Image(htdocs:emoticons/softbank/E129.gif)]]" => 0xF129,
|
1039
|
-
"[[Image(htdocs:emoticons/softbank/E12A.gif)]]" => 0xF12A,
|
1040
|
-
"[[Image(htdocs:emoticons/softbank/E12B.gif)]]" => 0xF12B,
|
1041
|
-
"[[Image(htdocs:emoticons/softbank/E12C.gif)]]" => 0xF12C,
|
1042
|
-
"[[Image(htdocs:emoticons/softbank/E12D.gif)]]" => 0xF12D,
|
1043
|
-
"[[Image(htdocs:emoticons/softbank/E12E.gif)]]" => 0xF12E,
|
1044
|
-
"[[Image(htdocs:emoticons/softbank/E12F.gif)]]" => 0xF12F,
|
1045
|
-
"[[Image(htdocs:emoticons/softbank/E130.gif)]]" => 0xF130,
|
1046
|
-
"[[Image(htdocs:emoticons/softbank/E131.gif)]]" => 0xF131,
|
1047
|
-
"[[Image(htdocs:emoticons/softbank/E132.gif)]]" => 0xF132,
|
1048
|
-
"[[Image(htdocs:emoticons/softbank/E133.gif)]]" => 0xF133,
|
1049
|
-
"[[Image(htdocs:emoticons/softbank/E134.gif)]]" => 0xF134,
|
1050
|
-
"[[Image(htdocs:emoticons/softbank/E135.gif)]]" => 0xF135,
|
1051
|
-
"[[Image(htdocs:emoticons/softbank/E136.gif)]]" => 0xF136,
|
1052
|
-
"[[Image(htdocs:emoticons/softbank/E137.gif)]]" => 0xF137,
|
1053
|
-
"[[Image(htdocs:emoticons/softbank/E138.gif)]]" => 0xF138,
|
1054
|
-
"[[Image(htdocs:emoticons/softbank/E139.gif)]]" => 0xF139,
|
1055
|
-
"[[Image(htdocs:emoticons/softbank/E13A.gif)]]" => 0xF13A,
|
1056
|
-
"[[Image(htdocs:emoticons/softbank/E13B.gif)]]" => 0xF13B,
|
1057
|
-
"[[Image(htdocs:emoticons/softbank/E13C.gif)]]" => 0xF13C,
|
1058
|
-
"[[Image(htdocs:emoticons/softbank/E13D.gif)]]" => 0xF13D,
|
1059
|
-
"[[Image(htdocs:emoticons/softbank/E13E.gif)]]" => 0xF13E,
|
1060
|
-
"[[Image(htdocs:emoticons/softbank/E13F.gif)]]" => 0xF13F,
|
1061
|
-
"[[Image(htdocs:emoticons/softbank/E140.gif)]]" => 0xF140,
|
1062
|
-
"[[Image(htdocs:emoticons/softbank/E141.gif)]]" => 0xF141,
|
1063
|
-
"[[Image(htdocs:emoticons/softbank/E142.gif)]]" => 0xF142,
|
1064
|
-
"[[Image(htdocs:emoticons/softbank/E143.gif)]]" => 0xF143,
|
1065
|
-
"[[Image(htdocs:emoticons/softbank/E144.gif)]]" => 0xF144,
|
1066
|
-
"[[Image(htdocs:emoticons/softbank/E145.gif)]]" => 0xF145,
|
1067
|
-
"[[Image(htdocs:emoticons/softbank/E146.gif)]]" => 0xF146,
|
1068
|
-
"[[Image(htdocs:emoticons/softbank/E147.gif)]]" => 0xF147,
|
1069
|
-
"[[Image(htdocs:emoticons/softbank/E148.gif)]]" => 0xF148,
|
1070
|
-
"[[Image(htdocs:emoticons/softbank/E149.gif)]]" => 0xF149,
|
1071
|
-
"[[Image(htdocs:emoticons/softbank/E14A.gif)]]" => 0xF14A,
|
1072
|
-
"[[Image(htdocs:emoticons/softbank/E14B.gif)]]" => 0xF14B,
|
1073
|
-
"[[Image(htdocs:emoticons/softbank/E14C.gif)]]" => 0xF14C,
|
1074
|
-
"[[Image(htdocs:emoticons/softbank/E14D.gif)]]" => 0xF14D,
|
1075
|
-
"[[Image(htdocs:emoticons/softbank/E14E.gif)]]" => 0xF14E,
|
1076
|
-
"[[Image(htdocs:emoticons/softbank/E14F.gif)]]" => 0xF14F,
|
1077
|
-
"[[Image(htdocs:emoticons/softbank/E150.gif)]]" => 0xF150,
|
1078
|
-
"[[Image(htdocs:emoticons/softbank/E151.gif)]]" => 0xF151,
|
1079
|
-
"[[Image(htdocs:emoticons/softbank/E152.gif)]]" => 0xF152,
|
1080
|
-
"[[Image(htdocs:emoticons/softbank/E153.gif)]]" => 0xF153,
|
1081
|
-
"[[Image(htdocs:emoticons/softbank/E154.gif)]]" => 0xF154,
|
1082
|
-
"[[Image(htdocs:emoticons/softbank/E155.gif)]]" => 0xF155,
|
1083
|
-
"[[Image(htdocs:emoticons/softbank/E156.gif)]]" => 0xF156,
|
1084
|
-
"[[Image(htdocs:emoticons/softbank/E157.gif)]]" => 0xF157,
|
1085
|
-
"[[Image(htdocs:emoticons/softbank/E158.gif)]]" => 0xF158,
|
1086
|
-
"[[Image(htdocs:emoticons/softbank/E159.gif)]]" => 0xF159,
|
1087
|
-
"[[Image(htdocs:emoticons/softbank/E15A.gif)]]" => 0xF15A,
|
1088
|
-
"[[Image(htdocs:emoticons/softbank/E201.gif)]]" => 0xF201,
|
1089
|
-
"[[Image(htdocs:emoticons/softbank/E202.gif)]]" => 0xF202,
|
1090
|
-
"[[Image(htdocs:emoticons/softbank/E203.gif)]]" => 0xF203,
|
1091
|
-
"[[Image(htdocs:emoticons/softbank/E204.gif)]]" => 0xF204,
|
1092
|
-
"[[Image(htdocs:emoticons/softbank/E205.gif)]]" => 0xF205,
|
1093
|
-
"[[Image(htdocs:emoticons/softbank/E206.gif)]]" => 0xF206,
|
1094
|
-
"[[Image(htdocs:emoticons/softbank/E207.gif)]]" => 0xF207,
|
1095
|
-
"[[Image(htdocs:emoticons/softbank/E208.gif)]]" => 0xF208,
|
1096
|
-
"[[Image(htdocs:emoticons/softbank/E209.gif)]]" => 0xF209,
|
1097
|
-
"[[Image(htdocs:emoticons/softbank/E20A.gif)]]" => 0xF20A,
|
1098
|
-
"[[Image(htdocs:emoticons/softbank/E20B.gif)]]" => 0xF20B,
|
1099
|
-
"[[Image(htdocs:emoticons/softbank/E20C.gif)]]" => 0xF20C,
|
1100
|
-
"[[Image(htdocs:emoticons/softbank/E20D.gif)]]" => 0xF20D,
|
1101
|
-
"[[Image(htdocs:emoticons/softbank/E20E.gif)]]" => 0xF20E,
|
1102
|
-
"[[Image(htdocs:emoticons/softbank/E20F.gif)]]" => 0xF20F,
|
1103
|
-
"[[Image(htdocs:emoticons/softbank/E210.gif)]]" => 0xF210,
|
1104
|
-
"[[Image(htdocs:emoticons/softbank/E211.gif)]]" => 0xF211,
|
1105
|
-
"[[Image(htdocs:emoticons/softbank/E212.gif)]]" => 0xF212,
|
1106
|
-
"[[Image(htdocs:emoticons/softbank/E213.gif)]]" => 0xF213,
|
1107
|
-
"[[Image(htdocs:emoticons/softbank/E214.gif)]]" => 0xF214,
|
1108
|
-
"[[Image(htdocs:emoticons/softbank/E215.gif)]]" => 0xF215,
|
1109
|
-
"[[Image(htdocs:emoticons/softbank/E216.gif)]]" => 0xF216,
|
1110
|
-
"[[Image(htdocs:emoticons/softbank/E217.gif)]]" => 0xF217,
|
1111
|
-
"[[Image(htdocs:emoticons/softbank/E218.gif)]]" => 0xF218,
|
1112
|
-
"[[Image(htdocs:emoticons/softbank/E219.gif)]]" => 0xF219,
|
1113
|
-
"[[Image(htdocs:emoticons/softbank/E21A.gif)]]" => 0xF21A,
|
1114
|
-
"[[Image(htdocs:emoticons/softbank/E21B.gif)]]" => 0xF21B,
|
1115
|
-
"[[Image(htdocs:emoticons/softbank/E21C.gif)]]" => 0xF21C,
|
1116
|
-
"[[Image(htdocs:emoticons/softbank/E21D.gif)]]" => 0xF21D,
|
1117
|
-
"[[Image(htdocs:emoticons/softbank/E21E.gif)]]" => 0xF21E,
|
1118
|
-
"[[Image(htdocs:emoticons/softbank/E21F.gif)]]" => 0xF21F,
|
1119
|
-
"[[Image(htdocs:emoticons/softbank/E220.gif)]]" => 0xF220,
|
1120
|
-
"[[Image(htdocs:emoticons/softbank/E221.gif)]]" => 0xF221,
|
1121
|
-
"[[Image(htdocs:emoticons/softbank/E222.gif)]]" => 0xF222,
|
1122
|
-
"[[Image(htdocs:emoticons/softbank/E223.gif)]]" => 0xF223,
|
1123
|
-
"[[Image(htdocs:emoticons/softbank/E224.gif)]]" => 0xF224,
|
1124
|
-
"[[Image(htdocs:emoticons/softbank/E225.gif)]]" => 0xF225,
|
1125
|
-
"[[Image(htdocs:emoticons/softbank/E226.gif)]]" => 0xF226,
|
1126
|
-
"[[Image(htdocs:emoticons/softbank/E227.gif)]]" => 0xF227,
|
1127
|
-
"[[Image(htdocs:emoticons/softbank/E228.gif)]]" => 0xF228,
|
1128
|
-
"[[Image(htdocs:emoticons/softbank/E229.gif)]]" => 0xF229,
|
1129
|
-
"[[Image(htdocs:emoticons/softbank/E22A.gif)]]" => 0xF22A,
|
1130
|
-
"[[Image(htdocs:emoticons/softbank/E22B.gif)]]" => 0xF22B,
|
1131
|
-
"[[Image(htdocs:emoticons/softbank/E22C.gif)]]" => 0xF22C,
|
1132
|
-
"[[Image(htdocs:emoticons/softbank/E22D.gif)]]" => 0xF22D,
|
1133
|
-
"[[Image(htdocs:emoticons/softbank/E22E.gif)]]" => 0xF22E,
|
1134
|
-
"[[Image(htdocs:emoticons/softbank/E22F.gif)]]" => 0xF22F,
|
1135
|
-
"[[Image(htdocs:emoticons/softbank/E230.gif)]]" => 0xF230,
|
1136
|
-
"[[Image(htdocs:emoticons/softbank/E231.gif)]]" => 0xF231,
|
1137
|
-
"[[Image(htdocs:emoticons/softbank/E232.gif)]]" => 0xF232,
|
1138
|
-
"[[Image(htdocs:emoticons/softbank/E233.gif)]]" => 0xF233,
|
1139
|
-
"[[Image(htdocs:emoticons/softbank/E234.gif)]]" => 0xF234,
|
1140
|
-
"[[Image(htdocs:emoticons/softbank/E235.gif)]]" => 0xF235,
|
1141
|
-
"[[Image(htdocs:emoticons/softbank/E236.gif)]]" => 0xF236,
|
1142
|
-
"[[Image(htdocs:emoticons/softbank/E237.gif)]]" => 0xF237,
|
1143
|
-
"[[Image(htdocs:emoticons/softbank/E238.gif)]]" => 0xF238,
|
1144
|
-
"[[Image(htdocs:emoticons/softbank/E239.gif)]]" => 0xF239,
|
1145
|
-
"[[Image(htdocs:emoticons/softbank/E23A.gif)]]" => 0xF23A,
|
1146
|
-
"[[Image(htdocs:emoticons/softbank/E23B.gif)]]" => 0xF23B,
|
1147
|
-
"[[Image(htdocs:emoticons/softbank/E23C.gif)]]" => 0xF23C,
|
1148
|
-
"[[Image(htdocs:emoticons/softbank/E23D.gif)]]" => 0xF23D,
|
1149
|
-
"[[Image(htdocs:emoticons/softbank/E23E.gif)]]" => 0xF23E,
|
1150
|
-
"[[Image(htdocs:emoticons/softbank/E23F.gif)]]" => 0xF23F,
|
1151
|
-
"[[Image(htdocs:emoticons/softbank/E240.gif)]]" => 0xF240,
|
1152
|
-
"[[Image(htdocs:emoticons/softbank/E241.gif)]]" => 0xF241,
|
1153
|
-
"[[Image(htdocs:emoticons/softbank/E242.gif)]]" => 0xF242,
|
1154
|
-
"[[Image(htdocs:emoticons/softbank/E243.gif)]]" => 0xF243,
|
1155
|
-
"[[Image(htdocs:emoticons/softbank/E244.gif)]]" => 0xF244,
|
1156
|
-
"[[Image(htdocs:emoticons/softbank/E245.gif)]]" => 0xF245,
|
1157
|
-
"[[Image(htdocs:emoticons/softbank/E246.gif)]]" => 0xF246,
|
1158
|
-
"[[Image(htdocs:emoticons/softbank/E247.gif)]]" => 0xF247,
|
1159
|
-
"[[Image(htdocs:emoticons/softbank/E248.gif)]]" => 0xF248,
|
1160
|
-
"[[Image(htdocs:emoticons/softbank/E249.gif)]]" => 0xF249,
|
1161
|
-
"[[Image(htdocs:emoticons/softbank/E24A.gif)]]" => 0xF24A,
|
1162
|
-
"[[Image(htdocs:emoticons/softbank/E24B.gif)]]" => 0xF24B,
|
1163
|
-
"[[Image(htdocs:emoticons/softbank/E24C.gif)]]" => 0xF24C,
|
1164
|
-
"[[Image(htdocs:emoticons/softbank/E24D.gif)]]" => 0xF24D,
|
1165
|
-
"[[Image(htdocs:emoticons/softbank/E24E.gif)]]" => 0xF24E,
|
1166
|
-
"[[Image(htdocs:emoticons/softbank/E24F.gif)]]" => 0xF24F,
|
1167
|
-
"[[Image(htdocs:emoticons/softbank/E250.gif)]]" => 0xF250,
|
1168
|
-
"[[Image(htdocs:emoticons/softbank/E251.gif)]]" => 0xF251,
|
1169
|
-
"[[Image(htdocs:emoticons/softbank/E252.gif)]]" => 0xF252,
|
1170
|
-
"[[Image(htdocs:emoticons/softbank/E253.gif)]]" => 0xF253,
|
1171
|
-
"[[Image(htdocs:emoticons/softbank/E254.gif)]]" => 0xF254,
|
1172
|
-
"[[Image(htdocs:emoticons/softbank/E255.gif)]]" => 0xF255,
|
1173
|
-
"[[Image(htdocs:emoticons/softbank/E256.gif)]]" => 0xF256,
|
1174
|
-
"[[Image(htdocs:emoticons/softbank/E257.gif)]]" => 0xF257,
|
1175
|
-
"[[Image(htdocs:emoticons/softbank/E258.gif)]]" => 0xF258,
|
1176
|
-
"[[Image(htdocs:emoticons/softbank/E259.gif)]]" => 0xF259,
|
1177
|
-
"[[Image(htdocs:emoticons/softbank/E25A.gif)]]" => 0xF25A,
|
1178
|
-
"[[Image(htdocs:emoticons/softbank/E301.gif)]]" => 0xF301,
|
1179
|
-
"[[Image(htdocs:emoticons/softbank/E302.gif)]]" => 0xF302,
|
1180
|
-
"[[Image(htdocs:emoticons/softbank/E303.gif)]]" => 0xF303,
|
1181
|
-
"[[Image(htdocs:emoticons/softbank/E304.gif)]]" => 0xF304,
|
1182
|
-
"[[Image(htdocs:emoticons/softbank/E305.gif)]]" => 0xF305,
|
1183
|
-
"[[Image(htdocs:emoticons/softbank/E306.gif)]]" => 0xF306,
|
1184
|
-
"[[Image(htdocs:emoticons/softbank/E307.gif)]]" => 0xF307,
|
1185
|
-
"[[Image(htdocs:emoticons/softbank/E308.gif)]]" => 0xF308,
|
1186
|
-
"[[Image(htdocs:emoticons/softbank/E309.gif)]]" => 0xF309,
|
1187
|
-
"[[Image(htdocs:emoticons/softbank/E30A.gif)]]" => 0xF30A,
|
1188
|
-
"[[Image(htdocs:emoticons/softbank/E30B.gif)]]" => 0xF30B,
|
1189
|
-
"[[Image(htdocs:emoticons/softbank/E30C.gif)]]" => 0xF30C,
|
1190
|
-
"[[Image(htdocs:emoticons/softbank/E30D.gif)]]" => 0xF30D,
|
1191
|
-
"[[Image(htdocs:emoticons/softbank/E30E.gif)]]" => 0xF30E,
|
1192
|
-
"[[Image(htdocs:emoticons/softbank/E30F.gif)]]" => 0xF30F,
|
1193
|
-
"[[Image(htdocs:emoticons/softbank/E310.gif)]]" => 0xF310,
|
1194
|
-
"[[Image(htdocs:emoticons/softbank/E311.gif)]]" => 0xF311,
|
1195
|
-
"[[Image(htdocs:emoticons/softbank/E312.gif)]]" => 0xF312,
|
1196
|
-
"[[Image(htdocs:emoticons/softbank/E313.gif)]]" => 0xF313,
|
1197
|
-
"[[Image(htdocs:emoticons/softbank/E314.gif)]]" => 0xF314,
|
1198
|
-
"[[Image(htdocs:emoticons/softbank/E315.gif)]]" => 0xF315,
|
1199
|
-
"[[Image(htdocs:emoticons/softbank/E316.gif)]]" => 0xF316,
|
1200
|
-
"[[Image(htdocs:emoticons/softbank/E317.gif)]]" => 0xF317,
|
1201
|
-
"[[Image(htdocs:emoticons/softbank/E318.gif)]]" => 0xF318,
|
1202
|
-
"[[Image(htdocs:emoticons/softbank/E319.gif)]]" => 0xF319,
|
1203
|
-
"[[Image(htdocs:emoticons/softbank/E31A.gif)]]" => 0xF31A,
|
1204
|
-
"[[Image(htdocs:emoticons/softbank/E31B.gif)]]" => 0xF31B,
|
1205
|
-
"[[Image(htdocs:emoticons/softbank/E31C.gif)]]" => 0xF31C,
|
1206
|
-
"[[Image(htdocs:emoticons/softbank/E31D.gif)]]" => 0xF31D,
|
1207
|
-
"[[Image(htdocs:emoticons/softbank/E31E.gif)]]" => 0xF31E,
|
1208
|
-
"[[Image(htdocs:emoticons/softbank/E31F.gif)]]" => 0xF31F,
|
1209
|
-
"[[Image(htdocs:emoticons/softbank/E320.gif)]]" => 0xF320,
|
1210
|
-
"[[Image(htdocs:emoticons/softbank/E321.gif)]]" => 0xF321,
|
1211
|
-
"[[Image(htdocs:emoticons/softbank/E322.gif)]]" => 0xF322,
|
1212
|
-
"[[Image(htdocs:emoticons/softbank/E323.gif)]]" => 0xF323,
|
1213
|
-
"[[Image(htdocs:emoticons/softbank/E324.gif)]]" => 0xF324,
|
1214
|
-
"[[Image(htdocs:emoticons/softbank/E325.gif)]]" => 0xF325,
|
1215
|
-
"[[Image(htdocs:emoticons/softbank/E326.gif)]]" => 0xF326,
|
1216
|
-
"[[Image(htdocs:emoticons/softbank/E327.gif)]]" => 0xF327,
|
1217
|
-
"[[Image(htdocs:emoticons/softbank/E328.gif)]]" => 0xF328,
|
1218
|
-
"[[Image(htdocs:emoticons/softbank/E329.gif)]]" => 0xF329,
|
1219
|
-
"[[Image(htdocs:emoticons/softbank/E32A.gif)]]" => 0xF32A,
|
1220
|
-
"[[Image(htdocs:emoticons/softbank/E32B.gif)]]" => 0xF32B,
|
1221
|
-
"[[Image(htdocs:emoticons/softbank/E32C.gif)]]" => 0xF32C,
|
1222
|
-
"[[Image(htdocs:emoticons/softbank/E32D.gif)]]" => 0xF32D,
|
1223
|
-
"[[Image(htdocs:emoticons/softbank/E32E.gif)]]" => 0xF32E,
|
1224
|
-
"[[Image(htdocs:emoticons/softbank/E32F.gif)]]" => 0xF32F,
|
1225
|
-
"[[Image(htdocs:emoticons/softbank/E330.gif)]]" => 0xF330,
|
1226
|
-
"[[Image(htdocs:emoticons/softbank/E331.gif)]]" => 0xF331,
|
1227
|
-
"[[Image(htdocs:emoticons/softbank/E332.gif)]]" => 0xF332,
|
1228
|
-
"[[Image(htdocs:emoticons/softbank/E333.gif)]]" => 0xF333,
|
1229
|
-
"[[Image(htdocs:emoticons/softbank/E334.gif)]]" => 0xF334,
|
1230
|
-
"[[Image(htdocs:emoticons/softbank/E335.gif)]]" => 0xF335,
|
1231
|
-
"[[Image(htdocs:emoticons/softbank/E336.gif)]]" => 0xF336,
|
1232
|
-
"[[Image(htdocs:emoticons/softbank/E337.gif)]]" => 0xF337,
|
1233
|
-
"[[Image(htdocs:emoticons/softbank/E338.gif)]]" => 0xF338,
|
1234
|
-
"[[Image(htdocs:emoticons/softbank/E339.gif)]]" => 0xF339,
|
1235
|
-
"[[Image(htdocs:emoticons/softbank/E33A.gif)]]" => 0xF33A,
|
1236
|
-
"[[Image(htdocs:emoticons/softbank/E33B.gif)]]" => 0xF33B,
|
1237
|
-
"[[Image(htdocs:emoticons/softbank/E33C.gif)]]" => 0xF33C,
|
1238
|
-
"[[Image(htdocs:emoticons/softbank/E33D.gif)]]" => 0xF33D,
|
1239
|
-
"[[Image(htdocs:emoticons/softbank/E33E.gif)]]" => 0xF33E,
|
1240
|
-
"[[Image(htdocs:emoticons/softbank/E33F.gif)]]" => 0xF33F,
|
1241
|
-
"[[Image(htdocs:emoticons/softbank/E340.gif)]]" => 0xF340,
|
1242
|
-
"[[Image(htdocs:emoticons/softbank/E341.gif)]]" => 0xF341,
|
1243
|
-
"[[Image(htdocs:emoticons/softbank/E342.gif)]]" => 0xF342,
|
1244
|
-
"[[Image(htdocs:emoticons/softbank/E343.gif)]]" => 0xF343,
|
1245
|
-
"[[Image(htdocs:emoticons/softbank/E344.gif)]]" => 0xF344,
|
1246
|
-
"[[Image(htdocs:emoticons/softbank/E345.gif)]]" => 0xF345,
|
1247
|
-
"[[Image(htdocs:emoticons/softbank/E346.gif)]]" => 0xF346,
|
1248
|
-
"[[Image(htdocs:emoticons/softbank/E347.gif)]]" => 0xF347,
|
1249
|
-
"[[Image(htdocs:emoticons/softbank/E348.gif)]]" => 0xF348,
|
1250
|
-
"[[Image(htdocs:emoticons/softbank/E349.gif)]]" => 0xF349,
|
1251
|
-
"[[Image(htdocs:emoticons/softbank/E34A.gif)]]" => 0xF34A,
|
1252
|
-
"[[Image(htdocs:emoticons/softbank/E34B.gif)]]" => 0xF34B,
|
1253
|
-
"[[Image(htdocs:emoticons/softbank/E34C.gif)]]" => 0xF34C,
|
1254
|
-
"[[Image(htdocs:emoticons/softbank/E34D.gif)]]" => 0xF34D,
|
1255
|
-
"[[Image(htdocs:emoticons/softbank/E401.gif)]]" => 0xF401,
|
1256
|
-
"[[Image(htdocs:emoticons/softbank/E402.gif)]]" => 0xF402,
|
1257
|
-
"[[Image(htdocs:emoticons/softbank/E403.gif)]]" => 0xF403,
|
1258
|
-
"[[Image(htdocs:emoticons/softbank/E404.gif)]]" => 0xF404,
|
1259
|
-
"[[Image(htdocs:emoticons/softbank/E405.gif)]]" => 0xF405,
|
1260
|
-
"[[Image(htdocs:emoticons/softbank/E406.gif)]]" => 0xF406,
|
1261
|
-
"[[Image(htdocs:emoticons/softbank/E407.gif)]]" => 0xF407,
|
1262
|
-
"[[Image(htdocs:emoticons/softbank/E408.gif)]]" => 0xF408,
|
1263
|
-
"[[Image(htdocs:emoticons/softbank/E409.gif)]]" => 0xF409,
|
1264
|
-
"[[Image(htdocs:emoticons/softbank/E40A.gif)]]" => 0xF40A,
|
1265
|
-
"[[Image(htdocs:emoticons/softbank/E40B.gif)]]" => 0xF40B,
|
1266
|
-
"[[Image(htdocs:emoticons/softbank/E40C.gif)]]" => 0xF40C,
|
1267
|
-
"[[Image(htdocs:emoticons/softbank/E40D.gif)]]" => 0xF40D,
|
1268
|
-
"[[Image(htdocs:emoticons/softbank/E40E.gif)]]" => 0xF40E,
|
1269
|
-
"[[Image(htdocs:emoticons/softbank/E40F.gif)]]" => 0xF40F,
|
1270
|
-
"[[Image(htdocs:emoticons/softbank/E410.gif)]]" => 0xF410,
|
1271
|
-
"[[Image(htdocs:emoticons/softbank/E411.gif)]]" => 0xF411,
|
1272
|
-
"[[Image(htdocs:emoticons/softbank/E412.gif)]]" => 0xF412,
|
1273
|
-
"[[Image(htdocs:emoticons/softbank/E413.gif)]]" => 0xF413,
|
1274
|
-
"[[Image(htdocs:emoticons/softbank/E414.gif)]]" => 0xF414,
|
1275
|
-
"[[Image(htdocs:emoticons/softbank/E415.gif)]]" => 0xF415,
|
1276
|
-
"[[Image(htdocs:emoticons/softbank/E416.gif)]]" => 0xF416,
|
1277
|
-
"[[Image(htdocs:emoticons/softbank/E417.gif)]]" => 0xF417,
|
1278
|
-
"[[Image(htdocs:emoticons/softbank/E418.gif)]]" => 0xF418,
|
1279
|
-
"[[Image(htdocs:emoticons/softbank/E419.gif)]]" => 0xF419,
|
1280
|
-
"[[Image(htdocs:emoticons/softbank/E41A.gif)]]" => 0xF41A,
|
1281
|
-
"[[Image(htdocs:emoticons/softbank/E41B.gif)]]" => 0xF41B,
|
1282
|
-
"[[Image(htdocs:emoticons/softbank/E41C.gif)]]" => 0xF41C,
|
1283
|
-
"[[Image(htdocs:emoticons/softbank/E41D.gif)]]" => 0xF41D,
|
1284
|
-
"[[Image(htdocs:emoticons/softbank/E41E.gif)]]" => 0xF41E,
|
1285
|
-
"[[Image(htdocs:emoticons/softbank/E41F.gif)]]" => 0xF41F,
|
1286
|
-
"[[Image(htdocs:emoticons/softbank/E420.gif)]]" => 0xF420,
|
1287
|
-
"[[Image(htdocs:emoticons/softbank/E421.gif)]]" => 0xF421,
|
1288
|
-
"[[Image(htdocs:emoticons/softbank/E422.gif)]]" => 0xF422,
|
1289
|
-
"[[Image(htdocs:emoticons/softbank/E423.gif)]]" => 0xF423,
|
1290
|
-
"[[Image(htdocs:emoticons/softbank/E424.gif)]]" => 0xF424,
|
1291
|
-
"[[Image(htdocs:emoticons/softbank/E425.gif)]]" => 0xF425,
|
1292
|
-
"[[Image(htdocs:emoticons/softbank/E426.gif)]]" => 0xF426,
|
1293
|
-
"[[Image(htdocs:emoticons/softbank/E427.gif)]]" => 0xF427,
|
1294
|
-
"[[Image(htdocs:emoticons/softbank/E428.gif)]]" => 0xF428,
|
1295
|
-
"[[Image(htdocs:emoticons/softbank/E429.gif)]]" => 0xF429,
|
1296
|
-
"[[Image(htdocs:emoticons/softbank/E42A.gif)]]" => 0xF42A,
|
1297
|
-
"[[Image(htdocs:emoticons/softbank/E42B.gif)]]" => 0xF42B,
|
1298
|
-
"[[Image(htdocs:emoticons/softbank/E42C.gif)]]" => 0xF42C,
|
1299
|
-
"[[Image(htdocs:emoticons/softbank/E42D.gif)]]" => 0xF42D,
|
1300
|
-
"[[Image(htdocs:emoticons/softbank/E42E.gif)]]" => 0xF42E,
|
1301
|
-
"[[Image(htdocs:emoticons/softbank/E42F.gif)]]" => 0xF42F,
|
1302
|
-
"[[Image(htdocs:emoticons/softbank/E430.gif)]]" => 0xF430,
|
1303
|
-
"[[Image(htdocs:emoticons/softbank/E431.gif)]]" => 0xF431,
|
1304
|
-
"[[Image(htdocs:emoticons/softbank/E432.gif)]]" => 0xF432,
|
1305
|
-
"[[Image(htdocs:emoticons/softbank/E433.gif)]]" => 0xF433,
|
1306
|
-
"[[Image(htdocs:emoticons/softbank/E434.gif)]]" => 0xF434,
|
1307
|
-
"[[Image(htdocs:emoticons/softbank/E435.gif)]]" => 0xF435,
|
1308
|
-
"[[Image(htdocs:emoticons/softbank/E436.gif)]]" => 0xF436,
|
1309
|
-
"[[Image(htdocs:emoticons/softbank/E437.gif)]]" => 0xF437,
|
1310
|
-
"[[Image(htdocs:emoticons/softbank/E438.gif)]]" => 0xF438,
|
1311
|
-
"[[Image(htdocs:emoticons/softbank/E439.gif)]]" => 0xF439,
|
1312
|
-
"[[Image(htdocs:emoticons/softbank/E43A.gif)]]" => 0xF43A,
|
1313
|
-
"[[Image(htdocs:emoticons/softbank/E43B.gif)]]" => 0xF43B,
|
1314
|
-
"[[Image(htdocs:emoticons/softbank/E43C.gif)]]" => 0xF43C,
|
1315
|
-
"[[Image(htdocs:emoticons/softbank/E43D.gif)]]" => 0xF43D,
|
1316
|
-
"[[Image(htdocs:emoticons/softbank/E43E.gif)]]" => 0xF43E,
|
1317
|
-
"[[Image(htdocs:emoticons/softbank/E43F.gif)]]" => 0xF43F,
|
1318
|
-
"[[Image(htdocs:emoticons/softbank/E440.gif)]]" => 0xF440,
|
1319
|
-
"[[Image(htdocs:emoticons/softbank/E441.gif)]]" => 0xF441,
|
1320
|
-
"[[Image(htdocs:emoticons/softbank/E442.gif)]]" => 0xF442,
|
1321
|
-
"[[Image(htdocs:emoticons/softbank/E443.gif)]]" => 0xF443,
|
1322
|
-
"[[Image(htdocs:emoticons/softbank/E444.gif)]]" => 0xF444,
|
1323
|
-
"[[Image(htdocs:emoticons/softbank/E445.gif)]]" => 0xF445,
|
1324
|
-
"[[Image(htdocs:emoticons/softbank/E446.gif)]]" => 0xF446,
|
1325
|
-
"[[Image(htdocs:emoticons/softbank/E447.gif)]]" => 0xF447,
|
1326
|
-
"[[Image(htdocs:emoticons/softbank/E448.gif)]]" => 0xF448,
|
1327
|
-
"[[Image(htdocs:emoticons/softbank/E449.gif)]]" => 0xF449,
|
1328
|
-
"[[Image(htdocs:emoticons/softbank/E44A.gif)]]" => 0xF44A,
|
1329
|
-
"[[Image(htdocs:emoticons/softbank/E44B.gif)]]" => 0xF44B,
|
1330
|
-
"[[Image(htdocs:emoticons/softbank/E44C.gif)]]" => 0xF44C,
|
1331
|
-
"[[Image(htdocs:emoticons/softbank/E501.gif)]]" => 0xF501,
|
1332
|
-
"[[Image(htdocs:emoticons/softbank/E502.gif)]]" => 0xF502,
|
1333
|
-
"[[Image(htdocs:emoticons/softbank/E503.gif)]]" => 0xF503,
|
1334
|
-
"[[Image(htdocs:emoticons/softbank/E504.gif)]]" => 0xF504,
|
1335
|
-
"[[Image(htdocs:emoticons/softbank/E505.gif)]]" => 0xF505,
|
1336
|
-
"[[Image(htdocs:emoticons/softbank/E506.gif)]]" => 0xF506,
|
1337
|
-
"[[Image(htdocs:emoticons/softbank/E507.gif)]]" => 0xF507,
|
1338
|
-
"[[Image(htdocs:emoticons/softbank/E508.gif)]]" => 0xF508,
|
1339
|
-
"[[Image(htdocs:emoticons/softbank/E509.gif)]]" => 0xF509,
|
1340
|
-
"[[Image(htdocs:emoticons/softbank/E50A.gif)]]" => 0xF50A,
|
1341
|
-
"[[Image(htdocs:emoticons/softbank/E50B.gif)]]" => 0xF50B,
|
1342
|
-
"[[Image(htdocs:emoticons/softbank/E50C.gif)]]" => 0xF50C,
|
1343
|
-
"[[Image(htdocs:emoticons/softbank/E50D.gif)]]" => 0xF50D,
|
1344
|
-
"[[Image(htdocs:emoticons/softbank/E50E.gif)]]" => 0xF50E,
|
1345
|
-
"[[Image(htdocs:emoticons/softbank/E50F.gif)]]" => 0xF50F,
|
1346
|
-
"[[Image(htdocs:emoticons/softbank/E510.gif)]]" => 0xF510,
|
1347
|
-
"[[Image(htdocs:emoticons/softbank/E511.gif)]]" => 0xF511,
|
1348
|
-
"[[Image(htdocs:emoticons/softbank/E512.gif)]]" => 0xF512,
|
1349
|
-
"[[Image(htdocs:emoticons/softbank/E513.gif)]]" => 0xF513,
|
1350
|
-
"[[Image(htdocs:emoticons/softbank/E514.gif)]]" => 0xF514,
|
1351
|
-
"[[Image(htdocs:emoticons/softbank/E515.gif)]]" => 0xF515,
|
1352
|
-
"[[Image(htdocs:emoticons/softbank/E516.gif)]]" => 0xF516,
|
1353
|
-
"[[Image(htdocs:emoticons/softbank/E517.gif)]]" => 0xF517,
|
1354
|
-
"[[Image(htdocs:emoticons/softbank/E518.gif)]]" => 0xF518,
|
1355
|
-
"[[Image(htdocs:emoticons/softbank/E519.gif)]]" => 0xF519,
|
1356
|
-
"[[Image(htdocs:emoticons/softbank/E51A.gif)]]" => 0xF51A,
|
1357
|
-
"[[Image(htdocs:emoticons/softbank/E51B.gif)]]" => 0xF51B,
|
1358
|
-
"[[Image(htdocs:emoticons/softbank/E51C.gif)]]" => 0xF51C,
|
1359
|
-
"[[Image(htdocs:emoticons/softbank/E51D.gif)]]" => 0xF51D,
|
1360
|
-
"[[Image(htdocs:emoticons/softbank/E51E.gif)]]" => 0xF51E,
|
1361
|
-
"[[Image(htdocs:emoticons/softbank/E51F.gif)]]" => 0xF51F,
|
1362
|
-
"[[Image(htdocs:emoticons/softbank/E520.gif)]]" => 0xF520,
|
1363
|
-
"[[Image(htdocs:emoticons/softbank/E521.gif)]]" => 0xF521,
|
1364
|
-
"[[Image(htdocs:emoticons/softbank/E522.gif)]]" => 0xF522,
|
1365
|
-
"[[Image(htdocs:emoticons/softbank/E523.gif)]]" => 0xF523,
|
1366
|
-
"[[Image(htdocs:emoticons/softbank/E524.gif)]]" => 0xF524,
|
1367
|
-
"[[Image(htdocs:emoticons/softbank/E525.gif)]]" => 0xF525,
|
1368
|
-
"[[Image(htdocs:emoticons/softbank/E526.gif)]]" => 0xF526,
|
1369
|
-
"[[Image(htdocs:emoticons/softbank/E527.gif)]]" => 0xF527,
|
1370
|
-
"[[Image(htdocs:emoticons/softbank/E528.gif)]]" => 0xF528,
|
1371
|
-
"[[Image(htdocs:emoticons/softbank/E529.gif)]]" => 0xF529,
|
1372
|
-
"[[Image(htdocs:emoticons/softbank/E52A.gif)]]" => 0xF52A,
|
1373
|
-
"[[Image(htdocs:emoticons/softbank/E52B.gif)]]" => 0xF52B,
|
1374
|
-
"[[Image(htdocs:emoticons/softbank/E52C.gif)]]" => 0xF52C,
|
1375
|
-
"[[Image(htdocs:emoticons/softbank/E52D.gif)]]" => 0xF52D,
|
1376
|
-
"[[Image(htdocs:emoticons/softbank/E52E.gif)]]" => 0xF52E,
|
1377
|
-
"[[Image(htdocs:emoticons/softbank/E52F.gif)]]" => 0xF52F,
|
1378
|
-
"[[Image(htdocs:emoticons/softbank/E530.gif)]]" => 0xF530,
|
1379
|
-
"[[Image(htdocs:emoticons/softbank/E531.gif)]]" => 0xF531,
|
1380
|
-
"[[Image(htdocs:emoticons/softbank/E532.gif)]]" => 0xF532,
|
1381
|
-
"[[Image(htdocs:emoticons/softbank/E533.gif)]]" => 0xF533,
|
1382
|
-
"[[Image(htdocs:emoticons/softbank/E534.gif)]]" => 0xF534,
|
1383
|
-
"[[Image(htdocs:emoticons/softbank/E535.gif)]]" => 0xF535,
|
1384
|
-
"[[Image(htdocs:emoticons/softbank/E536.gif)]]" => 0xF536,
|
1385
|
-
"[[Image(htdocs:emoticons/softbank/E537.gif)]]" => 0xF537,
|
1386
|
-
"[[Image(htdocs:emoticons/softbank/E538.gif)]]" => 0xF538,
|
1387
|
-
"[[Image(htdocs:emoticons/softbank/E539.gif)]]" => 0xF539,
|
1388
|
-
"[[Image(htdocs:emoticons/softbank/E53A.gif)]]" => 0xF53A,
|
1389
|
-
"[[Image(htdocs:emoticons/softbank/E53B.gif)]]" => 0xF53B,
|
1390
|
-
"[[Image(htdocs:emoticons/softbank/E53C.gif)]]" => 0xF53C,
|
1391
|
-
"[[Image(htdocs:emoticons/softbank/E53D.gif)]]" => 0xF53D,
|
1392
|
-
"[[Image(htdocs:emoticons/softbank/E53E.gif)]]" => 0xF53E,
|
1393
|
-
}.invert
|
1394
|
-
|
1395
|
-
utf2img = {}
|
1396
|
-
utf2img.update(d2img)
|
1397
|
-
utf2img.update(a2img)
|
1398
|
-
utf2img.update(s2img)
|
1399
|
-
UTF2IMG_REGEX = Regexp.union(*utf2img.keys.map{|s| "%X" % s})
|
1400
|
-
|
1401
|
-
csv = open("conv.csv").read
|
1402
|
-
out = csv.gsub(UTF2IMG_REGEX) do |match|
|
1403
|
-
utf2img[eval("0x#{match}")]
|
1404
|
-
end
|
1405
|
-
|
1406
|
-
puts "||"
|
1407
|
-
puts out.gsub(/, /, "||").gsub(/\n/, "||\n||")
|