Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/locales.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/ga_IE
diff options
context:
space:
mode:
authorDean Karn <Dean.Karn@metricaid.com>2016-09-11 06:35:17 +0300
committerDean Karn <Dean.Karn@metricaid.com>2016-09-11 06:35:17 +0300
commitaaae900248cc5de78e3c73c1ec3b3cc6dac92f9b (patch)
tree389c87c9e8c2607c1c7683fe2f5a3b419c488136 /ga_IE
parentaba249d95ca17c471f1beec3df4b0b9d438c9af8 (diff)
covered stored data from []byte to string
appending to a []byte is faster using a string rather than another []byte...who knew
Diffstat (limited to 'ga_IE')
-rw-r--r--ga_IE/ga_IE.go209
1 files changed, 93 insertions, 116 deletions
diff --git a/ga_IE/ga_IE.go b/ga_IE/ga_IE.go
index 66e8ff2d..0e328ffc 100644
--- a/ga_IE/ga_IE.go
+++ b/ga_IE/ga_IE.go
@@ -14,31 +14,31 @@ type ga_IE struct {
pluralsCardinal []locales.PluralRule
pluralsOrdinal []locales.PluralRule
pluralsRange []locales.PluralRule
- decimal []byte
- group []byte
- minus []byte
- percent []byte
- perMille []byte
- timeSeparator []byte
- inifinity []byte
- currencies [][]byte // idx = enum of currency code
- currencyNegativePrefix []byte
- currencyNegativeSuffix []byte
- monthsAbbreviated [][]byte
- monthsNarrow [][]byte
- monthsWide [][]byte
- daysAbbreviated [][]byte
- daysNarrow [][]byte
- daysShort [][]byte
- daysWide [][]byte
- periodsAbbreviated [][]byte
- periodsNarrow [][]byte
- periodsShort [][]byte
- periodsWide [][]byte
- erasAbbreviated [][]byte
- erasNarrow [][]byte
- erasWide [][]byte
- timezones map[string][]byte
+ decimal string
+ group string
+ minus string
+ percent string
+ perMille string
+ timeSeparator string
+ inifinity string
+ currencies []string // idx = enum of currency code
+ currencyNegativePrefix string
+ currencyNegativeSuffix string
+ monthsAbbreviated []string
+ monthsNarrow []string
+ monthsWide []string
+ daysAbbreviated []string
+ daysNarrow []string
+ daysShort []string
+ daysWide []string
+ periodsAbbreviated []string
+ periodsNarrow []string
+ periodsShort []string
+ periodsWide []string
+ erasAbbreviated []string
+ erasNarrow []string
+ erasWide []string
+ timezones map[string]string
}
// New returns a new instance of translator for the 'ga_IE' locale
@@ -48,30 +48,30 @@ func New() locales.Translator {
pluralsCardinal: []locales.PluralRule{2, 3, 4, 5, 6},
pluralsOrdinal: []locales.PluralRule{2, 6},
pluralsRange: nil,
- decimal: []byte{0x2e},
- group: []byte{0x2c},
- minus: []byte{0x2d},
- percent: []byte{0x25},
- perMille: []byte{0xe2, 0x80, 0xb0},
- timeSeparator: []byte{0x3a},
- inifinity: []byte{0xe2, 0x88, 0x9e},
- currencies: [][]uint8{{0x41, 0x44, 0x50, 0x20}, {0x41, 0x45, 0x44, 0x20}, {0x41, 0x46, 0x41, 0x20}, {0x41, 0x46, 0x4e, 0x20}, {0x41, 0x4c, 0x4b, 0x20}, {0x41, 0x4c, 0x4c, 0x20}, {0x41, 0x4d, 0x44, 0x20}, {0x41, 0x4e, 0x47, 0x20}, {0x41, 0x4f, 0x41, 0x20}, {0x41, 0x4f, 0x4b, 0x20}, {0x41, 0x4f, 0x4e, 0x20}, {0x41, 0x4f, 0x52, 0x20}, {0x41, 0x52, 0x41, 0x20}, {0x41, 0x52, 0x4c, 0x20}, {0x41, 0x52, 0x4d, 0x20}, {0x41, 0x52, 0x50, 0x20}, {0x41, 0x52, 0x53, 0x20}, {0x41, 0x54, 0x53, 0x20}, {0x41, 0x55, 0x44, 0x20}, {0x41, 0x57, 0x47, 0x20}, {0x41, 0x5a, 0x4d, 0x20}, {0x41, 0x5a, 0x4e, 0x20}, {0x42, 0x41, 0x44, 0x20}, {0x42, 0x41, 0x4d, 0x20}, {0x42, 0x41, 0x4e, 0x20}, {0x42, 0x42, 0x44, 0x20}, {0x42, 0x44, 0x54, 0x20}, {0x42, 0x45, 0x43, 0x20}, {0x42, 0x45, 0x46, 0x20}, {0x42, 0x45, 0x4c, 0x20}, {0x42, 0x47, 0x4c, 0x20}, {0x42, 0x47, 0x4d, 0x20}, {0x42, 0x47, 0x4e, 0x20}, {0x42, 0x47, 0x4f, 0x20}, {0x42, 0x48, 0x44, 0x20}, {0x42, 0x49, 0x46, 0x20}, {0x42, 0x4d, 0x44, 0x20}, {0x42, 0x4e, 0x44, 0x20}, {0x42, 0x4f, 0x42, 0x20}, {0x42, 0x4f, 0x4c, 0x20}, {0x42, 0x4f, 0x50, 0x20}, {0x42, 0x4f, 0x56, 0x20}, {0x42, 0x52, 0x42, 0x20}, {0x42, 0x52, 0x43, 0x20}, {0x42, 0x52, 0x45, 0x20}, {0x42, 0x52, 0x4c, 0x20}, {0x42, 0x52, 0x4e, 0x20}, {0x42, 0x52, 0x52, 0x20}, {0x42, 0x52, 0x5a, 0x20}, {0x42, 0x53, 0x44, 0x20}, {0x42, 0x54, 0x4e, 0x20}, {0x42, 0x55, 0x4b, 0x20}, {0x42, 0x57, 0x50, 0x20}, {0x42, 0x59, 0x42, 0x20}, {0x42, 0x59, 0x52, 0x20}, {0x42, 0x5a, 0x44, 0x20}, {0x43, 0x41, 0x44, 0x20}, {0x43, 0x44, 0x46, 0x20}, {0x43, 0x48, 0x45, 0x20}, {0x43, 0x48, 0x46, 0x20}, {0x43, 0x48, 0x57, 0x20}, {0x43, 0x4c, 0x45, 0x20}, {0x43, 0x4c, 0x46, 0x20}, {0x43, 0x4c, 0x50, 0x20}, {0x43, 0x4e, 0x58, 0x20}, {0x43, 0x4e, 0x59, 0x20}, {0x43, 0x4f, 0x50, 0x20}, {0x43, 0x4f, 0x55, 0x20}, {0x43, 0x52, 0x43, 0x20}, {0x43, 0x53, 0x44, 0x20}, {0x43, 0x53, 0x4b, 0x20}, {0x43, 0x55, 0x43, 0x20}, {0x43, 0x55, 0x50, 0x20}, {0x43, 0x56, 0x45, 0x20}, {0x43, 0x59, 0x50, 0x20}, {0x43, 0x5a, 0x4b, 0x20}, {0x44, 0x44, 0x4d, 0x20}, {0x44, 0x45, 0x4d, 0x20}, {0x44, 0x4a, 0x46, 0x20}, {0x44, 0x4b, 0x4b, 0x20}, {0x44, 0x4f, 0x50, 0x20}, {0x44, 0x5a, 0x44, 0x20}, {0x45, 0x43, 0x53, 0x20}, {0x45, 0x43, 0x56, 0x20}, {0x45, 0x45, 0x4b, 0x20}, {0x45, 0x47, 0x50, 0x20}, {0x45, 0x52, 0x4e, 0x20}, {0x45, 0x53, 0x41, 0x20}, {0x45, 0x53, 0x42, 0x20}, {0x45, 0x53, 0x50, 0x20}, {0x45, 0x54, 0x42, 0x20}, {0x45, 0x55, 0x52, 0x20}, {0x46, 0x49, 0x4d, 0x20}, {0x46, 0x4a, 0x44, 0x20}, {0x46, 0x4b, 0x50, 0x20}, {0x46, 0x52, 0x46, 0x20}, {0x47, 0x42, 0x50, 0x20}, {0x47, 0x45, 0x4b, 0x20}, {0x47, 0x45, 0x4c, 0x20}, {0x47, 0x48, 0x43, 0x20}, {0x47, 0x48, 0x53, 0x20}, {0x47, 0x49, 0x50, 0x20}, {0x47, 0x4d, 0x44, 0x20}, {0x47, 0x4e, 0x46, 0x20}, {0x47, 0x4e, 0x53, 0x20}, {0x47, 0x51, 0x45, 0x20}, {0x47, 0x52, 0x44, 0x20}, {0x47, 0x54, 0x51, 0x20}, {0x47, 0x57, 0x45, 0x20}, {0x47, 0x57, 0x50, 0x20}, {0x47, 0x59, 0x44, 0x20}, {0x48, 0x4b, 0x44, 0x20}, {0x48, 0x4e, 0x4c, 0x20}, {0x48, 0x52, 0x44, 0x20}, {0x48, 0x52, 0x4b, 0x20}, {0x48, 0x54, 0x47, 0x20}, {0x48, 0x55, 0x46, 0x20}, {0x49, 0x44, 0x52, 0x20}, {0x49, 0x45, 0x50, 0x20}, {0x49, 0x4c, 0x50, 0x20}, {0x49, 0x4c, 0x52, 0x20}, {0x49, 0x4c, 0x53, 0x20}, {0x49, 0x4e, 0x52, 0x20}, {0x49, 0x51, 0x44, 0x20}, {0x49, 0x52, 0x52, 0x20}, {0x49, 0x53, 0x4a, 0x20}, {0x49, 0x53, 0x4b, 0x20}, {0x49, 0x54, 0x4c, 0x20}, {0x4a, 0x4d, 0x44, 0x20}, {0x4a, 0x4f, 0x44, 0x20}, {0x4a, 0x50, 0x59, 0x20}, {0x4b, 0x45, 0x53, 0x20}, {0x4b, 0x47, 0x53, 0x20}, {0x4b, 0x48, 0x52, 0x20}, {0x4b, 0x4d, 0x46, 0x20}, {0x4b, 0x50, 0x57, 0x20}, {0x4b, 0x52, 0x48, 0x20}, {0x4b, 0x52, 0x4f, 0x20}, {0x4b, 0x52, 0x57, 0x20}, {0x4b, 0x57, 0x44, 0x20}, {0x4b, 0x59, 0x44, 0x20}, {0x4b, 0x5a, 0x54, 0x20}, {0x4c, 0x41, 0x4b, 0x20}, {0x4c, 0x42, 0x50, 0x20}, {0x4c, 0x4b, 0x52, 0x20}, {0x4c, 0x52, 0x44, 0x20}, {0x4c, 0x53, 0x4c, 0x20}, {0x4c, 0x54, 0x4c, 0x20}, {0x4c, 0x54, 0x54, 0x20}, {0x4c, 0x55, 0x43, 0x20}, {0x4c, 0x55, 0x46, 0x20}, {0x4c, 0x55, 0x4c, 0x20}, {0x4c, 0x56, 0x4c, 0x20}, {0x4c, 0x56, 0x52, 0x20}, {0x4c, 0x59, 0x44, 0x20}, {0x4d, 0x41, 0x44, 0x20}, {0x4d, 0x41, 0x46, 0x20}, {0x4d, 0x43, 0x46, 0x20}, {0x4d, 0x44, 0x43, 0x20}, {0x4d, 0x44, 0x4c, 0x20}, {0x4d, 0x47, 0x41, 0x20}, {0x4d, 0x47, 0x46, 0x20}, {0x4d, 0x4b, 0x44, 0x20}, {0x4d, 0x4b, 0x4e, 0x20}, {0x4d, 0x4c, 0x46, 0x20}, {0x4d, 0x4d, 0x4b, 0x20}, {0x4d, 0x4e, 0x54, 0x20}, {0x4d, 0x4f, 0x50, 0x20}, {0x4d, 0x52, 0x4f, 0x20}, {0x4d, 0x54, 0x4c, 0x20}, {0x4d, 0x54, 0x50, 0x20}, {0x4d, 0x55, 0x52, 0x20}, {0x4d, 0x56, 0x50, 0x20}, {0x4d, 0x56, 0x52, 0x20}, {0x4d, 0x57, 0x4b, 0x20}, {0x4d, 0x58, 0x4e, 0x20}, {0x4d, 0x58, 0x50, 0x20}, {0x4d, 0x58, 0x56, 0x20}, {0x4d, 0x59, 0x52, 0x20}, {0x4d, 0x5a, 0x45, 0x20}, {0x4d, 0x5a, 0x4d, 0x20}, {0x4d, 0x5a, 0x4e, 0x20}, {0x4e, 0x41, 0x44, 0x20}, {0x4e, 0x47, 0x4e, 0x20}, {0x4e, 0x49, 0x43, 0x20}, {0x4e, 0x49, 0x4f, 0x20}, {0x4e, 0x4c, 0x47, 0x20}, {0x4e, 0x4f, 0x4b, 0x20}, {0x4e, 0x50, 0x52, 0x20}, {0x4e, 0x5a, 0x44, 0x20}, {0x4f, 0x4d, 0x52, 0x20}, {0x50, 0x41, 0x42, 0x20}, {0x50, 0x45, 0x49, 0x20}, {0x50, 0x45, 0x4e, 0x20}, {0x50, 0x45, 0x53, 0x20}, {0x50, 0x47, 0x4b, 0x20}, {0x50, 0x48, 0x50, 0x20}, {0x50, 0x4b, 0x52, 0x20}, {0x50, 0x4c, 0x4e, 0x20}, {0x50, 0x4c, 0x5a, 0x20}, {0x50, 0x54, 0x45, 0x20}, {0x50, 0x59, 0x47, 0x20}, {0x51, 0x41, 0x52, 0x20}, {0x52, 0x48, 0x44, 0x20}, {0x52, 0x4f, 0x4c, 0x20}, {0x52, 0x4f, 0x4e, 0x20}, {0x52, 0x53, 0x44, 0x20}, {0x52, 0x55, 0x42, 0x20}, {0x52, 0x55, 0x52, 0x20}, {0x52, 0x57, 0x46, 0x20}, {0x53, 0x41, 0x52, 0x20}, {0x53, 0x42, 0x44, 0x20}, {0x53, 0x43, 0x52, 0x20}, {0x53, 0x44, 0x44, 0x20}, {0x53, 0x44, 0x47, 0x20}, {0x53, 0x44, 0x50, 0x20}, {0x53, 0x45, 0x4b, 0x20}, {0x53, 0x47, 0x44, 0x20}, {0x53, 0x48, 0x50, 0x20}, {0x53, 0x49, 0x54, 0x20}, {0x53, 0x4b, 0x4b, 0x20}, {0x53, 0x4c, 0x4c, 0x20}, {0x53, 0x4f, 0x53, 0x20}, {0x53, 0x52, 0x44, 0x20}, {0x53, 0x52, 0x47, 0x20}, {0x53, 0x53, 0x50, 0x20}, {0x53, 0x54, 0x44, 0x20}, {0x53, 0x55, 0x52, 0x20}, {0x53, 0x56, 0x43, 0x20}, {0x53, 0x59, 0x50, 0x20}, {0x53, 0x5a, 0x4c, 0x20}, {0x54, 0x48, 0x42, 0x20}, {0x54, 0x4a, 0x52, 0x20}, {0x54, 0x4a, 0x53, 0x20}, {0x54, 0x4d, 0x4d, 0x20}, {0x54, 0x4d, 0x54, 0x20}, {0x54, 0x4e, 0x44, 0x20}, {0x54, 0x4f, 0x50, 0x20}, {0x54, 0x50, 0x45, 0x20}, {0x54, 0x52, 0x4c, 0x20}, {0x54, 0x52, 0x59, 0x20}, {0x54, 0x54, 0x44, 0x20}, {0x54, 0x57, 0x44, 0x20}, {0x54, 0x5a, 0x53, 0x20}, {0x55, 0x41, 0x48, 0x20}, {0x55, 0x41, 0x4b, 0x20}, {0x55, 0x47, 0x53, 0x20}, {0x55, 0x47, 0x58, 0x20}, {0x55, 0x53, 0x44, 0x20}, {0x55, 0x53, 0x4e, 0x20}, {0x55, 0x53, 0x53, 0x20}, {0x55, 0x59, 0x49, 0x20}, {0x55, 0x59, 0x50, 0x20}, {0x55, 0x59, 0x55, 0x20}, {0x55, 0x5a, 0x53, 0x20}, {0x56, 0x45, 0x42, 0x20}, {0x56, 0x45, 0x46, 0x20}, {0x56, 0x4e, 0x44, 0x20}, {0x56, 0x4e, 0x4e, 0x20}, {0x56, 0x55, 0x56, 0x20}, {0x57, 0x53, 0x54, 0x20}, {0x58, 0x41, 0x46, 0x20}, {0x58, 0x41, 0x47, 0x20}, {0x58, 0x41, 0x55, 0x20}, {0x58, 0x42, 0x41, 0x20}, {0x58, 0x42, 0x42, 0x20}, {0x58, 0x42, 0x43, 0x20}, {0x58, 0x42, 0x44, 0x20}, {0x58, 0x43, 0x44, 0x20}, {0x58, 0x44, 0x52, 0x20}, {0x58, 0x45, 0x55, 0x20}, {0x58, 0x46, 0x4f, 0x20}, {0x58, 0x46, 0x55, 0x20}, {0x58, 0x4f, 0x46, 0x20}, {0x58, 0x50, 0x44, 0x20}, {0x58, 0x50, 0x46, 0x20}, {0x58, 0x50, 0x54, 0x20}, {0x58, 0x52, 0x45, 0x20}, {0x58, 0x53, 0x55, 0x20}, {0x58, 0x54, 0x53, 0x20}, {0x58, 0x55, 0x41, 0x20}, {0x58, 0x58, 0x58, 0x20}, {0x59, 0x44, 0x44, 0x20}, {0x59, 0x45, 0x52, 0x20}, {0x59, 0x55, 0x44, 0x20}, {0x59, 0x55, 0x4d, 0x20}, {0x59, 0x55, 0x4e, 0x20}, {0x59, 0x55, 0x52, 0x20}, {0x5a, 0x41, 0x4c, 0x20}, {0x5a, 0x41, 0x52, 0x20}, {0x5a, 0x4d, 0x4b, 0x20}, {0x5a, 0x4d, 0x57, 0x20}, {0x5a, 0x52, 0x4e, 0x20}, {0x5a, 0x52, 0x5a, 0x20}, {0x5a, 0x57, 0x44, 0x20}, {0x5a, 0x57, 0x4c, 0x20}, {0x5a, 0x57, 0x52, 0x20}},
- currencyNegativePrefix: []byte{0x28},
- currencyNegativeSuffix: []byte{0x29},
- monthsAbbreviated: [][]uint8{[]uint8(nil), {0x45, 0x61, 0x6e}, {0x46, 0x65, 0x61, 0x62, 0x68}, {0x4d, 0xc3, 0xa1, 0x72, 0x74, 0x61}, {0x41, 0x69, 0x62}, {0x42, 0x65, 0x61, 0x6c}, {0x4d, 0x65, 0x69, 0x74, 0x68}, {0x49, 0xc3, 0xba, 0x69, 0x6c}, {0x4c, 0xc3, 0xba, 0x6e}, {0x4d, 0x46, 0xc3, 0xb3, 0x6d, 0x68}, {0x44, 0x46, 0xc3, 0xb3, 0x6d, 0x68}, {0x53, 0x61, 0x6d, 0x68}, {0x4e, 0x6f, 0x6c, 0x6c}},
- monthsNarrow: [][]uint8{[]uint8(nil), {0x45}, {0x46}, {0x4d}, {0x41}, {0x42}, {0x4d}, {0x49}, {0x4c}, {0x4d}, {0x44}, {0x53}, {0x4e}},
- monthsWide: [][]uint8{[]uint8(nil), {0x45, 0x61, 0x6e, 0xc3, 0xa1, 0x69, 0x72}, {0x46, 0x65, 0x61, 0x62, 0x68, 0x72, 0x61}, {0x4d, 0xc3, 0xa1, 0x72, 0x74, 0x61}, {0x41, 0x69, 0x62, 0x72, 0x65, 0xc3, 0xa1, 0x6e}, {0x42, 0x65, 0x61, 0x6c, 0x74, 0x61, 0x69, 0x6e, 0x65}, {0x4d, 0x65, 0x69, 0x74, 0x68, 0x65, 0x61, 0x6d, 0x68}, {0x49, 0xc3, 0xba, 0x69, 0x6c}, {0x4c, 0xc3, 0xba, 0x6e, 0x61, 0x73, 0x61}, {0x4d, 0x65, 0xc3, 0xa1, 0x6e, 0x20, 0x46, 0xc3, 0xb3, 0x6d, 0x68, 0x61, 0x69, 0x72}, {0x44, 0x65, 0x69, 0x72, 0x65, 0x61, 0x64, 0x68, 0x20, 0x46, 0xc3, 0xb3, 0x6d, 0x68, 0x61, 0x69, 0x72}, {0x53, 0x61, 0x6d, 0x68, 0x61, 0x69, 0x6e}, {0x4e, 0x6f, 0x6c, 0x6c, 0x61, 0x69, 0x67}},
- daysAbbreviated: [][]uint8{{0x44, 0x6f, 0x6d, 0x68}, {0x4c, 0x75, 0x61, 0x6e}, {0x4d, 0xc3, 0xa1, 0x69, 0x72, 0x74}, {0x43, 0xc3, 0xa9, 0x61, 0x64}, {0x44, 0xc3, 0xa9, 0x61, 0x72}, {0x41, 0x6f, 0x69, 0x6e, 0x65}, {0x53, 0x61, 0x74, 0x68}},
- daysNarrow: [][]uint8{{0x44}, {0x4c}, {0x4d}, {0x43}, {0x44}, {0x41}, {0x53}},
- daysShort: [][]uint8{{0x44, 0x6f}, {0x4c, 0x75}, {0x4d, 0xc3, 0xa1}, {0x43, 0xc3, 0xa9}, {0x44, 0xc3, 0xa9}, {0x41, 0x6f}, {0x53, 0x61}},
- daysWide: [][]uint8{{0x44, 0xc3, 0xa9, 0x20, 0x44, 0x6f, 0x6d, 0x68, 0x6e, 0x61, 0x69, 0x67, 0x68}, {0x44, 0xc3, 0xa9, 0x20, 0x4c, 0x75, 0x61, 0x69, 0x6e}, {0x44, 0xc3, 0xa9, 0x20, 0x4d, 0xc3, 0xa1, 0x69, 0x72, 0x74}, {0x44, 0xc3, 0xa9, 0x20, 0x43, 0xc3, 0xa9, 0x61, 0x64, 0x61, 0x6f, 0x69, 0x6e}, {0x44, 0xc3, 0xa9, 0x61, 0x72, 0x64, 0x61, 0x6f, 0x69, 0x6e}, {0x44, 0xc3, 0xa9, 0x20, 0x68, 0x41, 0x6f, 0x69, 0x6e, 0x65}, {0x44, 0xc3, 0xa9, 0x20, 0x53, 0x61, 0x74, 0x68, 0x61, 0x69, 0x72, 0x6e}},
- periodsAbbreviated: [][]uint8{{0x61, 0x2e, 0x6d, 0x2e}, {0x70, 0x2e, 0x6d, 0x2e}},
- periodsNarrow: [][]uint8{{0x61}, {0x70}},
- periodsWide: [][]uint8{{0x61, 0x2e, 0x6d, 0x2e}, {0x70, 0x2e, 0x6d, 0x2e}},
- erasAbbreviated: [][]uint8{{0x52, 0x43}, {0x41, 0x44}},
- erasNarrow: [][]uint8{{0x52, 0x43}, {0x41, 0x44}},
- erasWide: [][]uint8{{0x52, 0x6f, 0x69, 0x6d, 0x68, 0x20, 0x43, 0x68, 0x72, 0xc3, 0xad, 0x6f, 0x73, 0x74}, {0x41, 0x6e, 0x6e, 0x6f, 0x20, 0x44, 0x6f, 0x6d, 0x69, 0x6e, 0x69}},
- timezones: map[string][]uint8{"LHST": {0x41, 0x6d, 0x20, 0x43, 0x61, 0x69, 0x67, 0x68, 0x64, 0x65, 0xc3, 0xa1, 0x6e, 0x61, 0x63, 0x68, 0x20, 0x4c, 0x6f, 0x72, 0x64, 0x20, 0x48, 0x6f, 0x77, 0x65}, "IST": {0x41, 0x6d, 0x20, 0x43, 0x61, 0x69, 0x67, 0x68, 0x64, 0x65, 0xc3, 0xa1, 0x6e, 0x61, 0x63, 0x68, 0x20, 0x6e, 0x61, 0x20, 0x68, 0x49, 0x6e, 0x64, 0x69, 0x61}, "ACDT": {0x41, 0x6d, 0x20, 0x53, 0x61, 0x6d, 0x68, 0x72, 0x61, 0x69, 0x64, 0x68, 0x20, 0x4c, 0xc3, 0xa1, 0x72, 0x20, 0x6e, 0x61, 0x20, 0x68, 0x41, 0x73, 0x74, 0x72, 0xc3, 0xa1, 0x69, 0x6c, 0x65}, "WIB": {0x41, 0x6d, 0x20, 0x49, 0x61, 0x72, 0x74, 0x68, 0x61, 0x72, 0x20, 0x6e, 0x61, 0x20, 0x68, 0x49, 0x6e, 0x64, 0x69, 0x6e, 0xc3, 0xa9, 0x69, 0x73, 0x65}, "CDT": {0x41, 0x6d, 0x20, 0x53, 0x61, 0x6d, 0x68, 0x72, 0x61, 0x69, 0x64, 0x68, 0x20, 0x4c, 0xc3, 0xa1, 0x72, 0x6e, 0x61, 0x63, 0x68}, "MDT": {0x41, 0x6d, 0x20, 0x53, 0x61, 0x6d, 0x68, 0x72, 0x61, 0x69, 0x64, 0x68, 0x20, 0x6e, 0x61, 0x20, 0x53, 0x6c, 0xc3, 0xa9, 0x69, 0x62, 0x68, 0x74, 0x65}, "HNT": {0x41, 0x6d, 0x20, 0x43, 0x61, 0x69, 0x67, 0x68, 0x64, 0x65, 0xc3, 0xa1, 0x6e, 0x61, 0x63, 0x68, 0x20, 0x54, 0x68, 0x61, 0x6c, 0x61, 0x6d, 0x68, 0x20, 0x61, 0x6e, 0x20, 0xc3, 0x89, 0x69, 0x73, 0x63}, "EST": {0x41, 0x6d, 0x20, 0x43, 0x61, 0x69, 0x67, 0x68, 0x64, 0x65, 0xc3, 0xa1, 0x6e, 0x61, 0x63, 0x68, 0x20, 0x61, 0x6e, 0x20, 0x4f, 0x69, 0x72, 0x74, 0x68, 0x69, 0x72}, "LHDT": {0x41, 0x6d, 0x20, 0x53, 0x61, 0x6d, 0x68, 0x72, 0x61, 0x69, 0x64, 0x68, 0x20, 0x4c, 0x6f, 0x72, 0x64, 0x20, 0x48, 0x6f, 0x77, 0x65}, "WART": {0x41, 0x6d, 0x20, 0x43, 0x61, 0x69, 0x67, 0x68, 0x64, 0x65, 0xc3, 0xa1, 0x6e, 0x61, 0x63, 0x68, 0x20, 0x49, 0x61, 0x72, 0x74, 0x68, 0x61, 0x72, 0x20, 0x6e, 0x61, 0x20, 0x68, 0x41, 0x69, 0x72, 0x67, 0x69, 0x6e, 0x74, 0xc3, 0xad, 0x6e, 0x65}, "CST": {0x41, 0x6d, 0x20, 0x43, 0x61, 0x69, 0x67, 0x68, 0x64, 0x65, 0xc3, 0xa1, 0x6e, 0x61, 0x63, 0x68, 0x20, 0x4c, 0xc3, 0xa1, 0x72, 0x6e, 0x61, 0x63, 0x68}, "EAT": {0x41, 0x6d, 0x20, 0x4f, 0x69, 0x72, 0x74, 0x68, 0x65, 0x61, 0x72, 0x20, 0x6e, 0x61, 0x20, 0x68, 0x41, 0x66, 0x72, 0x61, 0x69, 0x63, 0x65}, "SAST": {0x41, 0x6d, 0x20, 0x43, 0x61, 0x69, 0x67, 0x68, 0x64, 0x65, 0xc3, 0xa1, 0x6e, 0x61, 0x63, 0x68, 0x20, 0x6e, 0x61, 0x20, 0x68, 0x41, 0x66, 0x72, 0x61, 0x69, 0x63, 0x65, 0x20, 0x54, 0x68, 0x65, 0x61, 0x73}, "HKST": {0x41, 0x6d, 0x20, 0x53, 0x61, 0x6d, 0x68, 0x72, 0x61, 0x69, 0x64, 0x68, 0x20, 0x48, 0x6f, 0x6e, 0x67, 0x20, 0x43, 0x6f, 0x6e, 0x67}, "CLT": {0x41, 0x6d, 0x20, 0x43, 0x61, 0x69, 0x67, 0x68, 0x64, 0x65, 0xc3, 0xa1, 0x6e, 0x61, 0x63, 0x68, 0x20, 0x6e, 0x61, 0x20, 0x53, 0x69, 0x6c, 0x65}, "AKST": {0x41, 0x6d, 0x20, 0x43, 0x61, 0x69, 0x67, 0x68, 0x64, 0x65, 0xc3, 0xa1, 0x6e, 0x61, 0x63, 0x68, 0x20, 0x41, 0x6c, 0x61, 0x73, 0x63, 0x61}, "WARST": {0x41, 0x6d, 0x20, 0x53, 0x61, 0x6d, 0x68, 0x72, 0x61, 0x69, 0x64, 0x68, 0x20, 0x49, 0x61, 0x72, 0x74, 0x68, 0x61, 0x72, 0x20, 0x6e, 0x61, 0x20, 0x68, 0x41, 0x69, 0x72, 0x67, 0x69, 0x6e, 0x74, 0xc3, 0xad, 0x6e, 0x65}, "ACST": {0x41, 0x6d, 0x20, 0x43, 0x61, 0x69, 0x67, 0x68, 0x64, 0x65, 0xc3, 0xa1, 0x6e, 0x61, 0x63, 0x68, 0x20, 0x4c, 0xc3, 0xa1, 0x72, 0x20, 0x6e, 0x61, 0x20, 0x68, 0x41, 0x73, 0x74, 0x72, 0xc3, 0xa1, 0x69, 0x6c, 0x65}, "WITA": {0x41, 0x6d, 0x20, 0x4c, 0xc3, 0xa1, 0x72, 0x20, 0x6e, 0x61, 0x20, 0x68, 0x49, 0x6e, 0x64, 0x69, 0x6e, 0xc3, 0xa9, 0x69, 0x73, 0x65}, "AWST": {0x41, 0x6d, 0x20, 0x43, 0x61, 0x69, 0x67, 0x68, 0x64, 0x65, 0xc3, 0xa1, 0x6e, 0x61, 0x63, 0x68, 0x20, 0x49, 0x61, 0x72, 0x74, 0x68, 0x61, 0x72, 0x20, 0x6e, 0x61, 0x20, 0x68, 0x41, 0x73, 0x74, 0x72, 0xc3, 0xa1, 0x69, 0x6c, 0x65}, "OEZ": {0x41, 0x6d, 0x20, 0x43, 0x61, 0x69, 0x67, 0x68, 0x64, 0x65, 0xc3, 0xa1, 0x6e, 0x61, 0x63, 0x68, 0x20, 0x4f, 0x69, 0x72, 0x74, 0x68, 0x65, 0x61, 0x72, 0x20, 0x6e, 0x61, 0x20, 0x68, 0x45, 0x6f, 0x72, 0x70, 0x61}, "BOT": {0x41, 0x6d, 0x20, 0x6e, 0x61, 0x20, 0x42, 0x6f, 0x6c, 0x61, 0x69, 0x76, 0x65}, "MYT": {0x41, 0x6d, 0x20, 0x6e, 0x61, 0x20, 0x4d, 0x61, 0x6c, 0x61, 0x65, 0x69, 0x73, 0x69, 0x61}, "ACWST": {0x41, 0x6d, 0x20, 0x43, 0x61, 0x69, 0x67, 0x68, 0x64, 0x65, 0xc3, 0xa1, 0x6e, 0x61, 0x63, 0x68, 0x20, 0x4d, 0x68, 0x65, 0xc3, 0xa1, 0x6e, 0x69, 0x61, 0x72, 0x74, 0x68, 0x61, 0x72, 0x20, 0x6e, 0x61, 0x20, 0x68, 0x41, 0x73, 0x74, 0x72, 0xc3, 0xa1, 0x69, 0x6c, 0x65}, "COST": {0x41, 0x6d, 0x20, 0x53, 0x61, 0x6d, 0x68, 0x72, 0x61, 0x69, 0x64, 0x68, 0x20, 0x6e, 0x61, 0x20, 0x43, 0x6f, 0x6c, 0xc3, 0xb3, 0x69, 0x6d, 0x65}, "BT": {0x41, 0x6d, 0x20, 0x6e, 0x61, 0x20, 0x42, 0xc3, 0xba, 0x74, 0xc3, 0xa1, 0x69, 0x6e, 0x65}, "SRT": {0x41, 0x6d, 0x20, 0x53, 0x68, 0x75, 0x72, 0x61, 0x6e, 0x61, 0x6d}, "COT": {0x41, 0x6d, 0x20, 0x43, 0x61, 0x69, 0x67, 0x68, 0x64, 0x65, 0xc3, 0xa1, 0x6e, 0x61, 0x63, 0x68, 0x20, 0x6e, 0x61, 0x20, 0x43, 0x6f, 0x6c, 0xc3, 0xb3, 0x69, 0x6d, 0x65}, "CHAST": {0x41, 0x6d, 0x20, 0x43, 0x61, 0x69, 0x67, 0x68, 0x64, 0x65, 0xc3, 0xa1, 0x6e, 0x61, 0x63, 0x68, 0x20, 0x43, 0x68, 0x61, 0x74, 0x68, 0x61, 0x6d}, "HADT": {0x41, 0x6d, 0x20, 0x53, 0x61, 0x6d, 0x68, 0x72, 0x61, 0x69, 0x64, 0x68, 0x20, 0x48, 0x61, 0x76, 0xc3, 0xa1, 0xc3, 0xad, 0x2d, 0x41, 0x69, 0x6c, 0x69, 0xc3, 0xba, 0x69, 0x74}, "PDT": {0x41, 0x6d, 0x20, 0x53, 0x61, 0x6d, 0x68, 0x72, 0x61, 0x69, 0x64, 0x68, 0x20, 0x61, 0x6e, 0x20, 0x41, 0x69, 0x67, 0xc3, 0xa9, 0x69, 0x6e, 0x20, 0x43, 0x68, 0x69, 0xc3, 0xba, 0x69, 0x6e}, "JST": {0x41, 0x6d, 0x20, 0x43, 0x61, 0x69, 0x67, 0x68, 0x64, 0x65, 0xc3, 0xa1, 0x6e, 0x61, 0x63, 0x68, 0x20, 0x6e, 0x61, 0x20, 0x53, 0x65, 0x61, 0x70, 0xc3, 0xa1, 0x69, 0x6e, 0x65}, "∅∅∅": {0x41, 0x6d, 0x20, 0x53, 0x61, 0x6d, 0x68, 0x72, 0x61, 0x69, 0x64, 0x68, 0x20, 0x6e, 0x61, 0x20, 0x6e, 0x41, 0x73, 0xc3, 0xb3, 0x72}, "GYT": {0x41, 0x6d, 0x20, 0x6e, 0x61, 0x20, 0x47, 0x75, 0xc3, 0xa1, 0x69, 0x6e, 0x65}, "MEZ": {0x41, 0x6d, 0x20, 0x43, 0x61, 0x69, 0x67, 0x68, 0x64, 0x65, 0xc3, 0xa1, 0x6e, 0x61, 0x63, 0x68, 0x20, 0x4c, 0xc3, 0xa1, 0x72, 0x20, 0x6e, 0x61, 0x20, 0x68, 0x45, 0x6f, 0x72, 0x70, 0x61}, "TMT": {0x41, 0x6d, 0x20, 0x43, 0x61, 0x69, 0x67, 0x68, 0x64, 0x65, 0xc3, 0xa1, 0x6e, 0x61, 0x63, 0x68, 0x20, 0x6e, 0x61, 0x20, 0x54, 0x75, 0x69, 0x72, 0x63, 0x6d, 0xc3, 0xa9, 0x61, 0x6e, 0x61, 0x73, 0x74, 0xc3, 0xa1, 0x69, 0x6e, 0x65}, "HAT": {0x41, 0x6d, 0x20, 0x53, 0x61, 0x6d, 0x68, 0x72, 0x61, 0x69, 0x64, 0x68, 0x20, 0x54, 0x68, 0x61, 0x6c, 0x61, 0x6d, 0x68, 0x20, 0x61, 0x6e, 0x20, 0xc3, 0x89, 0x69, 0x73, 0x63}, "NZST": {0x41, 0x6d, 0x20, 0x43, 0x61, 0x69, 0x67, 0x68, 0x64, 0x65, 0xc3, 0xa1, 0x6e, 0x61, 0x63, 0x68, 0x20, 0x6e, 0x61, 0x20, 0x4e, 0x75, 0x61, 0x2d, 0x53, 0x68, 0xc3, 0xa9, 0x61, 0x6c, 0x61, 0x69, 0x6e, 0x6e, 0x65}, "ECT": {0x41, 0x6d, 0x20, 0x45, 0x61, 0x63, 0x75, 0x61, 0x64, 0xc3, 0xb3, 0x72}, "WIT": {0x41, 0x6d, 0x20, 0x4f, 0x69, 0x72, 0x74, 0x68, 0x65, 0x61, 0x72, 0x20, 0x6e, 0x61, 0x20, 0x68, 0x49, 0x6e, 0x64, 0x69, 0x6e, 0xc3, 0xa9, 0x69, 0x73, 0x65}, "UYT": {0x41, 0x6d, 0x20, 0x43, 0x61, 0x69, 0x67, 0x68, 0x64, 0x65, 0xc3, 0xa1, 0x6e, 0x61, 0x63, 0x68, 0x20, 0x55, 0x72, 0x61, 0x67, 0x75, 0x61}, "SGT": {0x41, 0x6d, 0x20, 0x43, 0x61, 0x69, 0x67, 0x68, 0x64, 0x65, 0xc3, 0xa1, 0x6e, 0x61, 0x63, 0x68, 0x20, 0x53, 0x68, 0x69, 0x6e, 0x67, 0x65, 0x61, 0x70, 0xc3, 0xb3, 0x72}, "GFT": {0x41, 0x6d, 0x20, 0x47, 0x68, 0x75, 0xc3, 0xa1, 0x69, 0x6e, 0x20, 0x6e, 0x61, 0x20, 0x46, 0x72, 0x61, 0x69, 0x6e, 0x63, 0x65}, "AEDT": {0x41, 0x6d, 0x20, 0x53, 0x61, 0x6d, 0x68, 0x72, 0x61, 0x69, 0x64, 0x68, 0x20, 0x4f, 0x69, 0x72, 0x74, 0x68, 0x65, 0x61, 0x72, 0x20, 0x6e, 0x61, 0x20, 0x68, 0x41, 0x73, 0x74, 0x72, 0xc3, 0xa1, 0x69, 0x6c, 0x65}, "ACWDT": {0x41, 0x6d, 0x20, 0x53, 0x61, 0x6d, 0x68, 0x72, 0x61, 0x69, 0x64, 0x68, 0x20, 0x4d, 0x68, 0x65, 0xc3, 0xa1, 0x6e, 0x69, 0x61, 0x72, 0x74, 0x68, 0x61, 0x72, 0x20, 0x6e, 0x61, 0x20, 0x68, 0x41, 0x73, 0x74, 0x72, 0xc3, 0xa1, 0x69, 0x6c, 0x65}, "AWDT": {0x41, 0x6d, 0x20, 0x53, 0x61, 0x6d, 0x68, 0x72, 0x61, 0x69, 0x64, 0x68, 0x20, 0x49, 0x61, 0x72, 0x74, 0x68, 0x61, 0x72, 0x20, 0x6e, 0x61, 0x20, 0x68, 0x41, 0x73, 0x74, 0x72, 0xc3, 0xa1, 0x69, 0x6c, 0x65}, "WAST": {0x41, 0x6d, 0x20, 0x53, 0x61, 0x6d, 0x68, 0x72, 0x61, 0x69, 0x64, 0x68, 0x20, 0x49, 0x61, 0x72, 0x74, 0x68, 0x61, 0x72, 0x20, 0x6e, 0x61, 0x20, 0x68, 0x41, 0x66, 0x72, 0x61, 0x69, 0x63, 0x65}, "HAST": {0x41, 0x6d, 0x20, 0x43, 0x61, 0x69, 0x67, 0x68, 0x64, 0x65, 0xc3, 0xa1, 0x6e, 0x61, 0x63, 0x68, 0x20, 0x48, 0x61, 0x76, 0xc3, 0xa1, 0xc3, 0xad, 0x2d, 0x41, 0x69, 0x6c, 0x69, 0xc3, 0xba, 0x69, 0x74}, "AST": {0x41, 0x6d, 0x20, 0x43, 0x61, 0x69, 0x67, 0x68, 0x64, 0x65, 0xc3, 0xa1, 0x6e, 0x61, 0x63, 0x68, 0x20, 0x61, 0x6e, 0x20, 0x41, 0x74, 0x6c, 0x61, 0x6e, 0x74, 0x61, 0x69, 0x67, 0x68}, "ADT": {0x41, 0x6d, 0x20, 0x53, 0x61, 0x6d, 0x68, 0x72, 0x61, 0x69, 0x64, 0x68, 0x20, 0x61, 0x6e, 0x20, 0x41, 0x74, 0x6c, 0x61, 0x6e, 0x74, 0x61, 0x69, 0x67, 0x68}, "UYST": {0x41, 0x6d, 0x20, 0x53, 0x61, 0x6d, 0x68, 0x72, 0x61, 0x69, 0x64, 0x68, 0x20, 0x55, 0x72, 0x61, 0x67, 0x75, 0x61}, "WAT": {0x41, 0x6d, 0x20, 0x43, 0x61, 0x69, 0x67, 0x68, 0x64, 0x65, 0xc3, 0xa1, 0x6e, 0x61, 0x63, 0x68, 0x20, 0x49, 0x61, 0x72, 0x74, 0x68, 0x61, 0x72, 0x20, 0x6e, 0x61, 0x20, 0x68, 0x41, 0x66, 0x72, 0x61, 0x69, 0x63, 0x65}, "MST": {0x41, 0x6d, 0x20, 0x43, 0x61, 0x69, 0x67, 0x68, 0x64, 0x65, 0xc3, 0xa1, 0x6e, 0x61, 0x63, 0x68, 0x20, 0x6e, 0x61, 0x20, 0x53, 0x6c, 0xc3, 0xa9, 0x69, 0x62, 0x68, 0x74, 0x65}, "TMST": {0x41, 0x6d, 0x20, 0x53, 0x61, 0x6d, 0x68, 0x72, 0x61, 0x69, 0x64, 0x68, 0x20, 0x6e, 0x61, 0x20, 0x54, 0x75, 0x69, 0x72, 0x63, 0x6d, 0xc3, 0xa9, 0x61, 0x6e, 0x61, 0x73, 0x74, 0xc3, 0xa1, 0x69, 0x6e, 0x65}, "OESZ": {0x41, 0x6d, 0x20, 0x53, 0x61, 0x6d, 0x68, 0x72, 0x61, 0x69, 0x64, 0x68, 0x20, 0x4f, 0x69, 0x72, 0x74, 0x68, 0x65, 0x61, 0x72, 0x20, 0x6e, 0x61, 0x20, 0x68, 0x45, 0x6f, 0x72, 0x70, 0x61}, "ART": {0x41, 0x6d, 0x20, 0x43, 0x61, 0x69, 0x67, 0x68, 0x64, 0x65, 0xc3, 0xa1, 0x6e, 0x61, 0x63, 0x68, 0x20, 0x6e, 0x61, 0x20, 0x68, 0x41, 0x69, 0x72, 0x67, 0x69, 0x6e, 0x74, 0xc3, 0xad, 0x6e, 0x65}, "ARST": {0x41, 0x6d, 0x20, 0x53, 0x61, 0x6d, 0x68, 0x72, 0x61, 0x69, 0x64, 0x68, 0x20, 0x6e, 0x61, 0x20, 0x68, 0x41, 0x69, 0x72, 0x67, 0x69, 0x6e, 0x74, 0xc3, 0xad, 0x6e, 0x65}, "PST": {0x41, 0x6d, 0x20, 0x43, 0x61, 0x69, 0x67, 0x68, 0x64, 0x65, 0xc3, 0xa1, 0x6e, 0x61, 0x63, 0x68, 0x20, 0x61, 0x6e, 0x20, 0x41, 0x69, 0x67, 0xc3, 0xa9, 0x69, 0x6e, 0x20, 0x43, 0x68, 0x69, 0xc3, 0xba, 0x69, 0x6e}, "AKDT": {0x41, 0x6d, 0x20, 0x53, 0x61, 0x6d, 0x68, 0x72, 0x61, 0x69, 0x64, 0x68, 0x20, 0x41, 0x6c, 0x61, 0x73, 0x63, 0x61}, "ChST": {0x41, 0x6d, 0x20, 0x43, 0x61, 0x69, 0x67, 0x68, 0x64, 0x65, 0xc3, 0xa1, 0x6e, 0x61, 0x63, 0x68, 0x20, 0x53, 0x65, 0x61, 0x6d, 0xc3, 0xb3, 0x72, 0x61, 0x63, 0x68}, "NZDT": {0x41, 0x6d, 0x20, 0x53, 0x61, 0x6d, 0x68, 0x72, 0x61, 0x69, 0x64, 0x68, 0x20, 0x6e, 0x61, 0x20, 0x4e, 0x75, 0x61, 0x2d, 0x53, 0x68, 0xc3, 0xa9, 0x61, 0x6c, 0x61, 0x69, 0x6e, 0x6e, 0x65}, "WEZ": {0x41, 0x6d, 0x20, 0x43, 0x61, 0x69, 0x67, 0x68, 0x64, 0x65, 0xc3, 0xa1, 0x6e, 0x61, 0x63, 0x68, 0x20, 0x49, 0x61, 0x72, 0x74, 0x68, 0x61, 0x72, 0x20, 0x6e, 0x61, 0x20, 0x68, 0x45, 0x6f, 0x72, 0x70, 0x61}, "WESZ": {0x41, 0x6d, 0x20, 0x53, 0x61, 0x6d, 0x68, 0x72, 0x61, 0x69, 0x64, 0x68, 0x20, 0x49, 0x61, 0x72, 0x74, 0x68, 0x61, 0x72, 0x20, 0x6e, 0x61, 0x20, 0x68, 0x45, 0x6f, 0x72, 0x70, 0x61}, "GMT": {0x4d, 0x65, 0xc3, 0xa1, 0x6e, 0x2d, 0x41, 0x6d, 0x20, 0x47, 0x72, 0x65, 0x65, 0x6e, 0x77, 0x69, 0x63, 0x68}, "JDT": {0x41, 0x6d, 0x20, 0x53, 0x61, 0x6d, 0x68, 0x72, 0x61, 0x69, 0x64, 0x68, 0x20, 0x6e, 0x61, 0x20, 0x53, 0x65, 0x61, 0x70, 0xc3, 0xa1, 0x69, 0x6e, 0x65}, "EDT": {0x41, 0x6d, 0x20, 0x53, 0x61, 0x6d, 0x68, 0x72, 0x61, 0x69, 0x64, 0x68, 0x20, 0x61, 0x6e, 0x20, 0x4f, 0x69, 0x72, 0x74, 0x68, 0x69, 0x72}, "CAT": {0x41, 0x6d, 0x20, 0x4c, 0xc3, 0xa1, 0x72, 0x20, 0x6e, 0x61, 0x20, 0x68, 0x41, 0x66, 0x72, 0x61, 0x69, 0x63, 0x65}, "CHADT": {0x41, 0x6d, 0x20, 0x53, 0x61, 0x6d, 0x68, 0x72, 0x61, 0x69, 0x64, 0x68, 0x20, 0x43, 0x68, 0x61, 0x74, 0x68, 0x61, 0x6d}, "MESZ": {0x41, 0x6d, 0x20, 0x53, 0x61, 0x6d, 0x68, 0x72, 0x61, 0x69, 0x64, 0x68, 0x20, 0x4c, 0xc3, 0xa1, 0x72, 0x20, 0x6e, 0x61, 0x20, 0x68, 0x45, 0x6f, 0x72, 0x70, 0x61}, "HKT": {0x41, 0x6d, 0x20, 0x43, 0x61, 0x69, 0x67, 0x68, 0x64, 0x65, 0xc3, 0xa1, 0x6e, 0x61, 0x63, 0x68, 0x20, 0x48, 0x6f, 0x6e, 0x67, 0x20, 0x43, 0x6f, 0x6e, 0x67}, "VET": {0x41, 0x6d, 0x20, 0x56, 0x65, 0x69, 0x6e, 0x69, 0x73, 0xc3, 0xa9, 0x61, 0x6c, 0x61}, "AEST": {0x41, 0x6d, 0x20, 0x43, 0x61, 0x69, 0x67, 0x68, 0x64, 0x65, 0xc3, 0xa1, 0x6e, 0x61, 0x63, 0x68, 0x20, 0x4f, 0x69, 0x72, 0x74, 0x68, 0x65, 0x61, 0x72, 0x20, 0x6e, 0x61, 0x20, 0x68, 0x41, 0x73, 0x74, 0x72, 0xc3, 0xa1, 0x69, 0x6c, 0x65}, "CLST": {0x41, 0x6d, 0x20, 0x53, 0x61, 0x6d, 0x68, 0x72, 0x61, 0x69, 0x64, 0x68, 0x20, 0x6e, 0x61, 0x20, 0x53, 0x69, 0x6c, 0x65}},
+ decimal: ".",
+ group: ",",
+ minus: "-",
+ percent: "%",
+ perMille: "‰",
+ timeSeparator: ":",
+ inifinity: "∞",
+ currencies: []string{"ADP ", "AED ", "AFA ", "AFN ", "ALK ", "ALL ", "AMD ", "ANG ", "AOA ", "AOK ", "AON ", "AOR ", "ARA ", "ARL ", "ARM ", "ARP ", "ARS ", "ATS ", "AUD ", "AWG ", "AZM ", "AZN ", "BAD ", "BAM ", "BAN ", "BBD ", "BDT ", "BEC ", "BEF ", "BEL ", "BGL ", "BGM ", "BGN ", "BGO ", "BHD ", "BIF ", "BMD ", "BND ", "BOB ", "BOL ", "BOP ", "BOV ", "BRB ", "BRC ", "BRE ", "BRL ", "BRN ", "BRR ", "BRZ ", "BSD ", "BTN ", "BUK ", "BWP ", "BYB ", "BYR ", "BZD ", "CAD ", "CDF ", "CHE ", "CHF ", "CHW ", "CLE ", "CLF ", "CLP ", "CNX ", "CNY ", "COP ", "COU ", "CRC ", "CSD ", "CSK ", "CUC ", "CUP ", "CVE ", "CYP ", "CZK ", "DDM ", "DEM ", "DJF ", "DKK ", "DOP ", "DZD ", "ECS ", "ECV ", "EEK ", "EGP ", "ERN ", "ESA ", "ESB ", "ESP ", "ETB ", "EUR ", "FIM ", "FJD ", "FKP ", "FRF ", "GBP ", "GEK ", "GEL ", "GHC ", "GHS ", "GIP ", "GMD ", "GNF ", "GNS ", "GQE ", "GRD ", "GTQ ", "GWE ", "GWP ", "GYD ", "HKD ", "HNL ", "HRD ", "HRK ", "HTG ", "HUF ", "IDR ", "IEP ", "ILP ", "ILR ", "ILS ", "INR ", "IQD ", "IRR ", "ISJ ", "ISK ", "ITL ", "JMD ", "JOD ", "JPY ", "KES ", "KGS ", "KHR ", "KMF ", "KPW ", "KRH ", "KRO ", "KRW ", "KWD ", "KYD ", "KZT ", "LAK ", "LBP ", "LKR ", "LRD ", "LSL ", "LTL ", "LTT ", "LUC ", "LUF ", "LUL ", "LVL ", "LVR ", "LYD ", "MAD ", "MAF ", "MCF ", "MDC ", "MDL ", "MGA ", "MGF ", "MKD ", "MKN ", "MLF ", "MMK ", "MNT ", "MOP ", "MRO ", "MTL ", "MTP ", "MUR ", "MVP ", "MVR ", "MWK ", "MXN ", "MXP ", "MXV ", "MYR ", "MZE ", "MZM ", "MZN ", "NAD ", "NGN ", "NIC ", "NIO ", "NLG ", "NOK ", "NPR ", "NZD ", "OMR ", "PAB ", "PEI ", "PEN ", "PES ", "PGK ", "PHP ", "PKR ", "PLN ", "PLZ ", "PTE ", "PYG ", "QAR ", "RHD ", "ROL ", "RON ", "RSD ", "RUB ", "RUR ", "RWF ", "SAR ", "SBD ", "SCR ", "SDD ", "SDG ", "SDP ", "SEK ", "SGD ", "SHP ", "SIT ", "SKK ", "SLL ", "SOS ", "SRD ", "SRG ", "SSP ", "STD ", "SUR ", "SVC ", "SYP ", "SZL ", "THB ", "TJR ", "TJS ", "TMM ", "TMT ", "TND ", "TOP ", "TPE ", "TRL ", "TRY ", "TTD ", "TWD ", "TZS ", "UAH ", "UAK ", "UGS ", "UGX ", "USD ", "USN ", "USS ", "UYI ", "UYP ", "UYU ", "UZS ", "VEB ", "VEF ", "VND ", "VNN ", "VUV ", "WST ", "XAF ", "XAG ", "XAU ", "XBA ", "XBB ", "XBC ", "XBD ", "XCD ", "XDR ", "XEU ", "XFO ", "XFU ", "XOF ", "XPD ", "XPF ", "XPT ", "XRE ", "XSU ", "XTS ", "XUA ", "XXX ", "YDD ", "YER ", "YUD ", "YUM ", "YUN ", "YUR ", "ZAL ", "ZAR ", "ZMK ", "ZMW ", "ZRN ", "ZRZ ", "ZWD ", "ZWL ", "ZWR "},
+ currencyNegativePrefix: "(",
+ currencyNegativeSuffix: ")",
+ monthsAbbreviated: []string{"", "Ean", "Feabh", "Márta", "Aib", "Beal", "Meith", "Iúil", "Lún", "MFómh", "DFómh", "Samh", "Noll"},
+ monthsNarrow: []string{"", "E", "F", "M", "A", "B", "M", "I", "L", "M", "D", "S", "N"},
+ monthsWide: []string{"", "Eanáir", "Feabhra", "Márta", "Aibreán", "Bealtaine", "Meitheamh", "Iúil", "Lúnasa", "Meán Fómhair", "Deireadh Fómhair", "Samhain", "Nollaig"},
+ daysAbbreviated: []string{"Domh", "Luan", "Máirt", "Céad", "Déar", "Aoine", "Sath"},
+ daysNarrow: []string{"D", "L", "M", "C", "D", "A", "S"},
+ daysShort: []string{"Do", "Lu", "Má", "Cé", "Dé", "Ao", "Sa"},
+ daysWide: []string{"Dé Domhnaigh", "Dé Luain", "Dé Máirt", "Dé Céadaoin", "Déardaoin", "Dé hAoine", "Dé Sathairn"},
+ periodsAbbreviated: []string{"a.m.", "p.m."},
+ periodsNarrow: []string{"a", "p"},
+ periodsWide: []string{"a.m.", "p.m."},
+ erasAbbreviated: []string{"RC", "AD"},
+ erasNarrow: []string{"RC", "AD"},
+ erasWide: []string{"Roimh Chríost", "Anno Domini"},
+ timezones: map[string]string{"AWST": "Am Caighdeánach Iarthar na hAstráile", "HAT": "Am Samhraidh Thalamh an Éisc", "ACDT": "Am Samhraidh Lár na hAstráile", "CDT": "Am Samhraidh Lárnach", "WEZ": "Am Caighdeánach Iarthar na hEorpa", "EST": "Am Caighdeánach an Oirthir", "CHADT": "Am Samhraidh Chatham", "ACST": "Am Caighdeánach Lár na hAstráile", "WIT": "Am Oirthear na hIndinéise", "SGT": "Am Caighdeánach Shingeapór", "PDT": "Am Samhraidh an Aigéin Chiúin", "AEST": "Am Caighdeánach Oirthear na hAstráile", "HAST": "Am Caighdeánach Haváí-Ailiúit", "UYST": "Am Samhraidh Uragua", "AEDT": "Am Samhraidh Oirthear na hAstráile", "WAT": "Am Caighdeánach Iarthar na hAfraice", "ACWST": "Am Caighdeánach Mheániarthar na hAstráile", "VET": "Am Veiniséala", "LHDT": "Am Samhraidh Lord Howe", "MYT": "Am na Malaeisia", "NZDT": "Am Samhraidh na Nua-Shéalainne", "CHAST": "Am Caighdeánach Chatham", "MDT": "Am Samhraidh na Sléibhte", "HADT": "Am Samhraidh Haváí-Ailiúit", "HKT": "Am Caighdeánach Hong Cong", "UYT": "Am Caighdeánach Uragua", "ECT": "Am Eacuadór", "EAT": "Am Oirthear na hAfraice", "WART": "Am Caighdeánach Iarthar na hAirgintíne", "WARST": "Am Samhraidh Iarthar na hAirgintíne", "AST": "Am Caighdeánach an Atlantaigh", "BT": "Am na Bútáine", "LHST": "Am Caighdeánach Lord Howe", "AKST": "Am Caighdeánach Alasca", "BOT": "Am na Bolaive", "ART": "Am Caighdeánach na hAirgintíne", "ChST": "Am Caighdeánach Seamórach", "WIB": "Am Iarthar na hIndinéise", "ARST": "Am Samhraidh na hAirgintíne", "MESZ": "Am Samhraidh Lár na hEorpa", "TMT": "Am Caighdeánach na Tuircméanastáine", "IST": "Am Caighdeánach na hIndia", "PST": "Am Caighdeánach an Aigéin Chiúin", "COST": "Am Samhraidh na Colóime", "WAST": "Am Samhraidh Iarthar na hAfraice", "∅∅∅": "Am Samhraidh na nAsór", "AWDT": "Am Samhraidh Iarthar na hAstráile", "CAT": "Am Lár na hAfraice", "EDT": "Am Samhraidh an Oirthir", "WITA": "Am Lár na hIndinéise", "ACWDT": "Am Samhraidh Mheániarthar na hAstráile", "CST": "Am Caighdeánach Lárnach", "CLST": "Am Samhraidh na Sile", "GYT": "Am na Guáine", "ADT": "Am Samhraidh an Atlantaigh", "HKST": "Am Samhraidh Hong Cong", "CLT": "Am Caighdeánach na Sile", "NZST": "Am Caighdeánach na Nua-Shéalainne", "OESZ": "Am Samhraidh Oirthear na hEorpa", "MEZ": "Am Caighdeánach Lár na hEorpa", "JST": "Am Caighdeánach na Seapáine", "HNT": "Am Caighdeánach Thalamh an Éisc", "OEZ": "Am Caighdeánach Oirthear na hEorpa", "GMT": "Meán-Am Greenwich", "TMST": "Am Samhraidh na Tuircméanastáine", "MST": "Am Caighdeánach na Sléibhte", "GFT": "Am Ghuáin na Fraince", "SAST": "Am Caighdeánach na hAfraice Theas", "COT": "Am Caighdeánach na Colóime", "SRT": "Am Shuranam", "JDT": "Am Samhraidh na Seapáine", "AKDT": "Am Samhraidh Alasca", "WESZ": "Am Samhraidh Iarthar na hEorpa"},
}
}
@@ -131,80 +131,77 @@ func (ga *ga_IE) RangePluralRule(num1 float64, v1 uint64, num2 float64, v2 uint6
}
// MonthAbbreviated returns the locales abbreviated month given the 'month' provided
-func (ga *ga_IE) MonthAbbreviated(month time.Month) []byte {
+func (ga *ga_IE) MonthAbbreviated(month time.Month) string {
return ga.monthsAbbreviated[month]
}
// MonthsAbbreviated returns the locales abbreviated months
-func (ga *ga_IE) MonthsAbbreviated() [][]byte {
+func (ga *ga_IE) MonthsAbbreviated() []string {
return ga.monthsAbbreviated[1:]
}
// MonthNarrow returns the locales narrow month given the 'month' provided
-func (ga *ga_IE) MonthNarrow(month time.Month) []byte {
+func (ga *ga_IE) MonthNarrow(month time.Month) string {
return ga.monthsNarrow[month]
}
// MonthsNarrow returns the locales narrow months
-func (ga *ga_IE) MonthsNarrow() [][]byte {
+func (ga *ga_IE) MonthsNarrow() []string {
return ga.monthsNarrow[1:]
}
// MonthWide returns the locales wide month given the 'month' provided
-func (ga *ga_IE) MonthWide(month time.Month) []byte {
+func (ga *ga_IE) MonthWide(month time.Month) string {
return ga.monthsWide[month]
}
// MonthsWide returns the locales wide months
-func (ga *ga_IE) MonthsWide() [][]byte {
+func (ga *ga_IE) MonthsWide() []string {
return ga.monthsWide[1:]
}
// WeekdayAbbreviated returns the locales abbreviated weekday given the 'weekday' provided
-func (ga *ga_IE) WeekdayAbbreviated(weekday time.Weekday) []byte {
+func (ga *ga_IE) WeekdayAbbreviated(weekday time.Weekday) string {
return ga.daysAbbreviated[weekday]
}
// WeekdaysAbbreviated returns the locales abbreviated weekdays
-func (ga *ga_IE) WeekdaysAbbreviated() [][]byte {
+func (ga *ga_IE) WeekdaysAbbreviated() []string {
return ga.daysAbbreviated
}
// WeekdayNarrow returns the locales narrow weekday given the 'weekday' provided
-func (ga *ga_IE) WeekdayNarrow(weekday time.Weekday) []byte {
+func (ga *ga_IE) WeekdayNarrow(weekday time.Weekday) string {
return ga.daysNarrow[weekday]
}
// WeekdaysNarrow returns the locales narrow weekdays
-func (ga *ga_IE) WeekdaysNarrow() [][]byte {
+func (ga *ga_IE) WeekdaysNarrow() []string {
return ga.daysNarrow
}
// WeekdayShort returns the locales short weekday given the 'weekday' provided
-func (ga *ga_IE) WeekdayShort(weekday time.Weekday) []byte {
+func (ga *ga_IE) WeekdayShort(weekday time.Weekday) string {
return ga.daysShort[weekday]
}
// WeekdaysShort returns the locales short weekdays
-func (ga *ga_IE) WeekdaysShort() [][]byte {
+func (ga *ga_IE) WeekdaysShort() []string {
return ga.daysShort
}
// WeekdayWide returns the locales wide weekday given the 'weekday' provided
-func (ga *ga_IE) WeekdayWide(weekday time.Weekday) []byte {
+func (ga *ga_IE) WeekdayWide(weekday time.Weekday) string {
return ga.daysWide[weekday]
}
// WeekdaysWide returns the locales wide weekdays
-func (ga *ga_IE) WeekdaysWide() [][]byte {
+func (ga *ga_IE) WeekdaysWide() []string {
return ga.daysWide
}
// FmtNumber returns 'num' with digits/precision of 'v' for 'ga_IE' and handles both Whole and Real numbers based on 'v'
-// returned as a []byte just in case the caller wishes to add more and can help
-// avoid allocations; otherwise just cast as string.
-func (ga *ga_IE) FmtNumber(num float64, v uint64) []byte {
-
+func (ga *ga_IE) FmtNumber(num float64, v uint64) (results string) {
s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
l := len(s) + len(ga.decimal) + len(ga.group)*len(s[:len(s)-int(v)-1])/3
count := 0
@@ -240,15 +237,13 @@ func (ga *ga_IE) FmtNumber(num float64, v uint64) []byte {
b[i], b[j] = b[j], b[i]
}
- return b
+ results = string(b)
+ return
}
// FmtPercent returns 'num' with digits/precision of 'v' for 'ga_IE' and handles both Whole and Real numbers based on 'v'
-// returned as a []byte just in case the caller wishes to add more and can help
-// avoid allocations; otherwise just cast as string.
// NOTE: 'num' passed into FmtPercent is assumed to be in percent already
-func (ga *ga_IE) FmtPercent(num float64, v uint64) []byte {
-
+func (ga *ga_IE) FmtPercent(num float64, v uint64) (results string) {
s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
l := len(s) + len(ga.decimal)
b := make([]byte, 0, l)
@@ -274,13 +269,12 @@ func (ga *ga_IE) FmtPercent(num float64, v uint64) []byte {
b = append(b, ga.percent...)
- return b
+ results = string(b)
+ return
}
// FmtCurrency returns the currency representation of 'num' with digits/precision of 'v' for 'ga_IE'
-// returned as a []byte just in case the caller wishes to add more and can help
-// avoid allocations; otherwise just cast as string.
-func (ga *ga_IE) FmtCurrency(num float64, v uint64, currency currency.Type) []byte {
+func (ga *ga_IE) FmtCurrency(num float64, v uint64, currency currency.Type) (results string) {
s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
symbol := ga.currencies[currency]
@@ -333,13 +327,13 @@ func (ga *ga_IE) FmtCurrency(num float64, v uint64, currency currency.Type) []by
}
}
- return b
+ results = string(b)
+ return
}
// FmtAccounting returns the currency representation of 'num' with digits/precision of 'v' for 'ga_IE'
-// in accounting notation. returned as a []byte just in case the caller wishes to add more and can help
-// avoid allocations; otherwise just cast as string.
-func (ga *ga_IE) FmtAccounting(num float64, v uint64, currency currency.Type) []byte {
+// in accounting notation.
+func (ga *ga_IE) FmtAccounting(num float64, v uint64, currency currency.Type) (results string) {
s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
symbol := ga.currencies[currency]
@@ -374,9 +368,7 @@ func (ga *ga_IE) FmtAccounting(num float64, v uint64, currency currency.Type) []
b = append(b, symbol[j])
}
- for j := len(ga.currencyNegativePrefix) - 1; j >= 0; j-- {
- b = append(b, ga.currencyNegativePrefix[j])
- }
+ b = append(b, ga.currencyNegativePrefix[0])
} else {
@@ -406,13 +398,12 @@ func (ga *ga_IE) FmtAccounting(num float64, v uint64, currency currency.Type) []
b = append(b, ga.currencyNegativeSuffix...)
}
- return b
+ results = string(b)
+ return
}
// FmtDateShort returns the short date representation of 't' for 'ga_IE'
-// returned as a []byte just in case the caller wishes to add more and can help
-// avoid allocations; otherwise just cast as string.
-func (ga *ga_IE) FmtDateShort(t time.Time) []byte {
+func (ga *ga_IE) FmtDateShort(t time.Time) string {
b := make([]byte, 0, 32)
@@ -432,13 +423,11 @@ func (ga *ga_IE) FmtDateShort(t time.Time) []byte {
b = append(b, []byte{0x2f}...)
b = strconv.AppendInt(b, int64(t.Year()), 10)
- return b
+ return string(b)
}
// FmtDateMedium returns the medium date representation of 't' for 'ga_IE'
-// returned as a []byte just in case the caller wishes to add more and can help
-// avoid allocations; otherwise just cast as string.
-func (ga *ga_IE) FmtDateMedium(t time.Time) []byte {
+func (ga *ga_IE) FmtDateMedium(t time.Time) string {
b := make([]byte, 0, 32)
@@ -448,13 +437,11 @@ func (ga *ga_IE) FmtDateMedium(t time.Time) []byte {
b = append(b, []byte{0x20}...)
b = strconv.AppendInt(b, int64(t.Year()), 10)
- return b
+ return string(b)
}
// FmtDateLong returns the long date representation of 't' for 'ga_IE'
-// returned as a []byte just in case the caller wishes to add more and can help
-// avoid allocations; otherwise just cast as string.
-func (ga *ga_IE) FmtDateLong(t time.Time) []byte {
+func (ga *ga_IE) FmtDateLong(t time.Time) string {
b := make([]byte, 0, 32)
@@ -464,13 +451,11 @@ func (ga *ga_IE) FmtDateLong(t time.Time) []byte {
b = append(b, []byte{0x20}...)
b = strconv.AppendInt(b, int64(t.Year()), 10)
- return b
+ return string(b)
}
// FmtDateFull returns the full date representation of 't' for 'ga_IE'
-// returned as a []byte just in case the caller wishes to add more and can help
-// avoid allocations; otherwise just cast as string.
-func (ga *ga_IE) FmtDateFull(t time.Time) []byte {
+func (ga *ga_IE) FmtDateFull(t time.Time) string {
b := make([]byte, 0, 32)
@@ -482,13 +467,11 @@ func (ga *ga_IE) FmtDateFull(t time.Time) []byte {
b = append(b, []byte{0x20}...)
b = strconv.AppendInt(b, int64(t.Year()), 10)
- return b
+ return string(b)
}
// FmtTimeShort returns the short time representation of 't' for 'ga_IE'
-// returned as a []byte just in case the caller wishes to add more and can help
-// avoid allocations; otherwise just cast as string.
-func (ga *ga_IE) FmtTimeShort(t time.Time) []byte {
+func (ga *ga_IE) FmtTimeShort(t time.Time) string {
b := make([]byte, 0, 32)
@@ -505,13 +488,11 @@ func (ga *ga_IE) FmtTimeShort(t time.Time) []byte {
b = strconv.AppendInt(b, int64(t.Minute()), 10)
- return b
+ return string(b)
}
// FmtTimeMedium returns the medium time representation of 't' for 'ga_IE'
-// returned as a []byte just in case the caller wishes to add more and can help
-// avoid allocations; otherwise just cast as string.
-func (ga *ga_IE) FmtTimeMedium(t time.Time) []byte {
+func (ga *ga_IE) FmtTimeMedium(t time.Time) string {
b := make([]byte, 0, 32)
@@ -535,13 +516,11 @@ func (ga *ga_IE) FmtTimeMedium(t time.Time) []byte {
b = strconv.AppendInt(b, int64(t.Second()), 10)
- return b
+ return string(b)
}
// FmtTimeLong returns the long time representation of 't' for 'ga_IE'
-// returned as a []byte just in case the caller wishes to add more and can help
-// avoid allocations; otherwise just cast as string.
-func (ga *ga_IE) FmtTimeLong(t time.Time) []byte {
+func (ga *ga_IE) FmtTimeLong(t time.Time) string {
b := make([]byte, 0, 32)
@@ -569,13 +548,11 @@ func (ga *ga_IE) FmtTimeLong(t time.Time) []byte {
tz, _ := t.Zone()
b = append(b, tz...)
- return b
+ return string(b)
}
// FmtTimeFull returns the full time representation of 't' for 'ga_IE'
-// returned as a []byte just in case the caller wishes to add more and can help
-// avoid allocations; otherwise just cast as string.
-func (ga *ga_IE) FmtTimeFull(t time.Time) []byte {
+func (ga *ga_IE) FmtTimeFull(t time.Time) string {
b := make([]byte, 0, 32)
@@ -608,5 +585,5 @@ func (ga *ga_IE) FmtTimeFull(t time.Time) []byte {
b = append(b, tz...)
}
- return b
+ return string(b)
}