twitter_cldr 3.0.0.beta1 → 3.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile +16 -2
- data/History.txt +9 -1
- data/README.md +297 -113
- data/Rakefile +97 -17
- data/lib/twitter_cldr/collation/collator.rb +12 -3
- data/lib/twitter_cldr/collation/trie_builder.rb +1 -1
- data/lib/twitter_cldr/{tokenizers/calendars → data_readers}/additional_date_format_selector.rb +6 -4
- data/lib/twitter_cldr/data_readers/calendar_data_reader.rb +91 -0
- data/lib/twitter_cldr/data_readers/data_reader.rb +32 -0
- data/lib/twitter_cldr/data_readers/date_data_reader.rb +26 -0
- data/lib/twitter_cldr/data_readers/date_time_data_reader.rb +41 -0
- data/lib/twitter_cldr/data_readers/number_data_reader.rb +142 -0
- data/lib/twitter_cldr/data_readers/time_data_reader.rb +26 -0
- data/lib/twitter_cldr/data_readers/timespan_data_reader.rb +122 -0
- data/lib/twitter_cldr/data_readers.rb +17 -0
- data/lib/twitter_cldr/formatters/calendars/{datetime_formatter.rb → date_time_formatter.rb} +27 -42
- data/lib/twitter_cldr/formatters/calendars/timespan_formatter.rb +3 -64
- data/lib/twitter_cldr/formatters/formatter.rb +39 -0
- data/lib/twitter_cldr/formatters/list_formatter.rb +22 -12
- data/lib/twitter_cldr/formatters/numbers/abbreviated/abbreviated_number_formatter.rb +5 -26
- data/lib/twitter_cldr/formatters/numbers/currency_formatter.rb +2 -11
- data/lib/twitter_cldr/formatters/numbers/decimal_formatter.rb +4 -2
- data/lib/twitter_cldr/formatters/numbers/number_formatter.rb +45 -27
- data/lib/twitter_cldr/formatters/numbers/percent_formatter.rb +3 -13
- data/lib/twitter_cldr/formatters/numbers/rbnf/formatters.rb +224 -0
- data/lib/twitter_cldr/formatters/numbers/rbnf/post_processors/chinese.rb +122 -0
- data/lib/twitter_cldr/formatters/numbers/rbnf/rule.rb +93 -0
- data/lib/twitter_cldr/formatters/numbers/rbnf/rule_group.rb +20 -0
- data/lib/twitter_cldr/formatters/numbers/rbnf/rule_parser.rb +86 -0
- data/lib/twitter_cldr/formatters/numbers/rbnf/rule_set.rb +259 -0
- data/lib/twitter_cldr/formatters/numbers/rbnf/substitution.rb +30 -0
- data/lib/twitter_cldr/formatters/numbers/rbnf.rb +127 -0
- data/lib/twitter_cldr/formatters/plurals/plural_formatter.rb +18 -6
- data/lib/twitter_cldr/formatters.rb +4 -5
- data/lib/twitter_cldr/localized/localized_array.rb +1 -1
- data/lib/twitter_cldr/localized/localized_date.rb +6 -3
- data/lib/twitter_cldr/localized/localized_datetime.rb +38 -15
- data/lib/twitter_cldr/localized/localized_number.rb +40 -24
- data/lib/twitter_cldr/localized/localized_object.rb +4 -4
- data/lib/twitter_cldr/localized/localized_string.rb +40 -7
- data/lib/twitter_cldr/localized/localized_time.rb +9 -2
- data/lib/twitter_cldr/localized/localized_timespan.rb +50 -5
- data/lib/twitter_cldr/normalization.rb +8 -19
- data/lib/twitter_cldr/parsers/parser.rb +50 -0
- data/lib/twitter_cldr/parsers/segmentation_parser.rb +137 -0
- data/lib/twitter_cldr/parsers/symbol_table.rb +30 -0
- data/lib/twitter_cldr/parsers/unicode_regex/character_class.rb +91 -0
- data/lib/twitter_cldr/parsers/unicode_regex/character_range.rb +39 -0
- data/lib/twitter_cldr/parsers/unicode_regex/character_set.rb +65 -0
- data/lib/twitter_cldr/parsers/unicode_regex/component.rb +50 -0
- data/lib/twitter_cldr/parsers/unicode_regex/literal.rb +83 -0
- data/lib/twitter_cldr/parsers/unicode_regex/unicode_string.rb +41 -0
- data/lib/twitter_cldr/parsers/unicode_regex_parser.rb +262 -0
- data/lib/twitter_cldr/parsers.rb +5 -1
- data/lib/twitter_cldr/resources/casefolder.rb.erb +64 -0
- data/lib/twitter_cldr/resources/casefolder_class_generator.rb +75 -0
- data/lib/twitter_cldr/resources/download.rb +10 -4
- data/lib/twitter_cldr/resources/icu_based_importer.rb +18 -0
- data/lib/twitter_cldr/resources/locales_resources_importer.rb +24 -13
- data/lib/twitter_cldr/resources/normalization_quick_check_importer.rb +1 -14
- data/lib/twitter_cldr/resources/rbnf_test_importer.rb +107 -0
- data/lib/twitter_cldr/resources/readme_renderer.rb +115 -0
- data/lib/twitter_cldr/resources/tailoring_importer.rb +2 -8
- data/lib/twitter_cldr/resources/uli/segment_exceptions_importer.rb +62 -0
- data/lib/twitter_cldr/resources/uli.rb +12 -0
- data/lib/twitter_cldr/resources/unicode_data_importer.rb +84 -14
- data/lib/twitter_cldr/resources/unicode_importer.rb +37 -0
- data/lib/twitter_cldr/resources/unicode_properties_importer.rb +79 -0
- data/lib/twitter_cldr/resources.rb +8 -1
- data/lib/twitter_cldr/shared/break_iterator.rb +213 -0
- data/lib/twitter_cldr/shared/calendar.rb +38 -14
- data/lib/twitter_cldr/shared/casefolder.rb +210 -0
- data/lib/twitter_cldr/shared/code_point.rb +103 -16
- data/lib/twitter_cldr/shared/numbering_system.rb +58 -0
- data/lib/twitter_cldr/shared/territories.rb +43 -1
- data/lib/twitter_cldr/shared/unicode_regex.rb +81 -0
- data/lib/twitter_cldr/shared.rb +13 -9
- data/lib/twitter_cldr/tokenizers/calendars/date_time_tokenizer.rb +77 -0
- data/lib/twitter_cldr/tokenizers/calendars/date_tokenizer.rb +14 -29
- data/lib/twitter_cldr/tokenizers/calendars/time_tokenizer.rb +13 -28
- data/lib/twitter_cldr/tokenizers/calendars/timespan_tokenizer.rb +11 -87
- data/lib/twitter_cldr/tokenizers/numbers/number_tokenizer.rb +16 -71
- data/lib/twitter_cldr/tokenizers/numbers/rbnf_tokenizer.rb +53 -0
- data/lib/twitter_cldr/tokenizers/pattern_tokenizer.rb +42 -0
- data/lib/twitter_cldr/tokenizers/segmentation/segmentation_tokenizer.rb +39 -0
- data/lib/twitter_cldr/tokenizers/tokenizer.rb +116 -0
- data/lib/twitter_cldr/tokenizers/unicode_regex/unicode_regex_tokenizer.rb +52 -0
- data/lib/twitter_cldr/tokenizers.rb +8 -4
- data/lib/twitter_cldr/utils/code_points.rb +1 -1
- data/lib/twitter_cldr/utils/range_set.rb +242 -0
- data/lib/twitter_cldr/utils/yaml.rb +17 -12
- data/lib/twitter_cldr/utils.rb +1 -1
- data/lib/twitter_cldr/version.rb +1 -1
- data/lib/twitter_cldr.rb +2 -1
- data/resources/custom/locales/sv/units.yml +8 -0
- data/resources/locales/af/calendars.yml +278 -224
- data/resources/locales/af/currencies.yml +954 -916
- data/resources/locales/af/languages.yml +583 -580
- data/resources/locales/af/layout.yml +5 -5
- data/resources/locales/af/lists.yml +23 -7
- data/resources/locales/af/numbers.yml +59 -54
- data/resources/locales/af/plurals.yml +2 -2
- data/resources/locales/af/rbnf.yml +261 -0
- data/resources/locales/af/territories.yml +264 -263
- data/resources/locales/ar/calendars.yml +287 -259
- data/resources/locales/ar/currencies.yml +1730 -1692
- data/resources/locales/ar/languages.yml +583 -580
- data/resources/locales/ar/layout.yml +5 -5
- data/resources/locales/ar/lists.yml +23 -7
- data/resources/locales/ar/numbers.yml +66 -61
- data/resources/locales/ar/plurals.yml +5 -8
- data/resources/locales/ar/rbnf.yml +519 -0
- data/resources/locales/ar/territories.yml +264 -263
- data/resources/locales/be/calendars.yml +238 -237
- data/resources/locales/be/currencies.yml +954 -917
- data/resources/locales/be/languages.yml +583 -580
- data/resources/locales/be/layout.yml +5 -5
- data/resources/locales/be/lists.yml +23 -7
- data/resources/locales/be/numbers.yml +62 -57
- data/resources/locales/be/plurals.yml +7 -4
- data/resources/locales/be/rbnf.yml +1288 -0
- data/resources/locales/be/territories.yml +264 -263
- data/resources/locales/bg/calendars.yml +278 -218
- data/resources/locales/bg/currencies.yml +955 -917
- data/resources/locales/bg/languages.yml +583 -580
- data/resources/locales/bg/layout.yml +5 -5
- data/resources/locales/bg/lists.yml +23 -7
- data/resources/locales/bg/numbers.yml +62 -57
- data/resources/locales/bg/plurals.yml +2 -2
- data/resources/locales/bg/rbnf.yml +280 -0
- data/resources/locales/bg/territories.yml +264 -263
- data/resources/locales/bn/calendars.yml +287 -225
- data/resources/locales/bn/currencies.yml +953 -916
- data/resources/locales/bn/languages.yml +583 -580
- data/resources/locales/bn/layout.yml +5 -5
- data/resources/locales/bn/lists.yml +23 -7
- data/resources/locales/bn/numbers.yml +62 -57
- data/resources/locales/bn/plurals.yml +2 -2
- data/resources/locales/bn/rbnf.yml +4 -0
- data/resources/locales/bn/territories.yml +264 -263
- data/resources/locales/ca/calendars.yml +278 -278
- data/resources/locales/ca/currencies.yml +953 -916
- data/resources/locales/ca/languages.yml +583 -580
- data/resources/locales/ca/layout.yml +5 -5
- data/resources/locales/ca/lists.yml +23 -7
- data/resources/locales/ca/numbers.yml +62 -57
- data/resources/locales/ca/plurals.yml +3 -2
- data/resources/locales/ca/rbnf.yml +756 -0
- data/resources/locales/ca/territories.yml +264 -263
- data/resources/locales/cs/calendars.yml +269 -262
- data/resources/locales/cs/currencies.yml +1483 -1172
- data/resources/locales/cs/languages.yml +583 -580
- data/resources/locales/cs/layout.yml +5 -5
- data/resources/locales/cs/lists.yml +23 -7
- data/resources/locales/cs/numbers.yml +64 -58
- data/resources/locales/cs/plurals.yml +6 -2
- data/resources/locales/cs/rbnf.yml +367 -0
- data/resources/locales/cs/territories.yml +264 -263
- data/resources/locales/cy/calendars.yml +275 -274
- data/resources/locales/cy/currencies.yml +1585 -1548
- data/resources/locales/cy/languages.yml +583 -580
- data/resources/locales/cy/layout.yml +5 -5
- data/resources/locales/cy/lists.yml +23 -7
- data/resources/locales/cy/numbers.yml +66 -61
- data/resources/locales/cy/plurals.yml +4 -3
- data/resources/locales/cy/rbnf.yml +298 -0
- data/resources/locales/cy/territories.yml +264 -263
- data/resources/locales/da/calendars.yml +281 -280
- data/resources/locales/da/currencies.yml +954 -916
- data/resources/locales/da/languages.yml +583 -580
- data/resources/locales/da/layout.yml +5 -5
- data/resources/locales/da/lists.yml +23 -7
- data/resources/locales/da/numbers.yml +62 -57
- data/resources/locales/da/plurals.yml +3 -2
- data/resources/locales/da/rbnf.yml +194 -0
- data/resources/locales/da/territories.yml +264 -263
- data/resources/locales/de/calendars.yml +294 -293
- data/resources/locales/de/currencies.yml +954 -916
- data/resources/locales/de/languages.yml +583 -580
- data/resources/locales/de/layout.yml +5 -5
- data/resources/locales/de/lists.yml +23 -7
- data/resources/locales/de/numbers.yml +62 -57
- data/resources/locales/de/plurals.yml +3 -2
- data/resources/locales/de/rbnf.yml +346 -0
- data/resources/locales/de/territories.yml +264 -263
- data/resources/locales/el/calendars.yml +279 -282
- data/resources/locales/el/currencies.yml +954 -916
- data/resources/locales/el/languages.yml +583 -580
- data/resources/locales/el/layout.yml +5 -5
- data/resources/locales/el/lists.yml +23 -7
- data/resources/locales/el/numbers.yml +62 -57
- data/resources/locales/el/plurals.yml +2 -2
- data/resources/locales/el/rbnf.yml +880 -0
- data/resources/locales/el/territories.yml +264 -263
- data/resources/locales/en/calendars.yml +192 -191
- data/resources/locales/en/currencies.yml +953 -915
- data/resources/locales/en/languages.yml +583 -580
- data/resources/locales/en/layout.yml +5 -5
- data/resources/locales/en/lists.yml +23 -7
- data/resources/locales/en/numbers.yml +62 -57
- data/resources/locales/en/plurals.yml +3 -2
- data/resources/locales/en/rbnf.yml +542 -0
- data/resources/locales/en/territories.yml +264 -263
- data/resources/locales/en-GB/calendars.yml +195 -194
- data/resources/locales/en-GB/currencies.yml +953 -915
- data/resources/locales/en-GB/languages.yml +583 -580
- data/resources/locales/en-GB/layout.yml +5 -5
- data/resources/locales/en-GB/lists.yml +23 -7
- data/resources/locales/en-GB/numbers.yml +62 -57
- data/resources/locales/en-GB/plurals.yml +2 -1
- data/resources/locales/en-GB/rbnf.yml +4 -0
- data/resources/locales/en-GB/territories.yml +264 -263
- data/resources/locales/es/calendars.yml +288 -238
- data/resources/locales/es/currencies.yml +953 -922
- data/resources/locales/es/languages.yml +583 -580
- data/resources/locales/es/layout.yml +5 -5
- data/resources/locales/es/lists.yml +23 -7
- data/resources/locales/es/numbers.yml +62 -57
- data/resources/locales/es/plurals.yml +2 -2
- data/resources/locales/es/rbnf.yml +913 -0
- data/resources/locales/es/territories.yml +264 -263
- data/resources/locales/eu/calendars.yml +277 -218
- data/resources/locales/eu/currencies.yml +953 -916
- data/resources/locales/eu/languages.yml +583 -580
- data/resources/locales/eu/layout.yml +5 -5
- data/resources/locales/eu/lists.yml +23 -7
- data/resources/locales/eu/numbers.yml +56 -51
- data/resources/locales/eu/plurals.yml +2 -2
- data/resources/locales/eu/rbnf.yml +4 -0
- data/resources/locales/eu/territories.yml +264 -263
- data/resources/locales/fa/calendars.yml +294 -293
- data/resources/locales/fa/currencies.yml +955 -916
- data/resources/locales/fa/languages.yml +583 -580
- data/resources/locales/fa/layout.yml +5 -5
- data/resources/locales/fa/lists.yml +23 -7
- data/resources/locales/fa/numbers.yml +62 -57
- data/resources/locales/fa/plurals.yml +2 -2
- data/resources/locales/fa/rbnf.yml +157 -0
- data/resources/locales/fa/territories.yml +264 -263
- data/resources/locales/fi/calendars.yml +284 -283
- data/resources/locales/fi/currencies.yml +953 -915
- data/resources/locales/fi/languages.yml +583 -580
- data/resources/locales/fi/layout.yml +5 -5
- data/resources/locales/fi/lists.yml +23 -7
- data/resources/locales/fi/numbers.yml +62 -57
- data/resources/locales/fi/plurals.yml +3 -2
- data/resources/locales/fi/rbnf.yml +206 -0
- data/resources/locales/fi/territories.yml +264 -263
- data/resources/locales/fil/calendars.yml +281 -230
- data/resources/locales/fil/currencies.yml +953 -916
- data/resources/locales/fil/languages.yml +583 -580
- data/resources/locales/fil/layout.yml +5 -5
- data/resources/locales/fil/lists.yml +23 -7
- data/resources/locales/fil/numbers.yml +62 -57
- data/resources/locales/fil/plurals.yml +3 -2
- data/resources/locales/fil/rbnf.yml +158 -0
- data/resources/locales/fil/territories.yml +264 -263
- data/resources/locales/fr/calendars.yml +297 -296
- data/resources/locales/fr/currencies.yml +968 -949
- data/resources/locales/fr/languages.yml +583 -580
- data/resources/locales/fr/layout.yml +5 -5
- data/resources/locales/fr/lists.yml +23 -7
- data/resources/locales/fr/numbers.yml +62 -57
- data/resources/locales/fr/plurals.yml +2 -2
- data/resources/locales/fr/rbnf.yml +621 -0
- data/resources/locales/fr/territories.yml +264 -263
- data/resources/locales/ga/calendars.yml +192 -191
- data/resources/locales/ga/currencies.yml +954 -916
- data/resources/locales/ga/languages.yml +583 -580
- data/resources/locales/ga/layout.yml +5 -5
- data/resources/locales/ga/lists.yml +23 -7
- data/resources/locales/ga/numbers.yml +62 -57
- data/resources/locales/ga/plurals.yml +4 -3
- data/resources/locales/ga/rbnf.yml +615 -0
- data/resources/locales/ga/territories.yml +264 -263
- data/resources/locales/gl/calendars.yml +283 -217
- data/resources/locales/gl/currencies.yml +953 -916
- data/resources/locales/gl/languages.yml +583 -580
- data/resources/locales/gl/layout.yml +5 -5
- data/resources/locales/gl/lists.yml +23 -7
- data/resources/locales/gl/numbers.yml +62 -57
- data/resources/locales/gl/plurals.yml +3 -2
- data/resources/locales/gl/rbnf.yml +4 -0
- data/resources/locales/gl/territories.yml +264 -263
- data/resources/locales/he/calendars.yml +248 -220
- data/resources/locales/he/currencies.yml +992 -932
- data/resources/locales/he/languages.yml +583 -580
- data/resources/locales/he/layout.yml +5 -5
- data/resources/locales/he/lists.yml +23 -7
- data/resources/locales/he/numbers.yml +64 -59
- data/resources/locales/he/plurals.yml +6 -3
- data/resources/locales/he/rbnf.yml +1029 -0
- data/resources/locales/he/territories.yml +264 -263
- data/resources/locales/hi/calendars.yml +284 -216
- data/resources/locales/hi/currencies.yml +953 -915
- data/resources/locales/hi/languages.yml +583 -580
- data/resources/locales/hi/layout.yml +5 -5
- data/resources/locales/hi/lists.yml +23 -7
- data/resources/locales/hi/numbers.yml +60 -55
- data/resources/locales/hi/plurals.yml +2 -2
- data/resources/locales/hi/rbnf.yml +430 -0
- data/resources/locales/hi/territories.yml +264 -263
- data/resources/locales/hr/calendars.yml +308 -307
- data/resources/locales/hr/currencies.yml +1248 -1504
- data/resources/locales/hr/languages.yml +583 -580
- data/resources/locales/hr/layout.yml +5 -5
- data/resources/locales/hr/lists.yml +23 -7
- data/resources/locales/hr/numbers.yml +63 -59
- data/resources/locales/hr/plurals.yml +12 -4
- data/resources/locales/hr/rbnf.yml +599 -0
- data/resources/locales/hr/territories.yml +264 -263
- data/resources/locales/hu/calendars.yml +285 -284
- data/resources/locales/hu/currencies.yml +954 -916
- data/resources/locales/hu/languages.yml +583 -580
- data/resources/locales/hu/layout.yml +5 -5
- data/resources/locales/hu/lists.yml +23 -7
- data/resources/locales/hu/numbers.yml +62 -57
- data/resources/locales/hu/plurals.yml +2 -2
- data/resources/locales/hu/rbnf.yml +363 -0
- data/resources/locales/hu/territories.yml +264 -263
- data/resources/locales/id/calendars.yml +276 -275
- data/resources/locales/id/currencies.yml +954 -916
- data/resources/locales/id/languages.yml +583 -580
- data/resources/locales/id/layout.yml +5 -5
- data/resources/locales/id/lists.yml +23 -7
- data/resources/locales/id/numbers.yml +61 -56
- data/resources/locales/id/plurals.yml +2 -2
- data/resources/locales/id/rbnf.yml +121 -0
- data/resources/locales/id/territories.yml +264 -263
- data/resources/locales/is/calendars.yml +281 -242
- data/resources/locales/is/currencies.yml +954 -916
- data/resources/locales/is/languages.yml +583 -580
- data/resources/locales/is/layout.yml +5 -5
- data/resources/locales/is/lists.yml +23 -7
- data/resources/locales/is/numbers.yml +62 -57
- data/resources/locales/is/plurals.yml +5 -2
- data/resources/locales/is/rbnf.yml +326 -0
- data/resources/locales/is/territories.yml +264 -263
- data/resources/locales/it/calendars.yml +275 -260
- data/resources/locales/it/currencies.yml +953 -920
- data/resources/locales/it/languages.yml +583 -580
- data/resources/locales/it/layout.yml +5 -5
- data/resources/locales/it/lists.yml +23 -7
- data/resources/locales/it/numbers.yml +59 -54
- data/resources/locales/it/plurals.yml +3 -2
- data/resources/locales/it/rbnf.yml +1189 -0
- data/resources/locales/it/territories.yml +264 -263
- data/resources/locales/ja/calendars.yml +269 -207
- data/resources/locales/ja/currencies.yml +953 -915
- data/resources/locales/ja/languages.yml +583 -580
- data/resources/locales/ja/layout.yml +5 -5
- data/resources/locales/ja/lists.yml +23 -7
- data/resources/locales/ja/numbers.yml +62 -57
- data/resources/locales/ja/plurals.yml +2 -2
- data/resources/locales/ja/rbnf.yml +209 -0
- data/resources/locales/ja/territories.yml +264 -263
- data/resources/locales/ko/calendars.yml +246 -213
- data/resources/locales/ko/currencies.yml +953 -915
- data/resources/locales/ko/languages.yml +583 -580
- data/resources/locales/ko/layout.yml +5 -5
- data/resources/locales/ko/lists.yml +23 -7
- data/resources/locales/ko/numbers.yml +60 -55
- data/resources/locales/ko/plurals.yml +2 -2
- data/resources/locales/ko/rbnf.yml +722 -0
- data/resources/locales/ko/territories.yml +264 -263
- data/resources/locales/lv/calendars.yml +286 -285
- data/resources/locales/lv/currencies.yml +1122 -1084
- data/resources/locales/lv/languages.yml +583 -580
- data/resources/locales/lv/layout.yml +5 -5
- data/resources/locales/lv/lists.yml +23 -7
- data/resources/locales/lv/numbers.yml +63 -58
- data/resources/locales/lv/plurals.yml +11 -3
- data/resources/locales/lv/rbnf.yml +238 -0
- data/resources/locales/lv/territories.yml +264 -263
- data/resources/locales/ms/calendars.yml +280 -279
- data/resources/locales/ms/currencies.yml +954 -916
- data/resources/locales/ms/languages.yml +583 -580
- data/resources/locales/ms/layout.yml +5 -5
- data/resources/locales/ms/lists.yml +23 -7
- data/resources/locales/ms/numbers.yml +62 -57
- data/resources/locales/ms/plurals.yml +2 -2
- data/resources/locales/ms/rbnf.yml +130 -0
- data/resources/locales/ms/territories.yml +264 -263
- data/resources/locales/nb/calendars.yml +284 -283
- data/resources/locales/nb/currencies.yml +958 -916
- data/resources/locales/nb/languages.yml +583 -580
- data/resources/locales/nb/layout.yml +5 -5
- data/resources/locales/nb/lists.yml +23 -7
- data/resources/locales/nb/numbers.yml +62 -57
- data/resources/locales/nb/plurals.yml +2 -2
- data/resources/locales/nb/rbnf.yml +191 -0
- data/resources/locales/nb/territories.yml +264 -263
- data/resources/locales/nl/calendars.yml +285 -284
- data/resources/locales/nl/currencies.yml +953 -917
- data/resources/locales/nl/languages.yml +583 -580
- data/resources/locales/nl/layout.yml +5 -5
- data/resources/locales/nl/lists.yml +23 -7
- data/resources/locales/nl/numbers.yml +62 -57
- data/resources/locales/nl/plurals.yml +3 -2
- data/resources/locales/nl/rbnf.yml +320 -0
- data/resources/locales/nl/territories.yml +264 -263
- data/resources/locales/pl/calendars.yml +288 -287
- data/resources/locales/pl/currencies.yml +1326 -1284
- data/resources/locales/pl/languages.yml +583 -580
- data/resources/locales/pl/layout.yml +5 -5
- data/resources/locales/pl/lists.yml +23 -7
- data/resources/locales/pl/numbers.yml +64 -59
- data/resources/locales/pl/plurals.yml +11 -4
- data/resources/locales/pl/rbnf.yml +410 -0
- data/resources/locales/pl/territories.yml +264 -263
- data/resources/locales/pt/calendars.yml +290 -289
- data/resources/locales/pt/currencies.yml +954 -916
- data/resources/locales/pt/languages.yml +583 -580
- data/resources/locales/pt/layout.yml +5 -5
- data/resources/locales/pt/lists.yml +23 -7
- data/resources/locales/pt/numbers.yml +62 -57
- data/resources/locales/pt/plurals.yml +4 -2
- data/resources/locales/pt/rbnf.yml +586 -0
- data/resources/locales/pt/territories.yml +264 -263
- data/resources/locales/ro/calendars.yml +284 -283
- data/resources/locales/ro/currencies.yml +1170 -1132
- data/resources/locales/ro/languages.yml +583 -580
- data/resources/locales/ro/layout.yml +5 -5
- data/resources/locales/ro/lists.yml +23 -7
- data/resources/locales/ro/numbers.yml +63 -58
- data/resources/locales/ro/plurals.yml +5 -2
- data/resources/locales/ro/rbnf.yml +250 -0
- data/resources/locales/ro/territories.yml +264 -263
- data/resources/locales/ru/calendars.yml +282 -281
- data/resources/locales/ru/currencies.yml +1118 -1247
- data/resources/locales/ru/languages.yml +583 -580
- data/resources/locales/ru/layout.yml +5 -5
- data/resources/locales/ru/lists.yml +23 -7
- data/resources/locales/ru/numbers.yml +63 -59
- data/resources/locales/ru/plurals.yml +8 -4
- data/resources/locales/ru/rbnf.yml +385 -0
- data/resources/locales/ru/territories.yml +264 -263
- data/resources/locales/sk/calendars.yml +254 -251
- data/resources/locales/sk/currencies.yml +1174 -1008
- data/resources/locales/sk/languages.yml +583 -580
- data/resources/locales/sk/layout.yml +5 -5
- data/resources/locales/sk/lists.yml +23 -7
- data/resources/locales/sk/numbers.yml +64 -58
- data/resources/locales/sk/plurals.yml +6 -2
- data/resources/locales/sk/rbnf.yml +304 -0
- data/resources/locales/sk/territories.yml +264 -263
- data/resources/locales/sq/calendars.yml +283 -206
- data/resources/locales/sq/currencies.yml +954 -916
- data/resources/locales/sq/languages.yml +583 -580
- data/resources/locales/sq/layout.yml +5 -5
- data/resources/locales/sq/lists.yml +23 -7
- data/resources/locales/sq/numbers.yml +62 -57
- data/resources/locales/sq/plurals.yml +2 -2
- data/resources/locales/sq/rbnf.yml +181 -0
- data/resources/locales/sq/territories.yml +264 -263
- data/resources/locales/sr/calendars.yml +290 -289
- data/resources/locales/sr/currencies.yml +1251 -1508
- data/resources/locales/sr/languages.yml +583 -580
- data/resources/locales/sr/layout.yml +5 -5
- data/resources/locales/sr/lists.yml +23 -7
- data/resources/locales/sr/numbers.yml +62 -58
- data/resources/locales/sr/plurals.yml +12 -4
- data/resources/locales/sr/rbnf.yml +429 -0
- data/resources/locales/sr/territories.yml +264 -263
- data/resources/locales/sv/calendars.yml +290 -289
- data/resources/locales/sv/currencies.yml +960 -930
- data/resources/locales/sv/languages.yml +583 -580
- data/resources/locales/sv/layout.yml +5 -5
- data/resources/locales/sv/lists.yml +23 -7
- data/resources/locales/sv/numbers.yml +63 -58
- data/resources/locales/sv/plurals.yml +3 -2
- data/resources/locales/sv/rbnf.yml +692 -0
- data/resources/locales/sv/territories.yml +264 -263
- data/resources/locales/ta/calendars.yml +281 -266
- data/resources/locales/ta/currencies.yml +953 -915
- data/resources/locales/ta/languages.yml +583 -580
- data/resources/locales/ta/layout.yml +5 -5
- data/resources/locales/ta/lists.yml +23 -7
- data/resources/locales/ta/numbers.yml +62 -57
- data/resources/locales/ta/plurals.yml +2 -2
- data/resources/locales/ta/rbnf.yml +241 -0
- data/resources/locales/ta/territories.yml +264 -263
- data/resources/locales/th/calendars.yml +278 -289
- data/resources/locales/th/currencies.yml +953 -915
- data/resources/locales/th/languages.yml +583 -580
- data/resources/locales/th/layout.yml +5 -5
- data/resources/locales/th/lists.yml +23 -7
- data/resources/locales/th/numbers.yml +62 -57
- data/resources/locales/th/plurals.yml +2 -2
- data/resources/locales/th/rbnf.yml +119 -0
- data/resources/locales/th/territories.yml +264 -263
- data/resources/locales/tr/calendars.yml +287 -286
- data/resources/locales/tr/currencies.yml +953 -916
- data/resources/locales/tr/languages.yml +583 -580
- data/resources/locales/tr/layout.yml +5 -5
- data/resources/locales/tr/lists.yml +23 -7
- data/resources/locales/tr/numbers.yml +61 -56
- data/resources/locales/tr/plurals.yml +2 -2
- data/resources/locales/tr/rbnf.yml +277 -0
- data/resources/locales/tr/territories.yml +264 -263
- data/resources/locales/uk/calendars.yml +286 -252
- data/resources/locales/uk/currencies.yml +1311 -1070
- data/resources/locales/uk/languages.yml +583 -580
- data/resources/locales/uk/layout.yml +5 -5
- data/resources/locales/uk/lists.yml +23 -7
- data/resources/locales/uk/numbers.yml +64 -59
- data/resources/locales/uk/plurals.yml +10 -4
- data/resources/locales/uk/rbnf.yml +430 -0
- data/resources/locales/uk/territories.yml +264 -263
- data/resources/locales/ur/calendars.yml +267 -228
- data/resources/locales/ur/currencies.yml +954 -916
- data/resources/locales/ur/languages.yml +583 -580
- data/resources/locales/ur/layout.yml +5 -5
- data/resources/locales/ur/lists.yml +23 -7
- data/resources/locales/ur/numbers.yml +62 -57
- data/resources/locales/ur/plurals.yml +3 -2
- data/resources/locales/ur/rbnf.yml +4 -0
- data/resources/locales/ur/territories.yml +264 -263
- data/resources/locales/vi/calendars.yml +256 -236
- data/resources/locales/vi/currencies.yml +953 -915
- data/resources/locales/vi/languages.yml +583 -580
- data/resources/locales/vi/layout.yml +5 -5
- data/resources/locales/vi/lists.yml +23 -7
- data/resources/locales/vi/numbers.yml +62 -57
- data/resources/locales/vi/plurals.yml +2 -2
- data/resources/locales/vi/rbnf.yml +164 -0
- data/resources/locales/vi/territories.yml +264 -263
- data/resources/locales/zh/calendars.yml +266 -265
- data/resources/locales/zh/currencies.yml +953 -915
- data/resources/locales/zh/languages.yml +583 -580
- data/resources/locales/zh/layout.yml +5 -5
- data/resources/locales/zh/lists.yml +23 -7
- data/resources/locales/zh/numbers.yml +62 -57
- data/resources/locales/zh/plurals.yml +2 -2
- data/resources/locales/zh/rbnf.yml +689 -0
- data/resources/locales/zh/territories.yml +264 -263
- data/resources/locales/zh-Hant/calendars.yml +266 -265
- data/resources/locales/zh-Hant/currencies.yml +955 -915
- data/resources/locales/zh-Hant/languages.yml +583 -580
- data/resources/locales/zh-Hant/layout.yml +5 -5
- data/resources/locales/zh-Hant/lists.yml +23 -7
- data/resources/locales/zh-Hant/numbers.yml +62 -57
- data/resources/locales/zh-Hant/plurals.yml +2 -2
- data/resources/locales/zh-Hant/rbnf.yml +647 -0
- data/resources/locales/zh-Hant/territories.yml +264 -263
- data/resources/shared/currency_digits_and_rounding.yml +67 -64
- data/resources/shared/numbering_systems.yml +176 -0
- data/resources/shared/rbnf_root.yml +1573 -0
- data/resources/shared/segments/segments_root.yml +728 -0
- data/resources/shared/segments/tailorings/en.yml +8 -0
- data/resources/uli/segments/de.yml +128 -0
- data/resources/uli/segments/en.yml +154 -0
- data/resources/uli/segments/es.yml +112 -0
- data/resources/uli/segments/fr.yml +47 -0
- data/resources/uli/segments/it.yml +37 -0
- data/resources/uli/segments/pt.yml +173 -0
- data/resources/uli/segments/ru.yml +10 -0
- data/resources/unicode_data/casefolding.yml +4765 -0
- data/resources/unicode_data/indices/bidi_class.yml +4572 -0
- data/resources/unicode_data/indices/bidi_mirrored.yml +3087 -0
- data/resources/unicode_data/indices/category.yml +10918 -0
- data/resources/unicode_data/indices/keys.yml +101 -0
- data/resources/unicode_data/properties/line_break.yml +9269 -0
- data/resources/unicode_data/properties/sentence_break.yml +8067 -0
- data/resources/unicode_data/properties/word_break.yml +3001 -0
- data/spec/collation/collation_spec.rb +2 -1
- data/spec/collation/collator_spec.rb +4 -3
- data/spec/collation/tailoring_spec.rb +2 -2
- data/spec/collation/tailoring_tests/he.txt +5 -2
- data/spec/{tokenizers/calendars → data_readers}/additional_date_format_selector_spec.rb +13 -13
- data/spec/data_readers/date_time_data_reader_spec.rb +26 -0
- data/spec/data_readers/number_data_reader_spec.rb +18 -0
- data/spec/data_readers/timespan_data_reader.rb +22 -0
- data/spec/formatters/calendars/datetime_formatter_spec.rb +18 -22
- data/spec/formatters/list_formatter_spec.rb +16 -87
- data/spec/formatters/numbers/abbreviated/abbreviated_number_formatter_spec.rb +15 -59
- data/spec/formatters/numbers/abbreviated/long_decimal_formatter_spec.rb +32 -17
- data/spec/formatters/numbers/abbreviated/short_decimal_formatter_spec.rb +33 -17
- data/spec/formatters/numbers/currency_formatter_spec.rb +18 -13
- data/spec/formatters/numbers/decimal_formatter_spec.rb +16 -18
- data/spec/formatters/numbers/number_formatter_spec.rb +40 -31
- data/spec/formatters/numbers/percent_formatter_spec.rb +14 -6
- data/spec/formatters/numbers/rbnf/allowed_failures.yml +74 -0
- data/spec/formatters/numbers/rbnf/locales/af/rbnf_test.yml +706 -0
- data/spec/formatters/numbers/rbnf/locales/ar/rbnf_test.yml +706 -0
- data/spec/formatters/numbers/rbnf/locales/be/rbnf_test.yml +1174 -0
- data/spec/formatters/numbers/rbnf/locales/bg/rbnf_test.yml +706 -0
- data/spec/formatters/numbers/rbnf/locales/bn/rbnf_test.yml +1291 -0
- data/spec/formatters/numbers/rbnf/locales/ca/rbnf_test.yml +1174 -0
- data/spec/formatters/numbers/rbnf/locales/cs/rbnf_test.yml +823 -0
- data/spec/formatters/numbers/rbnf/locales/cy/rbnf_test.yml +940 -0
- data/spec/formatters/numbers/rbnf/locales/da/rbnf_test.yml +940 -0
- data/spec/formatters/numbers/rbnf/locales/de/rbnf_test.yml +940 -0
- data/spec/formatters/numbers/rbnf/locales/el/rbnf_test.yml +1174 -0
- data/spec/formatters/numbers/rbnf/locales/en/rbnf_test.yml +1291 -0
- data/spec/formatters/numbers/rbnf/locales/en-GB/rbnf_test.yml +1291 -0
- data/spec/formatters/numbers/rbnf/locales/es/rbnf_test.yml +1642 -0
- data/spec/formatters/numbers/rbnf/locales/eu/rbnf_test.yml +1291 -0
- data/spec/formatters/numbers/rbnf/locales/fa/rbnf_test.yml +589 -0
- data/spec/formatters/numbers/rbnf/locales/fi/rbnf_test.yml +706 -0
- data/spec/formatters/numbers/rbnf/locales/fil/rbnf_test.yml +706 -0
- data/spec/formatters/numbers/rbnf/locales/fr/rbnf_test.yml +1408 -0
- data/spec/formatters/numbers/rbnf/locales/ga/rbnf_test.yml +940 -0
- data/spec/formatters/numbers/rbnf/locales/gl/rbnf_test.yml +1291 -0
- data/spec/formatters/numbers/rbnf/locales/he/rbnf_test.yml +1057 -0
- data/spec/formatters/numbers/rbnf/locales/hi/rbnf_test.yml +823 -0
- data/spec/formatters/numbers/rbnf/locales/hr/rbnf_test.yml +1174 -0
- data/spec/formatters/numbers/rbnf/locales/hu/rbnf_test.yml +940 -0
- data/spec/formatters/numbers/rbnf/locales/id/rbnf_test.yml +706 -0
- data/spec/formatters/numbers/rbnf/locales/is/rbnf_test.yml +823 -0
- data/spec/formatters/numbers/rbnf/locales/it/rbnf_test.yml +1174 -0
- data/spec/formatters/numbers/rbnf/locales/ja/rbnf_test.yml +823 -0
- data/spec/formatters/numbers/rbnf/locales/ko/rbnf_test.yml +1408 -0
- data/spec/formatters/numbers/rbnf/locales/lv/rbnf_test.yml +706 -0
- data/spec/formatters/numbers/rbnf/locales/ms/rbnf_test.yml +706 -0
- data/spec/formatters/numbers/rbnf/locales/nb/rbnf_test.yml +940 -0
- data/spec/formatters/numbers/rbnf/locales/nl/rbnf_test.yml +706 -0
- data/spec/formatters/numbers/rbnf/locales/pl/rbnf_test.yml +823 -0
- data/spec/formatters/numbers/rbnf/locales/pt/rbnf_test.yml +1174 -0
- data/spec/formatters/numbers/rbnf/locales/ro/rbnf_test.yml +823 -0
- data/spec/formatters/numbers/rbnf/locales/ru/rbnf_test.yml +823 -0
- data/spec/formatters/numbers/rbnf/locales/sk/rbnf_test.yml +823 -0
- data/spec/formatters/numbers/rbnf/locales/sq/rbnf_test.yml +706 -0
- data/spec/formatters/numbers/rbnf/locales/sr/rbnf_test.yml +940 -0
- data/spec/formatters/numbers/rbnf/locales/sv/rbnf_test.yml +1876 -0
- data/spec/formatters/numbers/rbnf/locales/ta/rbnf_test.yml +706 -0
- data/spec/formatters/numbers/rbnf/locales/th/rbnf_test.yml +706 -0
- data/spec/formatters/numbers/rbnf/locales/tr/rbnf_test.yml +706 -0
- data/spec/formatters/numbers/rbnf/locales/uk/rbnf_test.yml +823 -0
- data/spec/formatters/numbers/rbnf/locales/ur/rbnf_test.yml +1291 -0
- data/spec/formatters/numbers/rbnf/locales/vi/rbnf_test.yml +706 -0
- data/spec/formatters/numbers/rbnf/locales/zh/rbnf_test.yml +940 -0
- data/spec/formatters/numbers/rbnf/locales/zh-Hant/rbnf_test.yml +940 -0
- data/spec/formatters/numbers/rbnf/rbnf_spec.rb +98 -0
- data/spec/formatters/plurals/plural_formatter_spec.rb +4 -4
- data/spec/formatters/plurals/rules_spec.rb +5 -5
- data/spec/localized/localized_date_spec.rb +1 -1
- data/spec/localized/localized_datetime_spec.rb +8 -13
- data/spec/localized/localized_number_spec.rb +17 -32
- data/spec/localized/localized_object_spec.rb +0 -5
- data/spec/localized/localized_string_spec.rb +40 -2
- data/spec/localized/localized_time_spec.rb +3 -6
- data/spec/localized/localized_timespan_spec.rb +144 -0
- data/spec/normalization_spec.rb +12 -12
- data/spec/parsers/number_parser_spec.rb +5 -5
- data/spec/parsers/parser_spec.rb +60 -0
- data/spec/parsers/segmentation_parser_spec.rb +96 -0
- data/spec/parsers/symbol_table_spec.rb +32 -0
- data/spec/parsers/unicode_regex/character_class_spec.rb +117 -0
- data/spec/parsers/unicode_regex/character_range_spec.rb +21 -0
- data/spec/parsers/unicode_regex/character_set_spec.rb +36 -0
- data/spec/parsers/unicode_regex/literal_spec.rb +34 -0
- data/spec/parsers/unicode_regex/unicode_string_spec.rb +22 -0
- data/spec/parsers/unicode_regex_parser_spec.rb +86 -0
- data/spec/readme_spec.rb +8 -269
- data/spec/shared/break_iterator_spec.rb +72 -0
- data/spec/shared/calendar_spec.rb +5 -4
- data/spec/shared/casefolder_spec.rb +30 -0
- data/spec/shared/casefolding.txt +251 -0
- data/spec/shared/casefolding_expected.txt +251 -0
- data/spec/shared/code_point_spec.rb +44 -14
- data/spec/shared/numbering_system_spec.rb +41 -0
- data/spec/shared/territories_spec.rb +14 -6
- data/spec/shared/unicode_regex_spec.rb +203 -0
- data/spec/spec_helper.rb +17 -0
- data/spec/tokenizers/calendars/date_tokenizer_spec.rb +26 -30
- data/spec/tokenizers/calendars/datetime_tokenizer_spec.rb +11 -90
- data/spec/tokenizers/calendars/time_tokenizer_spec.rb +5 -5
- data/spec/tokenizers/calendars/timespan_tokenizer_spec.rb +17 -7
- data/spec/tokenizers/numbers/number_tokenizer_spec.rb +28 -27
- data/spec/tokenizers/segmentation/segmentation_tokenizer_spec.rb +40 -0
- data/spec/tokenizers/unicode_regex/unicode_regex_tokenizer_spec.rb +190 -0
- data/spec/utils/range_set_spec.rb +171 -0
- data/spec/utils/yaml/yaml_spec.rb +62 -51
- data/twitter_cldr.gemspec +1 -1
- metadata +199 -30
- data/lib/twitter_cldr/formatters/base.rb +0 -47
- data/lib/twitter_cldr/formatters/calendars/date_formatter.rb +0 -19
- data/lib/twitter_cldr/formatters/calendars/time_formatter.rb +0 -19
- data/lib/twitter_cldr/normalization/base.rb +0 -37
- data/lib/twitter_cldr/normalization/hangul.rb +0 -79
- data/lib/twitter_cldr/normalization/nfc.rb +0 -24
- data/lib/twitter_cldr/normalization/nfd.rb +0 -26
- data/lib/twitter_cldr/normalization/nfkc.rb +0 -114
- data/lib/twitter_cldr/normalization/nfkd.rb +0 -120
- data/lib/twitter_cldr/normalization/quick_check.rb +0 -41
- data/lib/twitter_cldr/tokenizers/base.rb +0 -169
- data/lib/twitter_cldr/tokenizers/calendars/datetime_tokenizer.rb +0 -131
- data/lib/twitter_cldr/utils/territories.rb +0 -56
- data/spec/formatters/base_spec.rb +0 -18
- data/spec/formatters/calendars/timespan_formatter_spec.rb +0 -112
- data/spec/normalization/NormalizationTestShort.txt +0 -602
- data/spec/normalization/base_spec.rb +0 -16
- data/spec/normalization/hangul_spec.rb +0 -42
- data/spec/normalization/normalization_spec.rb +0 -113
- data/spec/tokenizers/base_spec.rb +0 -259
- data/spec/utils/territories_spec.rb +0 -16
|
@@ -1,915 +1,953 @@
|
|
|
1
|
-
---
|
|
2
|
-
:th:
|
|
3
|
-
:currencies:
|
|
4
|
-
:ADP:
|
|
5
|
-
:one: เปเซตาอันดอร์รา
|
|
6
|
-
:other: Andorran pesetas
|
|
7
|
-
:AED:
|
|
8
|
-
:one: เดอร์แฮมสหรัฐอาหรับเอมิเรตส์
|
|
9
|
-
:other:
|
|
10
|
-
:AFA:
|
|
11
|
-
:one: อัฟกานีอัฟกานิสถาน (1927
|
|
12
|
-
:other: Afghan afghanis (1927
|
|
13
|
-
:AFN:
|
|
14
|
-
:one:
|
|
15
|
-
:other:
|
|
16
|
-
:ALK:
|
|
17
|
-
:one: Albanian lek (1946
|
|
18
|
-
:other: Albanian lekë (1946
|
|
19
|
-
:ALL:
|
|
20
|
-
:one: เลกแอลเบเนีย
|
|
21
|
-
:other:
|
|
22
|
-
:AMD:
|
|
23
|
-
:one: แดรมอาร์เมเนีย
|
|
24
|
-
:other:
|
|
25
|
-
:ANG:
|
|
26
|
-
:one: กิลเดอร์เนเธอร์แลนด์แอนทิลลิส
|
|
27
|
-
:other:
|
|
28
|
-
:AOA:
|
|
29
|
-
:one: กวานซาแองโกลา
|
|
30
|
-
:other:
|
|
31
|
-
:AOK:
|
|
32
|
-
:one: กวานซาแองโกลา (1977
|
|
33
|
-
:other: Angolan kwanzas (1977
|
|
34
|
-
:AON:
|
|
35
|
-
:one: นิวกวานซาแองโกลา (1990
|
|
36
|
-
:other: Angolan new kwanzas (1990
|
|
37
|
-
:AOR:
|
|
38
|
-
:one: กวานซารีจัสทาโดแองโกลา (1995
|
|
39
|
-
:other: Angolan readjusted kwanzas (1995
|
|
40
|
-
:ARA:
|
|
41
|
-
:one: ออสตรัลอาร์เจนตินา
|
|
42
|
-
:other: Argentine australs
|
|
43
|
-
:ARL:
|
|
44
|
-
:one: เปโซเลย์อาร์เจนตินา (1970
|
|
45
|
-
:other: Argentine pesos ley (1970
|
|
46
|
-
:ARM:
|
|
47
|
-
:one: เปโซอาร์เจนตินา (1881
|
|
48
|
-
:other: Argentine pesos (1881
|
|
49
|
-
:ARP:
|
|
50
|
-
:one: เปโซอาร์เจนตินา (1983
|
|
51
|
-
:other: Argentine pesos (1983
|
|
52
|
-
:ARS:
|
|
53
|
-
:one: เปโซอาร์เจนตินา
|
|
54
|
-
:other:
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
:
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
:
|
|
61
|
-
:
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
:
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
:
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
:
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
:
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
:
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
:
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
:
|
|
83
|
-
|
|
84
|
-
:
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
:
|
|
88
|
-
:
|
|
89
|
-
:
|
|
90
|
-
:one: ฟรังก์เบลเยียม
|
|
91
|
-
:other: Belgian francs
|
|
92
|
-
:
|
|
93
|
-
:one: ฟรังก์เบลเยียม
|
|
94
|
-
:other: Belgian francs
|
|
95
|
-
:
|
|
96
|
-
:one:
|
|
97
|
-
:other:
|
|
98
|
-
:
|
|
99
|
-
:one:
|
|
100
|
-
:other: Bulgarian
|
|
101
|
-
:
|
|
102
|
-
:one:
|
|
103
|
-
:other: Bulgarian leva
|
|
104
|
-
:
|
|
105
|
-
:one:
|
|
106
|
-
:other:
|
|
107
|
-
:
|
|
108
|
-
:one:
|
|
109
|
-
:other:
|
|
110
|
-
:
|
|
111
|
-
:one:
|
|
112
|
-
:other:
|
|
113
|
-
:
|
|
114
|
-
:one:
|
|
115
|
-
:other:
|
|
116
|
-
:
|
|
117
|
-
:one:
|
|
118
|
-
:other:
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
:
|
|
122
|
-
|
|
123
|
-
:
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
:
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
:
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
:
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
:
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
:
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
:
|
|
142
|
-
|
|
143
|
-
:
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
:
|
|
147
|
-
|
|
148
|
-
:
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
:
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
:
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
:
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
:
|
|
161
|
-
:
|
|
162
|
-
:
|
|
163
|
-
:one:
|
|
164
|
-
:other:
|
|
165
|
-
:
|
|
166
|
-
:one:
|
|
167
|
-
:other:
|
|
168
|
-
:
|
|
169
|
-
:one:
|
|
170
|
-
:other:
|
|
171
|
-
:
|
|
172
|
-
:one:
|
|
173
|
-
:other:
|
|
174
|
-
:
|
|
175
|
-
:one:
|
|
176
|
-
:other:
|
|
177
|
-
:symbol:
|
|
178
|
-
:
|
|
179
|
-
:one:
|
|
180
|
-
:other:
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
:
|
|
184
|
-
|
|
185
|
-
:
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
:
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
:
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
:
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
:
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
:
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
:
|
|
204
|
-
|
|
205
|
-
:
|
|
206
|
-
|
|
207
|
-
:
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
:
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
:
|
|
214
|
-
:
|
|
215
|
-
:
|
|
216
|
-
:one:
|
|
217
|
-
:other:
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
:
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
:
|
|
224
|
-
|
|
225
|
-
:
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
:
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
:
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
:
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
:
|
|
238
|
-
:
|
|
239
|
-
:
|
|
240
|
-
:one:
|
|
241
|
-
:other:
|
|
242
|
-
:
|
|
243
|
-
:one:
|
|
244
|
-
:other:
|
|
245
|
-
:
|
|
246
|
-
:one:
|
|
247
|
-
:other:
|
|
248
|
-
:
|
|
249
|
-
:one:
|
|
250
|
-
:other:
|
|
251
|
-
:
|
|
252
|
-
:one:
|
|
253
|
-
:other:
|
|
254
|
-
:
|
|
255
|
-
:one:
|
|
256
|
-
:other:
|
|
257
|
-
:
|
|
258
|
-
:one:
|
|
259
|
-
:other:
|
|
260
|
-
:
|
|
261
|
-
:one:
|
|
262
|
-
:other:
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
:
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
:
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
:
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
:
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
:
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
:
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
:
|
|
284
|
-
:
|
|
285
|
-
:
|
|
286
|
-
:one:
|
|
287
|
-
:other:
|
|
288
|
-
:
|
|
289
|
-
:one:
|
|
290
|
-
:other:
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
:
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
:
|
|
297
|
-
|
|
298
|
-
:
|
|
299
|
-
|
|
300
|
-
:
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
:
|
|
304
|
-
|
|
305
|
-
:
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
:
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
:
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
:
|
|
315
|
-
:
|
|
316
|
-
:
|
|
317
|
-
:one:
|
|
318
|
-
:other:
|
|
319
|
-
:
|
|
320
|
-
:one:
|
|
321
|
-
:other:
|
|
322
|
-
:
|
|
323
|
-
:one:
|
|
324
|
-
:other:
|
|
325
|
-
:
|
|
326
|
-
:one:
|
|
327
|
-
:other:
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
:
|
|
331
|
-
|
|
332
|
-
:
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
:
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
:
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
:
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
:
|
|
345
|
-
|
|
346
|
-
:
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
:
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
:
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
:
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
:
|
|
359
|
-
|
|
360
|
-
:
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
:
|
|
364
|
-
:
|
|
365
|
-
:
|
|
366
|
-
:one:
|
|
367
|
-
:other:
|
|
368
|
-
:
|
|
369
|
-
:one:
|
|
370
|
-
:other:
|
|
371
|
-
:
|
|
372
|
-
:one:
|
|
373
|
-
:other:
|
|
374
|
-
:
|
|
375
|
-
:one:
|
|
376
|
-
:other:
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
:
|
|
380
|
-
|
|
381
|
-
:
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
:
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
:
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
:
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
:
|
|
394
|
-
|
|
395
|
-
:
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
:
|
|
399
|
-
:
|
|
400
|
-
:
|
|
401
|
-
:one:
|
|
402
|
-
:other:
|
|
403
|
-
:
|
|
404
|
-
:one:
|
|
405
|
-
:other:
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
:
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
:
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
:
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
:
|
|
418
|
-
:
|
|
419
|
-
:
|
|
420
|
-
:one:
|
|
421
|
-
:other:
|
|
422
|
-
:
|
|
423
|
-
:one:
|
|
424
|
-
:other:
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
:
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
:
|
|
431
|
-
:
|
|
432
|
-
:
|
|
433
|
-
:one:
|
|
434
|
-
:other:
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
:
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
:
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
:
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
:
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
:
|
|
450
|
-
|
|
451
|
-
:
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
:
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
:
|
|
458
|
-
:
|
|
459
|
-
:
|
|
460
|
-
:one:
|
|
461
|
-
:other:
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
:
|
|
465
|
-
|
|
466
|
-
:
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
:
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
:
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
:
|
|
476
|
-
:
|
|
477
|
-
:
|
|
478
|
-
:one:
|
|
479
|
-
:other:
|
|
480
|
-
:
|
|
481
|
-
:one:
|
|
482
|
-
:other:
|
|
483
|
-
:
|
|
484
|
-
:one:
|
|
485
|
-
:other:
|
|
486
|
-
:
|
|
487
|
-
:one:
|
|
488
|
-
:other:
|
|
489
|
-
:
|
|
490
|
-
:one:
|
|
491
|
-
:other:
|
|
492
|
-
:
|
|
493
|
-
:one:
|
|
494
|
-
:other:
|
|
495
|
-
:
|
|
496
|
-
:one:
|
|
497
|
-
:other:
|
|
498
|
-
:
|
|
499
|
-
:one:
|
|
500
|
-
:other:
|
|
501
|
-
:
|
|
502
|
-
:one:
|
|
503
|
-
:other:
|
|
504
|
-
:
|
|
505
|
-
:one:
|
|
506
|
-
:other:
|
|
507
|
-
:
|
|
508
|
-
:one:
|
|
509
|
-
:other:
|
|
510
|
-
:
|
|
511
|
-
:one:
|
|
512
|
-
:other:
|
|
513
|
-
:
|
|
514
|
-
:one:
|
|
515
|
-
:other:
|
|
516
|
-
:
|
|
517
|
-
:one:
|
|
518
|
-
:other:
|
|
519
|
-
:
|
|
520
|
-
:one:
|
|
521
|
-
:other:
|
|
522
|
-
:
|
|
523
|
-
:one:
|
|
524
|
-
:other:
|
|
525
|
-
:
|
|
526
|
-
:one:
|
|
527
|
-
:other:
|
|
528
|
-
:
|
|
529
|
-
:one:
|
|
530
|
-
:other:
|
|
531
|
-
:
|
|
532
|
-
:one:
|
|
533
|
-
:other:
|
|
534
|
-
:
|
|
535
|
-
:one:
|
|
536
|
-
:other:
|
|
537
|
-
:
|
|
538
|
-
:one:
|
|
539
|
-
:other:
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
:
|
|
543
|
-
:
|
|
544
|
-
:
|
|
545
|
-
:one:
|
|
546
|
-
:other:
|
|
547
|
-
:
|
|
548
|
-
:one:
|
|
549
|
-
:other:
|
|
550
|
-
:
|
|
551
|
-
:one:
|
|
552
|
-
:other:
|
|
553
|
-
:
|
|
554
|
-
:one:
|
|
555
|
-
:other:
|
|
556
|
-
:
|
|
557
|
-
:one:
|
|
558
|
-
:other:
|
|
559
|
-
:
|
|
560
|
-
:one:
|
|
561
|
-
:other:
|
|
562
|
-
:
|
|
563
|
-
:one:
|
|
564
|
-
:other:
|
|
565
|
-
:
|
|
566
|
-
:one:
|
|
567
|
-
:other:
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
:
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
:
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
:
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
:
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
:
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
:
|
|
586
|
-
:
|
|
587
|
-
:
|
|
588
|
-
:one:
|
|
589
|
-
:other:
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
:
|
|
593
|
-
|
|
594
|
-
:
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
:
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
:
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
:
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
:
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
:
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
:
|
|
613
|
-
:
|
|
614
|
-
:
|
|
615
|
-
:one:
|
|
616
|
-
:other:
|
|
617
|
-
:
|
|
618
|
-
:one:
|
|
619
|
-
:other:
|
|
620
|
-
:
|
|
621
|
-
:one:
|
|
622
|
-
:other:
|
|
623
|
-
:
|
|
624
|
-
:one:
|
|
625
|
-
:other:
|
|
626
|
-
:
|
|
627
|
-
:one:
|
|
628
|
-
:other:
|
|
629
|
-
:
|
|
630
|
-
:one:
|
|
631
|
-
:other:
|
|
632
|
-
:
|
|
633
|
-
:one:
|
|
634
|
-
:other:
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
:
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
:
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
:
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
:
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
:
|
|
650
|
-
|
|
651
|
-
:
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
:
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
:
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
:
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
:
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
:
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
:
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
:
|
|
673
|
-
:
|
|
674
|
-
:
|
|
675
|
-
:one:
|
|
676
|
-
:other:
|
|
677
|
-
:
|
|
678
|
-
:one:
|
|
679
|
-
:other:
|
|
680
|
-
:
|
|
681
|
-
:one:
|
|
682
|
-
:other:
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
:
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
:
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
:
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
:
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
:
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
:
|
|
701
|
-
|
|
702
|
-
:
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
:
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
:
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
:
|
|
712
|
-
|
|
713
|
-
:
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
:
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
:
|
|
720
|
-
|
|
721
|
-
:
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
:
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
:
|
|
728
|
-
:
|
|
729
|
-
:
|
|
730
|
-
:one:
|
|
731
|
-
:other:
|
|
732
|
-
:
|
|
733
|
-
:one:
|
|
734
|
-
:other:
|
|
735
|
-
:
|
|
736
|
-
:one:
|
|
737
|
-
:other:
|
|
738
|
-
:
|
|
739
|
-
:one:
|
|
740
|
-
:other:
|
|
741
|
-
:
|
|
742
|
-
:one:
|
|
743
|
-
:other:
|
|
744
|
-
:
|
|
745
|
-
:one:
|
|
746
|
-
:other:
|
|
747
|
-
:symbol:
|
|
748
|
-
:
|
|
749
|
-
:one:
|
|
750
|
-
:other:
|
|
751
|
-
:
|
|
752
|
-
:one:
|
|
753
|
-
:other:
|
|
754
|
-
:
|
|
755
|
-
:one:
|
|
756
|
-
:other:
|
|
757
|
-
:
|
|
758
|
-
:one:
|
|
759
|
-
:other:
|
|
760
|
-
:
|
|
761
|
-
:one:
|
|
762
|
-
:other:
|
|
763
|
-
:
|
|
764
|
-
:one:
|
|
765
|
-
:other:
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
:
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
:
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
:
|
|
775
|
-
:
|
|
776
|
-
:
|
|
777
|
-
:one:
|
|
778
|
-
:other:
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
:
|
|
782
|
-
|
|
783
|
-
:
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
:
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
:
|
|
790
|
-
:
|
|
791
|
-
:
|
|
792
|
-
:one:
|
|
793
|
-
:other:
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
:
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
:
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
:
|
|
803
|
-
:
|
|
804
|
-
:
|
|
805
|
-
:one:
|
|
806
|
-
:other:
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
:
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
:
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
:
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
:
|
|
819
|
-
:
|
|
820
|
-
:
|
|
821
|
-
:one:
|
|
822
|
-
:other:
|
|
823
|
-
:
|
|
824
|
-
:one:
|
|
825
|
-
:other:
|
|
826
|
-
:
|
|
827
|
-
:one:
|
|
828
|
-
:other:
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
:
|
|
832
|
-
:
|
|
833
|
-
:
|
|
834
|
-
:one:
|
|
835
|
-
:other:
|
|
836
|
-
:
|
|
837
|
-
:one:
|
|
838
|
-
:other:
|
|
839
|
-
:
|
|
840
|
-
:one:
|
|
841
|
-
:other:
|
|
842
|
-
:
|
|
843
|
-
:one:
|
|
844
|
-
:other:
|
|
845
|
-
:symbol:
|
|
846
|
-
:
|
|
847
|
-
:one:
|
|
848
|
-
:other: troy ounces of
|
|
849
|
-
:
|
|
850
|
-
:one:
|
|
851
|
-
:other:
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
:
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
:
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
:
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
:
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
:
|
|
867
|
-
:
|
|
868
|
-
:
|
|
869
|
-
:one:
|
|
870
|
-
:other:
|
|
871
|
-
:
|
|
872
|
-
:one:
|
|
873
|
-
:other:
|
|
874
|
-
:
|
|
875
|
-
:one:
|
|
876
|
-
:other:
|
|
877
|
-
:
|
|
878
|
-
:one:
|
|
879
|
-
:other:
|
|
880
|
-
:
|
|
881
|
-
:one:
|
|
882
|
-
:other:
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
:
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
:
|
|
889
|
-
|
|
890
|
-
:
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
:
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
:
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
:
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
:
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
:
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
:
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
:
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
:
|
|
915
|
-
|
|
1
|
+
---
|
|
2
|
+
:th:
|
|
3
|
+
:currencies:
|
|
4
|
+
:ADP:
|
|
5
|
+
:one: "เปเซตาอันดอร์รา"
|
|
6
|
+
:other: "Andorran pesetas"
|
|
7
|
+
:AED:
|
|
8
|
+
:one: "เดอร์แฮมสหรัฐอาหรับเอมิเรตส์"
|
|
9
|
+
:other: "เดอร์แฮมสหรัฐอาหรับเอมิเรตส์"
|
|
10
|
+
:AFA:
|
|
11
|
+
:one: "อัฟกานีอัฟกานิสถาน (1927–2002)"
|
|
12
|
+
:other: "Afghan afghanis (1927–2002)"
|
|
13
|
+
:AFN:
|
|
14
|
+
:one: "อัฟกานิอัฟกานิสถาน"
|
|
15
|
+
:other: "อัฟกานิอัฟกานิสถาน"
|
|
16
|
+
:ALK:
|
|
17
|
+
:one: "Albanian lek (1946–1965)"
|
|
18
|
+
:other: "Albanian lekë (1946–1965)"
|
|
19
|
+
:ALL:
|
|
20
|
+
:one: "เลกแอลเบเนีย"
|
|
21
|
+
:other: "เลกแอลเบเนีย"
|
|
22
|
+
:AMD:
|
|
23
|
+
:one: "แดรมอาร์เมเนีย"
|
|
24
|
+
:other: "แดรมอาร์เมเนีย"
|
|
25
|
+
:ANG:
|
|
26
|
+
:one: "กิลเดอร์เนเธอร์แลนด์แอนทิลลิส"
|
|
27
|
+
:other: "กิลเดอร์เนเธอร์แลนด์แอนทิลลิส"
|
|
28
|
+
:AOA:
|
|
29
|
+
:one: "กวานซาแองโกลา"
|
|
30
|
+
:other: "กวานซาแองโกลา"
|
|
31
|
+
:AOK:
|
|
32
|
+
:one: "กวานซาแองโกลา (1977–1990)"
|
|
33
|
+
:other: "Angolan kwanzas (1977–1991)"
|
|
34
|
+
:AON:
|
|
35
|
+
:one: "นิวกวานซาแองโกลา (1990–2000)"
|
|
36
|
+
:other: "Angolan new kwanzas (1990–2000)"
|
|
37
|
+
:AOR:
|
|
38
|
+
:one: "กวานซารีจัสทาโดแองโกลา (1995–1999)"
|
|
39
|
+
:other: "Angolan readjusted kwanzas (1995–1999)"
|
|
40
|
+
:ARA:
|
|
41
|
+
:one: "ออสตรัลอาร์เจนตินา"
|
|
42
|
+
:other: "Argentine australs"
|
|
43
|
+
:ARL:
|
|
44
|
+
:one: "เปโซเลย์อาร์เจนตินา (1970–1983)"
|
|
45
|
+
:other: "Argentine pesos ley (1970–1983)"
|
|
46
|
+
:ARM:
|
|
47
|
+
:one: "เปโซอาร์เจนตินา (1881–1970)"
|
|
48
|
+
:other: "Argentine pesos (1881–1970)"
|
|
49
|
+
:ARP:
|
|
50
|
+
:one: "เปโซอาร์เจนตินา (1983–1985)"
|
|
51
|
+
:other: "Argentine pesos (1983–1985)"
|
|
52
|
+
:ARS:
|
|
53
|
+
:one: "เปโซอาร์เจนตินา"
|
|
54
|
+
:other: "เปโซอาร์เจนตินา"
|
|
55
|
+
:symbol: "$"
|
|
56
|
+
:ATS:
|
|
57
|
+
:one: "ชิลลิงออสเตรีย"
|
|
58
|
+
:other: "Austrian schillings"
|
|
59
|
+
:AUD:
|
|
60
|
+
:one: "ดอลลาร์ออสเตรเลีย"
|
|
61
|
+
:other: "ดอลลาร์ออสเตรเลีย"
|
|
62
|
+
:symbol: "AU$"
|
|
63
|
+
:AWG:
|
|
64
|
+
:one: "ฟลอรินอารูบา"
|
|
65
|
+
:other: "ฟลอรินอารูบา"
|
|
66
|
+
:AZM:
|
|
67
|
+
:one: "มานัตอาเซอร์ไบจาน (1993–2006)"
|
|
68
|
+
:other: "Azerbaijani manats (1993–2006)"
|
|
69
|
+
:AZN:
|
|
70
|
+
:one: "มานัตอาเซอร์ไบจาน"
|
|
71
|
+
:other: "มานัตอาเซอร์ไบจาน"
|
|
72
|
+
:BAD:
|
|
73
|
+
:one: "ดีนาร์บอสเนีย-เฮอร์เซโกวีนา"
|
|
74
|
+
:other: "Bosnia-Herzegovina dinars (1992–1994)"
|
|
75
|
+
:BAM:
|
|
76
|
+
:one: "มาร์กบอสเนีย-เฮอร์เซโกวีนา"
|
|
77
|
+
:other: "มาร์กบอสเนีย-เฮอร์เซโกวีนา"
|
|
78
|
+
:BAN:
|
|
79
|
+
:one: "ดีนาร์ใหม่บอสเนีย-เฮอร์เซโกวีนา (1994–1997)"
|
|
80
|
+
:other: "Bosnia-Herzegovina new dinars (1994–1997)"
|
|
81
|
+
:BBD:
|
|
82
|
+
:one: "ดอลลาร์บาร์เบโดส"
|
|
83
|
+
:other: "ดอลลาร์บาร์เบโดส"
|
|
84
|
+
:symbol: "$"
|
|
85
|
+
:BDT:
|
|
86
|
+
:one: "ตากาบังกลาเทศ"
|
|
87
|
+
:other: "ตากาบังกลาเทศ"
|
|
88
|
+
:symbol: "৳"
|
|
89
|
+
:BEC:
|
|
90
|
+
:one: "ฟรังก์เบลเยียม (เปลี่ยนแปลงได้)"
|
|
91
|
+
:other: "Belgian francs (convertible)"
|
|
92
|
+
:BEF:
|
|
93
|
+
:one: "ฟรังก์เบลเยียม"
|
|
94
|
+
:other: "Belgian francs"
|
|
95
|
+
:BEL:
|
|
96
|
+
:one: "ฟรังก์เบลเยียม (การเงิน)"
|
|
97
|
+
:other: "Belgian francs (financial)"
|
|
98
|
+
:BGL:
|
|
99
|
+
:one: "ฮาร์ดเลฟบัลแกเรีย"
|
|
100
|
+
:other: "Bulgarian hard leva"
|
|
101
|
+
:BGM:
|
|
102
|
+
:one: "โซเชียลลิสต์เลฟบัลแกเรีย"
|
|
103
|
+
:other: "Bulgarian socialist leva"
|
|
104
|
+
:BGN:
|
|
105
|
+
:one: "เลฟบัลแกเรีย"
|
|
106
|
+
:other: "เลฟบัลแกเรีย"
|
|
107
|
+
:BGO:
|
|
108
|
+
:one: "เลฟบัลเกเรีย (1879–1952)"
|
|
109
|
+
:other: "Bulgarian leva (1879–1952)"
|
|
110
|
+
:BHD:
|
|
111
|
+
:one: "ดีนาร์บาห์เรน"
|
|
112
|
+
:other: "ดีนาร์บาห์เรน"
|
|
113
|
+
:BIF:
|
|
114
|
+
:one: "ฟรังก์บุรุนดี"
|
|
115
|
+
:other: "ฟรังก์บุรุนดี"
|
|
116
|
+
:BMD:
|
|
117
|
+
:one: "ดอลลาร์เบอร์มิวดา"
|
|
118
|
+
:other: "ดอลลาร์เบอร์มิวดา"
|
|
119
|
+
:symbol: "$"
|
|
120
|
+
:BND:
|
|
121
|
+
:one: "ดอลลาร์บรูไน"
|
|
122
|
+
:other: "ดอลลาร์บรูไน"
|
|
123
|
+
:symbol: "$"
|
|
124
|
+
:BOB:
|
|
125
|
+
:one: "โบลิเวียโนโบลิเวีย"
|
|
126
|
+
:other: "โบลิเวียโนโบลิเวีย"
|
|
127
|
+
:BOL:
|
|
128
|
+
:one: "โบลิเวียโนโบลิเวีย (1863–1963)"
|
|
129
|
+
:other: "Bolivian bolivianos (1863–1963)"
|
|
130
|
+
:BOP:
|
|
131
|
+
:one: "เปโซโบลิเวีย"
|
|
132
|
+
:other: "Bolivian pesos"
|
|
133
|
+
:BOV:
|
|
134
|
+
:one: "มฟดอลโบลิเวีย"
|
|
135
|
+
:other: "Bolivian mvdols"
|
|
136
|
+
:BRB:
|
|
137
|
+
:one: "ครูเซโรโนโวบราซิล (1967–1986)"
|
|
138
|
+
:other: "Brazilian new cruzeiros (1967–1986)"
|
|
139
|
+
:BRC:
|
|
140
|
+
:one: "ครูซาโดบราซิล"
|
|
141
|
+
:other: "Brazilian cruzados (1986–1989)"
|
|
142
|
+
:BRE:
|
|
143
|
+
:one: "ครูเซโรบราซิล (1990–1993)"
|
|
144
|
+
:other: "Brazilian cruzeiros (1990–1993)"
|
|
145
|
+
:BRL:
|
|
146
|
+
:one: "เรียลบราซิล"
|
|
147
|
+
:other: "เรียลบราซิล"
|
|
148
|
+
:symbol: "R$"
|
|
149
|
+
:BRN:
|
|
150
|
+
:one: "ครูซาโดโนโวบราซิล"
|
|
151
|
+
:other: "Brazilian new cruzados (1989–1990)"
|
|
152
|
+
:BRR:
|
|
153
|
+
:one: "ครูเซโรบราซิล"
|
|
154
|
+
:other: "Brazilian cruzeiros (1993–1994)"
|
|
155
|
+
:BRZ:
|
|
156
|
+
:one: "ครูเซโรบราซิล (1942–1967)"
|
|
157
|
+
:other: "Brazilian cruzeiros (1942–1967)"
|
|
158
|
+
:BSD:
|
|
159
|
+
:one: "ดอลลาร์บาฮามาส"
|
|
160
|
+
:other: "ดอลลาร์บาฮามาส"
|
|
161
|
+
:symbol: "$"
|
|
162
|
+
:BTN:
|
|
163
|
+
:one: "เอ็งกุลตรัมภูฏาน"
|
|
164
|
+
:other: "เอ็งกุลตรัมภูฏาน"
|
|
165
|
+
:BUK:
|
|
166
|
+
:one: "จ๊าดพม่า"
|
|
167
|
+
:other: "Burmese kyats"
|
|
168
|
+
:BWP:
|
|
169
|
+
:one: "ปูลาบอตสวานา"
|
|
170
|
+
:other: "ปูลาบอตสวานา"
|
|
171
|
+
:BYB:
|
|
172
|
+
:one: "นิวรูเบิลเบลารุส (1994–1999)"
|
|
173
|
+
:other: "Belarusian new rubles (1994–1999)"
|
|
174
|
+
:BYR:
|
|
175
|
+
:one: "รูเบิลเบลารุส"
|
|
176
|
+
:other: "รูเบิลเบลารุส"
|
|
177
|
+
:symbol: "р."
|
|
178
|
+
:BZD:
|
|
179
|
+
:one: "ดอลลาร์เบลีซ"
|
|
180
|
+
:other: "ดอลลาร์เบลีซ"
|
|
181
|
+
:symbol: "$"
|
|
182
|
+
:CAD:
|
|
183
|
+
:one: "ดอลลาร์แคนาดา"
|
|
184
|
+
:other: "ดอลลาร์แคนาดา"
|
|
185
|
+
:symbol: "CA$"
|
|
186
|
+
:CDF:
|
|
187
|
+
:one: "ฟรังก์คองโก"
|
|
188
|
+
:other: "ฟรังก์คองโก"
|
|
189
|
+
:CHE:
|
|
190
|
+
:one: "ยูโรดับเบิลยูไออาร์"
|
|
191
|
+
:other: "WIR euros"
|
|
192
|
+
:CHF:
|
|
193
|
+
:one: "ฟรังก์สวิส"
|
|
194
|
+
:other: "ฟรังก์สวิส"
|
|
195
|
+
:CHW:
|
|
196
|
+
:one: "ฟรังก์ดับเบิลยูไออาร์"
|
|
197
|
+
:other: "WIR francs"
|
|
198
|
+
:CLE:
|
|
199
|
+
:one: "เอสคูโดชิลี"
|
|
200
|
+
:other: "Chilean escudos"
|
|
201
|
+
:CLF:
|
|
202
|
+
:one: "ฟูเมนโตชิลี"
|
|
203
|
+
:other: "Chilean units of account (UF)"
|
|
204
|
+
:CLP:
|
|
205
|
+
:one: "เปโซชิลี"
|
|
206
|
+
:other: "เปโซชิลี"
|
|
207
|
+
:symbol: "$"
|
|
208
|
+
:CNX:
|
|
209
|
+
:one: "Chinese People’s Bank dollar"
|
|
210
|
+
:other: "Chinese People’s Bank dollars"
|
|
211
|
+
:CNY:
|
|
212
|
+
:one: "หยวนจีน"
|
|
213
|
+
:other: "หยวนจีน"
|
|
214
|
+
:symbol: "CN¥"
|
|
215
|
+
:COP:
|
|
216
|
+
:one: "เปโซโคลอมเบีย"
|
|
217
|
+
:other: "เปโซโคลอมเบีย"
|
|
218
|
+
:symbol: "$"
|
|
219
|
+
:COU:
|
|
220
|
+
:one: "วาเลอร์เรียลโคลอมเบีย"
|
|
221
|
+
:other: "Colombian real value units"
|
|
222
|
+
:CRC:
|
|
223
|
+
:one: "โกลองคอสตาริกา"
|
|
224
|
+
:other: "โกลองคอสตาริกา"
|
|
225
|
+
:symbol: "₡"
|
|
226
|
+
:CSD:
|
|
227
|
+
:one: "ดีนาร์เซอร์เบียเก่า"
|
|
228
|
+
:other: "Serbian dinars (2002–2006)"
|
|
229
|
+
:CSK:
|
|
230
|
+
:one: "ฮาร์ดโครูนาเช็กโกสโลวัก"
|
|
231
|
+
:other: "Czechoslovak hard korunas"
|
|
232
|
+
:CUC:
|
|
233
|
+
:one: "เปโซคิวบา (แปลงสภาพ)"
|
|
234
|
+
:other: "เปโซคิวบา (แปลงสภาพ)"
|
|
235
|
+
:CUP:
|
|
236
|
+
:one: "เปโซคิวบา"
|
|
237
|
+
:other: "เปโซคิวบา"
|
|
238
|
+
:symbol: "$"
|
|
239
|
+
:CVE:
|
|
240
|
+
:one: "เอสคูโดเคปเวิร์ด"
|
|
241
|
+
:other: "เอสคูโดเคปเวิร์ด"
|
|
242
|
+
:CYP:
|
|
243
|
+
:one: "ปอนด์ไซปรัส"
|
|
244
|
+
:other: "Cypriot pounds"
|
|
245
|
+
:CZK:
|
|
246
|
+
:one: "โครูนาสาธารณรัฐเช็ก"
|
|
247
|
+
:other: "โครูนาสาธารณรัฐเช็ก"
|
|
248
|
+
:DDM:
|
|
249
|
+
:one: "มาร์กเยอรมันตะวันออก"
|
|
250
|
+
:other: "East German marks"
|
|
251
|
+
:DEM:
|
|
252
|
+
:one: "มาร์กเยอรมัน"
|
|
253
|
+
:other: "German marks"
|
|
254
|
+
:DJF:
|
|
255
|
+
:one: "ฟรังก์จิบูตี"
|
|
256
|
+
:other: "ฟรังก์จิบูตี"
|
|
257
|
+
:DKK:
|
|
258
|
+
:one: "โครนเดนมาร์ก"
|
|
259
|
+
:other: "โครนเดนมาร์ก"
|
|
260
|
+
:DOP:
|
|
261
|
+
:one: "เปโซโดมินิกัน"
|
|
262
|
+
:other: "เปโซโดมินิกัน"
|
|
263
|
+
:symbol: "$"
|
|
264
|
+
:DZD:
|
|
265
|
+
:one: "ดีนาร์แอลจีเรีย"
|
|
266
|
+
:other: "ดีนาร์แอลจีเรีย"
|
|
267
|
+
:ECS:
|
|
268
|
+
:one: "ซูเกรเอกวาดอร์"
|
|
269
|
+
:other: "Ecuadorian sucres"
|
|
270
|
+
:ECV:
|
|
271
|
+
:one: "วาเลอร์คอนสแตนต์เอกวาดอร์"
|
|
272
|
+
:other: "Ecuadorian units of constant value"
|
|
273
|
+
:EEK:
|
|
274
|
+
:one: "ครูนเอสโตเนีย"
|
|
275
|
+
:other: "Estonian kroons"
|
|
276
|
+
:EGP:
|
|
277
|
+
:one: "ปอนด์อียิปต์"
|
|
278
|
+
:other: "ปอนด์อียิปต์"
|
|
279
|
+
:ERN:
|
|
280
|
+
:one: "แนกฟาเอริเทรีย"
|
|
281
|
+
:other: "แนกฟาเอริเทรีย"
|
|
282
|
+
:ESA:
|
|
283
|
+
:one: "เปเซตาสเปน (บัญชีเอ)"
|
|
284
|
+
:other: "Spanish pesetas (A account)"
|
|
285
|
+
:ESB:
|
|
286
|
+
:one: "เปเซตาสเปน (บัญชีที่เปลี่ยนแปลงได้)"
|
|
287
|
+
:other: "Spanish pesetas (convertible account)"
|
|
288
|
+
:ESP:
|
|
289
|
+
:one: "เปเซตาสเปน"
|
|
290
|
+
:other: "Spanish pesetas"
|
|
291
|
+
:symbol: "₧"
|
|
292
|
+
:ETB:
|
|
293
|
+
:one: "เบอรร์เอธิโอเปีย"
|
|
294
|
+
:other: "เบอรร์เอธิโอเปีย"
|
|
295
|
+
:EUR:
|
|
296
|
+
:one: "ยูโร"
|
|
297
|
+
:other: "ยูโร"
|
|
298
|
+
:symbol: "€"
|
|
299
|
+
:FIM:
|
|
300
|
+
:one: "มาร์กกาฟินแลนด์"
|
|
301
|
+
:other: "Finnish markkas"
|
|
302
|
+
:FJD:
|
|
303
|
+
:one: "ดอลลาร์ฟิจิ"
|
|
304
|
+
:other: "ดอลลาร์ฟิจิ"
|
|
305
|
+
:symbol: "$"
|
|
306
|
+
:FKP:
|
|
307
|
+
:one: "ปอนด์หมู่เกาะฟอล์กแลนด์"
|
|
308
|
+
:other: "ปอนด์หมู่เกาะฟอล์กแลนด์"
|
|
309
|
+
:FRF:
|
|
310
|
+
:one: "ฟรังก์ฝรั่งเศส"
|
|
311
|
+
:other: "French francs"
|
|
312
|
+
:GBP:
|
|
313
|
+
:one: "ปอนด์สเตอร์ลิง (สหราชอาณาจักร)"
|
|
314
|
+
:other: "ปอนด์สเตอร์ลิง (สหราชอาณาจักร)"
|
|
315
|
+
:symbol: "£"
|
|
316
|
+
:GEK:
|
|
317
|
+
:one: "คูปอนลาริตจอร์เจีย"
|
|
318
|
+
:other: "Georgian kupon larits"
|
|
319
|
+
:GEL:
|
|
320
|
+
:one: "ลารีจอร์เจีย"
|
|
321
|
+
:other: "ลารีจอร์เจีย"
|
|
322
|
+
:GHC:
|
|
323
|
+
:one: "เซดีกานา (1979–2007)"
|
|
324
|
+
:other: "Ghanaian cedis (1979–2007)"
|
|
325
|
+
:GHS:
|
|
326
|
+
:one: "เซดีกานา"
|
|
327
|
+
:other: "เซดีกานา"
|
|
328
|
+
:symbol: "₵"
|
|
329
|
+
:GIP:
|
|
330
|
+
:one: "ปอนด์ยิบรอลตาร์"
|
|
331
|
+
:other: "ปอนด์ยิบรอลตาร์"
|
|
332
|
+
:symbol: "£"
|
|
333
|
+
:GMD:
|
|
334
|
+
:one: "ดาลาซีแกมเบีย"
|
|
335
|
+
:other: "ดาลาซีแกมเบีย"
|
|
336
|
+
:GNF:
|
|
337
|
+
:one: "ฟรังก์กินี"
|
|
338
|
+
:other: "ฟรังก์กินี"
|
|
339
|
+
:GNS:
|
|
340
|
+
:one: "ไซลีกินี"
|
|
341
|
+
:other: "Guinean sylis"
|
|
342
|
+
:GQE:
|
|
343
|
+
:one: "เอ็กเวเลอิเควทอเรียลกินี"
|
|
344
|
+
:other: "Equatorial Guinean ekwele"
|
|
345
|
+
:GRD:
|
|
346
|
+
:one: "ดรัชมากรีก"
|
|
347
|
+
:other: "Greek drachmas"
|
|
348
|
+
:GTQ:
|
|
349
|
+
:one: "เควตซัลกัวเตมาลา"
|
|
350
|
+
:other: "เควตซัลกัวเตมาลา"
|
|
351
|
+
:GWE:
|
|
352
|
+
:one: "เอสคูโดกินีโปรตุเกส"
|
|
353
|
+
:other: "Portuguese Guinea escudos"
|
|
354
|
+
:GWP:
|
|
355
|
+
:one: "เปโซกินี-บิสเซา"
|
|
356
|
+
:other: "Guinea-Bissau pesos"
|
|
357
|
+
:GYD:
|
|
358
|
+
:one: "ดอลลาร์กายอานา"
|
|
359
|
+
:other: "ดอลลาร์กายอานา"
|
|
360
|
+
:symbol: "$"
|
|
361
|
+
:HKD:
|
|
362
|
+
:one: "ดอลลาร์ฮ่องกง"
|
|
363
|
+
:other: "ดอลลาร์ฮ่องกง"
|
|
364
|
+
:symbol: "HK$"
|
|
365
|
+
:HNL:
|
|
366
|
+
:one: "เลมปิราฮอนดูรัส"
|
|
367
|
+
:other: "เลมปิราฮอนดูรัส"
|
|
368
|
+
:HRD:
|
|
369
|
+
:one: "ดีนาร์โครเอเชีย"
|
|
370
|
+
:other: "Croatian dinars"
|
|
371
|
+
:HRK:
|
|
372
|
+
:one: "คูนาโครเอเชีย"
|
|
373
|
+
:other: "คูนาโครเอเชีย"
|
|
374
|
+
:HTG:
|
|
375
|
+
:one: "กูร์ดเฮติ"
|
|
376
|
+
:other: "กูร์ดเฮติ"
|
|
377
|
+
:HUF:
|
|
378
|
+
:one: "ฟอรินต์ฮังการี"
|
|
379
|
+
:other: "ฟอรินต์ฮังการี"
|
|
380
|
+
:IDR:
|
|
381
|
+
:one: "รูเปียห์อินโดนีเซีย"
|
|
382
|
+
:other: "รูเปียห์อินโดนีเซีย"
|
|
383
|
+
:IEP:
|
|
384
|
+
:one: "ปอนด์ไอริช"
|
|
385
|
+
:other: "Irish pounds"
|
|
386
|
+
:ILP:
|
|
387
|
+
:one: "ปอนด์อิสราเอล"
|
|
388
|
+
:other: "Israeli pounds"
|
|
389
|
+
:ILR:
|
|
390
|
+
:one: "Israeli sheqel (1980–1985)"
|
|
391
|
+
:other: "Israeli sheqels (1980–1985)"
|
|
392
|
+
:ILS:
|
|
393
|
+
:one: "นิวเชเกลอิสราเอล"
|
|
394
|
+
:other: "นิวเชเกลอิสราเอล"
|
|
395
|
+
:symbol: "₪"
|
|
396
|
+
:INR:
|
|
397
|
+
:one: "รูปีอินเดีย"
|
|
398
|
+
:other: "รูปีอินเดีย"
|
|
399
|
+
:symbol: "₹"
|
|
400
|
+
:IQD:
|
|
401
|
+
:one: "ดีนาร์อิรัก"
|
|
402
|
+
:other: "ดีนาร์อิรัก"
|
|
403
|
+
:IRR:
|
|
404
|
+
:one: "เรียลอิหร่าน"
|
|
405
|
+
:other: "เรียลอิหร่าน"
|
|
406
|
+
:ISJ:
|
|
407
|
+
:one: "Icelandic króna (1918–1981)"
|
|
408
|
+
:other: "Icelandic krónur (1918–1981)"
|
|
409
|
+
:ISK:
|
|
410
|
+
:one: "โครนาไอซ์แลนด์"
|
|
411
|
+
:other: "โครนาไอซ์แลนด์"
|
|
412
|
+
:ITL:
|
|
413
|
+
:one: "ลีราอิตาลี"
|
|
414
|
+
:other: "Italian liras"
|
|
415
|
+
:JMD:
|
|
416
|
+
:one: "ดอลลาร์จาเมกา"
|
|
417
|
+
:other: "ดอลลาร์จาเมกา"
|
|
418
|
+
:symbol: "$"
|
|
419
|
+
:JOD:
|
|
420
|
+
:one: "ดีนาร์จอร์แดน"
|
|
421
|
+
:other: "ดีนาร์จอร์แดน"
|
|
422
|
+
:JPY:
|
|
423
|
+
:one: "เยนญี่ปุ่น"
|
|
424
|
+
:other: "เยนญี่ปุ่น"
|
|
425
|
+
:symbol: "¥"
|
|
426
|
+
:KES:
|
|
427
|
+
:one: "ชิลลิ่งเคนยา"
|
|
428
|
+
:other: "ชิลลิ่งเคนยา"
|
|
429
|
+
:KGS:
|
|
430
|
+
:one: "ซอมคีร์กีซสถาน"
|
|
431
|
+
:other: "ซอมคีร์กีซสถาน"
|
|
432
|
+
:KHR:
|
|
433
|
+
:one: "เรียลกัมพูชา"
|
|
434
|
+
:other: "เรียลกัมพูชา"
|
|
435
|
+
:symbol: "៛"
|
|
436
|
+
:KMF:
|
|
437
|
+
:one: "ฟรังก์คอโมโรส"
|
|
438
|
+
:other: "ฟรังก์คอโมโรส"
|
|
439
|
+
:KPW:
|
|
440
|
+
:one: "วอนเกาหลีเหนือ"
|
|
441
|
+
:other: "วอนเกาหลีเหนือ"
|
|
442
|
+
:KRH:
|
|
443
|
+
:one: "ฮวานเกาหลีใต้ (1953–1962)"
|
|
444
|
+
:other: "South Korean hwan (1953–1962)"
|
|
445
|
+
:KRO:
|
|
446
|
+
:one: "วอนเกาหลีใต้ (1945–1953)"
|
|
447
|
+
:other: "South Korean won (1945–1953)"
|
|
448
|
+
:KRW:
|
|
449
|
+
:one: "วอนเกาหลีใต้"
|
|
450
|
+
:other: "วอนเกาหลีใต้"
|
|
451
|
+
:symbol: "₩"
|
|
452
|
+
:KWD:
|
|
453
|
+
:one: "ดีนาร์คูเวต"
|
|
454
|
+
:other: "ดีนาร์คูเวต"
|
|
455
|
+
:KYD:
|
|
456
|
+
:one: "ดอลลาร์หมู่เกาะเคย์แมน"
|
|
457
|
+
:other: "ดอลลาร์หมู่เกาะเคย์แมน"
|
|
458
|
+
:symbol: "$"
|
|
459
|
+
:KZT:
|
|
460
|
+
:one: "เทงเจคาซัคสถาน"
|
|
461
|
+
:other: "เทงเจคาซัคสถาน"
|
|
462
|
+
:symbol: "₸"
|
|
463
|
+
:LAK:
|
|
464
|
+
:one: "กีบลาว"
|
|
465
|
+
:other: "กีบลาว"
|
|
466
|
+
:symbol: "₭"
|
|
467
|
+
:LBP:
|
|
468
|
+
:one: "ปอนด์เลบานอน"
|
|
469
|
+
:other: "ปอนด์เลบานอน"
|
|
470
|
+
:LKR:
|
|
471
|
+
:one: "รูปีศรีลังกา"
|
|
472
|
+
:other: "รูปีศรีลังกา"
|
|
473
|
+
:LRD:
|
|
474
|
+
:one: "ดอลลาร์ไลบีเรีย"
|
|
475
|
+
:other: "ดอลลาร์ไลบีเรีย"
|
|
476
|
+
:symbol: "$"
|
|
477
|
+
:LSL:
|
|
478
|
+
:one: "โลตีเลโซโท"
|
|
479
|
+
:other: "Lesotho lotis"
|
|
480
|
+
:LTL:
|
|
481
|
+
:one: "ลีตัสลิทัวเนีย"
|
|
482
|
+
:other: "ลีตัสลิทัวเนีย"
|
|
483
|
+
:LTT:
|
|
484
|
+
:one: "ทาโลนัสลิทัวเนีย"
|
|
485
|
+
:other: "Lithuanian talonases"
|
|
486
|
+
:LUC:
|
|
487
|
+
:one: "คอนเวอร์ทิเบิลฟรังก์ลักเซมเบิร์ก"
|
|
488
|
+
:other: "Luxembourgian convertible francs"
|
|
489
|
+
:LUF:
|
|
490
|
+
:one: "ฟรังก์ลักเซมเบิร์ก"
|
|
491
|
+
:other: "Luxembourgian francs"
|
|
492
|
+
:LUL:
|
|
493
|
+
:one: "ไฟแนลเชียลฟรังก์ลักเซมเบิร์ก"
|
|
494
|
+
:other: "Luxembourg financial francs"
|
|
495
|
+
:LVL:
|
|
496
|
+
:one: "ลัตส์ลัตเวีย"
|
|
497
|
+
:other: "ลัตส์ลัตเวีย"
|
|
498
|
+
:LVR:
|
|
499
|
+
:one: "รูเบิลลัตเวีย"
|
|
500
|
+
:other: "Latvian rubles"
|
|
501
|
+
:LYD:
|
|
502
|
+
:one: "ดีนาร์ลิเบีย"
|
|
503
|
+
:other: "ดีนาร์ลิเบีย"
|
|
504
|
+
:MAD:
|
|
505
|
+
:one: "ดีแรห์มโมร็อกโก"
|
|
506
|
+
:other: "ดีแรห์มโมร็อกโก"
|
|
507
|
+
:MAF:
|
|
508
|
+
:one: "ฟรังก์โมร็อกโก"
|
|
509
|
+
:other: "Moroccan francs"
|
|
510
|
+
:MCF:
|
|
511
|
+
:one: "ฟรังก์โมนาโก"
|
|
512
|
+
:other: "Monegasque francs"
|
|
513
|
+
:MDC:
|
|
514
|
+
:one: "บัตรปันส่วนมอลโดวา"
|
|
515
|
+
:other: "Moldovan cupon"
|
|
516
|
+
:MDL:
|
|
517
|
+
:one: "ลิวมอลโดวา"
|
|
518
|
+
:other: "ลิวมอลโดวา"
|
|
519
|
+
:MGA:
|
|
520
|
+
:one: "อาเรียรีมาลากาซี"
|
|
521
|
+
:other: "อาเรียรีมาลากาซี"
|
|
522
|
+
:MGF:
|
|
523
|
+
:one: "ฟรังก์มาดากัสการ์"
|
|
524
|
+
:other: "Malagasy francs"
|
|
525
|
+
:MKD:
|
|
526
|
+
:one: "ดีนาร์มาซิโดเนีย"
|
|
527
|
+
:other: "ดีนาร์มาซิโดเนีย"
|
|
528
|
+
:MKN:
|
|
529
|
+
:one: "ดีนาร์มาซิโดเนีย (1992–1993)"
|
|
530
|
+
:other: "Macedonian denari (1992–1993)"
|
|
531
|
+
:MLF:
|
|
532
|
+
:one: "ฟรังก์มาลี"
|
|
533
|
+
:other: "Malian francs"
|
|
534
|
+
:MMK:
|
|
535
|
+
:one: "จ๊าตพม่า"
|
|
536
|
+
:other: "จ๊าตพม่า"
|
|
537
|
+
:MNT:
|
|
538
|
+
:one: "ทูกริกมองโกเลีย"
|
|
539
|
+
:other: "ทูกริกมองโกเลีย"
|
|
540
|
+
:symbol: "₮"
|
|
541
|
+
:MOP:
|
|
542
|
+
:one: "ปาตากามาเก๊า"
|
|
543
|
+
:other: "ปาตากามาเก๊า"
|
|
544
|
+
:MRO:
|
|
545
|
+
:one: "อูกียามอริเตเนีย"
|
|
546
|
+
:other: "อูกียามอริเตเนีย"
|
|
547
|
+
:MTL:
|
|
548
|
+
:one: "ลีรามอลตา"
|
|
549
|
+
:other: "Maltese lira"
|
|
550
|
+
:MTP:
|
|
551
|
+
:one: "ปอนด์มอลตา"
|
|
552
|
+
:other: "Maltese pounds"
|
|
553
|
+
:MUR:
|
|
554
|
+
:one: "รูปีมอริเชียส"
|
|
555
|
+
:other: "รูปีมอริเชียส"
|
|
556
|
+
:MVP:
|
|
557
|
+
:one: "Maldivian rupee"
|
|
558
|
+
:other: "Maldivian rupees"
|
|
559
|
+
:MVR:
|
|
560
|
+
:one: "รูฟิยามัลดีฟส์"
|
|
561
|
+
:other: "รูฟิยามัลดีฟส์"
|
|
562
|
+
:MWK:
|
|
563
|
+
:one: "ควาชามาลาวี"
|
|
564
|
+
:other: "ควาชามาลาวี"
|
|
565
|
+
:MXN:
|
|
566
|
+
:one: "เปโซเม็กซิโก"
|
|
567
|
+
:other: "เปโซเม็กซิโก"
|
|
568
|
+
:symbol: "MX$"
|
|
569
|
+
:MXP:
|
|
570
|
+
:one: "เงินเปโซเม็กซิโก (1861–1992)"
|
|
571
|
+
:other: "Mexican silver pesos (1861–1992)"
|
|
572
|
+
:MXV:
|
|
573
|
+
:one: "ยูนิแดด ดี อินเวอร์ชั่น เม็กซิโก"
|
|
574
|
+
:other: "Mexican investment units"
|
|
575
|
+
:MYR:
|
|
576
|
+
:one: "ริงกิตมาเลเซีย"
|
|
577
|
+
:other: "ริงกิตมาเลเซีย"
|
|
578
|
+
:MZE:
|
|
579
|
+
:one: "เอสคูโดโมซัมบิก"
|
|
580
|
+
:other: "Mozambican escudos"
|
|
581
|
+
:MZM:
|
|
582
|
+
:one: "เมติคัลโมซัมบิกเก่า"
|
|
583
|
+
:other: "Mozambican meticals (1980–2006)"
|
|
584
|
+
:MZN:
|
|
585
|
+
:one: "เมติคัลโมซัมบิก"
|
|
586
|
+
:other: "เมติคัลโมซัมบิก"
|
|
587
|
+
:NAD:
|
|
588
|
+
:one: "ดอลลาร์นามิเบีย"
|
|
589
|
+
:other: "ดอลลาร์นามิเบีย"
|
|
590
|
+
:symbol: "$"
|
|
591
|
+
:NGN:
|
|
592
|
+
:one: "ไนราไนจีเรีย"
|
|
593
|
+
:other: "ไนราไนจีเรีย"
|
|
594
|
+
:symbol: "₦"
|
|
595
|
+
:NIC:
|
|
596
|
+
:one: "คอร์โดบานิการากัว"
|
|
597
|
+
:other: "Nicaraguan córdobas (1988–1991)"
|
|
598
|
+
:NIO:
|
|
599
|
+
:one: "กอร์โดบานิการากัว"
|
|
600
|
+
:other: "กอร์โดบานิการากัว"
|
|
601
|
+
:NLG:
|
|
602
|
+
:one: "กิลเดอร์เนเธอร์แลนด์"
|
|
603
|
+
:other: "Dutch guilders"
|
|
604
|
+
:NOK:
|
|
605
|
+
:one: "โครนนอร์เวย์"
|
|
606
|
+
:other: "โครนนอร์เวย์"
|
|
607
|
+
:NPR:
|
|
608
|
+
:one: "รูปีเนปาล"
|
|
609
|
+
:other: "รูปีเนปาล"
|
|
610
|
+
:NZD:
|
|
611
|
+
:one: "ดอลลาร์นิวซีแลนด์"
|
|
612
|
+
:other: "ดอลลาร์นิวซีแลนด์"
|
|
613
|
+
:symbol: "NZ$"
|
|
614
|
+
:OMR:
|
|
615
|
+
:one: "เรียลโอมาน"
|
|
616
|
+
:other: "เรียลโอมาน"
|
|
617
|
+
:PAB:
|
|
618
|
+
:one: "บัลบัวปานามา"
|
|
619
|
+
:other: "บัลบัวปานามา"
|
|
620
|
+
:PEI:
|
|
621
|
+
:one: "อินตีเปรู"
|
|
622
|
+
:other: "Peruvian intis"
|
|
623
|
+
:PEN:
|
|
624
|
+
:one: "นูโวซอลเปรู"
|
|
625
|
+
:other: "นูโวซอลเปรู"
|
|
626
|
+
:PES:
|
|
627
|
+
:one: "ซอลเปรู"
|
|
628
|
+
:other: "Peruvian soles (1863–1965)"
|
|
629
|
+
:PGK:
|
|
630
|
+
:one: "กีนาปาปัวนิวกินี"
|
|
631
|
+
:other: "กีนาปาปัวนิวกินี"
|
|
632
|
+
:PHP:
|
|
633
|
+
:one: "เปโซฟิลิปปินส์"
|
|
634
|
+
:other: "เปโซฟิลิปปินส์"
|
|
635
|
+
:symbol: "₱"
|
|
636
|
+
:PKR:
|
|
637
|
+
:one: "รูปีปากีสถาน"
|
|
638
|
+
:other: "รูปีปากีสถาน"
|
|
639
|
+
:PLN:
|
|
640
|
+
:one: "ซลอตีโปแลนด์"
|
|
641
|
+
:other: "ซลอตีโปแลนด์"
|
|
642
|
+
:PLZ:
|
|
643
|
+
:one: "ซลอตีโปแลนด์ (1950–1995)"
|
|
644
|
+
:other: "Polish zlotys (PLZ)"
|
|
645
|
+
:PTE:
|
|
646
|
+
:one: "เอสคูโดโปรตุเกส"
|
|
647
|
+
:other: "Portuguese escudos"
|
|
648
|
+
:PYG:
|
|
649
|
+
:one: "กวารานีปารากวัย"
|
|
650
|
+
:other: "กวารานีปารากวัย"
|
|
651
|
+
:symbol: "₲"
|
|
652
|
+
:QAR:
|
|
653
|
+
:one: "เรียลกาตาร์"
|
|
654
|
+
:other: "เรียลกาตาร์"
|
|
655
|
+
:RHD:
|
|
656
|
+
:one: "ดอลลาร์โรดีเซีย"
|
|
657
|
+
:other: "Rhodesian dollars"
|
|
658
|
+
:ROL:
|
|
659
|
+
:one: "ลิวโรมาเนียเก่า"
|
|
660
|
+
:other: "Romanian Lei (1952–2006)"
|
|
661
|
+
:RON:
|
|
662
|
+
:one: "ลิวโรมาเนีย"
|
|
663
|
+
:other: "ลิวโรมาเนีย"
|
|
664
|
+
:RSD:
|
|
665
|
+
:one: "ดีนาร์เซอร์เบีย"
|
|
666
|
+
:other: "ดีนาร์เซอร์เบีย"
|
|
667
|
+
:RUB:
|
|
668
|
+
:one: "รูเบิลรัสเซีย"
|
|
669
|
+
:other: "รูเบิลรัสเซีย"
|
|
670
|
+
:RUR:
|
|
671
|
+
:one: "รูเบิลรัสเซีย (1991–1998)"
|
|
672
|
+
:other: "Russian rubles (1991–1998)"
|
|
673
|
+
:symbol: "р."
|
|
674
|
+
:RWF:
|
|
675
|
+
:one: "ฟรังก์รวันดา"
|
|
676
|
+
:other: "ฟรังก์รวันดา"
|
|
677
|
+
:SAR:
|
|
678
|
+
:one: "ริยัลซาอุดีอาระเบีย"
|
|
679
|
+
:other: "ริยัลซาอุดีอาระเบีย"
|
|
680
|
+
:SBD:
|
|
681
|
+
:one: "ดอลลาร์หมู่เกาะโซโลมอน"
|
|
682
|
+
:other: "ดอลลาร์หมู่เกาะโซโลมอน"
|
|
683
|
+
:symbol: "$"
|
|
684
|
+
:SCR:
|
|
685
|
+
:one: "รูปีเซเชลส์"
|
|
686
|
+
:other: "รูปีเซเชลส์"
|
|
687
|
+
:SDD:
|
|
688
|
+
:one: "ดีนาร์ซูดานเก่า"
|
|
689
|
+
:other: "Sudanese dinars (1992–2007)"
|
|
690
|
+
:SDG:
|
|
691
|
+
:one: "ปอนด์ซูดาน"
|
|
692
|
+
:other: "ปอนด์ซูดาน"
|
|
693
|
+
:SDP:
|
|
694
|
+
:one: "ปอนด์ซูดานเก่า"
|
|
695
|
+
:other: "Sudanese pounds (1957–1998)"
|
|
696
|
+
:SEK:
|
|
697
|
+
:one: "โครนาสวีเดน"
|
|
698
|
+
:other: "โครนาสวีเดน"
|
|
699
|
+
:SGD:
|
|
700
|
+
:one: "ดอลลาร์สิงคโปร์"
|
|
701
|
+
:other: "ดอลลาร์สิงคโปร์"
|
|
702
|
+
:symbol: "$"
|
|
703
|
+
:SHP:
|
|
704
|
+
:one: "ปอนด์เซนต์เฮเลนา"
|
|
705
|
+
:other: "ปอนด์เซนต์เฮเลนา"
|
|
706
|
+
:SIT:
|
|
707
|
+
:one: "ทอลาร์สโลวีเนีย"
|
|
708
|
+
:other: "Slovenian tolars"
|
|
709
|
+
:SKK:
|
|
710
|
+
:one: "โครูนาสโลวัก"
|
|
711
|
+
:other: "Slovak korunas"
|
|
712
|
+
:SLL:
|
|
713
|
+
:one: "ลีโอนเซียร์ราลีโอน"
|
|
714
|
+
:other: "ลีโอนเซียร์ราลีโอน"
|
|
715
|
+
:SOS:
|
|
716
|
+
:one: "ชิลลิงโซมาเลีย"
|
|
717
|
+
:other: "ชิลลิงโซมาเลีย"
|
|
718
|
+
:SRD:
|
|
719
|
+
:one: "ดอลลาร์ซูรินาเม"
|
|
720
|
+
:other: "ดอลลาร์ซูรินาเม"
|
|
721
|
+
:symbol: "$"
|
|
722
|
+
:SRG:
|
|
723
|
+
:one: "กิลเดอร์ซูรินาเม"
|
|
724
|
+
:other: "Surinamese guilders"
|
|
725
|
+
:SSP:
|
|
726
|
+
:one: "ปอนด์ซูดานใต้"
|
|
727
|
+
:other: "ปอนด์ซูดานใต้"
|
|
728
|
+
:symbol: "£"
|
|
729
|
+
:STD:
|
|
730
|
+
:one: "ดอบราเซาตูเมและปรินซิปี"
|
|
731
|
+
:other: "ดอบราเซาตูเมและปรินซิปี"
|
|
732
|
+
:SUR:
|
|
733
|
+
:one: "รูเบิลโซเวียต"
|
|
734
|
+
:other: "Soviet roubles"
|
|
735
|
+
:SVC:
|
|
736
|
+
:one: "โคลอนเอลซัลวาดอร์"
|
|
737
|
+
:other: "Salvadoran colones"
|
|
738
|
+
:SYP:
|
|
739
|
+
:one: "ปอนด์ซีเรีย"
|
|
740
|
+
:other: "ปอนด์ซีเรีย"
|
|
741
|
+
:SZL:
|
|
742
|
+
:one: "ลิลันเจนีสวาซิ"
|
|
743
|
+
:other: "ลิลันเจนีสวาซิ"
|
|
744
|
+
:THB:
|
|
745
|
+
:one: "บาทไทย"
|
|
746
|
+
:other: "บาทไทย"
|
|
747
|
+
:symbol: "฿"
|
|
748
|
+
:TJR:
|
|
749
|
+
:one: "รูเบิลทาจิกิสถาน"
|
|
750
|
+
:other: "Tajikistani rubles"
|
|
751
|
+
:TJS:
|
|
752
|
+
:one: "โซโมนิทาจิกิสถาน"
|
|
753
|
+
:other: "โซโมนิทาจิกิสถาน"
|
|
754
|
+
:TMM:
|
|
755
|
+
:one: "มานัตเติร์กเมนิสถาน (1993–2009)"
|
|
756
|
+
:other: "Turkmenistani manat (1993–2009)"
|
|
757
|
+
:TMT:
|
|
758
|
+
:one: "มานัตเติร์กเมนิสถาน"
|
|
759
|
+
:other: "มานัตเติร์กเมนิสถาน"
|
|
760
|
+
:TND:
|
|
761
|
+
:one: "ดีนาร์ตูนิเซีย"
|
|
762
|
+
:other: "ดีนาร์ตูนิเซีย"
|
|
763
|
+
:TOP:
|
|
764
|
+
:one: "พาแองกาตองกา"
|
|
765
|
+
:other: "พาแองกาตองกา"
|
|
766
|
+
:TPE:
|
|
767
|
+
:one: "เอสคูโดติมอร์"
|
|
768
|
+
:other: "Timorese escudos"
|
|
769
|
+
:TRL:
|
|
770
|
+
:one: "ลีราตุรกีเก่า"
|
|
771
|
+
:other: "Turkish Lira (1922–2005)"
|
|
772
|
+
:TRY:
|
|
773
|
+
:one: "ลีราตุรกี"
|
|
774
|
+
:other: "ลีราตุรกี"
|
|
775
|
+
:symbol: "₺"
|
|
776
|
+
:TTD:
|
|
777
|
+
:one: "ดอลลาร์ตรินิแดดและโตเบโก"
|
|
778
|
+
:other: "ดอลลาร์ตรินิแดดและโตเบโก"
|
|
779
|
+
:symbol: "$"
|
|
780
|
+
:TWD:
|
|
781
|
+
:one: "ดอลลาร์ไต้หวันใหม่"
|
|
782
|
+
:other: "ดอลลาร์ไต้หวันใหม่"
|
|
783
|
+
:symbol: "NT$"
|
|
784
|
+
:TZS:
|
|
785
|
+
:one: "ชิลลิงแทนซาเนีย"
|
|
786
|
+
:other: "ชิลลิงแทนซาเนีย"
|
|
787
|
+
:UAH:
|
|
788
|
+
:one: "ฮรีฟเนียยูเครน"
|
|
789
|
+
:other: "ฮรีฟเนียยูเครน"
|
|
790
|
+
:symbol: "₴"
|
|
791
|
+
:UAK:
|
|
792
|
+
:one: "คาร์โบวาเนตซ์ยูเครน"
|
|
793
|
+
:other: "Ukrainian karbovantsiv"
|
|
794
|
+
:UGS:
|
|
795
|
+
:one: "ชิลลิงยูกันดา (1966–1987)"
|
|
796
|
+
:other: "Ugandan shillings (1966–1987)"
|
|
797
|
+
:UGX:
|
|
798
|
+
:one: "ชิลลิงยูกันดา"
|
|
799
|
+
:other: "ชิลลิงยูกันดา"
|
|
800
|
+
:USD:
|
|
801
|
+
:one: "ดอลลาร์สหรัฐ"
|
|
802
|
+
:other: "ดอลลาร์สหรัฐ"
|
|
803
|
+
:symbol: "US$"
|
|
804
|
+
:USN:
|
|
805
|
+
:one: "ดอลลาร์สหรัฐ (วันถัดไป)"
|
|
806
|
+
:other: "ดอลลาร์สหรัฐ (วันถัดไป)"
|
|
807
|
+
:USS:
|
|
808
|
+
:one: "ดอลลาร์สหรัฐ (วันเดียวกัน)"
|
|
809
|
+
:other: "ดอลลาร์สหรัฐ (วันเดียวกัน)"
|
|
810
|
+
:UYI:
|
|
811
|
+
:one: "เปโซเอนยูนิแดดเซสอินเด็กซาแดสอุรุกวัย"
|
|
812
|
+
:other: "Uruguayan pesos (indexed units)"
|
|
813
|
+
:UYP:
|
|
814
|
+
:one: "เปโซอุรุกวัย (1975–1993)"
|
|
815
|
+
:other: "Uruguayan pesos (1975–1993)"
|
|
816
|
+
:UYU:
|
|
817
|
+
:one: "เปโซอุรุกวัย"
|
|
818
|
+
:other: "เปโซอุรุกวัย"
|
|
819
|
+
:symbol: "$"
|
|
820
|
+
:UZS:
|
|
821
|
+
:one: "ซอมอุซเบกิสถาน"
|
|
822
|
+
:other: "ซอมอุซเบกิสถาน"
|
|
823
|
+
:VEB:
|
|
824
|
+
:one: "โบลิวาร์เวเนซุเอลา (1871–2008)"
|
|
825
|
+
:other: "Venezuelan bolívars (1871–2008)"
|
|
826
|
+
:VEF:
|
|
827
|
+
:one: "โบลิวาร์เวเนซุเอลา"
|
|
828
|
+
:other: "โบลิวาร์เวเนซุเอลา"
|
|
829
|
+
:VND:
|
|
830
|
+
:one: "ดองเวียดนาม"
|
|
831
|
+
:other: "ดองเวียดนาม"
|
|
832
|
+
:symbol: "₫"
|
|
833
|
+
:VNN:
|
|
834
|
+
:one: "ดองเวียดนาม (1978–1985)"
|
|
835
|
+
:other: "Vietnamese dong (1978–1985)"
|
|
836
|
+
:VUV:
|
|
837
|
+
:one: "วาตูวานูอาตู"
|
|
838
|
+
:other: "วาตูวานูอาตู"
|
|
839
|
+
:WST:
|
|
840
|
+
:one: "ทาลาซามัว"
|
|
841
|
+
:other: "ทาลาซามัว"
|
|
842
|
+
:XAF:
|
|
843
|
+
:one: "ฟรังก์เซฟาธนาคารรัฐแอฟริกากลาง"
|
|
844
|
+
:other: "ฟรังก์เซฟาธนาคารรัฐแอฟริกากลาง"
|
|
845
|
+
:symbol: "FCFA"
|
|
846
|
+
:XAG:
|
|
847
|
+
:one: "เงิน"
|
|
848
|
+
:other: "troy ounces of silver"
|
|
849
|
+
:XAU:
|
|
850
|
+
:one: "ทอง"
|
|
851
|
+
:other: "troy ounces of gold"
|
|
852
|
+
:XBA:
|
|
853
|
+
:one: "หน่วยคอมโพสิตยุโรป"
|
|
854
|
+
:other: "European composite units"
|
|
855
|
+
:XBB:
|
|
856
|
+
:one: "หน่วยโมเนทารียุโรป"
|
|
857
|
+
:other: "European monetary units"
|
|
858
|
+
:XBC:
|
|
859
|
+
:one: "หน่วยบัญชียุโรป [XBC]"
|
|
860
|
+
:other: "European units of account (XBC)"
|
|
861
|
+
:XBD:
|
|
862
|
+
:one: "หน่วยบัญชียุโรป [XBD]"
|
|
863
|
+
:other: "European units of account (XBD)"
|
|
864
|
+
:XCD:
|
|
865
|
+
:one: "ดอลลาร์แคริบเบียนตะวันออก"
|
|
866
|
+
:other: "ดอลลาร์แคริบเบียนตะวันออก"
|
|
867
|
+
:symbol: "EC$"
|
|
868
|
+
:XDR:
|
|
869
|
+
:one: "สิทธิถอนเงินพิเศษ"
|
|
870
|
+
:other: "special drawing rights"
|
|
871
|
+
:XEU:
|
|
872
|
+
:one: "หน่วยสกุลเงินยุโรป"
|
|
873
|
+
:other: "European currency units"
|
|
874
|
+
:XFO:
|
|
875
|
+
:one: "ฟรังก์ทองฝรั่งเศส"
|
|
876
|
+
:other: "French gold francs"
|
|
877
|
+
:XFU:
|
|
878
|
+
:one: "ฟรังก์ยูไอซีฝรั่งเศส"
|
|
879
|
+
:other: "French UIC-francs"
|
|
880
|
+
:XOF:
|
|
881
|
+
:one: "ฟรังก์เซฟาธนาคารกลางรัฐแอฟริกาตะวันตก"
|
|
882
|
+
:other: "ฟรังก์เซฟาธนาคารกลางรัฐแอฟริกาตะวันตก"
|
|
883
|
+
:symbol: "CFA"
|
|
884
|
+
:XPD:
|
|
885
|
+
:one: "พัลเลเดียม"
|
|
886
|
+
:other: "troy ounces of palladium"
|
|
887
|
+
:XPF:
|
|
888
|
+
:one: "ฟรังก์ซีเอฟพี"
|
|
889
|
+
:other: "ฟรังก์ซีเอฟพี"
|
|
890
|
+
:symbol: "CFPF"
|
|
891
|
+
:XPT:
|
|
892
|
+
:one: "แพลตินัม"
|
|
893
|
+
:other: "troy ounces of platinum"
|
|
894
|
+
:XRE:
|
|
895
|
+
:one: "กองทุนไรเน็ต"
|
|
896
|
+
:other: "RINET Funds units"
|
|
897
|
+
:XSU:
|
|
898
|
+
:one: "ซูเกร"
|
|
899
|
+
:other: "Sucres"
|
|
900
|
+
:XTS:
|
|
901
|
+
:one: "รหัสทดสอบสกุลเงิน"
|
|
902
|
+
:other: "Testing Currency units"
|
|
903
|
+
:XUA:
|
|
904
|
+
:one: "หน่วยบัญชี เอดีบี"
|
|
905
|
+
:other: "ADB units of account"
|
|
906
|
+
:XXX:
|
|
907
|
+
:one: "สกุลเงินที่ไม่รู้จัก"
|
|
908
|
+
:other: "(สกุลเงินที่ไม่รู้จัก)"
|
|
909
|
+
:YDD:
|
|
910
|
+
:one: "ดีนาร์เยเมน"
|
|
911
|
+
:other: "Yemeni dinars"
|
|
912
|
+
:YER:
|
|
913
|
+
:one: "เรียลเยเมน"
|
|
914
|
+
:other: "เรียลเยเมน"
|
|
915
|
+
:YUD:
|
|
916
|
+
:one: "ฮาร์ดดีนาร์ยูโกสลาเวีย"
|
|
917
|
+
:other: "Yugoslavian hard dinars (1966–1990)"
|
|
918
|
+
:YUM:
|
|
919
|
+
:one: "โนวิย์ดีนาร์ยูโกสลาเวีย"
|
|
920
|
+
:other: "Yugoslavian new dinars (1994–2002)"
|
|
921
|
+
:YUN:
|
|
922
|
+
:one: "คอนเวอร์ทิเบิลดีนาร์ยูโกสลาเวีย"
|
|
923
|
+
:other: "Yugoslavian convertible dinars (1990–1992)"
|
|
924
|
+
:YUR:
|
|
925
|
+
:one: "ดีนาร์ปฏิรูปยูโกสลาเวีย (1992–1993)"
|
|
926
|
+
:other: "Yugoslavian reformed dinars (1992–1993)"
|
|
927
|
+
:ZAL:
|
|
928
|
+
:one: "แรนด์แอฟริกาใต้ (การเงิน)"
|
|
929
|
+
:other: "South African rands (financial)"
|
|
930
|
+
:ZAR:
|
|
931
|
+
:one: "แรนด์แอฟริกาใต้"
|
|
932
|
+
:other: "แรนด์แอฟริกาใต้"
|
|
933
|
+
:ZMK:
|
|
934
|
+
:one: "ควาชาแซมเบีย (1968–2012)"
|
|
935
|
+
:other: "Zambian kwachas (1968–2012)"
|
|
936
|
+
:ZMW:
|
|
937
|
+
:one: "ควาชาแซมเบีย"
|
|
938
|
+
:other: "ควาชาแซมเบีย"
|
|
939
|
+
:ZRN:
|
|
940
|
+
:one: "นิวแซร์คองโก"
|
|
941
|
+
:other: "Zairean new zaires (1993–1998)"
|
|
942
|
+
:ZRZ:
|
|
943
|
+
:one: "แซร์คองโก"
|
|
944
|
+
:other: "Zairean zaires (1971–1993)"
|
|
945
|
+
:ZWD:
|
|
946
|
+
:one: "ดอลลาร์ซิมบับเว"
|
|
947
|
+
:other: "Zimbabwean dollars (1980–2008)"
|
|
948
|
+
:ZWL:
|
|
949
|
+
:one: "ดอลลาร์ซิมบับเว (2009)"
|
|
950
|
+
:other: "Zimbabwean dollars (2009)"
|
|
951
|
+
:ZWR:
|
|
952
|
+
:one: "ดอลลาร์ซิมบับเว (2008)"
|
|
953
|
+
:other: "Zimbabwean dollars (2008)"
|