@ledvance/group-ui-biz-bundle 1.0.48 → 1.0.49
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/modules/flags/FlagActions.ts +151 -30
- package/src/modules/flags/FlagEditPage.tsx +26 -18
- package/src/modules/flags/FlagInfo.tsx +1188 -481
- package/src/modules/flags/FlagPage.tsx +67 -108
|
@@ -26,296 +26,538 @@ export interface FlagUiInfo extends FlagItemInfo{
|
|
|
26
26
|
name: string
|
|
27
27
|
}
|
|
28
28
|
|
|
29
|
+
const defFlagConfig = {
|
|
30
|
+
version: 0,
|
|
31
|
+
mode: SceneNodeTransitionMode.Jump,
|
|
32
|
+
speed: 75,
|
|
33
|
+
whiteColors: [
|
|
34
|
+
{ brightness: 100, colorTemp: 0 },
|
|
35
|
+
],
|
|
36
|
+
}
|
|
37
|
+
|
|
29
38
|
export const defFlagList: FlagUiInfo[] = [
|
|
30
39
|
{
|
|
31
40
|
id: 231,
|
|
32
|
-
version: 0,
|
|
33
|
-
mode: SceneNodeTransitionMode.Jump,
|
|
34
|
-
speed: 75,
|
|
35
41
|
name: I18n.getLang('flag_leverkusen'),
|
|
36
|
-
|
|
37
|
-
{ brightness: 100, colorTemp: 0},
|
|
38
|
-
],
|
|
42
|
+
...defFlagConfig,
|
|
39
43
|
colors: [{h: 360, s: 100, v: 100}, {h: 0, s: 0, v: 100}, {h: 60, s: 100, v: 100}]
|
|
40
44
|
},
|
|
41
45
|
{
|
|
42
46
|
id: 255,
|
|
43
|
-
version: 0,
|
|
44
|
-
mode: SceneNodeTransitionMode.Jump,
|
|
45
|
-
speed: 75,
|
|
46
47
|
name: I18n.getLang('country_DE'),
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
],
|
|
50
|
-
colors: [
|
|
51
|
-
{h: 48, s: 100, v: 100},
|
|
52
|
-
{h: 360, s: 100, v: 100},
|
|
53
|
-
{h: 0, s: 0, v:0}],
|
|
48
|
+
...defFlagConfig,
|
|
49
|
+
colors: [{h: 48, s: 100, v: 100},{h: 360, s: 100, v: 100},{h: 0, s: 0, v:0}],
|
|
54
50
|
},
|
|
55
51
|
{
|
|
56
52
|
id: 254,
|
|
57
|
-
version: 0,
|
|
58
|
-
mode: SceneNodeTransitionMode.Jump,
|
|
59
|
-
speed: 75,
|
|
60
53
|
name: I18n.getLang('country_BE'),
|
|
61
|
-
|
|
62
|
-
{ brightness: 100, colorTemp: 0},
|
|
63
|
-
],
|
|
54
|
+
...defFlagConfig,
|
|
64
55
|
colors: [{h: 360, s: 100, v: 100}, {h: 48, s: 100, v: 100}, {h: 0, s: 0, v: 0}]
|
|
65
56
|
},
|
|
66
57
|
{
|
|
67
58
|
id: 253,
|
|
68
|
-
version: 0,
|
|
69
|
-
mode: SceneNodeTransitionMode.Jump,
|
|
70
|
-
speed: 75,
|
|
71
59
|
name: I18n.getLang('country_FR'),
|
|
72
|
-
|
|
73
|
-
{ brightness: 100, colorTemp: 0},
|
|
74
|
-
],
|
|
60
|
+
...defFlagConfig,
|
|
75
61
|
colors: [{h: 360, s: 100, v: 100}, {h: 0, s: 0, v: 100}, {h: 212, s: 100, v: 100}]
|
|
76
62
|
},
|
|
77
63
|
{
|
|
78
64
|
id: 252,
|
|
79
|
-
version: 0,
|
|
80
|
-
mode: SceneNodeTransitionMode.Jump,
|
|
81
|
-
speed: 75,
|
|
82
65
|
name: I18n.getLang('country_PT'),
|
|
83
|
-
|
|
84
|
-
{ brightness: 100, colorTemp: 0},
|
|
85
|
-
],
|
|
66
|
+
...defFlagConfig,
|
|
86
67
|
colors: [{h: 360, s: 100, v: 100}, {h: 360, s: 100, v: 100}, {h: 120, s: 100, v: 100}]
|
|
87
68
|
},
|
|
88
69
|
{
|
|
89
70
|
id: 251,
|
|
90
|
-
version: 0,
|
|
91
|
-
mode: SceneNodeTransitionMode.Jump,
|
|
92
|
-
speed: 75,
|
|
93
71
|
name: I18n.getLang('country_scotland'),
|
|
94
|
-
|
|
95
|
-
{ brightness: 100, colorTemp: 0},
|
|
96
|
-
],
|
|
72
|
+
...defFlagConfig,
|
|
97
73
|
colors: [{h: 209, s: 100, v: 100}, {h: 0, s: 0, v: 100}, {h: 209, s: 100, v: 100}]
|
|
98
74
|
},
|
|
99
75
|
{
|
|
100
76
|
id: 250,
|
|
101
|
-
version: 0,
|
|
102
|
-
mode: SceneNodeTransitionMode.Jump,
|
|
103
|
-
speed: 75,
|
|
104
77
|
name: I18n.getLang('country_ES'),
|
|
105
|
-
|
|
106
|
-
{ brightness: 100, colorTemp: 0},
|
|
107
|
-
],
|
|
78
|
+
...defFlagConfig,
|
|
108
79
|
colors: [{h: 360, s: 100, v: 100}, {h: 47, s: 100, v: 100}, {h: 360, s: 100, v: 100}]
|
|
109
80
|
},
|
|
110
81
|
{
|
|
111
82
|
id: 249,
|
|
112
|
-
version: 0,
|
|
113
|
-
mode: SceneNodeTransitionMode.Jump,
|
|
114
|
-
speed: 75,
|
|
115
83
|
name: I18n.getLang('country_TR'),
|
|
116
|
-
|
|
117
|
-
{ brightness: 100, colorTemp: 0},
|
|
118
|
-
],
|
|
84
|
+
...defFlagConfig,
|
|
119
85
|
colors: [{h: 360, s: 100, v: 100}, {h: 360, s: 100, v: 100}, {h: 0, s: 0, v: 100}]
|
|
120
86
|
},
|
|
121
87
|
{
|
|
122
88
|
id: 248,
|
|
123
|
-
version: 0,
|
|
124
|
-
mode: SceneNodeTransitionMode.Jump,
|
|
125
|
-
speed: 75,
|
|
126
89
|
name: I18n.getLang('country_AT'),
|
|
127
|
-
|
|
128
|
-
{ brightness: 100, colorTemp: 0},
|
|
129
|
-
],
|
|
90
|
+
...defFlagConfig,
|
|
130
91
|
colors: [{h: 360, s: 100, v: 100}, {h: 0, s: 0, v: 100}, {h: 360, s: 100, v: 100}]
|
|
131
92
|
},
|
|
132
93
|
{
|
|
133
94
|
id: 247,
|
|
134
|
-
version: 0,
|
|
135
|
-
mode: SceneNodeTransitionMode.Jump,
|
|
136
|
-
speed: 75,
|
|
137
95
|
name: I18n.getLang('country_england'),
|
|
138
|
-
|
|
139
|
-
{ brightness: 100, colorTemp: 0},
|
|
140
|
-
],
|
|
96
|
+
...defFlagConfig,
|
|
141
97
|
colors: [{h: 0, s: 0, v: 100}, {h: 360, s: 100, v: 100}, {h: 0, s: 0, v: 100}]
|
|
142
98
|
},
|
|
143
99
|
{
|
|
144
100
|
id: 246,
|
|
145
|
-
version: 0,
|
|
146
|
-
mode: SceneNodeTransitionMode.Jump,
|
|
147
|
-
speed: 75,
|
|
148
101
|
name: I18n.getLang('country_HU'),
|
|
149
|
-
|
|
150
|
-
{ brightness: 100, colorTemp: 0},
|
|
151
|
-
],
|
|
102
|
+
...defFlagConfig,
|
|
152
103
|
colors: [{h: 120, s: 100, v: 100}, {h: 0, s: 0, v: 100}, {h: 360, s: 100, v: 100}]
|
|
153
104
|
},
|
|
154
105
|
{
|
|
155
106
|
id: 245,
|
|
156
|
-
version: 0,
|
|
157
|
-
mode: SceneNodeTransitionMode.Jump,
|
|
158
|
-
speed: 75,
|
|
159
107
|
name: I18n.getLang('country_SK'),
|
|
160
|
-
|
|
161
|
-
{ brightness: 100, colorTemp: 0},
|
|
162
|
-
],
|
|
108
|
+
...defFlagConfig,
|
|
163
109
|
colors: [{h: 360, s: 100, v: 100}, {h: 213, s: 93, v: 100}, {h: 0, s: 0, v: 100}]
|
|
164
110
|
},
|
|
165
111
|
{
|
|
166
112
|
id: 244,
|
|
167
|
-
version: 0,
|
|
168
|
-
mode: SceneNodeTransitionMode.Jump,
|
|
169
|
-
speed: 75,
|
|
170
113
|
name: I18n.getLang('country_AL'),
|
|
171
|
-
|
|
172
|
-
{ brightness: 100, colorTemp: 0},
|
|
173
|
-
],
|
|
114
|
+
...defFlagConfig,
|
|
174
115
|
colors: [{h: 360, s: 100, v: 100}, {h: 0, s: 0, v:0}, {h: 360, s: 100, v: 100}]
|
|
175
116
|
},
|
|
176
117
|
{
|
|
177
118
|
id: 243,
|
|
178
|
-
version: 0,
|
|
179
|
-
mode: SceneNodeTransitionMode.Jump,
|
|
180
|
-
speed: 75,
|
|
181
119
|
name: I18n.getLang('country_DK'),
|
|
182
|
-
|
|
183
|
-
{ brightness: 100, colorTemp: 0},
|
|
184
|
-
],
|
|
120
|
+
...defFlagConfig,
|
|
185
121
|
colors: [{h: 360, s: 100, v: 100}, {h: 0, s: 0, v:100}, {h: 360, s: 100, v: 100}]
|
|
186
122
|
},
|
|
187
123
|
{
|
|
188
124
|
id: 242,
|
|
189
|
-
version: 0,
|
|
190
|
-
mode: SceneNodeTransitionMode.Jump,
|
|
191
|
-
speed: 75,
|
|
192
125
|
name: I18n.getLang('country_NL'),
|
|
193
|
-
|
|
194
|
-
{ brightness: 100, colorTemp: 0},
|
|
195
|
-
],
|
|
126
|
+
...defFlagConfig,
|
|
196
127
|
colors: [{h: 217, s: 100, v: 100}, {h: 0, s: 0, v:100}, {h: 360, s: 100, v: 100}]
|
|
197
128
|
},
|
|
198
129
|
{
|
|
199
130
|
id: 241,
|
|
200
|
-
version: 0,
|
|
201
|
-
mode: SceneNodeTransitionMode.Jump,
|
|
202
|
-
speed: 75,
|
|
203
131
|
name: I18n.getLang('country_RO'),
|
|
204
|
-
|
|
205
|
-
{ brightness: 100, colorTemp: 0},
|
|
206
|
-
],
|
|
132
|
+
...defFlagConfig,
|
|
207
133
|
colors: [{h: 360, s: 100, v: 100}, {h: 48, s: 91, v: 100}, {h: 219, s: 100, v: 100}]
|
|
208
134
|
},
|
|
209
135
|
{
|
|
210
136
|
id: 240,
|
|
211
|
-
version: 0,
|
|
212
|
-
mode: SceneNodeTransitionMode.Jump,
|
|
213
|
-
speed: 75,
|
|
214
137
|
name: I18n.getLang('country_CH'),
|
|
215
|
-
|
|
216
|
-
{ brightness: 100, colorTemp: 0},
|
|
217
|
-
],
|
|
138
|
+
...defFlagConfig,
|
|
218
139
|
colors: [{h: 360, s: 100, v: 100}, {h: 0, s: 0, v: 100}, {h: 360, s: 100, v: 100}]
|
|
219
140
|
},
|
|
220
141
|
{
|
|
221
142
|
id: 239,
|
|
222
|
-
version: 0,
|
|
223
|
-
mode: SceneNodeTransitionMode.Jump,
|
|
224
|
-
speed: 75,
|
|
225
143
|
name: I18n.getLang('country_RS'),
|
|
226
|
-
|
|
227
|
-
{ brightness: 100, colorTemp: 0},
|
|
228
|
-
],
|
|
144
|
+
...defFlagConfig,
|
|
229
145
|
colors: [{h: 0, s: 0, v: 100}, {h: 210, s: 89, v: 100}, {h: 360, s: 100, v: 100}]
|
|
230
146
|
},
|
|
231
147
|
{
|
|
232
148
|
id: 238,
|
|
233
|
-
version: 0,
|
|
234
|
-
mode: SceneNodeTransitionMode.Jump,
|
|
235
|
-
speed: 75,
|
|
236
149
|
name: I18n.getLang('country_IT'),
|
|
237
|
-
|
|
238
|
-
{ brightness: 100, colorTemp: 0},
|
|
239
|
-
],
|
|
150
|
+
...defFlagConfig,
|
|
240
151
|
colors: [{h: 360, s: 100, v: 100}, {h: 212, s: 4, v: 100}, {h: 120, s: 100, v: 100}]
|
|
241
152
|
},
|
|
242
153
|
{
|
|
243
154
|
id: 237,
|
|
244
|
-
version: 0,
|
|
245
|
-
mode: SceneNodeTransitionMode.Jump,
|
|
246
|
-
speed: 75,
|
|
247
155
|
name: I18n.getLang('country_CZ'),
|
|
248
|
-
|
|
249
|
-
{ brightness: 100, colorTemp: 0},
|
|
250
|
-
],
|
|
156
|
+
...defFlagConfig,
|
|
251
157
|
colors: [{h: 360, s: 100, v: 100}, {h: 0, s: 0, v: 100}, {h: 211, s: 86, v: 100}]
|
|
252
158
|
},
|
|
253
159
|
{
|
|
254
160
|
id: 236,
|
|
255
|
-
version: 0,
|
|
256
|
-
mode: SceneNodeTransitionMode.Jump,
|
|
257
|
-
speed: 75,
|
|
258
161
|
name: I18n.getLang('country_SI'),
|
|
259
|
-
|
|
260
|
-
{ brightness: 100, colorTemp: 0},
|
|
261
|
-
],
|
|
162
|
+
...defFlagConfig,
|
|
262
163
|
colors: [{h: 360, s: 100, v: 100}, {h: 217, s: 100, v: 100}, {h: 0, s: 0, v: 100}]
|
|
263
164
|
},
|
|
264
165
|
{
|
|
265
166
|
id: 235,
|
|
266
|
-
version: 0,
|
|
267
|
-
mode: SceneNodeTransitionMode.Jump,
|
|
268
|
-
speed: 75,
|
|
269
167
|
name: I18n.getLang('country_HR'),
|
|
270
|
-
|
|
271
|
-
{ brightness: 100, colorTemp: 0},
|
|
272
|
-
],
|
|
168
|
+
...defFlagConfig,
|
|
273
169
|
colors: [{h: 220, s: 89, v: 100},{h: 0, s: 0, v: 100}, {h: 360, s: 100, v: 100}]
|
|
274
170
|
},
|
|
275
171
|
{
|
|
276
172
|
id: 234,
|
|
277
|
-
version: 0,
|
|
278
|
-
mode: SceneNodeTransitionMode.Jump,
|
|
279
|
-
speed: 75,
|
|
280
173
|
name: I18n.getLang('country_SE'),
|
|
281
|
-
|
|
282
|
-
{ brightness: 100, colorTemp: 0},
|
|
283
|
-
],
|
|
174
|
+
...defFlagConfig,
|
|
284
175
|
colors: [{h: 201, s: 100, v: 100}, {h: 48, s: 99, v: 100}, {h: 201, s: 100, v: 100}]
|
|
285
176
|
},
|
|
286
177
|
{
|
|
287
178
|
id: 233,
|
|
288
|
-
version: 0,
|
|
289
|
-
mode: SceneNodeTransitionMode.Jump,
|
|
290
|
-
speed: 75,
|
|
291
179
|
name: I18n.getLang('country_NO'),
|
|
292
|
-
|
|
293
|
-
{ brightness: 100, colorTemp: 0},
|
|
294
|
-
],
|
|
180
|
+
...defFlagConfig,
|
|
295
181
|
colors: [{h: 218, s: 100, v: 100},{h: 0, s: 0, v: 100}, {h: 360, s: 100, v: 100}]
|
|
296
182
|
},
|
|
297
183
|
{
|
|
298
184
|
id: 232,
|
|
299
|
-
version: 0,
|
|
300
|
-
mode: SceneNodeTransitionMode.Jump,
|
|
301
|
-
speed: 75,
|
|
302
185
|
name: I18n.getLang('country_PL'),
|
|
303
|
-
|
|
304
|
-
{ brightness: 100, colorTemp: 0},
|
|
305
|
-
],
|
|
186
|
+
...defFlagConfig,
|
|
306
187
|
colors: [{h: 360, s: 100, v: 100}, {h: 0, s: 0, v: 100}]
|
|
307
188
|
},
|
|
308
189
|
{
|
|
309
190
|
id: 230,
|
|
310
|
-
version: 0,
|
|
311
|
-
mode: SceneNodeTransitionMode.Jump,
|
|
312
|
-
speed: 75,
|
|
313
191
|
name: I18n.getLang('country_UA'),
|
|
314
|
-
|
|
315
|
-
{ brightness: 100, colorTemp: 0},
|
|
316
|
-
],
|
|
192
|
+
...defFlagConfig,
|
|
317
193
|
colors: [{h: 50, s: 100, v: 100}, {h: 211, s: 100, v: 100}]
|
|
318
194
|
},
|
|
195
|
+
{
|
|
196
|
+
id: 229,
|
|
197
|
+
name: I18n.getLang('country_gb'),
|
|
198
|
+
...defFlagConfig,
|
|
199
|
+
colors: [{ h: 0, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 205, s: 100, v: 100 }],
|
|
200
|
+
},
|
|
201
|
+
{
|
|
202
|
+
id: 228,
|
|
203
|
+
name: I18n.getLang('country_IE'),
|
|
204
|
+
...defFlagConfig,
|
|
205
|
+
colors: [{ h: 45, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 147, s: 100, v: 64 }],
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
id: 227,
|
|
209
|
+
name: I18n.getLang('country_IL'),
|
|
210
|
+
...defFlagConfig,
|
|
211
|
+
colors: [{ h: 210, s: 65, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 210, s: 65, v: 100 }],
|
|
212
|
+
},
|
|
213
|
+
{
|
|
214
|
+
id: 226,
|
|
215
|
+
name: I18n.getLang('country_US'),
|
|
216
|
+
...defFlagConfig,
|
|
217
|
+
colors: [{ h: 210, s: 78, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 0, s: 100, v: 100 }],
|
|
218
|
+
},
|
|
219
|
+
{
|
|
220
|
+
id: 225,
|
|
221
|
+
name: I18n.getLang('country_CA'),
|
|
222
|
+
...defFlagConfig,
|
|
223
|
+
colors: [{ h: 0, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
224
|
+
},
|
|
225
|
+
{
|
|
226
|
+
id: 224,
|
|
227
|
+
name: I18n.getLang('country_MX'),
|
|
228
|
+
...defFlagConfig,
|
|
229
|
+
colors: [{ h: 0, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 103, s: 73, v: 64 },],
|
|
230
|
+
},
|
|
231
|
+
{
|
|
232
|
+
id: 223,
|
|
233
|
+
name: I18n.getLang('country_SA'),
|
|
234
|
+
...defFlagConfig,
|
|
235
|
+
colors: [{ h: 0, s: 0, v: 100 }, { h: 103, s: 73, v: 64 },],
|
|
236
|
+
},
|
|
237
|
+
{
|
|
238
|
+
id: 222,
|
|
239
|
+
name: I18n.getLang('country_AE'),
|
|
240
|
+
...defFlagConfig,
|
|
241
|
+
colors: [{ h: 0, s: 0, v: 0 }, { h: 0, s: 0, v: 100 }, { h: 103, s: 73, v: 64 }, { h: 0, s: 100, v: 100 },],
|
|
242
|
+
},
|
|
243
|
+
{
|
|
244
|
+
id: 221,
|
|
245
|
+
name: I18n.getLang('country_AU'),
|
|
246
|
+
...defFlagConfig,
|
|
247
|
+
colors: [{ h: 0, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 199, s: 84, v: 100 },],
|
|
248
|
+
},
|
|
249
|
+
{
|
|
250
|
+
id: 220,
|
|
251
|
+
name: I18n.getLang('country_JP'),
|
|
252
|
+
...defFlagConfig,
|
|
253
|
+
colors: [{ h: 360, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }],
|
|
254
|
+
},
|
|
255
|
+
{
|
|
256
|
+
id: 219,
|
|
257
|
+
name: I18n.getLang('country_BR'),
|
|
258
|
+
...defFlagConfig,
|
|
259
|
+
colors: [{ h: 60, s: 100, v: 100 }, { h: 147, s: 100, v: 64 }, { h: 0, s: 0, v: 100 },],
|
|
260
|
+
},
|
|
261
|
+
{
|
|
262
|
+
id: 218,
|
|
263
|
+
name: I18n.getLang('country_AR'),
|
|
264
|
+
...defFlagConfig,
|
|
265
|
+
colors: [{ h: 210, s: 65, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 210, s: 65, v: 100 },],
|
|
266
|
+
},
|
|
267
|
+
{
|
|
268
|
+
id: 217,
|
|
269
|
+
name: I18n.getLang('country_AF'),
|
|
270
|
+
...defFlagConfig,
|
|
271
|
+
colors: [{ h: 147, s: 100, v: 64 }, { h: 0, s: 100, v: 100 }, { h: 0, s: 0, v: 0 },],
|
|
272
|
+
},
|
|
273
|
+
{
|
|
274
|
+
id: 216,
|
|
275
|
+
name: I18n.getLang('country_EG'),
|
|
276
|
+
...defFlagConfig,
|
|
277
|
+
colors: [{ h: 0, s: 0, v: 0 }, { h: 0, s: 0, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
278
|
+
},
|
|
279
|
+
{
|
|
280
|
+
id: 215,
|
|
281
|
+
name: I18n.getLang('country_ET'),
|
|
282
|
+
...defFlagConfig,
|
|
283
|
+
colors: [{ h: 0, s: 100, v: 100 }, { h: 60, s: 100, v: 100 }, { h: 147, s: 100, v: 64 },],
|
|
284
|
+
},
|
|
285
|
+
{
|
|
286
|
+
id: 214,
|
|
287
|
+
name: I18n.getLang('country_BB'),
|
|
288
|
+
...defFlagConfig,
|
|
289
|
+
colors: [{ h: 220, s: 100, v: 100 }, { h: 60, s: 100, v: 100 }, { h: 220, s: 100, v: 100 },],
|
|
290
|
+
},
|
|
291
|
+
{
|
|
292
|
+
id: 213,
|
|
293
|
+
name: I18n.getLang('country_BO'),
|
|
294
|
+
...defFlagConfig,
|
|
295
|
+
colors: [{ h: 147, s: 100, v: 64 }, { h: 60, s: 100, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
296
|
+
},
|
|
297
|
+
{
|
|
298
|
+
id: 212,
|
|
299
|
+
name: I18n.getLang('country_CN'),
|
|
300
|
+
...defFlagConfig,
|
|
301
|
+
colors: [{ h: 60, s: 100, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
302
|
+
},
|
|
303
|
+
{
|
|
304
|
+
id: 211,
|
|
305
|
+
name: I18n.getLang('country_EC'),
|
|
306
|
+
...defFlagConfig,
|
|
307
|
+
colors: [{ h: 0, s: 100, v: 100 }, { h: 210, s: 78, v: 100 }, { h: 60, s: 100, v: 100 },],
|
|
308
|
+
},
|
|
309
|
+
{
|
|
310
|
+
id: 210,
|
|
311
|
+
name: I18n.getLang('country_SV'),
|
|
312
|
+
...defFlagConfig,
|
|
313
|
+
colors: [{ h: 205, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 205, s: 100, v: 100 },],
|
|
314
|
+
},
|
|
315
|
+
{
|
|
316
|
+
id: 209,
|
|
317
|
+
name: I18n.getLang('country_CI'),
|
|
318
|
+
...defFlagConfig,
|
|
319
|
+
colors: [{ h: 147, s: 100, v: 64 }, { h: 0, s: 0, v: 100 }, { h: 45, s: 100, v: 100 },],
|
|
320
|
+
},
|
|
321
|
+
{
|
|
322
|
+
id: 208,
|
|
323
|
+
name: I18n.getLang('country_GH'),
|
|
324
|
+
...defFlagConfig,
|
|
325
|
+
colors: [{ h: 128, s: 77, v: 64 }, { h: 60, s: 100, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
326
|
+
},
|
|
327
|
+
{
|
|
328
|
+
id: 207,
|
|
329
|
+
name: I18n.getLang('country_GL'),
|
|
330
|
+
...defFlagConfig,
|
|
331
|
+
colors: [{ h: 0, s: 100, v: 100 }, { h: 0, s: 0, v: 100 },],
|
|
332
|
+
},
|
|
333
|
+
{
|
|
334
|
+
id: 206,
|
|
335
|
+
name: I18n.getLang('country_GT'),
|
|
336
|
+
...defFlagConfig,
|
|
337
|
+
colors: [{ h: 0, s: 0, v: 100 }, { h: 196, s: 100, v: 100 },],
|
|
338
|
+
},
|
|
339
|
+
{
|
|
340
|
+
id: 205,
|
|
341
|
+
name: I18n.getLang('country_HK'),
|
|
342
|
+
...defFlagConfig,
|
|
343
|
+
colors: [{ h: 0, s: 0, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
344
|
+
},
|
|
345
|
+
{
|
|
346
|
+
id: 204,
|
|
347
|
+
name: I18n.getLang('country_IN'),
|
|
348
|
+
...defFlagConfig,
|
|
349
|
+
colors: [{ h: 147, s: 100, v: 64 }, { h: 0, s: 0, v: 100 }, { h: 45, s: 100, v: 100 },],
|
|
350
|
+
},
|
|
351
|
+
{
|
|
352
|
+
id: 203,
|
|
353
|
+
name: I18n.getLang('country_ID'),
|
|
354
|
+
...defFlagConfig,
|
|
355
|
+
colors: [{ h: 0, s: 0, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
356
|
+
},
|
|
357
|
+
{
|
|
358
|
+
id: 202,
|
|
359
|
+
name: I18n.getLang('country_ir'),
|
|
360
|
+
...defFlagConfig,
|
|
361
|
+
colors: [{ h: 0, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 147, s: 100, v: 64 },],
|
|
362
|
+
},
|
|
363
|
+
{
|
|
364
|
+
id: 201,
|
|
365
|
+
name: I18n.getLang('country_IS'),
|
|
366
|
+
...defFlagConfig,
|
|
367
|
+
colors: [{ h: 0, s: 0, v: 100 }, { h: 0, s: 100, v: 100 }, { h: 205, s: 100, v: 100 },],
|
|
368
|
+
},
|
|
369
|
+
{
|
|
370
|
+
id: 200,
|
|
371
|
+
name: I18n.getLang('country_JM'),
|
|
372
|
+
...defFlagConfig,
|
|
373
|
+
colors: [{ h: 60, s: 100, v: 100 }, { h: 0, s: 0, v: 0 }, { h: 147, s: 100, v: 64 },],
|
|
374
|
+
},
|
|
375
|
+
{
|
|
376
|
+
id: 199,
|
|
377
|
+
name: I18n.getLang('country_CY'),
|
|
378
|
+
...defFlagConfig,
|
|
379
|
+
colors: [{ h: 147, s: 100, v: 64 }, { h: 0, s: 0, v: 100 }, { h: 45, s: 100, v: 100 },],
|
|
380
|
+
},
|
|
381
|
+
{
|
|
382
|
+
id: 198,
|
|
383
|
+
name: I18n.getLang('country_QA'),
|
|
384
|
+
...defFlagConfig,
|
|
385
|
+
colors: [{ h: 0, s: 100, v: 100 }, { h: 0, s: 0, v: 100 },],
|
|
386
|
+
},
|
|
387
|
+
{
|
|
388
|
+
id: 197,
|
|
389
|
+
name: I18n.getLang('country_KE'),
|
|
390
|
+
...defFlagConfig,
|
|
391
|
+
colors: [{ h: 147, s: 100, v: 64 }, { h: 0, s: 100, v: 100 }, { h: 0, s: 0, v: 0 },],
|
|
392
|
+
},
|
|
393
|
+
{
|
|
394
|
+
id: 196,
|
|
395
|
+
name: I18n.getLang('country_CO'),
|
|
396
|
+
...defFlagConfig,
|
|
397
|
+
colors: [{ h: 0, s: 100, v: 100 }, { h: 210, s: 78, v: 100 }, { h: 60, s: 100, v: 100 },],
|
|
398
|
+
},
|
|
399
|
+
{
|
|
400
|
+
id: 195,
|
|
401
|
+
name: I18n.getLang('country_CG'),
|
|
402
|
+
...defFlagConfig,
|
|
403
|
+
colors: [{ h: 0, s: 100, v: 100 }, { h: 60, s: 100, v: 100 }, { h: 147, s: 100, v: 64 },],
|
|
404
|
+
},
|
|
405
|
+
{
|
|
406
|
+
id: 194,
|
|
407
|
+
name: I18n.getLang('country_cu'),
|
|
408
|
+
...defFlagConfig,
|
|
409
|
+
colors: [{ h: 210, s: 78, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
410
|
+
},
|
|
411
|
+
{
|
|
412
|
+
id: 193,
|
|
413
|
+
name: I18n.getLang('country_LV'),
|
|
414
|
+
...defFlagConfig,
|
|
415
|
+
colors: [{ h: 0, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
416
|
+
},
|
|
417
|
+
{
|
|
418
|
+
id: 192,
|
|
419
|
+
name: I18n.getLang('country_LY'),
|
|
420
|
+
...defFlagConfig,
|
|
421
|
+
colors: [{ h: 147, s: 100, v: 64 }, { h: 0, s: 0, v: 0 }, { h: 0, s: 100, v: 100 },],
|
|
422
|
+
},
|
|
423
|
+
{
|
|
424
|
+
id: 191,
|
|
425
|
+
name: I18n.getLang('country_LT'),
|
|
426
|
+
...defFlagConfig,
|
|
427
|
+
colors: [{ h: 0, s: 100, v: 100 }, { h: 147, s: 100, v: 64 }, { h: 60, s: 100, v: 100 },],
|
|
428
|
+
},
|
|
429
|
+
{
|
|
430
|
+
id: 190,
|
|
431
|
+
name: I18n.getLang('country_LU'),
|
|
432
|
+
...defFlagConfig,
|
|
433
|
+
colors: [{ h: 196, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
434
|
+
},
|
|
435
|
+
{
|
|
436
|
+
id: 189,
|
|
437
|
+
name: I18n.getLang('country_MG'),
|
|
438
|
+
...defFlagConfig,
|
|
439
|
+
colors: [{ h: 147, s: 100, v: 64 }, { h: 0, s: 100, v: 100 }, { h: 0, s: 0, v: 100 },],
|
|
440
|
+
},
|
|
441
|
+
{
|
|
442
|
+
id: 188,
|
|
443
|
+
name: I18n.getLang('country_MT'),
|
|
444
|
+
...defFlagConfig,
|
|
445
|
+
colors: [{ h: 0, s: 100, v: 100 }, { h: 0, s: 0, v: 100 },],
|
|
446
|
+
},
|
|
447
|
+
{
|
|
448
|
+
id: 187,
|
|
449
|
+
name: I18n.getLang('country_MA'),
|
|
450
|
+
...defFlagConfig,
|
|
451
|
+
colors: [{ h: 147, s: 100, v: 64 }, { h: 0, s: 100, v: 100 },],
|
|
452
|
+
},
|
|
453
|
+
{
|
|
454
|
+
id: 186,
|
|
455
|
+
name: I18n.getLang('country_VN'),
|
|
456
|
+
...defFlagConfig,
|
|
457
|
+
colors: [{ h: 60, s: 100, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
458
|
+
},
|
|
459
|
+
{
|
|
460
|
+
id: 185,
|
|
461
|
+
name: I18n.getLang('country_NA'),
|
|
462
|
+
...defFlagConfig,
|
|
463
|
+
colors: [{ h: 147, s: 100, v: 64 }, { h: 0, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 60, s: 100, v: 100 }, { h: 220, s: 100, v: 100 },],
|
|
464
|
+
},
|
|
465
|
+
{
|
|
466
|
+
id: 184,
|
|
467
|
+
name: I18n.getLang('country_NZ'),
|
|
468
|
+
...defFlagConfig,
|
|
469
|
+
colors: [{ h: 0, s: 0, v: 100 }, { h: 0, s: 100, v: 100 }, { h: 220, s: 100, v: 100 },],
|
|
470
|
+
},
|
|
471
|
+
{
|
|
472
|
+
id: 183,
|
|
473
|
+
name: I18n.getLang('country_NG'),
|
|
474
|
+
...defFlagConfig,
|
|
475
|
+
colors: [{ h: 147, s: 100, v: 64 }, { h: 0, s: 0, v: 100 }, { h: 147, s: 100, v: 64 },],
|
|
476
|
+
},
|
|
477
|
+
{
|
|
478
|
+
id: 182,
|
|
479
|
+
name: I18n.getLang('country_PK'),
|
|
480
|
+
...defFlagConfig,
|
|
481
|
+
colors: [{ h: 147, s: 100, v: 64 }, { h: 0, s: 0, v: 100 },],
|
|
482
|
+
},
|
|
483
|
+
{
|
|
484
|
+
id: 181,
|
|
485
|
+
name: I18n.getLang('country_PS'),
|
|
486
|
+
...defFlagConfig,
|
|
487
|
+
colors: [{ h: 147, s: 100, v: 64 }, { h: 0, s: 0, v: 100 }, { h: 0, s: 0, v: 0 }, { h: 0, s: 100, v: 100 },],
|
|
488
|
+
},
|
|
489
|
+
{
|
|
490
|
+
id: 180,
|
|
491
|
+
name: I18n.getLang('country_PY'),
|
|
492
|
+
...defFlagConfig,
|
|
493
|
+
colors: [{ h: 205, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
494
|
+
},
|
|
495
|
+
{
|
|
496
|
+
id: 179,
|
|
497
|
+
name: I18n.getLang('country_pe'),
|
|
498
|
+
...defFlagConfig,
|
|
499
|
+
colors: [{ h: 0, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
500
|
+
},
|
|
501
|
+
{
|
|
502
|
+
id: 178,
|
|
503
|
+
name: I18n.getLang('country_PH'),
|
|
504
|
+
...defFlagConfig,
|
|
505
|
+
colors: [{ h: 0, s: 100, v: 100 }, { h: 205, s: 100, v: 100 }, { h: 0, s: 0, v: 100 },],
|
|
506
|
+
},
|
|
507
|
+
{
|
|
508
|
+
id: 177,
|
|
509
|
+
name: I18n.getLang('country_PR'),
|
|
510
|
+
...defFlagConfig,
|
|
511
|
+
colors: [{ h: 0, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 205, s: 100, v: 100 },],
|
|
512
|
+
},
|
|
513
|
+
{
|
|
514
|
+
id: 176,
|
|
515
|
+
name: I18n.getLang('country_RU'),
|
|
516
|
+
...defFlagConfig,
|
|
517
|
+
colors: [{ h: 0, s: 100, v: 100 }, { h: 205, s: 100, v: 100 }, { h: 0, s: 0, v: 100 },],
|
|
518
|
+
},
|
|
519
|
+
{
|
|
520
|
+
id: 175,
|
|
521
|
+
name: I18n.getLang('country_ZA'),
|
|
522
|
+
...defFlagConfig,
|
|
523
|
+
colors: [{ h: 0, s: 0, v: 0 },{ h: 60, s: 100, v: 100 },{ h: 205, s: 100, v: 100 }, { h: 147, s: 100, v: 64 }, { h: 0, s: 0, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
524
|
+
},
|
|
525
|
+
{
|
|
526
|
+
id: 174,
|
|
527
|
+
name: I18n.getLang('country_sy'),
|
|
528
|
+
...defFlagConfig,
|
|
529
|
+
colors: [{ h: 0, s: 0, v: 0 }, { h: 147, s: 100, v: 64 }, { h: 0, s: 0, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
530
|
+
},
|
|
531
|
+
{
|
|
532
|
+
id: 173,
|
|
533
|
+
name: I18n.getLang('country_TH'),
|
|
534
|
+
...defFlagConfig,
|
|
535
|
+
colors: [{ h: 205, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
536
|
+
},
|
|
537
|
+
{
|
|
538
|
+
id: 172,
|
|
539
|
+
name: I18n.getLang('country_TN'),
|
|
540
|
+
...defFlagConfig,
|
|
541
|
+
colors: [{ h: 0, s: 0, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
542
|
+
},
|
|
543
|
+
{
|
|
544
|
+
id: 171,
|
|
545
|
+
name: I18n.getLang('country_UG'),
|
|
546
|
+
...defFlagConfig,
|
|
547
|
+
colors: [{ h: 0, s: 100, v: 100 }, { h: 60, s: 100, v: 100 }, { h: 0, s: 0, v: 0 },],
|
|
548
|
+
},
|
|
549
|
+
{
|
|
550
|
+
id: 170,
|
|
551
|
+
name: I18n.getLang('country_UY'),
|
|
552
|
+
...defFlagConfig,
|
|
553
|
+
colors: [{ h: 20, s: 100, v: 100 }, { h: 60, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 205, s: 100, v: 100 },],
|
|
554
|
+
},
|
|
555
|
+
{
|
|
556
|
+
id: 169,
|
|
557
|
+
name: I18n.getLang('country_VE'),
|
|
558
|
+
...defFlagConfig,
|
|
559
|
+
colors: [{ h: 0, s: 100, v: 100 }, { h: 205, s: 100, v: 100 }, { h: 60, s: 100, v: 100 },],
|
|
560
|
+
}
|
|
319
561
|
]
|
|
320
562
|
|
|
321
563
|
export const def2Pids = ['k588eygmfkdzmpzm']
|
|
@@ -323,294 +565,526 @@ export const def2Pids = ['k588eygmfkdzmpzm']
|
|
|
323
565
|
export const def2FlagList: FlagUiInfo[] = [
|
|
324
566
|
{
|
|
325
567
|
id: 231,
|
|
326
|
-
version: 0,
|
|
327
|
-
mode: SceneNodeTransitionMode.Jump,
|
|
328
|
-
speed: 75,
|
|
329
568
|
name: I18n.getLang('flag_leverkusen'),
|
|
330
|
-
|
|
331
|
-
{ brightness: 100, colorTemp: 0},
|
|
332
|
-
],
|
|
569
|
+
...defFlagConfig,
|
|
333
570
|
colors: [{h: 360, s: 100, v: 100}, {h: 0, s: 0, v: 100}, {h: 0, s: 0, v: 100}, {h: 60, s: 100, v: 100}]
|
|
334
571
|
},
|
|
335
572
|
{
|
|
336
573
|
id: 255,
|
|
337
|
-
version: 0,
|
|
338
|
-
mode: SceneNodeTransitionMode.Jump,
|
|
339
|
-
speed: 75,
|
|
340
574
|
name: I18n.getLang('country_DE'),
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
],
|
|
344
|
-
colors: [
|
|
345
|
-
{h: 48, s: 100, v: 100},
|
|
346
|
-
{h: 360, s: 100, v: 100},
|
|
347
|
-
{h: 0, s: 85, v: 46},
|
|
348
|
-
{h: 0, s: 0, v:0}],
|
|
575
|
+
...defFlagConfig,
|
|
576
|
+
colors: [{h: 48, s: 100, v: 100},{h: 360, s: 100, v: 100},{h: 0, s: 85, v: 46},{h: 0, s: 0, v:0}],
|
|
349
577
|
},
|
|
350
578
|
{
|
|
351
579
|
id: 254,
|
|
352
|
-
version: 0,
|
|
353
|
-
mode: SceneNodeTransitionMode.Jump,
|
|
354
|
-
speed: 75,
|
|
355
580
|
name: I18n.getLang('country_BE'),
|
|
356
|
-
|
|
357
|
-
{ brightness: 100, colorTemp: 0},
|
|
358
|
-
],
|
|
581
|
+
...defFlagConfig,
|
|
359
582
|
colors: [{h: 360, s: 100, v: 100}, {h: 48, s: 100, v: 100}, {h: 48, s: 99, v: 58}, {h: 0, s: 0, v: 0}]
|
|
360
583
|
},
|
|
361
584
|
{
|
|
362
585
|
id: 253,
|
|
363
|
-
version: 0,
|
|
364
|
-
mode: SceneNodeTransitionMode.Jump,
|
|
365
|
-
speed: 75,
|
|
366
586
|
name: I18n.getLang('country_FR'),
|
|
367
|
-
|
|
368
|
-
{ brightness: 100, colorTemp: 0},
|
|
369
|
-
],
|
|
587
|
+
...defFlagConfig,
|
|
370
588
|
colors: [{h: 360, s: 100, v: 100}, {h: 0, s: 0, v: 100}, {h: 0, s: 0, v: 100}, {h: 212, s: 100, v: 100}]
|
|
371
589
|
},
|
|
372
590
|
{
|
|
373
591
|
id: 252,
|
|
374
|
-
version: 0,
|
|
375
|
-
mode: SceneNodeTransitionMode.Jump,
|
|
376
|
-
speed: 75,
|
|
377
592
|
name: I18n.getLang('country_PT'),
|
|
378
|
-
|
|
379
|
-
{ brightness: 100, colorTemp: 0},
|
|
380
|
-
],
|
|
593
|
+
...defFlagConfig,
|
|
381
594
|
colors: [{h: 360, s: 100, v: 100}, {h: 360, s: 100, v: 100}, {h: 360, s: 100, v: 100}, {h: 120, s: 100, v: 100}]
|
|
382
595
|
},
|
|
383
596
|
{
|
|
384
597
|
id: 251,
|
|
385
|
-
version: 0,
|
|
386
|
-
mode: SceneNodeTransitionMode.Jump,
|
|
387
|
-
speed: 75,
|
|
388
598
|
name: I18n.getLang('country_scotland'),
|
|
389
|
-
|
|
390
|
-
{ brightness: 100, colorTemp: 0},
|
|
391
|
-
],
|
|
599
|
+
...defFlagConfig,
|
|
392
600
|
colors: [{h: 209, s: 86, v: 100}, {h: 0, s: 0, v: 100}, {h: 0, s: 0, v: 100}, {h: 209, s: 86, v: 100}]
|
|
393
601
|
},
|
|
394
602
|
{
|
|
395
603
|
id: 250,
|
|
396
|
-
version: 0,
|
|
397
|
-
mode: SceneNodeTransitionMode.Jump,
|
|
398
|
-
speed: 75,
|
|
399
604
|
name: I18n.getLang('country_ES'),
|
|
400
|
-
|
|
401
|
-
{ brightness: 100, colorTemp: 0},
|
|
402
|
-
],
|
|
605
|
+
...defFlagConfig,
|
|
403
606
|
colors: [{h: 360, s: 100, v: 100}, {h: 47, s: 100, v: 100}, {h: 47, s: 100, v: 100}, {h: 360, s: 100, v: 100}]
|
|
404
607
|
},
|
|
405
608
|
{
|
|
406
609
|
id: 249,
|
|
407
|
-
version: 0,
|
|
408
|
-
mode: SceneNodeTransitionMode.Jump,
|
|
409
|
-
speed: 75,
|
|
410
610
|
name: I18n.getLang('country_TR'),
|
|
411
|
-
|
|
412
|
-
{ brightness: 100, colorTemp: 0},
|
|
413
|
-
],
|
|
611
|
+
...defFlagConfig,
|
|
414
612
|
colors: [{h: 360, s: 100, v: 100}, {h: 360, s: 100, v: 100}, {h: 0, s: 0, v: 100}, {h: 360, s: 100, v: 100}]
|
|
415
613
|
},
|
|
416
614
|
{
|
|
417
615
|
id: 248,
|
|
418
|
-
version: 0,
|
|
419
|
-
mode: SceneNodeTransitionMode.Jump,
|
|
420
|
-
speed: 75,
|
|
421
616
|
name: I18n.getLang('country_AT'),
|
|
422
|
-
|
|
423
|
-
{ brightness: 100, colorTemp: 0},
|
|
424
|
-
],
|
|
617
|
+
...defFlagConfig,
|
|
425
618
|
colors: [{h: 360, s: 100, v: 100}, {h: 0, s: 0, v: 100}, {h: 0, s: 0, v: 100}, {h: 360, s: 100, v: 100}]
|
|
426
619
|
},
|
|
427
620
|
{
|
|
428
621
|
id: 247,
|
|
429
|
-
version: 0,
|
|
430
|
-
mode: SceneNodeTransitionMode.Jump,
|
|
431
|
-
speed: 75,
|
|
432
622
|
name: I18n.getLang('country_england'),
|
|
433
|
-
|
|
434
|
-
{ brightness: 100, colorTemp: 0},
|
|
435
|
-
],
|
|
623
|
+
...defFlagConfig,
|
|
436
624
|
colors: [{h: 0, s: 0, v: 100}, {h: 360, s: 100, v: 100}, {h: 0, s: 0, v: 100}, {h: 0, s: 0, v: 100}]
|
|
437
625
|
},
|
|
438
626
|
{
|
|
439
627
|
id: 246,
|
|
440
|
-
version: 0,
|
|
441
|
-
mode: SceneNodeTransitionMode.Jump,
|
|
442
|
-
speed: 75,
|
|
443
628
|
name: I18n.getLang('country_HU'),
|
|
444
|
-
|
|
445
|
-
{ brightness: 100, colorTemp: 0},
|
|
446
|
-
],
|
|
629
|
+
...defFlagConfig,
|
|
447
630
|
colors: [{h: 120, s: 100, v: 100}, {h: 0, s: 0, v: 100}, {h: 0, s: 0, v: 100},{h: 360, s: 100, v: 100}]
|
|
448
631
|
},
|
|
449
632
|
{
|
|
450
633
|
id: 245,
|
|
451
|
-
version: 0,
|
|
452
|
-
mode: SceneNodeTransitionMode.Jump,
|
|
453
|
-
speed: 75,
|
|
454
634
|
name: I18n.getLang('country_SK'),
|
|
455
|
-
|
|
456
|
-
{ brightness: 100, colorTemp: 0},
|
|
457
|
-
],
|
|
635
|
+
...defFlagConfig,
|
|
458
636
|
colors: [{h: 360, s: 100, v: 100}, {h: 213, s: 93, v: 100}, {h: 0, s: 0, v: 100}, {h: 0, s: 0, v: 100}]
|
|
459
637
|
},
|
|
460
638
|
{
|
|
461
639
|
id: 244,
|
|
462
|
-
version: 0,
|
|
463
|
-
mode: SceneNodeTransitionMode.Jump,
|
|
464
|
-
speed: 75,
|
|
465
640
|
name: I18n.getLang('country_AL'),
|
|
466
|
-
|
|
467
|
-
{ brightness: 100, colorTemp: 0},
|
|
468
|
-
],
|
|
641
|
+
...defFlagConfig,
|
|
469
642
|
colors: [{h: 360, s: 100, v: 100}, {h: 0, s: 0, v:0}, {h: 0, s: 0, v:0}, {h: 360, s: 100, v: 100}]
|
|
470
643
|
},
|
|
471
644
|
{
|
|
472
645
|
id: 243,
|
|
473
|
-
version: 0,
|
|
474
|
-
mode: SceneNodeTransitionMode.Jump,
|
|
475
|
-
speed: 75,
|
|
476
646
|
name: I18n.getLang('country_DK'),
|
|
477
|
-
|
|
478
|
-
{ brightness: 100, colorTemp: 0},
|
|
479
|
-
],
|
|
647
|
+
...defFlagConfig,
|
|
480
648
|
colors: [{h: 360, s: 100, v: 100}, {h: 0, s: 0, v:100}, {h: 0, s: 0, v:100}, {h: 360, s: 100, v: 100}]
|
|
481
649
|
},
|
|
482
650
|
{
|
|
483
651
|
id: 242,
|
|
484
|
-
version: 0,
|
|
485
|
-
mode: SceneNodeTransitionMode.Jump,
|
|
486
|
-
speed: 75,
|
|
487
652
|
name: I18n.getLang('country_NL'),
|
|
488
|
-
|
|
489
|
-
{ brightness: 100, colorTemp: 0},
|
|
490
|
-
],
|
|
653
|
+
...defFlagConfig,
|
|
491
654
|
colors: [{h: 217, s: 100, v: 100}, {h: 0, s: 0, v:100}, {h: 0, s: 0, v:100}, {h: 360, s: 100, v: 100}]
|
|
492
655
|
},
|
|
493
656
|
{
|
|
494
657
|
id: 241,
|
|
495
|
-
version: 0,
|
|
496
|
-
mode: SceneNodeTransitionMode.Jump,
|
|
497
|
-
speed: 75,
|
|
498
658
|
name: I18n.getLang('country_RO'),
|
|
499
|
-
|
|
500
|
-
{ brightness: 100, colorTemp: 0},
|
|
501
|
-
],
|
|
659
|
+
...defFlagConfig,
|
|
502
660
|
colors: [{h: 360, s: 100, v: 100}, {h: 48, s: 91, v: 100}, {h: 219, s: 100, v: 100}]
|
|
503
661
|
},
|
|
504
662
|
{
|
|
505
663
|
id: 240,
|
|
506
|
-
version: 0,
|
|
507
|
-
mode: SceneNodeTransitionMode.Jump,
|
|
508
|
-
speed: 75,
|
|
509
664
|
name: I18n.getLang('country_CH'),
|
|
510
|
-
|
|
511
|
-
{ brightness: 100, colorTemp: 0},
|
|
512
|
-
],
|
|
665
|
+
...defFlagConfig,
|
|
513
666
|
colors: [{h: 360, s: 100, v: 100}, {h: 0, s: 0, v: 100}, {h: 360, s: 100, v: 100}]
|
|
514
667
|
},
|
|
515
668
|
{
|
|
516
669
|
id: 239,
|
|
517
|
-
version: 0,
|
|
518
|
-
mode: SceneNodeTransitionMode.Jump,
|
|
519
|
-
speed: 75,
|
|
520
670
|
name: I18n.getLang('country_RS'),
|
|
521
|
-
|
|
522
|
-
{ brightness: 100, colorTemp: 0},
|
|
523
|
-
],
|
|
671
|
+
...defFlagConfig,
|
|
524
672
|
colors: [{h: 360, s: 100, v: 100}, {h: 231, s: 100, v: 100}, {h: 0, s: 0, v: 100},{h: 0, s: 0, v: 100}]
|
|
525
673
|
},
|
|
526
674
|
{
|
|
527
675
|
id: 238,
|
|
528
|
-
version: 0,
|
|
529
|
-
mode: SceneNodeTransitionMode.Jump,
|
|
530
|
-
speed: 75,
|
|
531
676
|
name: I18n.getLang('country_IT'),
|
|
532
|
-
|
|
533
|
-
{ brightness: 100, colorTemp: 0},
|
|
534
|
-
],
|
|
677
|
+
...defFlagConfig,
|
|
535
678
|
colors: [{h: 360, s: 100, v: 100}, {h: 0, s: 0, v: 100},{h: 0, s: 0, v: 100}, {h: 120, s: 100, v: 100}]
|
|
536
679
|
},
|
|
537
680
|
{
|
|
538
681
|
id: 237,
|
|
539
|
-
version: 0,
|
|
540
|
-
mode: SceneNodeTransitionMode.Jump,
|
|
541
|
-
speed: 75,
|
|
542
682
|
name: I18n.getLang('country_CZ'),
|
|
543
|
-
|
|
544
|
-
{ brightness: 100, colorTemp: 0},
|
|
545
|
-
],
|
|
683
|
+
...defFlagConfig,
|
|
546
684
|
colors: [{h: 360, s: 100, v: 100}, {h: 0, s: 0, v: 100}, {h: 0, s: 0, v: 100}, {h: 211, s: 99, v: 100}]
|
|
547
685
|
},
|
|
548
686
|
{
|
|
549
687
|
id: 236,
|
|
550
|
-
version: 0,
|
|
551
|
-
mode: SceneNodeTransitionMode.Jump,
|
|
552
|
-
speed: 75,
|
|
553
688
|
name: I18n.getLang('country_SI'),
|
|
554
|
-
|
|
555
|
-
{ brightness: 100, colorTemp: 0},
|
|
556
|
-
],
|
|
689
|
+
...defFlagConfig,
|
|
557
690
|
colors: [{h: 360, s: 100, v: 100}, {h: 217, s: 100, v: 100}, {h: 0, s: 0, v: 100}, {h: 0, s: 0, v: 100}]
|
|
558
691
|
},
|
|
559
692
|
{
|
|
560
693
|
id: 235,
|
|
561
|
-
version: 0,
|
|
562
|
-
mode: SceneNodeTransitionMode.Jump,
|
|
563
|
-
speed: 75,
|
|
564
694
|
name: I18n.getLang('country_HR'),
|
|
565
|
-
|
|
566
|
-
{ brightness: 100, colorTemp: 0},
|
|
567
|
-
],
|
|
695
|
+
...defFlagConfig,
|
|
568
696
|
colors: [{h: 231, s: 100, v: 100}, {h: 0, s: 0, v: 100},{h: 0, s: 0, v: 100}, {h: 360, s: 100, v: 100}]
|
|
569
697
|
},
|
|
570
698
|
{
|
|
571
699
|
id: 234,
|
|
572
|
-
version: 0,
|
|
573
|
-
mode: SceneNodeTransitionMode.Jump,
|
|
574
|
-
speed: 75,
|
|
575
700
|
name: I18n.getLang('country_SE'),
|
|
576
|
-
|
|
577
|
-
{ brightness: 100, colorTemp: 0},
|
|
578
|
-
],
|
|
701
|
+
...defFlagConfig,
|
|
579
702
|
colors: [{h: 201, s: 100, v: 100}, {h: 48, s: 99, v: 100},{h: 48, s: 99, v: 100}, {h: 201, s: 100, v: 100}]
|
|
580
703
|
},
|
|
581
704
|
{
|
|
582
705
|
id: 233,
|
|
583
|
-
version: 0,
|
|
584
|
-
mode: SceneNodeTransitionMode.Jump,
|
|
585
|
-
speed: 75,
|
|
586
706
|
name: I18n.getLang('country_NO'),
|
|
587
|
-
|
|
588
|
-
{ brightness: 100, colorTemp: 0},
|
|
589
|
-
],
|
|
707
|
+
...defFlagConfig,
|
|
590
708
|
colors: [{h: 231, s: 100, v: 100}, {h: 360, s: 100, v: 100}, {h: 0, s: 0, v: 100}, {h: 360, s: 100, v: 100}]
|
|
591
709
|
},
|
|
592
710
|
{
|
|
593
711
|
id: 232,
|
|
594
|
-
version: 0,
|
|
595
|
-
mode: SceneNodeTransitionMode.Jump,
|
|
596
|
-
speed: 75,
|
|
597
712
|
name: I18n.getLang('country_PL'),
|
|
598
|
-
|
|
599
|
-
{ brightness: 100, colorTemp: 0},
|
|
600
|
-
],
|
|
713
|
+
...defFlagConfig,
|
|
601
714
|
colors: [{h: 360, s: 100, v: 100}, {h: 0, s: 0, v: 100}]
|
|
602
715
|
},
|
|
603
716
|
{
|
|
604
717
|
id: 230,
|
|
605
|
-
version: 0,
|
|
606
|
-
mode: SceneNodeTransitionMode.Jump,
|
|
607
|
-
speed: 75,
|
|
608
718
|
name: I18n.getLang('country_UA'),
|
|
609
|
-
|
|
610
|
-
{ brightness: 100, colorTemp: 0},
|
|
611
|
-
],
|
|
719
|
+
...defFlagConfig,
|
|
612
720
|
colors: [{h: 50, s: 100, v: 100}, {h: 211, s: 100, v: 100}]
|
|
613
721
|
},
|
|
722
|
+
{
|
|
723
|
+
id: 229,
|
|
724
|
+
name: I18n.getLang('country_gb'),
|
|
725
|
+
...defFlagConfig,
|
|
726
|
+
colors: [{ h: 0, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 205, s: 100, v: 100 }],
|
|
727
|
+
},
|
|
728
|
+
{
|
|
729
|
+
id: 228,
|
|
730
|
+
name: I18n.getLang('country_IE'),
|
|
731
|
+
...defFlagConfig,
|
|
732
|
+
colors: [{ h: 45, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 147, s: 100, v: 64 }],
|
|
733
|
+
},
|
|
734
|
+
{
|
|
735
|
+
id: 227,
|
|
736
|
+
name: I18n.getLang('country_IL'),
|
|
737
|
+
...defFlagConfig,
|
|
738
|
+
colors: [{ h: 210, s: 65, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 210, s: 65, v: 100 }],
|
|
739
|
+
},
|
|
740
|
+
{
|
|
741
|
+
id: 226,
|
|
742
|
+
name: I18n.getLang('country_US'),
|
|
743
|
+
...defFlagConfig,
|
|
744
|
+
colors: [{ h: 210, s: 78, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 0, s: 100, v: 100 }],
|
|
745
|
+
},
|
|
746
|
+
{
|
|
747
|
+
id: 225,
|
|
748
|
+
name: I18n.getLang('country_CA'),
|
|
749
|
+
...defFlagConfig,
|
|
750
|
+
colors: [{ h: 0, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
751
|
+
},
|
|
752
|
+
{
|
|
753
|
+
id: 224,
|
|
754
|
+
name: I18n.getLang('country_MX'),
|
|
755
|
+
...defFlagConfig,
|
|
756
|
+
colors: [{ h: 0, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 103, s: 73, v: 64 },],
|
|
757
|
+
},
|
|
758
|
+
{
|
|
759
|
+
id: 223,
|
|
760
|
+
name: I18n.getLang('country_SA'),
|
|
761
|
+
...defFlagConfig,
|
|
762
|
+
colors: [{ h: 0, s: 0, v: 100 }, { h: 103, s: 73, v: 64 },],
|
|
763
|
+
},
|
|
764
|
+
{
|
|
765
|
+
id: 222,
|
|
766
|
+
name: I18n.getLang('country_AE'),
|
|
767
|
+
...defFlagConfig,
|
|
768
|
+
colors: [{ h: 0, s: 0, v: 0 }, { h: 0, s: 0, v: 100 }, { h: 103, s: 73, v: 64 }, { h: 0, s: 100, v: 100 },],
|
|
769
|
+
},
|
|
770
|
+
{
|
|
771
|
+
id: 221,
|
|
772
|
+
name: I18n.getLang('country_AU'),
|
|
773
|
+
...defFlagConfig,
|
|
774
|
+
colors: [{ h: 0, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 199, s: 84, v: 100 },],
|
|
775
|
+
},
|
|
776
|
+
{
|
|
777
|
+
id: 220,
|
|
778
|
+
name: I18n.getLang('country_JP'),
|
|
779
|
+
...defFlagConfig,
|
|
780
|
+
colors: [{ h: 360, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }],
|
|
781
|
+
},
|
|
782
|
+
{
|
|
783
|
+
id: 219,
|
|
784
|
+
name: I18n.getLang('country_BR'),
|
|
785
|
+
...defFlagConfig,
|
|
786
|
+
colors: [{ h: 60, s: 100, v: 100 }, { h: 147, s: 100, v: 64 }, { h: 0, s: 0, v: 100 },],
|
|
787
|
+
},
|
|
788
|
+
{
|
|
789
|
+
id: 218,
|
|
790
|
+
name: I18n.getLang('country_AR'),
|
|
791
|
+
...defFlagConfig,
|
|
792
|
+
colors: [{ h: 210, s: 65, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 210, s: 65, v: 100 },],
|
|
793
|
+
},
|
|
794
|
+
{
|
|
795
|
+
id: 217,
|
|
796
|
+
name: I18n.getLang('country_AF'),
|
|
797
|
+
...defFlagConfig,
|
|
798
|
+
colors: [{ h: 147, s: 100, v: 64 }, { h: 0, s: 100, v: 100 }, { h: 0, s: 0, v: 0 },],
|
|
799
|
+
},
|
|
800
|
+
{
|
|
801
|
+
id: 216,
|
|
802
|
+
name: I18n.getLang('country_EG'),
|
|
803
|
+
...defFlagConfig,
|
|
804
|
+
colors: [{ h: 0, s: 0, v: 0 }, { h: 0, s: 0, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
805
|
+
},
|
|
806
|
+
{
|
|
807
|
+
id: 215,
|
|
808
|
+
name: I18n.getLang('country_ET'),
|
|
809
|
+
...defFlagConfig,
|
|
810
|
+
colors: [{ h: 0, s: 100, v: 100 }, { h: 60, s: 100, v: 100 }, { h: 147, s: 100, v: 64 },],
|
|
811
|
+
},
|
|
812
|
+
{
|
|
813
|
+
id: 214,
|
|
814
|
+
name: I18n.getLang('country_BB'),
|
|
815
|
+
...defFlagConfig,
|
|
816
|
+
colors: [{ h: 220, s: 100, v: 100 }, { h: 60, s: 100, v: 100 }, { h: 220, s: 100, v: 100 },],
|
|
817
|
+
},
|
|
818
|
+
{
|
|
819
|
+
id: 213,
|
|
820
|
+
name: I18n.getLang('country_BO'),
|
|
821
|
+
...defFlagConfig,
|
|
822
|
+
colors: [{ h: 147, s: 100, v: 64 }, { h: 60, s: 100, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
823
|
+
},
|
|
824
|
+
{
|
|
825
|
+
id: 212,
|
|
826
|
+
name: I18n.getLang('country_CN'),
|
|
827
|
+
...defFlagConfig,
|
|
828
|
+
colors: [{ h: 60, s: 100, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
829
|
+
},
|
|
830
|
+
{
|
|
831
|
+
id: 211,
|
|
832
|
+
name: I18n.getLang('country_EC'),
|
|
833
|
+
...defFlagConfig,
|
|
834
|
+
colors: [{ h: 0, s: 100, v: 100 }, { h: 210, s: 78, v: 100 }, { h: 60, s: 100, v: 100 },],
|
|
835
|
+
},
|
|
836
|
+
{
|
|
837
|
+
id: 210,
|
|
838
|
+
name: I18n.getLang('country_SV'),
|
|
839
|
+
...defFlagConfig,
|
|
840
|
+
colors: [{ h: 205, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 205, s: 100, v: 100 },],
|
|
841
|
+
},
|
|
842
|
+
{
|
|
843
|
+
id: 209,
|
|
844
|
+
name: I18n.getLang('country_CI'),
|
|
845
|
+
...defFlagConfig,
|
|
846
|
+
colors: [{ h: 147, s: 100, v: 64 }, { h: 0, s: 0, v: 100 }, { h: 45, s: 100, v: 100 },],
|
|
847
|
+
},
|
|
848
|
+
{
|
|
849
|
+
id: 208,
|
|
850
|
+
name: I18n.getLang('country_GH'),
|
|
851
|
+
...defFlagConfig,
|
|
852
|
+
colors: [{ h: 128, s: 77, v: 64 }, { h: 60, s: 100, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
853
|
+
},
|
|
854
|
+
{
|
|
855
|
+
id: 207,
|
|
856
|
+
name: I18n.getLang('country_GL'),
|
|
857
|
+
...defFlagConfig,
|
|
858
|
+
colors: [{ h: 0, s: 100, v: 100 }, { h: 0, s: 0, v: 100 },],
|
|
859
|
+
},
|
|
860
|
+
{
|
|
861
|
+
id: 206,
|
|
862
|
+
name: I18n.getLang('country_GT'),
|
|
863
|
+
...defFlagConfig,
|
|
864
|
+
colors: [{ h: 0, s: 0, v: 100 }, { h: 196, s: 100, v: 100 },],
|
|
865
|
+
},
|
|
866
|
+
{
|
|
867
|
+
id: 205,
|
|
868
|
+
name: I18n.getLang('country_HK'),
|
|
869
|
+
...defFlagConfig,
|
|
870
|
+
colors: [{ h: 0, s: 0, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
871
|
+
},
|
|
872
|
+
{
|
|
873
|
+
id: 204,
|
|
874
|
+
name: I18n.getLang('country_IN'),
|
|
875
|
+
...defFlagConfig,
|
|
876
|
+
colors: [{ h: 147, s: 100, v: 64 }, { h: 0, s: 0, v: 100 }, { h: 45, s: 100, v: 100 },],
|
|
877
|
+
},
|
|
878
|
+
{
|
|
879
|
+
id: 203,
|
|
880
|
+
name: I18n.getLang('country_ID'),
|
|
881
|
+
...defFlagConfig,
|
|
882
|
+
colors: [{ h: 0, s: 0, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
883
|
+
},
|
|
884
|
+
{
|
|
885
|
+
id: 202,
|
|
886
|
+
name: I18n.getLang('country_ir'),
|
|
887
|
+
...defFlagConfig,
|
|
888
|
+
colors: [{ h: 0, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 147, s: 100, v: 64 },],
|
|
889
|
+
},
|
|
890
|
+
{
|
|
891
|
+
id: 201,
|
|
892
|
+
name: I18n.getLang('country_IS'),
|
|
893
|
+
...defFlagConfig,
|
|
894
|
+
colors: [{ h: 0, s: 0, v: 100 }, { h: 0, s: 100, v: 100 }, { h: 205, s: 100, v: 100 },],
|
|
895
|
+
},
|
|
896
|
+
{
|
|
897
|
+
id: 200,
|
|
898
|
+
name: I18n.getLang('country_JM'),
|
|
899
|
+
...defFlagConfig,
|
|
900
|
+
colors: [{ h: 60, s: 100, v: 100 }, { h: 0, s: 0, v: 0 }, { h: 147, s: 100, v: 64 },],
|
|
901
|
+
},
|
|
902
|
+
{
|
|
903
|
+
id: 199,
|
|
904
|
+
name: I18n.getLang('country_CY'),
|
|
905
|
+
...defFlagConfig,
|
|
906
|
+
colors: [{ h: 147, s: 100, v: 64 }, { h: 0, s: 0, v: 100 }, { h: 45, s: 100, v: 100 },],
|
|
907
|
+
},
|
|
908
|
+
{
|
|
909
|
+
id: 198,
|
|
910
|
+
name: I18n.getLang('country_QA'),
|
|
911
|
+
...defFlagConfig,
|
|
912
|
+
colors: [{ h: 0, s: 100, v: 100 }, { h: 0, s: 0, v: 100 },],
|
|
913
|
+
},
|
|
914
|
+
{
|
|
915
|
+
id: 197,
|
|
916
|
+
name: I18n.getLang('country_KE'),
|
|
917
|
+
...defFlagConfig,
|
|
918
|
+
colors: [{ h: 147, s: 100, v: 64 }, { h: 0, s: 100, v: 100 }, { h: 0, s: 0, v: 0 },],
|
|
919
|
+
},
|
|
920
|
+
{
|
|
921
|
+
id: 196,
|
|
922
|
+
name: I18n.getLang('country_CO'),
|
|
923
|
+
...defFlagConfig,
|
|
924
|
+
colors: [{ h: 0, s: 100, v: 100 }, { h: 210, s: 78, v: 100 }, { h: 60, s: 100, v: 100 },],
|
|
925
|
+
},
|
|
926
|
+
{
|
|
927
|
+
id: 195,
|
|
928
|
+
name: I18n.getLang('country_CG'),
|
|
929
|
+
...defFlagConfig,
|
|
930
|
+
colors: [{ h: 0, s: 100, v: 100 }, { h: 60, s: 100, v: 100 }, { h: 147, s: 100, v: 64 },],
|
|
931
|
+
},
|
|
932
|
+
{
|
|
933
|
+
id: 194,
|
|
934
|
+
name: I18n.getLang('country_cu'),
|
|
935
|
+
...defFlagConfig,
|
|
936
|
+
colors: [{ h: 210, s: 78, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
937
|
+
},
|
|
938
|
+
{
|
|
939
|
+
id: 193,
|
|
940
|
+
name: I18n.getLang('country_LV'),
|
|
941
|
+
...defFlagConfig,
|
|
942
|
+
colors: [{ h: 0, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
943
|
+
},
|
|
944
|
+
{
|
|
945
|
+
id: 192,
|
|
946
|
+
name: I18n.getLang('country_LY'),
|
|
947
|
+
...defFlagConfig,
|
|
948
|
+
colors: [{ h: 147, s: 100, v: 64 }, { h: 0, s: 0, v: 0 }, { h: 0, s: 100, v: 100 },],
|
|
949
|
+
},
|
|
950
|
+
{
|
|
951
|
+
id: 191,
|
|
952
|
+
name: I18n.getLang('country_LT'),
|
|
953
|
+
...defFlagConfig,
|
|
954
|
+
colors: [{ h: 0, s: 100, v: 100 }, { h: 147, s: 100, v: 64 }, { h: 60, s: 100, v: 100 },],
|
|
955
|
+
},
|
|
956
|
+
{
|
|
957
|
+
id: 190,
|
|
958
|
+
name: I18n.getLang('country_LU'),
|
|
959
|
+
...defFlagConfig,
|
|
960
|
+
colors: [{ h: 196, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
961
|
+
},
|
|
962
|
+
{
|
|
963
|
+
id: 189,
|
|
964
|
+
name: I18n.getLang('country_MG'),
|
|
965
|
+
...defFlagConfig,
|
|
966
|
+
colors: [{ h: 147, s: 100, v: 64 }, { h: 0, s: 100, v: 100 }, { h: 0, s: 0, v: 100 },],
|
|
967
|
+
},
|
|
968
|
+
{
|
|
969
|
+
id: 188,
|
|
970
|
+
name: I18n.getLang('country_MT'),
|
|
971
|
+
...defFlagConfig,
|
|
972
|
+
colors: [{ h: 0, s: 100, v: 100 }, { h: 0, s: 0, v: 100 },],
|
|
973
|
+
},
|
|
974
|
+
{
|
|
975
|
+
id: 187,
|
|
976
|
+
name: I18n.getLang('country_MA'),
|
|
977
|
+
...defFlagConfig,
|
|
978
|
+
colors: [{ h: 147, s: 100, v: 64 }, { h: 0, s: 100, v: 100 },],
|
|
979
|
+
},
|
|
980
|
+
{
|
|
981
|
+
id: 186,
|
|
982
|
+
name: I18n.getLang('country_VN'),
|
|
983
|
+
...defFlagConfig,
|
|
984
|
+
colors: [{ h: 60, s: 100, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
985
|
+
},
|
|
986
|
+
{
|
|
987
|
+
id: 185,
|
|
988
|
+
name: I18n.getLang('country_NA'),
|
|
989
|
+
...defFlagConfig,
|
|
990
|
+
colors: [{ h: 147, s: 100, v: 64 }, { h: 0, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 60, s: 100, v: 100 }, { h: 220, s: 100, v: 100 },],
|
|
991
|
+
},
|
|
992
|
+
{
|
|
993
|
+
id: 184,
|
|
994
|
+
name: I18n.getLang('country_NZ'),
|
|
995
|
+
...defFlagConfig,
|
|
996
|
+
colors: [{ h: 0, s: 0, v: 100 }, { h: 0, s: 100, v: 100 }, { h: 220, s: 100, v: 100 },],
|
|
997
|
+
},
|
|
998
|
+
{
|
|
999
|
+
id: 183,
|
|
1000
|
+
name: I18n.getLang('country_NG'),
|
|
1001
|
+
...defFlagConfig,
|
|
1002
|
+
colors: [{ h: 147, s: 100, v: 64 }, { h: 0, s: 0, v: 100 }, { h: 147, s: 100, v: 64 },],
|
|
1003
|
+
},
|
|
1004
|
+
{
|
|
1005
|
+
id: 182,
|
|
1006
|
+
name: I18n.getLang('country_PK'),
|
|
1007
|
+
...defFlagConfig,
|
|
1008
|
+
colors: [{ h: 147, s: 100, v: 64 }, { h: 0, s: 0, v: 100 },],
|
|
1009
|
+
},
|
|
1010
|
+
{
|
|
1011
|
+
id: 181,
|
|
1012
|
+
name: I18n.getLang('country_PS'),
|
|
1013
|
+
...defFlagConfig,
|
|
1014
|
+
colors: [{ h: 147, s: 100, v: 64 }, { h: 0, s: 0, v: 100 }, { h: 0, s: 0, v: 0 }, { h: 0, s: 100, v: 100 },],
|
|
1015
|
+
},
|
|
1016
|
+
{
|
|
1017
|
+
id: 180,
|
|
1018
|
+
name: I18n.getLang('country_PY'),
|
|
1019
|
+
...defFlagConfig,
|
|
1020
|
+
colors: [{ h: 205, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
1021
|
+
},
|
|
1022
|
+
{
|
|
1023
|
+
id: 179,
|
|
1024
|
+
name: I18n.getLang('country_pe'),
|
|
1025
|
+
...defFlagConfig,
|
|
1026
|
+
colors: [{ h: 0, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
1027
|
+
},
|
|
1028
|
+
{
|
|
1029
|
+
id: 178,
|
|
1030
|
+
name: I18n.getLang('country_PH'),
|
|
1031
|
+
...defFlagConfig,
|
|
1032
|
+
colors: [{ h: 0, s: 100, v: 100 }, { h: 205, s: 100, v: 100 }, { h: 0, s: 0, v: 100 },],
|
|
1033
|
+
},
|
|
1034
|
+
{
|
|
1035
|
+
id: 177,
|
|
1036
|
+
name: I18n.getLang('country_PR'),
|
|
1037
|
+
...defFlagConfig,
|
|
1038
|
+
colors: [{ h: 0, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 205, s: 100, v: 100 },],
|
|
1039
|
+
},
|
|
1040
|
+
{
|
|
1041
|
+
id: 176,
|
|
1042
|
+
name: I18n.getLang('country_RU'),
|
|
1043
|
+
...defFlagConfig,
|
|
1044
|
+
colors: [{ h: 0, s: 100, v: 100 }, { h: 205, s: 100, v: 100 }, { h: 0, s: 0, v: 100 },],
|
|
1045
|
+
},
|
|
1046
|
+
{
|
|
1047
|
+
id: 175,
|
|
1048
|
+
name: I18n.getLang('country_ZA'),
|
|
1049
|
+
...defFlagConfig,
|
|
1050
|
+
colors: [{ h: 0, s: 0, v: 0 },{ h: 60, s: 100, v: 100 },{ h: 205, s: 100, v: 100 }, { h: 147, s: 100, v: 64 }, { h: 0, s: 0, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
1051
|
+
},
|
|
1052
|
+
{
|
|
1053
|
+
id: 174,
|
|
1054
|
+
name: I18n.getLang('country_sy'),
|
|
1055
|
+
...defFlagConfig,
|
|
1056
|
+
colors: [{ h: 0, s: 0, v: 0 }, { h: 147, s: 100, v: 64 }, { h: 0, s: 0, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
1057
|
+
},
|
|
1058
|
+
{
|
|
1059
|
+
id: 173,
|
|
1060
|
+
name: I18n.getLang('country_TH'),
|
|
1061
|
+
...defFlagConfig,
|
|
1062
|
+
colors: [{ h: 205, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
1063
|
+
},
|
|
1064
|
+
{
|
|
1065
|
+
id: 172,
|
|
1066
|
+
name: I18n.getLang('country_TN'),
|
|
1067
|
+
...defFlagConfig,
|
|
1068
|
+
colors: [{ h: 0, s: 0, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
1069
|
+
},
|
|
1070
|
+
{
|
|
1071
|
+
id: 171,
|
|
1072
|
+
name: I18n.getLang('country_UG'),
|
|
1073
|
+
...defFlagConfig,
|
|
1074
|
+
colors: [{ h: 0, s: 100, v: 100 }, { h: 60, s: 100, v: 100 }, { h: 0, s: 0, v: 0 },],
|
|
1075
|
+
},
|
|
1076
|
+
{
|
|
1077
|
+
id: 170,
|
|
1078
|
+
name: I18n.getLang('country_UY'),
|
|
1079
|
+
...defFlagConfig,
|
|
1080
|
+
colors: [{ h: 20, s: 100, v: 100 }, { h: 60, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 205, s: 100, v: 100 },],
|
|
1081
|
+
},
|
|
1082
|
+
{
|
|
1083
|
+
id: 169,
|
|
1084
|
+
name: I18n.getLang('country_VE'),
|
|
1085
|
+
...defFlagConfig,
|
|
1086
|
+
colors: [{ h: 0, s: 100, v: 100 }, { h: 205, s: 100, v: 100 }, { h: 60, s: 100, v: 100 },],
|
|
1087
|
+
}
|
|
614
1088
|
]
|
|
615
1089
|
|
|
616
1090
|
export const def3Pids = ['uzoammz8zm0onv1i', '85bmfxhxpmwj7exf']
|
|
@@ -618,291 +1092,524 @@ export const def3Pids = ['uzoammz8zm0onv1i', '85bmfxhxpmwj7exf']
|
|
|
618
1092
|
export const def3FlagList: FlagUiInfo[] = [
|
|
619
1093
|
{
|
|
620
1094
|
id: 231,
|
|
621
|
-
version: 0,
|
|
622
|
-
mode: SceneNodeTransitionMode.Jump,
|
|
623
|
-
speed: 75,
|
|
624
1095
|
name: I18n.getLang('flag_leverkusen'),
|
|
625
|
-
|
|
626
|
-
{ brightness: 100, colorTemp: 0},
|
|
627
|
-
],
|
|
1096
|
+
...defFlagConfig,
|
|
628
1097
|
colors: [{h: 360, s: 100, v: 100}, {h: 0, s: 0, v: 100}, {h: 60, s: 100, v: 100}]
|
|
629
1098
|
},
|
|
630
1099
|
{
|
|
631
1100
|
id: 255,
|
|
632
|
-
version: 0,
|
|
633
|
-
mode: SceneNodeTransitionMode.Jump,
|
|
634
|
-
speed: 75,
|
|
635
1101
|
name: I18n.getLang('country_DE'),
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
],
|
|
639
|
-
colors: [
|
|
640
|
-
{h: 48, s: 100, v: 100},
|
|
641
|
-
{h: 360, s: 100, v: 100},
|
|
642
|
-
{h: 0, s: 0, v:0}],
|
|
1102
|
+
...defFlagConfig,
|
|
1103
|
+
colors: [{h: 48, s: 100, v: 100},{h: 360, s: 100, v: 100},{h: 0, s: 0, v:0}],
|
|
643
1104
|
},
|
|
644
1105
|
{
|
|
645
1106
|
id: 254,
|
|
646
|
-
version: 0,
|
|
647
|
-
mode: SceneNodeTransitionMode.Jump,
|
|
648
|
-
speed: 75,
|
|
649
1107
|
name: I18n.getLang('country_BE'),
|
|
650
|
-
|
|
651
|
-
{ brightness: 100, colorTemp: 0},
|
|
652
|
-
],
|
|
1108
|
+
...defFlagConfig,
|
|
653
1109
|
colors: [{h: 360, s: 100, v: 100}, {h: 48, s: 100, v: 100}, {h: 0, s: 0, v: 0}]
|
|
654
1110
|
},
|
|
655
1111
|
{
|
|
656
1112
|
id: 253,
|
|
657
|
-
version: 0,
|
|
658
|
-
mode: SceneNodeTransitionMode.Jump,
|
|
659
|
-
speed: 75,
|
|
660
1113
|
name: I18n.getLang('country_FR'),
|
|
661
|
-
|
|
662
|
-
{ brightness: 100, colorTemp: 0},
|
|
663
|
-
],
|
|
1114
|
+
...defFlagConfig,
|
|
664
1115
|
colors: [{h: 360, s: 100, v: 100}, {h: 0, s: 0, v: 100}, {h: 212, s: 100, v: 100}]
|
|
665
1116
|
},
|
|
666
1117
|
{
|
|
667
1118
|
id: 252,
|
|
668
|
-
version: 0,
|
|
669
|
-
mode: SceneNodeTransitionMode.Jump,
|
|
670
|
-
speed: 75,
|
|
671
1119
|
name: I18n.getLang('country_PT'),
|
|
672
|
-
|
|
673
|
-
{ brightness: 100, colorTemp: 0},
|
|
674
|
-
],
|
|
1120
|
+
...defFlagConfig,
|
|
675
1121
|
colors: [{h: 360, s: 100, v: 100}, {h: 360, s: 100, v: 100}, {h: 120, s: 100, v: 100}]
|
|
676
1122
|
},
|
|
677
1123
|
{
|
|
678
1124
|
id: 251,
|
|
679
|
-
version: 0,
|
|
680
|
-
mode: SceneNodeTransitionMode.Jump,
|
|
681
|
-
speed: 75,
|
|
682
1125
|
name: I18n.getLang('country_scotland'),
|
|
683
|
-
|
|
684
|
-
{ brightness: 100, colorTemp: 0},
|
|
685
|
-
],
|
|
1126
|
+
...defFlagConfig,
|
|
686
1127
|
colors: [{h: 209, s: 100, v: 100}, {h: 0, s: 0, v: 100}, {h: 209, s: 100, v: 100}]
|
|
687
1128
|
},
|
|
688
1129
|
{
|
|
689
1130
|
id: 250,
|
|
690
|
-
version: 0,
|
|
691
|
-
mode: SceneNodeTransitionMode.Jump,
|
|
692
|
-
speed: 75,
|
|
693
1131
|
name: I18n.getLang('country_ES'),
|
|
694
|
-
|
|
695
|
-
{ brightness: 100, colorTemp: 0},
|
|
696
|
-
],
|
|
1132
|
+
...defFlagConfig,
|
|
697
1133
|
colors: [{h: 360, s: 100, v: 100}, {h: 47, s: 100, v: 100}, {h: 360, s: 100, v: 100}]
|
|
698
1134
|
},
|
|
699
1135
|
{
|
|
700
1136
|
id: 249,
|
|
701
|
-
version: 0,
|
|
702
|
-
mode: SceneNodeTransitionMode.Jump,
|
|
703
|
-
speed: 75,
|
|
704
1137
|
name: I18n.getLang('country_TR'),
|
|
705
|
-
|
|
706
|
-
{ brightness: 100, colorTemp: 0},
|
|
707
|
-
],
|
|
1138
|
+
...defFlagConfig,
|
|
708
1139
|
colors: [{h: 360, s: 100, v: 100}, {h: 360, s: 100, v: 100}, {h: 0, s: 0, v: 100}]
|
|
709
1140
|
},
|
|
710
1141
|
{
|
|
711
1142
|
id: 248,
|
|
712
|
-
version: 0,
|
|
713
|
-
mode: SceneNodeTransitionMode.Jump,
|
|
714
|
-
speed: 75,
|
|
715
1143
|
name: I18n.getLang('country_AT'),
|
|
716
|
-
|
|
717
|
-
{ brightness: 100, colorTemp: 0},
|
|
718
|
-
],
|
|
1144
|
+
...defFlagConfig,
|
|
719
1145
|
colors: [{h: 360, s: 100, v: 100}, {h: 0, s: 0, v: 100}, {h: 360, s: 100, v: 100}]
|
|
720
1146
|
},
|
|
721
1147
|
{
|
|
722
1148
|
id: 247,
|
|
723
|
-
version: 0,
|
|
724
|
-
mode: SceneNodeTransitionMode.Jump,
|
|
725
|
-
speed: 75,
|
|
726
1149
|
name: I18n.getLang('country_england'),
|
|
727
|
-
|
|
728
|
-
{ brightness: 100, colorTemp: 0},
|
|
729
|
-
],
|
|
1150
|
+
...defFlagConfig,
|
|
730
1151
|
colors: [{h: 0, s: 0, v: 100}, {h: 360, s: 100, v: 100}, {h: 0, s: 0, v: 100}]
|
|
731
1152
|
},
|
|
732
1153
|
{
|
|
733
1154
|
id: 246,
|
|
734
|
-
version: 0,
|
|
735
|
-
mode: SceneNodeTransitionMode.Jump,
|
|
736
|
-
speed: 75,
|
|
737
1155
|
name: I18n.getLang('country_HU'),
|
|
738
|
-
|
|
739
|
-
{ brightness: 100, colorTemp: 0},
|
|
740
|
-
],
|
|
1156
|
+
...defFlagConfig,
|
|
741
1157
|
colors: [{h: 120, s: 100, v: 100}, {h: 0, s: 0, v: 100}, {h: 360, s: 100, v: 100}]
|
|
742
1158
|
},
|
|
743
1159
|
{
|
|
744
1160
|
id: 245,
|
|
745
|
-
version: 0,
|
|
746
|
-
mode: SceneNodeTransitionMode.Jump,
|
|
747
|
-
speed: 75,
|
|
748
1161
|
name: I18n.getLang('country_SK'),
|
|
749
|
-
|
|
750
|
-
{ brightness: 100, colorTemp: 0},
|
|
751
|
-
],
|
|
1162
|
+
...defFlagConfig,
|
|
752
1163
|
colors: [{h: 360, s: 100, v: 100}, {h: 213, s: 100, v: 84}, {h: 0, s: 0, v: 100}]
|
|
753
1164
|
},
|
|
754
1165
|
{
|
|
755
1166
|
id: 244,
|
|
756
|
-
version: 0,
|
|
757
|
-
mode: SceneNodeTransitionMode.Jump,
|
|
758
|
-
speed: 75,
|
|
759
1167
|
name: I18n.getLang('country_AL'),
|
|
760
|
-
|
|
761
|
-
{ brightness: 100, colorTemp: 0},
|
|
762
|
-
],
|
|
1168
|
+
...defFlagConfig,
|
|
763
1169
|
colors: [{h: 360, s: 100, v: 100}, {h: 0, s: 0, v:0}, {h: 360, s: 100, v: 100}]
|
|
764
1170
|
},
|
|
765
1171
|
{
|
|
766
1172
|
id: 243,
|
|
767
|
-
version: 0,
|
|
768
|
-
mode: SceneNodeTransitionMode.Jump,
|
|
769
|
-
speed: 75,
|
|
770
1173
|
name: I18n.getLang('country_DK'),
|
|
771
|
-
|
|
772
|
-
{ brightness: 100, colorTemp: 0},
|
|
773
|
-
],
|
|
1174
|
+
...defFlagConfig,
|
|
774
1175
|
colors: [{h: 360, s: 100, v: 100}, {h: 0, s: 0, v:100}, {h: 360, s: 100, v: 100}, {h: 0, s: 0, v:100}]
|
|
775
1176
|
},
|
|
776
1177
|
{
|
|
777
1178
|
id: 242,
|
|
778
|
-
version: 0,
|
|
779
|
-
mode: SceneNodeTransitionMode.Jump,
|
|
780
|
-
speed: 75,
|
|
781
1179
|
name: I18n.getLang('country_NL'),
|
|
782
|
-
|
|
783
|
-
{ brightness: 100, colorTemp: 0},
|
|
784
|
-
],
|
|
1180
|
+
...defFlagConfig,
|
|
785
1181
|
colors: [{h: 217, s: 100, v: 77}, {h: 0, s: 0, v:100}, {h: 360, s: 100, v: 100}]
|
|
786
1182
|
},
|
|
787
1183
|
{
|
|
788
1184
|
id: 241,
|
|
789
|
-
version: 0,
|
|
790
|
-
mode: SceneNodeTransitionMode.Jump,
|
|
791
|
-
speed: 75,
|
|
792
1185
|
name: I18n.getLang('country_RO'),
|
|
793
|
-
|
|
794
|
-
{ brightness: 100, colorTemp: 0},
|
|
795
|
-
],
|
|
1186
|
+
...defFlagConfig,
|
|
796
1187
|
colors: [{h: 360, s: 100, v: 100}, {h: 48, s: 91, v: 100}, {h: 219, s: 100, v: 100}]
|
|
797
1188
|
},
|
|
798
1189
|
{
|
|
799
1190
|
id: 240,
|
|
800
|
-
version: 0,
|
|
801
|
-
mode: SceneNodeTransitionMode.Jump,
|
|
802
|
-
speed: 75,
|
|
803
1191
|
name: I18n.getLang('country_CH'),
|
|
804
|
-
|
|
805
|
-
{ brightness: 100, colorTemp: 0},
|
|
806
|
-
],
|
|
1192
|
+
...defFlagConfig,
|
|
807
1193
|
colors: [{h: 360, s: 100, v: 100}, {h: 0, s: 0, v: 100}, {h: 360, s: 100, v: 100}]
|
|
808
1194
|
},
|
|
809
1195
|
{
|
|
810
1196
|
id: 239,
|
|
811
|
-
version: 0,
|
|
812
|
-
mode: SceneNodeTransitionMode.Jump,
|
|
813
|
-
speed: 75,
|
|
814
1197
|
name: I18n.getLang('country_RS'),
|
|
815
|
-
|
|
816
|
-
{ brightness: 100, colorTemp: 0},
|
|
817
|
-
],
|
|
1198
|
+
...defFlagConfig,
|
|
818
1199
|
colors: [{h: 0, s: 0, v: 100}, {h: 210, s: 100, v: 100}, {h: 360, s: 100, v: 100}]
|
|
819
1200
|
},
|
|
820
1201
|
{
|
|
821
1202
|
id: 238,
|
|
822
|
-
version: 0,
|
|
823
|
-
mode: SceneNodeTransitionMode.Jump,
|
|
824
|
-
speed: 75,
|
|
825
1203
|
name: I18n.getLang('country_IT'),
|
|
826
|
-
|
|
827
|
-
{ brightness: 100, colorTemp: 0},
|
|
828
|
-
],
|
|
1204
|
+
...defFlagConfig,
|
|
829
1205
|
colors: [{h: 360, s: 100, v: 100}, {h: 212, s: 4, v: 100}, {h: 120, s: 100, v: 100}]
|
|
830
1206
|
},
|
|
831
1207
|
{
|
|
832
1208
|
id: 237,
|
|
833
|
-
version: 0,
|
|
834
|
-
mode: SceneNodeTransitionMode.Jump,
|
|
835
|
-
speed: 75,
|
|
836
1209
|
name: I18n.getLang('country_CZ'),
|
|
837
|
-
|
|
838
|
-
{ brightness: 100, colorTemp: 0},
|
|
839
|
-
],
|
|
1210
|
+
...defFlagConfig,
|
|
840
1211
|
colors: [{h: 360, s: 100, v: 100}, {h: 0, s: 0, v: 100}, {h: 211, s: 100, v: 100}]
|
|
841
1212
|
},
|
|
842
1213
|
{
|
|
843
1214
|
id: 236,
|
|
844
|
-
version: 0,
|
|
845
|
-
mode: SceneNodeTransitionMode.Jump,
|
|
846
|
-
speed: 75,
|
|
847
1215
|
name: I18n.getLang('country_SI'),
|
|
848
|
-
|
|
849
|
-
{ brightness: 100, colorTemp: 0},
|
|
850
|
-
],
|
|
1216
|
+
...defFlagConfig,
|
|
851
1217
|
colors: [{h: 360, s: 100, v: 100}, {h: 217, s: 100, v: 100}, {h: 0, s: 0, v: 100}]
|
|
852
1218
|
},
|
|
853
1219
|
{
|
|
854
1220
|
id: 235,
|
|
855
|
-
version: 0,
|
|
856
|
-
mode: SceneNodeTransitionMode.Jump,
|
|
857
|
-
speed: 75,
|
|
858
1221
|
name: I18n.getLang('country_HR'),
|
|
859
|
-
|
|
860
|
-
{ brightness: 100, colorTemp: 0},
|
|
861
|
-
],
|
|
1222
|
+
...defFlagConfig,
|
|
862
1223
|
colors: [{h: 220, s: 89, v: 100},{h: 0, s: 0, v: 100}, {h: 360, s: 100, v: 100}]
|
|
863
1224
|
},
|
|
864
1225
|
{
|
|
865
1226
|
id: 234,
|
|
866
|
-
version: 0,
|
|
867
|
-
mode: SceneNodeTransitionMode.Jump,
|
|
868
|
-
speed: 75,
|
|
869
1227
|
name: I18n.getLang('country_SE'),
|
|
870
|
-
|
|
871
|
-
{ brightness: 100, colorTemp: 0},
|
|
872
|
-
],
|
|
1228
|
+
...defFlagConfig,
|
|
873
1229
|
colors: [{h: 201, s: 100, v: 100}, {h: 48, s: 99, v: 100}, {h: 201, s: 100, v: 100}]
|
|
874
1230
|
},
|
|
875
1231
|
{
|
|
876
1232
|
id: 233,
|
|
877
|
-
version: 0,
|
|
878
|
-
mode: SceneNodeTransitionMode.Jump,
|
|
879
|
-
speed: 75,
|
|
880
1233
|
name: I18n.getLang('country_NO'),
|
|
881
|
-
|
|
882
|
-
{ brightness: 100, colorTemp: 0},
|
|
883
|
-
],
|
|
1234
|
+
...defFlagConfig,
|
|
884
1235
|
colors: [{h: 218, s: 100, v: 100}, {h: 0, s: 0, v: 100}, {h: 360, s: 100, v: 100}]
|
|
885
1236
|
},
|
|
886
1237
|
{
|
|
887
1238
|
id: 232,
|
|
888
|
-
version: 0,
|
|
889
|
-
mode: SceneNodeTransitionMode.Jump,
|
|
890
|
-
speed: 75,
|
|
891
1239
|
name: I18n.getLang('country_PL'),
|
|
892
|
-
|
|
893
|
-
{ brightness: 100, colorTemp: 0},
|
|
894
|
-
],
|
|
1240
|
+
...defFlagConfig,
|
|
895
1241
|
colors: [{h: 360, s: 100, v: 100}, {h: 0, s: 0, v: 100}]
|
|
896
1242
|
},
|
|
897
1243
|
{
|
|
898
1244
|
id: 230,
|
|
899
|
-
version: 0,
|
|
900
|
-
mode: SceneNodeTransitionMode.Jump,
|
|
901
|
-
speed: 75,
|
|
902
1245
|
name: I18n.getLang('country_UA'),
|
|
903
|
-
|
|
904
|
-
{ brightness: 100, colorTemp: 0},
|
|
905
|
-
],
|
|
1246
|
+
...defFlagConfig,
|
|
906
1247
|
colors: [{h: 50, s: 100, v: 100}, {h: 211, s: 100, v: 100}]
|
|
907
1248
|
},
|
|
1249
|
+
{
|
|
1250
|
+
id: 229,
|
|
1251
|
+
name: I18n.getLang('country_gb'),
|
|
1252
|
+
...defFlagConfig,
|
|
1253
|
+
colors: [{ h: 0, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 205, s: 100, v: 100 }],
|
|
1254
|
+
},
|
|
1255
|
+
{
|
|
1256
|
+
id: 228,
|
|
1257
|
+
name: I18n.getLang('country_IE'),
|
|
1258
|
+
...defFlagConfig,
|
|
1259
|
+
colors: [{ h: 45, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 147, s: 100, v: 64 }],
|
|
1260
|
+
},
|
|
1261
|
+
{
|
|
1262
|
+
id: 227,
|
|
1263
|
+
name: I18n.getLang('country_IL'),
|
|
1264
|
+
...defFlagConfig,
|
|
1265
|
+
colors: [{ h: 210, s: 65, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 210, s: 65, v: 100 }],
|
|
1266
|
+
},
|
|
1267
|
+
{
|
|
1268
|
+
id: 226,
|
|
1269
|
+
name: I18n.getLang('country_US'),
|
|
1270
|
+
...defFlagConfig,
|
|
1271
|
+
colors: [{ h: 210, s: 78, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 0, s: 100, v: 100 }],
|
|
1272
|
+
},
|
|
1273
|
+
{
|
|
1274
|
+
id: 225,
|
|
1275
|
+
name: I18n.getLang('country_CA'),
|
|
1276
|
+
...defFlagConfig,
|
|
1277
|
+
colors: [{ h: 0, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
1278
|
+
},
|
|
1279
|
+
{
|
|
1280
|
+
id: 224,
|
|
1281
|
+
name: I18n.getLang('country_MX'),
|
|
1282
|
+
...defFlagConfig,
|
|
1283
|
+
colors: [{ h: 0, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 103, s: 73, v: 64 },],
|
|
1284
|
+
},
|
|
1285
|
+
{
|
|
1286
|
+
id: 223,
|
|
1287
|
+
name: I18n.getLang('country_SA'),
|
|
1288
|
+
...defFlagConfig,
|
|
1289
|
+
colors: [{ h: 0, s: 0, v: 100 }, { h: 103, s: 73, v: 64 },],
|
|
1290
|
+
},
|
|
1291
|
+
{
|
|
1292
|
+
id: 222,
|
|
1293
|
+
name: I18n.getLang('country_AE'),
|
|
1294
|
+
...defFlagConfig,
|
|
1295
|
+
colors: [{ h: 0, s: 0, v: 0 }, { h: 0, s: 0, v: 100 }, { h: 103, s: 73, v: 64 }, { h: 0, s: 100, v: 100 },],
|
|
1296
|
+
},
|
|
1297
|
+
{
|
|
1298
|
+
id: 221,
|
|
1299
|
+
name: I18n.getLang('country_AU'),
|
|
1300
|
+
...defFlagConfig,
|
|
1301
|
+
colors: [{ h: 0, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 199, s: 84, v: 100 },],
|
|
1302
|
+
},
|
|
1303
|
+
{
|
|
1304
|
+
id: 220,
|
|
1305
|
+
name: I18n.getLang('country_JP'),
|
|
1306
|
+
...defFlagConfig,
|
|
1307
|
+
colors: [{ h: 360, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }],
|
|
1308
|
+
},
|
|
1309
|
+
{
|
|
1310
|
+
id: 219,
|
|
1311
|
+
name: I18n.getLang('country_BR'),
|
|
1312
|
+
...defFlagConfig,
|
|
1313
|
+
colors: [{ h: 60, s: 100, v: 100 }, { h: 147, s: 100, v: 64 }, { h: 0, s: 0, v: 100 },],
|
|
1314
|
+
},
|
|
1315
|
+
{
|
|
1316
|
+
id: 218,
|
|
1317
|
+
name: I18n.getLang('country_AR'),
|
|
1318
|
+
...defFlagConfig,
|
|
1319
|
+
colors: [{ h: 210, s: 65, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 210, s: 65, v: 100 },],
|
|
1320
|
+
},
|
|
1321
|
+
{
|
|
1322
|
+
id: 217,
|
|
1323
|
+
name: I18n.getLang('country_AF'),
|
|
1324
|
+
...defFlagConfig,
|
|
1325
|
+
colors: [{ h: 147, s: 100, v: 64 }, { h: 0, s: 100, v: 100 }, { h: 0, s: 0, v: 0 },],
|
|
1326
|
+
},
|
|
1327
|
+
{
|
|
1328
|
+
id: 216,
|
|
1329
|
+
name: I18n.getLang('country_EG'),
|
|
1330
|
+
...defFlagConfig,
|
|
1331
|
+
colors: [{ h: 0, s: 0, v: 0 }, { h: 0, s: 0, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
1332
|
+
},
|
|
1333
|
+
{
|
|
1334
|
+
id: 215,
|
|
1335
|
+
name: I18n.getLang('country_ET'),
|
|
1336
|
+
...defFlagConfig,
|
|
1337
|
+
colors: [{ h: 0, s: 100, v: 100 }, { h: 60, s: 100, v: 100 }, { h: 147, s: 100, v: 64 },],
|
|
1338
|
+
},
|
|
1339
|
+
{
|
|
1340
|
+
id: 214,
|
|
1341
|
+
name: I18n.getLang('country_BB'),
|
|
1342
|
+
...defFlagConfig,
|
|
1343
|
+
colors: [{ h: 220, s: 100, v: 100 }, { h: 60, s: 100, v: 100 }, { h: 220, s: 100, v: 100 },],
|
|
1344
|
+
},
|
|
1345
|
+
{
|
|
1346
|
+
id: 213,
|
|
1347
|
+
name: I18n.getLang('country_BO'),
|
|
1348
|
+
...defFlagConfig,
|
|
1349
|
+
colors: [{ h: 147, s: 100, v: 64 }, { h: 60, s: 100, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
1350
|
+
},
|
|
1351
|
+
{
|
|
1352
|
+
id: 212,
|
|
1353
|
+
name: I18n.getLang('country_CN'),
|
|
1354
|
+
...defFlagConfig,
|
|
1355
|
+
colors: [{ h: 60, s: 100, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
1356
|
+
},
|
|
1357
|
+
{
|
|
1358
|
+
id: 211,
|
|
1359
|
+
name: I18n.getLang('country_EC'),
|
|
1360
|
+
...defFlagConfig,
|
|
1361
|
+
colors: [{ h: 0, s: 100, v: 100 }, { h: 210, s: 78, v: 100 }, { h: 60, s: 100, v: 100 },],
|
|
1362
|
+
},
|
|
1363
|
+
{
|
|
1364
|
+
id: 210,
|
|
1365
|
+
name: I18n.getLang('country_SV'),
|
|
1366
|
+
...defFlagConfig,
|
|
1367
|
+
colors: [{ h: 205, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 205, s: 100, v: 100 },],
|
|
1368
|
+
},
|
|
1369
|
+
{
|
|
1370
|
+
id: 209,
|
|
1371
|
+
name: I18n.getLang('country_CI'),
|
|
1372
|
+
...defFlagConfig,
|
|
1373
|
+
colors: [{ h: 147, s: 100, v: 64 }, { h: 0, s: 0, v: 100 }, { h: 45, s: 100, v: 100 },],
|
|
1374
|
+
},
|
|
1375
|
+
{
|
|
1376
|
+
id: 208,
|
|
1377
|
+
name: I18n.getLang('country_GH'),
|
|
1378
|
+
...defFlagConfig,
|
|
1379
|
+
colors: [{ h: 128, s: 77, v: 64 }, { h: 60, s: 100, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
1380
|
+
},
|
|
1381
|
+
{
|
|
1382
|
+
id: 207,
|
|
1383
|
+
name: I18n.getLang('country_GL'),
|
|
1384
|
+
...defFlagConfig,
|
|
1385
|
+
colors: [{ h: 0, s: 100, v: 100 }, { h: 0, s: 0, v: 100 },],
|
|
1386
|
+
},
|
|
1387
|
+
{
|
|
1388
|
+
id: 206,
|
|
1389
|
+
name: I18n.getLang('country_GT'),
|
|
1390
|
+
...defFlagConfig,
|
|
1391
|
+
colors: [{ h: 0, s: 0, v: 100 }, { h: 196, s: 100, v: 100 },],
|
|
1392
|
+
},
|
|
1393
|
+
{
|
|
1394
|
+
id: 205,
|
|
1395
|
+
name: I18n.getLang('country_HK'),
|
|
1396
|
+
...defFlagConfig,
|
|
1397
|
+
colors: [{ h: 0, s: 0, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
1398
|
+
},
|
|
1399
|
+
{
|
|
1400
|
+
id: 204,
|
|
1401
|
+
name: I18n.getLang('country_IN'),
|
|
1402
|
+
...defFlagConfig,
|
|
1403
|
+
colors: [{ h: 147, s: 100, v: 64 }, { h: 0, s: 0, v: 100 }, { h: 45, s: 100, v: 100 },],
|
|
1404
|
+
},
|
|
1405
|
+
{
|
|
1406
|
+
id: 203,
|
|
1407
|
+
name: I18n.getLang('country_ID'),
|
|
1408
|
+
...defFlagConfig,
|
|
1409
|
+
colors: [{ h: 0, s: 0, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
1410
|
+
},
|
|
1411
|
+
{
|
|
1412
|
+
id: 202,
|
|
1413
|
+
name: I18n.getLang('country_ir'),
|
|
1414
|
+
...defFlagConfig,
|
|
1415
|
+
colors: [{ h: 0, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 147, s: 100, v: 64 },],
|
|
1416
|
+
},
|
|
1417
|
+
{
|
|
1418
|
+
id: 201,
|
|
1419
|
+
name: I18n.getLang('country_IS'),
|
|
1420
|
+
...defFlagConfig,
|
|
1421
|
+
colors: [{ h: 0, s: 0, v: 100 }, { h: 0, s: 100, v: 100 }, { h: 205, s: 100, v: 100 },],
|
|
1422
|
+
},
|
|
1423
|
+
{
|
|
1424
|
+
id: 200,
|
|
1425
|
+
name: I18n.getLang('country_JM'),
|
|
1426
|
+
...defFlagConfig,
|
|
1427
|
+
colors: [{ h: 60, s: 100, v: 100 }, { h: 0, s: 0, v: 0 }, { h: 147, s: 100, v: 64 },],
|
|
1428
|
+
},
|
|
1429
|
+
{
|
|
1430
|
+
id: 199,
|
|
1431
|
+
name: I18n.getLang('country_CY'),
|
|
1432
|
+
...defFlagConfig,
|
|
1433
|
+
colors: [{ h: 147, s: 100, v: 64 }, { h: 0, s: 0, v: 100 }, { h: 45, s: 100, v: 100 },],
|
|
1434
|
+
},
|
|
1435
|
+
{
|
|
1436
|
+
id: 198,
|
|
1437
|
+
name: I18n.getLang('country_QA'),
|
|
1438
|
+
...defFlagConfig,
|
|
1439
|
+
colors: [{ h: 0, s: 100, v: 100 }, { h: 0, s: 0, v: 100 },],
|
|
1440
|
+
},
|
|
1441
|
+
{
|
|
1442
|
+
id: 197,
|
|
1443
|
+
name: I18n.getLang('country_KE'),
|
|
1444
|
+
...defFlagConfig,
|
|
1445
|
+
colors: [{ h: 147, s: 100, v: 64 }, { h: 0, s: 100, v: 100 }, { h: 0, s: 0, v: 0 },],
|
|
1446
|
+
},
|
|
1447
|
+
{
|
|
1448
|
+
id: 196,
|
|
1449
|
+
name: I18n.getLang('country_CO'),
|
|
1450
|
+
...defFlagConfig,
|
|
1451
|
+
colors: [{ h: 0, s: 100, v: 100 }, { h: 210, s: 78, v: 100 }, { h: 60, s: 100, v: 100 },],
|
|
1452
|
+
},
|
|
1453
|
+
{
|
|
1454
|
+
id: 195,
|
|
1455
|
+
name: I18n.getLang('country_CG'),
|
|
1456
|
+
...defFlagConfig,
|
|
1457
|
+
colors: [{ h: 0, s: 100, v: 100 }, { h: 60, s: 100, v: 100 }, { h: 147, s: 100, v: 64 },],
|
|
1458
|
+
},
|
|
1459
|
+
{
|
|
1460
|
+
id: 194,
|
|
1461
|
+
name: I18n.getLang('country_cu'),
|
|
1462
|
+
...defFlagConfig,
|
|
1463
|
+
colors: [{ h: 210, s: 78, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
1464
|
+
},
|
|
1465
|
+
{
|
|
1466
|
+
id: 193,
|
|
1467
|
+
name: I18n.getLang('country_LV'),
|
|
1468
|
+
...defFlagConfig,
|
|
1469
|
+
colors: [{ h: 0, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
1470
|
+
},
|
|
1471
|
+
{
|
|
1472
|
+
id: 192,
|
|
1473
|
+
name: I18n.getLang('country_LY'),
|
|
1474
|
+
...defFlagConfig,
|
|
1475
|
+
colors: [{ h: 147, s: 100, v: 64 }, { h: 0, s: 0, v: 0 }, { h: 0, s: 100, v: 100 },],
|
|
1476
|
+
},
|
|
1477
|
+
{
|
|
1478
|
+
id: 191,
|
|
1479
|
+
name: I18n.getLang('country_LT'),
|
|
1480
|
+
...defFlagConfig,
|
|
1481
|
+
colors: [{ h: 0, s: 100, v: 100 }, { h: 147, s: 100, v: 64 }, { h: 60, s: 100, v: 100 },],
|
|
1482
|
+
},
|
|
1483
|
+
{
|
|
1484
|
+
id: 190,
|
|
1485
|
+
name: I18n.getLang('country_LU'),
|
|
1486
|
+
...defFlagConfig,
|
|
1487
|
+
colors: [{ h: 196, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
1488
|
+
},
|
|
1489
|
+
{
|
|
1490
|
+
id: 189,
|
|
1491
|
+
name: I18n.getLang('country_MG'),
|
|
1492
|
+
...defFlagConfig,
|
|
1493
|
+
colors: [{ h: 147, s: 100, v: 64 }, { h: 0, s: 100, v: 100 }, { h: 0, s: 0, v: 100 },],
|
|
1494
|
+
},
|
|
1495
|
+
{
|
|
1496
|
+
id: 188,
|
|
1497
|
+
name: I18n.getLang('country_MT'),
|
|
1498
|
+
...defFlagConfig,
|
|
1499
|
+
colors: [{ h: 0, s: 100, v: 100 }, { h: 0, s: 0, v: 100 },],
|
|
1500
|
+
},
|
|
1501
|
+
{
|
|
1502
|
+
id: 187,
|
|
1503
|
+
name: I18n.getLang('country_MA'),
|
|
1504
|
+
...defFlagConfig,
|
|
1505
|
+
colors: [{ h: 147, s: 100, v: 64 }, { h: 0, s: 100, v: 100 },],
|
|
1506
|
+
},
|
|
1507
|
+
{
|
|
1508
|
+
id: 186,
|
|
1509
|
+
name: I18n.getLang('country_VN'),
|
|
1510
|
+
...defFlagConfig,
|
|
1511
|
+
colors: [{ h: 60, s: 100, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
1512
|
+
},
|
|
1513
|
+
{
|
|
1514
|
+
id: 185,
|
|
1515
|
+
name: I18n.getLang('country_NA'),
|
|
1516
|
+
...defFlagConfig,
|
|
1517
|
+
colors: [{ h: 147, s: 100, v: 64 }, { h: 0, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 60, s: 100, v: 100 }, { h: 220, s: 100, v: 100 },],
|
|
1518
|
+
},
|
|
1519
|
+
{
|
|
1520
|
+
id: 184,
|
|
1521
|
+
name: I18n.getLang('country_NZ'),
|
|
1522
|
+
...defFlagConfig,
|
|
1523
|
+
colors: [{ h: 0, s: 0, v: 100 }, { h: 0, s: 100, v: 100 }, { h: 220, s: 100, v: 100 },],
|
|
1524
|
+
},
|
|
1525
|
+
{
|
|
1526
|
+
id: 183,
|
|
1527
|
+
name: I18n.getLang('country_NG'),
|
|
1528
|
+
...defFlagConfig,
|
|
1529
|
+
colors: [{ h: 147, s: 100, v: 64 }, { h: 0, s: 0, v: 100 }, { h: 147, s: 100, v: 64 },],
|
|
1530
|
+
},
|
|
1531
|
+
{
|
|
1532
|
+
id: 182,
|
|
1533
|
+
name: I18n.getLang('country_PK'),
|
|
1534
|
+
...defFlagConfig,
|
|
1535
|
+
colors: [{ h: 147, s: 100, v: 64 }, { h: 0, s: 0, v: 100 },],
|
|
1536
|
+
},
|
|
1537
|
+
{
|
|
1538
|
+
id: 181,
|
|
1539
|
+
name: I18n.getLang('country_PS'),
|
|
1540
|
+
...defFlagConfig,
|
|
1541
|
+
colors: [{ h: 147, s: 100, v: 64 }, { h: 0, s: 0, v: 100 }, { h: 0, s: 0, v: 0 }, { h: 0, s: 100, v: 100 },],
|
|
1542
|
+
},
|
|
1543
|
+
{
|
|
1544
|
+
id: 180,
|
|
1545
|
+
name: I18n.getLang('country_PY'),
|
|
1546
|
+
...defFlagConfig,
|
|
1547
|
+
colors: [{ h: 205, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
1548
|
+
},
|
|
1549
|
+
{
|
|
1550
|
+
id: 179,
|
|
1551
|
+
name: I18n.getLang('country_pe'),
|
|
1552
|
+
...defFlagConfig,
|
|
1553
|
+
colors: [{ h: 0, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
1554
|
+
},
|
|
1555
|
+
{
|
|
1556
|
+
id: 178,
|
|
1557
|
+
name: I18n.getLang('country_PH'),
|
|
1558
|
+
...defFlagConfig,
|
|
1559
|
+
colors: [{ h: 0, s: 100, v: 100 }, { h: 205, s: 100, v: 100 }, { h: 0, s: 0, v: 100 },],
|
|
1560
|
+
},
|
|
1561
|
+
{
|
|
1562
|
+
id: 177,
|
|
1563
|
+
name: I18n.getLang('country_PR'),
|
|
1564
|
+
...defFlagConfig,
|
|
1565
|
+
colors: [{ h: 0, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 205, s: 100, v: 100 },],
|
|
1566
|
+
},
|
|
1567
|
+
{
|
|
1568
|
+
id: 176,
|
|
1569
|
+
name: I18n.getLang('country_RU'),
|
|
1570
|
+
...defFlagConfig,
|
|
1571
|
+
colors: [{ h: 0, s: 100, v: 100 }, { h: 205, s: 100, v: 100 }, { h: 0, s: 0, v: 100 },],
|
|
1572
|
+
},
|
|
1573
|
+
{
|
|
1574
|
+
id: 175,
|
|
1575
|
+
name: I18n.getLang('country_ZA'),
|
|
1576
|
+
...defFlagConfig,
|
|
1577
|
+
colors: [{ h: 0, s: 0, v: 0 },{ h: 60, s: 100, v: 100 },{ h: 205, s: 100, v: 100 }, { h: 147, s: 100, v: 64 }, { h: 0, s: 0, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
1578
|
+
},
|
|
1579
|
+
{
|
|
1580
|
+
id: 174,
|
|
1581
|
+
name: I18n.getLang('country_sy'),
|
|
1582
|
+
...defFlagConfig,
|
|
1583
|
+
colors: [{ h: 0, s: 0, v: 0 }, { h: 147, s: 100, v: 64 }, { h: 0, s: 0, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
1584
|
+
},
|
|
1585
|
+
{
|
|
1586
|
+
id: 173,
|
|
1587
|
+
name: I18n.getLang('country_TH'),
|
|
1588
|
+
...defFlagConfig,
|
|
1589
|
+
colors: [{ h: 205, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
1590
|
+
},
|
|
1591
|
+
{
|
|
1592
|
+
id: 172,
|
|
1593
|
+
name: I18n.getLang('country_TN'),
|
|
1594
|
+
...defFlagConfig,
|
|
1595
|
+
colors: [{ h: 0, s: 0, v: 100 }, { h: 0, s: 100, v: 100 },],
|
|
1596
|
+
},
|
|
1597
|
+
{
|
|
1598
|
+
id: 171,
|
|
1599
|
+
name: I18n.getLang('country_UG'),
|
|
1600
|
+
...defFlagConfig,
|
|
1601
|
+
colors: [{ h: 0, s: 100, v: 100 }, { h: 60, s: 100, v: 100 }, { h: 0, s: 0, v: 0 },],
|
|
1602
|
+
},
|
|
1603
|
+
{
|
|
1604
|
+
id: 170,
|
|
1605
|
+
name: I18n.getLang('country_UY'),
|
|
1606
|
+
...defFlagConfig,
|
|
1607
|
+
colors: [{ h: 20, s: 100, v: 100 }, { h: 60, s: 100, v: 100 }, { h: 0, s: 0, v: 100 }, { h: 205, s: 100, v: 100 },],
|
|
1608
|
+
},
|
|
1609
|
+
{
|
|
1610
|
+
id: 169,
|
|
1611
|
+
name: I18n.getLang('country_VE'),
|
|
1612
|
+
...defFlagConfig,
|
|
1613
|
+
colors: [{ h: 0, s: 100, v: 100 }, { h: 205, s: 100, v: 100 }, { h: 60, s: 100, v: 100 },],
|
|
1614
|
+
}
|
|
908
1615
|
]
|