Skip to content

Commit

Permalink
apply automatic changes
Browse files Browse the repository at this point in the history
  • Loading branch information
ladydascalie authored and actions-user committed Jun 29, 2024
1 parent e83e98c commit c115996
Show file tree
Hide file tree
Showing 5 changed files with 80 additions and 0 deletions.
35 changes: 35 additions & 0 deletions cmd/list_one.xml
Original file line number Diff line number Diff line change
Expand Up @@ -530,6 +530,13 @@
<CcyNbr>978</CcyNbr>
<CcyMnrUnts>2</CcyMnrUnts>
</CcyNtry>
<CcyNtry>
<CtryNm>ESWATINI</CtryNm>
<CcyNm>Lilangeni</CcyNm>
<Ccy>SZL</Ccy>
<CcyNbr>748</CcyNbr>
<CcyMnrUnts>2</CcyMnrUnts>
</CcyNtry>
<CcyNtry>
<CtryNm>ETHIOPIA</CtryNm>
<CcyNm>Ethiopian Birr</CcyNm>
Expand Down Expand Up @@ -999,6 +1006,13 @@
<CcyNbr>969</CcyNbr>
<CcyMnrUnts>2</CcyMnrUnts>
</CcyNtry>
<CcyNtry>
<CtryNm>MALAWI</CtryNm>
<CcyNm>Malawi Kwacha</CcyNm>
<Ccy>MWK</Ccy>
<CcyNbr>454</CcyNbr>
<CcyMnrUnts>2</CcyMnrUnts>
</CcyNtry>
<CcyNtry>
<CtryNm>MALAYSIA</CtryNm>
<CcyNm>Malaysian Ringgit</CcyNm>
Expand Down Expand Up @@ -1297,6 +1311,13 @@
<CcyNbr>600</CcyNbr>
<CcyMnrUnts>0</CcyMnrUnts>
</CcyNtry>
<CcyNtry>
<CtryNm>PERU</CtryNm>
<CcyNm>Sol</CcyNm>
<Ccy>PEN</Ccy>
<CcyNbr>604</CcyNbr>
<CcyMnrUnts>2</CcyMnrUnts>
</CcyNtry>
<CcyNtry>
<CtryNm>PHILIPPINES (THE)</CtryNm>
<CcyNm>Philippine Peso</CcyNm>
Expand Down Expand Up @@ -1346,6 +1367,13 @@
<CcyNbr>978</CcyNbr>
<CcyMnrUnts>2</CcyMnrUnts>
</CcyNtry>
<CcyNtry>
<CtryNm>ROMANIA</CtryNm>
<CcyNm>Romanian Leu</CcyNm>
<Ccy>RON</Ccy>
<CcyNbr>946</CcyNbr>
<CcyMnrUnts>2</CcyMnrUnts>
</CcyNtry>
<CcyNtry>
<CtryNm>RUSSIAN FEDERATION (THE)</CtryNm>
<CcyNm>Russian Ruble</CcyNm>
Expand Down Expand Up @@ -1672,6 +1700,13 @@
<CcyNbr>788</CcyNbr>
<CcyMnrUnts>3</CcyMnrUnts>
</CcyNtry>
<CcyNtry>
<CtryNm>TÜRKİYE</CtryNm>
<CcyNm>Turkish Lira</CcyNm>
<Ccy>TRY</Ccy>
<CcyNbr>949</CcyNbr>
<CcyMnrUnts>2</CcyMnrUnts>
</CcyNtry>
<CcyNtry>
<CtryNm>TURKMENISTAN</CtryNm>
<CcyNm>Turkmenistan New Manat</CcyNm>
Expand Down
20 changes: 20 additions & 0 deletions std.go
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,8 @@ var (
MUR = Currency{code: "MUR", minorUnits: 2, factor: 100}
// MVR currency struct
MVR = Currency{code: "MVR", minorUnits: 2, factor: 100}
// MWK currency struct
MWK = Currency{code: "MWK", minorUnits: 2, factor: 100}
// MXN currency struct
MXN = Currency{code: "MXN", minorUnits: 2, factor: 100}
// MXV currency struct
Expand All @@ -280,6 +282,8 @@ var (
OMR = Currency{code: "OMR", minorUnits: 3, factor: 1000}
// PAB currency struct
PAB = Currency{code: "PAB", minorUnits: 2, factor: 100}
// PEN currency struct
PEN = Currency{code: "PEN", minorUnits: 2, factor: 100}
// PGK currency struct
PGK = Currency{code: "PGK", minorUnits: 2, factor: 100}
// PHP currency struct
Expand All @@ -292,6 +296,8 @@ var (
PYG = Currency{code: "PYG", minorUnits: 0, factor: 1}
// QAR currency struct
QAR = Currency{code: "QAR", minorUnits: 2, factor: 100}
// RON currency struct
RON = Currency{code: "RON", minorUnits: 2, factor: 100}
// RSD currency struct
RSD = Currency{code: "RSD", minorUnits: 2, factor: 100}
// RUB currency struct
Expand Down Expand Up @@ -326,6 +332,8 @@ var (
SVC = Currency{code: "SVC", minorUnits: 2, factor: 100}
// SYP currency struct
SYP = Currency{code: "SYP", minorUnits: 2, factor: 100}
// SZL currency struct
SZL = Currency{code: "SZL", minorUnits: 2, factor: 100}
// THB currency struct
THB = Currency{code: "THB", minorUnits: 2, factor: 100}
// TJS currency struct
Expand All @@ -336,6 +344,8 @@ var (
TND = Currency{code: "TND", minorUnits: 3, factor: 1000}
// TOP currency struct
TOP = Currency{code: "TOP", minorUnits: 2, factor: 100}
// TRY currency struct
TRY = Currency{code: "TRY", minorUnits: 2, factor: 100}
// TTD currency struct
TTD = Currency{code: "TTD", minorUnits: 2, factor: 100}
// TWD currency struct
Expand Down Expand Up @@ -512,6 +522,7 @@ var currencies = map[string]Currency{
"MRU": MRU,
"MUR": MUR,
"MVR": MVR,
"MWK": MWK,
"MXN": MXN,
"MXV": MXV,
"MYR": MYR,
Expand All @@ -524,12 +535,14 @@ var currencies = map[string]Currency{
"NZD": NZD,
"OMR": OMR,
"PAB": PAB,
"PEN": PEN,
"PGK": PGK,
"PHP": PHP,
"PKR": PKR,
"PLN": PLN,
"PYG": PYG,
"QAR": QAR,
"RON": RON,
"RSD": RSD,
"RUB": RUB,
"RWF": RWF,
Expand All @@ -547,11 +560,13 @@ var currencies = map[string]Currency{
"STN": STN,
"SVC": SVC,
"SYP": SYP,
"SZL": SZL,
"THB": THB,
"TJS": TJS,
"TMT": TMT,
"TND": TND,
"TOP": TOP,
"TRY": TRY,
"TTD": TTD,
"TWD": TWD,
"TZS": TZS,
Expand Down Expand Up @@ -691,6 +706,7 @@ var ValidCodes = []string{
"MRU",
"MUR",
"MVR",
"MWK",
"MXN",
"MXV",
"MYR",
Expand All @@ -703,12 +719,14 @@ var ValidCodes = []string{
"NZD",
"OMR",
"PAB",
"PEN",
"PGK",
"PHP",
"PKR",
"PLN",
"PYG",
"QAR",
"RON",
"RSD",
"RUB",
"RWF",
Expand All @@ -726,11 +744,13 @@ var ValidCodes = []string{
"STN",
"SVC",
"SYP",
"SZL",
"THB",
"TJS",
"TMT",
"TND",
"TOP",
"TRY",
"TTD",
"TWD",
"TZS",
Expand Down
5 changes: 5 additions & 0 deletions std.kt
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ data class Currency(val currencyCode: String, val minorUnits: Int, val factor: I
"MRU" to Currency("MRU", 2, 100),
"MUR" to Currency("MUR", 2, 100),
"MVR" to Currency("MVR", 2, 100),
"MWK" to Currency("MWK", 2, 100),
"MXN" to Currency("MXN", 2, 100),
"MXV" to Currency("MXV", 2, 100),
"MYR" to Currency("MYR", 2, 100),
Expand All @@ -110,12 +111,14 @@ data class Currency(val currencyCode: String, val minorUnits: Int, val factor: I
"NZD" to Currency("NZD", 2, 100),
"OMR" to Currency("OMR", 3, 1000),
"PAB" to Currency("PAB", 2, 100),
"PEN" to Currency("PEN", 2, 100),
"PGK" to Currency("PGK", 2, 100),
"PHP" to Currency("PHP", 2, 100),
"PKR" to Currency("PKR", 2, 100),
"PLN" to Currency("PLN", 2, 100),
"PYG" to Currency("PYG", 0, 1),
"QAR" to Currency("QAR", 2, 100),
"RON" to Currency("RON", 2, 100),
"RSD" to Currency("RSD", 2, 100),
"RUB" to Currency("RUB", 2, 100),
"RWF" to Currency("RWF", 0, 1),
Expand All @@ -133,11 +136,13 @@ data class Currency(val currencyCode: String, val minorUnits: Int, val factor: I
"STN" to Currency("STN", 2, 100),
"SVC" to Currency("SVC", 2, 100),
"SYP" to Currency("SYP", 2, 100),
"SZL" to Currency("SZL", 2, 100),
"THB" to Currency("THB", 2, 100),
"TJS" to Currency("TJS", 2, 100),
"TMT" to Currency("TMT", 2, 100),
"TND" to Currency("TND", 3, 1000),
"TOP" to Currency("TOP", 2, 100),
"TRY" to Currency("TRY", 2, 100),
"TTD" to Currency("TTD", 2, 100),
"TWD" to Currency("TWD", 2, 100),
"TZS" to Currency("TZS", 2, 100),
Expand Down
10 changes: 10 additions & 0 deletions std.swift
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ class Currencies {
static let MRU: Currency = Currency(code: "MRU", minorUnits: 2, factor: 100)
static let MUR: Currency = Currency(code: "MUR", minorUnits: 2, factor: 100)
static let MVR: Currency = Currency(code: "MVR", minorUnits: 2, factor: 100)
static let MWK: Currency = Currency(code: "MWK", minorUnits: 2, factor: 100)
static let MXN: Currency = Currency(code: "MXN", minorUnits: 2, factor: 100)
static let MXV: Currency = Currency(code: "MXV", minorUnits: 2, factor: 100)
static let MYR: Currency = Currency(code: "MYR", minorUnits: 2, factor: 100)
Expand All @@ -121,12 +122,14 @@ class Currencies {
static let NZD: Currency = Currency(code: "NZD", minorUnits: 2, factor: 100)
static let OMR: Currency = Currency(code: "OMR", minorUnits: 3, factor: 1000)
static let PAB: Currency = Currency(code: "PAB", minorUnits: 2, factor: 100)
static let PEN: Currency = Currency(code: "PEN", minorUnits: 2, factor: 100)
static let PGK: Currency = Currency(code: "PGK", minorUnits: 2, factor: 100)
static let PHP: Currency = Currency(code: "PHP", minorUnits: 2, factor: 100)
static let PKR: Currency = Currency(code: "PKR", minorUnits: 2, factor: 100)
static let PLN: Currency = Currency(code: "PLN", minorUnits: 2, factor: 100)
static let PYG: Currency = Currency(code: "PYG", minorUnits: 0, factor: 1)
static let QAR: Currency = Currency(code: "QAR", minorUnits: 2, factor: 100)
static let RON: Currency = Currency(code: "RON", minorUnits: 2, factor: 100)
static let RSD: Currency = Currency(code: "RSD", minorUnits: 2, factor: 100)
static let RUB: Currency = Currency(code: "RUB", minorUnits: 2, factor: 100)
static let RWF: Currency = Currency(code: "RWF", minorUnits: 0, factor: 1)
Expand All @@ -144,11 +147,13 @@ class Currencies {
static let STN: Currency = Currency(code: "STN", minorUnits: 2, factor: 100)
static let SVC: Currency = Currency(code: "SVC", minorUnits: 2, factor: 100)
static let SYP: Currency = Currency(code: "SYP", minorUnits: 2, factor: 100)
static let SZL: Currency = Currency(code: "SZL", minorUnits: 2, factor: 100)
static let THB: Currency = Currency(code: "THB", minorUnits: 2, factor: 100)
static let TJS: Currency = Currency(code: "TJS", minorUnits: 2, factor: 100)
static let TMT: Currency = Currency(code: "TMT", minorUnits: 2, factor: 100)
static let TND: Currency = Currency(code: "TND", minorUnits: 3, factor: 1000)
static let TOP: Currency = Currency(code: "TOP", minorUnits: 2, factor: 100)
static let TRY: Currency = Currency(code: "TRY", minorUnits: 2, factor: 100)
static let TTD: Currency = Currency(code: "TTD", minorUnits: 2, factor: 100)
static let TWD: Currency = Currency(code: "TWD", minorUnits: 2, factor: 100)
static let TZS: Currency = Currency(code: "TZS", minorUnits: 2, factor: 100)
Expand Down Expand Up @@ -288,6 +293,7 @@ class Currencies {
"MRU": MRU,
"MUR": MUR,
"MVR": MVR,
"MWK": MWK,
"MXN": MXN,
"MXV": MXV,
"MYR": MYR,
Expand All @@ -300,12 +306,14 @@ class Currencies {
"NZD": NZD,
"OMR": OMR,
"PAB": PAB,
"PEN": PEN,
"PGK": PGK,
"PHP": PHP,
"PKR": PKR,
"PLN": PLN,
"PYG": PYG,
"QAR": QAR,
"RON": RON,
"RSD": RSD,
"RUB": RUB,
"RWF": RWF,
Expand All @@ -323,11 +331,13 @@ class Currencies {
"STN": STN,
"SVC": SVC,
"SYP": SYP,
"SZL": SZL,
"THB": THB,
"TJS": TJS,
"TMT": TMT,
"TND": TND,
"TOP": TOP,
"TRY": TRY,
"TTD": TTD,
"TWD": TWD,
"TZS": TZS,
Expand Down
10 changes: 10 additions & 0 deletions std_currency.js
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,8 @@ var stdCurrency = {
MUR: { code: "MUR", name: "Mauritius Rupee", minorUnits: 2, factor: 100},
// MVR currency object
MVR: { code: "MVR", name: "Rufiyaa", minorUnits: 2, factor: 100},
// MWK currency object
MWK: { code: "MWK", name: "Malawi Kwacha", minorUnits: 2, factor: 100},
// MXN currency object
MXN: { code: "MXN", name: "Mexican Peso", minorUnits: 2, factor: 100},
// MXV currency object
Expand All @@ -217,6 +219,8 @@ var stdCurrency = {
OMR: { code: "OMR", name: "Rial Omani", minorUnits: 3, factor: 1000},
// PAB currency object
PAB: { code: "PAB", name: "Balboa", minorUnits: 2, factor: 100},
// PEN currency object
PEN: { code: "PEN", name: "Sol", minorUnits: 2, factor: 100},
// PGK currency object
PGK: { code: "PGK", name: "Kina", minorUnits: 2, factor: 100},
// PHP currency object
Expand All @@ -229,6 +233,8 @@ var stdCurrency = {
PYG: { code: "PYG", name: "Guarani", minorUnits: 0, factor: 1},
// QAR currency object
QAR: { code: "QAR", name: "Qatari Rial", minorUnits: 2, factor: 100},
// RON currency object
RON: { code: "RON", name: "Romanian Leu", minorUnits: 2, factor: 100},
// RSD currency object
RSD: { code: "RSD", name: "Serbian Dinar", minorUnits: 2, factor: 100},
// RUB currency object
Expand Down Expand Up @@ -263,6 +269,8 @@ var stdCurrency = {
SVC: { code: "SVC", name: "El Salvador Colon", minorUnits: 2, factor: 100},
// SYP currency object
SYP: { code: "SYP", name: "Syrian Pound", minorUnits: 2, factor: 100},
// SZL currency object
SZL: { code: "SZL", name: "Lilangeni", minorUnits: 2, factor: 100},
// THB currency object
THB: { code: "THB", name: "Baht", minorUnits: 2, factor: 100},
// TJS currency object
Expand All @@ -273,6 +281,8 @@ var stdCurrency = {
TND: { code: "TND", name: "Tunisian Dinar", minorUnits: 3, factor: 1000},
// TOP currency object
TOP: { code: "TOP", name: "Pa’anga", minorUnits: 2, factor: 100},
// TRY currency object
TRY: { code: "TRY", name: "Turkish Lira", minorUnits: 2, factor: 100},
// TTD currency object
TTD: { code: "TTD", name: "Trinidad and Tobago Dollar", minorUnits: 2, factor: 100},
// TWD currency object
Expand Down

0 comments on commit c115996

Please sign in to comment.