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/kn/kn.go
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 /kn/kn.go
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 'kn/kn.go')
-rw-r--r--kn/kn.go209
1 files changed, 93 insertions, 116 deletions
diff --git a/kn/kn.go b/kn/kn.go
index 2a63f997..c4d82be0 100644
--- a/kn/kn.go
+++ b/kn/kn.go
@@ -14,31 +14,31 @@ type kn 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 'kn' locale
@@ -48,30 +48,30 @@ func New() locales.Translator {
pluralsCardinal: []locales.PluralRule{2, 6},
pluralsOrdinal: []locales.PluralRule{6},
pluralsRange: []locales.PluralRule{2, 6},
- 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}, {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}, {0x4b, 0x48, 0x52}, {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), {0xe0, 0xb2, 0x9c, 0xe0, 0xb2, 0xa8}, {0xe0, 0xb2, 0xab, 0xe0, 0xb3, 0x86, 0xe0, 0xb2, 0xac, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0}, {0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0x9a, 0xe0, 0xb3, 0x8d}, {0xe0, 0xb2, 0x8f, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xbf}, {0xe0, 0xb2, 0xae, 0xe0, 0xb3, 0x87}, {0xe0, 0xb2, 0x9c, 0xe0, 0xb3, 0x82, 0xe0, 0xb2, 0xa8, 0xe0, 0xb3, 0x8d}, {0xe0, 0xb2, 0x9c, 0xe0, 0xb3, 0x81, 0xe0, 0xb2, 0xb2, 0xe0, 0xb3, 0x88}, {0xe0, 0xb2, 0x86, 0xe0, 0xb2, 0x97}, {0xe0, 0xb2, 0xb8, 0xe0, 0xb3, 0x86, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0x9f, 0xe0, 0xb3, 0x86, 0xe0, 0xb2, 0x82}, {0xe0, 0xb2, 0x85, 0xe0, 0xb2, 0x95, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0x9f, 0xe0, 0xb3, 0x8b}, {0xe0, 0xb2, 0xa8, 0xe0, 0xb2, 0xb5, 0xe0, 0xb3, 0x86, 0xe0, 0xb2, 0x82}, {0xe0, 0xb2, 0xa1, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xb8, 0xe0, 0xb3, 0x86, 0xe0, 0xb2, 0x82}},
- monthsNarrow: [][]uint8{[]uint8(nil), {0xe0, 0xb2, 0x9c}, {0xe0, 0xb2, 0xab, 0xe0, 0xb3, 0x86}, {0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xbe}, {0xe0, 0xb2, 0x8f}, {0xe0, 0xb2, 0xae, 0xe0, 0xb3, 0x87}, {0xe0, 0xb2, 0x9c, 0xe0, 0xb3, 0x82}, {0xe0, 0xb2, 0x9c, 0xe0, 0xb3, 0x81}, {0xe0, 0xb2, 0x86}, {0xe0, 0xb2, 0xb8, 0xe0, 0xb3, 0x86}, {0xe0, 0xb2, 0x85}, {0xe0, 0xb2, 0xa8}, {0xe0, 0xb2, 0xa1, 0xe0, 0xb2, 0xbf}},
- monthsWide: [][]uint8{[]uint8(nil), {0xe0, 0xb2, 0x9c, 0xe0, 0xb2, 0xa8, 0xe0, 0xb2, 0xb5, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xbf}, {0xe0, 0xb2, 0xab, 0xe0, 0xb3, 0x86, 0xe0, 0xb2, 0xac, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xb5, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xbf}, {0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0x9a, 0xe0, 0xb3, 0x8d}, {0xe0, 0xb2, 0x8f, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xb2, 0xe0, 0xb3, 0x8d}, {0xe0, 0xb2, 0xae, 0xe0, 0xb3, 0x87}, {0xe0, 0xb2, 0x9c, 0xe0, 0xb3, 0x82, 0xe0, 0xb2, 0xa8, 0xe0, 0xb3, 0x8d}, {0xe0, 0xb2, 0x9c, 0xe0, 0xb3, 0x81, 0xe0, 0xb2, 0xb2, 0xe0, 0xb3, 0x88}, {0xe0, 0xb2, 0x86, 0xe0, 0xb2, 0x97, 0xe0, 0xb2, 0xb8, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0x9f, 0xe0, 0xb3, 0x8d}, {0xe0, 0xb2, 0xb8, 0xe0, 0xb3, 0x86, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0x9f, 0xe0, 0xb3, 0x86, 0xe0, 0xb2, 0x82, 0xe0, 0xb2, 0xac, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x8d}, {0xe0, 0xb2, 0x85, 0xe0, 0xb2, 0x95, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0x9f, 0xe0, 0xb3, 0x8b, 0xe0, 0xb2, 0xac, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x8d}, {0xe0, 0xb2, 0xa8, 0xe0, 0xb2, 0xb5, 0xe0, 0xb3, 0x86, 0xe0, 0xb2, 0x82, 0xe0, 0xb2, 0xac, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x8d}, {0xe0, 0xb2, 0xa1, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xb8, 0xe0, 0xb3, 0x86, 0xe0, 0xb2, 0x82, 0xe0, 0xb2, 0xac, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x8d}},
- daysAbbreviated: [][]uint8{{0xe0, 0xb2, 0xad, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa8, 0xe0, 0xb3, 0x81}, {0xe0, 0xb2, 0xb8, 0xe0, 0xb3, 0x8b, 0xe0, 0xb2, 0xae}, {0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0x82, 0xe0, 0xb2, 0x97, 0xe0, 0xb2, 0xb3}, {0xe0, 0xb2, 0xac, 0xe0, 0xb3, 0x81, 0xe0, 0xb2, 0xa7}, {0xe0, 0xb2, 0x97, 0xe0, 0xb3, 0x81, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x81}, {0xe0, 0xb2, 0xb6, 0xe0, 0xb3, 0x81, 0xe0, 0xb2, 0x95, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0}, {0xe0, 0xb2, 0xb6, 0xe0, 0xb2, 0xa8, 0xe0, 0xb2, 0xbf}},
- daysNarrow: [][]uint8{{0xe0, 0xb2, 0xad, 0xe0, 0xb2, 0xbe}, {0xe0, 0xb2, 0xb8, 0xe0, 0xb3, 0x8b}, {0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0x82}, {0xe0, 0xb2, 0xac, 0xe0, 0xb3, 0x81}, {0xe0, 0xb2, 0x97, 0xe0, 0xb3, 0x81}, {0xe0, 0xb2, 0xb6, 0xe0, 0xb3, 0x81}, {0xe0, 0xb2, 0xb6}},
- daysShort: [][]uint8{{0xe0, 0xb2, 0xad, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa8, 0xe0, 0xb3, 0x81}, {0xe0, 0xb2, 0xb8, 0xe0, 0xb3, 0x8b, 0xe0, 0xb2, 0xae}, {0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0x82, 0xe0, 0xb2, 0x97, 0xe0, 0xb2, 0xb3}, {0xe0, 0xb2, 0xac, 0xe0, 0xb3, 0x81, 0xe0, 0xb2, 0xa7}, {0xe0, 0xb2, 0x97, 0xe0, 0xb3, 0x81, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x81}, {0xe0, 0xb2, 0xb6, 0xe0, 0xb3, 0x81, 0xe0, 0xb2, 0x95, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0}, {0xe0, 0xb2, 0xb6, 0xe0, 0xb2, 0xa8, 0xe0, 0xb2, 0xbf}},
- daysWide: [][]uint8{{0xe0, 0xb2, 0xad, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa8, 0xe0, 0xb3, 0x81, 0xe0, 0xb2, 0xb5, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xb0}, {0xe0, 0xb2, 0xb8, 0xe0, 0xb3, 0x8b, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xb5, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xb0}, {0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0x82, 0xe0, 0xb2, 0x97, 0xe0, 0xb2, 0xb3, 0xe0, 0xb2, 0xb5, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xb0}, {0xe0, 0xb2, 0xac, 0xe0, 0xb3, 0x81, 0xe0, 0xb2, 0xa7, 0xe0, 0xb2, 0xb5, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xb0}, {0xe0, 0xb2, 0x97, 0xe0, 0xb3, 0x81, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x81, 0xe0, 0xb2, 0xb5, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xb0}, {0xe0, 0xb2, 0xb6, 0xe0, 0xb3, 0x81, 0xe0, 0xb2, 0x95, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xb5, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xb0}, {0xe0, 0xb2, 0xb6, 0xe0, 0xb2, 0xa8, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xb5, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xb0}},
- periodsAbbreviated: [][]uint8{{0x41, 0x4d}, {0x50, 0x4d}},
- periodsNarrow: [][]uint8{{0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x82}, {0xe0, 0xb2, 0x85}},
- periodsWide: [][]uint8{{0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x82, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb5, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xb9, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xa8}, {0xe0, 0xb2, 0x85, 0xe0, 0xb2, 0xaa, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xb9, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xa8}},
- erasAbbreviated: [][]uint8{{0xe0, 0xb2, 0x95, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xbf, 0x2e, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x82}, {0xe0, 0xb2, 0x95, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xbf, 0x2e, 0xe0, 0xb2, 0xb6}},
- erasNarrow: [][]uint8{[]uint8(nil), []uint8(nil)},
- erasWide: [][]uint8{{0xe0, 0xb2, 0x95, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xb8, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xa4, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x82, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb5}, {0xe0, 0xb2, 0x95, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xb8, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xa4, 0x20, 0xe0, 0xb2, 0xb6, 0xe0, 0xb2, 0x95}},
- timezones: map[string][]uint8{"ChST": {0xe0, 0xb2, 0x9a, 0xe0, 0xb2, 0xae, 0xe0, 0xb3, 0x8b, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x8b, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa3, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xa4, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "LHDT": {0xe0, 0xb2, 0xb2, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xa1, 0xe0, 0xb3, 0x8d, 0x20, 0xe0, 0xb2, 0xb9, 0xe0, 0xb3, 0x8b, 0xe0, 0xb2, 0xb5, 0xe0, 0xb3, 0x8d, 0x20, 0xe0, 0xb2, 0xac, 0xe0, 0xb3, 0x86, 0xe0, 0xb2, 0xb3, 0xe0, 0xb2, 0x97, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xa8, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "HADT": {0xe0, 0xb2, 0xb9, 0xe0, 0xb2, 0xb5, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xaf, 0xe0, 0xb2, 0xbf, 0x2d, 0xe0, 0xb2, 0x85, 0xe0, 0xb2, 0xb2, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xaf, 0xe0, 0xb3, 0x81, 0xe0, 0xb2, 0x9f, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xaf, 0xe0, 0xb2, 0xa8, 0xe0, 0xb3, 0x8d, 0x20, 0xe0, 0xb2, 0xb9, 0xe0, 0xb2, 0x97, 0xe0, 0xb2, 0xb2, 0xe0, 0xb3, 0x81, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "CLT": {0xe0, 0xb2, 0x9a, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xb2, 0xe0, 0xb2, 0xbf, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa3, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xa4, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "GFT": {0xe0, 0xb2, 0xab, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x86, 0xe0, 0xb2, 0x82, 0xe0, 0xb2, 0x9a, 0xe0, 0xb3, 0x8d, 0x20, 0xe0, 0xb2, 0x97, 0xe0, 0xb2, 0xaf, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa8, 0xe0, 0xb2, 0xbe, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "COST": {0xe0, 0xb2, 0x95, 0xe0, 0xb3, 0x8a, 0xe0, 0xb2, 0xb2, 0xe0, 0xb2, 0x82, 0xe0, 0xb2, 0xac, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xaf, 0xe0, 0xb2, 0xbe, 0x20, 0xe0, 0xb2, 0xac, 0xe0, 0xb3, 0x87, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0x97, 0xe0, 0xb3, 0x86, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "CLST": {0xe0, 0xb2, 0x9a, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xb2, 0xe0, 0xb2, 0xbf, 0x20, 0xe0, 0xb2, 0xac, 0xe0, 0xb3, 0x87, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0x97, 0xe0, 0xb3, 0x86, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "HKST": {0xe0, 0xb2, 0xb9, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0x82, 0xe0, 0xb2, 0x97, 0xe0, 0xb3, 0x8d, 0x20, 0xe0, 0xb2, 0x95, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0x82, 0xe0, 0xb2, 0x97, 0xe0, 0xb3, 0x8d, 0x20, 0xe0, 0xb2, 0xac, 0xe0, 0xb3, 0x87, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0x97, 0xe0, 0xb3, 0x86, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "BOT": {0xe0, 0xb2, 0xac, 0xe0, 0xb3, 0x8a, 0xe0, 0xb2, 0xb2, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xb5, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xaf, 0xe0, 0xb2, 0xbe, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "BT": {0xe0, 0xb2, 0xad, 0xe0, 0xb3, 0x82, 0xe0, 0xb2, 0xa4, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa8, 0xe0, 0xb3, 0x8d, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "TMST": {0xe0, 0xb2, 0xa4, 0xe0, 0xb3, 0x81, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0x95, 0xe0, 0xb3, 0x8d, 0xe2, 0x80, 0x8c, 0xe0, 0xb2, 0xae, 0xe0, 0xb3, 0x87, 0xe0, 0xb2, 0xa8, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xb8, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xa4, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa8, 0xe0, 0xb3, 0x8d, 0x20, 0xe0, 0xb2, 0xac, 0xe0, 0xb3, 0x87, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0x97, 0xe0, 0xb3, 0x86, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "SAST": {0xe0, 0xb2, 0xa6, 0xe0, 0xb2, 0x95, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb7, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xa3, 0x20, 0xe0, 0xb2, 0x86, 0xe0, 0xb2, 0xab, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0x95, 0xe0, 0xb2, 0xbe, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa3, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xa4, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "AST": {0xe0, 0xb2, 0x85, 0xe0, 0xb2, 0x9f, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb2, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0x82, 0xe0, 0xb2, 0x9f, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0x95, 0xe0, 0xb3, 0x8d, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa3, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xa4, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "WIT": {0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x82, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb5, 0x20, 0xe0, 0xb2, 0x87, 0xe0, 0xb2, 0x82, 0xe0, 0xb2, 0xa1, 0xe0, 0xb3, 0x8b, 0xe0, 0xb2, 0xa8, 0xe0, 0xb3, 0x87, 0xe0, 0xb2, 0xb7, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xaf, 0xe0, 0xb2, 0xbe, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "NZDT": {0xe0, 0xb2, 0xa8, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xaf, 0xe0, 0xb3, 0x82, 0xe0, 0xb2, 0x9c, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xb2, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xaf, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0x82, 0xe0, 0xb2, 0xa1, 0xe0, 0xb3, 0x8d, 0x20, 0xe0, 0xb2, 0xb9, 0xe0, 0xb2, 0x97, 0xe0, 0xb2, 0xb2, 0xe0, 0xb3, 0x81, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "CHADT": {0xe0, 0xb2, 0x9a, 0xe0, 0xb2, 0xa5, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xae, 0xe0, 0xb3, 0x8d, 0x20, 0xe0, 0xb2, 0xb9, 0xe0, 0xb2, 0x97, 0xe0, 0xb2, 0xb2, 0xe0, 0xb3, 0x81, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "HAT": {0xe0, 0xb2, 0xa8, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xaf, 0xe0, 0xb3, 0x82, 0xe0, 0xb2, 0xab, 0xe0, 0xb3, 0x8c, 0xe0, 0xb2, 0x82, 0xe0, 0xb2, 0xa1, 0xe0, 0xb3, 0x8d, 0xe2, 0x80, 0x8c, 0xe0, 0xb2, 0xb2, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xaf, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0x82, 0xe0, 0xb2, 0xa1, 0xe0, 0xb3, 0x8d, 0x20, 0xe0, 0xb2, 0xa6, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xa8, 0xe0, 0xb2, 0xa6, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "MYT": {0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xb2, 0xe0, 0xb3, 0x87, 0xe0, 0xb2, 0xb7, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xaf, 0xe0, 0xb2, 0xbe, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "WAT": {0xe0, 0xb2, 0xaa, 0xe0, 0xb2, 0xb6, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0x9a, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xae, 0x20, 0xe0, 0xb2, 0x86, 0xe0, 0xb2, 0xab, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0x95, 0xe0, 0xb2, 0xbe, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa3, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xa4, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "ART": {0xe0, 0xb2, 0x85, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0x9c, 0xe0, 0xb3, 0x86, 0xe0, 0xb2, 0x82, 0xe0, 0xb2, 0x9f, 0xe0, 0xb3, 0x80, 0xe0, 0xb2, 0xa8, 0xe0, 0xb2, 0xbe, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa3, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xa4, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "MDT": {0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0x95, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xb5, 0xe0, 0xb3, 0x8d, 0x20, 0xe0, 0xb2, 0xac, 0xe0, 0xb3, 0x87, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0x97, 0xe0, 0xb3, 0x86, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "IST": {0xe0, 0xb2, 0xad, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xa4, 0xe0, 0xb3, 0x80, 0xe0, 0xb2, 0xaf, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa3, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xa4, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "JST": {0xe0, 0xb2, 0x9c, 0xe0, 0xb2, 0xaa, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa8, 0xe0, 0xb3, 0x8d, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa3, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xa4, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "LHST": {0xe0, 0xb2, 0xb2, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xa1, 0xe0, 0xb3, 0x8d, 0x20, 0xe0, 0xb2, 0xb9, 0xe0, 0xb3, 0x8b, 0xe0, 0xb2, 0xb5, 0xe0, 0xb3, 0x8d, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa3, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xa4, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "AKDT": {0xe2, 0x80, 0x8c, 0xe0, 0xb2, 0x85, 0xe0, 0xb2, 0xb2, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xb8, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0x95, 0xe0, 0xb2, 0xbe, 0x20, 0xe0, 0xb2, 0xb9, 0xe0, 0xb2, 0x97, 0xe0, 0xb2, 0xb2, 0xe0, 0xb3, 0x81, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "TMT": {0xe0, 0xb2, 0xa4, 0xe0, 0xb3, 0x81, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0x95, 0xe0, 0xb3, 0x8d, 0xe2, 0x80, 0x8c, 0xe0, 0xb2, 0xae, 0xe0, 0xb3, 0x87, 0xe0, 0xb2, 0xa8, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xb8, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xa4, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa8, 0xe0, 0xb3, 0x8d, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa3, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xa4, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "SGT": {0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0x82, 0xe0, 0xb2, 0x97, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x81, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x8d, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa3, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xa4, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "MST": {0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0x95, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xb5, 0xe0, 0xb3, 0x8d, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa3, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xa4, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "UYST": {0xe0, 0xb2, 0x89, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x81, 0xe0, 0xb2, 0x97, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb5, 0xe0, 0xb3, 0x87, 0x20, 0xe0, 0xb2, 0xac, 0xe0, 0xb3, 0x87, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0x97, 0xe0, 0xb3, 0x86, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "VET": {0xe0, 0xb2, 0xb5, 0xe0, 0xb3, 0x86, 0xe0, 0xb2, 0xa8, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0x9c, 0xe0, 0xb3, 0x81, 0xe0, 0xb2, 0xb5, 0xe0, 0xb3, 0x86, 0xe0, 0xb2, 0xb2, 0xe0, 0xb2, 0xbe, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "ACST": {0xe0, 0xb2, 0x86, 0xe0, 0xb2, 0xb8, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0x9f, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x87, 0xe0, 0xb2, 0xb2, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xaf, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa6, 0x20, 0xe0, 0xb2, 0x95, 0xe0, 0xb3, 0x87, 0xe0, 0xb2, 0x82, 0xe0, 0xb2, 0xa6, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa3, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xa4, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "AEST": {0xe0, 0xb2, 0x86, 0xe0, 0xb2, 0xb8, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0x9f, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x87, 0xe0, 0xb2, 0xb2, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xaf, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa6, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x82, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb5, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa3, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xa4, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "WIB": {0xe0, 0xb2, 0xaa, 0xe0, 0xb2, 0xb6, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0x9a, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xae, 0x20, 0xe0, 0xb2, 0x87, 0xe0, 0xb2, 0x82, 0xe0, 0xb2, 0xa1, 0xe0, 0xb3, 0x8b, 0xe0, 0xb2, 0xa8, 0xe0, 0xb3, 0x87, 0xe0, 0xb2, 0xb7, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xaf, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "CST": {0xe0, 0xb2, 0x89, 0xe0, 0xb2, 0xa4, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xa4, 0xe0, 0xb2, 0xb0, 0x20, 0xe0, 0xb2, 0x85, 0xe0, 0xb2, 0xae, 0xe0, 0xb3, 0x86, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0x95, 0xe0, 0xb2, 0xa6, 0x20, 0xe0, 0xb2, 0x95, 0xe0, 0xb3, 0x87, 0xe0, 0xb2, 0x82, 0xe0, 0xb2, 0xa6, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa3, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xa4, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "ADT": {0xe0, 0xb2, 0x85, 0xe0, 0xb2, 0x9f, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb2, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0x82, 0xe0, 0xb2, 0x9f, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0x95, 0xe0, 0xb3, 0x8d, 0x20, 0xe0, 0xb2, 0xa6, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xa8, 0xe0, 0xb2, 0xa6, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "∅∅∅": {0xe0, 0xb2, 0x85, 0xe0, 0xb2, 0x9c, 0xe0, 0xb3, 0x8b, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xb8, 0xe0, 0xb3, 0x8d, 0x20, 0xe0, 0xb2, 0xac, 0xe0, 0xb3, 0x87, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0x97, 0xe0, 0xb3, 0x86, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "GYT": {0xe0, 0xb2, 0x97, 0xe0, 0xb2, 0xaf, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa8, 0xe0, 0xb2, 0xbe, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "COT": {0xe0, 0xb2, 0x95, 0xe0, 0xb3, 0x8a, 0xe0, 0xb2, 0xb2, 0xe0, 0xb2, 0x82, 0xe0, 0xb2, 0xac, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xaf, 0xe0, 0xb2, 0xbe, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa3, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xa4, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "EDT": {0xe0, 0xb2, 0x89, 0xe0, 0xb2, 0xa4, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xa4, 0xe0, 0xb2, 0xb0, 0x20, 0xe0, 0xb2, 0x85, 0xe0, 0xb2, 0xae, 0xe0, 0xb3, 0x86, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0x95, 0xe0, 0xb2, 0xa6, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x82, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb5, 0xe0, 0xb2, 0xa6, 0x20, 0xe0, 0xb2, 0xa6, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xa8, 0xe0, 0xb2, 0xa6, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "WARST": {0xe0, 0xb2, 0xaa, 0xe0, 0xb2, 0xb6, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0x9a, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xae, 0x20, 0xe0, 0xb2, 0x85, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0x9c, 0xe0, 0xb3, 0x86, 0xe0, 0xb2, 0x82, 0xe0, 0xb2, 0x9f, 0xe0, 0xb3, 0x80, 0xe0, 0xb2, 0xa8, 0xe0, 0xb2, 0xbe, 0x20, 0xe0, 0xb2, 0xac, 0xe0, 0xb3, 0x87, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0x97, 0xe0, 0xb3, 0x86, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "CDT": {0xe0, 0xb2, 0x89, 0xe0, 0xb2, 0xa4, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xa4, 0xe0, 0xb2, 0xb0, 0x20, 0xe0, 0xb2, 0x85, 0xe0, 0xb2, 0xae, 0xe0, 0xb3, 0x86, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0x95, 0xe0, 0xb2, 0xa6, 0x20, 0xe0, 0xb2, 0x95, 0xe0, 0xb3, 0x87, 0xe0, 0xb2, 0x82, 0xe0, 0xb2, 0xa6, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x80, 0xe0, 0xb2, 0xaf, 0x20, 0xe0, 0xb2, 0xa6, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xa8, 0xe0, 0xb2, 0xa6, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "OEZ": {0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x82, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb5, 0x20, 0xe0, 0xb2, 0xaf, 0xe0, 0xb3, 0x81, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x8b, 0xe0, 0xb2, 0xaa, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xaf, 0xe0, 0xb2, 0xa8, 0xe0, 0xb3, 0x8d, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa3, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xa4, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "ACDT": {0xe0, 0xb2, 0x86, 0xe0, 0xb2, 0xb8, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0x9f, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x87, 0xe0, 0xb2, 0xb2, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xaf, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa6, 0x20, 0xe0, 0xb2, 0x95, 0xe0, 0xb3, 0x87, 0xe0, 0xb2, 0x82, 0xe0, 0xb2, 0xa6, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0x20, 0xe0, 0xb2, 0xb9, 0xe0, 0xb2, 0x97, 0xe0, 0xb2, 0xb2, 0xe0, 0xb3, 0x81, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "EST": {0xe0, 0xb2, 0x89, 0xe0, 0xb2, 0xa4, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xa4, 0xe0, 0xb2, 0xb0, 0x20, 0xe0, 0xb2, 0x85, 0xe0, 0xb2, 0xae, 0xe0, 0xb3, 0x86, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0x95, 0xe0, 0xb2, 0xa6, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x82, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb5, 0xe0, 0xb2, 0xa6, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa3, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xa4, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "ECT": {0xe0, 0xb2, 0x88, 0xe0, 0xb2, 0x95, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb5, 0xe0, 0xb3, 0x86, 0xe0, 0xb2, 0xa1, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x8d, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "WAST": {0xe0, 0xb2, 0xaa, 0xe0, 0xb2, 0xb6, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0x9a, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xae, 0x20, 0xe0, 0xb2, 0x86, 0xe0, 0xb2, 0xab, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0x95, 0xe0, 0xb2, 0xbe, 0x20, 0xe0, 0xb2, 0xac, 0xe0, 0xb3, 0x87, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0x97, 0xe0, 0xb3, 0x86, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "CAT": {0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xa7, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xaf, 0x20, 0xe0, 0xb2, 0x86, 0xe0, 0xb2, 0xab, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0x95, 0xe0, 0xb2, 0xbe, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "MESZ": {0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xa7, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xaf, 0x20, 0xe0, 0xb2, 0xaf, 0xe0, 0xb3, 0x81, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x8b, 0xe0, 0xb2, 0xaa, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xaf, 0xe0, 0xb2, 0xa8, 0xe0, 0xb3, 0x8d, 0x20, 0xe0, 0xb2, 0xac, 0xe0, 0xb3, 0x87, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0x97, 0xe0, 0xb3, 0x86, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "AKST": {0xe0, 0xb2, 0x85, 0xe0, 0xb2, 0xb2, 0xe0, 0xb2, 0xb8, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0x95, 0xe0, 0xb2, 0xbe, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa3, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xa4, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "UYT": {0xe0, 0xb2, 0x89, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x81, 0xe0, 0xb2, 0x97, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb5, 0xe0, 0xb3, 0x87, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa3, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xa4, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "ACWST": {0xe0, 0xb2, 0x86, 0xe0, 0xb2, 0xb8, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0x9f, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x87, 0xe0, 0xb2, 0xb2, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xaf, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa6, 0x20, 0xe0, 0xb2, 0x95, 0xe0, 0xb3, 0x87, 0xe0, 0xb2, 0x82, 0xe0, 0xb2, 0xa6, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb2, 0xb6, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0x9a, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xae, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa3, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xa4, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "ACWDT": {0xe0, 0xb2, 0x86, 0xe0, 0xb2, 0xb8, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0x9f, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x87, 0xe0, 0xb2, 0xb2, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xaf, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa6, 0x20, 0xe0, 0xb2, 0x95, 0xe0, 0xb3, 0x87, 0xe0, 0xb2, 0x82, 0xe0, 0xb2, 0xa6, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb2, 0xb6, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0x9a, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xae, 0x20, 0xe0, 0xb2, 0xb9, 0xe0, 0xb2, 0x97, 0xe0, 0xb2, 0xb2, 0xe0, 0xb3, 0x81, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "HAST": {0xe0, 0xb2, 0xb9, 0xe0, 0xb2, 0xb5, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xaf, 0xe0, 0xb2, 0xbf, 0x2d, 0xe0, 0xb2, 0x85, 0xe0, 0xb2, 0xb2, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xaf, 0xe0, 0xb3, 0x81, 0xe0, 0xb2, 0x9f, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xaf, 0xe0, 0xb2, 0xa8, 0xe0, 0xb3, 0x8d, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa3, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xa4, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "OESZ": {0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x82, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb5, 0x20, 0xe0, 0xb2, 0xaf, 0xe0, 0xb3, 0x81, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x8b, 0xe0, 0xb2, 0xaa, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xaf, 0xe0, 0xb2, 0xa8, 0xe0, 0xb3, 0x8d, 0x20, 0xe0, 0xb2, 0xac, 0xe0, 0xb3, 0x87, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0x97, 0xe0, 0xb3, 0x86, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "HNT": {0xe0, 0xb2, 0xa8, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xaf, 0xe0, 0xb3, 0x82, 0xe0, 0xb2, 0xab, 0xe0, 0xb3, 0x8c, 0xe0, 0xb2, 0x82, 0xe0, 0xb2, 0xa1, 0xe0, 0xb3, 0x8d, 0xe2, 0x80, 0x8c, 0xe0, 0xb2, 0xb2, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xaf, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0x82, 0xe0, 0xb2, 0xa1, 0xe0, 0xb3, 0x8d, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa3, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xa4, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "PDT": {0xe0, 0xb2, 0x89, 0xe0, 0xb2, 0xa4, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xa4, 0xe0, 0xb2, 0xb0, 0x20, 0xe0, 0xb2, 0x85, 0xe0, 0xb2, 0xae, 0xe0, 0xb3, 0x86, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0x95, 0xe0, 0xb2, 0xa6, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x86, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xab, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0x95, 0xe0, 0xb3, 0x8d, 0x20, 0xe0, 0xb2, 0xa6, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xa8, 0xe0, 0xb2, 0xa6, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "AWDT": {0xe0, 0xb2, 0x86, 0xe0, 0xb2, 0xb8, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0x9f, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x87, 0xe0, 0xb2, 0xb2, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xaf, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa6, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb2, 0xb6, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0x9a, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xae, 0x20, 0xe0, 0xb2, 0xb9, 0xe0, 0xb2, 0x97, 0xe0, 0xb2, 0xb2, 0xe0, 0xb3, 0x81, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "HKT": {0xe0, 0xb2, 0xb9, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0x82, 0xe0, 0xb2, 0x97, 0xe0, 0xb3, 0x8d, 0x20, 0xe0, 0xb2, 0x95, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0x82, 0xe0, 0xb2, 0x97, 0xe0, 0xb3, 0x8d, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa3, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xa4, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "CHAST": {0xe0, 0xb2, 0x9a, 0xe0, 0xb2, 0xa5, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xae, 0xe0, 0xb3, 0x8d, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa3, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xa4, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "WITA": {0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xa7, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xaf, 0x20, 0xe0, 0xb2, 0x87, 0xe0, 0xb2, 0x82, 0xe0, 0xb2, 0xa1, 0xe0, 0xb3, 0x8b, 0xe0, 0xb2, 0xa8, 0xe0, 0xb3, 0x87, 0xe0, 0xb2, 0xb7, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xaf, 0xe0, 0xb2, 0xbe, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "MEZ": {0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xa7, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xaf, 0x20, 0xe0, 0xb2, 0xaf, 0xe0, 0xb3, 0x81, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x8b, 0xe0, 0xb2, 0xaa, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xaf, 0xe0, 0xb2, 0xa8, 0xe0, 0xb3, 0x8d, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa3, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xa4, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "GMT": {0xe0, 0xb2, 0x97, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x80, 0xe0, 0xb2, 0xa8, 0xe0, 0xb3, 0x8d, 0xe2, 0x80, 0x8c, 0xe0, 0xb2, 0xb5, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0x9a, 0xe0, 0xb3, 0x8d, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xbf, 0x20, 0xe0, 0xb2, 0x95, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xb2, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa8}, "PST": {0xe0, 0xb2, 0x89, 0xe0, 0xb2, 0xa4, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xa4, 0xe0, 0xb2, 0xb0, 0x20, 0xe0, 0xb2, 0x85, 0xe0, 0xb2, 0xae, 0xe0, 0xb3, 0x86, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0x95, 0xe0, 0xb2, 0xa6, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x86, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xab, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0x95, 0xe0, 0xb3, 0x8d, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa3, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xa4, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "WEZ": {0xe0, 0xb2, 0xaa, 0xe0, 0xb2, 0xb6, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0x9a, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xae, 0x20, 0xe0, 0xb2, 0xaf, 0xe0, 0xb3, 0x81, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x8b, 0xe0, 0xb2, 0xaa, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xaf, 0xe0, 0xb2, 0xa8, 0xe0, 0xb3, 0x8d, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa3, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xa4, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "NZST": {0xe0, 0xb2, 0xa8, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xaf, 0xe0, 0xb3, 0x82, 0xe0, 0xb2, 0x9c, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xb2, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xaf, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0x82, 0xe0, 0xb2, 0xa1, 0xe0, 0xb3, 0x8d, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa3, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xa4, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "WART": {0xe0, 0xb2, 0xaa, 0xe0, 0xb2, 0xb6, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0x9a, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xae, 0x20, 0xe0, 0xb2, 0x85, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0x9c, 0xe0, 0xb3, 0x86, 0xe0, 0xb2, 0x82, 0xe0, 0xb2, 0x9f, 0xe0, 0xb3, 0x80, 0xe0, 0xb2, 0xa8, 0xe0, 0xb2, 0xbe, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa3, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xa4, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "WESZ": {0xe0, 0xb2, 0xaa, 0xe0, 0xb2, 0xb6, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0x9a, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xae, 0x20, 0xe0, 0xb2, 0xaf, 0xe0, 0xb3, 0x81, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x8b, 0xe0, 0xb2, 0xaa, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xaf, 0xe0, 0xb2, 0xa8, 0xe0, 0xb3, 0x8d, 0x20, 0xe0, 0xb2, 0xac, 0xe0, 0xb3, 0x87, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0x97, 0xe0, 0xb3, 0x86, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "AWST": {0xe0, 0xb2, 0x86, 0xe0, 0xb2, 0xb8, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0x9f, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x87, 0xe0, 0xb2, 0xb2, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xaf, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa6, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb2, 0xb6, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0x9a, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xae, 0x20, 0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa3, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xa4, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "SRT": {0xe0, 0xb2, 0xb8, 0xe0, 0xb3, 0x81, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xa8, 0xe0, 0xb3, 0x87, 0xe0, 0xb2, 0xae, 0xe0, 0xb3, 0x8d, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "AEDT": {0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x82, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb5, 0x20, 0xe0, 0xb2, 0x86, 0xe0, 0xb2, 0xb8, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0x9f, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x87, 0xe0, 0xb2, 0xb2, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xaf, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa6, 0x20, 0xe0, 0xb2, 0xb9, 0xe0, 0xb2, 0x97, 0xe0, 0xb2, 0xb2, 0xe0, 0xb3, 0x81, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "EAT": {0xe0, 0xb2, 0xaa, 0xe0, 0xb3, 0x82, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb5, 0x20, 0xe0, 0xb2, 0x86, 0xe0, 0xb2, 0xab, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0xb0, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0x95, 0xe0, 0xb2, 0xbe, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "ARST": {0xe0, 0xb2, 0x85, 0xe0, 0xb2, 0xb0, 0xe0, 0xb3, 0x8d, 0xe0, 0xb2, 0x9c, 0xe0, 0xb3, 0x86, 0xe0, 0xb2, 0x82, 0xe0, 0xb2, 0x9f, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0xa8, 0xe0, 0xb2, 0xbe, 0x20, 0xe0, 0xb2, 0xac, 0xe0, 0xb3, 0x87, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xbf, 0xe0, 0xb2, 0x97, 0xe0, 0xb3, 0x86, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}, "JDT": {0xe0, 0xb2, 0x9c, 0xe0, 0xb2, 0xaa, 0xe0, 0xb2, 0xbe, 0xe0, 0xb2, 0xa8, 0xe0, 0xb3, 0x8d, 0x20, 0xe0, 0xb2, 0xb9, 0xe0, 0xb2, 0x97, 0xe0, 0xb2, 0xb2, 0xe0, 0xb3, 0x81, 0x20, 0xe0, 0xb2, 0xb8, 0xe0, 0xb2, 0xae, 0xe0, 0xb2, 0xaf}},
+ 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", "KHR", "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{"", "ಜ", "ಫೆ", "ಮಾ", "ಏ", "ಮೇ", "ಜೂ", "ಜು", "ಆ", "ಸೆ", "ಅ", "ನ", "ಡಿ"},
+ monthsWide: []string{"", "ಜನವರಿ", "ಫೆಬ್ರವರಿ", "ಮಾರ್ಚ್", "ಏಪ್ರಿಲ್", "ಮೇ", "ಜೂನ್", "ಜುಲೈ", "ಆಗಸ್ಟ್", "ಸೆಪ್ಟೆಂಬರ್", "ಅಕ್ಟೋಬರ್", "ನವೆಂಬರ್", "ಡಿಸೆಂಬರ್"},
+ daysAbbreviated: []string{"ಭಾನು", "ಸೋಮ", "ಮಂಗಳ", "ಬುಧ", "ಗುರು", "ಶುಕ್ರ", "ಶನಿ"},
+ daysNarrow: []string{"ಭಾ", "ಸೋ", "ಮಂ", "ಬು", "ಗು", "ಶು", "ಶ"},
+ daysShort: []string{"ಭಾನು", "ಸೋಮ", "ಮಂಗಳ", "ಬುಧ", "ಗುರು", "ಶುಕ್ರ", "ಶನಿ"},
+ daysWide: []string{"ಭಾನುವಾರ", "ಸೋಮವಾರ", "ಮಂಗಳವಾರ", "ಬುಧವಾರ", "ಗುರುವಾರ", "ಶುಕ್ರವಾರ", "ಶನಿವಾರ"},
+ periodsAbbreviated: []string{"AM", "PM"},
+ periodsNarrow: []string{"ಪೂ", "ಅ"},
+ periodsWide: []string{"ಪೂರ್ವಾಹ್ನ", "ಅಪರಾಹ್ನ"},
+ erasAbbreviated: []string{"ಕ್ರಿ.ಪೂ", "ಕ್ರಿ.ಶ"},
+ erasNarrow: []string{"", ""},
+ erasWide: []string{"ಕ್ರಿಸ್ತ ಪೂರ್ವ", "ಕ್ರಿಸ್ತ ಶಕ"},
+ timezones: map[string]string{"MDT": "ಉತ್ತರ ಅಮೆರಿಕದ ಪರ್ವತ ದಿನದ ಸಮಯ", "HKST": "ಹಾಂಗ್ ಕಾಂಗ್ ಬೇಸಿಗೆ ಸಮಯ", "CLST": "ಚಿಲಿ ಬೇಸಿಗೆ ಸಮಯ", "NZST": "ನ್ಯೂಜಿಲ್ಯಾಂಡ್ ಪ್ರಮಾಣಿತ ಸಮಯ", "AKDT": "\u200cಅಲಾಸ್ಕಾ ಹಗಲು ಸಮಯ", "BOT": "ಬೊಲಿವಿಯಾ ಸಮಯ", "LHST": "ಲಾರ್ಡ್ ಹೋವ್ ಪ್ರಮಾಣಿತ ಸಮಯ", "TMST": "ತುರ್ಕ್\u200cಮೇನಿಸ್ತಾನ್ ಬೇಸಿಗೆ ಸಮಯ", "ACWDT": "ಆಸ್ಟ್ರೇಲಿಯಾದ ಕೇಂದ್ರ ಪಶ್ಚಿಮ ಹಗಲು ಸಮಯ", "LHDT": "ಲಾರ್ಡ್ ಹೋವ್ ಬೆಳಗಿನ ಸಮಯ", "AEDT": "ಪೂರ್ವ ಆಸ್ಟ್ರೇಲಿಯಾದ ಹಗಲು ಸಮಯ", "WIB": "ಪಶ್ಚಿಮ ಇಂಡೋನೇಷಿಯ ಸಮಯ", "WESZ": "ಪಶ್ಚಿಮ ಯುರೋಪಿಯನ್ ಬೇಸಿಗೆ ಸಮಯ", "HAST": "ಹವಾಯಿ-ಅಲ್ಯುಟಿಯನ್ ಪ್ರಮಾಣಿತ ಸಮಯ", "SGT": "ಸಿಂಗಾಪುರ್ ಪ್ರಮಾಣಿತ ಸಮಯ", "ACST": "ಆಸ್ಟ್ರೇಲಿಯಾದ ಕೇಂದ್ರ ಪ್ರಮಾಣಿತ ಸಮಯ", "GYT": "ಗಯಾನಾ ಸಮಯ", "TMT": "ತುರ್ಕ್\u200cಮೇನಿಸ್ತಾನ್ ಪ್ರಮಾಣಿತ ಸಮಯ", "JST": "ಜಪಾನ್ ಪ್ರಮಾಣಿತ ಸಮಯ", "AWDT": "ಆಸ್ಟ್ರೇಲಿಯಾದ ಪಶ್ಚಿಮ ಹಗಲು ಸಮಯ", "UYT": "ಉರುಗ್ವೇ ಪ್ರಮಾಣಿತ ಸಮಯ", "OESZ": "ಪೂರ್ವ ಯುರೋಪಿಯನ್ ಬೇಸಿಗೆ ಸಮಯ", "HAT": "ನ್ಯೂಫೌಂಡ್\u200cಲ್ಯಾಂಡ್ ದಿನದ ಸಮಯ", "AEST": "ಆಸ್ಟ್ರೇಲಿಯಾದ ಪೂರ್ವ ಪ್ರಮಾಣಿತ ಸಮಯ", "JDT": "ಜಪಾನ್ ಹಗಲು ಸಮಯ", "CST": "ಉತ್ತರ ಅಮೆರಿಕದ ಕೇಂದ್ರ ಪ್ರಮಾಣಿತ ಸಮಯ", "MEZ": "ಮಧ್ಯ ಯುರೋಪಿಯನ್ ಪ್ರಮಾಣಿತ ಸಮಯ", "∅∅∅": "ಅಜೋರಸ್ ಬೇಸಿಗೆ ಸಮಯ", "CAT": "ಮಧ್ಯ ಆಫ್ರಿಕಾ ಸಮಯ", "CHADT": "ಚಥಾಮ್ ಹಗಲು ಸಮಯ", "WITA": "ಮಧ್ಯ ಇಂಡೋನೇಷಿಯಾ ಸಮಯ", "HKT": "ಹಾಂಗ್ ಕಾಂಗ್ ಪ್ರಮಾಣಿತ ಸಮಯ", "MESZ": "ಮಧ್ಯ ಯುರೋಪಿಯನ್ ಬೇಸಿಗೆ ಸಮಯ", "GFT": "ಫ್ರೆಂಚ್ ಗಯಾನಾ ಸಮಯ", "VET": "ವೆನಿಜುವೆಲಾ ಸಮಯ", "COST": "ಕೊಲಂಬಿಯಾ ಬೇಸಿಗೆ ಸಮಯ", "ART": "ಅರ್ಜೆಂಟೀನಾ ಪ್ರಮಾಣಿತ ಸಮಯ", "WAT": "ಪಶ್ಚಿಮ ಆಫ್ರಿಕಾ ಪ್ರಮಾಣಿತ ಸಮಯ", "MST": "ಉತ್ತರ ಅಮೆರಿಕದ ಪರ್ವತ ಪ್ರಮಾಣಿತ ಸಮಯ", "ACWST": "ಆಸ್ಟ್ರೇಲಿಯಾದ ಕೇಂದ್ರ ಪಶ್ಚಿಮ ಪ್ರಮಾಣಿತ ಸಮಯ", "HADT": "ಹವಾಯಿ-ಅಲ್ಯುಟಿಯನ್ ಹಗಲು ಸಮಯ", "NZDT": "ನ್ಯೂಜಿಲ್ಯಾಂಡ್ ಹಗಲು ಸಮಯ", "PST": "ಉತ್ತರ ಅಮೆರಿಕದ ಪೆಸಿಫಿಕ್ ಪ್ರಮಾಣಿತ ಸಮಯ", "CHAST": "ಚಥಾಮ್ ಪ್ರಮಾಣಿತ ಸಮಯ", "BT": "ಭೂತಾನ್ ಸಮಯ", "ARST": "ಅರ್ಜೆಂಟಿನಾ ಬೇಸಿಗೆ ಸಮಯ", "WARST": "ಪಶ್ಚಿಮ ಅರ್ಜೆಂಟೀನಾ ಬೇಸಿಗೆ ಸಮಯ", "SAST": "ದಕ್ಷಿಣ ಆಫ್ರಿಕಾ ಪ್ರಮಾಣಿತ ಸಮಯ", "IST": "ಭಾರತೀಯ ಪ್ರಮಾಣಿತ ಸಮಯ", "CLT": "ಚಿಲಿ ಪ್ರಮಾಣಿತ ಸಮಯ", "EST": "ಉತ್ತರ ಅಮೆರಿಕದ ಪೂರ್ವದ ಪ್ರಮಾಣಿತ ಸಮಯ", "WEZ": "ಪಶ್ಚಿಮ ಯುರೋಪಿಯನ್ ಪ್ರಮಾಣಿತ ಸಮಯ", "PDT": "ಉತ್ತರ ಅಮೆರಿಕದ ಪೆಸಿಫಿಕ್ ದಿನದ ಸಮಯ", "OEZ": "ಪೂರ್ವ ಯುರೋಪಿಯನ್ ಪ್ರಮಾಣಿತ ಸಮಯ", "ACDT": "ಆಸ್ಟ್ರೇಲಿಯಾದ ಕೇಂದ್ರ ಹಗಲು ಸಮಯ", "WART": "ಪಶ್ಚಿಮ ಅರ್ಜೆಂಟೀನಾ ಪ್ರಮಾಣಿತ ಸಮಯ", "AST": "ಅಟ್ಲಾಂಟಿಕ್ ಪ್ರಮಾಣಿತ ಸಮಯ", "SRT": "ಸುರಿನೇಮ್ ಸಮಯ", "UYST": "ಉರುಗ್ವೇ ಬೇಸಿಗೆ ಸಮಯ", "GMT": "ಗ್ರೀನ್\u200cವಿಚ್ ಸರಾಸರಿ ಕಾಲಮಾನ", "AKST": "ಅಲಸ್ಕಾ ಪ್ರಮಾಣಿತ ಸಮಯ", "ADT": "ಅಟ್ಲಾಂಟಿಕ್ ದಿನದ ಸಮಯ", "ECT": "ಈಕ್ವೆಡಾರ್ ಸಮಯ", "WIT": "ಪೂರ್ವ ಇಂಡೋನೇಷಿಯಾ ಸಮಯ", "AWST": "ಆಸ್ಟ್ರೇಲಿಯಾದ ಪಶ್ಚಿಮ ಪ್ರಮಾಣಿತ ಸಮಯ", "CDT": "ಉತ್ತರ ಅಮೆರಿಕದ ಕೇಂದ್ರೀಯ ದಿನದ ಸಮಯ", "EDT": "ಉತ್ತರ ಅಮೆರಿಕದ ಪೂರ್ವದ ದಿನದ ಸಮಯ", "WAST": "ಪಶ್ಚಿಮ ಆಫ್ರಿಕಾ ಬೇಸಿಗೆ ಸಮಯ", "ChST": "ಚಮೋರೋ ಪ್ರಮಾಣಿತ ಸಮಯ", "HNT": "ನ್ಯೂಫೌಂಡ್\u200cಲ್ಯಾಂಡ್ ಪ್ರಮಾಣಿತ ಸಮಯ", "EAT": "ಪೂರ್ವ ಆಫ್ರಿಕಾ ಸಮಯ", "COT": "ಕೊಲಂಬಿಯಾ ಪ್ರಮಾಣಿತ ಸಮಯ", "MYT": "ಮಲೇಷಿಯಾ ಸಮಯ"},
}
}
@@ -130,80 +130,77 @@ func (kn *kn) RangePluralRule(num1 float64, v1 uint64, num2 float64, v2 uint64)
}
// MonthAbbreviated returns the locales abbreviated month given the 'month' provided
-func (kn *kn) MonthAbbreviated(month time.Month) []byte {
+func (kn *kn) MonthAbbreviated(month time.Month) string {
return kn.monthsAbbreviated[month]
}
// MonthsAbbreviated returns the locales abbreviated months
-func (kn *kn) MonthsAbbreviated() [][]byte {
+func (kn *kn) MonthsAbbreviated() []string {
return kn.monthsAbbreviated[1:]
}
// MonthNarrow returns the locales narrow month given the 'month' provided
-func (kn *kn) MonthNarrow(month time.Month) []byte {
+func (kn *kn) MonthNarrow(month time.Month) string {
return kn.monthsNarrow[month]
}
// MonthsNarrow returns the locales narrow months
-func (kn *kn) MonthsNarrow() [][]byte {
+func (kn *kn) MonthsNarrow() []string {
return kn.monthsNarrow[1:]
}
// MonthWide returns the locales wide month given the 'month' provided
-func (kn *kn) MonthWide(month time.Month) []byte {
+func (kn *kn) MonthWide(month time.Month) string {
return kn.monthsWide[month]
}
// MonthsWide returns the locales wide months
-func (kn *kn) MonthsWide() [][]byte {
+func (kn *kn) MonthsWide() []string {
return kn.monthsWide[1:]
}
// WeekdayAbbreviated returns the locales abbreviated weekday given the 'weekday' provided
-func (kn *kn) WeekdayAbbreviated(weekday time.Weekday) []byte {
+func (kn *kn) WeekdayAbbreviated(weekday time.Weekday) string {
return kn.daysAbbreviated[weekday]
}
// WeekdaysAbbreviated returns the locales abbreviated weekdays
-func (kn *kn) WeekdaysAbbreviated() [][]byte {
+func (kn *kn) WeekdaysAbbreviated() []string {
return kn.daysAbbreviated
}
// WeekdayNarrow returns the locales narrow weekday given the 'weekday' provided
-func (kn *kn) WeekdayNarrow(weekday time.Weekday) []byte {
+func (kn *kn) WeekdayNarrow(weekday time.Weekday) string {
return kn.daysNarrow[weekday]
}
// WeekdaysNarrow returns the locales narrow weekdays
-func (kn *kn) WeekdaysNarrow() [][]byte {
+func (kn *kn) WeekdaysNarrow() []string {
return kn.daysNarrow
}
// WeekdayShort returns the locales short weekday given the 'weekday' provided
-func (kn *kn) WeekdayShort(weekday time.Weekday) []byte {
+func (kn *kn) WeekdayShort(weekday time.Weekday) string {
return kn.daysShort[weekday]
}
// WeekdaysShort returns the locales short weekdays
-func (kn *kn) WeekdaysShort() [][]byte {
+func (kn *kn) WeekdaysShort() []string {
return kn.daysShort
}
// WeekdayWide returns the locales wide weekday given the 'weekday' provided
-func (kn *kn) WeekdayWide(weekday time.Weekday) []byte {
+func (kn *kn) WeekdayWide(weekday time.Weekday) string {
return kn.daysWide[weekday]
}
// WeekdaysWide returns the locales wide weekdays
-func (kn *kn) WeekdaysWide() [][]byte {
+func (kn *kn) WeekdaysWide() []string {
return kn.daysWide
}
// FmtNumber returns 'num' with digits/precision of 'v' for 'kn' 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 (kn *kn) FmtNumber(num float64, v uint64) []byte {
-
+func (kn *kn) FmtNumber(num float64, v uint64) (results string) {
s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
l := len(s) + len(kn.decimal) + len(kn.group)*len(s[:len(s)-int(v)-1])/3
count := 0
@@ -239,15 +236,13 @@ func (kn *kn) 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 'kn' 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 (kn *kn) FmtPercent(num float64, v uint64) []byte {
-
+func (kn *kn) FmtPercent(num float64, v uint64) (results string) {
s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
l := len(s) + len(kn.decimal)
b := make([]byte, 0, l)
@@ -273,13 +268,12 @@ func (kn *kn) FmtPercent(num float64, v uint64) []byte {
b = append(b, kn.percent...)
- return b
+ results = string(b)
+ return
}
// FmtCurrency returns the currency representation of 'num' with digits/precision of 'v' for 'kn'
-// returned as a []byte just in case the caller wishes to add more and can help
-// avoid allocations; otherwise just cast as string.
-func (kn *kn) FmtCurrency(num float64, v uint64, currency currency.Type) []byte {
+func (kn *kn) FmtCurrency(num float64, v uint64, currency currency.Type) (results string) {
s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
symbol := kn.currencies[currency]
@@ -332,13 +326,13 @@ func (kn *kn) 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 'kn'
-// 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 (kn *kn) FmtAccounting(num float64, v uint64, currency currency.Type) []byte {
+// in accounting notation.
+func (kn *kn) FmtAccounting(num float64, v uint64, currency currency.Type) (results string) {
s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
symbol := kn.currencies[currency]
@@ -373,9 +367,7 @@ func (kn *kn) FmtAccounting(num float64, v uint64, currency currency.Type) []byt
b = append(b, symbol[j])
}
- for j := len(kn.currencyNegativePrefix) - 1; j >= 0; j-- {
- b = append(b, kn.currencyNegativePrefix[j])
- }
+ b = append(b, kn.currencyNegativePrefix[0])
} else {
@@ -405,13 +397,12 @@ func (kn *kn) FmtAccounting(num float64, v uint64, currency currency.Type) []byt
b = append(b, kn.currencyNegativeSuffix...)
}
- return b
+ results = string(b)
+ return
}
// FmtDateShort returns the short date representation of 't' for 'kn'
-// returned as a []byte just in case the caller wishes to add more and can help
-// avoid allocations; otherwise just cast as string.
-func (kn *kn) FmtDateShort(t time.Time) []byte {
+func (kn *kn) FmtDateShort(t time.Time) string {
b := make([]byte, 0, 32)
@@ -426,13 +417,11 @@ func (kn *kn) 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 'kn'
-// returned as a []byte just in case the caller wishes to add more and can help
-// avoid allocations; otherwise just cast as string.
-func (kn *kn) FmtDateMedium(t time.Time) []byte {
+func (kn *kn) FmtDateMedium(t time.Time) string {
b := make([]byte, 0, 32)
@@ -442,13 +431,11 @@ func (kn *kn) FmtDateMedium(t time.Time) []byte {
b = append(b, []byte{0x2c, 0x20}...)
b = strconv.AppendInt(b, int64(t.Year()), 10)
- return b
+ return string(b)
}
// FmtDateLong returns the long date representation of 't' for 'kn'
-// returned as a []byte just in case the caller wishes to add more and can help
-// avoid allocations; otherwise just cast as string.
-func (kn *kn) FmtDateLong(t time.Time) []byte {
+func (kn *kn) FmtDateLong(t time.Time) string {
b := make([]byte, 0, 32)
@@ -458,13 +445,11 @@ func (kn *kn) FmtDateLong(t time.Time) []byte {
b = append(b, []byte{0x2c, 0x20}...)
b = strconv.AppendInt(b, int64(t.Year()), 10)
- return b
+ return string(b)
}
// FmtDateFull returns the full date representation of 't' for 'kn'
-// returned as a []byte just in case the caller wishes to add more and can help
-// avoid allocations; otherwise just cast as string.
-func (kn *kn) FmtDateFull(t time.Time) []byte {
+func (kn *kn) FmtDateFull(t time.Time) string {
b := make([]byte, 0, 32)
@@ -476,13 +461,11 @@ func (kn *kn) FmtDateFull(t time.Time) []byte {
b = append(b, []byte{0x2c, 0x20}...)
b = strconv.AppendInt(b, int64(t.Year()), 10)
- return b
+ return string(b)
}
// FmtTimeShort returns the short time representation of 't' for 'kn'
-// returned as a []byte just in case the caller wishes to add more and can help
-// avoid allocations; otherwise just cast as string.
-func (kn *kn) FmtTimeShort(t time.Time) []byte {
+func (kn *kn) FmtTimeShort(t time.Time) string {
b := make([]byte, 0, 32)
@@ -512,13 +495,11 @@ func (kn *kn) FmtTimeShort(t time.Time) []byte {
b = append(b, kn.periodsAbbreviated[1]...)
}
- return b
+ return string(b)
}
// FmtTimeMedium returns the medium time representation of 't' for 'kn'
-// returned as a []byte just in case the caller wishes to add more and can help
-// avoid allocations; otherwise just cast as string.
-func (kn *kn) FmtTimeMedium(t time.Time) []byte {
+func (kn *kn) FmtTimeMedium(t time.Time) string {
b := make([]byte, 0, 32)
@@ -555,13 +536,11 @@ func (kn *kn) FmtTimeMedium(t time.Time) []byte {
b = append(b, kn.periodsAbbreviated[1]...)
}
- return b
+ return string(b)
}
// FmtTimeLong returns the long time representation of 't' for 'kn'
-// returned as a []byte just in case the caller wishes to add more and can help
-// avoid allocations; otherwise just cast as string.
-func (kn *kn) FmtTimeLong(t time.Time) []byte {
+func (kn *kn) FmtTimeLong(t time.Time) string {
b := make([]byte, 0, 32)
@@ -603,13 +582,11 @@ func (kn *kn) 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 'kn'
-// returned as a []byte just in case the caller wishes to add more and can help
-// avoid allocations; otherwise just cast as string.
-func (kn *kn) FmtTimeFull(t time.Time) []byte {
+func (kn *kn) FmtTimeFull(t time.Time) string {
b := make([]byte, 0, 32)
@@ -656,5 +633,5 @@ func (kn *kn) FmtTimeFull(t time.Time) []byte {
b = append(b, tz...)
}
- return b
+ return string(b)
}