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,916 +1,955 @@
|
|
|
1
|
-
---
|
|
2
|
-
:fa:
|
|
3
|
-
:currencies:
|
|
4
|
-
:ADP:
|
|
5
|
-
:one: پزتای آندورا
|
|
6
|
-
:other: Andorran pesetas
|
|
7
|
-
:AED:
|
|
8
|
-
:one: درهم امارات متحدهٔ عربی
|
|
9
|
-
:other: UAE dirhams
|
|
10
|
-
:AFA:
|
|
11
|
-
:one: افغانی افغانستان (۱۹۲۷ تا ۲۰۰۲)
|
|
12
|
-
:other: Afghan afghanis (1927
|
|
13
|
-
:AFN:
|
|
14
|
-
:one: افغانی افغانستان
|
|
15
|
-
:other:
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
:
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
:
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
:
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
:
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
:
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
:
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
:
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
:
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
:
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
:
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
:
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
:
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
:
|
|
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
|
-
:one:
|
|
88
|
-
:other:
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
:
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
:
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
:
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
:
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
:
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
:
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
:
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
:
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
:
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
:
|
|
119
|
-
|
|
120
|
-
:
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
:
|
|
124
|
-
:
|
|
125
|
-
:
|
|
126
|
-
:one:
|
|
127
|
-
:other: Bolivian
|
|
128
|
-
:
|
|
129
|
-
:one: Bolivian
|
|
130
|
-
:other: Bolivian
|
|
131
|
-
:
|
|
132
|
-
:one:
|
|
133
|
-
:other:
|
|
134
|
-
:
|
|
135
|
-
:one:
|
|
136
|
-
:other:
|
|
137
|
-
:
|
|
138
|
-
:one: Brazilian cruzeiro (
|
|
139
|
-
:other: Brazilian cruzeiros (
|
|
140
|
-
:
|
|
141
|
-
:one:
|
|
142
|
-
:other: Brazilian
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
:
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
:
|
|
149
|
-
:
|
|
150
|
-
:
|
|
151
|
-
:one: Brazilian
|
|
152
|
-
:other: Brazilian
|
|
153
|
-
:
|
|
154
|
-
:one:
|
|
155
|
-
:other:
|
|
156
|
-
:
|
|
157
|
-
:one:
|
|
158
|
-
:other:
|
|
159
|
-
:
|
|
160
|
-
:one:
|
|
161
|
-
:other:
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
:
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
:
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
:
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
:
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
:
|
|
177
|
-
:
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
:
|
|
181
|
-
|
|
182
|
-
:
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
:
|
|
186
|
-
:
|
|
187
|
-
:
|
|
188
|
-
:one:
|
|
189
|
-
:other:
|
|
190
|
-
:
|
|
191
|
-
:one:
|
|
192
|
-
:other:
|
|
193
|
-
:
|
|
194
|
-
:one:
|
|
195
|
-
:other:
|
|
196
|
-
:
|
|
197
|
-
:one:
|
|
198
|
-
:other:
|
|
199
|
-
:
|
|
200
|
-
:one:
|
|
201
|
-
:other:
|
|
202
|
-
:
|
|
203
|
-
:one:
|
|
204
|
-
:other:
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
:
|
|
208
|
-
:
|
|
209
|
-
:
|
|
210
|
-
:one:
|
|
211
|
-
:other:
|
|
212
|
-
:
|
|
213
|
-
:one:
|
|
214
|
-
:other:
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
:
|
|
218
|
-
|
|
219
|
-
:
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
:
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
:
|
|
226
|
-
:
|
|
227
|
-
:
|
|
228
|
-
:one:
|
|
229
|
-
:other:
|
|
230
|
-
:
|
|
231
|
-
:one:
|
|
232
|
-
:other:
|
|
233
|
-
:
|
|
234
|
-
:one:
|
|
235
|
-
:other:
|
|
236
|
-
:
|
|
237
|
-
:one:
|
|
238
|
-
:other:
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
:
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
:
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
:
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
:
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
:
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
:
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
:
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
:
|
|
263
|
-
|
|
264
|
-
:
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
:
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
:
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
:
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
:
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
:
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
:
|
|
283
|
-
|
|
284
|
-
:
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
:
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
:
|
|
291
|
-
|
|
292
|
-
:
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
:
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
:
|
|
299
|
-
:
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
:
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
:
|
|
306
|
-
:
|
|
307
|
-
:
|
|
308
|
-
:one:
|
|
309
|
-
:other:
|
|
310
|
-
:
|
|
311
|
-
:one:
|
|
312
|
-
:other:
|
|
313
|
-
:
|
|
314
|
-
:one: پوند
|
|
315
|
-
:other:
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
:
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
:
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
:
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
:
|
|
328
|
-
|
|
329
|
-
:
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
:
|
|
333
|
-
:
|
|
334
|
-
:
|
|
335
|
-
:one:
|
|
336
|
-
:other:
|
|
337
|
-
:
|
|
338
|
-
:one:
|
|
339
|
-
:other:
|
|
340
|
-
:
|
|
341
|
-
:one:
|
|
342
|
-
:other:
|
|
343
|
-
:
|
|
344
|
-
:one:
|
|
345
|
-
:other:
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
:
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
:
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
:
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
:
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
:
|
|
361
|
-
:
|
|
362
|
-
:
|
|
363
|
-
:one:
|
|
364
|
-
:other:
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
:
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
:
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
:
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
:
|
|
377
|
-
:
|
|
378
|
-
:
|
|
379
|
-
:one:
|
|
380
|
-
:other:
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
:
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
:
|
|
387
|
-
|
|
388
|
-
:
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
:
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
:
|
|
395
|
-
|
|
396
|
-
:
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
:
|
|
400
|
-
:
|
|
401
|
-
:
|
|
402
|
-
:one: دینار
|
|
403
|
-
:other:
|
|
404
|
-
:
|
|
405
|
-
:one:
|
|
406
|
-
:other:
|
|
407
|
-
:symbol:
|
|
408
|
-
:
|
|
409
|
-
:one:
|
|
410
|
-
:other:
|
|
411
|
-
:
|
|
412
|
-
:one:
|
|
413
|
-
:other:
|
|
414
|
-
:
|
|
415
|
-
:one:
|
|
416
|
-
:other:
|
|
417
|
-
:
|
|
418
|
-
:one:
|
|
419
|
-
:other:
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
:
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
:
|
|
426
|
-
|
|
427
|
-
:
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
:
|
|
431
|
-
|
|
432
|
-
:
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
:
|
|
436
|
-
|
|
437
|
-
:
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
:
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
:
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
:
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
:
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
:
|
|
453
|
-
:
|
|
454
|
-
:
|
|
455
|
-
:one:
|
|
456
|
-
:other:
|
|
457
|
-
:
|
|
458
|
-
:one:
|
|
459
|
-
:other:
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
:
|
|
463
|
-
|
|
464
|
-
:
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
:
|
|
468
|
-
:
|
|
469
|
-
:
|
|
470
|
-
:one:
|
|
471
|
-
:other:
|
|
472
|
-
:
|
|
473
|
-
:one:
|
|
474
|
-
:other:
|
|
475
|
-
:
|
|
476
|
-
:one:
|
|
477
|
-
:other:
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
:
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
:
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
:
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
:
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
:
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
:
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
:
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
:
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
:
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
:
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
:
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
:
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
:
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
:
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
:
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
:
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
:
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
:
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
:
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
:
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
:
|
|
541
|
-
|
|
542
|
-
:
|
|
543
|
-
|
|
544
|
-
:
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
:
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
:
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
:
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
:
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
:
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
:
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
:
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
:
|
|
569
|
-
|
|
570
|
-
:
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
:
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
:
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
:
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
:
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
:
|
|
586
|
-
|
|
587
|
-
:
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
:
|
|
591
|
-
|
|
592
|
-
:
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
:
|
|
596
|
-
:
|
|
597
|
-
:
|
|
598
|
-
:one:
|
|
599
|
-
:other:
|
|
600
|
-
:
|
|
601
|
-
:one:
|
|
602
|
-
:other:
|
|
603
|
-
:
|
|
604
|
-
:one:
|
|
605
|
-
:other:
|
|
606
|
-
:
|
|
607
|
-
:one:
|
|
608
|
-
:other:
|
|
609
|
-
:
|
|
610
|
-
:one: روپیهٔ
|
|
611
|
-
:other:
|
|
612
|
-
:
|
|
613
|
-
:one:
|
|
614
|
-
:other:
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
:
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
:
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
:
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
:
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
:
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
:
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
:
|
|
636
|
-
|
|
637
|
-
:
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
:
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
:
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
:
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
:
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
:
|
|
653
|
-
:
|
|
654
|
-
:
|
|
655
|
-
:one:
|
|
656
|
-
:other:
|
|
657
|
-
:
|
|
658
|
-
:one:
|
|
659
|
-
:other:
|
|
660
|
-
:
|
|
661
|
-
:one:
|
|
662
|
-
:other:
|
|
663
|
-
:
|
|
664
|
-
:one:
|
|
665
|
-
:other:
|
|
666
|
-
:
|
|
667
|
-
:one:
|
|
668
|
-
:other:
|
|
669
|
-
:
|
|
670
|
-
:one:
|
|
671
|
-
:other:
|
|
672
|
-
:
|
|
673
|
-
:one:
|
|
674
|
-
:other:
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
:
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
:
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
:
|
|
684
|
-
|
|
685
|
-
:
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
:
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
:
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
:
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
:
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
:
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
:
|
|
704
|
-
:
|
|
705
|
-
:
|
|
706
|
-
:one:
|
|
707
|
-
:other:
|
|
708
|
-
:
|
|
709
|
-
:one:
|
|
710
|
-
:other:
|
|
711
|
-
:
|
|
712
|
-
:one:
|
|
713
|
-
:other:
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
:
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
:
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
:
|
|
723
|
-
:
|
|
724
|
-
:
|
|
725
|
-
:one:
|
|
726
|
-
:other:
|
|
727
|
-
:
|
|
728
|
-
:one:
|
|
729
|
-
:other:
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
:
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
:
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
:
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
:
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
:
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
:
|
|
748
|
-
:
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
:
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
:
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
:
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
:
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
:
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
:
|
|
767
|
-
:
|
|
768
|
-
:
|
|
769
|
-
:one:
|
|
770
|
-
:other:
|
|
771
|
-
:
|
|
772
|
-
:one:
|
|
773
|
-
:other:
|
|
774
|
-
:
|
|
775
|
-
:one:
|
|
776
|
-
:other:
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
:
|
|
780
|
-
|
|
781
|
-
:
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
:
|
|
785
|
-
:
|
|
786
|
-
:
|
|
787
|
-
:one:
|
|
788
|
-
:other:
|
|
789
|
-
:
|
|
790
|
-
:one:
|
|
791
|
-
:other:
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
:
|
|
795
|
-
:
|
|
796
|
-
:
|
|
797
|
-
:one:
|
|
798
|
-
:other:
|
|
799
|
-
:
|
|
800
|
-
:one:
|
|
801
|
-
:other:
|
|
802
|
-
:
|
|
803
|
-
:one:
|
|
804
|
-
:other:
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
:
|
|
808
|
-
:
|
|
809
|
-
:
|
|
810
|
-
:one:
|
|
811
|
-
:other:
|
|
812
|
-
:
|
|
813
|
-
:one:
|
|
814
|
-
:other:
|
|
815
|
-
:
|
|
816
|
-
:one:
|
|
817
|
-
:other:
|
|
818
|
-
:
|
|
819
|
-
:one:
|
|
820
|
-
:other:
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
:
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
:
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
:
|
|
830
|
-
:
|
|
831
|
-
:
|
|
832
|
-
:one:
|
|
833
|
-
:other:
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
:
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
:
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
:
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
:
|
|
846
|
-
:
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
:
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
:
|
|
853
|
-
:
|
|
854
|
-
:
|
|
855
|
-
:one:
|
|
856
|
-
:other:
|
|
857
|
-
:
|
|
858
|
-
:one:
|
|
859
|
-
:other:
|
|
860
|
-
:
|
|
861
|
-
:one:
|
|
862
|
-
:other:
|
|
863
|
-
:
|
|
864
|
-
:one:
|
|
865
|
-
:other:
|
|
866
|
-
:
|
|
867
|
-
:one:
|
|
868
|
-
:other:
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
:
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
:
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
:
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
:
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
:
|
|
884
|
-
|
|
885
|
-
:
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
:
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
:
|
|
892
|
-
:
|
|
893
|
-
:
|
|
894
|
-
:one:
|
|
895
|
-
:other:
|
|
896
|
-
:
|
|
897
|
-
:one:
|
|
898
|
-
:other:
|
|
899
|
-
:
|
|
900
|
-
:one:
|
|
901
|
-
:other:
|
|
902
|
-
:
|
|
903
|
-
:one:
|
|
904
|
-
:other:
|
|
905
|
-
:
|
|
906
|
-
:one:
|
|
907
|
-
:other:
|
|
908
|
-
:
|
|
909
|
-
:one:
|
|
910
|
-
:other:
|
|
911
|
-
:
|
|
912
|
-
:one:
|
|
913
|
-
:other:
|
|
914
|
-
:
|
|
915
|
-
:one:
|
|
916
|
-
:other:
|
|
1
|
+
---
|
|
2
|
+
:fa:
|
|
3
|
+
:currencies:
|
|
4
|
+
:ADP:
|
|
5
|
+
:one: "پزتای آندورا"
|
|
6
|
+
:other: "Andorran pesetas"
|
|
7
|
+
:AED:
|
|
8
|
+
:one: "درهم امارات متحدهٔ عربی"
|
|
9
|
+
:other: "UAE dirhams"
|
|
10
|
+
:AFA:
|
|
11
|
+
:one: "افغانی افغانستان (۱۹۲۷ تا ۲۰۰۲)"
|
|
12
|
+
:other: "Afghan afghanis (1927–2002)"
|
|
13
|
+
:AFN:
|
|
14
|
+
:one: "افغانی افغانستان"
|
|
15
|
+
:other: "افغانی افغانستان"
|
|
16
|
+
:symbol: "؋"
|
|
17
|
+
:ALK:
|
|
18
|
+
:one: "Albanian lek (1946–1965)"
|
|
19
|
+
:other: "Albanian lekë (1946–1965)"
|
|
20
|
+
:ALL:
|
|
21
|
+
:one: "لک آلبانی"
|
|
22
|
+
:other: "Albanian lekë"
|
|
23
|
+
:AMD:
|
|
24
|
+
:one: "درم ارمنستان"
|
|
25
|
+
:other: "Armenian drams"
|
|
26
|
+
:ANG:
|
|
27
|
+
:one: "گیلدر آنتیل هلند"
|
|
28
|
+
:other: "Netherlands Antillean guilders"
|
|
29
|
+
:AOA:
|
|
30
|
+
:one: "کوانزای آنگولا"
|
|
31
|
+
:other: "Angolan kwanzas"
|
|
32
|
+
:AOK:
|
|
33
|
+
:one: "Angolan kwanza (1977–1991)"
|
|
34
|
+
:other: "Angolan kwanzas (1977–1991)"
|
|
35
|
+
:AON:
|
|
36
|
+
:one: "Angolan new kwanza (1990–2000)"
|
|
37
|
+
:other: "Angolan new kwanzas (1990–2000)"
|
|
38
|
+
:AOR:
|
|
39
|
+
:one: "Angolan readjusted kwanza (1995–1999)"
|
|
40
|
+
:other: "Angolan readjusted kwanzas (1995–1999)"
|
|
41
|
+
:ARA:
|
|
42
|
+
:one: "Argentine austral"
|
|
43
|
+
:other: "Argentine australs"
|
|
44
|
+
:ARL:
|
|
45
|
+
:one: "Argentine peso ley (1970–1983)"
|
|
46
|
+
:other: "Argentine pesos ley (1970–1983)"
|
|
47
|
+
:ARM:
|
|
48
|
+
:one: "Argentine peso (1881–1970)"
|
|
49
|
+
:other: "Argentine pesos (1881–1970)"
|
|
50
|
+
:ARP:
|
|
51
|
+
:one: "پزوی آرژانتین (۱۹۸۳ تا ۱۹۸۵)"
|
|
52
|
+
:other: "Argentine pesos (1983–1985)"
|
|
53
|
+
:ARS:
|
|
54
|
+
:one: "پزوی آرژانتین"
|
|
55
|
+
:other: "Argentine pesos"
|
|
56
|
+
:symbol: "$"
|
|
57
|
+
:ATS:
|
|
58
|
+
:one: "شیلینگ اتریش"
|
|
59
|
+
:other: "Austrian schillings"
|
|
60
|
+
:AUD:
|
|
61
|
+
:one: "دلار استرالیا"
|
|
62
|
+
:other: "Australian dollars"
|
|
63
|
+
:symbol: "A$"
|
|
64
|
+
:AWG:
|
|
65
|
+
:one: "فلورین آروبا"
|
|
66
|
+
:other: "Aruban florin"
|
|
67
|
+
:AZM:
|
|
68
|
+
:one: "منات جمهوری آذربایجان (۱۹۹۳ تا ۲۰۰۶)"
|
|
69
|
+
:other: "Azerbaijani manats (1993–2006)"
|
|
70
|
+
:AZN:
|
|
71
|
+
:one: "منات جمهوری آذربایجان"
|
|
72
|
+
:other: "Azerbaijani manats"
|
|
73
|
+
:BAD:
|
|
74
|
+
:one: "دینار بوسنی و هرزگوین (۱۹۹۲ تا ۱۹۹۴)"
|
|
75
|
+
:other: "Bosnia-Herzegovina dinars (1992–1994)"
|
|
76
|
+
:BAM:
|
|
77
|
+
:one: "مارک تبدیلپذیر بوسنی و هرزگوین"
|
|
78
|
+
:other: "Bosnia-Herzegovina convertible marks"
|
|
79
|
+
:BAN:
|
|
80
|
+
:one: "Bosnia-Herzegovina new dinar (1994–1997)"
|
|
81
|
+
:other: "Bosnia-Herzegovina new dinars (1994–1997)"
|
|
82
|
+
:BBD:
|
|
83
|
+
:one: "دلار باربادوس"
|
|
84
|
+
:other: "Barbadian dollars"
|
|
85
|
+
:symbol: "$"
|
|
86
|
+
:BDT:
|
|
87
|
+
:one: "تاکای بنگلادش"
|
|
88
|
+
:other: "Bangladeshi takas"
|
|
89
|
+
:symbol: "৳"
|
|
90
|
+
:BEC:
|
|
91
|
+
:one: "Belgian franc (convertible)"
|
|
92
|
+
:other: "Belgian francs (convertible)"
|
|
93
|
+
:BEF:
|
|
94
|
+
:one: "فرانک بلژیک"
|
|
95
|
+
:other: "Belgian francs"
|
|
96
|
+
:BEL:
|
|
97
|
+
:one: "فرانک بلژیک (مالی)"
|
|
98
|
+
:other: "Belgian francs (financial)"
|
|
99
|
+
:BGL:
|
|
100
|
+
:one: "Bulgarian hard lev"
|
|
101
|
+
:other: "Bulgarian hard leva"
|
|
102
|
+
:BGM:
|
|
103
|
+
:one: "Bulgarian socialist lev"
|
|
104
|
+
:other: "Bulgarian socialist leva"
|
|
105
|
+
:BGN:
|
|
106
|
+
:one: "لف بلغارستان"
|
|
107
|
+
:other: "Bulgarian leva"
|
|
108
|
+
:BGO:
|
|
109
|
+
:one: "Bulgarian lev (1879–1952)"
|
|
110
|
+
:other: "Bulgarian leva (1879–1952)"
|
|
111
|
+
:BHD:
|
|
112
|
+
:one: "دینار بحرین"
|
|
113
|
+
:other: "Bahraini dinars"
|
|
114
|
+
:BIF:
|
|
115
|
+
:one: "فرانک بوروندی"
|
|
116
|
+
:other: "Burundian francs"
|
|
117
|
+
:BMD:
|
|
118
|
+
:one: "دلار برمودا"
|
|
119
|
+
:other: "دلار برمودا"
|
|
120
|
+
:symbol: "$"
|
|
121
|
+
:BND:
|
|
122
|
+
:one: "دلار برونئی"
|
|
123
|
+
:other: "Brunei dollars"
|
|
124
|
+
:symbol: "$"
|
|
125
|
+
:BOB:
|
|
126
|
+
:one: "بولیویانوی بولیوی"
|
|
127
|
+
:other: "Bolivian bolivianos"
|
|
128
|
+
:BOL:
|
|
129
|
+
:one: "Bolivian boliviano (1863–1963)"
|
|
130
|
+
:other: "Bolivian bolivianos (1863–1963)"
|
|
131
|
+
:BOP:
|
|
132
|
+
:one: "پزوی بولیوی"
|
|
133
|
+
:other: "Bolivian pesos"
|
|
134
|
+
:BOV:
|
|
135
|
+
:one: "Bolivian mvdol"
|
|
136
|
+
:other: "Bolivian mvdols"
|
|
137
|
+
:BRB:
|
|
138
|
+
:one: "Brazilian new cruzeiro (1967–1986)"
|
|
139
|
+
:other: "Brazilian new cruzeiros (1967–1986)"
|
|
140
|
+
:BRC:
|
|
141
|
+
:one: "Brazilian cruzado (1986–1989)"
|
|
142
|
+
:other: "Brazilian cruzados (1986–1989)"
|
|
143
|
+
:BRE:
|
|
144
|
+
:one: "Brazilian cruzeiro (1990–1993)"
|
|
145
|
+
:other: "Brazilian cruzeiros (1990–1993)"
|
|
146
|
+
:BRL:
|
|
147
|
+
:one: "رئال برزیل"
|
|
148
|
+
:other: "رئال برزیل"
|
|
149
|
+
:symbol: "R$"
|
|
150
|
+
:BRN:
|
|
151
|
+
:one: "Brazilian new cruzado (1989–1990)"
|
|
152
|
+
:other: "Brazilian new cruzados (1989–1990)"
|
|
153
|
+
:BRR:
|
|
154
|
+
:one: "Brazilian cruzeiro (1993–1994)"
|
|
155
|
+
:other: "Brazilian cruzeiros (1993–1994)"
|
|
156
|
+
:BRZ:
|
|
157
|
+
:one: "Brazilian cruzeiro (1942–1967)"
|
|
158
|
+
:other: "Brazilian cruzeiros (1942–1967)"
|
|
159
|
+
:BSD:
|
|
160
|
+
:one: "دلار باهاما"
|
|
161
|
+
:other: "Bahamian dollars"
|
|
162
|
+
:symbol: "$"
|
|
163
|
+
:BTN:
|
|
164
|
+
:one: "انگولتروم بوتان"
|
|
165
|
+
:other: "Bhutanese ngultrums"
|
|
166
|
+
:BUK:
|
|
167
|
+
:one: "Burmese kyat"
|
|
168
|
+
:other: "Burmese kyats"
|
|
169
|
+
:BWP:
|
|
170
|
+
:one: "پولای بوتسوانا"
|
|
171
|
+
:other: "Botswanan pulas"
|
|
172
|
+
:BYB:
|
|
173
|
+
:one: "روبل جدید بیلوروسی (۱۹۹۴ تا ۱۹۹۹)"
|
|
174
|
+
:other: "Belarusian new rubles (1994–1999)"
|
|
175
|
+
:BYR:
|
|
176
|
+
:one: "روبل بیلوروسی"
|
|
177
|
+
:other: "Belarusian rubles"
|
|
178
|
+
:symbol: "р."
|
|
179
|
+
:BZD:
|
|
180
|
+
:one: "دلار بلیز"
|
|
181
|
+
:other: "Belize dollars"
|
|
182
|
+
:symbol: "$"
|
|
183
|
+
:CAD:
|
|
184
|
+
:one: "دلار کانادا"
|
|
185
|
+
:other: "دلار کانادا"
|
|
186
|
+
:symbol: "$CA"
|
|
187
|
+
:CDF:
|
|
188
|
+
:one: "فرانک کنگو"
|
|
189
|
+
:other: "Congolese francs"
|
|
190
|
+
:CHE:
|
|
191
|
+
:one: "WIR euro"
|
|
192
|
+
:other: "WIR euros"
|
|
193
|
+
:CHF:
|
|
194
|
+
:one: "فرانک سوئیس"
|
|
195
|
+
:other: "Swiss francs"
|
|
196
|
+
:CHW:
|
|
197
|
+
:one: "WIR franc"
|
|
198
|
+
:other: "WIR francs"
|
|
199
|
+
:CLE:
|
|
200
|
+
:one: "Chilean escudo"
|
|
201
|
+
:other: "Chilean escudos"
|
|
202
|
+
:CLF:
|
|
203
|
+
:one: "Chilean unit of account (UF)"
|
|
204
|
+
:other: "Chilean units of account (UF)"
|
|
205
|
+
:CLP:
|
|
206
|
+
:one: "پزوی شیلی"
|
|
207
|
+
:other: "Chilean pesos"
|
|
208
|
+
:symbol: "$"
|
|
209
|
+
:CNX:
|
|
210
|
+
:one: "Chinese People’s Bank dollar"
|
|
211
|
+
:other: "Chinese People’s Bank dollars"
|
|
212
|
+
:CNY:
|
|
213
|
+
:one: "یوآن چین"
|
|
214
|
+
:other: "Chinese yuan"
|
|
215
|
+
:symbol: "¥CN"
|
|
216
|
+
:COP:
|
|
217
|
+
:one: "پزوی کلمبیا"
|
|
218
|
+
:other: "Colombian pesos"
|
|
219
|
+
:symbol: "$"
|
|
220
|
+
:COU:
|
|
221
|
+
:one: "Colombian real value unit"
|
|
222
|
+
:other: "Colombian real value units"
|
|
223
|
+
:CRC:
|
|
224
|
+
:one: "کولون کاستاریکا"
|
|
225
|
+
:other: "Costa Rican colóns"
|
|
226
|
+
:symbol: "₡"
|
|
227
|
+
:CSD:
|
|
228
|
+
:one: "دینار صربستان (۲۰۰۲ تا ۲۰۰۶)"
|
|
229
|
+
:other: "Serbian dinars (2002–2006)"
|
|
230
|
+
:CSK:
|
|
231
|
+
:one: "Czechoslovak hard koruna"
|
|
232
|
+
:other: "Czechoslovak hard korunas"
|
|
233
|
+
:CUC:
|
|
234
|
+
:one: "پزوی تبدیلپذیر کوبا"
|
|
235
|
+
:other: "Cuban convertible pesos"
|
|
236
|
+
:CUP:
|
|
237
|
+
:one: "پزوی کوبا"
|
|
238
|
+
:other: "Cuban pesos"
|
|
239
|
+
:symbol: "$"
|
|
240
|
+
:CVE:
|
|
241
|
+
:one: "اسکودوی کیپورد"
|
|
242
|
+
:other: "Cape Verdean escudos"
|
|
243
|
+
:CYP:
|
|
244
|
+
:one: "پوند قبرس"
|
|
245
|
+
:other: "Cypriot pounds"
|
|
246
|
+
:CZK:
|
|
247
|
+
:one: "کورونای جمهوری چک"
|
|
248
|
+
:other: "Czech Republic korunas"
|
|
249
|
+
:DDM:
|
|
250
|
+
:one: "مارک آلمان شرقی"
|
|
251
|
+
:other: "East German marks"
|
|
252
|
+
:DEM:
|
|
253
|
+
:one: "مارک آلمان"
|
|
254
|
+
:other: "German marks"
|
|
255
|
+
:DJF:
|
|
256
|
+
:one: "فرانک جیبوتی"
|
|
257
|
+
:other: "Djiboutian francs"
|
|
258
|
+
:DKK:
|
|
259
|
+
:one: "کرون دانمارک"
|
|
260
|
+
:other: "Danish kroner"
|
|
261
|
+
:DOP:
|
|
262
|
+
:one: "پزوی جمهوری دومینیکن"
|
|
263
|
+
:other: "Dominican pesos"
|
|
264
|
+
:symbol: "$"
|
|
265
|
+
:DZD:
|
|
266
|
+
:one: "دینار الجزایر"
|
|
267
|
+
:other: "Algerian dinars"
|
|
268
|
+
:ECS:
|
|
269
|
+
:one: "Ecuadorian sucre"
|
|
270
|
+
:other: "Ecuadorian sucres"
|
|
271
|
+
:ECV:
|
|
272
|
+
:one: "Ecuadorian unit of constant value"
|
|
273
|
+
:other: "Ecuadorian units of constant value"
|
|
274
|
+
:EEK:
|
|
275
|
+
:one: "Estonian kroon"
|
|
276
|
+
:other: "Estonian kroons"
|
|
277
|
+
:EGP:
|
|
278
|
+
:one: "لیرهٔ مصر"
|
|
279
|
+
:other: "Egyptian pounds"
|
|
280
|
+
:ERN:
|
|
281
|
+
:one: "ناکفای اریتره"
|
|
282
|
+
:other: "Eritrean nakfas"
|
|
283
|
+
:ESA:
|
|
284
|
+
:one: "Spanish peseta (A account)"
|
|
285
|
+
:other: "Spanish pesetas (A account)"
|
|
286
|
+
:ESB:
|
|
287
|
+
:one: "Spanish peseta (convertible account)"
|
|
288
|
+
:other: "Spanish pesetas (convertible account)"
|
|
289
|
+
:ESP:
|
|
290
|
+
:one: "Spanish peseta"
|
|
291
|
+
:other: "Spanish pesetas"
|
|
292
|
+
:symbol: "₧"
|
|
293
|
+
:ETB:
|
|
294
|
+
:one: "بیر اتیوپی"
|
|
295
|
+
:other: "Ethiopian birrs"
|
|
296
|
+
:EUR:
|
|
297
|
+
:one: "یورو"
|
|
298
|
+
:other: "یورو"
|
|
299
|
+
:symbol: "€"
|
|
300
|
+
:FIM:
|
|
301
|
+
:one: "Finnish markka"
|
|
302
|
+
:other: "Finnish markkas"
|
|
303
|
+
:FJD:
|
|
304
|
+
:one: "دلار فیجی"
|
|
305
|
+
:other: "Fijian dollars"
|
|
306
|
+
:symbol: "$"
|
|
307
|
+
:FKP:
|
|
308
|
+
:one: "پوند جزایر فالکلند"
|
|
309
|
+
:other: "Falkland Islands pounds"
|
|
310
|
+
:FRF:
|
|
311
|
+
:one: "فرانک فرانسه"
|
|
312
|
+
:other: "French francs"
|
|
313
|
+
:GBP:
|
|
314
|
+
:one: "پوند بریتانیا"
|
|
315
|
+
:other: "British pounds sterling"
|
|
316
|
+
:symbol: "£"
|
|
317
|
+
:GEK:
|
|
318
|
+
:one: "Georgian kupon larit"
|
|
319
|
+
:other: "Georgian kupon larits"
|
|
320
|
+
:GEL:
|
|
321
|
+
:one: "لاری گرجستان"
|
|
322
|
+
:other: "Georgian laris"
|
|
323
|
+
:GHC:
|
|
324
|
+
:one: "Ghanaian cedi (1979–2007)"
|
|
325
|
+
:other: "Ghanaian cedis (1979–2007)"
|
|
326
|
+
:GHS:
|
|
327
|
+
:one: "سدی غنا"
|
|
328
|
+
:other: "Ghanaian cedis"
|
|
329
|
+
:symbol: "₵"
|
|
330
|
+
:GIP:
|
|
331
|
+
:one: "پوند جبلالطارق"
|
|
332
|
+
:other: "Gibraltar pounds"
|
|
333
|
+
:symbol: "£"
|
|
334
|
+
:GMD:
|
|
335
|
+
:one: "دالاسی گامبیا"
|
|
336
|
+
:other: "Gambian dalasis"
|
|
337
|
+
:GNF:
|
|
338
|
+
:one: "فرانک گینه"
|
|
339
|
+
:other: "Guinean francs"
|
|
340
|
+
:GNS:
|
|
341
|
+
:one: "Guinean syli"
|
|
342
|
+
:other: "Guinean sylis"
|
|
343
|
+
:GQE:
|
|
344
|
+
:one: "Equatorial Guinean ekwele"
|
|
345
|
+
:other: "Equatorial Guinean ekwele"
|
|
346
|
+
:GRD:
|
|
347
|
+
:one: "دراخمای یونان"
|
|
348
|
+
:other: "Greek drachmas"
|
|
349
|
+
:GTQ:
|
|
350
|
+
:one: "کتزال گواتمالا"
|
|
351
|
+
:other: "Guatemalan quetzals"
|
|
352
|
+
:GWE:
|
|
353
|
+
:one: "Portuguese Guinea escudo"
|
|
354
|
+
:other: "Portuguese Guinea escudos"
|
|
355
|
+
:GWP:
|
|
356
|
+
:one: "پزوی گینهٔ بیسائو"
|
|
357
|
+
:other: "Guinea-Bissau pesos"
|
|
358
|
+
:GYD:
|
|
359
|
+
:one: "دلار گویان"
|
|
360
|
+
:other: "Guyanaese dollars"
|
|
361
|
+
:symbol: "$"
|
|
362
|
+
:HKD:
|
|
363
|
+
:one: "دلار هنگکنگ"
|
|
364
|
+
:other: "Hong Kong dollars"
|
|
365
|
+
:symbol: "$HK"
|
|
366
|
+
:HNL:
|
|
367
|
+
:one: "لمپیرای هندوراس"
|
|
368
|
+
:other: "Honduran lempiras"
|
|
369
|
+
:HRD:
|
|
370
|
+
:one: "دینار کرواسی"
|
|
371
|
+
:other: "Croatian dinars"
|
|
372
|
+
:HRK:
|
|
373
|
+
:one: "کونای کرواسی"
|
|
374
|
+
:other: "Croatian kunas"
|
|
375
|
+
:HTG:
|
|
376
|
+
:one: "گورد هائیتی"
|
|
377
|
+
:other: "Haitian gourdes"
|
|
378
|
+
:HUF:
|
|
379
|
+
:one: "فورینت مجارستان"
|
|
380
|
+
:other: "Hungarian forints"
|
|
381
|
+
:IDR:
|
|
382
|
+
:one: "روپیهٔ اندونزی"
|
|
383
|
+
:other: "Indonesian rupiahs"
|
|
384
|
+
:IEP:
|
|
385
|
+
:one: "پوند ایرلند"
|
|
386
|
+
:other: "Irish pounds"
|
|
387
|
+
:ILP:
|
|
388
|
+
:one: "Israeli pound"
|
|
389
|
+
:other: "Israeli pounds"
|
|
390
|
+
:ILR:
|
|
391
|
+
:one: "Israeli sheqel (1980–1985)"
|
|
392
|
+
:other: "Israeli sheqels (1980–1985)"
|
|
393
|
+
:ILS:
|
|
394
|
+
:one: "شقل جدید اسرائیل"
|
|
395
|
+
:other: "Israeli new sheqels"
|
|
396
|
+
:symbol: "₪"
|
|
397
|
+
:INR:
|
|
398
|
+
:one: "روپیهٔ هند"
|
|
399
|
+
:other: "روپیهٔ هند"
|
|
400
|
+
:symbol: "₹"
|
|
401
|
+
:IQD:
|
|
402
|
+
:one: "دینار عراق"
|
|
403
|
+
:other: "Iraqi dinars"
|
|
404
|
+
:IRR:
|
|
405
|
+
:one: "ریال ایران"
|
|
406
|
+
:other: "ریال ایران"
|
|
407
|
+
:symbol: "ریال"
|
|
408
|
+
:ISJ:
|
|
409
|
+
:one: "Icelandic króna (1918–1981)"
|
|
410
|
+
:other: "Icelandic krónur (1918–1981)"
|
|
411
|
+
:ISK:
|
|
412
|
+
:one: "کرونای ایسلند"
|
|
413
|
+
:other: "Icelandic krónur"
|
|
414
|
+
:ITL:
|
|
415
|
+
:one: "لیرهٔ ایتالیا"
|
|
416
|
+
:other: "Italian liras"
|
|
417
|
+
:JMD:
|
|
418
|
+
:one: "دلار جامائیکا"
|
|
419
|
+
:other: "Jamaican dollars"
|
|
420
|
+
:symbol: "$"
|
|
421
|
+
:JOD:
|
|
422
|
+
:one: "دینار اردن"
|
|
423
|
+
:other: "Jordanian dinars"
|
|
424
|
+
:JPY:
|
|
425
|
+
:one: "ین ژاپن"
|
|
426
|
+
:other: "ین ژاپن"
|
|
427
|
+
:symbol: "¥"
|
|
428
|
+
:KES:
|
|
429
|
+
:one: "شیلینگ کنیا"
|
|
430
|
+
:other: "Kenyan shillings"
|
|
431
|
+
:KGS:
|
|
432
|
+
:one: "سوم قرقیزستان"
|
|
433
|
+
:other: "Kyrgystani soms"
|
|
434
|
+
:KHR:
|
|
435
|
+
:one: "رییل کامبوج"
|
|
436
|
+
:other: "Cambodian riels"
|
|
437
|
+
:symbol: "៛"
|
|
438
|
+
:KMF:
|
|
439
|
+
:one: "فرانک کومورو"
|
|
440
|
+
:other: "Comorian francs"
|
|
441
|
+
:KPW:
|
|
442
|
+
:one: "وون کرهٔ شمالی"
|
|
443
|
+
:other: "North Korean won"
|
|
444
|
+
:KRH:
|
|
445
|
+
:one: "South Korean hwan (1953–1962)"
|
|
446
|
+
:other: "South Korean hwan (1953–1962)"
|
|
447
|
+
:KRO:
|
|
448
|
+
:one: "South Korean won (1945–1953)"
|
|
449
|
+
:other: "South Korean won (1945–1953)"
|
|
450
|
+
:KRW:
|
|
451
|
+
:one: "وون کرهٔ جنوبی"
|
|
452
|
+
:other: "South Korean won"
|
|
453
|
+
:symbol: "₩"
|
|
454
|
+
:KWD:
|
|
455
|
+
:one: "دینار کویت"
|
|
456
|
+
:other: "Kuwaiti dinars"
|
|
457
|
+
:KYD:
|
|
458
|
+
:one: "دلار جزایر کِیمن"
|
|
459
|
+
:other: "Cayman Islands dollars"
|
|
460
|
+
:symbol: "$"
|
|
461
|
+
:KZT:
|
|
462
|
+
:one: "تنگهٔ قزاقستان"
|
|
463
|
+
:other: "Kazakhstani tenges"
|
|
464
|
+
:symbol: "₸"
|
|
465
|
+
:LAK:
|
|
466
|
+
:one: "کیپ لائوس"
|
|
467
|
+
:other: "Laotian kips"
|
|
468
|
+
:symbol: "₭"
|
|
469
|
+
:LBP:
|
|
470
|
+
:one: "لیرهٔ لبنان"
|
|
471
|
+
:other: "Lebanese pounds"
|
|
472
|
+
:LKR:
|
|
473
|
+
:one: "روپیهٔ سریلانکا"
|
|
474
|
+
:other: "Sri Lankan rupees"
|
|
475
|
+
:LRD:
|
|
476
|
+
:one: "دلار لیبریا"
|
|
477
|
+
:other: "Liberian dollars"
|
|
478
|
+
:symbol: "$"
|
|
479
|
+
:LSL:
|
|
480
|
+
:one: "لوتی لسوتو"
|
|
481
|
+
:other: "Lesotho lotis"
|
|
482
|
+
:LTL:
|
|
483
|
+
:one: "لیتاس لیتوانی"
|
|
484
|
+
:other: "Lithuanian litai"
|
|
485
|
+
:LTT:
|
|
486
|
+
:one: "Lithuanian talonas"
|
|
487
|
+
:other: "Lithuanian talonases"
|
|
488
|
+
:LUC:
|
|
489
|
+
:one: "Luxembourgian convertible franc"
|
|
490
|
+
:other: "Luxembourgian convertible francs"
|
|
491
|
+
:LUF:
|
|
492
|
+
:one: "فرانک لوکزامبورگ"
|
|
493
|
+
:other: "Luxembourgian francs"
|
|
494
|
+
:LUL:
|
|
495
|
+
:one: "فرانک مالی لوگزامبورگ"
|
|
496
|
+
:other: "Luxembourg financial francs"
|
|
497
|
+
:LVL:
|
|
498
|
+
:one: "لاتس لتونی"
|
|
499
|
+
:other: "Latvian lati"
|
|
500
|
+
:LVR:
|
|
501
|
+
:one: "روبل لتونی"
|
|
502
|
+
:other: "Latvian rubles"
|
|
503
|
+
:LYD:
|
|
504
|
+
:one: "دینار لیبی"
|
|
505
|
+
:other: "Libyan dinars"
|
|
506
|
+
:MAD:
|
|
507
|
+
:one: "درهم مراکش"
|
|
508
|
+
:other: "Moroccan dirhams"
|
|
509
|
+
:MAF:
|
|
510
|
+
:one: "فرانک مراکش"
|
|
511
|
+
:other: "Moroccan francs"
|
|
512
|
+
:MCF:
|
|
513
|
+
:one: "Monegasque franc"
|
|
514
|
+
:other: "Monegasque francs"
|
|
515
|
+
:MDC:
|
|
516
|
+
:one: "Moldovan cupon"
|
|
517
|
+
:other: "Moldovan cupon"
|
|
518
|
+
:MDL:
|
|
519
|
+
:one: "لئوی مولداوی"
|
|
520
|
+
:other: "Moldovan lei"
|
|
521
|
+
:MGA:
|
|
522
|
+
:one: "آریاری مالاگاسی"
|
|
523
|
+
:other: "Malagasy Ariaries"
|
|
524
|
+
:MGF:
|
|
525
|
+
:one: "فرانک ماداگاسکار"
|
|
526
|
+
:other: "Malagasy francs"
|
|
527
|
+
:MKD:
|
|
528
|
+
:one: "دینار مقدونیه"
|
|
529
|
+
:other: "Macedonian denari"
|
|
530
|
+
:MKN:
|
|
531
|
+
:one: "Macedonian denar (1992–1993)"
|
|
532
|
+
:other: "Macedonian denari (1992–1993)"
|
|
533
|
+
:MLF:
|
|
534
|
+
:one: "فرانک مالی"
|
|
535
|
+
:other: "Malian francs"
|
|
536
|
+
:MMK:
|
|
537
|
+
:one: "کیات میانمار"
|
|
538
|
+
:other: "Myanmar kyats"
|
|
539
|
+
:MNT:
|
|
540
|
+
:one: "توگریک مغولستان"
|
|
541
|
+
:other: "Mongolian tugriks"
|
|
542
|
+
:symbol: "₮"
|
|
543
|
+
:MOP:
|
|
544
|
+
:one: "پاتاکای ماکائو"
|
|
545
|
+
:other: "Macanese patacas"
|
|
546
|
+
:MRO:
|
|
547
|
+
:one: "اوگوئیای موریتانی"
|
|
548
|
+
:other: "Mauritanian ouguiyas"
|
|
549
|
+
:MTL:
|
|
550
|
+
:one: "لیرهٔ مالت"
|
|
551
|
+
:other: "Maltese lira"
|
|
552
|
+
:MTP:
|
|
553
|
+
:one: "پوند مالت"
|
|
554
|
+
:other: "Maltese pounds"
|
|
555
|
+
:MUR:
|
|
556
|
+
:one: "روپیهٔ موریس"
|
|
557
|
+
:other: "Mauritian rupees"
|
|
558
|
+
:MVP:
|
|
559
|
+
:one: "Maldivian rupee"
|
|
560
|
+
:other: "Maldivian rupees"
|
|
561
|
+
:MVR:
|
|
562
|
+
:one: "روپیهٔ مالدیو"
|
|
563
|
+
:other: "Maldivian rufiyaas"
|
|
564
|
+
:MWK:
|
|
565
|
+
:one: "کواچای مالاوی"
|
|
566
|
+
:other: "Malawian Kwachas"
|
|
567
|
+
:MXN:
|
|
568
|
+
:one: "پزوی مکزیک"
|
|
569
|
+
:other: "Mexican pesos"
|
|
570
|
+
:symbol: "$MX"
|
|
571
|
+
:MXP:
|
|
572
|
+
:one: "پزوی نقرهٔ مکزیک (۱۸۶۱ تا ۱۹۹۲)"
|
|
573
|
+
:other: "Mexican silver pesos (1861–1992)"
|
|
574
|
+
:MXV:
|
|
575
|
+
:one: "Mexican investment unit"
|
|
576
|
+
:other: "Mexican investment units"
|
|
577
|
+
:MYR:
|
|
578
|
+
:one: "رینگیت مالزی"
|
|
579
|
+
:other: "Malaysian ringgits"
|
|
580
|
+
:MZE:
|
|
581
|
+
:one: "اسکودوی موزامبیک"
|
|
582
|
+
:other: "Mozambican escudos"
|
|
583
|
+
:MZM:
|
|
584
|
+
:one: "Mozambican metical (1980–2006)"
|
|
585
|
+
:other: "Mozambican meticals (1980–2006)"
|
|
586
|
+
:MZN:
|
|
587
|
+
:one: "متیکال موزامبیک"
|
|
588
|
+
:other: "Mozambican meticals"
|
|
589
|
+
:NAD:
|
|
590
|
+
:one: "دلار نامیبیا"
|
|
591
|
+
:other: "Namibian dollars"
|
|
592
|
+
:symbol: "$"
|
|
593
|
+
:NGN:
|
|
594
|
+
:one: "نایرای نیجریه"
|
|
595
|
+
:other: "Nigerian nairas"
|
|
596
|
+
:symbol: "₦"
|
|
597
|
+
:NIC:
|
|
598
|
+
:one: "Nicaraguan córdoba (1988–1991)"
|
|
599
|
+
:other: "Nicaraguan córdobas (1988–1991)"
|
|
600
|
+
:NIO:
|
|
601
|
+
:one: "کوردوبای نیکاراگوئه"
|
|
602
|
+
:other: "Nicaraguan córdobas"
|
|
603
|
+
:NLG:
|
|
604
|
+
:one: "گیلدر هلند"
|
|
605
|
+
:other: "Dutch guilders"
|
|
606
|
+
:NOK:
|
|
607
|
+
:one: "کرون نروژ"
|
|
608
|
+
:other: "Norwegian kroner"
|
|
609
|
+
:NPR:
|
|
610
|
+
:one: "روپیهٔ نپال"
|
|
611
|
+
:other: "Nepalese rupees"
|
|
612
|
+
:NZD:
|
|
613
|
+
:one: "دلار زلاند نو"
|
|
614
|
+
:other: "New Zealand dollars"
|
|
615
|
+
:symbol: "$NZ"
|
|
616
|
+
:OMR:
|
|
617
|
+
:one: "ریال عمان"
|
|
618
|
+
:other: "Omani rials"
|
|
619
|
+
:PAB:
|
|
620
|
+
:one: "بالبوای پاناما"
|
|
621
|
+
:other: "Panamanian balboas"
|
|
622
|
+
:PEI:
|
|
623
|
+
:one: "Peruvian inti"
|
|
624
|
+
:other: "Peruvian intis"
|
|
625
|
+
:PEN:
|
|
626
|
+
:one: "نوئووسول پرو"
|
|
627
|
+
:other: "Peruvian nuevos soles"
|
|
628
|
+
:PES:
|
|
629
|
+
:one: "Peruvian sol (1863–1965)"
|
|
630
|
+
:other: "Peruvian soles (1863–1965)"
|
|
631
|
+
:PGK:
|
|
632
|
+
:one: "کینای پاپوا گینهٔ نو"
|
|
633
|
+
:other: "Papua New Guinean kina"
|
|
634
|
+
:PHP:
|
|
635
|
+
:one: "پزوی فیلیپین"
|
|
636
|
+
:other: "Philippine pesos"
|
|
637
|
+
:symbol: "₱"
|
|
638
|
+
:PKR:
|
|
639
|
+
:one: "روپیهٔ پاکستان"
|
|
640
|
+
:other: "Pakistani rupees"
|
|
641
|
+
:PLN:
|
|
642
|
+
:one: "زواتی لهستان"
|
|
643
|
+
:other: "Polish zlotys"
|
|
644
|
+
:PLZ:
|
|
645
|
+
:one: "Polish zloty (PLZ)"
|
|
646
|
+
:other: "Polish zlotys (PLZ)"
|
|
647
|
+
:PTE:
|
|
648
|
+
:one: "اسکودوی پرتغال"
|
|
649
|
+
:other: "Portuguese escudos"
|
|
650
|
+
:PYG:
|
|
651
|
+
:one: "گوارانی پاراگوئه"
|
|
652
|
+
:other: "Paraguayan guaranis"
|
|
653
|
+
:symbol: "₲"
|
|
654
|
+
:QAR:
|
|
655
|
+
:one: "ریال قطر"
|
|
656
|
+
:other: "Qatari rials"
|
|
657
|
+
:RHD:
|
|
658
|
+
:one: "دلار رودزیا"
|
|
659
|
+
:other: "Rhodesian dollars"
|
|
660
|
+
:ROL:
|
|
661
|
+
:one: "Romanian leu (1952–2006)"
|
|
662
|
+
:other: "Romanian Lei (1952–2006)"
|
|
663
|
+
:RON:
|
|
664
|
+
:one: "لئوی رومانی"
|
|
665
|
+
:other: "Romanian lei"
|
|
666
|
+
:RSD:
|
|
667
|
+
:one: "دینار صربستان"
|
|
668
|
+
:other: "Serbian dinars"
|
|
669
|
+
:RUB:
|
|
670
|
+
:one: "روبل روسیه"
|
|
671
|
+
:other: "روبل روسیه"
|
|
672
|
+
:RUR:
|
|
673
|
+
:one: "روبل روسیه (۱۹۹۱ تا ۱۹۹۸)"
|
|
674
|
+
:other: "Russian rubles (1991–1998)"
|
|
675
|
+
:symbol: "р."
|
|
676
|
+
:RWF:
|
|
677
|
+
:one: "فرانک رواندا"
|
|
678
|
+
:other: "Rwandan francs"
|
|
679
|
+
:SAR:
|
|
680
|
+
:one: "ریال سعودی"
|
|
681
|
+
:other: "Saudi riyals"
|
|
682
|
+
:SBD:
|
|
683
|
+
:one: "دلار جزایر سلیمان"
|
|
684
|
+
:other: "Solomon Islands dollars"
|
|
685
|
+
:symbol: "$"
|
|
686
|
+
:SCR:
|
|
687
|
+
:one: "روپیهٔ سیشل"
|
|
688
|
+
:other: "Seychellois rupees"
|
|
689
|
+
:SDD:
|
|
690
|
+
:one: "دینار سودان (۱۹۹۲ تا ۲۰۰۷)"
|
|
691
|
+
:other: "Sudanese dinars (1992–2007)"
|
|
692
|
+
:SDG:
|
|
693
|
+
:one: "لیرهٔ سودان"
|
|
694
|
+
:other: "Sudanese pounds"
|
|
695
|
+
:SDP:
|
|
696
|
+
:one: "Sudanese pound (1957–1998)"
|
|
697
|
+
:other: "Sudanese pounds (1957–1998)"
|
|
698
|
+
:SEK:
|
|
699
|
+
:one: "کرون سوئد"
|
|
700
|
+
:other: "Swedish kronor"
|
|
701
|
+
:SGD:
|
|
702
|
+
:one: "دلار سنگاپور"
|
|
703
|
+
:other: "Singapore dollars"
|
|
704
|
+
:symbol: "$"
|
|
705
|
+
:SHP:
|
|
706
|
+
:one: "پوند سنت هلن"
|
|
707
|
+
:other: "Saint Helena pounds"
|
|
708
|
+
:SIT:
|
|
709
|
+
:one: "Slovenian tolar"
|
|
710
|
+
:other: "Slovenian tolars"
|
|
711
|
+
:SKK:
|
|
712
|
+
:one: "Slovak koruna"
|
|
713
|
+
:other: "Slovak korunas"
|
|
714
|
+
:SLL:
|
|
715
|
+
:one: "لئون سیرالئون"
|
|
716
|
+
:other: "Sierra Leonean leones"
|
|
717
|
+
:SOS:
|
|
718
|
+
:one: "شیلینگ سومالی"
|
|
719
|
+
:other: "Somali shillings"
|
|
720
|
+
:SRD:
|
|
721
|
+
:one: "دلار سورینام"
|
|
722
|
+
:other: "Surinamese dollars"
|
|
723
|
+
:symbol: "$"
|
|
724
|
+
:SRG:
|
|
725
|
+
:one: "گیلدر سورینام"
|
|
726
|
+
:other: "Surinamese guilders"
|
|
727
|
+
:SSP:
|
|
728
|
+
:one: "پوند سودان جنوبی"
|
|
729
|
+
:other: "South Sudanese pounds"
|
|
730
|
+
:symbol: "£"
|
|
731
|
+
:STD:
|
|
732
|
+
:one: "دوبرای سائوتومه و پرنسیپ"
|
|
733
|
+
:other: "São Tomé and Príncipe dobras"
|
|
734
|
+
:SUR:
|
|
735
|
+
:one: "روبل شوروی"
|
|
736
|
+
:other: "Soviet roubles"
|
|
737
|
+
:SVC:
|
|
738
|
+
:one: "Salvadoran colón"
|
|
739
|
+
:other: "Salvadoran colones"
|
|
740
|
+
:SYP:
|
|
741
|
+
:one: "لیرهٔ سوریه"
|
|
742
|
+
:other: "Syrian pounds"
|
|
743
|
+
:SZL:
|
|
744
|
+
:one: "لیلانگنی سوازیلند"
|
|
745
|
+
:other: "Swazi emalangeni"
|
|
746
|
+
:THB:
|
|
747
|
+
:one: "بات تایلند"
|
|
748
|
+
:other: "Thai baht"
|
|
749
|
+
:symbol: "฿"
|
|
750
|
+
:TJR:
|
|
751
|
+
:one: "روبل تاجیکستان"
|
|
752
|
+
:other: "Tajikistani rubles"
|
|
753
|
+
:TJS:
|
|
754
|
+
:one: "سامانی تاجیکستان"
|
|
755
|
+
:other: "Tajikistani somonis"
|
|
756
|
+
:TMM:
|
|
757
|
+
:one: "منات ترکمنستان (۱۹۹۳ تا ۲۰۰۹)"
|
|
758
|
+
:other: "Turkmenistani manat (1993–2009)"
|
|
759
|
+
:TMT:
|
|
760
|
+
:one: "منات ترکمنستان"
|
|
761
|
+
:other: "Turkmenistani manat"
|
|
762
|
+
:TND:
|
|
763
|
+
:one: "دینار تونس"
|
|
764
|
+
:other: "Tunisian dinars"
|
|
765
|
+
:TOP:
|
|
766
|
+
:one: "پاآنگای تونگا"
|
|
767
|
+
:other: "Tongan paʻanga"
|
|
768
|
+
:TPE:
|
|
769
|
+
:one: "اسکودوی تیمور"
|
|
770
|
+
:other: "Timorese escudos"
|
|
771
|
+
:TRL:
|
|
772
|
+
:one: "لیرهٔ ترکیه (۱۹۲۲ تا ۲۰۰۵)"
|
|
773
|
+
:other: "Turkish Lira (1922–2005)"
|
|
774
|
+
:TRY:
|
|
775
|
+
:one: "لیرهٔ ترکیه"
|
|
776
|
+
:other: "Turkish Lira"
|
|
777
|
+
:symbol: "₺"
|
|
778
|
+
:TTD:
|
|
779
|
+
:one: "دلار ترینیداد و توباگو"
|
|
780
|
+
:other: "Trinidad and Tobago dollars"
|
|
781
|
+
:symbol: "$"
|
|
782
|
+
:TWD:
|
|
783
|
+
:one: "دلار جدید تایوان"
|
|
784
|
+
:other: "New Taiwan dollars"
|
|
785
|
+
:symbol: "NT$"
|
|
786
|
+
:TZS:
|
|
787
|
+
:one: "شیلینگ تانزانیا"
|
|
788
|
+
:other: "Tanzanian shillings"
|
|
789
|
+
:UAH:
|
|
790
|
+
:one: "هریونیای اوکراین"
|
|
791
|
+
:other: "Ukrainian hryvnias"
|
|
792
|
+
:symbol: "₴"
|
|
793
|
+
:UAK:
|
|
794
|
+
:one: "Ukrainian karbovanets"
|
|
795
|
+
:other: "Ukrainian karbovantsiv"
|
|
796
|
+
:UGS:
|
|
797
|
+
:one: "شیلینگ اوگاندا (۱۹۶۶ تا ۱۹۸۷)"
|
|
798
|
+
:other: "Ugandan shillings (1966–1987)"
|
|
799
|
+
:UGX:
|
|
800
|
+
:one: "شیلینگ اوگاندا"
|
|
801
|
+
:other: "Ugandan shillings"
|
|
802
|
+
:USD:
|
|
803
|
+
:one: "دلار امریکا"
|
|
804
|
+
:other: "دلار امریکا"
|
|
805
|
+
:symbol: "$"
|
|
806
|
+
:USN:
|
|
807
|
+
:one: "دلار امریکا (روز بعد)"
|
|
808
|
+
:other: "US dollars (next day)"
|
|
809
|
+
:USS:
|
|
810
|
+
:one: "دلار امریکا (همان روز)"
|
|
811
|
+
:other: "US dollars (same day)"
|
|
812
|
+
:UYI:
|
|
813
|
+
:one: "Uruguayan peso (indexed units)"
|
|
814
|
+
:other: "Uruguayan pesos (indexed units)"
|
|
815
|
+
:UYP:
|
|
816
|
+
:one: "پزوی اوروگوئه (۱۹۷۵ تا ۱۹۹۳)"
|
|
817
|
+
:other: "Uruguayan pesos (1975–1993)"
|
|
818
|
+
:UYU:
|
|
819
|
+
:one: "پزوی اوروگوئه"
|
|
820
|
+
:other: "Uruguayan pesos"
|
|
821
|
+
:symbol: "$"
|
|
822
|
+
:UZS:
|
|
823
|
+
:one: "سوم ازبکستان"
|
|
824
|
+
:other: "Uzbekistan som"
|
|
825
|
+
:VEB:
|
|
826
|
+
:one: "Venezuelan bolívar (1871–2008)"
|
|
827
|
+
:other: "Venezuelan bolívars (1871–2008)"
|
|
828
|
+
:VEF:
|
|
829
|
+
:one: "بولیوار ونزوئلا"
|
|
830
|
+
:other: "Venezuelan bolívars"
|
|
831
|
+
:VND:
|
|
832
|
+
:one: "دانگ ویتنام"
|
|
833
|
+
:other: "Vietnamese dong"
|
|
834
|
+
:symbol: "₫"
|
|
835
|
+
:VNN:
|
|
836
|
+
:one: "Vietnamese dong (1978–1985)"
|
|
837
|
+
:other: "Vietnamese dong (1978–1985)"
|
|
838
|
+
:VUV:
|
|
839
|
+
:one: "واتوی وانوواتو"
|
|
840
|
+
:other: "Vanuatu vatus"
|
|
841
|
+
:WST:
|
|
842
|
+
:one: "تالای ساموا"
|
|
843
|
+
:other: "Samoan tala"
|
|
844
|
+
:XAF:
|
|
845
|
+
:one: "فرانک CFA مرکز آفریقا"
|
|
846
|
+
:other: "CFA francs BEAC"
|
|
847
|
+
:symbol: "FCFA"
|
|
848
|
+
:XAG:
|
|
849
|
+
:one: "نقره"
|
|
850
|
+
:other: "troy ounces of silver"
|
|
851
|
+
:XAU:
|
|
852
|
+
:one: "طلا"
|
|
853
|
+
:other: "troy ounces of gold"
|
|
854
|
+
:XBA:
|
|
855
|
+
:one: "European composite unit"
|
|
856
|
+
:other: "European composite units"
|
|
857
|
+
:XBB:
|
|
858
|
+
:one: "European monetary unit"
|
|
859
|
+
:other: "European monetary units"
|
|
860
|
+
:XBC:
|
|
861
|
+
:one: "European unit of account (XBC)"
|
|
862
|
+
:other: "European units of account (XBC)"
|
|
863
|
+
:XBD:
|
|
864
|
+
:one: "European unit of account (XBD)"
|
|
865
|
+
:other: "European units of account (XBD)"
|
|
866
|
+
:XCD:
|
|
867
|
+
:one: "دلار شرق کارائیب"
|
|
868
|
+
:other: "East Caribbean dollars"
|
|
869
|
+
:symbol: "$EC"
|
|
870
|
+
:XDR:
|
|
871
|
+
:one: "special drawing rights"
|
|
872
|
+
:other: "special drawing rights"
|
|
873
|
+
:XEU:
|
|
874
|
+
:one: "European currency unit"
|
|
875
|
+
:other: "European currency units"
|
|
876
|
+
:XFO:
|
|
877
|
+
:one: "فرانک طلای فرانسه"
|
|
878
|
+
:other: "French gold francs"
|
|
879
|
+
:XFU:
|
|
880
|
+
:one: "French UIC-franc"
|
|
881
|
+
:other: "French UIC-francs"
|
|
882
|
+
:XOF:
|
|
883
|
+
:one: "فرانک CFA غرب آفریقا"
|
|
884
|
+
:other: "CFA francs BCEAO"
|
|
885
|
+
:symbol: "CFA"
|
|
886
|
+
:XPD:
|
|
887
|
+
:one: "پالادیم"
|
|
888
|
+
:other: "troy ounces of palladium"
|
|
889
|
+
:XPF:
|
|
890
|
+
:one: "فرانک CFP"
|
|
891
|
+
:other: "CFP francs"
|
|
892
|
+
:symbol: "CFPF"
|
|
893
|
+
:XPT:
|
|
894
|
+
:one: "پلاتین"
|
|
895
|
+
:other: "troy ounces of platinum"
|
|
896
|
+
:XRE:
|
|
897
|
+
:one: "RINET Funds unit"
|
|
898
|
+
:other: "RINET Funds units"
|
|
899
|
+
:XSU:
|
|
900
|
+
:one: "Sucre"
|
|
901
|
+
:other: "Sucres"
|
|
902
|
+
:XTS:
|
|
903
|
+
:one: "Testing Currency unit"
|
|
904
|
+
:other: "Testing Currency units"
|
|
905
|
+
:XUA:
|
|
906
|
+
:one: "ADB unit of account"
|
|
907
|
+
:other: "ADB units of account"
|
|
908
|
+
:XXX:
|
|
909
|
+
:one: "(ارز نامشخص)"
|
|
910
|
+
:other: "(ارز نامشخص)"
|
|
911
|
+
:YDD:
|
|
912
|
+
:one: "دینار یمن"
|
|
913
|
+
:other: "Yemeni dinars"
|
|
914
|
+
:YER:
|
|
915
|
+
:one: "ریال یمن"
|
|
916
|
+
:other: "Yemeni rials"
|
|
917
|
+
:YUD:
|
|
918
|
+
:one: "Yugoslavian hard dinar (1966–1990)"
|
|
919
|
+
:other: "Yugoslavian hard dinars (1966–1990)"
|
|
920
|
+
:YUM:
|
|
921
|
+
:one: "Yugoslavian new dinar (1994–2002)"
|
|
922
|
+
:other: "Yugoslavian new dinars (1994–2002)"
|
|
923
|
+
:YUN:
|
|
924
|
+
:one: "Yugoslavian convertible dinar (1990–1992)"
|
|
925
|
+
:other: "Yugoslavian convertible dinars (1990–1992)"
|
|
926
|
+
:YUR:
|
|
927
|
+
:one: "Yugoslavian reformed dinar (1992–1993)"
|
|
928
|
+
:other: "Yugoslavian reformed dinars (1992–1993)"
|
|
929
|
+
:ZAL:
|
|
930
|
+
:one: "South African rand (financial)"
|
|
931
|
+
:other: "South African rands (financial)"
|
|
932
|
+
:ZAR:
|
|
933
|
+
:one: "راند افریقای جنوبی"
|
|
934
|
+
:other: "South African rand"
|
|
935
|
+
:ZMK:
|
|
936
|
+
:one: "کواچای زامبیا (۱۹۶۸ تا ۲۰۱۲)"
|
|
937
|
+
:other: "Zambian kwachas (1968–2012)"
|
|
938
|
+
:ZMW:
|
|
939
|
+
:one: "کواچای زامبیا"
|
|
940
|
+
:other: "Zambian kwachas"
|
|
941
|
+
:ZRN:
|
|
942
|
+
:one: "Zairean new zaire (1993–1998)"
|
|
943
|
+
:other: "Zairean new zaires (1993–1998)"
|
|
944
|
+
:ZRZ:
|
|
945
|
+
:one: "Zairean zaire (1971–1993)"
|
|
946
|
+
:other: "Zairean zaires (1971–1993)"
|
|
947
|
+
:ZWD:
|
|
948
|
+
:one: "دلار زیمبابوه (۱۹۸۰ تا ۲۰۰۸)"
|
|
949
|
+
:other: "Zimbabwean dollars (1980–2008)"
|
|
950
|
+
:ZWL:
|
|
951
|
+
:one: "دلار زیمبابوه (۲۰۰۹)"
|
|
952
|
+
:other: "Zimbabwean dollars (2009)"
|
|
953
|
+
:ZWR:
|
|
954
|
+
:one: "دلار زیمبابوه (۲۰۰۸)"
|
|
955
|
+
:other: "Zimbabwean dollars (2008)"
|