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/km
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 /km
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 'km')
-rw-r--r--km/km.go209
1 files changed, 93 insertions, 116 deletions
diff --git a/km/km.go b/km/km.go
index b2fb028d..2e36de2e 100644
--- a/km/km.go
+++ b/km/km.go
@@ -14,31 +14,31 @@ type km 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 'km' locale
@@ -48,30 +48,30 @@ func New() locales.Translator {
pluralsCardinal: []locales.PluralRule{6},
pluralsOrdinal: []locales.PluralRule{6},
pluralsRange: []locales.PluralRule{6},
- decimal: []byte{0x2c},
- group: []byte{0x2e},
- 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}, {0x41, 0x46, 0x41, 0x20}, {0x41, 0x46, 0x4e}, {0x41, 0x4c, 0x4b, 0x20}, {0x41, 0x4c, 0x4c}, {0x41, 0x4d, 0x44}, {0x41, 0x4e, 0x47}, {0x41, 0x4f, 0x41}, {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}, {0x41, 0x54, 0x53, 0x20}, {0x41, 0x24}, {0x41, 0x57, 0x47}, {0x41, 0x5a, 0x4d, 0x20}, {0x41, 0x5a, 0x4e}, {0x42, 0x41, 0x44, 0x20}, {0x42, 0x41, 0x4d}, {0x42, 0x41, 0x4e, 0x20}, {0x42, 0x42, 0x44}, {0x42, 0x44, 0x54}, {0x42, 0x45, 0x43, 0x20}, {0x42, 0x45, 0x46, 0x20}, {0x42, 0x45, 0x4c, 0x20}, {0x42, 0x47, 0x4c, 0x20}, {0x42, 0x47, 0x4d, 0x20}, {0x42, 0x47, 0x4e}, {0x42, 0x47, 0x4f, 0x20}, {0x42, 0x48, 0x44}, {0x42, 0x49, 0x46}, {0x42, 0x4d, 0x44}, {0x42, 0x4e, 0x44}, {0x42, 0x4f, 0x42}, {0x42, 0x4f, 0x4c, 0x20}, {0x42, 0x4f, 0x50, 0x20}, {0x42, 0x4f, 0x56, 0x20}, {0x42, 0x52, 0x42, 0x20}, {0x42, 0x52, 0x43, 0x20}, {0x42, 0x52, 0x45, 0x20}, {0x52, 0x24}, {0x42, 0x52, 0x4e, 0x20}, {0x42, 0x52, 0x52, 0x20}, {0x42, 0x52, 0x5a, 0x20}, {0x42, 0x53, 0x44}, {0x42, 0x54, 0x4e}, {0x42, 0x55, 0x4b, 0x20}, {0x42, 0x57, 0x50}, {0x42, 0x59, 0x42, 0x20}, {0x42, 0x59, 0x52}, {0x42, 0x5a, 0x44}, {0x43, 0x41, 0x24}, {0x43, 0x44, 0x46}, {0x43, 0x48, 0x45, 0x20}, {0x43, 0x48, 0x46}, {0x43, 0x48, 0x57, 0x20}, {0x43, 0x4c, 0x45, 0x20}, {0x43, 0x4c, 0x46, 0x20}, {0x43, 0x4c, 0x50}, {0x43, 0x4e, 0x58, 0x20}, {0x43, 0x4e, 0xc2, 0xa5}, {0x43, 0x4f, 0x50}, {0x43, 0x4f, 0x55, 0x20}, {0x43, 0x52, 0x43}, {0x43, 0x53, 0x44, 0x20}, {0x43, 0x53, 0x4b, 0x20}, {0x43, 0x55, 0x43}, {0x43, 0x55, 0x50}, {0x43, 0x56, 0x45}, {0x43, 0x59, 0x50, 0x20}, {0x43, 0x5a, 0x4b}, {0x44, 0x44, 0x4d, 0x20}, {0x44, 0x45, 0x4d, 0x20}, {0x44, 0x4a, 0x46}, {0x44, 0x4b, 0x4b}, {0x44, 0x4f, 0x50}, {0x44, 0x5a, 0x44}, {0x45, 0x43, 0x53, 0x20}, {0x45, 0x43, 0x56, 0x20}, {0x45, 0x45, 0x4b, 0x20}, {0x45, 0x47, 0x50}, {0x45, 0x52, 0x4e}, {0x45, 0x53, 0x41, 0x20}, {0x45, 0x53, 0x42, 0x20}, {0x45, 0x53, 0x50, 0x20}, {0x45, 0x54, 0x42}, {0xe2, 0x82, 0xac}, {0x46, 0x49, 0x4d, 0x20}, {0x46, 0x4a, 0x44}, {0x46, 0x4b, 0x50}, {0x46, 0x52, 0x46, 0x20}, {0xc2, 0xa3}, {0x47, 0x45, 0x4b, 0x20}, {0x47, 0x45, 0x4c}, {0x47, 0x48, 0x43, 0x20}, {0x47, 0x48, 0x53}, {0x47, 0x49, 0x50}, {0x47, 0x4d, 0x44}, {0x47, 0x4e, 0x46}, {0x47, 0x4e, 0x53, 0x20}, {0x47, 0x51, 0x45, 0x20}, {0x47, 0x52, 0x44, 0x20}, {0x47, 0x54, 0x51}, {0x47, 0x57, 0x45, 0x20}, {0x47, 0x57, 0x50, 0x20}, {0x47, 0x59, 0x44}, {0x48, 0x4b, 0x24}, {0x48, 0x4e, 0x4c}, {0x48, 0x52, 0x44, 0x20}, {0x48, 0x52, 0x4b}, {0x48, 0x54, 0x47}, {0x48, 0x55, 0x46}, {0x49, 0x44, 0x52}, {0x49, 0x45, 0x50, 0x20}, {0x49, 0x4c, 0x50, 0x20}, {0x49, 0x4c, 0x52, 0x20}, {0xe2, 0x82, 0xaa}, {0xe2, 0x82, 0xb9}, {0x49, 0x51, 0x44}, {0x49, 0x52, 0x52}, {0x49, 0x53, 0x4a, 0x20}, {0x49, 0x53, 0x4b}, {0x49, 0x54, 0x4c, 0x20}, {0x4a, 0x4d, 0x44}, {0x4a, 0x4f, 0x44}, {0x4a, 0x50, 0xc2, 0xa5}, {0x4b, 0x45, 0x53}, {0x4b, 0x47, 0x53}, {0xe1, 0x9f, 0x9b}, {0x4b, 0x4d, 0x46}, {0x4b, 0x50, 0x57}, {0x4b, 0x52, 0x48, 0x20}, {0x4b, 0x52, 0x4f, 0x20}, {0xe2, 0x82, 0xa9}, {0x4b, 0x57, 0x44}, {0x4b, 0x59, 0x44}, {0x4b, 0x5a, 0x54}, {0x4c, 0x41, 0x4b}, {0x4c, 0x42, 0x50}, {0x4c, 0x4b, 0x52}, {0x4c, 0x52, 0x44}, {0x4c, 0x53, 0x4c, 0x20}, {0x4c, 0x54, 0x4c}, {0x4c, 0x54, 0x54, 0x20}, {0x4c, 0x55, 0x43, 0x20}, {0x4c, 0x55, 0x46, 0x20}, {0x4c, 0x55, 0x4c, 0x20}, {0x4c, 0x56, 0x4c}, {0x4c, 0x56, 0x52, 0x20}, {0x4c, 0x59, 0x44}, {0x4d, 0x41, 0x44}, {0x4d, 0x41, 0x46, 0x20}, {0x4d, 0x43, 0x46, 0x20}, {0x4d, 0x44, 0x43, 0x20}, {0x4d, 0x44, 0x4c}, {0x4d, 0x47, 0x41}, {0x4d, 0x47, 0x46, 0x20}, {0x4d, 0x4b, 0x44}, {0x4d, 0x4b, 0x4e, 0x20}, {0x4d, 0x4c, 0x46, 0x20}, {0x4d, 0x4d, 0x4b}, {0x4d, 0x4e, 0x54}, {0x4d, 0x4f, 0x50}, {0x4d, 0x52, 0x4f}, {0x4d, 0x54, 0x4c, 0x20}, {0x4d, 0x54, 0x50, 0x20}, {0x4d, 0x55, 0x52}, {0x4d, 0x56, 0x50, 0x20}, {0x4d, 0x56, 0x52}, {0x4d, 0x57, 0x4b}, {0x4d, 0x58, 0x24}, {0x4d, 0x58, 0x50, 0x20}, {0x4d, 0x58, 0x56, 0x20}, {0x4d, 0x59, 0x52}, {0x4d, 0x5a, 0x45, 0x20}, {0x4d, 0x5a, 0x4d, 0x20}, {0x4d, 0x5a, 0x4e}, {0x4e, 0x41, 0x44}, {0x4e, 0x47, 0x4e}, {0x4e, 0x49, 0x43, 0x20}, {0x4e, 0x49, 0x4f}, {0x4e, 0x4c, 0x47, 0x20}, {0x4e, 0x4f, 0x4b}, {0x4e, 0x50, 0x52}, {0x4e, 0x5a, 0x24}, {0x4f, 0x4d, 0x52}, {0x50, 0x41, 0x42}, {0x50, 0x45, 0x49, 0x20}, {0x50, 0x45, 0x4e}, {0x50, 0x45, 0x53, 0x20}, {0x50, 0x47, 0x4b}, {0x50, 0x48, 0x50}, {0x50, 0x4b, 0x52}, {0x50, 0x4c, 0x4e}, {0x50, 0x4c, 0x5a, 0x20}, {0x50, 0x54, 0x45, 0x20}, {0x50, 0x59, 0x47}, {0x51, 0x41, 0x52}, {0x52, 0x48, 0x44, 0x20}, {0x52, 0x4f, 0x4c, 0x20}, {0x52, 0x4f, 0x4e}, {0x52, 0x53, 0x44}, {0x52, 0x55, 0x42}, {0x52, 0x55, 0x52, 0x20}, {0x52, 0x57, 0x46}, {0x53, 0x41, 0x52}, {0x53, 0x42, 0x44}, {0x53, 0x43, 0x52}, {0x53, 0x44, 0x44, 0x20}, {0x53, 0x44, 0x47}, {0x53, 0x44, 0x50, 0x20}, {0x53, 0x45, 0x4b}, {0x53, 0x47, 0x44}, {0x53, 0x48, 0x50}, {0x53, 0x49, 0x54, 0x20}, {0x53, 0x4b, 0x4b, 0x20}, {0x53, 0x4c, 0x4c}, {0x53, 0x4f, 0x53}, {0x53, 0x52, 0x44}, {0x53, 0x52, 0x47, 0x20}, {0x53, 0x53, 0x50}, {0x53, 0x54, 0x44}, {0x53, 0x55, 0x52, 0x20}, {0x53, 0x56, 0x43, 0x20}, {0x53, 0x59, 0x50}, {0x53, 0x5a, 0x4c}, {0xe0, 0xb8, 0xbf}, {0x54, 0x4a, 0x52, 0x20}, {0x54, 0x4a, 0x53}, {0x54, 0x4d, 0x4d, 0x20}, {0x54, 0x4d, 0x54}, {0x54, 0x4e, 0x44}, {0x54, 0x4f, 0x50}, {0x54, 0x50, 0x45, 0x20}, {0x54, 0x52, 0x4c, 0x20}, {0x54, 0x52, 0x59}, {0x54, 0x54, 0x44}, {0x4e, 0x54, 0x24}, {0x54, 0x5a, 0x53}, {0x55, 0x41, 0x48}, {0x55, 0x41, 0x4b, 0x20}, {0x55, 0x47, 0x53, 0x20}, {0x55, 0x47, 0x58}, {0x24}, {0x55, 0x53, 0x4e, 0x20}, {0x55, 0x53, 0x53, 0x20}, {0x55, 0x59, 0x49, 0x20}, {0x55, 0x59, 0x50, 0x20}, {0x55, 0x59, 0x55}, {0x55, 0x5a, 0x53}, {0x56, 0x45, 0x42, 0x20}, {0x56, 0x45, 0x46}, {0xe2, 0x82, 0xab}, {0x56, 0x4e, 0x4e, 0x20}, {0x56, 0x55, 0x56}, {0x57, 0x53, 0x54}, {0x46, 0x43, 0x46, 0x41}, {0x58, 0x41, 0x47, 0x20}, {0x58, 0x41, 0x55, 0x20}, {0x58, 0x42, 0x41, 0x20}, {0x58, 0x42, 0x42, 0x20}, {0x58, 0x42, 0x43, 0x20}, {0x58, 0x42, 0x44, 0x20}, {0x45, 0x43, 0x24}, {0x58, 0x44, 0x52, 0x20}, {0x58, 0x45, 0x55, 0x20}, {0x58, 0x46, 0x4f, 0x20}, {0x58, 0x46, 0x55, 0x20}, {0x43, 0x46, 0x41}, {0x58, 0x50, 0x44, 0x20}, {0x43, 0x46, 0x50, 0x46}, {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}, {0x59, 0x55, 0x44, 0x20}, {0x59, 0x55, 0x4d, 0x20}, {0x59, 0x55, 0x4e, 0x20}, {0x59, 0x55, 0x52, 0x20}, {0x5a, 0x41, 0x4c, 0x20}, {0x5a, 0x41, 0x52}, {0x5a, 0x4d, 0x4b, 0x20}, {0x5a, 0x4d, 0x57}, {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), {0xe1, 0x9e, 0x98, 0xe1, 0x9e, 0x80, 0xe1, 0x9e, 0x9a, 0xe1, 0x9e, 0xb6}, {0xe1, 0x9e, 0x80, 0xe1, 0x9e, 0xbb, 0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x97, 0xe1, 0x9f, 0x88}, {0xe1, 0x9e, 0x98, 0xe1, 0x9e, 0xb8, 0xe1, 0x9e, 0x93, 0xe1, 0x9e, 0xb6}, {0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x81, 0xe1, 0x9e, 0x9f, 0xe1, 0x9e, 0xb6}, {0xe1, 0x9e, 0xa7, 0xe1, 0x9e, 0x9f, 0xe1, 0x9e, 0x97, 0xe1, 0x9e, 0xb6}, {0xe1, 0x9e, 0x98, 0xe1, 0x9e, 0xb7, 0xe1, 0x9e, 0x90, 0xe1, 0x9e, 0xbb, 0xe1, 0x9e, 0x93, 0xe1, 0x9e, 0xb6}, {0xe1, 0x9e, 0x80, 0xe1, 0x9e, 0x80, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x80, 0xe1, 0x9e, 0x8a, 0xe1, 0x9e, 0xb6}, {0xe1, 0x9e, 0x9f, 0xe1, 0x9e, 0xb8, 0xe1, 0x9e, 0xa0, 0xe1, 0x9e, 0xb6}, {0xe1, 0x9e, 0x80, 0xe1, 0x9e, 0x89, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x89, 0xe1, 0x9e, 0xb6}, {0xe1, 0x9e, 0x8f, 0xe1, 0x9e, 0xbb, 0xe1, 0x9e, 0x9b, 0xe1, 0x9e, 0xb6}, {0xe1, 0x9e, 0x9c, 0xe1, 0x9e, 0xb7, 0xe1, 0x9e, 0x85, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x86, 0xe1, 0x9e, 0xb7, 0xe1, 0x9e, 0x80, 0xe1, 0x9e, 0xb6}, {0xe1, 0x9e, 0x92, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x93, 0xe1, 0x9e, 0xbc}},
- monthsNarrow: [][]uint8{[]uint8(nil), {0x31}, {0x32}, {0x33}, {0x34}, {0x35}, {0x36}, {0x37}, {0x38}, {0x39}, {0x31, 0x30}, {0x31, 0x31}, {0x31, 0x32}},
- monthsWide: [][]uint8{[]uint8(nil), {0xe1, 0x9e, 0x98, 0xe1, 0x9e, 0x80, 0xe1, 0x9e, 0x9a, 0xe1, 0x9e, 0xb6}, {0xe1, 0x9e, 0x80, 0xe1, 0x9e, 0xbb, 0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x97, 0xe1, 0x9f, 0x88}, {0xe1, 0x9e, 0x98, 0xe1, 0x9e, 0xb8, 0xe1, 0x9e, 0x93, 0xe1, 0x9e, 0xb6}, {0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x81, 0xe1, 0x9e, 0x9f, 0xe1, 0x9e, 0xb6}, {0xe1, 0x9e, 0xa7, 0xe1, 0x9e, 0x9f, 0xe1, 0x9e, 0x97, 0xe1, 0x9e, 0xb6}, {0xe1, 0x9e, 0x98, 0xe1, 0x9e, 0xb7, 0xe1, 0x9e, 0x90, 0xe1, 0x9e, 0xbb, 0xe1, 0x9e, 0x93, 0xe1, 0x9e, 0xb6}, {0xe1, 0x9e, 0x80, 0xe1, 0x9e, 0x80, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x80, 0xe1, 0x9e, 0x8a, 0xe1, 0x9e, 0xb6}, {0xe1, 0x9e, 0x9f, 0xe1, 0x9e, 0xb8, 0xe1, 0x9e, 0xa0, 0xe1, 0x9e, 0xb6}, {0xe1, 0x9e, 0x80, 0xe1, 0x9e, 0x89, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x89, 0xe1, 0x9e, 0xb6}, {0xe1, 0x9e, 0x8f, 0xe1, 0x9e, 0xbb, 0xe1, 0x9e, 0x9b, 0xe1, 0x9e, 0xb6}, {0xe1, 0x9e, 0x9c, 0xe1, 0x9e, 0xb7, 0xe1, 0x9e, 0x85, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x86, 0xe1, 0x9e, 0xb7, 0xe1, 0x9e, 0x80, 0xe1, 0x9e, 0xb6}, {0xe1, 0x9e, 0x92, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x93, 0xe1, 0x9e, 0xbc}},
- daysAbbreviated: [][]uint8{{0xe1, 0x9e, 0xa2, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x91, 0xe1, 0x9e, 0xb7, 0xe1, 0x9e, 0x8f, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x99}, {0xe1, 0x9e, 0x85, 0xe1, 0x9f, 0x90, 0xe1, 0x9e, 0x93, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x91}, {0xe1, 0x9e, 0xa2, 0xe1, 0x9e, 0x84, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x82, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x9a}, {0xe1, 0x9e, 0x96, 0xe1, 0x9e, 0xbb, 0xe1, 0x9e, 0x92}, {0xe1, 0x9e, 0x96, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x9a, 0xe1, 0x9e, 0xa0, 0xe1, 0x9e, 0x9f, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x94, 0xe1, 0x9e, 0x8f, 0xe1, 0x9e, 0xb7, 0xe1, 0x9f, 0x8d}, {0xe1, 0x9e, 0x9f, 0xe1, 0x9e, 0xbb, 0xe1, 0x9e, 0x80, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x9a}, {0xe1, 0x9e, 0x9f, 0xe1, 0x9f, 0x85, 0xe1, 0x9e, 0x9a, 0xe1, 0x9f, 0x8d}},
- daysNarrow: [][]uint8{{0xe1, 0x9e, 0xa2, 0xe1, 0x9e, 0xb6}, {0xe1, 0x9e, 0x85}, {0xe1, 0x9e, 0xa2}, {0xe1, 0x9e, 0x96, 0xe1, 0x9e, 0xbb}, {0xe1, 0x9e, 0x96, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x9a}, {0xe1, 0x9e, 0x9f, 0xe1, 0x9e, 0xbb}, {0xe1, 0x9e, 0x9f}},
- daysShort: [][]uint8{{0xe1, 0x9e, 0xa2, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x91, 0xe1, 0x9e, 0xb7, 0xe1, 0x9e, 0x8f, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x99}, {0xe1, 0x9e, 0x85, 0xe1, 0x9f, 0x90, 0xe1, 0x9e, 0x93, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x91}, {0xe1, 0x9e, 0xa2, 0xe1, 0x9e, 0x84, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x82, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x9a}, {0xe1, 0x9e, 0x96, 0xe1, 0x9e, 0xbb, 0xe1, 0x9e, 0x92}, {0xe1, 0x9e, 0x96, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x9a, 0xe1, 0x9e, 0xa0, 0xe1, 0x9e, 0x9f, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x94, 0xe1, 0x9e, 0x8f, 0xe1, 0x9e, 0xb7, 0xe1, 0x9f, 0x8d}, {0xe1, 0x9e, 0x9f, 0xe1, 0x9e, 0xbb, 0xe1, 0x9e, 0x80, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x9a}, {0xe1, 0x9e, 0x9f, 0xe1, 0x9f, 0x85, 0xe1, 0x9e, 0x9a, 0xe1, 0x9f, 0x8d}},
- daysWide: [][]uint8{{0xe1, 0x9e, 0xa2, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x91, 0xe1, 0x9e, 0xb7, 0xe1, 0x9e, 0x8f, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x99}, {0xe1, 0x9e, 0x85, 0xe1, 0x9f, 0x90, 0xe1, 0x9e, 0x93, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x91}, {0xe1, 0x9e, 0xa2, 0xe1, 0x9e, 0x84, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x82, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x9a}, {0xe1, 0x9e, 0x96, 0xe1, 0x9e, 0xbb, 0xe1, 0x9e, 0x92}, {0xe1, 0x9e, 0x96, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x9a, 0xe1, 0x9e, 0xa0, 0xe1, 0x9e, 0x9f, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x94, 0xe1, 0x9e, 0x8f, 0xe1, 0x9e, 0xb7, 0xe1, 0x9f, 0x8d}, {0xe1, 0x9e, 0x9f, 0xe1, 0x9e, 0xbb, 0xe1, 0x9e, 0x80, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x9a}, {0xe1, 0x9e, 0x9f, 0xe1, 0x9f, 0x85, 0xe1, 0x9e, 0x9a, 0xe1, 0x9f, 0x8d}},
- periodsAbbreviated: [][]uint8{{0xe1, 0x9e, 0x96, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x9a, 0xe1, 0x9e, 0xb9, 0xe1, 0x9e, 0x80}, {0xe1, 0x9e, 0x9b, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x84, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x85}},
- periodsNarrow: [][]uint8{{0xe1, 0x9e, 0x96, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x9a, 0xe1, 0x9e, 0xb9, 0xe1, 0x9e, 0x80}, {0xe1, 0x9e, 0x9b, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x84, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x85}},
- periodsWide: [][]uint8{{0xe1, 0x9e, 0x96, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x9a, 0xe1, 0x9e, 0xb9, 0xe1, 0x9e, 0x80}, {0xe1, 0x9e, 0x9b, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x84, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x85}},
- erasAbbreviated: [][]uint8{{0xe1, 0x9e, 0x98, 0xe1, 0x9e, 0xbb, 0xe1, 0x9e, 0x93, 0x20, 0xe1, 0x9e, 0x82, 0x2e, 0xe1, 0x9e, 0x9f, 0x2e}, {0xe1, 0x9e, 0x82, 0x2e, 0xe1, 0x9e, 0x9f, 0x2e}},
- erasNarrow: [][]uint8{[]uint8(nil), []uint8(nil)},
- erasWide: [][]uint8{{0xe1, 0x9e, 0x98, 0xe1, 0x9e, 0xbb, 0xe1, 0x9e, 0x93, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x82, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x9a, 0xe1, 0x9e, 0xb7, 0xe1, 0x9e, 0x9f, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x8f, 0xe1, 0x9e, 0x9f, 0xe1, 0x9e, 0x80, 0xe1, 0x9e, 0x9a, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x87}, {0xe1, 0x9e, 0x82, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x9a, 0xe1, 0x9e, 0xb7, 0xe1, 0x9e, 0x9f, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x8f, 0xe1, 0x9e, 0x9f, 0xe1, 0x9e, 0x80, 0xe1, 0x9e, 0x9a, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x87}},
- timezones: map[string][]uint8{"CDT": {0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x89, 0xe1, 0x9f, 0x84, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x96, 0xe1, 0x9f, 0x81, 0xe1, 0x9e, 0x9b, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x90, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x84, 0xe1, 0x9f, 0x83, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x97, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x82, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x80, 0xe1, 0x9e, 0x8e, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x8a, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x9b, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x93, 0xe1, 0x9f, 0x85, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0xa2, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x81, 0xe1, 0x9e, 0x9a, 0xe1, 0x9e, 0xb7, 0xe1, 0x9e, 0x80, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x81, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x87, 0xe1, 0x9e, 0xbe, 0xe1, 0x9e, 0x84}, "HAST": {0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x89, 0xe1, 0x9f, 0x84, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x9f, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x8f, 0xe1, 0x9e, 0x84, 0xe1, 0x9f, 0x8b, 0xe1, 0x9e, 0x8a, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x9a, 0xe2, 0x80, 0x8b, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x93, 0xe1, 0x9f, 0x85, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0xa0, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x9c, 0xe1, 0x9f, 0x83, 0x2d, 0xe1, 0x9e, 0xa2, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x9b, 0xe1, 0x9f, 0x8b, 0xe1, 0x9e, 0x8a, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x99, 0xe1, 0x9e, 0xbc, 0xe1, 0x9e, 0x9f, 0xe1, 0x9e, 0xb7, 0xe1, 0x9e, 0x93}, "ARST": {0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x89, 0xe1, 0x9f, 0x84, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x9a, 0xe1, 0x9e, 0x8a, 0xe1, 0x9e, 0xbc, 0xe1, 0x9e, 0x9c, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x80, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x8a, 0xe1, 0x9f, 0x85, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x93, 0xe1, 0x9f, 0x85, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0xa2, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x9f, 0xe1, 0x9e, 0x84, 0xe1, 0x9f, 0x8b, 0xe1, 0x9e, 0x91, 0xe1, 0x9e, 0xb8, 0xe1, 0x9e, 0x93}, "CLT": {0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x89, 0xe1, 0x9f, 0x84, 0xe1, 0x9e, 0x84, 0xe1, 0x9e, 0x9f, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x8f, 0xe1, 0x9e, 0x84, 0xe1, 0x9f, 0x8b, 0xe1, 0x9e, 0x8a, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x9a, 0xe1, 0x9e, 0x93, 0xe1, 0x9f, 0x85, 0xe1, 0x9e, 0x88, 0xe1, 0x9e, 0xb8, 0xe1, 0x9e, 0x9b, 0xe1, 0x9e, 0xb8}, "EST": {0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x89, 0xe1, 0x9f, 0x84, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x9f, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x8f, 0xe1, 0x9e, 0x84, 0xe1, 0x9f, 0x8b, 0xe1, 0x9e, 0x8a, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x9a, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x97, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x82, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x81, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x80, 0xe1, 0x9e, 0xbe, 0xe1, 0x9e, 0x8f, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x93, 0xe1, 0x9f, 0x85, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0xa2, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x81, 0xe1, 0x9e, 0x9a, 0xe1, 0x9e, 0xb7, 0xe1, 0x9e, 0x80, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x81, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x87, 0xe1, 0x9e, 0xbe, 0xe1, 0x9e, 0x84}, "IST": {0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x89, 0xe1, 0x9f, 0x84, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x93, 0xe1, 0x9f, 0x85, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0xa5, 0xe1, 0x9e, 0x8e, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x8c, 0xe1, 0x9e, 0xb6}, "WITA": {0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x89, 0xe1, 0x9f, 0x84, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x93, 0xe1, 0x9f, 0x85, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0xa5, 0xe1, 0x9e, 0x8e, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x8c, 0xe1, 0x9e, 0xbc, 0xe1, 0x9e, 0x8e, 0xe1, 0x9f, 0x81, 0xe1, 0x9e, 0x9f, 0xe1, 0x9f, 0x8a, 0xe1, 0x9e, 0xb8, 0xe2, 0x80, 0x8b, 0xe2, 0x80, 0x8b, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x80, 0xe1, 0x9e, 0x8e, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x8a, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x9b}, "TMST": {0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x89, 0xe1, 0x9f, 0x84, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x9a, 0xe1, 0x9e, 0x8a, 0xe1, 0x9e, 0xbc, 0xe1, 0x9e, 0x9c, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x80, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x8a, 0xe1, 0x9f, 0x85, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x93, 0xe1, 0x9f, 0x85, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x8f, 0xe1, 0x9e, 0xbd, 0xe1, 0x9e, 0x80, 0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x89, 0xe1, 0x9f, 0x81, 0xe1, 0x9e, 0x93, 0xe1, 0x9e, 0xb8, 0xe1, 0x9e, 0x9f, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x90, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x93, 0xe2, 0x80, 0x8b}, "UYT": {0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x89, 0xe1, 0x9f, 0x84, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x9f, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x8f, 0xe1, 0x9e, 0x84, 0xe1, 0x9f, 0x8b, 0xe1, 0x9e, 0x8a, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x9a, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x93, 0xe1, 0x9f, 0x85, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0xa2, 0xe1, 0x9f, 0x8a, 0xe1, 0x9e, 0xbb, 0xe1, 0x9e, 0x99, 0xe1, 0x9e, 0x9a, 0xe1, 0x9e, 0xbc, 0xe1, 0x9e, 0xa0, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x82, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x99}, "MYT": {0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x89, 0xe1, 0x9f, 0x84, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x93, 0xe1, 0x9f, 0x85, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x89, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0xa1, 0xe1, 0x9f, 0x81, 0xe1, 0x9e, 0x9f, 0xe1, 0x9f, 0x8a, 0xe1, 0x9e, 0xb8}, "WARST": {0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x89, 0xe1, 0x9f, 0x84, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x9a, 0xe1, 0x9e, 0x8a, 0xe1, 0x9e, 0xbc, 0xe1, 0x9e, 0x9c, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x80, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x8a, 0xe1, 0x9f, 0x85, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x93, 0xe1, 0x9f, 0x85, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0xa2, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x9f, 0xe1, 0x9e, 0x84, 0xe1, 0x9f, 0x8b, 0xe1, 0x9e, 0x91, 0xe1, 0x9e, 0xb8, 0xe1, 0x9e, 0x93, 0xe2, 0x80, 0x8b, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x81, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x9b, 0xe1, 0x9e, 0xb7, 0xe1, 0x9e, 0x85}, "AEDT": {0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x89, 0xe1, 0x9f, 0x84, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x96, 0xe1, 0x9f, 0x81, 0xe1, 0x9e, 0x9b, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x90, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x84, 0xe1, 0x9f, 0x83, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x93, 0xe1, 0x9f, 0x85, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0xa2, 0xe1, 0x9e, 0xbc, 0xe1, 0x9e, 0x9f, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x8f, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x9a, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x9b, 0xe1, 0x9e, 0xb8, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x81, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x80, 0xe1, 0x9e, 0xbe, 0xe1, 0x9e, 0x8f}, "ECT": {0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x89, 0xe1, 0x9f, 0x84, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x93, 0xe1, 0x9f, 0x85, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0xa2, 0xe1, 0x9f, 0x81, 0xe1, 0x9e, 0x80, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x9c, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x91, 0xe1, 0x9f, 0x90, 0xe1, 0x9e, 0x9a}, "ACDT": {0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x89, 0xe1, 0x9f, 0x84, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x96, 0xe1, 0x9f, 0x81, 0xe1, 0x9e, 0x9b, 0xe1, 0x9e, 0x90, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x84, 0xe1, 0x9f, 0x83, 0xe2, 0x80, 0x8b, 0xe2, 0x80, 0x8b, 0xe2, 0x80, 0x8b, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x93, 0xe1, 0x9f, 0x85, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0xa2, 0xe1, 0x9e, 0xbc, 0xe1, 0x9e, 0x9f, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x8f, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x9a, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x9b, 0xe1, 0x9e, 0xb8, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x80, 0xe1, 0x9e, 0x8e, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x8a, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x9b}, "MDT": {0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x89, 0xe1, 0x9f, 0x84, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x96, 0xe1, 0x9f, 0x81, 0xe1, 0x9e, 0x9b, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x90, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x84, 0xe1, 0x9f, 0x83, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x93, 0xe1, 0x9f, 0x85, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x8f, 0xe1, 0x9f, 0x86, 0xe1, 0x9e, 0x94, 0xe1, 0x9e, 0x93, 0xe1, 0x9f, 0x8b, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x97, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x93, 0xe1, 0x9f, 0x86, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0xa2, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x81, 0xe1, 0x9e, 0x9a, 0xe1, 0x9e, 0xb7, 0xe1, 0x9e, 0x80, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x97, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x82, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x81, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x87, 0xe1, 0x9e, 0xbe, 0xe1, 0x9e, 0x84}, "JST": {0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x89, 0xe1, 0x9f, 0x84, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x9f, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x8f, 0xe1, 0x9e, 0x84, 0xe1, 0x9f, 0x8b, 0xe1, 0x9e, 0x8a, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x9a, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x93, 0xe1, 0x9f, 0x85, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x87, 0xe1, 0x9e, 0x94, 0xe1, 0x9f, 0x89, 0xe1, 0x9e, 0xbb, 0xe1, 0x9e, 0x93}, "EDT": {0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x89, 0xe1, 0x9f, 0x84, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x96, 0xe1, 0x9f, 0x81, 0xe1, 0x9e, 0x9b, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x90, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x84, 0xe1, 0x9f, 0x83, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x97, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x82, 0xe1, 0x9e, 0x81, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x80, 0xe1, 0x9e, 0xbe, 0xe1, 0x9e, 0x8f, 0xe1, 0x9e, 0x93, 0xe1, 0x9f, 0x85, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0xa2, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x81, 0xe1, 0x9e, 0x9a, 0xe1, 0x9e, 0xb7, 0xe1, 0x9e, 0x80, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x81, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x87, 0xe1, 0x9e, 0xbe, 0xe1, 0x9e, 0x84}, "GYT": {0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x89, 0xe1, 0x9f, 0x84, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x93, 0xe1, 0x9f, 0x85, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x83, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x9c, 0xe1, 0x9e, 0xb8, 0xe1, 0x9e, 0x99, 0xe1, 0x9f, 0x89, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x93}, "VET": {0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x89, 0xe1, 0x9f, 0x84, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x93, 0xe1, 0x9f, 0x85, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x9c, 0xe1, 0x9f, 0x89, 0xe1, 0x9f, 0x81, 0xe1, 0x9e, 0x8e, 0xe1, 0x9f, 0x81, 0xe1, 0x9e, 0x9f, 0xe1, 0x9f, 0x8a, 0xe1, 0x9e, 0xbb, 0xe1, 0x9e, 0x99, 0xe1, 0x9e, 0xa2, 0xe1, 0x9f, 0x81, 0xe1, 0x9e, 0xa1, 0xe1, 0x9e, 0xb6}, "MEZ": {0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x89, 0xe1, 0x9f, 0x84, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x9f, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x8f, 0xe1, 0x9e, 0x84, 0xe1, 0x9f, 0x8b, 0xe1, 0x9e, 0x8a, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x9a, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x93, 0xe1, 0x9f, 0x85, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0xa2, 0xe1, 0x9e, 0xba, 0xe1, 0x9e, 0x9a, 0xe1, 0x9f, 0x89, 0xe1, 0x9e, 0xbb, 0xe1, 0x9e, 0x94, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x80, 0xe1, 0x9e, 0x8e, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x8a, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x9b}, "BOT": {0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x89, 0xe1, 0x9f, 0x84, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x93, 0xe1, 0x9f, 0x85, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x94, 0xe1, 0x9e, 0xbc, 0xe1, 0x9e, 0x9b, 0xe1, 0x9e, 0xb8, 0xe1, 0x9e, 0x9c, 0xe1, 0x9e, 0xb8}, "JDT": {0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x89, 0xe1, 0x9f, 0x84, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x96, 0xe1, 0x9f, 0x81, 0xe1, 0x9e, 0x9b, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x90, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x84, 0xe1, 0x9f, 0x83, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x93, 0xe1, 0x9f, 0x85, 0xe1, 0x9e, 0x87, 0xe1, 0x9e, 0x94, 0xe1, 0x9f, 0x89, 0xe1, 0x9e, 0xbb, 0xe1, 0x9e, 0x93}, "LHST": {0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x89, 0xe1, 0x9f, 0x84, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x9f, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x8f, 0xe1, 0x9e, 0x84, 0xe1, 0x9f, 0x8b, 0xe1, 0x9e, 0x8a, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x9a, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x93, 0xe1, 0x9f, 0x85, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0xa1, 0xe1, 0x9e, 0x8f, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0xa0, 0xe1, 0x9f, 0x85}, "SRT": {0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x89, 0xe1, 0x9f, 0x84, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x93, 0xe1, 0x9f, 0x85, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x9f, 0xe1, 0x9e, 0xbc, 0xe1, 0x9e, 0x9a, 0xe1, 0x9e, 0xb8, 0xe1, 0x9e, 0x8e, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x98}, "BT": {0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x89, 0xe1, 0x9f, 0x84, 0xe1, 0x9e, 0x84, 0xe1, 0x9e, 0x93, 0xe1, 0x9f, 0x85, 0xe1, 0x9e, 0x94, 0xe1, 0x9f, 0x8a, 0xe1, 0x9e, 0xbc, 0xe1, 0x9e, 0x8f, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x93}, "AEST": {0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x89, 0xe1, 0x9f, 0x84, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x9f, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x8f, 0xe1, 0x9e, 0x84, 0xe1, 0x9f, 0x8b, 0xe1, 0x9e, 0x8a, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x9a, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x93, 0xe1, 0x9f, 0x85, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0xa2, 0xe1, 0x9e, 0xbc, 0xe1, 0x9e, 0x9f, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x8f, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x9a, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x9b, 0xe1, 0x9e, 0xb8, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x81, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x80, 0xe1, 0x9e, 0xbe, 0xe1, 0x9e, 0x8f}, "COT": {0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x89, 0xe1, 0x9f, 0x84, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x9f, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x8f, 0xe1, 0x9e, 0x84, 0xe1, 0x9f, 0x8b, 0xe1, 0x9e, 0x8a, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x9a, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x93, 0xe1, 0x9f, 0x85, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x80, 0xe1, 0x9e, 0xbc, 0xe1, 0x9e, 0xa1, 0xe1, 0x9e, 0xbb, 0xe1, 0x9f, 0x86, 0xe1, 0x9e, 0x94, 0xe1, 0x9f, 0x8a, 0xe1, 0x9e, 0xb8}, "CHADT": {0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x89, 0xe1, 0x9f, 0x84, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x96, 0xe1, 0x9f, 0x81, 0xe1, 0x9e, 0x9b, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x90, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x84, 0xe1, 0x9f, 0x83, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x93, 0xe1, 0x9f, 0x85, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x85, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x90, 0xe1, 0x9e, 0xb6, 0xe1, 0x9f, 0x86}, "UYST": {0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x89, 0xe1, 0x9f, 0x84, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x9a, 0xe1, 0x9e, 0x8a, 0xe1, 0x9e, 0xbc, 0xe1, 0x9e, 0x9c, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x80, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x8a, 0xe1, 0x9f, 0x85, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x93, 0xe1, 0x9f, 0x85, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0xa2, 0xe1, 0x9f, 0x8a, 0xe1, 0x9e, 0xbb, 0xe1, 0x9e, 0x99, 0xe1, 0x9e, 0x9a, 0xe1, 0x9e, 0xbc, 0xe1, 0x9e, 0xa0, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x82, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x99}, "WEZ": {0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x89, 0xe1, 0x9f, 0x84, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x9f, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x8f, 0xe1, 0x9e, 0x84, 0xe1, 0x9f, 0x8b, 0xe1, 0x9e, 0x8a, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x9a, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x93, 0xe1, 0x9f, 0x85, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0xa2, 0xe1, 0x9e, 0xba, 0xe1, 0x9e, 0x9a, 0xe1, 0x9f, 0x89, 0xe1, 0x9e, 0xbb, 0xe1, 0x9e, 0x94, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x81, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x9b, 0xe1, 0x9e, 0xb7, 0xe1, 0x9e, 0x85}, "ACWDT": {0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x89, 0xe1, 0x9f, 0x84, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x96, 0xe1, 0x9f, 0x81, 0xe1, 0x9e, 0x9b, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x90, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x84, 0xe1, 0x9f, 0x83, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x93, 0xe1, 0x9f, 0x85, 0xe2, 0x80, 0x8b, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x97, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x82, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x81, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x9b, 0xe1, 0x9e, 0xb7, 0xe1, 0x9e, 0x85, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x93, 0xe1, 0x9f, 0x83, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0xa2, 0xe1, 0x9e, 0xbc, 0xe1, 0x9e, 0x9f, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x8f, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x9a, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x9b, 0xe1, 0x9e, 0xb8, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x80, 0xe1, 0x9e, 0x8e, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x8a, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x9b}, "AWDT": {0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x89, 0xe1, 0x9f, 0x84, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x96, 0xe1, 0x9f, 0x81, 0xe1, 0x9e, 0x9b, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x90, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x84, 0xe1, 0x9f, 0x83, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x93, 0xe1, 0x9f, 0x85, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0xa2, 0xe1, 0x9e, 0xbc, 0xe1, 0x9e, 0x9f, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x8f, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x9a, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x9b, 0xe1, 0x9e, 0xb8, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x81, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x9b, 0xe1, 0x9e, 0xb7, 0xe1, 0x9e, 0x85}, "HKST": {0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x89, 0xe1, 0x9f, 0x84, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x9a, 0xe1, 0x9e, 0x8a, 0xe1, 0x9e, 0xbc, 0xe1, 0x9e, 0x9c, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x80, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x8a, 0xe1, 0x9f, 0x85, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x93, 0xe1, 0x9f, 0x85, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0xa0, 0xe1, 0x9e, 0xbb, 0xe1, 0x9e, 0x84, 0xe1, 0x9e, 0x80, 0xe1, 0x9e, 0xbb, 0xe1, 0x9e, 0x84}, "WIT": {0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x89, 0xe1, 0x9f, 0x84, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x93, 0xe1, 0x9f, 0x85, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0xa5, 0xe1, 0x9e, 0x8e, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x8c, 0xe1, 0x9e, 0xbc, 0xe1, 0x9e, 0x8e, 0xe1, 0x9f, 0x81, 0xe1, 0x9e, 0x9f, 0xe1, 0x9f, 0x8a, 0xe1, 0x9e, 0xb8, 0xe2, 0x80, 0x8b, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x81, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x80, 0xe1, 0x9e, 0xbe, 0xe1, 0x9e, 0x8f}, "WESZ": {0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x89, 0xe1, 0x9f, 0x84, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x9a, 0xe1, 0x9e, 0x8a, 0xe1, 0x9e, 0xbc, 0xe1, 0x9e, 0x9c, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x80, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x8a, 0xe1, 0x9f, 0x85, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x93, 0xe1, 0x9f, 0x85, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0xa2, 0xe1, 0x9e, 0xba, 0xe1, 0x9e, 0x9a, 0xe1, 0x9f, 0x89, 0xe1, 0x9e, 0xbb, 0xe1, 0x9e, 0x94, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x81, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x9b, 0xe1, 0x9e, 0xb7, 0xe1, 0x9e, 0x85}, "AWST": {0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x89, 0xe1, 0x9f, 0x84, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x9f, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x8f, 0xe1, 0x9e, 0x84, 0xe1, 0x9f, 0x8b, 0xe1, 0x9e, 0x8a, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x9a, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x93, 0xe1, 0x9f, 0x85, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0xa2, 0xe1, 0x9e, 0xbc, 0xe1, 0x9e, 0x9f, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x8f, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x9a, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x9b, 0xe1, 0x9e, 0xb8, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x81, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x9b, 0xe1, 0x9e, 0xb7, 0xe1, 0x9e, 0x85}, "OEZ": {0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x89, 0xe1, 0x9f, 0x84, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x9f, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x8f, 0xe1, 0x9e, 0x84, 0xe1, 0x9f, 0x8b, 0xe1, 0x9e, 0x8a, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x9a, 0xe2, 0x80, 0x8b, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x93, 0xe1, 0x9f, 0x85, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0xa2, 0xe1, 0x9e, 0xba, 0xe1, 0x9e, 0x9a, 0xe1, 0x9f, 0x89, 0xe1, 0x9e, 0xbb, 0xe1, 0x9e, 0x94, 0xe2, 0x80, 0x8b, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x81, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x80, 0xe1, 0x9e, 0xbe, 0xe1, 0x9e, 0x8f, 0xe2, 0x80, 0x8b}, "CLST": {0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x89, 0xe1, 0x9f, 0x84, 0xe1, 0x9e, 0x84, 0xe1, 0x9e, 0x9a, 0xe1, 0x9e, 0x8a, 0xe1, 0x9e, 0xbc, 0xe1, 0x9e, 0x9c, 0xe1, 0x9e, 0x80, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x8f, 0xe1, 0x9f, 0x85, 0xe1, 0x9e, 0x93, 0xe1, 0x9f, 0x85, 0xe1, 0x9e, 0x88, 0xe1, 0x9e, 0xb8, 0xe1, 0x9e, 0x9b, 0xe1, 0x9e, 0xb8}, "LHDT": {0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x89, 0xe1, 0x9f, 0x84, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x96, 0xe1, 0x9f, 0x81, 0xe1, 0x9e, 0x9b, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x90, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x84, 0xe1, 0x9f, 0x83, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x93, 0xe1, 0x9f, 0x85, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0xa1, 0xe1, 0x9e, 0x8f, 0xe1, 0x9e, 0xa0, 0xe1, 0x9f, 0x85}, "WAST": {0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x89, 0xe1, 0x9f, 0x84, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x9a, 0xe1, 0x9e, 0x8a, 0xe1, 0x9e, 0xbc, 0xe1, 0x9e, 0x9c, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x80, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x8a, 0xe1, 0x9f, 0x85, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x93, 0xe1, 0x9f, 0x85, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0xa2, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0xa0, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x9c, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x9a, 0xe1, 0x9e, 0xb7, 0xe1, 0x9e, 0x80, 0xe2, 0x80, 0x8b, 0xe2, 0x80, 0x8b, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x81, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x84, 0xe1, 0x9e, 0x9b, 0xe1, 0x9e, 0xb7, 0xe1, 0x9e, 0x85}, "AKST": {0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x89, 0xe1, 0x9f, 0x84, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x9f, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x8f, 0xe1, 0x9e, 0x84, 0xe1, 0x9f, 0x8b, 0xe1, 0x9e, 0x8a, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x9a, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x93, 0xe1, 0x9f, 0x85, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0xa2, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0xa1, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x9f, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x80, 0xe1, 0x9e, 0xb6}, "HKT": {0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x89, 0xe1, 0x9f, 0x84, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x9f, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x8f, 0xe1, 0x9e, 0x84, 0xe1, 0x9f, 0x8b, 0xe1, 0x9e, 0x8a, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x9a, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x93, 0xe1, 0x9f, 0x85, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0xa0, 0xe1, 0x9e, 0xbb, 0xe1, 0x9e, 0x84, 0xe1, 0x9e, 0x80, 0xe1, 0x9e, 0xbb, 0xe1, 0x9e, 0x84}, "PDT": {0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x89, 0xe1, 0x9f, 0x84, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x96, 0xe1, 0x9f, 0x81, 0xe1, 0x9e, 0x9b, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x90, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x84, 0xe1, 0x9f, 0x83, 0xe2, 0x80, 0x8b, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x97, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x82, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x81, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x84, 0xe1, 0x9e, 0x9b, 0xe1, 0x9e, 0xb7, 0xe1, 0x9e, 0x85, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x93, 0xe1, 0x9f, 0x85, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0xa2, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x81, 0xe1, 0x9e, 0x9a, 0xe1, 0x9e, 0xb7, 0xe1, 0x9e, 0x80, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x97, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x82, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x81, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x87, 0xe1, 0x9e, 0xbe, 0xe1, 0x9e, 0x84}, "GMT": {0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x89, 0xe1, 0x9f, 0x84, 0xe1, 0x9e, 0x84, 0xe1, 0x9e, 0x93, 0xe1, 0x9f, 0x85, 0xe1, 0x9e, 0x82, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x9a, 0xe1, 0x9e, 0xb8, 0xe1, 0x9e, 0x93, 0xe1, 0x9e, 0x9c, 0xe1, 0x9e, 0xb7, 0xe1, 0x9e, 0x85}, "TMT": {0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x89, 0xe1, 0x9f, 0x84, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x9f, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x8f, 0xe1, 0x9e, 0x84, 0xe1, 0x9f, 0x8b, 0xe1, 0x9e, 0x8a, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x9a, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x93, 0xe1, 0x9f, 0x85, 0xe1, 0x9e, 0x8f, 0xe1, 0x9e, 0xbd, 0xe1, 0x9e, 0x80, 0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x89, 0xe1, 0x9f, 0x81, 0xe1, 0x9e, 0x93, 0xe1, 0x9e, 0xb8, 0xe1, 0x9e, 0x9f, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x90, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x93}, "EAT": {0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x89, 0xe1, 0x9f, 0x84, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x93, 0xe1, 0x9f, 0x85, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0xa2, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0xa0, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x9c, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x9a, 0xe1, 0x9e, 0xb7, 0xe1, 0x9e, 0x80, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x81, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x80, 0xe1, 0x9e, 0xbe, 0xe1, 0x9e, 0x8f}, "CST": {0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x89, 0xe1, 0x9f, 0x84, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x9f, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x8f, 0xe1, 0x9e, 0x84, 0xe1, 0x9f, 0x8b, 0xe1, 0x9e, 0x8a, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x9a, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x97, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x82, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x80, 0xe1, 0x9e, 0x8e, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x8a, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x9b, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x93, 0xe1, 0x9f, 0x85, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0xa2, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x81, 0xe1, 0x9e, 0x9a, 0xe1, 0x9e, 0xb7, 0xe1, 0x9e, 0x80, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x81, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x87, 0xe1, 0x9e, 0xbe, 0xe1, 0x9e, 0x84}, "HADT": {0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x89, 0xe1, 0x9f, 0x84, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x96, 0xe1, 0x9f, 0x81, 0xe1, 0x9e, 0x9b, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x90, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x84, 0xe1, 0x9f, 0x83, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x93, 0xe1, 0x9f, 0x85, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0xa0, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x9c, 0xe1, 0x9f, 0x83, 0x2d, 0xe1, 0x9e, 0xa2, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x9b, 0xe1, 0x9f, 0x8b, 0xe1, 0x9e, 0x8a, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x99, 0xe1, 0x9e, 0xbc, 0xe1, 0x9e, 0x9f, 0xe1, 0x9e, 0xb7, 0xe1, 0x9e, 0x93}, "ADT": {0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x89, 0xe1, 0x9f, 0x84, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x96, 0xe1, 0x9f, 0x81, 0xe1, 0x9e, 0x9b, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x90, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x84, 0xe1, 0x9f, 0x83, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x93, 0xe1, 0x9f, 0x85, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0xa2, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x8f, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x9b, 0xe1, 0x9e, 0x84, 0xe1, 0x9f, 0x8b, 0xe1, 0x9e, 0x91, 0xe1, 0x9e, 0xb7, 0xe1, 0x9e, 0x80}, "ChST": {0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x89, 0xe1, 0x9f, 0x84, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x93, 0xe1, 0x9f, 0x85, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x85, 0xe1, 0x9e, 0xb6, 0xe1, 0x9f, 0x86, 0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x89, 0xe1, 0x9e, 0xbc, 0xe1, 0x9e, 0x9a, 0xe1, 0x9f, 0x89, 0xe1, 0x9e, 0xbc}, "CHAST": {0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x89, 0xe1, 0x9f, 0x84, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x9f, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x8f, 0xe1, 0x9e, 0x84, 0xe1, 0x9f, 0x8b, 0xe1, 0x9e, 0x8a, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x9a, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x93, 0xe1, 0x9f, 0x85, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x85, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x90, 0xe1, 0x9e, 0xb6, 0xe1, 0x9f, 0x86}, "MESZ": {0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x89, 0xe1, 0x9f, 0x84, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x9a, 0xe1, 0x9e, 0x8a, 0xe1, 0x9e, 0xbc, 0xe1, 0x9e, 0x9c, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x80, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x8a, 0xe1, 0x9f, 0x85, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x93, 0xe1, 0x9f, 0x85, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0xa2, 0xe1, 0x9e, 0xba, 0xe1, 0x9e, 0x9a, 0xe1, 0x9f, 0x89, 0xe1, 0x9e, 0xbb, 0xe1, 0x9e, 0x94, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x80, 0xe1, 0x9e, 0x8e, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x8a, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x9b}, "AST": {0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x89, 0xe1, 0x9f, 0x84, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x9f, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x8f, 0xe1, 0x9e, 0x84, 0xe1, 0x9f, 0x8b, 0xe1, 0x9e, 0x8a, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x9a, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x93, 0xe1, 0x9f, 0x85, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0xa2, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x8f, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x9b, 0xe1, 0x9e, 0x84, 0xe1, 0x9f, 0x8b, 0xe1, 0x9e, 0x91, 0xe1, 0x9e, 0xb7, 0xe1, 0x9e, 0x80}, "ART": {0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x89, 0xe1, 0x9f, 0x84, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x9f, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x8f, 0xe1, 0x9e, 0x84, 0xe1, 0x9f, 0x8b, 0xe1, 0x9e, 0x8a, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x9a, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x93, 0xe1, 0x9f, 0x85, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0xa2, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x9f, 0xe1, 0x9e, 0x84, 0xe1, 0x9f, 0x8b, 0xe1, 0x9e, 0x91, 0xe1, 0x9e, 0xb8, 0xe1, 0x9e, 0x93}, "NZST": {0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x89, 0xe1, 0x9f, 0x84, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x9f, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x8f, 0xe1, 0x9e, 0x84, 0xe1, 0x9f, 0x8b, 0xe1, 0x9e, 0x8a, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x9a, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x93, 0xe1, 0x9f, 0x85, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x93, 0xe1, 0x9e, 0xbc, 0xe1, 0x9e, 0x9c, 0xe1, 0x9f, 0x82, 0xe1, 0x9e, 0x9b, 0xe1, 0x9e, 0x9f, 0xe1, 0x9f, 0x81, 0xe1, 0x9e, 0xa1, 0xe1, 0x9e, 0x84, 0xe1, 0x9f, 0x8b}, "NZDT": {0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x89, 0xe1, 0x9f, 0x84, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x96, 0xe1, 0x9f, 0x81, 0xe1, 0x9e, 0x9b, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x90, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x84, 0xe1, 0x9f, 0x83, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x93, 0xe1, 0x9f, 0x85, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x93, 0xe1, 0x9e, 0xbc, 0xe1, 0x9e, 0x9c, 0xe1, 0x9f, 0x82, 0xe1, 0x9e, 0x9b, 0xe1, 0x9e, 0x9f, 0xe1, 0x9f, 0x81, 0xe1, 0x9e, 0xa1, 0xe1, 0x9e, 0x84, 0xe1, 0x9f, 0x8b}, "WAT": {0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x89, 0xe1, 0x9f, 0x84, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x9f, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x8f, 0xe1, 0x9e, 0x84, 0xe1, 0x9f, 0x8b, 0xe1, 0x9e, 0x8a, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x9a, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x93, 0xe1, 0x9f, 0x85, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0xa2, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0xa0, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x9c, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x9a, 0xe1, 0x9e, 0xb7, 0xe1, 0x9e, 0x80, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x81, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x9b, 0xe1, 0x9e, 0xb7, 0xe1, 0x9e, 0x85}, "COST": {0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x89, 0xe1, 0x9f, 0x84, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x9a, 0xe1, 0x9e, 0x8a, 0xe1, 0x9e, 0xbc, 0xe1, 0x9e, 0x9c, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x80, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x8a, 0xe1, 0x9f, 0x85, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x93, 0xe1, 0x9f, 0x85, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x80, 0xe1, 0x9e, 0xbc, 0xe1, 0x9e, 0xa1, 0xe1, 0x9e, 0xbb, 0xe1, 0x9f, 0x86, 0xe1, 0x9e, 0x94, 0xe1, 0x9f, 0x8a, 0xe1, 0x9e, 0xb8}, "MST": {0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x89, 0xe1, 0x9f, 0x84, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x9f, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x8f, 0xe1, 0x9e, 0x84, 0xe1, 0x9f, 0x8b, 0xe1, 0x9e, 0x8a, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x9a, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x93, 0xe1, 0x9f, 0x85, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x8f, 0xe1, 0x9f, 0x86, 0xe1, 0x9e, 0x94, 0xe1, 0x9e, 0x93, 0xe1, 0x9f, 0x8b, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x97, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x93, 0xe1, 0x9f, 0x86, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0xa2, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x81, 0xe1, 0x9e, 0x9a, 0xe1, 0x9e, 0xb7, 0xe1, 0x9e, 0x80, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x81, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x87, 0xe1, 0x9e, 0xbe, 0xe1, 0x9e, 0x84}, "HNT": {0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x89, 0xe1, 0x9f, 0x84, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x9f, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x8f, 0xe1, 0x9e, 0x84, 0xe1, 0x9f, 0x8b, 0xe1, 0x9e, 0x8a, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x9a, 0xe2, 0x80, 0x8b, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x93, 0xe1, 0x9f, 0x85, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x89, 0xe1, 0x9e, 0xbc, 0xe1, 0x9e, 0xa0, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x9c, 0xe1, 0x9f, 0x84, 0xe1, 0x9e, 0x93, 0xe1, 0x9e, 0xa1, 0xe1, 0x9f, 0x82, 0xe1, 0x9e, 0x93}, "HAT": {0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x89, 0xe1, 0x9f, 0x84, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x96, 0xe1, 0x9f, 0x81, 0xe1, 0x9e, 0x9b, 0xe1, 0x9e, 0x90, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x84, 0xe1, 0x9f, 0x83, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x93, 0xe1, 0x9f, 0x85, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x89, 0xe1, 0x9e, 0xbc, 0xe1, 0x9e, 0xa0, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x9c, 0xe1, 0x9f, 0x84, 0xe1, 0x9e, 0x93, 0xe1, 0x9e, 0xa1, 0xe1, 0x9f, 0x82, 0xe1, 0x9e, 0x93}, "CAT": {0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x89, 0xe1, 0x9f, 0x84, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x93, 0xe1, 0x9f, 0x85, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0xa2, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0xa0, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x9c, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x9a, 0xe1, 0x9e, 0xb7, 0xe1, 0x9e, 0x80, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x80, 0xe1, 0x9e, 0x8e, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x8a, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x9b}, "WIB": {0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x89, 0xe1, 0x9f, 0x84, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x93, 0xe1, 0x9f, 0x85, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0xa5, 0xe1, 0x9e, 0x8e, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x8c, 0xe1, 0x9e, 0xbc, 0xe1, 0x9e, 0x8e, 0xe1, 0x9f, 0x81, 0xe1, 0x9e, 0x9f, 0xe1, 0x9f, 0x8a, 0xe1, 0x9e, 0xb8, 0xe2, 0x80, 0x8b, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x81, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x9b, 0xe1, 0x9e, 0xb7, 0xe1, 0x9e, 0x85}, "PST": {0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x89, 0xe1, 0x9f, 0x84, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x9f, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x8f, 0xe1, 0x9e, 0x84, 0xe1, 0x9f, 0x8b, 0xe1, 0x9e, 0x8a, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x9a, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x97, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x82, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x81, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x9b, 0xe1, 0x9e, 0xb7, 0xe1, 0x9e, 0x85, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x93, 0xe1, 0x9f, 0x85, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0xa2, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x81, 0xe1, 0x9e, 0x9a, 0xe1, 0x9e, 0xb7, 0xe1, 0x9e, 0x80, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x81, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x87, 0xe1, 0x9e, 0xbe, 0xe1, 0x9e, 0x84}, "OESZ": {0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x89, 0xe1, 0x9f, 0x84, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x9a, 0xe1, 0x9e, 0x8a, 0xe1, 0x9e, 0xbc, 0xe1, 0x9e, 0x9c, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x80, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x8a, 0xe1, 0x9f, 0x85, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x93, 0xe1, 0x9f, 0x85, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0xa2, 0xe1, 0x9e, 0xba, 0xe1, 0x9e, 0x9a, 0xe1, 0x9f, 0x89, 0xe1, 0x9e, 0xbb, 0xe1, 0x9e, 0x94, 0xe2, 0x80, 0x8b, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x81, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x80, 0xe1, 0x9e, 0xbe, 0xe1, 0x9e, 0x8f, 0xe2, 0x80, 0x8b}, "AKDT": {0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x89, 0xe1, 0x9f, 0x84, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x96, 0xe1, 0x9f, 0x81, 0xe1, 0x9e, 0x9b, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x90, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x84, 0xe1, 0x9f, 0x83, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x93, 0xe1, 0x9f, 0x85, 0xe2, 0x80, 0x8b, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0xa2, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0xa1, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x9f, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x80, 0xe1, 0x9e, 0xb6}, "GFT": {0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x89, 0xe1, 0x9f, 0x84, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x93, 0xe1, 0x9f, 0x85, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x83, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x9c, 0xe1, 0x9e, 0xb8, 0xe1, 0x9e, 0x99, 0xe1, 0x9f, 0x89, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x93, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x94, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x9a, 0xe1, 0x9e, 0xb6, 0xe1, 0x9f, 0x86, 0xe1, 0x9e, 0x84}, "WART": {0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x89, 0xe1, 0x9f, 0x84, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x9f, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x8f, 0xe1, 0x9e, 0x84, 0xe1, 0x9f, 0x8b, 0xe1, 0x9e, 0x8a, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x9a, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x93, 0xe1, 0x9f, 0x85, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0xa2, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x9f, 0xe1, 0x9e, 0x84, 0xe1, 0x9f, 0x8b, 0xe1, 0x9e, 0x91, 0xe1, 0x9e, 0xb8, 0xe1, 0x9e, 0x93, 0xe2, 0x80, 0x8b, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x81, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x9b, 0xe1, 0x9e, 0xb7, 0xe1, 0x9e, 0x85}, "∅∅∅": {0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x89, 0xe1, 0x9f, 0x84, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x9a, 0xe1, 0x9e, 0x8a, 0xe1, 0x9e, 0xbc, 0xe1, 0x9e, 0x9c, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x80, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x8a, 0xe1, 0x9f, 0x85, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x93, 0xe1, 0x9f, 0x85, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0xa2, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x89, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x9f, 0xe1, 0x9e, 0xbc, 0xe1, 0x9e, 0x93}, "SAST": {0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x89, 0xe1, 0x9f, 0x84, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x93, 0xe1, 0x9f, 0x85, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0xa2, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0xa0, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x9c, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x9a, 0xe1, 0x9e, 0xb7, 0xe1, 0x9e, 0x80, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x81, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x8f, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x94, 0xe1, 0x9e, 0xbc, 0xe1, 0x9e, 0x84}, "SGT": {0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x89, 0xe1, 0x9f, 0x84, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x93, 0xe1, 0x9f, 0x85, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x9f, 0xe1, 0x9e, 0xb7, 0xe1, 0x9e, 0x84, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0xa0, 0xe1, 0x9e, 0x94, 0xe1, 0x9e, 0xbc, 0xe1, 0x9e, 0x9a, 0xe1, 0x9e, 0xb8}, "ACWST": {0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x89, 0xe1, 0x9f, 0x84, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x9f, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x8f, 0xe1, 0x9e, 0x84, 0xe1, 0x9f, 0x8b, 0xe1, 0x9e, 0x8a, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x9a, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x93, 0xe1, 0x9f, 0x85, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x97, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x82, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x81, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x9b, 0xe1, 0x9e, 0xb7, 0xe1, 0x9e, 0x85, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x93, 0xe1, 0x9f, 0x83, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0xa2, 0xe1, 0x9e, 0xbc, 0xe1, 0x9e, 0x9f, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x8f, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x9a, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x9b, 0xe1, 0x9e, 0xb8, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x80, 0xe1, 0x9e, 0x8e, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x8a, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x9b}, "ACST": {0xe1, 0x9e, 0x98, 0xe1, 0x9f, 0x89, 0xe1, 0x9f, 0x84, 0xe1, 0x9e, 0x84, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x9f, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x8f, 0xe1, 0x9e, 0x84, 0xe1, 0x9f, 0x8b, 0xe1, 0x9e, 0x8a, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x9a, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x93, 0xe1, 0x9f, 0x85, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0xa2, 0xe1, 0x9e, 0xbc, 0xe1, 0x9e, 0x9f, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x8f, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x9a, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x9b, 0xe1, 0x9e, 0xb8, 0xe2, 0x80, 0x8b, 0xe1, 0x9e, 0x80, 0xe1, 0x9e, 0x8e, 0xe1, 0x9f, 0x92, 0xe1, 0x9e, 0x8a, 0xe1, 0x9e, 0xb6, 0xe1, 0x9e, 0x9b}},
+ 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 ", "A$", "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 ", "R$", "BRN ", "BRR ", "BRZ ", "BSD", "BTN", "BUK ", "BWP", "BYB ", "BYR", "BZD", "CA$", "CDF", "CHE ", "CHF", "CHW ", "CLE ", "CLF ", "CLP", "CNX ", "CN¥", "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", "€", "FIM ", "FJD", "FKP", "FRF ", "£", "GEK ", "GEL", "GHC ", "GHS", "GIP", "GMD", "GNF", "GNS ", "GQE ", "GRD ", "GTQ", "GWE ", "GWP ", "GYD", "HK$", "HNL", "HRD ", "HRK", "HTG", "HUF", "IDR", "IEP ", "ILP ", "ILR ", "₪", "₹", "IQD", "IRR", "ISJ ", "ISK", "ITL ", "JMD", "JOD", "JP¥", "KES", "KGS", "៛", "KMF", "KPW", "KRH ", "KRO ", "₩", "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", "MX$", "MXP ", "MXV ", "MYR", "MZE ", "MZM ", "MZN", "NAD", "NGN", "NIC ", "NIO", "NLG ", "NOK", "NPR", "NZ$", "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", "฿", "TJR ", "TJS", "TMM ", "TMT", "TND", "TOP", "TPE ", "TRL ", "TRY", "TTD", "NT$", "TZS", "UAH", "UAK ", "UGS ", "UGX", "$", "USN ", "USS ", "UYI ", "UYP ", "UYU", "UZS", "VEB ", "VEF", "₫", "VNN ", "VUV", "WST", "FCFA", "XAG ", "XAU ", "XBA ", "XBB ", "XBC ", "XBD ", "EC$", "XDR ", "XEU ", "XFO ", "XFU ", "CFA", "XPD ", "CFPF", "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{"", "មករា", "កុម្ភៈ", "មីនា", "មេសា", "ឧសភា", "មិថុនា", "កក្កដា", "សីហា", "កញ្ញា", "តុលា", "វិច្ឆិកា", "ធ្នូ"},
+ monthsNarrow: []string{"", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12"},
+ monthsWide: []string{"", "មករា", "កុម្ភៈ", "មីនា", "មេសា", "ឧសភា", "មិថុនា", "កក្កដា", "សីហា", "កញ្ញា", "តុលា", "វិច្ឆិកា", "ធ្នូ"},
+ daysAbbreviated: []string{"អាទិត្យ", "ច័ន្ទ", "អង្គារ", "ពុធ", "ព្រហស្បតិ៍", "សុក្រ", "សៅរ៍"},
+ daysNarrow: []string{"អា", "ច", "អ", "ពុ", "ព្រ", "សុ", "ស"},
+ daysShort: []string{"អាទិត្យ", "ច័ន្ទ", "អង្គារ", "ពុធ", "ព្រហស្បតិ៍", "សុក្រ", "សៅរ៍"},
+ daysWide: []string{"អាទិត្យ", "ច័ន្ទ", "អង្គារ", "ពុធ", "ព្រហស្បតិ៍", "សុក្រ", "សៅរ៍"},
+ periodsAbbreviated: []string{"ព្រឹក", "ល្ងាច"},
+ periodsNarrow: []string{"ព្រឹក", "ល្ងាច"},
+ periodsWide: []string{"ព្រឹក", "ល្ងាច"},
+ erasAbbreviated: []string{"មុន គ.ស.", "គ.ស."},
+ erasNarrow: []string{"", ""},
+ erasWide: []string{"មុន\u200bគ្រិស្តសករាជ", "គ្រិស្តសករាជ"},
+ timezones: map[string]string{"GYT": "ម៉ោង\u200bនៅ\u200bឃ្វីយ៉ាន", "SGT": "ម៉ោង\u200bនៅ\u200bសិង្ហបូរី", "WESZ": "ម៉ោង\u200bរដូវ\u200bក្ដៅ\u200bនៅ\u200bអឺរ៉ុប\u200bខាង\u200bលិច", "UYT": "ម៉ោង\u200bស្តង់ដារ\u200bនៅ\u200bអ៊ុយរូហ្គាយ", "CLT": "ម៉ោងស្តង់ដារនៅឈីលី", "COT": "ម៉ោង\u200bស្តង់ដារ\u200bនៅ\u200bកូឡុំប៊ី", "ECT": "ម៉ោង\u200bនៅ\u200bអេក្វាទ័រ", "WIT": "ម៉ោង\u200bនៅ\u200bឥណ្ឌូណេស៊ី\u200b\u200bខាង\u200bកើត", "ACST": "ម៉ោង\u200bស្តង់ដារ\u200bនៅ\u200bអូស្ត្រាលី\u200bកណ្ដាល", "TMT": "ម៉ោង\u200bស្តង់ដារ\u200bនៅតួកម៉េនីស្ថាន", "ACWST": "ម៉ោង\u200bស្តង់ដារ\u200bនៅ\u200bភាគ\u200bខាង\u200bលិច\u200bនៃ\u200bអូស្ត្រាលី\u200bកណ្ដាល", "AKDT": "ម៉ោង\u200bពេល\u200bថ្ងៃ\u200bនៅ\u200b\u200bអាឡាស្កា", "HKST": "ម៉ោង\u200bរដូវ\u200bក្ដៅ\u200bនៅ\u200bហុងកុង", "CDT": "ម៉ោង\u200bពេល\u200bថ្ងៃ\u200bភាគ\u200bកណ្ដាល\u200bនៅ\u200bអាមេរិក\u200bខាង\u200bជើង", "EST": "ម៉ោង\u200bស្តង់ដារ\u200bភាគ\u200bខាង\u200bកើត\u200bនៅ\u200bអាមេរិក\u200bខាង\u200bជើង", "AEST": "ម៉ោង\u200bស្តង់ដារ\u200bនៅ\u200bអូស្ត្រាលី\u200bខាង\u200bកើត", "AEDT": "ម៉ោង\u200bពេល\u200bថ្ងៃ\u200bនៅ\u200bអូស្ត្រាលី\u200bខាង\u200bកើត", "LHDT": "ម៉ោង\u200bពេល\u200bថ្ងៃ\u200bនៅ\u200bឡតហៅ", "AKST": "ម៉ោង\u200bស្តង់ដារ\u200bនៅ\u200bអាឡាស្កា", "MEZ": "ម៉ោង\u200bស្តង់ដារ\u200bនៅ\u200bអឺរ៉ុប\u200bកណ្ដាល", "AWST": "ម៉ោង\u200b\u200bស្តង់ដារ\u200bនៅ\u200bអូស្ត្រាលី\u200bខាង\u200bលិច", "HKT": "ម៉ោង\u200bស្តង់ដារ\u200bនៅ\u200bហុងកុង", "WIB": "ម៉ោង\u200bនៅ\u200bឥណ្ឌូណេស៊ី\u200b\u200bខាង\u200bលិច", "OESZ": "ម៉ោង\u200bរដូវ\u200bក្ដៅ\u200bនៅ\u200bអឺរ៉ុប\u200b\u200bខាង\u200bកើត\u200b", "CHADT": "ម៉ោង\u200bពេល\u200bថ្ងៃ\u200bនៅ\u200bចាថាំ", "WARST": "ម៉ោង\u200bរដូវ\u200bក្ដៅ\u200bនៅ\u200bអាសង់ទីន\u200b\u200bខាង\u200bលិច", "WAST": "ម៉ោង\u200b\u200bរដូវ\u200bក្ដៅ\u200bនៅ\u200bអាហ្វ្រិក\u200b\u200b\u200bខាងលិច", "WAT": "ម៉ោង\u200bស្តង់ដារ\u200bនៅ\u200bអាហ្វ្រិក\u200bខាង\u200bលិច", "MDT": "ម៉ោង\u200bពេល\u200bថ្ងៃ\u200bនៅ\u200bតំបន់\u200bភ្នំ\u200bអាមេរិក\u200bភាគ\u200bខាង\u200bជើង", "HAT": "ម៉ោង\u200bពេលថ្ងៃ\u200bនៅ\u200bញូហ្វោនឡែន", "LHST": "ម៉ោង\u200bស្តង់ដារ\u200bនៅ\u200bឡត\u200bហៅ", "HNT": "ម៉ោង\u200b\u200bស្តង់ដារ\u200b\u200bនៅ\u200bញូហ្វោនឡែន", "CAT": "ម៉ោង\u200bនៅ\u200bអាហ្វ្រិក\u200bកណ្ដាល", "NZST": "ម៉ោង\u200bស្តង់ដារ\u200bនៅ\u200bនូវែលសេឡង់", "OEZ": "ម៉ោង\u200bស្តង់ដារ\u200b\u200bនៅ\u200bអឺរ៉ុប\u200b\u200bខាង\u200bកើត\u200b", "MESZ": "ម៉ោង\u200bរដូវ\u200bក្ដៅ\u200bនៅ\u200bអឺរ៉ុប\u200bកណ្ដាល", "GFT": "ម៉ោង\u200bនៅ\u200bឃ្វីយ៉ាន\u200bបារាំង", "PST": "ម៉ោង\u200bស្តង់ដារ\u200bភាគ\u200bខាង\u200bលិច\u200bនៅ\u200bអាមេរិក\u200bខាង\u200bជើង", "BT": "ម៉ោងនៅប៊ូតាន", "EAT": "ម៉ោង\u200bនៅ\u200bអាហ្វ្រិក\u200bខាង\u200bកើត", "NZDT": "ម៉ោង\u200bពេល\u200bថ្ងៃ\u200bនៅ\u200bនូវែលសេឡង់", "ADT": "ម៉ោង\u200bពេល\u200bថ្ងៃ\u200bនៅ\u200bអាត្លង់ទិក", "SRT": "ម៉ោង\u200bនៅ\u200bសូរីណាម", "∅∅∅": "ម៉ោង\u200bរដូវ\u200bក្ដៅ\u200bនៅ\u200bអេហ្សស", "HAST": "ម៉ោង\u200bស្តង់ដារ\u200b\u200bនៅ\u200bហាវៃ-អាល់ដ្យូសិន", "PDT": "ម៉ោង\u200bពេល\u200bថ្ងៃ\u200b\u200bភាគ\u200bខាងលិច\u200bនៅ\u200bអាមេរិក\u200bភាគ\u200bខាង\u200bជើង", "GMT": "ម៉ោងនៅគ្រីនវិច", "WITA": "ម៉ោង\u200bនៅ\u200bឥណ្ឌូណេស៊ី\u200b\u200b\u200bកណ្ដាល", "TMST": "ម៉ោង\u200bរដូវ\u200bក្ដៅ\u200bនៅ\u200bតួកម៉េនីស្ថាន\u200b", "MST": "ម៉ោង\u200bស្តង់ដារ\u200bនៅ\u200bតំបន់\u200bភ្នំ\u200bអាមេរិក\u200bខាង\u200bជើង", "COST": "ម៉ោង\u200bរដូវ\u200bក្ដៅ\u200bនៅ\u200bកូឡុំប៊ី", "AST": "ម៉ោង\u200bស្តង់ដារ\u200bនៅ\u200bអាត្លង់ទិក", "ACWDT": "ម៉ោង\u200bពេល\u200bថ្ងៃ\u200bនៅ\u200b\u200bភាគ\u200bខាង\u200bលិច\u200bនៃ\u200bអូស្ត្រាលី\u200bកណ្ដាល", "HADT": "ម៉ោង\u200bពេល\u200bថ្ងៃ\u200bនៅ\u200bហាវៃ-អាល់ដ្យូសិន", "CHAST": "ម៉ោង\u200bស្តង់ដារ\u200bនៅ\u200bចាថាំ", "ART": "ម៉ោង\u200b\u200bស្តង់ដារ\u200bនៅ\u200bអាសង់ទីន", "ARST": "ម៉ោង\u200bរដូវ\u200bក្ដៅ\u200bនៅ\u200bអាសង់ទីន", "ChST": "ម៉ោង\u200bនៅ\u200bចាំម៉ូរ៉ូ", "MYT": "ម៉ោង\u200bនៅ\u200bម៉ាឡេស៊ី", "EDT": "ម៉ោង\u200bពេល\u200bថ្ងៃ\u200bភាគខាង\u200bកើតនៅ\u200bអាមេរិក\u200bខាង\u200bជើង", "CLST": "ម៉ោងរដូវក្តៅនៅឈីលី", "ACDT": "ម៉ោង\u200bពេលថ្ងៃ\u200b\u200b\u200b\u200bនៅ\u200bអូស្ត្រាលី\u200bកណ្ដាល", "AWDT": "ម៉ោង\u200bពេល\u200bថ្ងៃ\u200bនៅ\u200bអូស្ត្រាលី\u200bខាង\u200bលិច", "IST": "ម៉ោង\u200bនៅ\u200bឥណ្ឌា", "CST": "ម៉ោង\u200bស្តង់ដារ\u200bភាគ\u200bកណ្ដាល\u200bនៅ\u200bអាមេរិក\u200bខាង\u200bជើង", "VET": "ម៉ោង\u200bនៅ\u200bវ៉េណេស៊ុយអេឡា", "JST": "ម៉ោង\u200bស្តង់ដារ\u200bនៅ\u200bជប៉ុន", "WEZ": "ម៉ោង\u200bស្តង់ដារ\u200bនៅ\u200bអឺរ៉ុប\u200bខាង\u200bលិច", "UYST": "ម៉ោង\u200b\u200bរដូវ\u200bក្ដៅ\u200bនៅ\u200bអ៊ុយរូហ្គាយ", "BOT": "ម៉ោង\u200bនៅ\u200bបូលីវី", "WART": "ម៉ោង\u200bស្តង់ដារ\u200bនៅ\u200bអាសង់ទីន\u200b\u200bខាង\u200bលិច", "SAST": "ម៉ោង\u200bនៅ\u200bអាហ្វ្រិក\u200bខាង\u200bត្បូង", "JDT": "ម៉ោង\u200bពេល\u200bថ្ងៃ\u200bនៅជប៉ុន"},
}
}
@@ -111,80 +111,77 @@ func (km *km) RangePluralRule(num1 float64, v1 uint64, num2 float64, v2 uint64)
}
// MonthAbbreviated returns the locales abbreviated month given the 'month' provided
-func (km *km) MonthAbbreviated(month time.Month) []byte {
+func (km *km) MonthAbbreviated(month time.Month) string {
return km.monthsAbbreviated[month]
}
// MonthsAbbreviated returns the locales abbreviated months
-func (km *km) MonthsAbbreviated() [][]byte {
+func (km *km) MonthsAbbreviated() []string {
return km.monthsAbbreviated[1:]
}
// MonthNarrow returns the locales narrow month given the 'month' provided
-func (km *km) MonthNarrow(month time.Month) []byte {
+func (km *km) MonthNarrow(month time.Month) string {
return km.monthsNarrow[month]
}
// MonthsNarrow returns the locales narrow months
-func (km *km) MonthsNarrow() [][]byte {
+func (km *km) MonthsNarrow() []string {
return km.monthsNarrow[1:]
}
// MonthWide returns the locales wide month given the 'month' provided
-func (km *km) MonthWide(month time.Month) []byte {
+func (km *km) MonthWide(month time.Month) string {
return km.monthsWide[month]
}
// MonthsWide returns the locales wide months
-func (km *km) MonthsWide() [][]byte {
+func (km *km) MonthsWide() []string {
return km.monthsWide[1:]
}
// WeekdayAbbreviated returns the locales abbreviated weekday given the 'weekday' provided
-func (km *km) WeekdayAbbreviated(weekday time.Weekday) []byte {
+func (km *km) WeekdayAbbreviated(weekday time.Weekday) string {
return km.daysAbbreviated[weekday]
}
// WeekdaysAbbreviated returns the locales abbreviated weekdays
-func (km *km) WeekdaysAbbreviated() [][]byte {
+func (km *km) WeekdaysAbbreviated() []string {
return km.daysAbbreviated
}
// WeekdayNarrow returns the locales narrow weekday given the 'weekday' provided
-func (km *km) WeekdayNarrow(weekday time.Weekday) []byte {
+func (km *km) WeekdayNarrow(weekday time.Weekday) string {
return km.daysNarrow[weekday]
}
// WeekdaysNarrow returns the locales narrow weekdays
-func (km *km) WeekdaysNarrow() [][]byte {
+func (km *km) WeekdaysNarrow() []string {
return km.daysNarrow
}
// WeekdayShort returns the locales short weekday given the 'weekday' provided
-func (km *km) WeekdayShort(weekday time.Weekday) []byte {
+func (km *km) WeekdayShort(weekday time.Weekday) string {
return km.daysShort[weekday]
}
// WeekdaysShort returns the locales short weekdays
-func (km *km) WeekdaysShort() [][]byte {
+func (km *km) WeekdaysShort() []string {
return km.daysShort
}
// WeekdayWide returns the locales wide weekday given the 'weekday' provided
-func (km *km) WeekdayWide(weekday time.Weekday) []byte {
+func (km *km) WeekdayWide(weekday time.Weekday) string {
return km.daysWide[weekday]
}
// WeekdaysWide returns the locales wide weekdays
-func (km *km) WeekdaysWide() [][]byte {
+func (km *km) WeekdaysWide() []string {
return km.daysWide
}
// FmtNumber returns 'num' with digits/precision of 'v' for 'km' 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 (km *km) FmtNumber(num float64, v uint64) []byte {
-
+func (km *km) FmtNumber(num float64, v uint64) (results string) {
s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
l := len(s) + len(km.decimal) + len(km.group)*len(s[:len(s)-int(v)-1])/3
count := 0
@@ -220,15 +217,13 @@ func (km *km) 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 'km' 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 (km *km) FmtPercent(num float64, v uint64) []byte {
-
+func (km *km) FmtPercent(num float64, v uint64) (results string) {
s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
l := len(s) + len(km.decimal)
b := make([]byte, 0, l)
@@ -254,13 +249,12 @@ func (km *km) FmtPercent(num float64, v uint64) []byte {
b = append(b, km.percent...)
- return b
+ results = string(b)
+ return
}
// FmtCurrency returns the currency representation of 'num' with digits/precision of 'v' for 'km'
-// returned as a []byte just in case the caller wishes to add more and can help
-// avoid allocations; otherwise just cast as string.
-func (km *km) FmtCurrency(num float64, v uint64, currency currency.Type) []byte {
+func (km *km) FmtCurrency(num float64, v uint64, currency currency.Type) (results string) {
s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
symbol := km.currencies[currency]
@@ -313,13 +307,13 @@ func (km *km) FmtCurrency(num float64, v uint64, currency currency.Type) []byte
}
}
- return b
+ results = string(b)
+ return
}
// FmtAccounting returns the currency representation of 'num' with digits/precision of 'v' for 'km'
-// 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 (km *km) FmtAccounting(num float64, v uint64, currency currency.Type) []byte {
+// in accounting notation.
+func (km *km) FmtAccounting(num float64, v uint64, currency currency.Type) (results string) {
s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
symbol := km.currencies[currency]
@@ -354,9 +348,7 @@ func (km *km) FmtAccounting(num float64, v uint64, currency currency.Type) []byt
b = append(b, symbol[j])
}
- for j := len(km.currencyNegativePrefix) - 1; j >= 0; j-- {
- b = append(b, km.currencyNegativePrefix[j])
- }
+ b = append(b, km.currencyNegativePrefix[0])
} else {
@@ -386,13 +378,12 @@ func (km *km) FmtAccounting(num float64, v uint64, currency currency.Type) []byt
b = append(b, km.currencyNegativeSuffix...)
}
- return b
+ results = string(b)
+ return
}
// FmtDateShort returns the short date representation of 't' for 'km'
-// returned as a []byte just in case the caller wishes to add more and can help
-// avoid allocations; otherwise just cast as string.
-func (km *km) FmtDateShort(t time.Time) []byte {
+func (km *km) FmtDateShort(t time.Time) string {
b := make([]byte, 0, 32)
@@ -407,13 +398,11 @@ func (km *km) FmtDateShort(t time.Time) []byte {
b = append(b, strconv.Itoa(t.Year())[1:]...)
}
- return b
+ return string(b)
}
// FmtDateMedium returns the medium date representation of 't' for 'km'
-// returned as a []byte just in case the caller wishes to add more and can help
-// avoid allocations; otherwise just cast as string.
-func (km *km) FmtDateMedium(t time.Time) []byte {
+func (km *km) FmtDateMedium(t time.Time) string {
b := make([]byte, 0, 32)
@@ -423,13 +412,11 @@ func (km *km) 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 'km'
-// returned as a []byte just in case the caller wishes to add more and can help
-// avoid allocations; otherwise just cast as string.
-func (km *km) FmtDateLong(t time.Time) []byte {
+func (km *km) FmtDateLong(t time.Time) string {
b := make([]byte, 0, 32)
@@ -439,13 +426,11 @@ func (km *km) 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 'km'
-// returned as a []byte just in case the caller wishes to add more and can help
-// avoid allocations; otherwise just cast as string.
-func (km *km) FmtDateFull(t time.Time) []byte {
+func (km *km) FmtDateFull(t time.Time) string {
b := make([]byte, 0, 32)
@@ -457,13 +442,11 @@ func (km *km) 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 'km'
-// returned as a []byte just in case the caller wishes to add more and can help
-// avoid allocations; otherwise just cast as string.
-func (km *km) FmtTimeShort(t time.Time) []byte {
+func (km *km) FmtTimeShort(t time.Time) string {
b := make([]byte, 0, 32)
@@ -489,13 +472,11 @@ func (km *km) FmtTimeShort(t time.Time) []byte {
b = append(b, km.periodsAbbreviated[1]...)
}
- return b
+ return string(b)
}
// FmtTimeMedium returns the medium time representation of 't' for 'km'
-// returned as a []byte just in case the caller wishes to add more and can help
-// avoid allocations; otherwise just cast as string.
-func (km *km) FmtTimeMedium(t time.Time) []byte {
+func (km *km) FmtTimeMedium(t time.Time) string {
b := make([]byte, 0, 32)
@@ -528,13 +509,11 @@ func (km *km) FmtTimeMedium(t time.Time) []byte {
b = append(b, km.periodsAbbreviated[1]...)
}
- return b
+ return string(b)
}
// FmtTimeLong returns the long time representation of 't' for 'km'
-// returned as a []byte just in case the caller wishes to add more and can help
-// avoid allocations; otherwise just cast as string.
-func (km *km) FmtTimeLong(t time.Time) []byte {
+func (km *km) FmtTimeLong(t time.Time) string {
b := make([]byte, 0, 32)
@@ -572,13 +551,11 @@ func (km *km) 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 'km'
-// returned as a []byte just in case the caller wishes to add more and can help
-// avoid allocations; otherwise just cast as string.
-func (km *km) FmtTimeFull(t time.Time) []byte {
+func (km *km) FmtTimeFull(t time.Time) string {
b := make([]byte, 0, 32)
@@ -621,5 +598,5 @@ func (km *km) FmtTimeFull(t time.Time) []byte {
b = append(b, tz...)
}
- return b
+ return string(b)
}