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,954 @@
|
|
|
1
|
-
---
|
|
2
|
-
:hu:
|
|
3
|
-
:currencies:
|
|
4
|
-
:ADP:
|
|
5
|
-
:one: Andorrai peseta
|
|
6
|
-
:other: Andorrai peseta
|
|
7
|
-
:AED:
|
|
8
|
-
:one: EAE
|
|
9
|
-
:other:
|
|
10
|
-
:AFA:
|
|
11
|
-
:one:
|
|
12
|
-
:other:
|
|
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: Angolai kwanza (1977
|
|
33
|
-
:other: Angolai kwanza (
|
|
34
|
-
:AON:
|
|
35
|
-
:one: Angolai új kwanza (1990
|
|
36
|
-
:other: Angolai új kwanza (
|
|
37
|
-
:AOR:
|
|
38
|
-
:one: Angolai kwanza reajustado (1995
|
|
39
|
-
:other: Angolai kwanza reajustado (
|
|
40
|
-
:ARA:
|
|
41
|
-
:one:
|
|
42
|
-
:other: Argentin austral
|
|
43
|
-
:ARL:
|
|
44
|
-
:one: Argentine peso ley (1970
|
|
45
|
-
:other: Argentine pesos ley (1970
|
|
46
|
-
:ARM:
|
|
47
|
-
:one: Argentine peso (1881
|
|
48
|
-
:other: Argentine pesos (1881
|
|
49
|
-
:ARP:
|
|
50
|
-
:one: Argentín peso (1983
|
|
51
|
-
:other:
|
|
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: Belga frank
|
|
91
|
-
:other: Belga frank
|
|
92
|
-
:
|
|
93
|
-
:one: Belga frank
|
|
94
|
-
:other: Belga frank
|
|
95
|
-
:
|
|
96
|
-
:one:
|
|
97
|
-
:other:
|
|
98
|
-
:
|
|
99
|
-
:one:
|
|
100
|
-
:other:
|
|
101
|
-
:
|
|
102
|
-
:one:
|
|
103
|
-
:other:
|
|
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
|
-
|
|
367
|
-
:
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
:
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
:
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
:
|
|
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
|
-
:
|
|
402
|
-
:one:
|
|
403
|
-
:other:
|
|
404
|
-
:
|
|
405
|
-
:one:
|
|
406
|
-
:other:
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
:
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
:
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
:
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
:
|
|
419
|
-
:
|
|
420
|
-
:
|
|
421
|
-
:one:
|
|
422
|
-
:other:
|
|
423
|
-
:
|
|
424
|
-
:one:
|
|
425
|
-
:other:
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
:
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
:
|
|
432
|
-
:
|
|
433
|
-
:
|
|
434
|
-
:one:
|
|
435
|
-
:other:
|
|
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
|
-
:
|
|
461
|
-
:one:
|
|
462
|
-
:other:
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
:
|
|
466
|
-
|
|
467
|
-
:
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
:
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
:
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
:
|
|
477
|
-
:
|
|
478
|
-
:
|
|
479
|
-
:one:
|
|
480
|
-
:other:
|
|
481
|
-
:
|
|
482
|
-
:one:
|
|
483
|
-
:other:
|
|
484
|
-
:
|
|
485
|
-
:one:
|
|
486
|
-
:other:
|
|
487
|
-
:
|
|
488
|
-
:one:
|
|
489
|
-
:other:
|
|
490
|
-
:
|
|
491
|
-
:one:
|
|
492
|
-
:other:
|
|
493
|
-
:
|
|
494
|
-
:one:
|
|
495
|
-
:other:
|
|
496
|
-
:
|
|
497
|
-
:one:
|
|
498
|
-
:other:
|
|
499
|
-
:
|
|
500
|
-
:one:
|
|
501
|
-
:other:
|
|
502
|
-
:
|
|
503
|
-
:one:
|
|
504
|
-
:other:
|
|
505
|
-
:
|
|
506
|
-
:one:
|
|
507
|
-
:other:
|
|
508
|
-
:
|
|
509
|
-
:one:
|
|
510
|
-
:other:
|
|
511
|
-
:
|
|
512
|
-
:one:
|
|
513
|
-
:other:
|
|
514
|
-
:
|
|
515
|
-
:one:
|
|
516
|
-
:other:
|
|
517
|
-
:
|
|
518
|
-
:one:
|
|
519
|
-
:other:
|
|
520
|
-
:
|
|
521
|
-
:one:
|
|
522
|
-
:other:
|
|
523
|
-
:
|
|
524
|
-
:one:
|
|
525
|
-
:other:
|
|
526
|
-
:
|
|
527
|
-
:one:
|
|
528
|
-
:other:
|
|
529
|
-
:
|
|
530
|
-
:one:
|
|
531
|
-
:other:
|
|
532
|
-
:
|
|
533
|
-
:one:
|
|
534
|
-
:other:
|
|
535
|
-
:
|
|
536
|
-
:one:
|
|
537
|
-
:other:
|
|
538
|
-
:
|
|
539
|
-
:one:
|
|
540
|
-
:other:
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
:
|
|
544
|
-
:
|
|
545
|
-
:
|
|
546
|
-
:one:
|
|
547
|
-
:other:
|
|
548
|
-
:
|
|
549
|
-
:one:
|
|
550
|
-
:other:
|
|
551
|
-
:
|
|
552
|
-
:one:
|
|
553
|
-
:other:
|
|
554
|
-
:
|
|
555
|
-
:one:
|
|
556
|
-
:other:
|
|
557
|
-
:
|
|
558
|
-
:one:
|
|
559
|
-
:other:
|
|
560
|
-
:
|
|
561
|
-
:one:
|
|
562
|
-
:other:
|
|
563
|
-
:
|
|
564
|
-
:one:
|
|
565
|
-
:other:
|
|
566
|
-
:
|
|
567
|
-
:one:
|
|
568
|
-
:other:
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
:
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
:
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
:
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
:
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
:
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
:
|
|
587
|
-
:
|
|
588
|
-
:
|
|
589
|
-
:one:
|
|
590
|
-
:other:
|
|
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
|
-
:
|
|
616
|
-
:one:
|
|
617
|
-
:other:
|
|
618
|
-
:
|
|
619
|
-
:one:
|
|
620
|
-
:other:
|
|
621
|
-
:
|
|
622
|
-
:one:
|
|
623
|
-
:other:
|
|
624
|
-
:
|
|
625
|
-
:one:
|
|
626
|
-
:other:
|
|
627
|
-
:
|
|
628
|
-
:one:
|
|
629
|
-
:other:
|
|
630
|
-
:
|
|
631
|
-
:one:
|
|
632
|
-
:other:
|
|
633
|
-
:
|
|
634
|
-
:one:
|
|
635
|
-
:other:
|
|
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
|
-
:
|
|
676
|
-
:one:
|
|
677
|
-
:other:
|
|
678
|
-
:
|
|
679
|
-
:one:
|
|
680
|
-
:other:
|
|
681
|
-
:
|
|
682
|
-
:one:
|
|
683
|
-
:other:
|
|
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
|
-
:
|
|
731
|
-
:one:
|
|
732
|
-
:other:
|
|
733
|
-
:
|
|
734
|
-
:one:
|
|
735
|
-
:other:
|
|
736
|
-
:
|
|
737
|
-
:one:
|
|
738
|
-
:other:
|
|
739
|
-
:
|
|
740
|
-
:one:
|
|
741
|
-
:other:
|
|
742
|
-
:
|
|
743
|
-
:one:
|
|
744
|
-
:other:
|
|
745
|
-
:
|
|
746
|
-
:one:
|
|
747
|
-
:other:
|
|
748
|
-
:symbol:
|
|
749
|
-
:
|
|
750
|
-
:one:
|
|
751
|
-
:other:
|
|
752
|
-
:
|
|
753
|
-
:one:
|
|
754
|
-
:other:
|
|
755
|
-
:
|
|
756
|
-
:one:
|
|
757
|
-
:other:
|
|
758
|
-
:
|
|
759
|
-
:one:
|
|
760
|
-
:other:
|
|
761
|
-
:
|
|
762
|
-
:one:
|
|
763
|
-
:other:
|
|
764
|
-
:
|
|
765
|
-
:one:
|
|
766
|
-
:other:
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
:
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
:
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
:
|
|
776
|
-
:
|
|
777
|
-
:
|
|
778
|
-
:one:
|
|
779
|
-
:other:
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
:
|
|
783
|
-
|
|
784
|
-
:
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
:
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
:
|
|
791
|
-
:
|
|
792
|
-
:
|
|
793
|
-
:one:
|
|
794
|
-
:other:
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
:
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
:
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
:
|
|
804
|
-
:
|
|
805
|
-
:
|
|
806
|
-
:one:
|
|
807
|
-
:other:
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
:
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
:
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
:
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
:
|
|
820
|
-
:
|
|
821
|
-
:
|
|
822
|
-
:one:
|
|
823
|
-
:other:
|
|
824
|
-
:
|
|
825
|
-
:one:
|
|
826
|
-
:other:
|
|
827
|
-
:
|
|
828
|
-
:one:
|
|
829
|
-
:other:
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
:
|
|
833
|
-
:
|
|
834
|
-
:
|
|
835
|
-
:one:
|
|
836
|
-
:other:
|
|
837
|
-
:
|
|
838
|
-
:one:
|
|
839
|
-
:other:
|
|
840
|
-
:
|
|
841
|
-
:one:
|
|
842
|
-
:other:
|
|
843
|
-
:
|
|
844
|
-
:one: CFA frank
|
|
845
|
-
:other: CFA
|
|
846
|
-
:symbol:
|
|
847
|
-
:
|
|
848
|
-
:one:
|
|
849
|
-
:other:
|
|
850
|
-
:
|
|
851
|
-
:one:
|
|
852
|
-
:other:
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
:
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
:
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
:
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
:
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
:
|
|
868
|
-
:
|
|
869
|
-
:
|
|
870
|
-
:one:
|
|
871
|
-
:other:
|
|
872
|
-
:
|
|
873
|
-
:one:
|
|
874
|
-
:other:
|
|
875
|
-
:
|
|
876
|
-
:one:
|
|
877
|
-
:other:
|
|
878
|
-
:
|
|
879
|
-
:one:
|
|
880
|
-
:other:
|
|
881
|
-
:
|
|
882
|
-
:one:
|
|
883
|
-
:other:
|
|
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
|
-
:
|
|
916
|
-
|
|
1
|
+
---
|
|
2
|
+
:hu:
|
|
3
|
+
:currencies:
|
|
4
|
+
:ADP:
|
|
5
|
+
:one: "Andorrai peseta"
|
|
6
|
+
:other: "Andorrai peseta"
|
|
7
|
+
:AED:
|
|
8
|
+
:one: "EAE-dirham"
|
|
9
|
+
:other: "EAE-dirham"
|
|
10
|
+
:AFA:
|
|
11
|
+
:one: "afgán afghani (1927–2002)"
|
|
12
|
+
:other: "afgán afghani (1927–2002)"
|
|
13
|
+
:AFN:
|
|
14
|
+
:one: "afgán afghani"
|
|
15
|
+
:other: "afgán afghani"
|
|
16
|
+
:ALK:
|
|
17
|
+
:one: "Albanian lek (1946–1965)"
|
|
18
|
+
:other: "Albanian lekë (1946–1965)"
|
|
19
|
+
:ALL:
|
|
20
|
+
:one: "albán lek"
|
|
21
|
+
:other: "albán lek"
|
|
22
|
+
:AMD:
|
|
23
|
+
:one: "örmény dram"
|
|
24
|
+
:other: "örmény dram"
|
|
25
|
+
:ANG:
|
|
26
|
+
:one: "holland antilláki forint"
|
|
27
|
+
:other: "holland antilláki forint"
|
|
28
|
+
:AOA:
|
|
29
|
+
:one: "angolai kwanza"
|
|
30
|
+
:other: "angolai kwanza"
|
|
31
|
+
:AOK:
|
|
32
|
+
:one: "Angolai kwanza (1977–1990)"
|
|
33
|
+
:other: "Angolai kwanza (1977–1990)"
|
|
34
|
+
:AON:
|
|
35
|
+
:one: "Angolai új kwanza (1990–2000)"
|
|
36
|
+
:other: "Angolai új kwanza (1990–2000)"
|
|
37
|
+
:AOR:
|
|
38
|
+
:one: "Angolai kwanza reajustado (1995–1999)"
|
|
39
|
+
:other: "Angolai kwanza reajustado (1995–1999)"
|
|
40
|
+
:ARA:
|
|
41
|
+
:one: "Argentin austral"
|
|
42
|
+
:other: "Argentin austral"
|
|
43
|
+
:ARL:
|
|
44
|
+
:one: "Argentine peso ley (1970–1983)"
|
|
45
|
+
:other: "Argentine pesos ley (1970–1983)"
|
|
46
|
+
:ARM:
|
|
47
|
+
:one: "Argentine peso (1881–1970)"
|
|
48
|
+
:other: "Argentine pesos (1881–1970)"
|
|
49
|
+
:ARP:
|
|
50
|
+
:one: "Argentín peso (1983–1985)"
|
|
51
|
+
:other: "Argentín peso (1983–1985)"
|
|
52
|
+
:ARS:
|
|
53
|
+
:one: "argentin peso"
|
|
54
|
+
:other: "argentin peso"
|
|
55
|
+
:symbol: "$"
|
|
56
|
+
:ATS:
|
|
57
|
+
:one: "Osztrák schilling"
|
|
58
|
+
:other: "Osztrák schilling"
|
|
59
|
+
:AUD:
|
|
60
|
+
:one: "ausztrál dollár"
|
|
61
|
+
:other: "ausztrál dollár"
|
|
62
|
+
:symbol: "AUD"
|
|
63
|
+
:AWG:
|
|
64
|
+
:one: "arubai florin"
|
|
65
|
+
:other: "arubai florin"
|
|
66
|
+
:AZM:
|
|
67
|
+
:one: "azerbajdzsáni manat (1993–2006)"
|
|
68
|
+
:other: "azerbajdzsáni manat (1993–2006)"
|
|
69
|
+
:AZN:
|
|
70
|
+
:one: "azerbajdzsáni manat"
|
|
71
|
+
:other: "azerbajdzsáni manat"
|
|
72
|
+
:BAD:
|
|
73
|
+
:one: "Bosznia-hercegovinai dínár (1992–1994)"
|
|
74
|
+
:other: "Bosznia-hercegovinai dínár (1992–1994)"
|
|
75
|
+
:BAM:
|
|
76
|
+
:one: "bosznia-hercegovinai konvertibilis márka"
|
|
77
|
+
:other: "bosznia-hercegovinai konvertibilis márka"
|
|
78
|
+
:BAN:
|
|
79
|
+
:one: "Bosnia-Herzegovina new dinar (1994–1997)"
|
|
80
|
+
:other: "Bosnia-Herzegovina new dinars (1994–1997)"
|
|
81
|
+
:BBD:
|
|
82
|
+
:one: "barbadosi dollár"
|
|
83
|
+
:other: "barbadosi dollár"
|
|
84
|
+
:symbol: "$"
|
|
85
|
+
:BDT:
|
|
86
|
+
:one: "bangladesi taka"
|
|
87
|
+
:other: "bangladesi taka"
|
|
88
|
+
:symbol: "৳"
|
|
89
|
+
:BEC:
|
|
90
|
+
:one: "Belga frank (konvertibilis)"
|
|
91
|
+
:other: "Belga frank (konvertibilis)"
|
|
92
|
+
:BEF:
|
|
93
|
+
:one: "Belga frank"
|
|
94
|
+
:other: "Belga frank"
|
|
95
|
+
:BEL:
|
|
96
|
+
:one: "Belga frank (pénzügyi)"
|
|
97
|
+
:other: "Belga frank (pénzügyi)"
|
|
98
|
+
:BGL:
|
|
99
|
+
:one: "Bolgár kemény leva"
|
|
100
|
+
:other: "Bolgár kemény leva"
|
|
101
|
+
:BGM:
|
|
102
|
+
:one: "Bulgarian socialist lev"
|
|
103
|
+
:other: "Bulgarian socialist leva"
|
|
104
|
+
:BGN:
|
|
105
|
+
:one: "bolgár új leva"
|
|
106
|
+
:other: "bolgár új leva"
|
|
107
|
+
:BGO:
|
|
108
|
+
:one: "Bulgarian lev (1879–1952)"
|
|
109
|
+
:other: "Bulgarian leva (1879–1952)"
|
|
110
|
+
:BHD:
|
|
111
|
+
:one: "bahreini dinár"
|
|
112
|
+
:other: "bahreini dinár"
|
|
113
|
+
:BIF:
|
|
114
|
+
:one: "burundi frank"
|
|
115
|
+
:other: "burundi frank"
|
|
116
|
+
:BMD:
|
|
117
|
+
:one: "bermudai dollár"
|
|
118
|
+
:other: "bermudai dollár"
|
|
119
|
+
:symbol: "$"
|
|
120
|
+
:BND:
|
|
121
|
+
:one: "brunei dollár"
|
|
122
|
+
:other: "brunei dollár"
|
|
123
|
+
:symbol: "$"
|
|
124
|
+
:BOB:
|
|
125
|
+
:one: "bolíviai boliviano"
|
|
126
|
+
:other: "bolíviai boliviano"
|
|
127
|
+
:BOL:
|
|
128
|
+
:one: "Bolivian boliviano (1863–1963)"
|
|
129
|
+
:other: "Bolivian bolivianos (1863–1963)"
|
|
130
|
+
:BOP:
|
|
131
|
+
:one: "Bolíviai peso"
|
|
132
|
+
:other: "Bolíviai peso"
|
|
133
|
+
:BOV:
|
|
134
|
+
:one: "Bolíviai mvdol"
|
|
135
|
+
:other: "Bolíviai mvdol"
|
|
136
|
+
:BRB:
|
|
137
|
+
:one: "Brazi cruzeiro novo (1967–1986)"
|
|
138
|
+
:other: "Brazi cruzeiro novo (1967–1986)"
|
|
139
|
+
:BRC:
|
|
140
|
+
:one: "Brazi cruzado (1986–1989)"
|
|
141
|
+
:other: "Brazi cruzado (1986–1989)"
|
|
142
|
+
:BRE:
|
|
143
|
+
:one: "Brazil cruzeiro (1990–1993)"
|
|
144
|
+
:other: "Brazil cruzeiro (1990–1993)"
|
|
145
|
+
:BRL:
|
|
146
|
+
:one: "brazil real"
|
|
147
|
+
:other: "brazil real"
|
|
148
|
+
:symbol: "BRL"
|
|
149
|
+
:BRN:
|
|
150
|
+
:one: "Brazil cruzado novo (1989–1990)"
|
|
151
|
+
:other: "Brazil cruzado novo (1989–1990)"
|
|
152
|
+
:BRR:
|
|
153
|
+
:one: "Brazil cruzeiro (1993–1994)"
|
|
154
|
+
:other: "Brazil cruzeiro (1993–1994)"
|
|
155
|
+
:BRZ:
|
|
156
|
+
:one: "Brazilian cruzeiro (1942–1967)"
|
|
157
|
+
:other: "Brazilian cruzeiros (1942–1967)"
|
|
158
|
+
:BSD:
|
|
159
|
+
:one: "bahamai dollár"
|
|
160
|
+
:other: "bahamai dollár"
|
|
161
|
+
:symbol: "$"
|
|
162
|
+
:BTN:
|
|
163
|
+
:one: "bhutáni ngultrum"
|
|
164
|
+
:other: "bhutáni ngultrum"
|
|
165
|
+
:BUK:
|
|
166
|
+
:one: "Burmai kyat"
|
|
167
|
+
:other: "Burmese kyats"
|
|
168
|
+
:BWP:
|
|
169
|
+
:one: "botswanai pula"
|
|
170
|
+
:other: "botswanai pula"
|
|
171
|
+
:BYB:
|
|
172
|
+
:one: "Fehérorosz új rubel (1994–1999)"
|
|
173
|
+
:other: "Belarusian new rubles (1994–1999)"
|
|
174
|
+
:BYR:
|
|
175
|
+
:one: "fehérorosz rubel"
|
|
176
|
+
:other: "fehérorosz rubel"
|
|
177
|
+
:symbol: "р."
|
|
178
|
+
:BZD:
|
|
179
|
+
:one: "belize-i dollár"
|
|
180
|
+
:other: "belize-i dollár"
|
|
181
|
+
:symbol: "$"
|
|
182
|
+
:CAD:
|
|
183
|
+
:one: "kanadai dollár"
|
|
184
|
+
:other: "kanadai dollár"
|
|
185
|
+
:symbol: "CAD"
|
|
186
|
+
:CDF:
|
|
187
|
+
:one: "kongói frank"
|
|
188
|
+
:other: "kongói frank"
|
|
189
|
+
:CHE:
|
|
190
|
+
:one: "WIR euro"
|
|
191
|
+
:other: "WIR euros"
|
|
192
|
+
:CHF:
|
|
193
|
+
:one: "svájci frank"
|
|
194
|
+
:other: "svájci frank"
|
|
195
|
+
:CHW:
|
|
196
|
+
:one: "WIR frank"
|
|
197
|
+
:other: "WIR francs"
|
|
198
|
+
:CLE:
|
|
199
|
+
:one: "Chilean escudo"
|
|
200
|
+
:other: "Chilean escudos"
|
|
201
|
+
:CLF:
|
|
202
|
+
:one: "Chilei unidades de fomento"
|
|
203
|
+
:other: "Chilean units of account (UF)"
|
|
204
|
+
:CLP:
|
|
205
|
+
:one: "chilei peso"
|
|
206
|
+
:other: "chilei peso"
|
|
207
|
+
:symbol: "$"
|
|
208
|
+
:CNX:
|
|
209
|
+
:one: "Chinese People’s Bank dollar"
|
|
210
|
+
:other: "Chinese People’s Bank dollars"
|
|
211
|
+
:CNY:
|
|
212
|
+
:one: "Kínai jüan renminbi"
|
|
213
|
+
:other: "Kínai jüan renminbi"
|
|
214
|
+
:symbol: "CNY"
|
|
215
|
+
:COP:
|
|
216
|
+
:one: "kolumbiai peso"
|
|
217
|
+
:other: "kolumbiai peso"
|
|
218
|
+
:symbol: "$"
|
|
219
|
+
:COU:
|
|
220
|
+
:one: "Unidad de Valor Real"
|
|
221
|
+
:other: "Colombian real value units"
|
|
222
|
+
:CRC:
|
|
223
|
+
:one: "Costa Rica-i colon"
|
|
224
|
+
:other: "Costa Rica-i colon"
|
|
225
|
+
:symbol: "₡"
|
|
226
|
+
:CSD:
|
|
227
|
+
:one: "szerb dinár"
|
|
228
|
+
:other: "Serbian dinars (2002–2006)"
|
|
229
|
+
:CSK:
|
|
230
|
+
:one: "Csehszlovák kemény korona"
|
|
231
|
+
:other: "Czechoslovak hard korunas"
|
|
232
|
+
:CUC:
|
|
233
|
+
:one: "kubai konvertibilis peso"
|
|
234
|
+
:other: "kubai konvertibilis peso"
|
|
235
|
+
:CUP:
|
|
236
|
+
:one: "kubai peso"
|
|
237
|
+
:other: "kubai peso"
|
|
238
|
+
:symbol: "$"
|
|
239
|
+
:CVE:
|
|
240
|
+
:one: "Cape Verde-i escudo"
|
|
241
|
+
:other: "Cape Verde-i escudo"
|
|
242
|
+
:CYP:
|
|
243
|
+
:one: "Ciprusi font"
|
|
244
|
+
:other: "Cypriot pounds"
|
|
245
|
+
:CZK:
|
|
246
|
+
:one: "cseh korona"
|
|
247
|
+
:other: "cseh korona"
|
|
248
|
+
:DDM:
|
|
249
|
+
:one: "Kelet-Német márka"
|
|
250
|
+
:other: "East German marks"
|
|
251
|
+
:DEM:
|
|
252
|
+
:one: "Német márka"
|
|
253
|
+
:other: "German marks"
|
|
254
|
+
:DJF:
|
|
255
|
+
:one: "dzsibuti frank"
|
|
256
|
+
:other: "dzsibuti frank"
|
|
257
|
+
:DKK:
|
|
258
|
+
:one: "dán korona"
|
|
259
|
+
:other: "dán korona"
|
|
260
|
+
:DOP:
|
|
261
|
+
:one: "dominikai peso"
|
|
262
|
+
:other: "dominikai peso"
|
|
263
|
+
:symbol: "$"
|
|
264
|
+
:DZD:
|
|
265
|
+
:one: "algériai dínár"
|
|
266
|
+
:other: "algériai dínár"
|
|
267
|
+
:ECS:
|
|
268
|
+
:one: "Ecuadori sucre"
|
|
269
|
+
:other: "Ecuadorian sucres"
|
|
270
|
+
:ECV:
|
|
271
|
+
:one: "Ecuadori Unidad de Valor Constante (UVC)"
|
|
272
|
+
:other: "Ecuadorian units of constant value"
|
|
273
|
+
:EEK:
|
|
274
|
+
:one: "Észt korona"
|
|
275
|
+
:other: "Estonian kroons"
|
|
276
|
+
:EGP:
|
|
277
|
+
:one: "egyiptomi font"
|
|
278
|
+
:other: "egyiptomi font"
|
|
279
|
+
:ERN:
|
|
280
|
+
:one: "eritreai nakfa"
|
|
281
|
+
:other: "eritreai nakfa"
|
|
282
|
+
:ESA:
|
|
283
|
+
:one: "spanyol peseta (A–kontó)"
|
|
284
|
+
:other: "Spanish pesetas (A account)"
|
|
285
|
+
:ESB:
|
|
286
|
+
:one: "spanyol peseta (konvertibilis kontó)"
|
|
287
|
+
:other: "Spanish pesetas (convertible account)"
|
|
288
|
+
:ESP:
|
|
289
|
+
:one: "Spanyol peseta"
|
|
290
|
+
:other: "Spanish pesetas"
|
|
291
|
+
:symbol: "₧"
|
|
292
|
+
:ETB:
|
|
293
|
+
:one: "etiópiai birr"
|
|
294
|
+
:other: "etiópiai birr"
|
|
295
|
+
:EUR:
|
|
296
|
+
:one: "euró"
|
|
297
|
+
:other: "euró"
|
|
298
|
+
:symbol: "EUR"
|
|
299
|
+
:FIM:
|
|
300
|
+
:one: "Finn markka"
|
|
301
|
+
:other: "Finnish markkas"
|
|
302
|
+
:FJD:
|
|
303
|
+
:one: "fidzsi dollár"
|
|
304
|
+
:other: "fidzsi dollár"
|
|
305
|
+
:symbol: "$"
|
|
306
|
+
:FKP:
|
|
307
|
+
:one: "falkland-szigeteki font"
|
|
308
|
+
:other: "falkland-szigeteki font"
|
|
309
|
+
:FRF:
|
|
310
|
+
:one: "Francia frank"
|
|
311
|
+
:other: "French francs"
|
|
312
|
+
:GBP:
|
|
313
|
+
:one: "brit font sterling"
|
|
314
|
+
:other: "brit font sterling"
|
|
315
|
+
:symbol: "GBP"
|
|
316
|
+
:GEK:
|
|
317
|
+
:one: "Grúz kupon larit"
|
|
318
|
+
:other: "Georgian kupon larits"
|
|
319
|
+
:GEL:
|
|
320
|
+
:one: "grúz lari"
|
|
321
|
+
:other: "grúz lari"
|
|
322
|
+
:GHC:
|
|
323
|
+
:one: "Ghánai cedi (1979–2007)"
|
|
324
|
+
:other: "Ghanaian cedis (1979–2007)"
|
|
325
|
+
:GHS:
|
|
326
|
+
:one: "ghánai cedi"
|
|
327
|
+
:other: "ghánai cedi"
|
|
328
|
+
:symbol: "₵"
|
|
329
|
+
:GIP:
|
|
330
|
+
:one: "gibraltári font"
|
|
331
|
+
:other: "gibraltári font"
|
|
332
|
+
:symbol: "£"
|
|
333
|
+
:GMD:
|
|
334
|
+
:one: "gambiai dalasi"
|
|
335
|
+
:other: "gambiai dalasi"
|
|
336
|
+
:GNF:
|
|
337
|
+
:one: "guineai frank"
|
|
338
|
+
:other: "guineai frank"
|
|
339
|
+
:GNS:
|
|
340
|
+
:one: "Guineai syli"
|
|
341
|
+
:other: "Guinean sylis"
|
|
342
|
+
:GQE:
|
|
343
|
+
:one: "Egyenlítői-guineai ekwele"
|
|
344
|
+
:other: "Egyenlítői-guineai ekwele"
|
|
345
|
+
:GRD:
|
|
346
|
+
:one: "Görög drachma"
|
|
347
|
+
:other: "Greek drachmas"
|
|
348
|
+
:GTQ:
|
|
349
|
+
:one: "guatemalai quetzal"
|
|
350
|
+
:other: "guatemalai quetzal"
|
|
351
|
+
:GWE:
|
|
352
|
+
:one: "Portugál guinea escudo"
|
|
353
|
+
:other: "Portuguese Guinea escudos"
|
|
354
|
+
:GWP:
|
|
355
|
+
:one: "Guinea-Bissaui peso"
|
|
356
|
+
:other: "Guinea-Bissau pesos"
|
|
357
|
+
:GYD:
|
|
358
|
+
:one: "guyanai dollár"
|
|
359
|
+
:other: "guyanai dollár"
|
|
360
|
+
:symbol: "$"
|
|
361
|
+
:HKD:
|
|
362
|
+
:one: "hongkongi dollár"
|
|
363
|
+
:other: "hongkongi dollár"
|
|
364
|
+
:symbol: "HKD"
|
|
365
|
+
:HNL:
|
|
366
|
+
:one: "hodurasi lempira"
|
|
367
|
+
:other: "hodurasi lempira"
|
|
368
|
+
:HRD:
|
|
369
|
+
:one: "Horvát dínár"
|
|
370
|
+
:other: "Croatian dinars"
|
|
371
|
+
:HRK:
|
|
372
|
+
:one: "horvát kuna"
|
|
373
|
+
:other: "horvát kuna"
|
|
374
|
+
:HTG:
|
|
375
|
+
:one: "haiti gourde"
|
|
376
|
+
:other: "haiti gourde"
|
|
377
|
+
:HUF:
|
|
378
|
+
:one: "magyar forint"
|
|
379
|
+
:other: "magyar forint"
|
|
380
|
+
:symbol: "Ft"
|
|
381
|
+
:IDR:
|
|
382
|
+
:one: "indonéz rúpia"
|
|
383
|
+
:other: "indonéz rúpia"
|
|
384
|
+
:IEP:
|
|
385
|
+
:one: "Ír font"
|
|
386
|
+
:other: "Irish pounds"
|
|
387
|
+
:ILP:
|
|
388
|
+
:one: "Izraeli font"
|
|
389
|
+
:other: "Israeli pounds"
|
|
390
|
+
:ILR:
|
|
391
|
+
:one: "Israeli sheqel (1980–1985)"
|
|
392
|
+
:other: "Israeli sheqels (1980–1985)"
|
|
393
|
+
:ILS:
|
|
394
|
+
:one: "izraeli új sékel"
|
|
395
|
+
:other: "izraeli új sékel"
|
|
396
|
+
:symbol: "ILS"
|
|
397
|
+
:INR:
|
|
398
|
+
:one: "indiai rúpia"
|
|
399
|
+
:other: "indiai rúpia"
|
|
400
|
+
:symbol: "INR"
|
|
401
|
+
:IQD:
|
|
402
|
+
:one: "iraki dínár"
|
|
403
|
+
:other: "iraki dínár"
|
|
404
|
+
:IRR:
|
|
405
|
+
:one: "iráni rial"
|
|
406
|
+
:other: "iráni rial"
|
|
407
|
+
:ISJ:
|
|
408
|
+
:one: "Icelandic króna (1918–1981)"
|
|
409
|
+
:other: "Icelandic krónur (1918–1981)"
|
|
410
|
+
:ISK:
|
|
411
|
+
:one: "izlandi korona"
|
|
412
|
+
:other: "izlandi korona"
|
|
413
|
+
:ITL:
|
|
414
|
+
:one: "Olasz líra"
|
|
415
|
+
:other: "Italian liras"
|
|
416
|
+
:JMD:
|
|
417
|
+
:one: "jamaicai dollár"
|
|
418
|
+
:other: "jamaicai dollár"
|
|
419
|
+
:symbol: "$"
|
|
420
|
+
:JOD:
|
|
421
|
+
:one: "jordániai dínár"
|
|
422
|
+
:other: "jordániai dínár"
|
|
423
|
+
:JPY:
|
|
424
|
+
:one: "japán jen"
|
|
425
|
+
:other: "japán jen"
|
|
426
|
+
:symbol: "¥"
|
|
427
|
+
:KES:
|
|
428
|
+
:one: "kenyai shilling"
|
|
429
|
+
:other: "kenyai shilling"
|
|
430
|
+
:KGS:
|
|
431
|
+
:one: "kirgizisztáni szom"
|
|
432
|
+
:other: "kirgizisztáni szom"
|
|
433
|
+
:KHR:
|
|
434
|
+
:one: "kambodzsai riel"
|
|
435
|
+
:other: "kambodzsai riel"
|
|
436
|
+
:symbol: "៛"
|
|
437
|
+
:KMF:
|
|
438
|
+
:one: "comorei frank"
|
|
439
|
+
:other: "comorei frank"
|
|
440
|
+
:KPW:
|
|
441
|
+
:one: "észak-koreai won"
|
|
442
|
+
:other: "észak-koreai won"
|
|
443
|
+
:KRH:
|
|
444
|
+
:one: "South Korean hwan (1953–1962)"
|
|
445
|
+
:other: "South Korean hwan (1953–1962)"
|
|
446
|
+
:KRO:
|
|
447
|
+
:one: "South Korean won (1945–1953)"
|
|
448
|
+
:other: "South Korean won (1945–1953)"
|
|
449
|
+
:KRW:
|
|
450
|
+
:one: "dél-koreai won"
|
|
451
|
+
:other: "dél-koreai won"
|
|
452
|
+
:symbol: "KRW"
|
|
453
|
+
:KWD:
|
|
454
|
+
:one: "kuvaiti dínár"
|
|
455
|
+
:other: "kuvaiti dínár"
|
|
456
|
+
:KYD:
|
|
457
|
+
:one: "kajmán-szigeteki dollár"
|
|
458
|
+
:other: "kajmán-szigeteki dollár"
|
|
459
|
+
:symbol: "$"
|
|
460
|
+
:KZT:
|
|
461
|
+
:one: "kazahsztáni tenge"
|
|
462
|
+
:other: "kazahsztáni tenge"
|
|
463
|
+
:symbol: "₸"
|
|
464
|
+
:LAK:
|
|
465
|
+
:one: "laoszi kip"
|
|
466
|
+
:other: "laoszi kip"
|
|
467
|
+
:symbol: "₭"
|
|
468
|
+
:LBP:
|
|
469
|
+
:one: "libanoni font"
|
|
470
|
+
:other: "libanoni font"
|
|
471
|
+
:LKR:
|
|
472
|
+
:one: "Srí Lanka-i rúpia"
|
|
473
|
+
:other: "Srí Lanka-i rúpia"
|
|
474
|
+
:LRD:
|
|
475
|
+
:one: "libériai dollár"
|
|
476
|
+
:other: "libériai dollár"
|
|
477
|
+
:symbol: "$"
|
|
478
|
+
:LSL:
|
|
479
|
+
:one: "Lesothoi loti"
|
|
480
|
+
:other: "Lesotho lotis"
|
|
481
|
+
:LTL:
|
|
482
|
+
:one: "litvániai litas"
|
|
483
|
+
:other: "litvániai litas"
|
|
484
|
+
:LTT:
|
|
485
|
+
:one: "Litvániai talonas"
|
|
486
|
+
:other: "Lithuanian talonases"
|
|
487
|
+
:LUC:
|
|
488
|
+
:one: "luxemburgi konvertibilis frank"
|
|
489
|
+
:other: "Luxembourgian convertible francs"
|
|
490
|
+
:LUF:
|
|
491
|
+
:one: "Luxemburgi frank"
|
|
492
|
+
:other: "Luxembourgian francs"
|
|
493
|
+
:LUL:
|
|
494
|
+
:one: "luxemburgi pénzügyi frank"
|
|
495
|
+
:other: "Luxembourg financial francs"
|
|
496
|
+
:LVL:
|
|
497
|
+
:one: "lett lats"
|
|
498
|
+
:other: "lett lats"
|
|
499
|
+
:LVR:
|
|
500
|
+
:one: "Lett rubel"
|
|
501
|
+
:other: "Latvian rubles"
|
|
502
|
+
:LYD:
|
|
503
|
+
:one: "líbiai dínár"
|
|
504
|
+
:other: "líbiai dínár"
|
|
505
|
+
:MAD:
|
|
506
|
+
:one: "marokkói dirham"
|
|
507
|
+
:other: "marokkói dirham"
|
|
508
|
+
:MAF:
|
|
509
|
+
:one: "Marokkói frank"
|
|
510
|
+
:other: "Moroccan francs"
|
|
511
|
+
:MCF:
|
|
512
|
+
:one: "Monegasque franc"
|
|
513
|
+
:other: "Monegasque francs"
|
|
514
|
+
:MDC:
|
|
515
|
+
:one: "Moldovan cupon"
|
|
516
|
+
:other: "Moldovan cupon"
|
|
517
|
+
:MDL:
|
|
518
|
+
:one: "moldován lei"
|
|
519
|
+
:other: "moldován lei"
|
|
520
|
+
:MGA:
|
|
521
|
+
:one: "madagaszkári ariary"
|
|
522
|
+
:other: "madagaszkári ariary"
|
|
523
|
+
:MGF:
|
|
524
|
+
:one: "Madagaszkári frank"
|
|
525
|
+
:other: "Malagasy francs"
|
|
526
|
+
:MKD:
|
|
527
|
+
:one: "macedon dínár"
|
|
528
|
+
:other: "macedon dínár"
|
|
529
|
+
:MKN:
|
|
530
|
+
:one: "Macedonian denar (1992–1993)"
|
|
531
|
+
:other: "Macedonian denari (1992–1993)"
|
|
532
|
+
:MLF:
|
|
533
|
+
:one: "Mali frank"
|
|
534
|
+
:other: "Malian francs"
|
|
535
|
+
:MMK:
|
|
536
|
+
:one: "mianmari kyat"
|
|
537
|
+
:other: "mianmari kyat"
|
|
538
|
+
:MNT:
|
|
539
|
+
:one: "mongóliai tugrik"
|
|
540
|
+
:other: "mongóliai tugrik"
|
|
541
|
+
:symbol: "₮"
|
|
542
|
+
:MOP:
|
|
543
|
+
:one: "makaói pataca"
|
|
544
|
+
:other: "makaói pataca"
|
|
545
|
+
:MRO:
|
|
546
|
+
:one: "mauritániai ouguiya"
|
|
547
|
+
:other: "mauritániai ouguiya"
|
|
548
|
+
:MTL:
|
|
549
|
+
:one: "Máltai líra"
|
|
550
|
+
:other: "Maltese lira"
|
|
551
|
+
:MTP:
|
|
552
|
+
:one: "Máltai font"
|
|
553
|
+
:other: "Maltese pounds"
|
|
554
|
+
:MUR:
|
|
555
|
+
:one: "mauritiusi rúpia"
|
|
556
|
+
:other: "mauritiusi rúpia"
|
|
557
|
+
:MVP:
|
|
558
|
+
:one: "Maldivian rupee"
|
|
559
|
+
:other: "Maldivian rupees"
|
|
560
|
+
:MVR:
|
|
561
|
+
:one: "maldív-szigeteki rufiyaa"
|
|
562
|
+
:other: "maldív-szigeteki rufiyaa"
|
|
563
|
+
:MWK:
|
|
564
|
+
:one: "malawi kwacha"
|
|
565
|
+
:other: "malawi kwacha"
|
|
566
|
+
:MXN:
|
|
567
|
+
:one: "mexikói peso"
|
|
568
|
+
:other: "mexikói peso"
|
|
569
|
+
:symbol: "MXN"
|
|
570
|
+
:MXP:
|
|
571
|
+
:one: "Mexikói ezüst peso (1861–1992)"
|
|
572
|
+
:other: "Mexican silver pesos (1861–1992)"
|
|
573
|
+
:MXV:
|
|
574
|
+
:one: "Mexikói Unidad de Inversion (UDI)"
|
|
575
|
+
:other: "Mexican investment units"
|
|
576
|
+
:MYR:
|
|
577
|
+
:one: "malajziai ringgit"
|
|
578
|
+
:other: "malajziai ringgit"
|
|
579
|
+
:MZE:
|
|
580
|
+
:one: "Mozambik escudo"
|
|
581
|
+
:other: "Mozambican escudos"
|
|
582
|
+
:MZM:
|
|
583
|
+
:one: "Mozambik metical"
|
|
584
|
+
:other: "Mozambican meticals (1980–2006)"
|
|
585
|
+
:MZN:
|
|
586
|
+
:one: "mozambiki metikális"
|
|
587
|
+
:other: "mozambiki metikális"
|
|
588
|
+
:NAD:
|
|
589
|
+
:one: "namíbiai dollár"
|
|
590
|
+
:other: "namíbiai dollár"
|
|
591
|
+
:symbol: "$"
|
|
592
|
+
:NGN:
|
|
593
|
+
:one: "nigériai naira"
|
|
594
|
+
:other: "nigériai naira"
|
|
595
|
+
:symbol: "₦"
|
|
596
|
+
:NIC:
|
|
597
|
+
:one: "Nikaraguai cordoba"
|
|
598
|
+
:other: "Nicaraguan córdobas (1988–1991)"
|
|
599
|
+
:NIO:
|
|
600
|
+
:one: "nicaraguai córdoba"
|
|
601
|
+
:other: "nicaraguai córdoba"
|
|
602
|
+
:NLG:
|
|
603
|
+
:one: "Holland forint"
|
|
604
|
+
:other: "Dutch guilders"
|
|
605
|
+
:NOK:
|
|
606
|
+
:one: "norvég korona"
|
|
607
|
+
:other: "norvég korona"
|
|
608
|
+
:NPR:
|
|
609
|
+
:one: "nepáli rúpia"
|
|
610
|
+
:other: "nepáli rúpia"
|
|
611
|
+
:NZD:
|
|
612
|
+
:one: "új-zélandi dollár"
|
|
613
|
+
:other: "új-zélandi dollár"
|
|
614
|
+
:symbol: "NZD"
|
|
615
|
+
:OMR:
|
|
616
|
+
:one: "ománi rial"
|
|
617
|
+
:other: "ománi rial"
|
|
618
|
+
:PAB:
|
|
619
|
+
:one: "panamai balboa"
|
|
620
|
+
:other: "panamai balboa"
|
|
621
|
+
:PEI:
|
|
622
|
+
:one: "Perui inti"
|
|
623
|
+
:other: "Peruvian intis"
|
|
624
|
+
:PEN:
|
|
625
|
+
:one: "perui sol nuevo"
|
|
626
|
+
:other: "perui sol nuevo"
|
|
627
|
+
:PES:
|
|
628
|
+
:one: "Perui sol"
|
|
629
|
+
:other: "Peruvian soles (1863–1965)"
|
|
630
|
+
:PGK:
|
|
631
|
+
:one: "pápua új-guineai kina"
|
|
632
|
+
:other: "pápua új-guineai kina"
|
|
633
|
+
:PHP:
|
|
634
|
+
:one: "fülöp-szigeteki peso"
|
|
635
|
+
:other: "fülöp-szigeteki peso"
|
|
636
|
+
:symbol: "₱"
|
|
637
|
+
:PKR:
|
|
638
|
+
:one: "pakisztáni rúpia"
|
|
639
|
+
:other: "pakisztáni rúpia"
|
|
640
|
+
:PLN:
|
|
641
|
+
:one: "lengyel zloty"
|
|
642
|
+
:other: "lengyel zloty"
|
|
643
|
+
:PLZ:
|
|
644
|
+
:one: "Lengyel zloty (1950–1995)"
|
|
645
|
+
:other: "Polish zlotys (PLZ)"
|
|
646
|
+
:PTE:
|
|
647
|
+
:one: "Portugál escudo"
|
|
648
|
+
:other: "Portuguese escudos"
|
|
649
|
+
:PYG:
|
|
650
|
+
:one: "paraguayi guarani"
|
|
651
|
+
:other: "paraguayi guarani"
|
|
652
|
+
:symbol: "₲"
|
|
653
|
+
:QAR:
|
|
654
|
+
:one: "katari rial"
|
|
655
|
+
:other: "katari rial"
|
|
656
|
+
:RHD:
|
|
657
|
+
:one: "Rhodéziai dollár"
|
|
658
|
+
:other: "Rhodéziai dollár"
|
|
659
|
+
:ROL:
|
|
660
|
+
:one: "román lej (1952–2006)"
|
|
661
|
+
:other: "román lej (1952–2006)"
|
|
662
|
+
:RON:
|
|
663
|
+
:one: "román lej"
|
|
664
|
+
:other: "román lej"
|
|
665
|
+
:RSD:
|
|
666
|
+
:one: "szerb dínár"
|
|
667
|
+
:other: "szerb dínár"
|
|
668
|
+
:RUB:
|
|
669
|
+
:one: "orosz rubel"
|
|
670
|
+
:other: "orosz rubel"
|
|
671
|
+
:RUR:
|
|
672
|
+
:one: "orosz rubel (1991–1998)"
|
|
673
|
+
:other: "orosz rubel (1991–1998)"
|
|
674
|
+
:symbol: "р."
|
|
675
|
+
:RWF:
|
|
676
|
+
:one: "ruandai frank"
|
|
677
|
+
:other: "ruandai frank"
|
|
678
|
+
:SAR:
|
|
679
|
+
:one: "szaúdi riyal"
|
|
680
|
+
:other: "szaúdi riyal"
|
|
681
|
+
:SBD:
|
|
682
|
+
:one: "salamon-szigeteki dollár"
|
|
683
|
+
:other: "salamon-szigeteki dollár"
|
|
684
|
+
:symbol: "$"
|
|
685
|
+
:SCR:
|
|
686
|
+
:one: "seychelle-szigeteki rúpia"
|
|
687
|
+
:other: "seychelle-szigeteki rúpia"
|
|
688
|
+
:SDD:
|
|
689
|
+
:one: "Szudáni dínár (1992–2007)"
|
|
690
|
+
:other: "Szudáni dínár (1992–2007)"
|
|
691
|
+
:SDG:
|
|
692
|
+
:one: "szudáni font"
|
|
693
|
+
:other: "szudáni font"
|
|
694
|
+
:SDP:
|
|
695
|
+
:one: "Szudáni font (1957–1998)"
|
|
696
|
+
:other: "Szudáni font (1957–1998)"
|
|
697
|
+
:SEK:
|
|
698
|
+
:one: "svéd korona"
|
|
699
|
+
:other: "svéd korona"
|
|
700
|
+
:SGD:
|
|
701
|
+
:one: "szingapúri dollár"
|
|
702
|
+
:other: "szingapúri dollár"
|
|
703
|
+
:symbol: "$"
|
|
704
|
+
:SHP:
|
|
705
|
+
:one: "Szent Ilona-i font"
|
|
706
|
+
:other: "Szent Ilona-i font"
|
|
707
|
+
:SIT:
|
|
708
|
+
:one: "Szlovén tolar"
|
|
709
|
+
:other: "Slovenian tolars"
|
|
710
|
+
:SKK:
|
|
711
|
+
:one: "Szlovák korona"
|
|
712
|
+
:other: "Slovak korunas"
|
|
713
|
+
:SLL:
|
|
714
|
+
:one: "Sierra Leone-i leone"
|
|
715
|
+
:other: "Sierra Leone-i leone"
|
|
716
|
+
:SOS:
|
|
717
|
+
:one: "szomáli shilling"
|
|
718
|
+
:other: "szomáli shilling"
|
|
719
|
+
:SRD:
|
|
720
|
+
:one: "suriname-i dollár"
|
|
721
|
+
:other: "suriname-i dollár"
|
|
722
|
+
:symbol: "$"
|
|
723
|
+
:SRG:
|
|
724
|
+
:one: "Suriname-i gulden"
|
|
725
|
+
:other: "Surinamese guilders"
|
|
726
|
+
:SSP:
|
|
727
|
+
:one: "dél-szudáni font"
|
|
728
|
+
:other: "dél-szudáni font"
|
|
729
|
+
:symbol: "£"
|
|
730
|
+
:STD:
|
|
731
|
+
:one: "São Tomé és Príncipe-i dobra"
|
|
732
|
+
:other: "São Tomé és Príncipe-i dobra"
|
|
733
|
+
:SUR:
|
|
734
|
+
:one: "Szovjet rubel"
|
|
735
|
+
:other: "Soviet roubles"
|
|
736
|
+
:SVC:
|
|
737
|
+
:one: "Salvadori colón"
|
|
738
|
+
:other: "Salvadoran colones"
|
|
739
|
+
:SYP:
|
|
740
|
+
:one: "szíriai font"
|
|
741
|
+
:other: "szíriai font"
|
|
742
|
+
:SZL:
|
|
743
|
+
:one: "szváziföldi lilangeni"
|
|
744
|
+
:other: "szváziföldi lilangeni"
|
|
745
|
+
:THB:
|
|
746
|
+
:one: "thai baht"
|
|
747
|
+
:other: "thai baht"
|
|
748
|
+
:symbol: "THB"
|
|
749
|
+
:TJR:
|
|
750
|
+
:one: "Tádzsikisztáni rubel"
|
|
751
|
+
:other: "Tajikistani rubles"
|
|
752
|
+
:TJS:
|
|
753
|
+
:one: "tádzsikisztáni somoni"
|
|
754
|
+
:other: "tádzsikisztáni somoni"
|
|
755
|
+
:TMM:
|
|
756
|
+
:one: "türkmenisztáni manat (1993–2009)"
|
|
757
|
+
:other: "türkmenisztáni manat (1993–2009)"
|
|
758
|
+
:TMT:
|
|
759
|
+
:one: "türkmenisztáni manat"
|
|
760
|
+
:other: "türkmenisztáni manat"
|
|
761
|
+
:TND:
|
|
762
|
+
:one: "tunéziai dínár"
|
|
763
|
+
:other: "tunéziai dínár"
|
|
764
|
+
:TOP:
|
|
765
|
+
:one: "tongai paanga"
|
|
766
|
+
:other: "tongai paanga"
|
|
767
|
+
:TPE:
|
|
768
|
+
:one: "Timori escudo"
|
|
769
|
+
:other: "Timorese escudos"
|
|
770
|
+
:TRL:
|
|
771
|
+
:one: "török líra (1922–2005)"
|
|
772
|
+
:other: "török líra (1922–2005)"
|
|
773
|
+
:TRY:
|
|
774
|
+
:one: "török líra"
|
|
775
|
+
:other: "török líra"
|
|
776
|
+
:symbol: "₺"
|
|
777
|
+
:TTD:
|
|
778
|
+
:one: "Trinidad és Tobago-i dollár"
|
|
779
|
+
:other: "Trinidad és Tobago-i dollár"
|
|
780
|
+
:symbol: "$"
|
|
781
|
+
:TWD:
|
|
782
|
+
:one: "tajvani új dollár"
|
|
783
|
+
:other: "tajvani új dollár"
|
|
784
|
+
:symbol: "TWD"
|
|
785
|
+
:TZS:
|
|
786
|
+
:one: "tanzániai shilling"
|
|
787
|
+
:other: "tanzániai shilling"
|
|
788
|
+
:UAH:
|
|
789
|
+
:one: "ukrán hrivnya"
|
|
790
|
+
:other: "ukrán hrivnya"
|
|
791
|
+
:symbol: "₴"
|
|
792
|
+
:UAK:
|
|
793
|
+
:one: "Ukrán karbovanec"
|
|
794
|
+
:other: "Ukrainian karbovantsiv"
|
|
795
|
+
:UGS:
|
|
796
|
+
:one: "Ugandai shilling (1966–1987)"
|
|
797
|
+
:other: "Ugandai shilling (1966–1987)"
|
|
798
|
+
:UGX:
|
|
799
|
+
:one: "ugandai shilling"
|
|
800
|
+
:other: "ugandai shilling"
|
|
801
|
+
:USD:
|
|
802
|
+
:one: "USA-dollár"
|
|
803
|
+
:other: "USA-dollár"
|
|
804
|
+
:symbol: "$"
|
|
805
|
+
:USN:
|
|
806
|
+
:one: "USA dollár (következő napi)"
|
|
807
|
+
:other: "US dollars (next day)"
|
|
808
|
+
:USS:
|
|
809
|
+
:one: "USA dollár (aznapi)"
|
|
810
|
+
:other: "US dollars (same day)"
|
|
811
|
+
:UYI:
|
|
812
|
+
:one: "Uruguayi peso en unidades indexadas"
|
|
813
|
+
:other: "Uruguayi peso en unidades indexadas"
|
|
814
|
+
:UYP:
|
|
815
|
+
:one: "Uruguayi peso (1975–1993)"
|
|
816
|
+
:other: "Uruguayi peso (1975–1993)"
|
|
817
|
+
:UYU:
|
|
818
|
+
:one: "uruguayi peso"
|
|
819
|
+
:other: "uruguayi peso"
|
|
820
|
+
:symbol: "$"
|
|
821
|
+
:UZS:
|
|
822
|
+
:one: "üzbegisztáni szum"
|
|
823
|
+
:other: "üzbegisztáni szum"
|
|
824
|
+
:VEB:
|
|
825
|
+
:one: "Venezuelai bolivar (1871–2008)"
|
|
826
|
+
:other: "Venezuelai bolivar (1871–2008)"
|
|
827
|
+
:VEF:
|
|
828
|
+
:one: "venezuelai bolivar"
|
|
829
|
+
:other: "venezuelai bolivar"
|
|
830
|
+
:VND:
|
|
831
|
+
:one: "vietnami dong"
|
|
832
|
+
:other: "vietnami dong"
|
|
833
|
+
:symbol: "VND"
|
|
834
|
+
:VNN:
|
|
835
|
+
:one: "Vietnamese dong (1978–1985)"
|
|
836
|
+
:other: "Vietnamese dong (1978–1985)"
|
|
837
|
+
:VUV:
|
|
838
|
+
:one: "vanuatui vatu"
|
|
839
|
+
:other: "vanuatui vatu"
|
|
840
|
+
:WST:
|
|
841
|
+
:one: "nyugat-szamoai tala"
|
|
842
|
+
:other: "nyugat-szamoai tala"
|
|
843
|
+
:XAF:
|
|
844
|
+
:one: "CFA frank BEAC"
|
|
845
|
+
:other: "CFA frank BEAC"
|
|
846
|
+
:symbol: "FCFA"
|
|
847
|
+
:XAG:
|
|
848
|
+
:one: "Ezüst"
|
|
849
|
+
:other: "troy ounces of silver"
|
|
850
|
+
:XAU:
|
|
851
|
+
:one: "Arany"
|
|
852
|
+
:other: "troy ounces of gold"
|
|
853
|
+
:XBA:
|
|
854
|
+
:one: "Európai kompozit egység"
|
|
855
|
+
:other: "Európai kompozit egység"
|
|
856
|
+
:XBB:
|
|
857
|
+
:one: "Európai monetáris egység"
|
|
858
|
+
:other: "Európai monetáris egység"
|
|
859
|
+
:XBC:
|
|
860
|
+
:one: "Európai kontó egység (XBC)"
|
|
861
|
+
:other: "Európai kontó egység (XBC)"
|
|
862
|
+
:XBD:
|
|
863
|
+
:one: "Európai kontó egység (XBD)"
|
|
864
|
+
:other: "Európai kontó egység (XBD)"
|
|
865
|
+
:XCD:
|
|
866
|
+
:one: "kelet-karibi dollár"
|
|
867
|
+
:other: "kelet-karibi dollár"
|
|
868
|
+
:symbol: "XCD"
|
|
869
|
+
:XDR:
|
|
870
|
+
:one: "Special Drawing Rights"
|
|
871
|
+
:other: "special drawing rights"
|
|
872
|
+
:XEU:
|
|
873
|
+
:one: "Európai pénznemegység"
|
|
874
|
+
:other: "Európai pénznemegység"
|
|
875
|
+
:XFO:
|
|
876
|
+
:one: "Francia arany frank"
|
|
877
|
+
:other: "French gold francs"
|
|
878
|
+
:XFU:
|
|
879
|
+
:one: "Francia UIC-frank"
|
|
880
|
+
:other: "French UIC-francs"
|
|
881
|
+
:XOF:
|
|
882
|
+
:one: "CFA frank BCEAO"
|
|
883
|
+
:other: "CFA frank BCEAO"
|
|
884
|
+
:symbol: "CFA"
|
|
885
|
+
:XPD:
|
|
886
|
+
:one: "Palládium"
|
|
887
|
+
:other: "Palládium"
|
|
888
|
+
:XPF:
|
|
889
|
+
:one: "csendes-óceáni valutaközösségi frank"
|
|
890
|
+
:other: "csendes-óceáni valutaközösségi frank"
|
|
891
|
+
:symbol: "CFPF"
|
|
892
|
+
:XPT:
|
|
893
|
+
:one: "Platina"
|
|
894
|
+
:other: "Platina"
|
|
895
|
+
:XRE:
|
|
896
|
+
:one: "RINET tőke"
|
|
897
|
+
:other: "RINET Funds units"
|
|
898
|
+
:XSU:
|
|
899
|
+
:one: "Sucre"
|
|
900
|
+
:other: "Sucres"
|
|
901
|
+
:XTS:
|
|
902
|
+
:one: "Tesztelési pénznemkód"
|
|
903
|
+
:other: "Testing Currency units"
|
|
904
|
+
:XUA:
|
|
905
|
+
:one: "ADB unit of account"
|
|
906
|
+
:other: "ADB units of account"
|
|
907
|
+
:XXX:
|
|
908
|
+
:one: "(ismeretlen pénznem)"
|
|
909
|
+
:other: "(ismeretlen pénznem)"
|
|
910
|
+
:YDD:
|
|
911
|
+
:one: "Jemeni dínár"
|
|
912
|
+
:other: "Yemeni dinars"
|
|
913
|
+
:YER:
|
|
914
|
+
:one: "jemeni rial"
|
|
915
|
+
:other: "jemeni rial"
|
|
916
|
+
:YUD:
|
|
917
|
+
:one: "Jugoszláv kemény dínár"
|
|
918
|
+
:other: "Yugoslavian hard dinars (1966–1990)"
|
|
919
|
+
:YUM:
|
|
920
|
+
:one: "Jugoszláv új dínár"
|
|
921
|
+
:other: "Yugoslavian new dinars (1994–2002)"
|
|
922
|
+
:YUN:
|
|
923
|
+
:one: "Jugoszláv konvertibilis dínár"
|
|
924
|
+
:other: "Yugoslavian convertible dinars (1990–1992)"
|
|
925
|
+
:YUR:
|
|
926
|
+
:one: "Yugoslavian reformed dinar (1992–1993)"
|
|
927
|
+
:other: "Yugoslavian reformed dinars (1992–1993)"
|
|
928
|
+
:ZAL:
|
|
929
|
+
:one: "Dél-afrikai rand (pénzügyi)"
|
|
930
|
+
:other: "South African rands (financial)"
|
|
931
|
+
:ZAR:
|
|
932
|
+
:one: "dél-afrikai rand"
|
|
933
|
+
:other: "dél-afrikai rand"
|
|
934
|
+
:ZMK:
|
|
935
|
+
:one: "Zambiai kwacha (1968–2012)"
|
|
936
|
+
:other: "Zambian kwachas (1968–2012)"
|
|
937
|
+
:ZMW:
|
|
938
|
+
:one: "zambiai kwacha"
|
|
939
|
+
:other: "zambiai kwacha"
|
|
940
|
+
:ZRN:
|
|
941
|
+
:one: "Zairei új zaire"
|
|
942
|
+
:other: "Zairean new zaires (1993–1998)"
|
|
943
|
+
:ZRZ:
|
|
944
|
+
:one: "Zairei zaire"
|
|
945
|
+
:other: "Zairean zaires (1971–1993)"
|
|
946
|
+
:ZWD:
|
|
947
|
+
:one: "Zimbabwei dollár (1980–2008)"
|
|
948
|
+
:other: "Zimbabwei dollár (1980–2008)"
|
|
949
|
+
:ZWL:
|
|
950
|
+
:one: "Zimbabwei dollár (2009)"
|
|
951
|
+
:other: "Zimbabwean dollars (2009)"
|
|
952
|
+
:ZWR:
|
|
953
|
+
:one: "Zimbabwei dollár (2008)"
|
|
954
|
+
:other: "Zimbabwei dollár (2008)"
|