overtime-utils 0.2.50 → 0.2.52
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/main.js +1 -1
- package/package.json +21 -21
- package/src/constants/leagues/basketball.ts +485 -478
- package/src/constants/leagues/cricket.ts +95 -74
- package/src/constants/leagues/darts.ts +100 -94
- package/src/constants/leagues/handball.ts +176 -169
- package/src/constants/leagues/hockey.ts +229 -208
- package/src/constants/leagues/rugby.ts +86 -78
- package/src/constants/leagues/soccer.ts +2582 -2526
- package/src/constants/sports.ts +124 -122
- package/src/enums/sports.ts +766 -741
- package/src/types/feedbackCodes.ts +4 -4
- package/src/utils/feedbackCodes.ts +8 -8
|
@@ -1,2526 +1,2582 @@
|
|
|
1
|
-
import { League, MatchResolveType, PeriodType, Provider, ScoringType, Sport } from '../../enums/sports';
|
|
2
|
-
import { LeagueInfo } from '../../types/sports';
|
|
3
|
-
|
|
4
|
-
// Common default values for Soccer leagues
|
|
5
|
-
export const SOCCER_DEFAULTS = {
|
|
6
|
-
sport: Sport.SOCCER,
|
|
7
|
-
provider: Provider.OPTICODDS,
|
|
8
|
-
scoringType: ScoringType.GOALS,
|
|
9
|
-
matchResolveType: MatchResolveType.REGULAR,
|
|
10
|
-
periodType: PeriodType.HALF,
|
|
11
|
-
isDrawAvailable: true,
|
|
12
|
-
hidden: false,
|
|
13
|
-
} as const;
|
|
14
|
-
|
|
15
|
-
export const SOCCER_LEAGUES: Partial<Record<League, LeagueInfo>> = {
|
|
16
|
-
[League.MLS]: {
|
|
17
|
-
...SOCCER_DEFAULTS,
|
|
18
|
-
id: League.MLS,
|
|
19
|
-
label: 'MLS',
|
|
20
|
-
opticOddsName: 'USA - Major League Soccer',
|
|
21
|
-
logo: `/logos/leagueLogos/mls.webp`,
|
|
22
|
-
logoClass: 'icon-homepage league--mls',
|
|
23
|
-
priority: 140,
|
|
24
|
-
},
|
|
25
|
-
[League.EPL]: {
|
|
26
|
-
...SOCCER_DEFAULTS,
|
|
27
|
-
id: League.EPL,
|
|
28
|
-
label: 'EPL',
|
|
29
|
-
opticOddsName: 'England - Premier League',
|
|
30
|
-
logo: `/logos/leagueLogos/EPL.webp`,
|
|
31
|
-
logoClass: 'icon-homepage league--epl',
|
|
32
|
-
priority: 120,
|
|
33
|
-
},
|
|
34
|
-
[League.LIGUE_ONE]: {
|
|
35
|
-
...SOCCER_DEFAULTS,
|
|
36
|
-
id: League.LIGUE_ONE,
|
|
37
|
-
label: 'Ligue 1',
|
|
38
|
-
opticOddsName: 'France - Ligue 1',
|
|
39
|
-
logo: `/logos/leagueLogos/Ligue1.webp`,
|
|
40
|
-
logoClass: 'icon-homepage league--ligue1',
|
|
41
|
-
priority: 124,
|
|
42
|
-
},
|
|
43
|
-
[League.BUNDESLIGA]: {
|
|
44
|
-
...SOCCER_DEFAULTS,
|
|
45
|
-
id: League.BUNDESLIGA,
|
|
46
|
-
label: 'Bundesliga',
|
|
47
|
-
opticOddsName: 'Germany - Bundesliga',
|
|
48
|
-
logo: '/logos/leagueLogos/bundesliga.webp',
|
|
49
|
-
logoClass: 'icon-homepage league--bundesliga',
|
|
50
|
-
priority: 123,
|
|
51
|
-
},
|
|
52
|
-
[League.LA_LIGA]: {
|
|
53
|
-
...SOCCER_DEFAULTS,
|
|
54
|
-
id: League.LA_LIGA,
|
|
55
|
-
label: 'La Liga',
|
|
56
|
-
opticOddsName: 'Spain - La Liga',
|
|
57
|
-
logo: `/logos/leagueLogos/LaLiga.webp`,
|
|
58
|
-
logoClass: 'icon-homepage league--la-liga',
|
|
59
|
-
priority: 121,
|
|
60
|
-
},
|
|
61
|
-
[League.SERIE_A]: {
|
|
62
|
-
...SOCCER_DEFAULTS,
|
|
63
|
-
id: League.SERIE_A,
|
|
64
|
-
label: 'Serie A',
|
|
65
|
-
opticOddsName: 'Italy - Serie A',
|
|
66
|
-
logo: `/logos/leagueLogos/seriea.webp`,
|
|
67
|
-
logoClass: 'icon-homepage league--serie-a',
|
|
68
|
-
priority: 122,
|
|
69
|
-
},
|
|
70
|
-
[League.UEFA_CL]: {
|
|
71
|
-
...SOCCER_DEFAULTS,
|
|
72
|
-
id: League.UEFA_CL,
|
|
73
|
-
label: 'UEFA Champions League',
|
|
74
|
-
opticOddsName: 'UEFA - Champions League',
|
|
75
|
-
logo: `/logos/leagueLogos/ucl-white.webp`,
|
|
76
|
-
logoClass: 'icon-homepage league--ucl',
|
|
77
|
-
priority: 103,
|
|
78
|
-
tooltipKey: 'common.football-tooltip',
|
|
79
|
-
},
|
|
80
|
-
[League.UEFA_EL]: {
|
|
81
|
-
...SOCCER_DEFAULTS,
|
|
82
|
-
id: League.UEFA_EL,
|
|
83
|
-
label: 'UEFA Europa League',
|
|
84
|
-
opticOddsName: 'UEFA - Europa League',
|
|
85
|
-
logoClass: 'icon-homepage league--uel',
|
|
86
|
-
priority: 104,
|
|
87
|
-
tooltipKey: 'common.football-tooltip',
|
|
88
|
-
},
|
|
89
|
-
[League.FIFA_WC_QUALIFIERS]: {
|
|
90
|
-
...SOCCER_DEFAULTS,
|
|
91
|
-
id: League.FIFA_WC_QUALIFIERS,
|
|
92
|
-
label: 'FIFA World Cup Qualifiers',
|
|
93
|
-
opticOddsName: 'FIFA - World Cup Qualifiers',
|
|
94
|
-
logoClass: 'icon-homepage league--fifa-world-cup',
|
|
95
|
-
priority: 100,
|
|
96
|
-
tooltipKey: 'common.fifa-tooltip',
|
|
97
|
-
},
|
|
98
|
-
[League.FIFA_WORLD_CUP]: {
|
|
99
|
-
...SOCCER_DEFAULTS,
|
|
100
|
-
id: League.FIFA_WORLD_CUP,
|
|
101
|
-
label: 'FIFA World Cup',
|
|
102
|
-
opticOddsName: 'FIFA - World Cup',
|
|
103
|
-
logoClass: 'icon-homepage league--fifa-world-cup',
|
|
104
|
-
priority: 101,
|
|
105
|
-
tooltipKey: 'common.fifa-tooltip',
|
|
106
|
-
},
|
|
107
|
-
[League.J1_LEAGUE]: {
|
|
108
|
-
...SOCCER_DEFAULTS,
|
|
109
|
-
id: League.J1_LEAGUE,
|
|
110
|
-
label: 'J1 League',
|
|
111
|
-
opticOddsName: 'Japan - J1 League',
|
|
112
|
-
logoClass: 'icon-homepage league--j1',
|
|
113
|
-
priority: 144,
|
|
114
|
-
},
|
|
115
|
-
[League.COPA_AMERICA]: {
|
|
116
|
-
...SOCCER_DEFAULTS,
|
|
117
|
-
id: League.COPA_AMERICA,
|
|
118
|
-
label: 'Copa America 2024',
|
|
119
|
-
opticOddsName: 'CONMEBOL - Copa America',
|
|
120
|
-
provider: Provider.EMPTY,
|
|
121
|
-
priority: 102,
|
|
122
|
-
hidden: true,
|
|
123
|
-
},
|
|
124
|
-
[League.COPA_LIBERTADORES]: {
|
|
125
|
-
...SOCCER_DEFAULTS,
|
|
126
|
-
id: League.COPA_LIBERTADORES,
|
|
127
|
-
label: 'Copa Libertadores',
|
|
128
|
-
opticOddsName: 'CONMEBOL - Copa Libertadores',
|
|
129
|
-
logoClass: 'icon-homepage league--copa-libertadores',
|
|
130
|
-
priority: 107,
|
|
131
|
-
},
|
|
132
|
-
[League.UEFA_EURO]: {
|
|
133
|
-
...SOCCER_DEFAULTS,
|
|
134
|
-
id: League.UEFA_EURO,
|
|
135
|
-
label: 'UEFA EURO 2024',
|
|
136
|
-
opticOddsName: 'UEFA - European Championship',
|
|
137
|
-
provider: Provider.EMPTY,
|
|
138
|
-
logoClass: 'icon-homepage league--uefa',
|
|
139
|
-
priority: 101,
|
|
140
|
-
hidden: true,
|
|
141
|
-
tooltipKey: 'common.football-tooltip',
|
|
142
|
-
},
|
|
143
|
-
[League.EREDIVISIE]: {
|
|
144
|
-
...SOCCER_DEFAULTS,
|
|
145
|
-
id: League.EREDIVISIE,
|
|
146
|
-
label: 'Eredivisie',
|
|
147
|
-
opticOddsName: 'Netherlands - Eredivisie',
|
|
148
|
-
logoClass: 'icon-homepage league--eredivisie',
|
|
149
|
-
priority: 141,
|
|
150
|
-
},
|
|
151
|
-
[League.PRIMEIRA_LIGA]: {
|
|
152
|
-
...SOCCER_DEFAULTS,
|
|
153
|
-
id: League.PRIMEIRA_LIGA,
|
|
154
|
-
label: 'Primeira Liga',
|
|
155
|
-
opticOddsName: 'Portugal - Primeira Liga',
|
|
156
|
-
logoClass: 'icon-homepage league--portugal',
|
|
157
|
-
priority: 142,
|
|
158
|
-
},
|
|
159
|
-
[League.SUMMER_OLYMPICS_SOCCER_WOMEN]: {
|
|
160
|
-
...SOCCER_DEFAULTS,
|
|
161
|
-
id: League.SUMMER_OLYMPICS_SOCCER_WOMEN,
|
|
162
|
-
label: 'Olympic Games Soccer Women',
|
|
163
|
-
opticOddsName: 'Olympics Soccer Women',
|
|
164
|
-
provider: Provider.EMPTY,
|
|
165
|
-
logoClass: 'icon-homepage league--paris2024',
|
|
166
|
-
priority: 102,
|
|
167
|
-
hidden: true,
|
|
168
|
-
tooltipKey: 'common.football-tooltip',
|
|
169
|
-
},
|
|
170
|
-
[League.SUMMER_OLYMPICS_SOCCER]: {
|
|
171
|
-
...SOCCER_DEFAULTS,
|
|
172
|
-
id: League.SUMMER_OLYMPICS_SOCCER,
|
|
173
|
-
logoClass: 'icon-homepage league--paris2024',
|
|
174
|
-
label: 'Olympic Games Soccer',
|
|
175
|
-
opticOddsName: 'Olympics Soccer Men',
|
|
176
|
-
provider: Provider.EMPTY,
|
|
177
|
-
priority: 102,
|
|
178
|
-
hidden: true,
|
|
179
|
-
tooltipKey: 'common.football-tooltip',
|
|
180
|
-
},
|
|
181
|
-
[League.FIFA_WC_WOMEN]: {
|
|
182
|
-
...SOCCER_DEFAULTS,
|
|
183
|
-
id: League.FIFA_WC_WOMEN,
|
|
184
|
-
label: 'FIFA World Cup Women',
|
|
185
|
-
opticOddsName: 'FIFA - World Cup Women',
|
|
186
|
-
priority: 112,
|
|
187
|
-
hidden: false,
|
|
188
|
-
tooltipKey: 'common.football-tooltip',
|
|
189
|
-
},
|
|
190
|
-
[League.ENGLAND_FA_CUP]: {
|
|
191
|
-
...SOCCER_DEFAULTS,
|
|
192
|
-
id: League.ENGLAND_FA_CUP,
|
|
193
|
-
label: 'FA Cup',
|
|
194
|
-
opticOddsName: 'England - FA Cup',
|
|
195
|
-
priority: 130,
|
|
196
|
-
},
|
|
197
|
-
[League.FRANCE_CUP]: {
|
|
198
|
-
...SOCCER_DEFAULTS,
|
|
199
|
-
id: League.FRANCE_CUP,
|
|
200
|
-
label: 'Coupe de France',
|
|
201
|
-
opticOddsName: 'France - Coupe de France',
|
|
202
|
-
priority: 134,
|
|
203
|
-
},
|
|
204
|
-
[League.SPAIN_CUP]: {
|
|
205
|
-
...SOCCER_DEFAULTS,
|
|
206
|
-
id: League.SPAIN_CUP,
|
|
207
|
-
label: 'Copa del Rey',
|
|
208
|
-
opticOddsName: 'Spain - Copa del Rey',
|
|
209
|
-
priority: 131,
|
|
210
|
-
},
|
|
211
|
-
[League.ITALY_CUP]: {
|
|
212
|
-
...SOCCER_DEFAULTS,
|
|
213
|
-
id: League.ITALY_CUP,
|
|
214
|
-
label: 'Coppa Italia',
|
|
215
|
-
opticOddsName: 'Italy - Coppa Italia',
|
|
216
|
-
priority: 132,
|
|
217
|
-
},
|
|
218
|
-
[League.GERMANY_CUP]: {
|
|
219
|
-
...SOCCER_DEFAULTS,
|
|
220
|
-
id: League.GERMANY_CUP,
|
|
221
|
-
label: 'DFB Pokal',
|
|
222
|
-
opticOddsName: 'Germany - DFB Pokal',
|
|
223
|
-
priority: 133,
|
|
224
|
-
},
|
|
225
|
-
[League.DENMARK_DBU_POKALEN]: {
|
|
226
|
-
...SOCCER_DEFAULTS,
|
|
227
|
-
id: League.DENMARK_DBU_POKALEN,
|
|
228
|
-
label: 'Denmark DBU Pokalen',
|
|
229
|
-
opticOddsName: 'Denmark - DBU Pokalen',
|
|
230
|
-
priority: 135,
|
|
231
|
-
},
|
|
232
|
-
[League.GREECE_CUP]: {
|
|
233
|
-
...SOCCER_DEFAULTS,
|
|
234
|
-
id: League.GREECE_CUP,
|
|
235
|
-
label: 'Greece Cup',
|
|
236
|
-
opticOddsName: 'Greece - Cup',
|
|
237
|
-
priority: 136,
|
|
238
|
-
},
|
|
239
|
-
[League.POLAND_CUP]: {
|
|
240
|
-
...SOCCER_DEFAULTS,
|
|
241
|
-
id: League.POLAND_CUP,
|
|
242
|
-
label: 'Poland Cup',
|
|
243
|
-
opticOddsName: 'Poland - Cup',
|
|
244
|
-
priority: 137,
|
|
245
|
-
},
|
|
246
|
-
[League.NORWAY_NM_CUP]: {
|
|
247
|
-
...SOCCER_DEFAULTS,
|
|
248
|
-
id: League.NORWAY_NM_CUP,
|
|
249
|
-
label: 'Norway NM Cup',
|
|
250
|
-
opticOddsName: 'Norway - NM Cup',
|
|
251
|
-
priority: 138,
|
|
252
|
-
},
|
|
253
|
-
[League.BELGIUM_CUP]: {
|
|
254
|
-
...SOCCER_DEFAULTS,
|
|
255
|
-
id: League.BELGIUM_CUP,
|
|
256
|
-
label: 'Belgium Cup',
|
|
257
|
-
opticOddsName: 'Belgium - Cup',
|
|
258
|
-
priority: 139,
|
|
259
|
-
},
|
|
260
|
-
[League.ROMANIA_CUPA_ROMANIEI]: {
|
|
261
|
-
...SOCCER_DEFAULTS,
|
|
262
|
-
id: League.ROMANIA_CUPA_ROMANIEI,
|
|
263
|
-
label: 'Cupa Romaniei',
|
|
264
|
-
opticOddsName: 'Romania - Cupa Romaniei',
|
|
265
|
-
priority: 141,
|
|
266
|
-
},
|
|
267
|
-
[League.LIGA_MX]: {
|
|
268
|
-
...SOCCER_DEFAULTS,
|
|
269
|
-
id: League.LIGA_MX,
|
|
270
|
-
label: 'Liga MX',
|
|
271
|
-
opticOddsName: 'Mexico - Liga MX',
|
|
272
|
-
priority: 142,
|
|
273
|
-
},
|
|
274
|
-
[League.BRAZIL_1]: {
|
|
275
|
-
...SOCCER_DEFAULTS,
|
|
276
|
-
id: League.BRAZIL_1,
|
|
277
|
-
label: 'Brazil Serie A',
|
|
278
|
-
opticOddsName: 'Brazil - Serie A',
|
|
279
|
-
priority: 143,
|
|
280
|
-
},
|
|
281
|
-
[League.UEFA_EURO_U21]: {
|
|
282
|
-
...SOCCER_DEFAULTS,
|
|
283
|
-
id: League.UEFA_EURO_U21,
|
|
284
|
-
label: 'UEFA EURO U21',
|
|
285
|
-
provider: Provider.EMPTY,
|
|
286
|
-
priority: 111,
|
|
287
|
-
hidden: true,
|
|
288
|
-
tooltipKey: 'common.football-tooltip',
|
|
289
|
-
},
|
|
290
|
-
[League.FIFA_WORLD_CUP_U20]: {
|
|
291
|
-
...SOCCER_DEFAULTS,
|
|
292
|
-
id: League.FIFA_WORLD_CUP_U20,
|
|
293
|
-
label: 'FIFA World Cup U20',
|
|
294
|
-
opticOddsName: 'FIFA - World Cup U20',
|
|
295
|
-
logoClass: 'icon-homepage league--fifa-world-cup-u20',
|
|
296
|
-
priority: 110,
|
|
297
|
-
tooltipKey: 'common.fifa-tooltip',
|
|
298
|
-
},
|
|
299
|
-
[League.SAUDI_PROFESSIONAL_LEAGUE]: {
|
|
300
|
-
...SOCCER_DEFAULTS,
|
|
301
|
-
id: League.SAUDI_PROFESSIONAL_LEAGUE,
|
|
302
|
-
label: 'Saudi Arabia Saudi League',
|
|
303
|
-
opticOddsName: 'Saudi Arabia - Saudi League',
|
|
304
|
-
priority: 145,
|
|
305
|
-
},
|
|
306
|
-
[League.UEFA_NATIONS_LEAGUE]: {
|
|
307
|
-
...SOCCER_DEFAULTS,
|
|
308
|
-
id: League.UEFA_NATIONS_LEAGUE,
|
|
309
|
-
label: 'UEFA Nations League',
|
|
310
|
-
opticOddsName: 'UEFA - Nations League',
|
|
311
|
-
logoClass: 'icon-homepage league--uefa-nations',
|
|
312
|
-
priority: 106,
|
|
313
|
-
tooltipKey: 'common.football-tooltip',
|
|
314
|
-
},
|
|
315
|
-
[League.UEFA_NATIONS_LEAGUE_WOMEN]: {
|
|
316
|
-
...SOCCER_DEFAULTS,
|
|
317
|
-
id: League.UEFA_NATIONS_LEAGUE_WOMEN,
|
|
318
|
-
label: 'UEFA Nations League Women',
|
|
319
|
-
opticOddsName: 'UEFA - Nations League Women',
|
|
320
|
-
logoClass: 'icon-homepage league--uefa-nations',
|
|
321
|
-
priority: 108,
|
|
322
|
-
tooltipKey: 'common.football-tooltip',
|
|
323
|
-
},
|
|
324
|
-
[League.CANADA_PREMIER_LEAGUE]: {
|
|
325
|
-
...SOCCER_DEFAULTS,
|
|
326
|
-
id: League.CANADA_PREMIER_LEAGUE,
|
|
327
|
-
label: 'Canada Premier League',
|
|
328
|
-
opticOddsName: 'Canada - Premier League',
|
|
329
|
-
priority: 146,
|
|
330
|
-
},
|
|
331
|
-
[League.NORWAY_ELITESERIEN]: {
|
|
332
|
-
...SOCCER_DEFAULTS,
|
|
333
|
-
id: League.NORWAY_ELITESERIEN,
|
|
334
|
-
label: 'Norway Eliteserien',
|
|
335
|
-
opticOddsName: 'Norway - Eliteserien',
|
|
336
|
-
priority: 147,
|
|
337
|
-
},
|
|
338
|
-
[League.USA_OPEN_CUP]: {
|
|
339
|
-
...SOCCER_DEFAULTS,
|
|
340
|
-
id: League.USA_OPEN_CUP,
|
|
341
|
-
label: 'USA Open Cup',
|
|
342
|
-
opticOddsName: 'USA - Open Cup',
|
|
343
|
-
priority: 148,
|
|
344
|
-
},
|
|
345
|
-
[League.FIFA_CLUB_WORLD_CUP]: {
|
|
346
|
-
...SOCCER_DEFAULTS,
|
|
347
|
-
id: League.FIFA_CLUB_WORLD_CUP,
|
|
348
|
-
label: 'FIFA Club World Cup',
|
|
349
|
-
opticOddsName: 'FIFA - Club World Cup',
|
|
350
|
-
priority: 149,
|
|
351
|
-
},
|
|
352
|
-
[League.CONCACAF_NATIONS_LEAGUE]: {
|
|
353
|
-
...SOCCER_DEFAULTS,
|
|
354
|
-
id: League.CONCACAF_NATIONS_LEAGUE,
|
|
355
|
-
label: 'CONCACAF Nations League',
|
|
356
|
-
provider: Provider.EMPTY,
|
|
357
|
-
logoClass: 'icon-homepage league--concacaf-nations',
|
|
358
|
-
priority: 109,
|
|
359
|
-
tooltipKey: 'common.football-tooltip',
|
|
360
|
-
},
|
|
361
|
-
[League.CONMEBOL_WC_QUALIFICATIONS]: {
|
|
362
|
-
...SOCCER_DEFAULTS,
|
|
363
|
-
id: League.CONMEBOL_WC_QUALIFICATIONS,
|
|
364
|
-
label: 'CONMEBOL WC Qualification',
|
|
365
|
-
provider: Provider.EMPTY,
|
|
366
|
-
priority: 109,
|
|
367
|
-
},
|
|
368
|
-
[League.UEFA_CONFERENCE_LEAGUE]: {
|
|
369
|
-
...SOCCER_DEFAULTS,
|
|
370
|
-
id: League.UEFA_CONFERENCE_LEAGUE,
|
|
371
|
-
label: 'UEFA Conference League',
|
|
372
|
-
opticOddsName: 'UEFA - Europa Conference League',
|
|
373
|
-
priority: 105,
|
|
374
|
-
tooltipKey: 'common.football-tooltip',
|
|
375
|
-
},
|
|
376
|
-
[League.UEFA_CHAMPIONS_LEAGUE_QUALIFICATION]: {
|
|
377
|
-
...SOCCER_DEFAULTS,
|
|
378
|
-
id: League.UEFA_CHAMPIONS_LEAGUE_QUALIFICATION,
|
|
379
|
-
label: 'UEFA Champions League Qualification',
|
|
380
|
-
opticOddsName: 'UEFA - Champions League',
|
|
381
|
-
provider: Provider.EMPTY,
|
|
382
|
-
logo: `/logos/leagueLogos/ucl-white.webp`,
|
|
383
|
-
logoClass: 'icon-homepage league--ucl',
|
|
384
|
-
priority: 103,
|
|
385
|
-
tooltipKey: 'common.football-tooltip',
|
|
386
|
-
},
|
|
387
|
-
[League.UEFA_EUROPA_LEAGUE_QUALIFICATION]: {
|
|
388
|
-
...SOCCER_DEFAULTS,
|
|
389
|
-
id: League.UEFA_EUROPA_LEAGUE_QUALIFICATION,
|
|
390
|
-
label: 'UEFA Europa League Qualification',
|
|
391
|
-
opticOddsName: 'UEFA - Europa League',
|
|
392
|
-
provider: Provider.EMPTY,
|
|
393
|
-
logoClass: 'icon-homepage league--uel',
|
|
394
|
-
priority: 104,
|
|
395
|
-
tooltipKey: 'common.football-tooltip',
|
|
396
|
-
},
|
|
397
|
-
[League.UEFA_CONFERENCE_LEAGUE_QUALIFICATION]: {
|
|
398
|
-
...SOCCER_DEFAULTS,
|
|
399
|
-
id: League.UEFA_CONFERENCE_LEAGUE_QUALIFICATION,
|
|
400
|
-
label: 'UEFA Conference League Qualification',
|
|
401
|
-
opticOddsName: 'UEFA - Europa Conference League',
|
|
402
|
-
provider: Provider.EMPTY,
|
|
403
|
-
priority: 105,
|
|
404
|
-
tooltipKey: 'common.football-tooltip',
|
|
405
|
-
},
|
|
406
|
-
[League.UEFA_SUPER_CUP]: {
|
|
407
|
-
...SOCCER_DEFAULTS,
|
|
408
|
-
id: League.UEFA_SUPER_CUP,
|
|
409
|
-
label: 'UEFA Super Cup',
|
|
410
|
-
opticOddsName: 'UEFA - Super Cup',
|
|
411
|
-
priority: 102,
|
|
412
|
-
tooltipKey: 'common.football-tooltip',
|
|
413
|
-
},
|
|
414
|
-
[League.BRAZIL_CUP]: {
|
|
415
|
-
...SOCCER_DEFAULTS,
|
|
416
|
-
id: League.BRAZIL_CUP,
|
|
417
|
-
label: 'Copa do Brasil',
|
|
418
|
-
opticOddsName: 'Brazil - Copa do Brasil',
|
|
419
|
-
priority: 135,
|
|
420
|
-
tooltipKey: 'common.football-tooltip',
|
|
421
|
-
},
|
|
422
|
-
[League.ENGLAND_CHAMPIONSHIP]: {
|
|
423
|
-
...SOCCER_DEFAULTS,
|
|
424
|
-
id: League.ENGLAND_CHAMPIONSHIP,
|
|
425
|
-
label: 'EFL Championship',
|
|
426
|
-
opticOddsName: 'England - Championship',
|
|
427
|
-
priority: 125,
|
|
428
|
-
},
|
|
429
|
-
[League.SCOTLAND_PREMIERSHIP]: {
|
|
430
|
-
...SOCCER_DEFAULTS,
|
|
431
|
-
id: League.SCOTLAND_PREMIERSHIP,
|
|
432
|
-
label: 'Scotland Premiership',
|
|
433
|
-
opticOddsName: 'Scotland - Premiership',
|
|
434
|
-
priority: 151,
|
|
435
|
-
},
|
|
436
|
-
[League.BELGIUM_LEAGUE]: {
|
|
437
|
-
...SOCCER_DEFAULTS,
|
|
438
|
-
id: League.BELGIUM_LEAGUE,
|
|
439
|
-
label: 'Belgium Pro League',
|
|
440
|
-
opticOddsName: 'Belgium - Jupiler Pro League',
|
|
441
|
-
priority: 152,
|
|
442
|
-
},
|
|
443
|
-
[League.CZECH_LEAGUE]: {
|
|
444
|
-
...SOCCER_DEFAULTS,
|
|
445
|
-
id: League.CZECH_LEAGUE,
|
|
446
|
-
label: 'Czech Republic FNL',
|
|
447
|
-
opticOddsName: 'Czech Republic - FNL',
|
|
448
|
-
priority: 153,
|
|
449
|
-
},
|
|
450
|
-
[League.CHILE_PRIMERA_DIVISION]: {
|
|
451
|
-
...SOCCER_DEFAULTS,
|
|
452
|
-
id: League.CHILE_PRIMERA_DIVISION,
|
|
453
|
-
label: 'Chile Primera Division',
|
|
454
|
-
opticOddsName: 'Chile - Primera Division',
|
|
455
|
-
priority: 154,
|
|
456
|
-
},
|
|
457
|
-
[League.FINLAND_VEIKKAUSLIIGA]: {
|
|
458
|
-
...SOCCER_DEFAULTS,
|
|
459
|
-
id: League.FINLAND_VEIKKAUSLIIGA,
|
|
460
|
-
label: 'Finland Veikkausliiga',
|
|
461
|
-
opticOddsName: 'Finland - Veikkausliiga',
|
|
462
|
-
priority: 155,
|
|
463
|
-
},
|
|
464
|
-
[League.ARGENTINA_PRIMERA]: {
|
|
465
|
-
...SOCCER_DEFAULTS,
|
|
466
|
-
id: League.ARGENTINA_PRIMERA,
|
|
467
|
-
label: 'Argentina Primera Division',
|
|
468
|
-
opticOddsName: 'Argentina - Primera Division',
|
|
469
|
-
priority: 156,
|
|
470
|
-
},
|
|
471
|
-
[League.RUSSIA_PREMIER]: {
|
|
472
|
-
...SOCCER_DEFAULTS,
|
|
473
|
-
id: League.RUSSIA_PREMIER,
|
|
474
|
-
label: 'Russia Premier League',
|
|
475
|
-
opticOddsName: 'Russia - Premier League',
|
|
476
|
-
priority: 157,
|
|
477
|
-
},
|
|
478
|
-
[League.TURKEY_SUPER_LEAGUE]: {
|
|
479
|
-
...SOCCER_DEFAULTS,
|
|
480
|
-
id: League.TURKEY_SUPER_LEAGUE,
|
|
481
|
-
label: 'Turkey Super Lig',
|
|
482
|
-
opticOddsName: 'Turkey - Super Lig',
|
|
483
|
-
priority: 158,
|
|
484
|
-
},
|
|
485
|
-
[League.SERBIA_SUPER_LEAGUE]: {
|
|
486
|
-
...SOCCER_DEFAULTS,
|
|
487
|
-
id: League.SERBIA_SUPER_LEAGUE,
|
|
488
|
-
label: 'Serbia Super Liga',
|
|
489
|
-
opticOddsName: 'Serbia - Super Liga',
|
|
490
|
-
priority: 159,
|
|
491
|
-
},
|
|
492
|
-
[League.GREECE_SUPER_LEAGUE]: {
|
|
493
|
-
...SOCCER_DEFAULTS,
|
|
494
|
-
id: League.GREECE_SUPER_LEAGUE,
|
|
495
|
-
label: 'Greece Super League',
|
|
496
|
-
opticOddsName: 'Greece - Super League',
|
|
497
|
-
priority: 160,
|
|
498
|
-
},
|
|
499
|
-
[League.INDIA_PREMIER]: {
|
|
500
|
-
...SOCCER_DEFAULTS,
|
|
501
|
-
id: League.INDIA_PREMIER,
|
|
502
|
-
label: 'India Calcutta Premier Division',
|
|
503
|
-
opticOddsName: 'India - Calcutta Premier Division',
|
|
504
|
-
priority: 161,
|
|
505
|
-
hidden: true,
|
|
506
|
-
},
|
|
507
|
-
[League.CHINA_SUPER_LEAGUE]: {
|
|
508
|
-
...SOCCER_DEFAULTS,
|
|
509
|
-
id: League.CHINA_SUPER_LEAGUE,
|
|
510
|
-
label: 'China Super League',
|
|
511
|
-
opticOddsName: 'China - Super League',
|
|
512
|
-
priority: 162,
|
|
513
|
-
},
|
|
514
|
-
[League.AUSTRALIA_A_LEAGUE]: {
|
|
515
|
-
...SOCCER_DEFAULTS,
|
|
516
|
-
id: League.AUSTRALIA_A_LEAGUE,
|
|
517
|
-
label: 'Australia A-League',
|
|
518
|
-
opticOddsName: 'Australia - A-League',
|
|
519
|
-
priority: 163,
|
|
520
|
-
},
|
|
521
|
-
[League.SWITZERLAND_SUPER_LEAGUE]: {
|
|
522
|
-
...SOCCER_DEFAULTS,
|
|
523
|
-
id: League.SWITZERLAND_SUPER_LEAGUE,
|
|
524
|
-
label: 'Switzerland Super League',
|
|
525
|
-
opticOddsName: 'Switzerland - Super League',
|
|
526
|
-
priority: 164,
|
|
527
|
-
},
|
|
528
|
-
[League.BUNDESLIGA_2]: {
|
|
529
|
-
...SOCCER_DEFAULTS,
|
|
530
|
-
id: League.BUNDESLIGA_2,
|
|
531
|
-
label: 'Bundesliga 2',
|
|
532
|
-
opticOddsName: 'Germany - Bundesliga 2',
|
|
533
|
-
priority: 165,
|
|
534
|
-
},
|
|
535
|
-
[League.LA_LIGA_2]: {
|
|
536
|
-
...SOCCER_DEFAULTS,
|
|
537
|
-
id: League.LA_LIGA_2,
|
|
538
|
-
label: 'La Liga 2',
|
|
539
|
-
opticOddsName: 'Spain - La Liga 2',
|
|
540
|
-
priority: 166,
|
|
541
|
-
},
|
|
542
|
-
[League.SERIE_B]: {
|
|
543
|
-
...SOCCER_DEFAULTS,
|
|
544
|
-
id: League.SERIE_B,
|
|
545
|
-
label: 'Serie B',
|
|
546
|
-
opticOddsName: 'Italy - Serie B',
|
|
547
|
-
priority: 167,
|
|
548
|
-
},
|
|
549
|
-
[League.INDIA_SUPER_LEAGUE]: {
|
|
550
|
-
...SOCCER_DEFAULTS,
|
|
551
|
-
id: League.INDIA_SUPER_LEAGUE,
|
|
552
|
-
label: 'India Super League',
|
|
553
|
-
opticOddsName: 'India - Super League',
|
|
554
|
-
priority: 168,
|
|
555
|
-
hidden: false,
|
|
556
|
-
},
|
|
557
|
-
[League.LIGUE_2]: {
|
|
558
|
-
...SOCCER_DEFAULTS,
|
|
559
|
-
id: League.LIGUE_2,
|
|
560
|
-
label: 'Ligue 2',
|
|
561
|
-
opticOddsName: 'France - Ligue 2',
|
|
562
|
-
priority: 169,
|
|
563
|
-
},
|
|
564
|
-
[League.AUSTRIA_BUNDESLIGA]: {
|
|
565
|
-
...SOCCER_DEFAULTS,
|
|
566
|
-
id: League.AUSTRIA_BUNDESLIGA,
|
|
567
|
-
label: 'Austria Bundesliga',
|
|
568
|
-
opticOddsName: 'Austria - Bundesliga',
|
|
569
|
-
priority: 170,
|
|
570
|
-
},
|
|
571
|
-
[League.DENMARK_SUPER_LEAGUE]: {
|
|
572
|
-
...SOCCER_DEFAULTS,
|
|
573
|
-
id: League.DENMARK_SUPER_LEAGUE,
|
|
574
|
-
label: 'Denmark Superliga',
|
|
575
|
-
opticOddsName: 'Denmark - Superliga',
|
|
576
|
-
priority: 171,
|
|
577
|
-
},
|
|
578
|
-
[League.POLAND_LEAGUE]: {
|
|
579
|
-
...SOCCER_DEFAULTS,
|
|
580
|
-
id: League.POLAND_LEAGUE,
|
|
581
|
-
label: 'Poland Ekstraklasa',
|
|
582
|
-
opticOddsName: 'Poland - Ekstraklasa',
|
|
583
|
-
priority: 172,
|
|
584
|
-
},
|
|
585
|
-
[League.SWEDEN_LEAGUE]: {
|
|
586
|
-
...SOCCER_DEFAULTS,
|
|
587
|
-
id: League.SWEDEN_LEAGUE,
|
|
588
|
-
label: 'Sweden Allsvenskan',
|
|
589
|
-
opticOddsName: 'Sweden - Allsvenskan',
|
|
590
|
-
priority: 173,
|
|
591
|
-
},
|
|
592
|
-
[League.COLOMBIA_PRIMERA_A]: {
|
|
593
|
-
...SOCCER_DEFAULTS,
|
|
594
|
-
id: League.COLOMBIA_PRIMERA_A,
|
|
595
|
-
label: 'Colombia Primera A',
|
|
596
|
-
opticOddsName: 'Colombia - Primera A',
|
|
597
|
-
priority: 174,
|
|
598
|
-
},
|
|
599
|
-
[League.ENGLAND_EFL_CUP]: {
|
|
600
|
-
...SOCCER_DEFAULTS,
|
|
601
|
-
id: League.ENGLAND_EFL_CUP,
|
|
602
|
-
label: 'England EFL Cup',
|
|
603
|
-
opticOddsName: 'England - EFL Cup',
|
|
604
|
-
priority: 175,
|
|
605
|
-
},
|
|
606
|
-
[League.ENGLAND_LEGAUE_1]: {
|
|
607
|
-
...SOCCER_DEFAULTS,
|
|
608
|
-
id: League.ENGLAND_LEGAUE_1,
|
|
609
|
-
label: 'England League 1',
|
|
610
|
-
opticOddsName: 'England - League 1',
|
|
611
|
-
priority: 176,
|
|
612
|
-
},
|
|
613
|
-
[League.URUGUAY_PRIMERA_DIVISION]: {
|
|
614
|
-
...SOCCER_DEFAULTS,
|
|
615
|
-
id: League.URUGUAY_PRIMERA_DIVISION,
|
|
616
|
-
label: 'Uruguay Primera Division',
|
|
617
|
-
opticOddsName: 'Uruguay - Primera Division',
|
|
618
|
-
priority: 177,
|
|
619
|
-
},
|
|
620
|
-
[League.AFC_CHAMPIONS_LEAGUE]: {
|
|
621
|
-
...SOCCER_DEFAULTS,
|
|
622
|
-
id: League.AFC_CHAMPIONS_LEAGUE,
|
|
623
|
-
label: 'AFC Champions League',
|
|
624
|
-
opticOddsName: 'AFC - Champions League',
|
|
625
|
-
priority: 178,
|
|
626
|
-
},
|
|
627
|
-
[League.ITALY_SUPER_CUP]: {
|
|
628
|
-
...SOCCER_DEFAULTS,
|
|
629
|
-
id: League.ITALY_SUPER_CUP,
|
|
630
|
-
label: 'Italy Super Cup',
|
|
631
|
-
opticOddsName: 'Italy - Supercoppa',
|
|
632
|
-
priority: 179,
|
|
633
|
-
},
|
|
634
|
-
[League.FRANCE_SUPER_CUP]: {
|
|
635
|
-
...SOCCER_DEFAULTS,
|
|
636
|
-
id: League.FRANCE_SUPER_CUP,
|
|
637
|
-
label: 'France Super Cup',
|
|
638
|
-
opticOddsName: 'France - Super Cup',
|
|
639
|
-
priority: 180,
|
|
640
|
-
},
|
|
641
|
-
[League.SPAIN_SUPER_CUP]: {
|
|
642
|
-
...SOCCER_DEFAULTS,
|
|
643
|
-
id: League.SPAIN_SUPER_CUP,
|
|
644
|
-
label: 'Spain Super Cup',
|
|
645
|
-
opticOddsName: 'Spain - Supercopa',
|
|
646
|
-
priority: 181,
|
|
647
|
-
},
|
|
648
|
-
[League.GERMANY_SUPER_CUP]: {
|
|
649
|
-
...SOCCER_DEFAULTS,
|
|
650
|
-
id: League.GERMANY_SUPER_CUP,
|
|
651
|
-
label: 'Germany Super Cup',
|
|
652
|
-
opticOddsName: 'Germany - Super Cup',
|
|
653
|
-
priority: 182,
|
|
654
|
-
},
|
|
655
|
-
[League.PORTUGAL_LEAGUE_CUP]: {
|
|
656
|
-
...SOCCER_DEFAULTS,
|
|
657
|
-
id: League.PORTUGAL_LEAGUE_CUP,
|
|
658
|
-
label: 'Portugal League Cup',
|
|
659
|
-
opticOddsName: 'Portugal - League Cup',
|
|
660
|
-
priority: 183,
|
|
661
|
-
},
|
|
662
|
-
[League.THAILAND_LEAGUE_1]: {
|
|
663
|
-
...SOCCER_DEFAULTS,
|
|
664
|
-
id: League.THAILAND_LEAGUE_1,
|
|
665
|
-
label: 'Thai League 1',
|
|
666
|
-
opticOddsName: 'Thailand - Thai League 1',
|
|
667
|
-
priority: 184,
|
|
668
|
-
},
|
|
669
|
-
[League.NETHERLANDS_CUP]: {
|
|
670
|
-
...SOCCER_DEFAULTS,
|
|
671
|
-
id: League.NETHERLANDS_CUP,
|
|
672
|
-
label: 'Netherlands KNVB Beker',
|
|
673
|
-
opticOddsName: 'Netherlands - KNVB Beker',
|
|
674
|
-
priority: 185,
|
|
675
|
-
},
|
|
676
|
-
[League.PORTUGAL_CUP]: {
|
|
677
|
-
...SOCCER_DEFAULTS,
|
|
678
|
-
id: League.PORTUGAL_CUP,
|
|
679
|
-
label: 'Taca de Portugal',
|
|
680
|
-
opticOddsName: 'Portugal - Taca de Portugal',
|
|
681
|
-
priority: 186,
|
|
682
|
-
},
|
|
683
|
-
[League.CONCACAF_GOLD_CUP]: {
|
|
684
|
-
...SOCCER_DEFAULTS,
|
|
685
|
-
id: League.CONCACAF_GOLD_CUP,
|
|
686
|
-
label: 'CONCACAF Gold Cup',
|
|
687
|
-
opticOddsName: 'CONCACAF - Gold Cup',
|
|
688
|
-
priority: 187,
|
|
689
|
-
},
|
|
690
|
-
[League.ECUADOR_SERIE_A]: {
|
|
691
|
-
...SOCCER_DEFAULTS,
|
|
692
|
-
id: League.ECUADOR_SERIE_A,
|
|
693
|
-
label: 'Ecuador Serie A',
|
|
694
|
-
opticOddsName: 'Ecuador - Serie A',
|
|
695
|
-
priority: 188,
|
|
696
|
-
},
|
|
697
|
-
[League.COSAFA_CUP]: {
|
|
698
|
-
...SOCCER_DEFAULTS,
|
|
699
|
-
id: League.COSAFA_CUP,
|
|
700
|
-
label: 'COSAFA Cup',
|
|
701
|
-
opticOddsName: 'COSAFA - Cup',
|
|
702
|
-
priority: 187,
|
|
703
|
-
},
|
|
704
|
-
[League.ICELAND_BESTA_DEILD_KARLA]: {
|
|
705
|
-
...SOCCER_DEFAULTS,
|
|
706
|
-
id: League.ICELAND_BESTA_DEILD_KARLA,
|
|
707
|
-
label: 'Iceland Besta Deild Karla',
|
|
708
|
-
opticOddsName: 'Iceland - Besta Deild Karla',
|
|
709
|
-
priority: 189,
|
|
710
|
-
},
|
|
711
|
-
[League.KOREA_K1_LEAGUE]: {
|
|
712
|
-
...SOCCER_DEFAULTS,
|
|
713
|
-
id: League.KOREA_K1_LEAGUE,
|
|
714
|
-
label: 'Korea K1 League',
|
|
715
|
-
opticOddsName: 'Korea - K1 League',
|
|
716
|
-
priority: 189,
|
|
717
|
-
},
|
|
718
|
-
[League.ALGERIA_LIGUE_1]: {
|
|
719
|
-
...SOCCER_DEFAULTS,
|
|
720
|
-
id: League.ALGERIA_LIGUE_1,
|
|
721
|
-
label: 'Algeria Ligue 1',
|
|
722
|
-
opticOddsName: 'Algeria - Ligue 1',
|
|
723
|
-
priority: 189,
|
|
724
|
-
},
|
|
725
|
-
[League.PERU_PRIMERA_DIVISION]: {
|
|
726
|
-
...SOCCER_DEFAULTS,
|
|
727
|
-
id: League.PERU_PRIMERA_DIVISION,
|
|
728
|
-
label: 'Peru Primera Division',
|
|
729
|
-
opticOddsName: 'Peru - Primera Division',
|
|
730
|
-
priority: 188,
|
|
731
|
-
},
|
|
732
|
-
[League.UEFA_EUROPEAN_CHAMPIONSHIP_U21]: {
|
|
733
|
-
...SOCCER_DEFAULTS,
|
|
734
|
-
id: League.UEFA_EUROPEAN_CHAMPIONSHIP_U21,
|
|
735
|
-
label: 'UEFA European Championship U21',
|
|
736
|
-
opticOddsName: 'UEFA - European Championship U21',
|
|
737
|
-
priority: 189,
|
|
738
|
-
},
|
|
739
|
-
[League.UEFA_EUROPEAN_CHAMPIONSHIP_QUALIFIERS_U21]: {
|
|
740
|
-
...SOCCER_DEFAULTS,
|
|
741
|
-
id: League.UEFA_EUROPEAN_CHAMPIONSHIP_QUALIFIERS_U21,
|
|
742
|
-
label: 'UEFA European Championship Qualifiers U21',
|
|
743
|
-
opticOddsName: 'UEFA - European Championship Qualifiers U21',
|
|
744
|
-
priority: 189,
|
|
745
|
-
},
|
|
746
|
-
[League.UEFA_EUROPEAN_CHAMPIONSHIP_QUALIFIERS_U19]: {
|
|
747
|
-
...SOCCER_DEFAULTS,
|
|
748
|
-
id: League.UEFA_EUROPEAN_CHAMPIONSHIP_QUALIFIERS_U19,
|
|
749
|
-
label: 'UEFA European Championship Qualifiers U19',
|
|
750
|
-
opticOddsName: 'UEFA - European Championship Qualifiers U19',
|
|
751
|
-
priority: 189,
|
|
752
|
-
},
|
|
753
|
-
[League.UEFA_EUROPEAN_CHAMPIONSHIP_U19]: {
|
|
754
|
-
...SOCCER_DEFAULTS,
|
|
755
|
-
id: League.UEFA_EUROPEAN_CHAMPIONSHIP_U19,
|
|
756
|
-
label: 'UEFA European Championship U19',
|
|
757
|
-
opticOddsName: 'UEFA - European Championship U19',
|
|
758
|
-
priority: 189,
|
|
759
|
-
},
|
|
760
|
-
[League.UEFA_EUROPEAN_CHAMPIONSHIP_QUALIFIERS_WOMEN_U19]: {
|
|
761
|
-
...SOCCER_DEFAULTS,
|
|
762
|
-
id: League.UEFA_EUROPEAN_CHAMPIONSHIP_QUALIFIERS_WOMEN_U19,
|
|
763
|
-
label: 'UEFA European Championship Qualifiers Women U19',
|
|
764
|
-
opticOddsName: 'UEFA - European Championship Qualifiers Women U19',
|
|
765
|
-
priority: 190,
|
|
766
|
-
},
|
|
767
|
-
[League.UEFA_EUROPEAN_CHAMPIONSHIP_WOMEN_U19]: {
|
|
768
|
-
...SOCCER_DEFAULTS,
|
|
769
|
-
id: League.UEFA_EUROPEAN_CHAMPIONSHIP_WOMEN_U19,
|
|
770
|
-
label: 'UEFA European Championship Women U19',
|
|
771
|
-
opticOddsName: 'UEFA - European Championship Women U19',
|
|
772
|
-
priority: 190,
|
|
773
|
-
},
|
|
774
|
-
[League.UEFA_EUROPEAN_CHAMPIONSHIP_WOMEN]: {
|
|
775
|
-
...SOCCER_DEFAULTS,
|
|
776
|
-
id: League.UEFA_EUROPEAN_CHAMPIONSHIP_WOMEN,
|
|
777
|
-
label: 'UEFA European Championship Women',
|
|
778
|
-
opticOddsName: 'UEFA - European Championship Women',
|
|
779
|
-
priority: 190,
|
|
780
|
-
},
|
|
781
|
-
[League.ENGLAND_SUPER_LEAGUE_WOMEN]: {
|
|
782
|
-
...SOCCER_DEFAULTS,
|
|
783
|
-
id: League.ENGLAND_SUPER_LEAGUE_WOMEN,
|
|
784
|
-
label: "England Women's Super League",
|
|
785
|
-
opticOddsName: 'England - Womens Super League',
|
|
786
|
-
priority: 190,
|
|
787
|
-
},
|
|
788
|
-
[League.ITALY_SERIE_A_WOMEN]: {
|
|
789
|
-
...SOCCER_DEFAULTS,
|
|
790
|
-
id: League.ITALY_SERIE_A_WOMEN,
|
|
791
|
-
label: 'Italy Serie A Femminile',
|
|
792
|
-
opticOddsName: 'Italy - Serie A Femminile',
|
|
793
|
-
priority: 191,
|
|
794
|
-
},
|
|
795
|
-
[League.FRANCE_PREMIERE_LIGUE_WOMEN]: {
|
|
796
|
-
...SOCCER_DEFAULTS,
|
|
797
|
-
id: League.FRANCE_PREMIERE_LIGUE_WOMEN,
|
|
798
|
-
label: 'France Premiere Ligue Women',
|
|
799
|
-
opticOddsName: 'France - Premiere Ligue',
|
|
800
|
-
priority: 192,
|
|
801
|
-
},
|
|
802
|
-
[League.GERMANY_BUNDESLIGA_WOMEN]: {
|
|
803
|
-
...SOCCER_DEFAULTS,
|
|
804
|
-
id: League.GERMANY_BUNDESLIGA_WOMEN,
|
|
805
|
-
label: 'Germany Frauen Bundesliga',
|
|
806
|
-
opticOddsName: 'Germany - Frauen Bundesliga',
|
|
807
|
-
priority: 193,
|
|
808
|
-
},
|
|
809
|
-
[League.SPAIN_LIGA_F_WOMEN]: {
|
|
810
|
-
...SOCCER_DEFAULTS,
|
|
811
|
-
id: League.SPAIN_LIGA_F_WOMEN,
|
|
812
|
-
label: 'Spain Liga F Women',
|
|
813
|
-
opticOddsName: 'Spain - Liga F',
|
|
814
|
-
priority: 194,
|
|
815
|
-
},
|
|
816
|
-
[League.NETHERLANDS_EREDIVISIE_WOMEN]: {
|
|
817
|
-
...SOCCER_DEFAULTS,
|
|
818
|
-
id: League.NETHERLANDS_EREDIVISIE_WOMEN,
|
|
819
|
-
label: 'Netherlands Eredivisie Women',
|
|
820
|
-
opticOddsName: 'Netherlands - Vrouwen Eredivisie',
|
|
821
|
-
priority: 195,
|
|
822
|
-
},
|
|
823
|
-
[League.BELGIUM_SUPER_LEAGUE_WOMEN]: {
|
|
824
|
-
...SOCCER_DEFAULTS,
|
|
825
|
-
id: League.BELGIUM_SUPER_LEAGUE_WOMEN,
|
|
826
|
-
label: "Belgium Women's Super League",
|
|
827
|
-
opticOddsName: 'Belgium - Womens Super League',
|
|
828
|
-
priority: 196,
|
|
829
|
-
},
|
|
830
|
-
[League.UEFA_CHAMPIONS_LEAGUE_WOMEN]: {
|
|
831
|
-
...SOCCER_DEFAULTS,
|
|
832
|
-
id: League.UEFA_CHAMPIONS_LEAGUE_WOMEN,
|
|
833
|
-
label: 'UEFA Champions League Women',
|
|
834
|
-
opticOddsName: 'UEFA - Champions League Women',
|
|
835
|
-
priority: 197,
|
|
836
|
-
},
|
|
837
|
-
[League.USA_NWSL]: {
|
|
838
|
-
...SOCCER_DEFAULTS,
|
|
839
|
-
id: League.USA_NWSL,
|
|
840
|
-
label: 'USA NWSL',
|
|
841
|
-
opticOddsName: 'USA - NWSL',
|
|
842
|
-
priority: 198,
|
|
843
|
-
},
|
|
844
|
-
[League.AUSTRALIA_A_LEAGUE_WOMEN]: {
|
|
845
|
-
...SOCCER_DEFAULTS,
|
|
846
|
-
id: League.AUSTRALIA_A_LEAGUE_WOMEN,
|
|
847
|
-
label: 'Australia A-League Women',
|
|
848
|
-
opticOddsName: 'Australia - A-League Women',
|
|
849
|
-
priority: 199,
|
|
850
|
-
},
|
|
851
|
-
[League.CONCACAF_CHAMPIONS_CUP]: {
|
|
852
|
-
...SOCCER_DEFAULTS,
|
|
853
|
-
id: League.CONCACAF_CHAMPIONS_CUP,
|
|
854
|
-
label: 'CONCACAF Champions Cup',
|
|
855
|
-
opticOddsName: 'CONCACAF - Champions Cup',
|
|
856
|
-
priority: 150,
|
|
857
|
-
tooltipKey: 'common.football-tooltip',
|
|
858
|
-
},
|
|
859
|
-
[League.SLOVAKIA_SUPERLIGA]: {
|
|
860
|
-
...SOCCER_DEFAULTS,
|
|
861
|
-
id: League.SLOVAKIA_SUPERLIGA,
|
|
862
|
-
label: 'Slovakia Superliga',
|
|
863
|
-
opticOddsName: 'Slovakia - Superliga',
|
|
864
|
-
priority: 150,
|
|
865
|
-
},
|
|
866
|
-
[League.CHINA_FA_CUP]: {
|
|
867
|
-
...SOCCER_DEFAULTS,
|
|
868
|
-
id: League.CHINA_FA_CUP,
|
|
869
|
-
label: 'China FA Cup',
|
|
870
|
-
opticOddsName: 'China - FA Cup',
|
|
871
|
-
priority: 150,
|
|
872
|
-
},
|
|
873
|
-
[League.ROMANIA_LIGA_I]: {
|
|
874
|
-
...SOCCER_DEFAULTS,
|
|
875
|
-
id: League.ROMANIA_LIGA_I,
|
|
876
|
-
label: 'Romania Liga I',
|
|
877
|
-
opticOddsName: 'Romania - Liga I',
|
|
878
|
-
priority: 150,
|
|
879
|
-
},
|
|
880
|
-
[League.BULGARIA_PARVA_LIGA]: {
|
|
881
|
-
...SOCCER_DEFAULTS,
|
|
882
|
-
id: League.BULGARIA_PARVA_LIGA,
|
|
883
|
-
label: 'Bulgaria Parva Liga',
|
|
884
|
-
opticOddsName: 'Bulgaria - Parva Liga',
|
|
885
|
-
priority: 150,
|
|
886
|
-
},
|
|
887
|
-
[League.LITHUANIA_A_LYGA]: {
|
|
888
|
-
...SOCCER_DEFAULTS,
|
|
889
|
-
id: League.LITHUANIA_A_LYGA,
|
|
890
|
-
label: 'Lithuania A Lyga',
|
|
891
|
-
opticOddsName: 'Lithuania - A Lyga',
|
|
892
|
-
priority: 150,
|
|
893
|
-
},
|
|
894
|
-
[League.LATVIA_VIRSLIGA]: {
|
|
895
|
-
...SOCCER_DEFAULTS,
|
|
896
|
-
id: League.LATVIA_VIRSLIGA,
|
|
897
|
-
label: 'Latvia Virsliga',
|
|
898
|
-
opticOddsName: 'Latvia - Virsliga',
|
|
899
|
-
priority: 150,
|
|
900
|
-
},
|
|
901
|
-
[League.IRELAND_PREMIER_LEAGUE]: {
|
|
902
|
-
...SOCCER_DEFAULTS,
|
|
903
|
-
id: League.IRELAND_PREMIER_LEAGUE,
|
|
904
|
-
label: 'Ireland Premier League',
|
|
905
|
-
opticOddsName: 'Ireland - Premier League',
|
|
906
|
-
priority: 150,
|
|
907
|
-
},
|
|
908
|
-
[League.SLOVENIA_PRVALIGA]: {
|
|
909
|
-
...SOCCER_DEFAULTS,
|
|
910
|
-
id: League.SLOVENIA_PRVALIGA,
|
|
911
|
-
label: 'Slovenia PrvaLiga',
|
|
912
|
-
opticOddsName: 'Slovenia - PrvaLiga',
|
|
913
|
-
priority: 150,
|
|
914
|
-
},
|
|
915
|
-
[League.HUNGARY_NB_I]: {
|
|
916
|
-
...SOCCER_DEFAULTS,
|
|
917
|
-
id: League.HUNGARY_NB_I,
|
|
918
|
-
label: 'Hungary NB I',
|
|
919
|
-
opticOddsName: 'Hungary - NB I',
|
|
920
|
-
priority: 150,
|
|
921
|
-
},
|
|
922
|
-
[League.CROATIA_1_HNL]: {
|
|
923
|
-
...SOCCER_DEFAULTS,
|
|
924
|
-
id: League.CROATIA_1_HNL,
|
|
925
|
-
label: 'Croatia 1. HNL',
|
|
926
|
-
opticOddsName: 'Croatia - 1. HNL',
|
|
927
|
-
priority: 150,
|
|
928
|
-
},
|
|
929
|
-
[League.CYPRUS_FIRST_DIVISION]: {
|
|
930
|
-
...SOCCER_DEFAULTS,
|
|
931
|
-
id: League.CYPRUS_FIRST_DIVISION,
|
|
932
|
-
label: 'Cyprus First Division',
|
|
933
|
-
opticOddsName: 'Cyprus - First Division',
|
|
934
|
-
priority: 150,
|
|
935
|
-
},
|
|
936
|
-
[League.CZECH_REPUBLIC_FIRST_LEAGUE]: {
|
|
937
|
-
...SOCCER_DEFAULTS,
|
|
938
|
-
id: League.CZECH_REPUBLIC_FIRST_LEAGUE,
|
|
939
|
-
label: 'Czech Republic First League',
|
|
940
|
-
opticOddsName: 'Czech Republic - First League',
|
|
941
|
-
priority: 150,
|
|
942
|
-
},
|
|
943
|
-
[League.MALTA_PREMIER_LEAGUE]: {
|
|
944
|
-
...SOCCER_DEFAULTS,
|
|
945
|
-
id: League.MALTA_PREMIER_LEAGUE,
|
|
946
|
-
label: 'Malta Premier League',
|
|
947
|
-
opticOddsName: 'Malta - Premier League',
|
|
948
|
-
priority: 150,
|
|
949
|
-
},
|
|
950
|
-
[League.INTERNATIONAL_CLUB_FRIENDLIES]: {
|
|
951
|
-
...SOCCER_DEFAULTS,
|
|
952
|
-
id: League.INTERNATIONAL_CLUB_FRIENDLIES,
|
|
953
|
-
label: 'International Club Friendlies',
|
|
954
|
-
opticOddsName: 'International - Club Friendlies',
|
|
955
|
-
priority: 151,
|
|
956
|
-
},
|
|
957
|
-
[League.INTERNATIONAL_FRIENDLIES]: {
|
|
958
|
-
...SOCCER_DEFAULTS,
|
|
959
|
-
id: League.INTERNATIONAL_FRIENDLIES,
|
|
960
|
-
label: 'International Friendlies',
|
|
961
|
-
opticOddsName: 'International - Friendlies',
|
|
962
|
-
priority: 151,
|
|
963
|
-
},
|
|
964
|
-
[League.INTERNATIONAL_FRIENDLIES_WOMEN]: {
|
|
965
|
-
...SOCCER_DEFAULTS,
|
|
966
|
-
id: League.INTERNATIONAL_FRIENDLIES_WOMEN,
|
|
967
|
-
label: 'International Friendlies Women',
|
|
968
|
-
opticOddsName: 'International - Friendlies Women',
|
|
969
|
-
priority: 151,
|
|
970
|
-
},
|
|
971
|
-
[League.NORTH_AMERICA_LEAGUES_CUP]: {
|
|
972
|
-
...SOCCER_DEFAULTS,
|
|
973
|
-
id: League.NORTH_AMERICA_LEAGUES_CUP,
|
|
974
|
-
label: 'North America Leagues Cup',
|
|
975
|
-
opticOddsName: 'North America - Leagues Cup',
|
|
976
|
-
priority: 150,
|
|
977
|
-
},
|
|
978
|
-
[League.BRAZIL_SERIE_B]: {
|
|
979
|
-
...SOCCER_DEFAULTS,
|
|
980
|
-
id: League.BRAZIL_SERIE_B,
|
|
981
|
-
label: 'Brazil Serie B',
|
|
982
|
-
opticOddsName: 'Brazil - Serie B',
|
|
983
|
-
priority: 150,
|
|
984
|
-
},
|
|
985
|
-
[League.AUSTRALIA_CUP]: {
|
|
986
|
-
...SOCCER_DEFAULTS,
|
|
987
|
-
id: League.AUSTRALIA_CUP,
|
|
988
|
-
label: 'Australia Cup',
|
|
989
|
-
opticOddsName: 'Australia - Cup',
|
|
990
|
-
priority: 150,
|
|
991
|
-
},
|
|
992
|
-
[League.KAZAKHSTAN_PREMIER_LEAGUE]: {
|
|
993
|
-
...SOCCER_DEFAULTS,
|
|
994
|
-
id: League.KAZAKHSTAN_PREMIER_LEAGUE,
|
|
995
|
-
label: 'Kazakhstan Premier League',
|
|
996
|
-
opticOddsName: 'Kazakhstan - Premier League',
|
|
997
|
-
priority: 150,
|
|
998
|
-
},
|
|
999
|
-
[League.ESTONIA_PREMIUM_LIIGA]: {
|
|
1000
|
-
...SOCCER_DEFAULTS,
|
|
1001
|
-
id: League.ESTONIA_PREMIUM_LIIGA,
|
|
1002
|
-
label: 'Estonia Premium Liiga',
|
|
1003
|
-
opticOddsName: 'Estonia - Premium Liiga',
|
|
1004
|
-
priority: 150,
|
|
1005
|
-
},
|
|
1006
|
-
[League.USA_USL_CHAMPIONSHIP]: {
|
|
1007
|
-
...SOCCER_DEFAULTS,
|
|
1008
|
-
id: League.USA_USL_CHAMPIONSHIP,
|
|
1009
|
-
label: 'USA USL Championship',
|
|
1010
|
-
opticOddsName: 'USA - USL Championship',
|
|
1011
|
-
priority: 150,
|
|
1012
|
-
},
|
|
1013
|
-
[League.COSTA_RICA_PRIMERA_DIVISION]: {
|
|
1014
|
-
...SOCCER_DEFAULTS,
|
|
1015
|
-
id: League.COSTA_RICA_PRIMERA_DIVISION,
|
|
1016
|
-
label: 'Costa Rica Primera Division',
|
|
1017
|
-
opticOddsName: 'Costa Rica - Primera Division',
|
|
1018
|
-
priority: 150,
|
|
1019
|
-
},
|
|
1020
|
-
[League.RUSSIA_CUP]: {
|
|
1021
|
-
...SOCCER_DEFAULTS,
|
|
1022
|
-
id: League.RUSSIA_CUP,
|
|
1023
|
-
label: 'Russia Cup',
|
|
1024
|
-
opticOddsName: 'Russia - Cup',
|
|
1025
|
-
priority: 150,
|
|
1026
|
-
},
|
|
1027
|
-
[League.SWEDEN_SUPERETTAN]: {
|
|
1028
|
-
...SOCCER_DEFAULTS,
|
|
1029
|
-
id: League.SWEDEN_SUPERETTAN,
|
|
1030
|
-
label: 'Sweden Superettan',
|
|
1031
|
-
opticOddsName: 'Sweden - Superettan',
|
|
1032
|
-
priority: 150,
|
|
1033
|
-
},
|
|
1034
|
-
[League.SWITZERLAND_CHALLENGE_LEAGUE]: {
|
|
1035
|
-
...SOCCER_DEFAULTS,
|
|
1036
|
-
id: League.SWITZERLAND_CHALLENGE_LEAGUE,
|
|
1037
|
-
label: 'Switzerland Challenge League',
|
|
1038
|
-
opticOddsName: 'Switzerland - Challenge League',
|
|
1039
|
-
priority: 150,
|
|
1040
|
-
},
|
|
1041
|
-
[League.PORTUGAL_SUPER_CUP]: {
|
|
1042
|
-
...SOCCER_DEFAULTS,
|
|
1043
|
-
id: League.PORTUGAL_SUPER_CUP,
|
|
1044
|
-
label: 'Portugal Super Cup',
|
|
1045
|
-
opticOddsName: 'Portugal - Super Cup',
|
|
1046
|
-
priority: 140,
|
|
1047
|
-
},
|
|
1048
|
-
[League.NETHERLANDS_SUPER_CUP]: {
|
|
1049
|
-
...SOCCER_DEFAULTS,
|
|
1050
|
-
id: League.NETHERLANDS_SUPER_CUP,
|
|
1051
|
-
label: 'Netherlands Super Cup',
|
|
1052
|
-
opticOddsName: 'Netherlands - Super Cup',
|
|
1053
|
-
priority: 140,
|
|
1054
|
-
},
|
|
1055
|
-
[League.ARGENTINA_COPA_ARGENTINA]: {
|
|
1056
|
-
...SOCCER_DEFAULTS,
|
|
1057
|
-
id: League.ARGENTINA_COPA_ARGENTINA,
|
|
1058
|
-
label: 'Argentina Copa Argentina',
|
|
1059
|
-
opticOddsName: 'Argentina - Copa Argentina',
|
|
1060
|
-
priority: 141,
|
|
1061
|
-
},
|
|
1062
|
-
[League.NORWAY_1_DIVISJON]: {
|
|
1063
|
-
...SOCCER_DEFAULTS,
|
|
1064
|
-
id: League.NORWAY_1_DIVISJON,
|
|
1065
|
-
label: 'Norway 1. Divisjon',
|
|
1066
|
-
opticOddsName: 'Norway - 1. Divisjon',
|
|
1067
|
-
priority: 150,
|
|
1068
|
-
},
|
|
1069
|
-
[League.DENMARK_1ST_DIVISION]: {
|
|
1070
|
-
...SOCCER_DEFAULTS,
|
|
1071
|
-
id: League.DENMARK_1ST_DIVISION,
|
|
1072
|
-
label: 'Denmark 1st Division',
|
|
1073
|
-
opticOddsName: 'Denmark - 1st Division',
|
|
1074
|
-
priority: 150,
|
|
1075
|
-
},
|
|
1076
|
-
[League.ENGLAND_COMMUNITY_SHIELD]: {
|
|
1077
|
-
...SOCCER_DEFAULTS,
|
|
1078
|
-
id: League.ENGLAND_COMMUNITY_SHIELD,
|
|
1079
|
-
label: 'England Community Shield',
|
|
1080
|
-
opticOddsName: 'England - Community Shield',
|
|
1081
|
-
priority: 150,
|
|
1082
|
-
},
|
|
1083
|
-
[League.EGYPT_PREMIER_LEAGUE]: {
|
|
1084
|
-
...SOCCER_DEFAULTS,
|
|
1085
|
-
id: League.EGYPT_PREMIER_LEAGUE,
|
|
1086
|
-
label: 'Egypt Premier League',
|
|
1087
|
-
opticOddsName: 'Egypt - Premier League',
|
|
1088
|
-
priority: 150,
|
|
1089
|
-
},
|
|
1090
|
-
[League.UZBEKISTAN_SUPER_LEAGUE]: {
|
|
1091
|
-
...SOCCER_DEFAULTS,
|
|
1092
|
-
id: League.UZBEKISTAN_SUPER_LEAGUE,
|
|
1093
|
-
label: 'Uzbekistan Super League',
|
|
1094
|
-
opticOddsName: 'Uzbekistan - Super League',
|
|
1095
|
-
priority: 150,
|
|
1096
|
-
},
|
|
1097
|
-
[League.WALES_CYMRU_PREMIER]: {
|
|
1098
|
-
...SOCCER_DEFAULTS,
|
|
1099
|
-
id: League.WALES_CYMRU_PREMIER,
|
|
1100
|
-
label: 'Wales Cymru Premier',
|
|
1101
|
-
opticOddsName: 'Wales - Cymru Premier',
|
|
1102
|
-
priority: 150,
|
|
1103
|
-
},
|
|
1104
|
-
[League.NORTHERN_IRELAND_PREMIERSHIP]: {
|
|
1105
|
-
...SOCCER_DEFAULTS,
|
|
1106
|
-
id: League.NORTHERN_IRELAND_PREMIERSHIP,
|
|
1107
|
-
label: 'Northern Ireland Premiership',
|
|
1108
|
-
opticOddsName: 'Northern Ireland - Premiership',
|
|
1109
|
-
priority: 150,
|
|
1110
|
-
},
|
|
1111
|
-
[League.BELARUS_PREMIER_LEAGUE]: {
|
|
1112
|
-
...SOCCER_DEFAULTS,
|
|
1113
|
-
id: League.BELARUS_PREMIER_LEAGUE,
|
|
1114
|
-
label: 'Belarus Premier League',
|
|
1115
|
-
opticOddsName: 'Belarus - Premier League',
|
|
1116
|
-
priority: 150,
|
|
1117
|
-
},
|
|
1118
|
-
[League.SOUTH_AFRICA_PREMIER_LEAGUE]: {
|
|
1119
|
-
...SOCCER_DEFAULTS,
|
|
1120
|
-
id: League.SOUTH_AFRICA_PREMIER_LEAGUE,
|
|
1121
|
-
label: 'South Africa Premier League',
|
|
1122
|
-
opticOddsName: 'South Africa - Premier League',
|
|
1123
|
-
priority: 150,
|
|
1124
|
-
},
|
|
1125
|
-
[League.INDONESIA_LIGA_1]: {
|
|
1126
|
-
...SOCCER_DEFAULTS,
|
|
1127
|
-
id: League.INDONESIA_LIGA_1,
|
|
1128
|
-
label: 'Indonesia Liga 1',
|
|
1129
|
-
opticOddsName: 'Indonesia - Liga 1',
|
|
1130
|
-
priority: 150,
|
|
1131
|
-
},
|
|
1132
|
-
[League.QATAR_STARS_LEAGUE]: {
|
|
1133
|
-
...SOCCER_DEFAULTS,
|
|
1134
|
-
id: League.QATAR_STARS_LEAGUE,
|
|
1135
|
-
label: 'Qatar Stars League',
|
|
1136
|
-
opticOddsName: 'Qatar - Stars League',
|
|
1137
|
-
priority: 150,
|
|
1138
|
-
},
|
|
1139
|
-
[League.GEORGIA_EROVNULI_LIGA]: {
|
|
1140
|
-
...SOCCER_DEFAULTS,
|
|
1141
|
-
id: League.GEORGIA_EROVNULI_LIGA,
|
|
1142
|
-
label: 'Georgia Erovnuli Liga',
|
|
1143
|
-
opticOddsName: 'Georgia - Erovnuli Liga',
|
|
1144
|
-
priority: 150,
|
|
1145
|
-
},
|
|
1146
|
-
[League.MALAYSIA_SUPER_LEAGUE]: {
|
|
1147
|
-
...SOCCER_DEFAULTS,
|
|
1148
|
-
id: League.MALAYSIA_SUPER_LEAGUE,
|
|
1149
|
-
label: 'Malaysia Super League',
|
|
1150
|
-
opticOddsName: 'Malaysia - Super League',
|
|
1151
|
-
priority: 150,
|
|
1152
|
-
},
|
|
1153
|
-
[League.VIETNAM_V_LEAGUE_1]: {
|
|
1154
|
-
...SOCCER_DEFAULTS,
|
|
1155
|
-
id: League.VIETNAM_V_LEAGUE_1,
|
|
1156
|
-
label: 'Vietnam V League 1',
|
|
1157
|
-
opticOddsName: 'Vietnam - V League 1',
|
|
1158
|
-
priority: 150,
|
|
1159
|
-
},
|
|
1160
|
-
[League.AUSTRIA_2_LIGA]: {
|
|
1161
|
-
...SOCCER_DEFAULTS,
|
|
1162
|
-
id: League.AUSTRIA_2_LIGA,
|
|
1163
|
-
label: 'Austria 2 Liga',
|
|
1164
|
-
opticOddsName: 'Austria - 2. Liga',
|
|
1165
|
-
priority: 150,
|
|
1166
|
-
},
|
|
1167
|
-
[League.BELGIUM_CHALLENGER_PRO_LEAGUE]: {
|
|
1168
|
-
...SOCCER_DEFAULTS,
|
|
1169
|
-
id: League.BELGIUM_CHALLENGER_PRO_LEAGUE,
|
|
1170
|
-
label: 'Belgium Challenger Pro League',
|
|
1171
|
-
opticOddsName: 'Belgium - Challenger Pro League',
|
|
1172
|
-
priority: 150,
|
|
1173
|
-
},
|
|
1174
|
-
[League.NETHERLANDS_EERSTE_DIVISIE]: {
|
|
1175
|
-
...SOCCER_DEFAULTS,
|
|
1176
|
-
id: League.NETHERLANDS_EERSTE_DIVISIE,
|
|
1177
|
-
label: 'Netherlands Eerste Divisie',
|
|
1178
|
-
opticOddsName: 'Netherlands - Eerste Divisie',
|
|
1179
|
-
priority: 150,
|
|
1180
|
-
},
|
|
1181
|
-
[League.IRELAND_DIVISION_1]: {
|
|
1182
|
-
...SOCCER_DEFAULTS,
|
|
1183
|
-
id: League.IRELAND_DIVISION_1,
|
|
1184
|
-
label: 'Ireland Division 1',
|
|
1185
|
-
opticOddsName: 'Ireland - Division 1',
|
|
1186
|
-
priority: 150,
|
|
1187
|
-
},
|
|
1188
|
-
[League.PORTUGAL_SEGUNDA_LIGA]: {
|
|
1189
|
-
...SOCCER_DEFAULTS,
|
|
1190
|
-
id: League.PORTUGAL_SEGUNDA_LIGA,
|
|
1191
|
-
label: 'Portugal Segunda Liga',
|
|
1192
|
-
opticOddsName: 'Portugal - Segunda Liga',
|
|
1193
|
-
priority: 150,
|
|
1194
|
-
},
|
|
1195
|
-
[League.RUSSIA_FIRST_LEAGUE]: {
|
|
1196
|
-
...SOCCER_DEFAULTS,
|
|
1197
|
-
id: League.RUSSIA_FIRST_LEAGUE,
|
|
1198
|
-
label: 'Russia First League',
|
|
1199
|
-
opticOddsName: 'Russia - First League',
|
|
1200
|
-
priority: 150,
|
|
1201
|
-
},
|
|
1202
|
-
[League.SCOTLAND_CHAMPIONSHIP]: {
|
|
1203
|
-
...SOCCER_DEFAULTS,
|
|
1204
|
-
id: League.SCOTLAND_CHAMPIONSHIP,
|
|
1205
|
-
label: 'Scotland Championship',
|
|
1206
|
-
opticOddsName: 'Scotland - Championship',
|
|
1207
|
-
priority: 150,
|
|
1208
|
-
},
|
|
1209
|
-
[League.TURKEY_1_LIG]: {
|
|
1210
|
-
...SOCCER_DEFAULTS,
|
|
1211
|
-
id: League.TURKEY_1_LIG,
|
|
1212
|
-
label: 'Turkey 1 Lig',
|
|
1213
|
-
opticOddsName: 'Turkey - 1. Lig',
|
|
1214
|
-
priority: 150,
|
|
1215
|
-
},
|
|
1216
|
-
[League.ENGLAND_LEAGUE_2]: {
|
|
1217
|
-
...SOCCER_DEFAULTS,
|
|
1218
|
-
id: League.ENGLAND_LEAGUE_2,
|
|
1219
|
-
label: 'England League 2',
|
|
1220
|
-
opticOddsName: 'England - League 2',
|
|
1221
|
-
priority: 150,
|
|
1222
|
-
},
|
|
1223
|
-
[League.ENGLAND_NATIONAL_LEAGUE]: {
|
|
1224
|
-
...SOCCER_DEFAULTS,
|
|
1225
|
-
id: League.ENGLAND_NATIONAL_LEAGUE,
|
|
1226
|
-
label: 'England National League',
|
|
1227
|
-
opticOddsName: 'England - National League',
|
|
1228
|
-
priority: 150,
|
|
1229
|
-
},
|
|
1230
|
-
[League.ENGLAND_NATIONAL_LEAGUE_NORTH]: {
|
|
1231
|
-
...SOCCER_DEFAULTS,
|
|
1232
|
-
id: League.ENGLAND_NATIONAL_LEAGUE_NORTH,
|
|
1233
|
-
label: 'England National League North',
|
|
1234
|
-
opticOddsName: 'England - National League North',
|
|
1235
|
-
priority: 150,
|
|
1236
|
-
},
|
|
1237
|
-
[League.ENGLAND_NATIONAL_LEAGUE_SOUTH]: {
|
|
1238
|
-
...SOCCER_DEFAULTS,
|
|
1239
|
-
id: League.ENGLAND_NATIONAL_LEAGUE_SOUTH,
|
|
1240
|
-
label: 'England National League South',
|
|
1241
|
-
opticOddsName: 'England - National League South',
|
|
1242
|
-
priority: 150,
|
|
1243
|
-
},
|
|
1244
|
-
[League.GERMANY_BUNDESLIGA_3]: {
|
|
1245
|
-
...SOCCER_DEFAULTS,
|
|
1246
|
-
id: League.GERMANY_BUNDESLIGA_3,
|
|
1247
|
-
label: 'Germany Bundesliga 3',
|
|
1248
|
-
opticOddsName: 'Germany - Bundesliga 3',
|
|
1249
|
-
priority: 150,
|
|
1250
|
-
},
|
|
1251
|
-
[League.PORTUGAL_LIGA_3]: {
|
|
1252
|
-
...SOCCER_DEFAULTS,
|
|
1253
|
-
id: League.PORTUGAL_LIGA_3,
|
|
1254
|
-
label: 'Portugal Liga 3',
|
|
1255
|
-
opticOddsName: 'Portugal - Liga 3',
|
|
1256
|
-
priority: 150,
|
|
1257
|
-
},
|
|
1258
|
-
[League.ROMANIA_LIGA_II]: {
|
|
1259
|
-
...SOCCER_DEFAULTS,
|
|
1260
|
-
id: League.ROMANIA_LIGA_II,
|
|
1261
|
-
label: 'Romania Liga II',
|
|
1262
|
-
opticOddsName: 'Romania - Liga II',
|
|
1263
|
-
priority: 150,
|
|
1264
|
-
},
|
|
1265
|
-
[League.UKRAINE_PREMIER_LEAGUE]: {
|
|
1266
|
-
...SOCCER_DEFAULTS,
|
|
1267
|
-
id: League.UKRAINE_PREMIER_LEAGUE,
|
|
1268
|
-
label: 'Ukraine Premier League',
|
|
1269
|
-
opticOddsName: 'Ukraine - Premier League',
|
|
1270
|
-
priority: 150,
|
|
1271
|
-
},
|
|
1272
|
-
[League.ITALY_SERIE_C]: {
|
|
1273
|
-
...SOCCER_DEFAULTS,
|
|
1274
|
-
id: League.ITALY_SERIE_C,
|
|
1275
|
-
label: 'Italy Serie C',
|
|
1276
|
-
opticOddsName: 'Italy - Serie C',
|
|
1277
|
-
priority: 150,
|
|
1278
|
-
},
|
|
1279
|
-
[League.ISRAEL_PREMIER_LEAGUE]: {
|
|
1280
|
-
...SOCCER_DEFAULTS,
|
|
1281
|
-
id: League.ISRAEL_PREMIER_LEAGUE,
|
|
1282
|
-
label: 'Israel Premier League',
|
|
1283
|
-
opticOddsName: 'Israel - Premier League',
|
|
1284
|
-
priority: 150,
|
|
1285
|
-
},
|
|
1286
|
-
[League.PARAGUAY_PRIMERA_DIVISION]: {
|
|
1287
|
-
...SOCCER_DEFAULTS,
|
|
1288
|
-
id: League.PARAGUAY_PRIMERA_DIVISION,
|
|
1289
|
-
label: 'Paraguay Primera Division',
|
|
1290
|
-
opticOddsName: 'Paraguay - Primera Division',
|
|
1291
|
-
priority: 150,
|
|
1292
|
-
},
|
|
1293
|
-
[League.UAE_PRO_LEAGUE]: {
|
|
1294
|
-
...SOCCER_DEFAULTS,
|
|
1295
|
-
id: League.UAE_PRO_LEAGUE,
|
|
1296
|
-
label: 'UAE Pro League',
|
|
1297
|
-
opticOddsName: 'UAE - Pro League',
|
|
1298
|
-
priority: 150,
|
|
1299
|
-
},
|
|
1300
|
-
[League.ARGENTINA_PRIMERA_NACIONAL]: {
|
|
1301
|
-
...SOCCER_DEFAULTS,
|
|
1302
|
-
id: League.ARGENTINA_PRIMERA_NACIONAL,
|
|
1303
|
-
label: 'Argentina Primera Nacional',
|
|
1304
|
-
opticOddsName: 'Argentina - Primera Nacional',
|
|
1305
|
-
priority: 150,
|
|
1306
|
-
},
|
|
1307
|
-
[League.CONMEBOL_COPA_SUDAMERICANA]: {
|
|
1308
|
-
...SOCCER_DEFAULTS,
|
|
1309
|
-
id: League.CONMEBOL_COPA_SUDAMERICANA,
|
|
1310
|
-
label: 'CONMEBOL Copa Sudamericana',
|
|
1311
|
-
opticOddsName: 'CONMEBOL - Copa Sudamericana',
|
|
1312
|
-
priority: 150,
|
|
1313
|
-
},
|
|
1314
|
-
[League.BOLIVIA_DIVISION_PROFESSIONAL]: {
|
|
1315
|
-
...SOCCER_DEFAULTS,
|
|
1316
|
-
id: League.BOLIVIA_DIVISION_PROFESSIONAL,
|
|
1317
|
-
label: 'Bolivia Division Professional',
|
|
1318
|
-
opticOddsName: 'Bolivia - Division Professional',
|
|
1319
|
-
priority: 150,
|
|
1320
|
-
},
|
|
1321
|
-
[League.VENEZUELA_PRIMERA_DIVISION]: {
|
|
1322
|
-
...SOCCER_DEFAULTS,
|
|
1323
|
-
id: League.VENEZUELA_PRIMERA_DIVISION,
|
|
1324
|
-
label: 'Venezuela Primera Division',
|
|
1325
|
-
opticOddsName: 'Venezuela - Primera Division',
|
|
1326
|
-
priority: 150,
|
|
1327
|
-
},
|
|
1328
|
-
[League.FIFA_ARAB_NATIONS_CUP]: {
|
|
1329
|
-
...SOCCER_DEFAULTS,
|
|
1330
|
-
id: League.FIFA_ARAB_NATIONS_CUP,
|
|
1331
|
-
label: 'FIFA Arab Nations Cup',
|
|
1332
|
-
opticOddsName: 'FIFA - Arab Nations Cup',
|
|
1333
|
-
priority: 100,
|
|
1334
|
-
},
|
|
1335
|
-
[League.FIFA_INTERCONTINENTAL_CUP]: {
|
|
1336
|
-
...SOCCER_DEFAULTS,
|
|
1337
|
-
id: League.FIFA_INTERCONTINENTAL_CUP,
|
|
1338
|
-
label: 'FIFA Intercontinental Cup',
|
|
1339
|
-
opticOddsName: 'FIFA - Intercontinental Cup',
|
|
1340
|
-
priority: 100,
|
|
1341
|
-
},
|
|
1342
|
-
[League.CAF_AFRICA_CUP_OF_NATIONS]: {
|
|
1343
|
-
...SOCCER_DEFAULTS,
|
|
1344
|
-
id: League.CAF_AFRICA_CUP_OF_NATIONS,
|
|
1345
|
-
label: 'CAF Africa Cup of Nations',
|
|
1346
|
-
opticOddsName: 'CAF - Africa Cup of Nations',
|
|
1347
|
-
priority: 100,
|
|
1348
|
-
},
|
|
1349
|
-
[League.CAF_AFRICA_CUP_OF_NATIONS_QUALIFIERS]: {
|
|
1350
|
-
...SOCCER_DEFAULTS,
|
|
1351
|
-
id: League.CAF_AFRICA_CUP_OF_NATIONS_QUALIFIERS,
|
|
1352
|
-
label: 'CAF Africa Cup of Nations Qualifiers',
|
|
1353
|
-
opticOddsName: 'CAF - Africa Cup of Nations Qualifiers',
|
|
1354
|
-
priority: 100,
|
|
1355
|
-
},
|
|
1356
|
-
[League.FINLAND_YKKOSLIIGA]: {
|
|
1357
|
-
...SOCCER_DEFAULTS,
|
|
1358
|
-
id: League.FINLAND_YKKOSLIIGA,
|
|
1359
|
-
label: 'Finland Ykkösliiga',
|
|
1360
|
-
opticOddsName: 'Finland - Ykkosliiga',
|
|
1361
|
-
priority: 150,
|
|
1362
|
-
},
|
|
1363
|
-
[League.SOUTH_KOREA_K_LEAGUE_2]: {
|
|
1364
|
-
...SOCCER_DEFAULTS,
|
|
1365
|
-
id: League.SOUTH_KOREA_K_LEAGUE_2,
|
|
1366
|
-
label: 'Korea K2 League',
|
|
1367
|
-
opticOddsName: 'Korea - K2 League',
|
|
1368
|
-
priority: 150,
|
|
1369
|
-
},
|
|
1370
|
-
[League.MEXICO_LIGA_DE_EXPANSION]: {
|
|
1371
|
-
...SOCCER_DEFAULTS,
|
|
1372
|
-
id: League.MEXICO_LIGA_DE_EXPANSION,
|
|
1373
|
-
label: 'Mexico Liga de Expansion MX',
|
|
1374
|
-
opticOddsName: 'Mexico - Liga de Expansion MX',
|
|
1375
|
-
priority: 150,
|
|
1376
|
-
},
|
|
1377
|
-
[League.SPAIN_RFEF_PRIMERA]: {
|
|
1378
|
-
...SOCCER_DEFAULTS,
|
|
1379
|
-
id: League.SPAIN_RFEF_PRIMERA,
|
|
1380
|
-
label: 'Spain Primera Federacion',
|
|
1381
|
-
opticOddsName: 'Spain - Primera Federacion',
|
|
1382
|
-
priority: 150,
|
|
1383
|
-
},
|
|
1384
|
-
[League.SWITZERLAND_CUP]: {
|
|
1385
|
-
...SOCCER_DEFAULTS,
|
|
1386
|
-
id: League.SWITZERLAND_CUP,
|
|
1387
|
-
label: 'Switzerland Cup',
|
|
1388
|
-
opticOddsName: 'Switzerland - Cup',
|
|
1389
|
-
priority: 150,
|
|
1390
|
-
},
|
|
1391
|
-
[League.SINGAPORE_PREMIER_LEAGUE]: {
|
|
1392
|
-
...SOCCER_DEFAULTS,
|
|
1393
|
-
id: League.SINGAPORE_PREMIER_LEAGUE,
|
|
1394
|
-
label: 'Singapore Premier League',
|
|
1395
|
-
opticOddsName: 'Singapore - Premier League',
|
|
1396
|
-
priority: 150,
|
|
1397
|
-
},
|
|
1398
|
-
[League.JAPAN_EMPEROR_CUP]: {
|
|
1399
|
-
...SOCCER_DEFAULTS,
|
|
1400
|
-
id: League.JAPAN_EMPEROR_CUP,
|
|
1401
|
-
label: 'Japan Emperor Cup',
|
|
1402
|
-
opticOddsName: 'Japan - Emperor Cup',
|
|
1403
|
-
priority: 151,
|
|
1404
|
-
},
|
|
1405
|
-
[League.ESTONIA_MEISTRILIIGA_WOMEN]: {
|
|
1406
|
-
...SOCCER_DEFAULTS,
|
|
1407
|
-
id: League.ESTONIA_MEISTRILIIGA_WOMEN,
|
|
1408
|
-
label: 'Estonia Meistriliiga Women',
|
|
1409
|
-
opticOddsName: 'Estonia - Meistriliiga Women',
|
|
1410
|
-
priority: 150,
|
|
1411
|
-
},
|
|
1412
|
-
[League.MEXICO_LIGA_MX_WOMEN]: {
|
|
1413
|
-
...SOCCER_DEFAULTS,
|
|
1414
|
-
id: League.MEXICO_LIGA_MX_WOMEN,
|
|
1415
|
-
label: 'Mexico Liga MX Women',
|
|
1416
|
-
opticOddsName: 'Mexico - Liga MX Women',
|
|
1417
|
-
priority: 150,
|
|
1418
|
-
},
|
|
1419
|
-
[League.HONG_KONG_PREMIER_LEAGUE]: {
|
|
1420
|
-
...SOCCER_DEFAULTS,
|
|
1421
|
-
id: League.HONG_KONG_PREMIER_LEAGUE,
|
|
1422
|
-
label: 'Hong Kong Premier League',
|
|
1423
|
-
opticOddsName: 'Hong Kong - Premier League',
|
|
1424
|
-
priority: 150,
|
|
1425
|
-
},
|
|
1426
|
-
[League.AUSTRIA_OFB_CUP]: {
|
|
1427
|
-
...SOCCER_DEFAULTS,
|
|
1428
|
-
id: League.AUSTRIA_OFB_CUP,
|
|
1429
|
-
label: 'Austria OFB Cup',
|
|
1430
|
-
opticOddsName: 'Austria - OFB Cup',
|
|
1431
|
-
priority: 150,
|
|
1432
|
-
},
|
|
1433
|
-
[League.NORWAY_TOPSERIEN_WOMEN]: {
|
|
1434
|
-
...SOCCER_DEFAULTS,
|
|
1435
|
-
id: League.NORWAY_TOPSERIEN_WOMEN,
|
|
1436
|
-
label: 'Norway Topserien Women',
|
|
1437
|
-
opticOddsName: 'Norway - Topserien Women',
|
|
1438
|
-
priority: 150,
|
|
1439
|
-
},
|
|
1440
|
-
[League.SWEDEN_DAMALLSVENSKAN]: {
|
|
1441
|
-
...SOCCER_DEFAULTS,
|
|
1442
|
-
id: League.SWEDEN_DAMALLSVENSKAN,
|
|
1443
|
-
label: 'Sweden Damallsvenskan',
|
|
1444
|
-
opticOddsName: 'Sweden - Damallsvenskan',
|
|
1445
|
-
priority: 150,
|
|
1446
|
-
},
|
|
1447
|
-
[League.AFC_ASIAN_CUP_WOMEN]: {
|
|
1448
|
-
...SOCCER_DEFAULTS,
|
|
1449
|
-
id: League.AFC_ASIAN_CUP_WOMEN,
|
|
1450
|
-
label: 'AFC Asian Cup Women',
|
|
1451
|
-
opticOddsName: 'AFC - Asian Cup Women',
|
|
1452
|
-
priority: 100,
|
|
1453
|
-
},
|
|
1454
|
-
[League.AFC_ASIAN_CUP_WOMEN_QUALIFIERS]: {
|
|
1455
|
-
...SOCCER_DEFAULTS,
|
|
1456
|
-
id: League.AFC_ASIAN_CUP_WOMEN_QUALIFIERS,
|
|
1457
|
-
label: 'AFC Asian Cup Women Qualifiers',
|
|
1458
|
-
opticOddsName: 'AFC - Asian Cup Women Qualifiers',
|
|
1459
|
-
priority: 100,
|
|
1460
|
-
},
|
|
1461
|
-
[League.CONCACAF_CHAMPIONS_CUP_WOMEN]: {
|
|
1462
|
-
...SOCCER_DEFAULTS,
|
|
1463
|
-
id: League.CONCACAF_CHAMPIONS_CUP_WOMEN,
|
|
1464
|
-
label: 'CONCACAF Champions Cup Women',
|
|
1465
|
-
opticOddsName: 'CONCACAF - Champions Cup Women',
|
|
1466
|
-
priority: 109,
|
|
1467
|
-
},
|
|
1468
|
-
[League.CONCACAF_CHAMPIONSHIP_QUALIFIERS_WOMEN]: {
|
|
1469
|
-
...SOCCER_DEFAULTS,
|
|
1470
|
-
id: League.CONCACAF_CHAMPIONSHIP_QUALIFIERS_WOMEN,
|
|
1471
|
-
label: 'CONCACAF Championship Qualifiers Women',
|
|
1472
|
-
opticOddsName: 'CONCACAF - Championship Qualifiers Women',
|
|
1473
|
-
priority: 109,
|
|
1474
|
-
},
|
|
1475
|
-
[League.CONCACAF_CHAMPIONSHIP_WOMEN]: {
|
|
1476
|
-
...SOCCER_DEFAULTS,
|
|
1477
|
-
id: League.CONCACAF_CHAMPIONSHIP_WOMEN,
|
|
1478
|
-
label: 'CONCACAF Championship Women',
|
|
1479
|
-
opticOddsName: 'CONCACAF - Championship Women',
|
|
1480
|
-
priority: 109,
|
|
1481
|
-
},
|
|
1482
|
-
[League.CONMEBOL_COPA_AMERICA_WOMEN]: {
|
|
1483
|
-
...SOCCER_DEFAULTS,
|
|
1484
|
-
id: League.CONMEBOL_COPA_AMERICA_WOMEN,
|
|
1485
|
-
label: 'CONMEBOL Copa America Women',
|
|
1486
|
-
opticOddsName: 'CONMEBOL - Copa America Women',
|
|
1487
|
-
priority: 107,
|
|
1488
|
-
},
|
|
1489
|
-
[League.COSAFA_CUP_WOMEN]: {
|
|
1490
|
-
...SOCCER_DEFAULTS,
|
|
1491
|
-
id: League.COSAFA_CUP_WOMEN,
|
|
1492
|
-
label: 'COSAFA Cup Women',
|
|
1493
|
-
opticOddsName: 'COSAFA - Cup Women',
|
|
1494
|
-
priority: 187,
|
|
1495
|
-
},
|
|
1496
|
-
[League.FIFA_WC_QUALIFIERS_WOMEN]: {
|
|
1497
|
-
...SOCCER_DEFAULTS,
|
|
1498
|
-
id: League.FIFA_WC_QUALIFIERS_WOMEN,
|
|
1499
|
-
label: 'FIFA World Cup Qualifiers Women',
|
|
1500
|
-
opticOddsName: 'FIFA - World Cup Qualifiers Women',
|
|
1501
|
-
logoClass: 'icon-homepage league--fifa-world-cup',
|
|
1502
|
-
priority: 100,
|
|
1503
|
-
},
|
|
1504
|
-
[League.INTERNATIONAL_SHEBELIEVES_CUP]: {
|
|
1505
|
-
...SOCCER_DEFAULTS,
|
|
1506
|
-
id: League.INTERNATIONAL_SHEBELIEVES_CUP,
|
|
1507
|
-
label: 'International SheBelieves Cup',
|
|
1508
|
-
opticOddsName: 'International - SheBelieves Cup',
|
|
1509
|
-
priority: 151,
|
|
1510
|
-
},
|
|
1511
|
-
[League.WAFF_CHAMPIONSHIP_WOMEN]: {
|
|
1512
|
-
...SOCCER_DEFAULTS,
|
|
1513
|
-
id: League.WAFF_CHAMPIONSHIP_WOMEN,
|
|
1514
|
-
label: 'WAFF Championship Women',
|
|
1515
|
-
opticOddsName: 'WAFF - Championship Women',
|
|
1516
|
-
priority: 100,
|
|
1517
|
-
},
|
|
1518
|
-
[League.JAPAN_WE_LEAGUE]: {
|
|
1519
|
-
...SOCCER_DEFAULTS,
|
|
1520
|
-
id: League.JAPAN_WE_LEAGUE,
|
|
1521
|
-
label: 'Japan WE League',
|
|
1522
|
-
opticOddsName: 'Japan - WE League',
|
|
1523
|
-
priority: 150,
|
|
1524
|
-
},
|
|
1525
|
-
[League.KOREA_WK_LEAGUE]: {
|
|
1526
|
-
...SOCCER_DEFAULTS,
|
|
1527
|
-
id: League.KOREA_WK_LEAGUE,
|
|
1528
|
-
label: 'Korea WK League',
|
|
1529
|
-
opticOddsName: 'Korea - WK League',
|
|
1530
|
-
priority: 150,
|
|
1531
|
-
},
|
|
1532
|
-
[League.TURKEY_SUPER_LIG_WOMEN]: {
|
|
1533
|
-
...SOCCER_DEFAULTS,
|
|
1534
|
-
id: League.TURKEY_SUPER_LIG_WOMEN,
|
|
1535
|
-
label: 'Turkey Super Lig Women',
|
|
1536
|
-
opticOddsName: 'Turkey - Super Lig Women',
|
|
1537
|
-
priority: 150,
|
|
1538
|
-
},
|
|
1539
|
-
[League.COSTA_RICA_PRIMERA_DIVISION_WOMEN]: {
|
|
1540
|
-
...SOCCER_DEFAULTS,
|
|
1541
|
-
id: League.COSTA_RICA_PRIMERA_DIVISION_WOMEN,
|
|
1542
|
-
label: 'Costa Rica Primera Division Women',
|
|
1543
|
-
opticOddsName: 'Costa Rica - Primera Division Women',
|
|
1544
|
-
priority: 150,
|
|
1545
|
-
},
|
|
1546
|
-
[League.ITALY_KINGS_LEAGUE]: {
|
|
1547
|
-
...SOCCER_DEFAULTS,
|
|
1548
|
-
id: League.ITALY_KINGS_LEAGUE,
|
|
1549
|
-
label: 'Italy Kings League',
|
|
1550
|
-
opticOddsName: 'Italy - Kings League',
|
|
1551
|
-
priority: 200,
|
|
1552
|
-
},
|
|
1553
|
-
[League.SPAIN_KINGS_LEAGUE]: {
|
|
1554
|
-
...SOCCER_DEFAULTS,
|
|
1555
|
-
id: League.SPAIN_KINGS_LEAGUE,
|
|
1556
|
-
label: 'Spain Kings League',
|
|
1557
|
-
opticOddsName: 'Spain - Kings League',
|
|
1558
|
-
priority: 200,
|
|
1559
|
-
},
|
|
1560
|
-
[League.BRAZIL_KINGS_LEAGUE]: {
|
|
1561
|
-
...SOCCER_DEFAULTS,
|
|
1562
|
-
id: League.BRAZIL_KINGS_LEAGUE,
|
|
1563
|
-
label: 'Brazil Kings League',
|
|
1564
|
-
opticOddsName: 'Brazil - Kings League',
|
|
1565
|
-
priority: 200,
|
|
1566
|
-
},
|
|
1567
|
-
[League.GERMANY_KINGS_LEAGUE]: {
|
|
1568
|
-
...SOCCER_DEFAULTS,
|
|
1569
|
-
id: League.GERMANY_KINGS_LEAGUE,
|
|
1570
|
-
label: 'Germany Kings League',
|
|
1571
|
-
opticOddsName: 'Germany - Kings League',
|
|
1572
|
-
priority: 200,
|
|
1573
|
-
},
|
|
1574
|
-
[League.KINGS_LEAGUE_CLUB_WORLD_CUP]: {
|
|
1575
|
-
...SOCCER_DEFAULTS,
|
|
1576
|
-
id: League.KINGS_LEAGUE_CLUB_WORLD_CUP,
|
|
1577
|
-
label: 'Kings League Club World Cup',
|
|
1578
|
-
opticOddsName: 'Kings League - Club World Cup',
|
|
1579
|
-
priority: 200,
|
|
1580
|
-
},
|
|
1581
|
-
[League.KINGS_LEAGUE_WORLD_CUP]: {
|
|
1582
|
-
...SOCCER_DEFAULTS,
|
|
1583
|
-
id: League.KINGS_LEAGUE_WORLD_CUP,
|
|
1584
|
-
label: 'Kings League World Cup',
|
|
1585
|
-
opticOddsName: 'Kings League - World Cup',
|
|
1586
|
-
priority: 200,
|
|
1587
|
-
},
|
|
1588
|
-
[League.SAUDI_KINGS_CUP]: {
|
|
1589
|
-
...SOCCER_DEFAULTS,
|
|
1590
|
-
id: League.SAUDI_KINGS_CUP,
|
|
1591
|
-
label: 'Saudi Arabia Kings Cup',
|
|
1592
|
-
opticOddsName: 'Saudi Arabia - Kings Cup',
|
|
1593
|
-
priority: 200,
|
|
1594
|
-
},
|
|
1595
|
-
[League.INTERNATIONAL_KINGS_CUP]: {
|
|
1596
|
-
...SOCCER_DEFAULTS,
|
|
1597
|
-
id: League.INTERNATIONAL_KINGS_CUP,
|
|
1598
|
-
label: 'International Kings Cup',
|
|
1599
|
-
opticOddsName: 'International - Kings Cup',
|
|
1600
|
-
priority: 200,
|
|
1601
|
-
},
|
|
1602
|
-
[League.SWEDEN_ETTAN]: {
|
|
1603
|
-
...SOCCER_DEFAULTS,
|
|
1604
|
-
id: League.SWEDEN_ETTAN,
|
|
1605
|
-
label: 'Sweden Ettan',
|
|
1606
|
-
opticOddsName: 'Sweden - Ettan',
|
|
1607
|
-
priority: 150,
|
|
1608
|
-
},
|
|
1609
|
-
[League.FINLAND_YKKONEN]: {
|
|
1610
|
-
...SOCCER_DEFAULTS,
|
|
1611
|
-
id: League.FINLAND_YKKONEN,
|
|
1612
|
-
label: 'Finland Ykkonen',
|
|
1613
|
-
opticOddsName: 'Finland - Ykkonen',
|
|
1614
|
-
priority: 150,
|
|
1615
|
-
},
|
|
1616
|
-
[League.ICELAND_1_DEILD]: {
|
|
1617
|
-
...SOCCER_DEFAULTS,
|
|
1618
|
-
id: League.ICELAND_1_DEILD,
|
|
1619
|
-
label: 'Iceland 1. Deild',
|
|
1620
|
-
opticOddsName: 'Iceland - 1. Deild',
|
|
1621
|
-
priority: 150,
|
|
1622
|
-
},
|
|
1623
|
-
[League.ESTONIA_ESILIIGA]: {
|
|
1624
|
-
...SOCCER_DEFAULTS,
|
|
1625
|
-
id: League.ESTONIA_ESILIIGA,
|
|
1626
|
-
label: 'Estonia Esiliiga',
|
|
1627
|
-
opticOddsName: 'Estonia - Esiliiga',
|
|
1628
|
-
priority: 150,
|
|
1629
|
-
},
|
|
1630
|
-
[League.LATVIA_1_LIGA]: {
|
|
1631
|
-
...SOCCER_DEFAULTS,
|
|
1632
|
-
id: League.LATVIA_1_LIGA,
|
|
1633
|
-
label: 'Latvia 1. Liga',
|
|
1634
|
-
opticOddsName: 'Latvia - 1. Liga',
|
|
1635
|
-
priority: 150,
|
|
1636
|
-
},
|
|
1637
|
-
[League.FINLAND_KAKKONEN]: {
|
|
1638
|
-
...SOCCER_DEFAULTS,
|
|
1639
|
-
id: League.FINLAND_KAKKONEN,
|
|
1640
|
-
label: 'Finland Kakkonen',
|
|
1641
|
-
opticOddsName: 'Finland - Kakkonen',
|
|
1642
|
-
priority: 150,
|
|
1643
|
-
},
|
|
1644
|
-
[League.FINLAND_KOLMONEN]: {
|
|
1645
|
-
...SOCCER_DEFAULTS,
|
|
1646
|
-
id: League.FINLAND_KOLMONEN,
|
|
1647
|
-
label: 'Finland Kolmonen',
|
|
1648
|
-
opticOddsName: 'Finland - Kolmonen',
|
|
1649
|
-
priority: 150,
|
|
1650
|
-
},
|
|
1651
|
-
[League.MOROCCO_BOTOLA_PRO_1]: {
|
|
1652
|
-
...SOCCER_DEFAULTS,
|
|
1653
|
-
id: League.MOROCCO_BOTOLA_PRO_1,
|
|
1654
|
-
label: 'Morocco Botola Pro 1',
|
|
1655
|
-
opticOddsName: 'Morocco - Botola Pro 1',
|
|
1656
|
-
priority: 150,
|
|
1657
|
-
},
|
|
1658
|
-
[League.MOROCCO_BOTOLA_PRO_2]: {
|
|
1659
|
-
...SOCCER_DEFAULTS,
|
|
1660
|
-
id: League.MOROCCO_BOTOLA_PRO_2,
|
|
1661
|
-
label: 'Morocco Botola Pro 2',
|
|
1662
|
-
opticOddsName: 'Morocco - Botola Pro 2',
|
|
1663
|
-
priority: 150,
|
|
1664
|
-
},
|
|
1665
|
-
[League.POLAND_I_LIGA]: {
|
|
1666
|
-
...SOCCER_DEFAULTS,
|
|
1667
|
-
id: League.POLAND_I_LIGA,
|
|
1668
|
-
label: 'Poland I Liga',
|
|
1669
|
-
opticOddsName: 'Poland - I Liga',
|
|
1670
|
-
priority: 182,
|
|
1671
|
-
},
|
|
1672
|
-
[League.ECUADOR_SERIE_B]: {
|
|
1673
|
-
...SOCCER_DEFAULTS,
|
|
1674
|
-
id: League.ECUADOR_SERIE_B,
|
|
1675
|
-
label: 'Ecuador Serie B',
|
|
1676
|
-
opticOddsName: 'Ecuador - Serie B',
|
|
1677
|
-
priority: 192,
|
|
1678
|
-
},
|
|
1679
|
-
[League.COLOMBIA_CUP]: {
|
|
1680
|
-
...SOCCER_DEFAULTS,
|
|
1681
|
-
id: League.COLOMBIA_CUP,
|
|
1682
|
-
label: 'Colombia Cup',
|
|
1683
|
-
opticOddsName: 'Colombia - Cup',
|
|
1684
|
-
priority: 185,
|
|
1685
|
-
},
|
|
1686
|
-
[League.EL_SALVADOR_PRIMERA]: {
|
|
1687
|
-
...SOCCER_DEFAULTS,
|
|
1688
|
-
id: League.EL_SALVADOR_PRIMERA,
|
|
1689
|
-
label: 'El Salvador Primera Division',
|
|
1690
|
-
opticOddsName: 'El Salvador - Primera Division',
|
|
1691
|
-
priority: 190,
|
|
1692
|
-
},
|
|
1693
|
-
[League.BRAZIL_BRASILEIRO_U20]: {
|
|
1694
|
-
...SOCCER_DEFAULTS,
|
|
1695
|
-
id: League.BRAZIL_BRASILEIRO_U20,
|
|
1696
|
-
label: 'Brazil Brasileiro U20',
|
|
1697
|
-
opticOddsName: 'Brazil - Brasileiro U20',
|
|
1698
|
-
priority: 196,
|
|
1699
|
-
},
|
|
1700
|
-
[League.NIGERIA_PREMIER_LEAGUE]: {
|
|
1701
|
-
...SOCCER_DEFAULTS,
|
|
1702
|
-
id: League.NIGERIA_PREMIER_LEAGUE,
|
|
1703
|
-
label: 'Nigeria Premier League',
|
|
1704
|
-
opticOddsName: 'Nigeria - Premier League',
|
|
1705
|
-
priority: 190,
|
|
1706
|
-
},
|
|
1707
|
-
[League.GHANA_PREMIER_LEAGUE]: {
|
|
1708
|
-
...SOCCER_DEFAULTS,
|
|
1709
|
-
id: League.GHANA_PREMIER_LEAGUE,
|
|
1710
|
-
label: 'Ghana Premier League',
|
|
1711
|
-
opticOddsName: 'Ghana - Premier League',
|
|
1712
|
-
priority: 190,
|
|
1713
|
-
},
|
|
1714
|
-
[League.IVORY_COAST_LIGUE_1]: {
|
|
1715
|
-
...SOCCER_DEFAULTS,
|
|
1716
|
-
id: League.IVORY_COAST_LIGUE_1,
|
|
1717
|
-
label: 'Ivory Coast Ligue 1',
|
|
1718
|
-
opticOddsName: 'Ivory Coast - Ligue 1',
|
|
1719
|
-
priority: 190,
|
|
1720
|
-
},
|
|
1721
|
-
[League.CAMEROON_ELITE_ONE]: {
|
|
1722
|
-
...SOCCER_DEFAULTS,
|
|
1723
|
-
id: League.CAMEROON_ELITE_ONE,
|
|
1724
|
-
label: 'Cameroon Elite One',
|
|
1725
|
-
opticOddsName: 'Cameroon - Elite One',
|
|
1726
|
-
priority: 190,
|
|
1727
|
-
},
|
|
1728
|
-
[League.SENEGAL_LIGUE_1]: {
|
|
1729
|
-
...SOCCER_DEFAULTS,
|
|
1730
|
-
id: League.SENEGAL_LIGUE_1,
|
|
1731
|
-
label: 'Senegal Ligue 1',
|
|
1732
|
-
opticOddsName: 'Senegal - Ligue 1',
|
|
1733
|
-
priority: 190,
|
|
1734
|
-
},
|
|
1735
|
-
[League.TUNISIA_LEAGUE_1]: {
|
|
1736
|
-
...SOCCER_DEFAULTS,
|
|
1737
|
-
id: League.TUNISIA_LEAGUE_1,
|
|
1738
|
-
label: 'Tunisia League 1',
|
|
1739
|
-
opticOddsName: 'Tunisia - League 1',
|
|
1740
|
-
priority: 190,
|
|
1741
|
-
},
|
|
1742
|
-
[League.IRAN_PRO_LEAGUE]: {
|
|
1743
|
-
...SOCCER_DEFAULTS,
|
|
1744
|
-
id: League.IRAN_PRO_LEAGUE,
|
|
1745
|
-
label: 'Iran Pro League',
|
|
1746
|
-
opticOddsName: 'Iran - Pro League',
|
|
1747
|
-
priority: 190,
|
|
1748
|
-
},
|
|
1749
|
-
[League.ZAMBIA_SUPER_LEAGUE]: {
|
|
1750
|
-
...SOCCER_DEFAULTS,
|
|
1751
|
-
id: League.ZAMBIA_SUPER_LEAGUE,
|
|
1752
|
-
label: 'Zambia Super League',
|
|
1753
|
-
opticOddsName: 'Zambia - Super League',
|
|
1754
|
-
priority: 190,
|
|
1755
|
-
},
|
|
1756
|
-
[League.TANZANIA_PREMIER_LEAGUE]: {
|
|
1757
|
-
...SOCCER_DEFAULTS,
|
|
1758
|
-
id: League.TANZANIA_PREMIER_LEAGUE,
|
|
1759
|
-
label: 'Tanzania Premier League',
|
|
1760
|
-
opticOddsName: 'Tanzania - Premier League',
|
|
1761
|
-
priority: 190,
|
|
1762
|
-
},
|
|
1763
|
-
[League.UGANDA_PREMIER_LEAGUE]: {
|
|
1764
|
-
...SOCCER_DEFAULTS,
|
|
1765
|
-
id: League.UGANDA_PREMIER_LEAGUE,
|
|
1766
|
-
label: 'Uganda Premier League',
|
|
1767
|
-
opticOddsName: 'Uganda - Premier League',
|
|
1768
|
-
priority: 190,
|
|
1769
|
-
},
|
|
1770
|
-
[League.BURKINA_FASO_PREMIER_LEAGUE]: {
|
|
1771
|
-
...SOCCER_DEFAULTS,
|
|
1772
|
-
id: League.BURKINA_FASO_PREMIER_LEAGUE,
|
|
1773
|
-
label: 'Burkina Faso Premier League',
|
|
1774
|
-
opticOddsName: 'Burkina Faso - Premier League',
|
|
1775
|
-
priority: 190,
|
|
1776
|
-
},
|
|
1777
|
-
[League.HONDURAS_LIGA_NACIONAL]: {
|
|
1778
|
-
...SOCCER_DEFAULTS,
|
|
1779
|
-
id: League.HONDURAS_LIGA_NACIONAL,
|
|
1780
|
-
label: 'Honduras Liga Nacional',
|
|
1781
|
-
opticOddsName: 'Honduras - Liga Nacional',
|
|
1782
|
-
priority: 190,
|
|
1783
|
-
},
|
|
1784
|
-
[League.KUWAIT_PREMIER_LEAGUE]: {
|
|
1785
|
-
...SOCCER_DEFAULTS,
|
|
1786
|
-
id: League.KUWAIT_PREMIER_LEAGUE,
|
|
1787
|
-
label: 'Kuwait Premier League',
|
|
1788
|
-
opticOddsName: 'Kuwait - Premier League',
|
|
1789
|
-
priority: 190,
|
|
1790
|
-
},
|
|
1791
|
-
[League.OMAN_PRO_LEAGUE]: {
|
|
1792
|
-
...SOCCER_DEFAULTS,
|
|
1793
|
-
id: League.OMAN_PRO_LEAGUE,
|
|
1794
|
-
label: 'Oman Pro League',
|
|
1795
|
-
opticOddsName: 'Oman - Pro League',
|
|
1796
|
-
priority: 190,
|
|
1797
|
-
},
|
|
1798
|
-
[League.JORDAN_PRO_LEAGUE]: {
|
|
1799
|
-
...SOCCER_DEFAULTS,
|
|
1800
|
-
id: League.JORDAN_PRO_LEAGUE,
|
|
1801
|
-
label: 'Jordan Pro League',
|
|
1802
|
-
opticOddsName: 'Jordan - Pro League',
|
|
1803
|
-
priority: 190,
|
|
1804
|
-
},
|
|
1805
|
-
[League.LEBANON_PREMIER_LEAGUE]: {
|
|
1806
|
-
...SOCCER_DEFAULTS,
|
|
1807
|
-
id: League.LEBANON_PREMIER_LEAGUE,
|
|
1808
|
-
label: 'Lebanon Premier League',
|
|
1809
|
-
opticOddsName: 'Lebanon - Premier League',
|
|
1810
|
-
priority: 190,
|
|
1811
|
-
},
|
|
1812
|
-
[League.MALI_LEAGUE_ONE]: {
|
|
1813
|
-
...SOCCER_DEFAULTS,
|
|
1814
|
-
id: League.MALI_LEAGUE_ONE,
|
|
1815
|
-
label: 'Mali League One',
|
|
1816
|
-
opticOddsName: 'Mali - League One',
|
|
1817
|
-
priority: 190,
|
|
1818
|
-
},
|
|
1819
|
-
[League.MOLDOVA_SUPER_LIGA]: {
|
|
1820
|
-
...SOCCER_DEFAULTS,
|
|
1821
|
-
id: League.MOLDOVA_SUPER_LIGA,
|
|
1822
|
-
label: 'Moldova Super Liga',
|
|
1823
|
-
opticOddsName: 'Moldova - Super Liga',
|
|
1824
|
-
priority: 190,
|
|
1825
|
-
},
|
|
1826
|
-
[League.RWANDA_PREMIER_LEAGUE]: {
|
|
1827
|
-
...SOCCER_DEFAULTS,
|
|
1828
|
-
id: League.RWANDA_PREMIER_LEAGUE,
|
|
1829
|
-
label: 'Rwanda Premier League',
|
|
1830
|
-
opticOddsName: 'Rwanda - Premier League',
|
|
1831
|
-
priority: 190,
|
|
1832
|
-
},
|
|
1833
|
-
[League.MOZAMBIQUE_MOCAMBOLA]: {
|
|
1834
|
-
...SOCCER_DEFAULTS,
|
|
1835
|
-
id: League.MOZAMBIQUE_MOCAMBOLA,
|
|
1836
|
-
label: 'Mozambique Mocambola',
|
|
1837
|
-
opticOddsName: 'Mozambique - Mocambola',
|
|
1838
|
-
priority: 190,
|
|
1839
|
-
},
|
|
1840
|
-
[League.ANGOLA_GIRABOLA]: {
|
|
1841
|
-
...SOCCER_DEFAULTS,
|
|
1842
|
-
id: League.ANGOLA_GIRABOLA,
|
|
1843
|
-
label: 'Angola Girabola',
|
|
1844
|
-
opticOddsName: 'Angola - Girabola',
|
|
1845
|
-
priority: 196,
|
|
1846
|
-
},
|
|
1847
|
-
[League.ARUBA_DIVISION_DI_HONOR]: {
|
|
1848
|
-
...SOCCER_DEFAULTS,
|
|
1849
|
-
id: League.ARUBA_DIVISION_DI_HONOR,
|
|
1850
|
-
label: 'Aruba Division di Honor',
|
|
1851
|
-
opticOddsName: 'Aruba - Division di Honor',
|
|
1852
|
-
priority: 196,
|
|
1853
|
-
},
|
|
1854
|
-
[League.BANGLADESH_PREMIER_LEAGUE]: {
|
|
1855
|
-
...SOCCER_DEFAULTS,
|
|
1856
|
-
id: League.BANGLADESH_PREMIER_LEAGUE,
|
|
1857
|
-
label: 'Bangladesh Premier League',
|
|
1858
|
-
opticOddsName: 'Bangladesh - Premier League',
|
|
1859
|
-
priority: 196,
|
|
1860
|
-
},
|
|
1861
|
-
[League.BARBADOS_PREMIER_LEAGUE]: {
|
|
1862
|
-
...SOCCER_DEFAULTS,
|
|
1863
|
-
id: League.BARBADOS_PREMIER_LEAGUE,
|
|
1864
|
-
label: 'Barbados Premier League',
|
|
1865
|
-
opticOddsName: 'Barbados - Premier League',
|
|
1866
|
-
priority: 196,
|
|
1867
|
-
},
|
|
1868
|
-
[League.BENIN_LIGUE_1]: {
|
|
1869
|
-
...SOCCER_DEFAULTS,
|
|
1870
|
-
id: League.BENIN_LIGUE_1,
|
|
1871
|
-
label: 'Benin Ligue 1',
|
|
1872
|
-
opticOddsName: 'Benin - Ligue 1',
|
|
1873
|
-
priority: 196,
|
|
1874
|
-
},
|
|
1875
|
-
[League.BHUTAN_PREMIER_LEAGUE]: {
|
|
1876
|
-
...SOCCER_DEFAULTS,
|
|
1877
|
-
id: League.BHUTAN_PREMIER_LEAGUE,
|
|
1878
|
-
label: 'Bhutan Premier League',
|
|
1879
|
-
opticOddsName: 'Bhutan - Premier League',
|
|
1880
|
-
priority: 196,
|
|
1881
|
-
},
|
|
1882
|
-
[League.BOTSWANA_PREMIER_LEAGUE]: {
|
|
1883
|
-
...SOCCER_DEFAULTS,
|
|
1884
|
-
id: League.BOTSWANA_PREMIER_LEAGUE,
|
|
1885
|
-
label: 'Botswana Premier League',
|
|
1886
|
-
opticOddsName: 'Botswana - Premier League',
|
|
1887
|
-
priority: 196,
|
|
1888
|
-
},
|
|
1889
|
-
[League.BURUNDI_PRIMUS_LEAGUE]: {
|
|
1890
|
-
...SOCCER_DEFAULTS,
|
|
1891
|
-
id: League.BURUNDI_PRIMUS_LEAGUE,
|
|
1892
|
-
label: 'Burundi Primus League',
|
|
1893
|
-
opticOddsName: 'Burundi - Primus League',
|
|
1894
|
-
priority: 196,
|
|
1895
|
-
},
|
|
1896
|
-
[League.CAMBODIA_PREMIER_LEAGUE]: {
|
|
1897
|
-
...SOCCER_DEFAULTS,
|
|
1898
|
-
id: League.CAMBODIA_PREMIER_LEAGUE,
|
|
1899
|
-
label: 'Cambodia Premier League',
|
|
1900
|
-
opticOddsName: 'Cambodia - Premier League',
|
|
1901
|
-
priority: 196,
|
|
1902
|
-
},
|
|
1903
|
-
[League.CHAD_PREMIER_LEAGUE]: {
|
|
1904
|
-
...SOCCER_DEFAULTS,
|
|
1905
|
-
id: League.CHAD_PREMIER_LEAGUE,
|
|
1906
|
-
label: 'Chad Premier League',
|
|
1907
|
-
opticOddsName: 'Chad - Premier League',
|
|
1908
|
-
priority: 196,
|
|
1909
|
-
},
|
|
1910
|
-
[League.DOMINICAN_REPUBLIC_LDF]: {
|
|
1911
|
-
...SOCCER_DEFAULTS,
|
|
1912
|
-
id: League.DOMINICAN_REPUBLIC_LDF,
|
|
1913
|
-
label: 'Dominican Republic LDF',
|
|
1914
|
-
opticOddsName: 'Dominican Republic - LDF',
|
|
1915
|
-
priority: 196,
|
|
1916
|
-
},
|
|
1917
|
-
[League.DOMINICA_PREMIER_LEAGUE]: {
|
|
1918
|
-
...SOCCER_DEFAULTS,
|
|
1919
|
-
id: League.DOMINICA_PREMIER_LEAGUE,
|
|
1920
|
-
label: 'Dominica Premier League',
|
|
1921
|
-
opticOddsName: 'Dominica - Premier League',
|
|
1922
|
-
priority: 196,
|
|
1923
|
-
},
|
|
1924
|
-
[League.FIJI_PREMIER_LEAGUE]: {
|
|
1925
|
-
...SOCCER_DEFAULTS,
|
|
1926
|
-
id: League.FIJI_PREMIER_LEAGUE,
|
|
1927
|
-
label: 'Fiji Premier League',
|
|
1928
|
-
opticOddsName: 'Fiji - Premier League',
|
|
1929
|
-
priority: 196,
|
|
1930
|
-
},
|
|
1931
|
-
[League.GAMBIA_GFA_LEAGUE]: {
|
|
1932
|
-
...SOCCER_DEFAULTS,
|
|
1933
|
-
id: League.GAMBIA_GFA_LEAGUE,
|
|
1934
|
-
label: 'Gambia GFA League',
|
|
1935
|
-
opticOddsName: 'Gambia - GFA League',
|
|
1936
|
-
priority: 196,
|
|
1937
|
-
},
|
|
1938
|
-
[League.KYRGYZSTAN_PREMIER_LEAGUE]: {
|
|
1939
|
-
...SOCCER_DEFAULTS,
|
|
1940
|
-
id: League.KYRGYZSTAN_PREMIER_LEAGUE,
|
|
1941
|
-
label: 'Kyrgyzstan Premier League',
|
|
1942
|
-
opticOddsName: 'Kyrgyzstan - Premier League',
|
|
1943
|
-
priority: 196,
|
|
1944
|
-
},
|
|
1945
|
-
[League.MACAO_ELITE_LEAGUE]: {
|
|
1946
|
-
...SOCCER_DEFAULTS,
|
|
1947
|
-
id: League.MACAO_ELITE_LEAGUE,
|
|
1948
|
-
label: 'Macao Elite League',
|
|
1949
|
-
opticOddsName: 'Macao - Elite League',
|
|
1950
|
-
priority: 196,
|
|
1951
|
-
},
|
|
1952
|
-
[League.MALAWI_SUPER_LEAGUE]: {
|
|
1953
|
-
...SOCCER_DEFAULTS,
|
|
1954
|
-
id: League.MALAWI_SUPER_LEAGUE,
|
|
1955
|
-
label: 'Malawi Super League',
|
|
1956
|
-
opticOddsName: 'Malawi - Super League',
|
|
1957
|
-
priority: 196,
|
|
1958
|
-
},
|
|
1959
|
-
[League.MAURITANIA_LIGUE_1]: {
|
|
1960
|
-
...SOCCER_DEFAULTS,
|
|
1961
|
-
id: League.MAURITANIA_LIGUE_1,
|
|
1962
|
-
label: 'Mauritania Ligue 1',
|
|
1963
|
-
opticOddsName: 'Mauritania - Ligue 1',
|
|
1964
|
-
priority: 196,
|
|
1965
|
-
},
|
|
1966
|
-
[League.MYANMAR_NATIONAL_LEAGUE]: {
|
|
1967
|
-
...SOCCER_DEFAULTS,
|
|
1968
|
-
id: League.MYANMAR_NATIONAL_LEAGUE,
|
|
1969
|
-
label: 'Myanmar National League',
|
|
1970
|
-
opticOddsName: 'Myanmar - National League',
|
|
1971
|
-
priority: 196,
|
|
1972
|
-
},
|
|
1973
|
-
[League.NICARAGUA_PRIMERA_DIVISION]: {
|
|
1974
|
-
...SOCCER_DEFAULTS,
|
|
1975
|
-
id: League.NICARAGUA_PRIMERA_DIVISION,
|
|
1976
|
-
label: 'Nicaragua Primera Division',
|
|
1977
|
-
opticOddsName: 'Nicaragua - Primera Division',
|
|
1978
|
-
priority: 196,
|
|
1979
|
-
},
|
|
1980
|
-
[League.PHILIPPINES_PFL]: {
|
|
1981
|
-
...SOCCER_DEFAULTS,
|
|
1982
|
-
id: League.PHILIPPINES_PFL,
|
|
1983
|
-
label: 'Philippines PFL',
|
|
1984
|
-
opticOddsName: 'Philippines - PFL',
|
|
1985
|
-
priority: 196,
|
|
1986
|
-
},
|
|
1987
|
-
[League.PUERTO_RICO_LPR_PRO]: {
|
|
1988
|
-
...SOCCER_DEFAULTS,
|
|
1989
|
-
id: League.PUERTO_RICO_LPR_PRO,
|
|
1990
|
-
label: 'Puerto Rico LPR Pro',
|
|
1991
|
-
opticOddsName: 'Puerto Rico - LPR Pro',
|
|
1992
|
-
priority: 196,
|
|
1993
|
-
},
|
|
1994
|
-
[League.SIERRA_LEONE_PREMIER_LEAGUE]: {
|
|
1995
|
-
...SOCCER_DEFAULTS,
|
|
1996
|
-
id: League.SIERRA_LEONE_PREMIER_LEAGUE,
|
|
1997
|
-
label: 'Sierra Leone Premier League',
|
|
1998
|
-
opticOddsName: 'Sierra Leone - Premier League',
|
|
1999
|
-
priority: 196,
|
|
2000
|
-
},
|
|
2001
|
-
[League.SYRIA_PREMIER_LEAGUE]: {
|
|
2002
|
-
...SOCCER_DEFAULTS,
|
|
2003
|
-
id: League.SYRIA_PREMIER_LEAGUE,
|
|
2004
|
-
label: 'Syria Premier League',
|
|
2005
|
-
opticOddsName: 'Syria - Premier League',
|
|
2006
|
-
priority: 196,
|
|
2007
|
-
},
|
|
2008
|
-
[League.TAIWAN_PREMIER_LEAGUE]: {
|
|
2009
|
-
...SOCCER_DEFAULTS,
|
|
2010
|
-
id: League.TAIWAN_PREMIER_LEAGUE,
|
|
2011
|
-
label: 'Taiwan Premier League',
|
|
2012
|
-
opticOddsName: 'Taiwan - Premier League',
|
|
2013
|
-
priority: 196,
|
|
2014
|
-
},
|
|
2015
|
-
[League.TOGO_LIGUE_1]: {
|
|
2016
|
-
...SOCCER_DEFAULTS,
|
|
2017
|
-
id: League.TOGO_LIGUE_1,
|
|
2018
|
-
label: 'Togo Ligue 1',
|
|
2019
|
-
opticOddsName: 'Togo - Ligue 1',
|
|
2020
|
-
priority: 196,
|
|
2021
|
-
},
|
|
2022
|
-
[League.TRINIDAD_AND_TOBAGO_PREMIER_LEAGUE]: {
|
|
2023
|
-
...SOCCER_DEFAULTS,
|
|
2024
|
-
id: League.TRINIDAD_AND_TOBAGO_PREMIER_LEAGUE,
|
|
2025
|
-
label: 'Trinidad and Tobago Premier League',
|
|
2026
|
-
opticOddsName: 'Trinidad and Tobago - Premier League',
|
|
2027
|
-
priority: 196,
|
|
2028
|
-
},
|
|
2029
|
-
[League.ALBANIA_KATEGORIA_SUPERIORE]: {
|
|
2030
|
-
...SOCCER_DEFAULTS,
|
|
2031
|
-
id: League.ALBANIA_KATEGORIA_SUPERIORE,
|
|
2032
|
-
label: 'Albania Kategoria Superiore',
|
|
2033
|
-
opticOddsName: 'Albania - Kategoria Superiore',
|
|
2034
|
-
priority: 190,
|
|
2035
|
-
},
|
|
2036
|
-
[League.ARMENIA_PREMIER_LEAGUE]: {
|
|
2037
|
-
...SOCCER_DEFAULTS,
|
|
2038
|
-
id: League.ARMENIA_PREMIER_LEAGUE,
|
|
2039
|
-
label: 'Armenia Premier League',
|
|
2040
|
-
opticOddsName: 'Armenia - Premier League',
|
|
2041
|
-
priority: 190,
|
|
2042
|
-
},
|
|
2043
|
-
[League.AZERBAIJAN_PREMIER_LEAGUE]: {
|
|
2044
|
-
...SOCCER_DEFAULTS,
|
|
2045
|
-
id: League.AZERBAIJAN_PREMIER_LEAGUE,
|
|
2046
|
-
label: 'Azerbaijan Premier League',
|
|
2047
|
-
opticOddsName: 'Azerbaijan - Premier League',
|
|
2048
|
-
priority: 190,
|
|
2049
|
-
},
|
|
2050
|
-
[League.BAHRAIN_PREMIER_LEAGUE]: {
|
|
2051
|
-
...SOCCER_DEFAULTS,
|
|
2052
|
-
id: League.BAHRAIN_PREMIER_LEAGUE,
|
|
2053
|
-
label: 'Bahrain Premier League',
|
|
2054
|
-
opticOddsName: 'Bahrain - Premier League',
|
|
2055
|
-
priority: 190,
|
|
2056
|
-
},
|
|
2057
|
-
[League.BOSNIA_AND_HERZEGOVINA_PREMIER_LEAGUE]: {
|
|
2058
|
-
...SOCCER_DEFAULTS,
|
|
2059
|
-
id: League.BOSNIA_AND_HERZEGOVINA_PREMIER_LEAGUE,
|
|
2060
|
-
label: 'Bosnia and Herzegovina Premier League',
|
|
2061
|
-
opticOddsName: 'Bosnia and Herzegovina - Premier League',
|
|
2062
|
-
priority: 190,
|
|
2063
|
-
},
|
|
2064
|
-
[League.ETHIOPIA_PREMIER_LEAGUE]: {
|
|
2065
|
-
...SOCCER_DEFAULTS,
|
|
2066
|
-
id: League.ETHIOPIA_PREMIER_LEAGUE,
|
|
2067
|
-
label: 'Ethiopia Premier League',
|
|
2068
|
-
opticOddsName: 'Ethiopia - Premier League',
|
|
2069
|
-
priority: 190,
|
|
2070
|
-
},
|
|
2071
|
-
[League.GUATEMALA_LIGA_NACIONAL]: {
|
|
2072
|
-
...SOCCER_DEFAULTS,
|
|
2073
|
-
id: League.GUATEMALA_LIGA_NACIONAL,
|
|
2074
|
-
label: 'Guatemala Liga Nacional',
|
|
2075
|
-
opticOddsName: 'Guatemala - Liga Nacional',
|
|
2076
|
-
priority: 190,
|
|
2077
|
-
},
|
|
2078
|
-
[League.IRAQ_STARS_LEAGUE]: {
|
|
2079
|
-
...SOCCER_DEFAULTS,
|
|
2080
|
-
id: League.IRAQ_STARS_LEAGUE,
|
|
2081
|
-
label: 'Iraq Stars League',
|
|
2082
|
-
opticOddsName: 'Iraq - Stars League',
|
|
2083
|
-
priority: 190,
|
|
2084
|
-
},
|
|
2085
|
-
[League.JAMAICA_PREMIER_LEAGUE]: {
|
|
2086
|
-
...SOCCER_DEFAULTS,
|
|
2087
|
-
id: League.JAMAICA_PREMIER_LEAGUE,
|
|
2088
|
-
label: 'Jamaica Premier League',
|
|
2089
|
-
opticOddsName: 'Jamaica - Premier League',
|
|
2090
|
-
priority: 190,
|
|
2091
|
-
},
|
|
2092
|
-
[League.KENYA_PREMIER_LEAGUE]: {
|
|
2093
|
-
...SOCCER_DEFAULTS,
|
|
2094
|
-
id: League.KENYA_PREMIER_LEAGUE,
|
|
2095
|
-
label: 'Kenya Premier League',
|
|
2096
|
-
opticOddsName: 'Kenya - Premier League',
|
|
2097
|
-
priority: 190,
|
|
2098
|
-
},
|
|
2099
|
-
[League.KOSOVO_SUPERLIGA]: {
|
|
2100
|
-
...SOCCER_DEFAULTS,
|
|
2101
|
-
id: League.KOSOVO_SUPERLIGA,
|
|
2102
|
-
label: 'Kosovo Superliga',
|
|
2103
|
-
opticOddsName: 'Kosovo - Superliga',
|
|
2104
|
-
priority: 190,
|
|
2105
|
-
},
|
|
2106
|
-
[League.NORTH_MACEDONIA_FIRST_LEAGUE]: {
|
|
2107
|
-
...SOCCER_DEFAULTS,
|
|
2108
|
-
id: League.NORTH_MACEDONIA_FIRST_LEAGUE,
|
|
2109
|
-
label: 'North Macedonia First League',
|
|
2110
|
-
opticOddsName: 'North Macedonia - First League',
|
|
2111
|
-
priority: 190,
|
|
2112
|
-
},
|
|
2113
|
-
[League.PANAMA_LIGA_PANAMENA]: {
|
|
2114
|
-
...SOCCER_DEFAULTS,
|
|
2115
|
-
id: League.PANAMA_LIGA_PANAMENA,
|
|
2116
|
-
label: 'Panama Liga Panamena',
|
|
2117
|
-
opticOddsName: 'Panama - Liga Panamena',
|
|
2118
|
-
priority: 190,
|
|
2119
|
-
},
|
|
2120
|
-
[League.ZIMBABWE_PREMIER_LEAGUE]: {
|
|
2121
|
-
...SOCCER_DEFAULTS,
|
|
2122
|
-
id: League.ZIMBABWE_PREMIER_LEAGUE,
|
|
2123
|
-
label: 'Zimbabwe Premier League',
|
|
2124
|
-
opticOddsName: 'Zimbabwe - Premier League',
|
|
2125
|
-
priority: 190,
|
|
2126
|
-
},
|
|
2127
|
-
[League.UZBEKISTAN_PROFESSIONAL_LEAGUE]: {
|
|
2128
|
-
...SOCCER_DEFAULTS,
|
|
2129
|
-
id: League.UZBEKISTAN_PROFESSIONAL_LEAGUE,
|
|
2130
|
-
label: 'Uzbekistan Professional League',
|
|
2131
|
-
opticOddsName: 'Uzbekistan - Professional League',
|
|
2132
|
-
priority: 190,
|
|
2133
|
-
},
|
|
2134
|
-
[League.ANDORRA_PRIMERA_DIVISIO]: {
|
|
2135
|
-
...SOCCER_DEFAULTS,
|
|
2136
|
-
id: League.ANDORRA_PRIMERA_DIVISIO,
|
|
2137
|
-
label: 'Andorra Primera Divisio',
|
|
2138
|
-
opticOddsName: 'Andorra - Primera Divisio',
|
|
2139
|
-
priority: 196,
|
|
2140
|
-
},
|
|
2141
|
-
[League.FAROE_ISLANDS_PREMIER_LEAGUE]: {
|
|
2142
|
-
...SOCCER_DEFAULTS,
|
|
2143
|
-
id: League.FAROE_ISLANDS_PREMIER_LEAGUE,
|
|
2144
|
-
label: 'Faroe Islands Premier League',
|
|
2145
|
-
opticOddsName: 'Faroe Islands - Premier League',
|
|
2146
|
-
priority: 196,
|
|
2147
|
-
},
|
|
2148
|
-
[League.GIBRALTAR_FOOTBALL_LEAGUE]: {
|
|
2149
|
-
...SOCCER_DEFAULTS,
|
|
2150
|
-
id: League.GIBRALTAR_FOOTBALL_LEAGUE,
|
|
2151
|
-
label: 'Gibraltar Football League',
|
|
2152
|
-
opticOddsName: 'Gibraltar - Football League',
|
|
2153
|
-
priority: 196,
|
|
2154
|
-
},
|
|
2155
|
-
[League.MONGOLIA_PREMIER_LEAGUE]: {
|
|
2156
|
-
...SOCCER_DEFAULTS,
|
|
2157
|
-
id: League.MONGOLIA_PREMIER_LEAGUE,
|
|
2158
|
-
label: 'Mongolia Premier League',
|
|
2159
|
-
opticOddsName: 'Mongolia - Premier League',
|
|
2160
|
-
priority: 196,
|
|
2161
|
-
},
|
|
2162
|
-
[League.MONTENEGRO_CFL_1]: {
|
|
2163
|
-
...SOCCER_DEFAULTS,
|
|
2164
|
-
id: League.MONTENEGRO_CFL_1,
|
|
2165
|
-
label: 'Montenegro CFL 1',
|
|
2166
|
-
opticOddsName: 'Montenegro - CFL 1',
|
|
2167
|
-
priority: 196,
|
|
2168
|
-
},
|
|
2169
|
-
[League.NEW_ZEALAND_NATIONAL_LEAGUE]: {
|
|
2170
|
-
...SOCCER_DEFAULTS,
|
|
2171
|
-
id: League.NEW_ZEALAND_NATIONAL_LEAGUE,
|
|
2172
|
-
label: 'New Zealand National League',
|
|
2173
|
-
opticOddsName: 'New Zealand - National League',
|
|
2174
|
-
priority: 196,
|
|
2175
|
-
},
|
|
2176
|
-
[League.SAN_MARINO_CAMPIONATO]: {
|
|
2177
|
-
...SOCCER_DEFAULTS,
|
|
2178
|
-
id: League.SAN_MARINO_CAMPIONATO,
|
|
2179
|
-
label: 'San Marino Campionato',
|
|
2180
|
-
opticOddsName: 'San Marino - Campionato',
|
|
2181
|
-
priority: 196,
|
|
2182
|
-
},
|
|
2183
|
-
[League.COLOMBIA_PRIMERA_B]: {
|
|
2184
|
-
...SOCCER_DEFAULTS,
|
|
2185
|
-
id: League.COLOMBIA_PRIMERA_B,
|
|
2186
|
-
label: 'Colombia Primera B',
|
|
2187
|
-
opticOddsName: 'Colombia - Primera B',
|
|
2188
|
-
priority: 192,
|
|
2189
|
-
},
|
|
2190
|
-
[League.DENMARK_2ND_DIVISION]: {
|
|
2191
|
-
...SOCCER_DEFAULTS,
|
|
2192
|
-
id: League.DENMARK_2ND_DIVISION,
|
|
2193
|
-
label: 'Denmark 2nd Division',
|
|
2194
|
-
opticOddsName: 'Denmark - 2nd Division',
|
|
2195
|
-
priority: 195,
|
|
2196
|
-
},
|
|
2197
|
-
[League.POLAND_II_LIGA]: {
|
|
2198
|
-
...SOCCER_DEFAULTS,
|
|
2199
|
-
id: League.POLAND_II_LIGA,
|
|
2200
|
-
label: 'Poland II Liga',
|
|
2201
|
-
opticOddsName: 'Poland - II Liga',
|
|
2202
|
-
priority: 193,
|
|
2203
|
-
},
|
|
2204
|
-
[League.SLOVAKIA_2_LIGA]: {
|
|
2205
|
-
...SOCCER_DEFAULTS,
|
|
2206
|
-
id: League.SLOVAKIA_2_LIGA,
|
|
2207
|
-
label: 'Slovakia 2. Liga',
|
|
2208
|
-
opticOddsName: 'Slovakia - 2. Liga',
|
|
2209
|
-
priority: 193,
|
|
2210
|
-
},
|
|
2211
|
-
[League.SWITZERLAND_PROMOTION_LEAGUE]: {
|
|
2212
|
-
...SOCCER_DEFAULTS,
|
|
2213
|
-
id: League.SWITZERLAND_PROMOTION_LEAGUE,
|
|
2214
|
-
label: 'Switzerland Promotion League',
|
|
2215
|
-
opticOddsName: 'Switzerland - Promotion League',
|
|
2216
|
-
priority: 195,
|
|
2217
|
-
},
|
|
2218
|
-
[League.AUSTRALIA_NORTHERN_NSW_NPL]: {
|
|
2219
|
-
...SOCCER_DEFAULTS,
|
|
2220
|
-
id: League.AUSTRALIA_NORTHERN_NSW_NPL,
|
|
2221
|
-
label: 'Australia Northern NSW NPL',
|
|
2222
|
-
opticOddsName: 'Australia - Northern NSW NPL',
|
|
2223
|
-
priority: 197,
|
|
2224
|
-
},
|
|
2225
|
-
[League.AUSTRALIA_QUEENSLAND_NPL]: {
|
|
2226
|
-
...SOCCER_DEFAULTS,
|
|
2227
|
-
id: League.AUSTRALIA_QUEENSLAND_NPL,
|
|
2228
|
-
label: 'Australia Queensland NPL',
|
|
2229
|
-
opticOddsName: 'Australia - Queensland NPL',
|
|
2230
|
-
priority: 197,
|
|
2231
|
-
},
|
|
2232
|
-
[League.AUSTRALIA_QUEENSLAND_PREMIER_LEAGUE]: {
|
|
2233
|
-
...SOCCER_DEFAULTS,
|
|
2234
|
-
id: League.AUSTRALIA_QUEENSLAND_PREMIER_LEAGUE,
|
|
2235
|
-
label: 'Australia Queensland Premier League',
|
|
2236
|
-
opticOddsName: 'Australia - Queensland Premier League',
|
|
2237
|
-
priority: 197,
|
|
2238
|
-
},
|
|
2239
|
-
[League.AUSTRALIA_SOUTH_AUSTRALIA_NPL]: {
|
|
2240
|
-
...SOCCER_DEFAULTS,
|
|
2241
|
-
id: League.AUSTRALIA_SOUTH_AUSTRALIA_NPL,
|
|
2242
|
-
label: 'Australia South Australia NPL',
|
|
2243
|
-
opticOddsName: 'Australia - South Australia NPL',
|
|
2244
|
-
priority: 197,
|
|
2245
|
-
},
|
|
2246
|
-
[League.AUSTRALIA_VICTORIA_NPL]: {
|
|
2247
|
-
...SOCCER_DEFAULTS,
|
|
2248
|
-
id: League.AUSTRALIA_VICTORIA_NPL,
|
|
2249
|
-
label: 'Australia Victoria NPL',
|
|
2250
|
-
opticOddsName: 'Australia - Victoria NPL',
|
|
2251
|
-
priority: 197,
|
|
2252
|
-
},
|
|
2253
|
-
[League.AUSTRALIA_VICTORIA_PREMIER_LEAGUE_1]: {
|
|
2254
|
-
...SOCCER_DEFAULTS,
|
|
2255
|
-
id: League.AUSTRALIA_VICTORIA_PREMIER_LEAGUE_1,
|
|
2256
|
-
label: 'Australia Victoria Premier League 1',
|
|
2257
|
-
opticOddsName: 'Australia - Victoria Premier League 1',
|
|
2258
|
-
priority: 197,
|
|
2259
|
-
},
|
|
2260
|
-
[League.CHINA_LEAGUE_ONE]: {
|
|
2261
|
-
...SOCCER_DEFAULTS,
|
|
2262
|
-
id: League.CHINA_LEAGUE_ONE,
|
|
2263
|
-
label: 'China League One',
|
|
2264
|
-
opticOddsName: 'China - League One',
|
|
2265
|
-
priority: 193,
|
|
2266
|
-
},
|
|
2267
|
-
[League.CHILE_PRIMERA_B]: {
|
|
2268
|
-
...SOCCER_DEFAULTS,
|
|
2269
|
-
id: League.CHILE_PRIMERA_B,
|
|
2270
|
-
label: 'Chile Primera B',
|
|
2271
|
-
opticOddsName: 'Chile - Primera B',
|
|
2272
|
-
priority: 193,
|
|
2273
|
-
},
|
|
2274
|
-
[League.USA_MLS_NEXT_PRO]: {
|
|
2275
|
-
...SOCCER_DEFAULTS,
|
|
2276
|
-
id: League.USA_MLS_NEXT_PRO,
|
|
2277
|
-
label: 'USA MLS Next Pro',
|
|
2278
|
-
opticOddsName: 'USA - MLS Next Pro',
|
|
2279
|
-
priority: 196,
|
|
2280
|
-
},
|
|
2281
|
-
[League.NORWAY_2_DIVISION]: {
|
|
2282
|
-
...SOCCER_DEFAULTS,
|
|
2283
|
-
id: League.NORWAY_2_DIVISION,
|
|
2284
|
-
label: 'Norway 2. Division',
|
|
2285
|
-
opticOddsName: 'Norway - 2. Division',
|
|
2286
|
-
priority: 195,
|
|
2287
|
-
},
|
|
2288
|
-
[League.GERMANY_REGIONALLIGA]: {
|
|
2289
|
-
...SOCCER_DEFAULTS,
|
|
2290
|
-
id: League.GERMANY_REGIONALLIGA,
|
|
2291
|
-
label: 'Germany Regionalliga',
|
|
2292
|
-
opticOddsName: 'Germany - Regionalliga',
|
|
2293
|
-
priority: 196,
|
|
2294
|
-
},
|
|
2295
|
-
[League.GERMANY_BUNDESLIGA_U19]: {
|
|
2296
|
-
...SOCCER_DEFAULTS,
|
|
2297
|
-
id: League.GERMANY_BUNDESLIGA_U19,
|
|
2298
|
-
label: 'Germany Bundesliga U19',
|
|
2299
|
-
opticOddsName: 'Germany - Bundesliga U19',
|
|
2300
|
-
priority: 197,
|
|
2301
|
-
},
|
|
2302
|
-
[League.BRAZIL_BRASILEIRO_WOMEN]: {
|
|
2303
|
-
...SOCCER_DEFAULTS,
|
|
2304
|
-
id: League.BRAZIL_BRASILEIRO_WOMEN,
|
|
2305
|
-
label: 'Brazil Brasileiro Women',
|
|
2306
|
-
opticOddsName: 'Brazil - Brasileiro Women',
|
|
2307
|
-
priority: 197,
|
|
2308
|
-
},
|
|
2309
|
-
[League.SWEDEN_ELITETTAN_WOMEN]: {
|
|
2310
|
-
...SOCCER_DEFAULTS,
|
|
2311
|
-
id: League.SWEDEN_ELITETTAN_WOMEN,
|
|
2312
|
-
label: 'Sweden Elitettan Women',
|
|
2313
|
-
opticOddsName: 'Sweden - Elitettan Women',
|
|
2314
|
-
priority: 197,
|
|
2315
|
-
},
|
|
2316
|
-
[League.ARGENTINA_LIGA_PRO_RESERVES]: {
|
|
2317
|
-
...SOCCER_DEFAULTS,
|
|
2318
|
-
id: League.ARGENTINA_LIGA_PRO_RESERVES,
|
|
2319
|
-
label: 'Argentina Liga Pro Reserves',
|
|
2320
|
-
opticOddsName: 'Argentina - Liga Pro Reserves',
|
|
2321
|
-
priority: 198,
|
|
2322
|
-
},
|
|
2323
|
-
[League.JAPAN_J2_LEAGUE]: {
|
|
2324
|
-
...SOCCER_DEFAULTS,
|
|
2325
|
-
id: League.JAPAN_J2_LEAGUE,
|
|
2326
|
-
label: 'Japan J2 League',
|
|
2327
|
-
opticOddsName: 'Japan - J2 League',
|
|
2328
|
-
priority: 184,
|
|
2329
|
-
},
|
|
2330
|
-
[League.JAPAN_J3_LEAGUE]: {
|
|
2331
|
-
...SOCCER_DEFAULTS,
|
|
2332
|
-
id: League.JAPAN_J3_LEAGUE,
|
|
2333
|
-
label: 'Japan J3 League',
|
|
2334
|
-
opticOddsName: 'Japan - J3 League',
|
|
2335
|
-
priority: 192,
|
|
2336
|
-
},
|
|
2337
|
-
[League.FRANCE_NATIONAL_1]: {
|
|
2338
|
-
...SOCCER_DEFAULTS,
|
|
2339
|
-
id: League.FRANCE_NATIONAL_1,
|
|
2340
|
-
label: 'France National 1',
|
|
2341
|
-
opticOddsName: 'France - National 1',
|
|
2342
|
-
priority: 192,
|
|
2343
|
-
},
|
|
2344
|
-
[League.BRAZIL_SERIE_C]: {
|
|
2345
|
-
...SOCCER_DEFAULTS,
|
|
2346
|
-
id: League.BRAZIL_SERIE_C,
|
|
2347
|
-
label: 'Brazil Serie C',
|
|
2348
|
-
opticOddsName: 'Brazil - Serie C',
|
|
2349
|
-
priority: 190,
|
|
2350
|
-
},
|
|
2351
|
-
[League.SERBIA_PRVA_LIGA]: {
|
|
2352
|
-
...SOCCER_DEFAULTS,
|
|
2353
|
-
id: League.SERBIA_PRVA_LIGA,
|
|
2354
|
-
label: 'Serbia Prva Liga',
|
|
2355
|
-
opticOddsName: 'Serbia - Prva Liga',
|
|
2356
|
-
priority: 190,
|
|
2357
|
-
},
|
|
2358
|
-
[League.UKRAINE_PERSHA_LIHA]: {
|
|
2359
|
-
...SOCCER_DEFAULTS,
|
|
2360
|
-
id: League.UKRAINE_PERSHA_LIHA,
|
|
2361
|
-
label: 'Ukraine Persha Liha',
|
|
2362
|
-
opticOddsName: 'Ukraine - Persha Liha',
|
|
2363
|
-
priority: 190,
|
|
2364
|
-
},
|
|
2365
|
-
[League.HUNGARY_NB_II]: {
|
|
2366
|
-
...SOCCER_DEFAULTS,
|
|
2367
|
-
id: League.HUNGARY_NB_II,
|
|
2368
|
-
label: 'Hungary NB II',
|
|
2369
|
-
opticOddsName: 'Hungary - NB II',
|
|
2370
|
-
priority: 192,
|
|
2371
|
-
},
|
|
2372
|
-
[League.ISRAEL_NATIONAL_LEAGUE]: {
|
|
2373
|
-
...SOCCER_DEFAULTS,
|
|
2374
|
-
id: League.ISRAEL_NATIONAL_LEAGUE,
|
|
2375
|
-
label: 'Israel National League',
|
|
2376
|
-
opticOddsName: 'Israel - National League',
|
|
2377
|
-
priority: 192,
|
|
2378
|
-
},
|
|
2379
|
-
[League.SAUDI_ARABIA_DIVISION_1]: {
|
|
2380
|
-
...SOCCER_DEFAULTS,
|
|
2381
|
-
id: League.SAUDI_ARABIA_DIVISION_1,
|
|
2382
|
-
label: 'Saudi Arabia Division 1',
|
|
2383
|
-
opticOddsName: 'Saudi Arabia - Division 1',
|
|
2384
|
-
priority: 188,
|
|
2385
|
-
},
|
|
2386
|
-
[League.SCOTLAND_LEAGUE_ONE]: {
|
|
2387
|
-
...SOCCER_DEFAULTS,
|
|
2388
|
-
id: League.SCOTLAND_LEAGUE_ONE,
|
|
2389
|
-
label: 'Scotland League One',
|
|
2390
|
-
opticOddsName: 'Scotland - League One',
|
|
2391
|
-
priority: 190,
|
|
2392
|
-
},
|
|
2393
|
-
[League.SCOTLAND_LEAGUE_TWO]: {
|
|
2394
|
-
...SOCCER_DEFAULTS,
|
|
2395
|
-
id: League.SCOTLAND_LEAGUE_TWO,
|
|
2396
|
-
label: 'Scotland League Two',
|
|
2397
|
-
opticOddsName: 'Scotland - League Two',
|
|
2398
|
-
priority: 194,
|
|
2399
|
-
},
|
|
2400
|
-
[League.USA_USL_LEAGUE_ONE]: {
|
|
2401
|
-
...SOCCER_DEFAULTS,
|
|
2402
|
-
id: League.USA_USL_LEAGUE_ONE,
|
|
2403
|
-
label: 'USA USL League One',
|
|
2404
|
-
opticOddsName: 'USA - USL League One',
|
|
2405
|
-
priority: 192,
|
|
2406
|
-
},
|
|
2407
|
-
[League.ENGLAND_ISTHMIAN_PREMIER_LEAGUE]: {
|
|
2408
|
-
...SOCCER_DEFAULTS,
|
|
2409
|
-
id: League.ENGLAND_ISTHMIAN_PREMIER_LEAGUE,
|
|
2410
|
-
label: 'England Isthmian Premier League',
|
|
2411
|
-
opticOddsName: 'England - Isthmian Premier League',
|
|
2412
|
-
priority: 195,
|
|
2413
|
-
},
|
|
2414
|
-
[League.ENGLAND_NORTHERN_PREMIER_LEAGUE]: {
|
|
2415
|
-
...SOCCER_DEFAULTS,
|
|
2416
|
-
id: League.ENGLAND_NORTHERN_PREMIER_LEAGUE,
|
|
2417
|
-
label: 'England Northern Premier League',
|
|
2418
|
-
opticOddsName: 'England - Northern Premier League',
|
|
2419
|
-
priority: 195,
|
|
2420
|
-
},
|
|
2421
|
-
[League.ENGLAND_SOUTHERN_PREMIER_LEAGUE]: {
|
|
2422
|
-
...SOCCER_DEFAULTS,
|
|
2423
|
-
id: League.ENGLAND_SOUTHERN_PREMIER_LEAGUE,
|
|
2424
|
-
label: 'England Southern Premier League',
|
|
2425
|
-
opticOddsName: 'England - Southern Premier League',
|
|
2426
|
-
priority: 195,
|
|
2427
|
-
},
|
|
2428
|
-
[League.ENGLAND_PROFESSIONAL_DEVELOPMENT_LEAGUE_U21]: {
|
|
2429
|
-
...SOCCER_DEFAULTS,
|
|
2430
|
-
id: League.ENGLAND_PROFESSIONAL_DEVELOPMENT_LEAGUE_U21,
|
|
2431
|
-
label: 'England Professional Development League U21',
|
|
2432
|
-
opticOddsName: 'England - Professional Development League U21',
|
|
2433
|
-
priority: 197,
|
|
2434
|
-
},
|
|
2435
|
-
[League.ITALY_PRIMAVERA_U20]: {
|
|
2436
|
-
...SOCCER_DEFAULTS,
|
|
2437
|
-
id: League.ITALY_PRIMAVERA_U20,
|
|
2438
|
-
label: 'Italy Primavera U20',
|
|
2439
|
-
opticOddsName: 'Italy - Primavera U20',
|
|
2440
|
-
priority: 197,
|
|
2441
|
-
},
|
|
2442
|
-
[League.PORTUGAL_LIGA_REVELACAO_U23]: {
|
|
2443
|
-
...SOCCER_DEFAULTS,
|
|
2444
|
-
id: League.PORTUGAL_LIGA_REVELACAO_U23,
|
|
2445
|
-
label: 'Portugal Liga Revelacao U23',
|
|
2446
|
-
opticOddsName: 'Portugal - Liga Revelacao U23',
|
|
2447
|
-
priority: 197,
|
|
2448
|
-
},
|
|
2449
|
-
[League.AUSTRALIA_NSW_NPL]: {
|
|
2450
|
-
...SOCCER_DEFAULTS,
|
|
2451
|
-
id: League.AUSTRALIA_NSW_NPL,
|
|
2452
|
-
label: 'Australia NSW NPL',
|
|
2453
|
-
opticOddsName: 'Australia - NSW NPL',
|
|
2454
|
-
priority: 197,
|
|
2455
|
-
},
|
|
2456
|
-
[League.EGYPT_SECOND_DIVISION]: {
|
|
2457
|
-
...SOCCER_DEFAULTS,
|
|
2458
|
-
id: League.EGYPT_SECOND_DIVISION,
|
|
2459
|
-
label: 'Egypt Second Division',
|
|
2460
|
-
opticOddsName: 'Egypt - Second Division',
|
|
2461
|
-
priority: 193,
|
|
2462
|
-
},
|
|
2463
|
-
[League.ICELAND_BESTA_DEILD_WOMEN]: {
|
|
2464
|
-
...SOCCER_DEFAULTS,
|
|
2465
|
-
id: League.ICELAND_BESTA_DEILD_WOMEN,
|
|
2466
|
-
label: 'Iceland Besta Deild Women',
|
|
2467
|
-
opticOddsName: 'Iceland - Besta Deild Women',
|
|
2468
|
-
priority: 197,
|
|
2469
|
-
},
|
|
2470
|
-
[League.SLOVAKIA_SLOVENSKY_POHAR]: {
|
|
2471
|
-
...SOCCER_DEFAULTS,
|
|
2472
|
-
id: League.SLOVAKIA_SLOVENSKY_POHAR,
|
|
2473
|
-
label: 'Slovakia Slovensky Pohar',
|
|
2474
|
-
opticOddsName: 'Slovakia - Slovensky Pohar',
|
|
2475
|
-
priority: 185,
|
|
2476
|
-
},
|
|
2477
|
-
[League.ASEAN_CHAMPIONSHIP]: {
|
|
2478
|
-
...SOCCER_DEFAULTS,
|
|
2479
|
-
id: League.ASEAN_CHAMPIONSHIP,
|
|
2480
|
-
label: 'ASEAN Championship',
|
|
2481
|
-
opticOddsName: 'ASEAN - Championship',
|
|
2482
|
-
priority: 187,
|
|
2483
|
-
},
|
|
2484
|
-
[League.ITALY_SERIE_C_CUP]: {
|
|
2485
|
-
...SOCCER_DEFAULTS,
|
|
2486
|
-
id: League.ITALY_SERIE_C_CUP,
|
|
2487
|
-
label: 'Italy Serie C Cup',
|
|
2488
|
-
opticOddsName: 'Italy - Serie C Cup',
|
|
2489
|
-
priority: 150,
|
|
2490
|
-
},
|
|
2491
|
-
[League.AUSTRALIA_WESTERN_AUSTRALIA_NPL]: {
|
|
2492
|
-
...SOCCER_DEFAULTS,
|
|
2493
|
-
id: League.AUSTRALIA_WESTERN_AUSTRALIA_NPL,
|
|
2494
|
-
label: 'Australia Western Australia NPL',
|
|
2495
|
-
opticOddsName: 'Australia - Western Australia NPL',
|
|
2496
|
-
priority: 197,
|
|
2497
|
-
},
|
|
2498
|
-
[League.JAPAN_LEAGUE_CUP]: {
|
|
2499
|
-
...SOCCER_DEFAULTS,
|
|
2500
|
-
id: League.JAPAN_LEAGUE_CUP,
|
|
2501
|
-
label: 'Japan League Cup',
|
|
2502
|
-
opticOddsName: 'Japan - League Cup',
|
|
2503
|
-
priority: 184,
|
|
2504
|
-
},
|
|
2505
|
-
[League.IRELAND_FAI_CUP]: {
|
|
2506
|
-
...SOCCER_DEFAULTS,
|
|
2507
|
-
id: League.IRELAND_FAI_CUP,
|
|
2508
|
-
label: 'Ireland FAI Cup',
|
|
2509
|
-
opticOddsName: 'Ireland - FAI Cup',
|
|
2510
|
-
priority: 150,
|
|
2511
|
-
},
|
|
2512
|
-
[League.AUSTRALIA_QUEENSLAND_NPL_WOMEN]: {
|
|
2513
|
-
...SOCCER_DEFAULTS,
|
|
2514
|
-
id: League.AUSTRALIA_QUEENSLAND_NPL_WOMEN,
|
|
2515
|
-
label: 'Australia Queensland NPL Women',
|
|
2516
|
-
opticOddsName: 'Australia - Queensland NPL Women',
|
|
2517
|
-
priority: 197,
|
|
2518
|
-
},
|
|
2519
|
-
[League.URUGUAY_SEGUNDA_DIVISION]: {
|
|
2520
|
-
...SOCCER_DEFAULTS,
|
|
2521
|
-
id: League.URUGUAY_SEGUNDA_DIVISION,
|
|
2522
|
-
label: 'Uruguay Segunda Division',
|
|
2523
|
-
opticOddsName: 'Uruguay - Segunda Division',
|
|
2524
|
-
priority: 177,
|
|
2525
|
-
},
|
|
2526
|
-
|
|
1
|
+
import { League, MatchResolveType, PeriodType, Provider, ScoringType, Sport } from '../../enums/sports';
|
|
2
|
+
import { LeagueInfo } from '../../types/sports';
|
|
3
|
+
|
|
4
|
+
// Common default values for Soccer leagues
|
|
5
|
+
export const SOCCER_DEFAULTS = {
|
|
6
|
+
sport: Sport.SOCCER,
|
|
7
|
+
provider: Provider.OPTICODDS,
|
|
8
|
+
scoringType: ScoringType.GOALS,
|
|
9
|
+
matchResolveType: MatchResolveType.REGULAR,
|
|
10
|
+
periodType: PeriodType.HALF,
|
|
11
|
+
isDrawAvailable: true,
|
|
12
|
+
hidden: false,
|
|
13
|
+
} as const;
|
|
14
|
+
|
|
15
|
+
export const SOCCER_LEAGUES: Partial<Record<League, LeagueInfo>> = {
|
|
16
|
+
[League.MLS]: {
|
|
17
|
+
...SOCCER_DEFAULTS,
|
|
18
|
+
id: League.MLS,
|
|
19
|
+
label: 'MLS',
|
|
20
|
+
opticOddsName: 'USA - Major League Soccer',
|
|
21
|
+
logo: `/logos/leagueLogos/mls.webp`,
|
|
22
|
+
logoClass: 'icon-homepage league--mls',
|
|
23
|
+
priority: 140,
|
|
24
|
+
},
|
|
25
|
+
[League.EPL]: {
|
|
26
|
+
...SOCCER_DEFAULTS,
|
|
27
|
+
id: League.EPL,
|
|
28
|
+
label: 'EPL',
|
|
29
|
+
opticOddsName: 'England - Premier League',
|
|
30
|
+
logo: `/logos/leagueLogos/EPL.webp`,
|
|
31
|
+
logoClass: 'icon-homepage league--epl',
|
|
32
|
+
priority: 120,
|
|
33
|
+
},
|
|
34
|
+
[League.LIGUE_ONE]: {
|
|
35
|
+
...SOCCER_DEFAULTS,
|
|
36
|
+
id: League.LIGUE_ONE,
|
|
37
|
+
label: 'Ligue 1',
|
|
38
|
+
opticOddsName: 'France - Ligue 1',
|
|
39
|
+
logo: `/logos/leagueLogos/Ligue1.webp`,
|
|
40
|
+
logoClass: 'icon-homepage league--ligue1',
|
|
41
|
+
priority: 124,
|
|
42
|
+
},
|
|
43
|
+
[League.BUNDESLIGA]: {
|
|
44
|
+
...SOCCER_DEFAULTS,
|
|
45
|
+
id: League.BUNDESLIGA,
|
|
46
|
+
label: 'Bundesliga',
|
|
47
|
+
opticOddsName: 'Germany - Bundesliga',
|
|
48
|
+
logo: '/logos/leagueLogos/bundesliga.webp',
|
|
49
|
+
logoClass: 'icon-homepage league--bundesliga',
|
|
50
|
+
priority: 123,
|
|
51
|
+
},
|
|
52
|
+
[League.LA_LIGA]: {
|
|
53
|
+
...SOCCER_DEFAULTS,
|
|
54
|
+
id: League.LA_LIGA,
|
|
55
|
+
label: 'La Liga',
|
|
56
|
+
opticOddsName: 'Spain - La Liga',
|
|
57
|
+
logo: `/logos/leagueLogos/LaLiga.webp`,
|
|
58
|
+
logoClass: 'icon-homepage league--la-liga',
|
|
59
|
+
priority: 121,
|
|
60
|
+
},
|
|
61
|
+
[League.SERIE_A]: {
|
|
62
|
+
...SOCCER_DEFAULTS,
|
|
63
|
+
id: League.SERIE_A,
|
|
64
|
+
label: 'Serie A',
|
|
65
|
+
opticOddsName: 'Italy - Serie A',
|
|
66
|
+
logo: `/logos/leagueLogos/seriea.webp`,
|
|
67
|
+
logoClass: 'icon-homepage league--serie-a',
|
|
68
|
+
priority: 122,
|
|
69
|
+
},
|
|
70
|
+
[League.UEFA_CL]: {
|
|
71
|
+
...SOCCER_DEFAULTS,
|
|
72
|
+
id: League.UEFA_CL,
|
|
73
|
+
label: 'UEFA Champions League',
|
|
74
|
+
opticOddsName: 'UEFA - Champions League',
|
|
75
|
+
logo: `/logos/leagueLogos/ucl-white.webp`,
|
|
76
|
+
logoClass: 'icon-homepage league--ucl',
|
|
77
|
+
priority: 103,
|
|
78
|
+
tooltipKey: 'common.football-tooltip',
|
|
79
|
+
},
|
|
80
|
+
[League.UEFA_EL]: {
|
|
81
|
+
...SOCCER_DEFAULTS,
|
|
82
|
+
id: League.UEFA_EL,
|
|
83
|
+
label: 'UEFA Europa League',
|
|
84
|
+
opticOddsName: 'UEFA - Europa League',
|
|
85
|
+
logoClass: 'icon-homepage league--uel',
|
|
86
|
+
priority: 104,
|
|
87
|
+
tooltipKey: 'common.football-tooltip',
|
|
88
|
+
},
|
|
89
|
+
[League.FIFA_WC_QUALIFIERS]: {
|
|
90
|
+
...SOCCER_DEFAULTS,
|
|
91
|
+
id: League.FIFA_WC_QUALIFIERS,
|
|
92
|
+
label: 'FIFA World Cup Qualifiers',
|
|
93
|
+
opticOddsName: 'FIFA - World Cup Qualifiers',
|
|
94
|
+
logoClass: 'icon-homepage league--fifa-world-cup',
|
|
95
|
+
priority: 100,
|
|
96
|
+
tooltipKey: 'common.fifa-tooltip',
|
|
97
|
+
},
|
|
98
|
+
[League.FIFA_WORLD_CUP]: {
|
|
99
|
+
...SOCCER_DEFAULTS,
|
|
100
|
+
id: League.FIFA_WORLD_CUP,
|
|
101
|
+
label: 'FIFA World Cup',
|
|
102
|
+
opticOddsName: 'FIFA - World Cup',
|
|
103
|
+
logoClass: 'icon-homepage league--fifa-world-cup',
|
|
104
|
+
priority: 101,
|
|
105
|
+
tooltipKey: 'common.fifa-tooltip',
|
|
106
|
+
},
|
|
107
|
+
[League.J1_LEAGUE]: {
|
|
108
|
+
...SOCCER_DEFAULTS,
|
|
109
|
+
id: League.J1_LEAGUE,
|
|
110
|
+
label: 'J1 League',
|
|
111
|
+
opticOddsName: 'Japan - J1 League',
|
|
112
|
+
logoClass: 'icon-homepage league--j1',
|
|
113
|
+
priority: 144,
|
|
114
|
+
},
|
|
115
|
+
[League.COPA_AMERICA]: {
|
|
116
|
+
...SOCCER_DEFAULTS,
|
|
117
|
+
id: League.COPA_AMERICA,
|
|
118
|
+
label: 'Copa America 2024',
|
|
119
|
+
opticOddsName: 'CONMEBOL - Copa America',
|
|
120
|
+
provider: Provider.EMPTY,
|
|
121
|
+
priority: 102,
|
|
122
|
+
hidden: true,
|
|
123
|
+
},
|
|
124
|
+
[League.COPA_LIBERTADORES]: {
|
|
125
|
+
...SOCCER_DEFAULTS,
|
|
126
|
+
id: League.COPA_LIBERTADORES,
|
|
127
|
+
label: 'Copa Libertadores',
|
|
128
|
+
opticOddsName: 'CONMEBOL - Copa Libertadores',
|
|
129
|
+
logoClass: 'icon-homepage league--copa-libertadores',
|
|
130
|
+
priority: 107,
|
|
131
|
+
},
|
|
132
|
+
[League.UEFA_EURO]: {
|
|
133
|
+
...SOCCER_DEFAULTS,
|
|
134
|
+
id: League.UEFA_EURO,
|
|
135
|
+
label: 'UEFA EURO 2024',
|
|
136
|
+
opticOddsName: 'UEFA - European Championship',
|
|
137
|
+
provider: Provider.EMPTY,
|
|
138
|
+
logoClass: 'icon-homepage league--uefa',
|
|
139
|
+
priority: 101,
|
|
140
|
+
hidden: true,
|
|
141
|
+
tooltipKey: 'common.football-tooltip',
|
|
142
|
+
},
|
|
143
|
+
[League.EREDIVISIE]: {
|
|
144
|
+
...SOCCER_DEFAULTS,
|
|
145
|
+
id: League.EREDIVISIE,
|
|
146
|
+
label: 'Eredivisie',
|
|
147
|
+
opticOddsName: 'Netherlands - Eredivisie',
|
|
148
|
+
logoClass: 'icon-homepage league--eredivisie',
|
|
149
|
+
priority: 141,
|
|
150
|
+
},
|
|
151
|
+
[League.PRIMEIRA_LIGA]: {
|
|
152
|
+
...SOCCER_DEFAULTS,
|
|
153
|
+
id: League.PRIMEIRA_LIGA,
|
|
154
|
+
label: 'Primeira Liga',
|
|
155
|
+
opticOddsName: 'Portugal - Primeira Liga',
|
|
156
|
+
logoClass: 'icon-homepage league--portugal',
|
|
157
|
+
priority: 142,
|
|
158
|
+
},
|
|
159
|
+
[League.SUMMER_OLYMPICS_SOCCER_WOMEN]: {
|
|
160
|
+
...SOCCER_DEFAULTS,
|
|
161
|
+
id: League.SUMMER_OLYMPICS_SOCCER_WOMEN,
|
|
162
|
+
label: 'Olympic Games Soccer Women',
|
|
163
|
+
opticOddsName: 'Olympics Soccer Women',
|
|
164
|
+
provider: Provider.EMPTY,
|
|
165
|
+
logoClass: 'icon-homepage league--paris2024',
|
|
166
|
+
priority: 102,
|
|
167
|
+
hidden: true,
|
|
168
|
+
tooltipKey: 'common.football-tooltip',
|
|
169
|
+
},
|
|
170
|
+
[League.SUMMER_OLYMPICS_SOCCER]: {
|
|
171
|
+
...SOCCER_DEFAULTS,
|
|
172
|
+
id: League.SUMMER_OLYMPICS_SOCCER,
|
|
173
|
+
logoClass: 'icon-homepage league--paris2024',
|
|
174
|
+
label: 'Olympic Games Soccer',
|
|
175
|
+
opticOddsName: 'Olympics Soccer Men',
|
|
176
|
+
provider: Provider.EMPTY,
|
|
177
|
+
priority: 102,
|
|
178
|
+
hidden: true,
|
|
179
|
+
tooltipKey: 'common.football-tooltip',
|
|
180
|
+
},
|
|
181
|
+
[League.FIFA_WC_WOMEN]: {
|
|
182
|
+
...SOCCER_DEFAULTS,
|
|
183
|
+
id: League.FIFA_WC_WOMEN,
|
|
184
|
+
label: 'FIFA World Cup Women',
|
|
185
|
+
opticOddsName: 'FIFA - World Cup Women',
|
|
186
|
+
priority: 112,
|
|
187
|
+
hidden: false,
|
|
188
|
+
tooltipKey: 'common.football-tooltip',
|
|
189
|
+
},
|
|
190
|
+
[League.ENGLAND_FA_CUP]: {
|
|
191
|
+
...SOCCER_DEFAULTS,
|
|
192
|
+
id: League.ENGLAND_FA_CUP,
|
|
193
|
+
label: 'FA Cup',
|
|
194
|
+
opticOddsName: 'England - FA Cup',
|
|
195
|
+
priority: 130,
|
|
196
|
+
},
|
|
197
|
+
[League.FRANCE_CUP]: {
|
|
198
|
+
...SOCCER_DEFAULTS,
|
|
199
|
+
id: League.FRANCE_CUP,
|
|
200
|
+
label: 'Coupe de France',
|
|
201
|
+
opticOddsName: 'France - Coupe de France',
|
|
202
|
+
priority: 134,
|
|
203
|
+
},
|
|
204
|
+
[League.SPAIN_CUP]: {
|
|
205
|
+
...SOCCER_DEFAULTS,
|
|
206
|
+
id: League.SPAIN_CUP,
|
|
207
|
+
label: 'Copa del Rey',
|
|
208
|
+
opticOddsName: 'Spain - Copa del Rey',
|
|
209
|
+
priority: 131,
|
|
210
|
+
},
|
|
211
|
+
[League.ITALY_CUP]: {
|
|
212
|
+
...SOCCER_DEFAULTS,
|
|
213
|
+
id: League.ITALY_CUP,
|
|
214
|
+
label: 'Coppa Italia',
|
|
215
|
+
opticOddsName: 'Italy - Coppa Italia',
|
|
216
|
+
priority: 132,
|
|
217
|
+
},
|
|
218
|
+
[League.GERMANY_CUP]: {
|
|
219
|
+
...SOCCER_DEFAULTS,
|
|
220
|
+
id: League.GERMANY_CUP,
|
|
221
|
+
label: 'DFB Pokal',
|
|
222
|
+
opticOddsName: 'Germany - DFB Pokal',
|
|
223
|
+
priority: 133,
|
|
224
|
+
},
|
|
225
|
+
[League.DENMARK_DBU_POKALEN]: {
|
|
226
|
+
...SOCCER_DEFAULTS,
|
|
227
|
+
id: League.DENMARK_DBU_POKALEN,
|
|
228
|
+
label: 'Denmark DBU Pokalen',
|
|
229
|
+
opticOddsName: 'Denmark - DBU Pokalen',
|
|
230
|
+
priority: 135,
|
|
231
|
+
},
|
|
232
|
+
[League.GREECE_CUP]: {
|
|
233
|
+
...SOCCER_DEFAULTS,
|
|
234
|
+
id: League.GREECE_CUP,
|
|
235
|
+
label: 'Greece Cup',
|
|
236
|
+
opticOddsName: 'Greece - Cup',
|
|
237
|
+
priority: 136,
|
|
238
|
+
},
|
|
239
|
+
[League.POLAND_CUP]: {
|
|
240
|
+
...SOCCER_DEFAULTS,
|
|
241
|
+
id: League.POLAND_CUP,
|
|
242
|
+
label: 'Poland Cup',
|
|
243
|
+
opticOddsName: 'Poland - Cup',
|
|
244
|
+
priority: 137,
|
|
245
|
+
},
|
|
246
|
+
[League.NORWAY_NM_CUP]: {
|
|
247
|
+
...SOCCER_DEFAULTS,
|
|
248
|
+
id: League.NORWAY_NM_CUP,
|
|
249
|
+
label: 'Norway NM Cup',
|
|
250
|
+
opticOddsName: 'Norway - NM Cup',
|
|
251
|
+
priority: 138,
|
|
252
|
+
},
|
|
253
|
+
[League.BELGIUM_CUP]: {
|
|
254
|
+
...SOCCER_DEFAULTS,
|
|
255
|
+
id: League.BELGIUM_CUP,
|
|
256
|
+
label: 'Belgium Cup',
|
|
257
|
+
opticOddsName: 'Belgium - Cup',
|
|
258
|
+
priority: 139,
|
|
259
|
+
},
|
|
260
|
+
[League.ROMANIA_CUPA_ROMANIEI]: {
|
|
261
|
+
...SOCCER_DEFAULTS,
|
|
262
|
+
id: League.ROMANIA_CUPA_ROMANIEI,
|
|
263
|
+
label: 'Cupa Romaniei',
|
|
264
|
+
opticOddsName: 'Romania - Cupa Romaniei',
|
|
265
|
+
priority: 141,
|
|
266
|
+
},
|
|
267
|
+
[League.LIGA_MX]: {
|
|
268
|
+
...SOCCER_DEFAULTS,
|
|
269
|
+
id: League.LIGA_MX,
|
|
270
|
+
label: 'Liga MX',
|
|
271
|
+
opticOddsName: 'Mexico - Liga MX',
|
|
272
|
+
priority: 142,
|
|
273
|
+
},
|
|
274
|
+
[League.BRAZIL_1]: {
|
|
275
|
+
...SOCCER_DEFAULTS,
|
|
276
|
+
id: League.BRAZIL_1,
|
|
277
|
+
label: 'Brazil Serie A',
|
|
278
|
+
opticOddsName: 'Brazil - Serie A',
|
|
279
|
+
priority: 143,
|
|
280
|
+
},
|
|
281
|
+
[League.UEFA_EURO_U21]: {
|
|
282
|
+
...SOCCER_DEFAULTS,
|
|
283
|
+
id: League.UEFA_EURO_U21,
|
|
284
|
+
label: 'UEFA EURO U21',
|
|
285
|
+
provider: Provider.EMPTY,
|
|
286
|
+
priority: 111,
|
|
287
|
+
hidden: true,
|
|
288
|
+
tooltipKey: 'common.football-tooltip',
|
|
289
|
+
},
|
|
290
|
+
[League.FIFA_WORLD_CUP_U20]: {
|
|
291
|
+
...SOCCER_DEFAULTS,
|
|
292
|
+
id: League.FIFA_WORLD_CUP_U20,
|
|
293
|
+
label: 'FIFA World Cup U20',
|
|
294
|
+
opticOddsName: 'FIFA - World Cup U20',
|
|
295
|
+
logoClass: 'icon-homepage league--fifa-world-cup-u20',
|
|
296
|
+
priority: 110,
|
|
297
|
+
tooltipKey: 'common.fifa-tooltip',
|
|
298
|
+
},
|
|
299
|
+
[League.SAUDI_PROFESSIONAL_LEAGUE]: {
|
|
300
|
+
...SOCCER_DEFAULTS,
|
|
301
|
+
id: League.SAUDI_PROFESSIONAL_LEAGUE,
|
|
302
|
+
label: 'Saudi Arabia Saudi League',
|
|
303
|
+
opticOddsName: 'Saudi Arabia - Saudi League',
|
|
304
|
+
priority: 145,
|
|
305
|
+
},
|
|
306
|
+
[League.UEFA_NATIONS_LEAGUE]: {
|
|
307
|
+
...SOCCER_DEFAULTS,
|
|
308
|
+
id: League.UEFA_NATIONS_LEAGUE,
|
|
309
|
+
label: 'UEFA Nations League',
|
|
310
|
+
opticOddsName: 'UEFA - Nations League',
|
|
311
|
+
logoClass: 'icon-homepage league--uefa-nations',
|
|
312
|
+
priority: 106,
|
|
313
|
+
tooltipKey: 'common.football-tooltip',
|
|
314
|
+
},
|
|
315
|
+
[League.UEFA_NATIONS_LEAGUE_WOMEN]: {
|
|
316
|
+
...SOCCER_DEFAULTS,
|
|
317
|
+
id: League.UEFA_NATIONS_LEAGUE_WOMEN,
|
|
318
|
+
label: 'UEFA Nations League Women',
|
|
319
|
+
opticOddsName: 'UEFA - Nations League Women',
|
|
320
|
+
logoClass: 'icon-homepage league--uefa-nations',
|
|
321
|
+
priority: 108,
|
|
322
|
+
tooltipKey: 'common.football-tooltip',
|
|
323
|
+
},
|
|
324
|
+
[League.CANADA_PREMIER_LEAGUE]: {
|
|
325
|
+
...SOCCER_DEFAULTS,
|
|
326
|
+
id: League.CANADA_PREMIER_LEAGUE,
|
|
327
|
+
label: 'Canada Premier League',
|
|
328
|
+
opticOddsName: 'Canada - Premier League',
|
|
329
|
+
priority: 146,
|
|
330
|
+
},
|
|
331
|
+
[League.NORWAY_ELITESERIEN]: {
|
|
332
|
+
...SOCCER_DEFAULTS,
|
|
333
|
+
id: League.NORWAY_ELITESERIEN,
|
|
334
|
+
label: 'Norway Eliteserien',
|
|
335
|
+
opticOddsName: 'Norway - Eliteserien',
|
|
336
|
+
priority: 147,
|
|
337
|
+
},
|
|
338
|
+
[League.USA_OPEN_CUP]: {
|
|
339
|
+
...SOCCER_DEFAULTS,
|
|
340
|
+
id: League.USA_OPEN_CUP,
|
|
341
|
+
label: 'USA Open Cup',
|
|
342
|
+
opticOddsName: 'USA - Open Cup',
|
|
343
|
+
priority: 148,
|
|
344
|
+
},
|
|
345
|
+
[League.FIFA_CLUB_WORLD_CUP]: {
|
|
346
|
+
...SOCCER_DEFAULTS,
|
|
347
|
+
id: League.FIFA_CLUB_WORLD_CUP,
|
|
348
|
+
label: 'FIFA Club World Cup',
|
|
349
|
+
opticOddsName: 'FIFA - Club World Cup',
|
|
350
|
+
priority: 149,
|
|
351
|
+
},
|
|
352
|
+
[League.CONCACAF_NATIONS_LEAGUE]: {
|
|
353
|
+
...SOCCER_DEFAULTS,
|
|
354
|
+
id: League.CONCACAF_NATIONS_LEAGUE,
|
|
355
|
+
label: 'CONCACAF Nations League',
|
|
356
|
+
provider: Provider.EMPTY,
|
|
357
|
+
logoClass: 'icon-homepage league--concacaf-nations',
|
|
358
|
+
priority: 109,
|
|
359
|
+
tooltipKey: 'common.football-tooltip',
|
|
360
|
+
},
|
|
361
|
+
[League.CONMEBOL_WC_QUALIFICATIONS]: {
|
|
362
|
+
...SOCCER_DEFAULTS,
|
|
363
|
+
id: League.CONMEBOL_WC_QUALIFICATIONS,
|
|
364
|
+
label: 'CONMEBOL WC Qualification',
|
|
365
|
+
provider: Provider.EMPTY,
|
|
366
|
+
priority: 109,
|
|
367
|
+
},
|
|
368
|
+
[League.UEFA_CONFERENCE_LEAGUE]: {
|
|
369
|
+
...SOCCER_DEFAULTS,
|
|
370
|
+
id: League.UEFA_CONFERENCE_LEAGUE,
|
|
371
|
+
label: 'UEFA Conference League',
|
|
372
|
+
opticOddsName: 'UEFA - Europa Conference League',
|
|
373
|
+
priority: 105,
|
|
374
|
+
tooltipKey: 'common.football-tooltip',
|
|
375
|
+
},
|
|
376
|
+
[League.UEFA_CHAMPIONS_LEAGUE_QUALIFICATION]: {
|
|
377
|
+
...SOCCER_DEFAULTS,
|
|
378
|
+
id: League.UEFA_CHAMPIONS_LEAGUE_QUALIFICATION,
|
|
379
|
+
label: 'UEFA Champions League Qualification',
|
|
380
|
+
opticOddsName: 'UEFA - Champions League',
|
|
381
|
+
provider: Provider.EMPTY,
|
|
382
|
+
logo: `/logos/leagueLogos/ucl-white.webp`,
|
|
383
|
+
logoClass: 'icon-homepage league--ucl',
|
|
384
|
+
priority: 103,
|
|
385
|
+
tooltipKey: 'common.football-tooltip',
|
|
386
|
+
},
|
|
387
|
+
[League.UEFA_EUROPA_LEAGUE_QUALIFICATION]: {
|
|
388
|
+
...SOCCER_DEFAULTS,
|
|
389
|
+
id: League.UEFA_EUROPA_LEAGUE_QUALIFICATION,
|
|
390
|
+
label: 'UEFA Europa League Qualification',
|
|
391
|
+
opticOddsName: 'UEFA - Europa League',
|
|
392
|
+
provider: Provider.EMPTY,
|
|
393
|
+
logoClass: 'icon-homepage league--uel',
|
|
394
|
+
priority: 104,
|
|
395
|
+
tooltipKey: 'common.football-tooltip',
|
|
396
|
+
},
|
|
397
|
+
[League.UEFA_CONFERENCE_LEAGUE_QUALIFICATION]: {
|
|
398
|
+
...SOCCER_DEFAULTS,
|
|
399
|
+
id: League.UEFA_CONFERENCE_LEAGUE_QUALIFICATION,
|
|
400
|
+
label: 'UEFA Conference League Qualification',
|
|
401
|
+
opticOddsName: 'UEFA - Europa Conference League',
|
|
402
|
+
provider: Provider.EMPTY,
|
|
403
|
+
priority: 105,
|
|
404
|
+
tooltipKey: 'common.football-tooltip',
|
|
405
|
+
},
|
|
406
|
+
[League.UEFA_SUPER_CUP]: {
|
|
407
|
+
...SOCCER_DEFAULTS,
|
|
408
|
+
id: League.UEFA_SUPER_CUP,
|
|
409
|
+
label: 'UEFA Super Cup',
|
|
410
|
+
opticOddsName: 'UEFA - Super Cup',
|
|
411
|
+
priority: 102,
|
|
412
|
+
tooltipKey: 'common.football-tooltip',
|
|
413
|
+
},
|
|
414
|
+
[League.BRAZIL_CUP]: {
|
|
415
|
+
...SOCCER_DEFAULTS,
|
|
416
|
+
id: League.BRAZIL_CUP,
|
|
417
|
+
label: 'Copa do Brasil',
|
|
418
|
+
opticOddsName: 'Brazil - Copa do Brasil',
|
|
419
|
+
priority: 135,
|
|
420
|
+
tooltipKey: 'common.football-tooltip',
|
|
421
|
+
},
|
|
422
|
+
[League.ENGLAND_CHAMPIONSHIP]: {
|
|
423
|
+
...SOCCER_DEFAULTS,
|
|
424
|
+
id: League.ENGLAND_CHAMPIONSHIP,
|
|
425
|
+
label: 'EFL Championship',
|
|
426
|
+
opticOddsName: 'England - Championship',
|
|
427
|
+
priority: 125,
|
|
428
|
+
},
|
|
429
|
+
[League.SCOTLAND_PREMIERSHIP]: {
|
|
430
|
+
...SOCCER_DEFAULTS,
|
|
431
|
+
id: League.SCOTLAND_PREMIERSHIP,
|
|
432
|
+
label: 'Scotland Premiership',
|
|
433
|
+
opticOddsName: 'Scotland - Premiership',
|
|
434
|
+
priority: 151,
|
|
435
|
+
},
|
|
436
|
+
[League.BELGIUM_LEAGUE]: {
|
|
437
|
+
...SOCCER_DEFAULTS,
|
|
438
|
+
id: League.BELGIUM_LEAGUE,
|
|
439
|
+
label: 'Belgium Pro League',
|
|
440
|
+
opticOddsName: 'Belgium - Jupiler Pro League',
|
|
441
|
+
priority: 152,
|
|
442
|
+
},
|
|
443
|
+
[League.CZECH_LEAGUE]: {
|
|
444
|
+
...SOCCER_DEFAULTS,
|
|
445
|
+
id: League.CZECH_LEAGUE,
|
|
446
|
+
label: 'Czech Republic FNL',
|
|
447
|
+
opticOddsName: 'Czech Republic - FNL',
|
|
448
|
+
priority: 153,
|
|
449
|
+
},
|
|
450
|
+
[League.CHILE_PRIMERA_DIVISION]: {
|
|
451
|
+
...SOCCER_DEFAULTS,
|
|
452
|
+
id: League.CHILE_PRIMERA_DIVISION,
|
|
453
|
+
label: 'Chile Primera Division',
|
|
454
|
+
opticOddsName: 'Chile - Primera Division',
|
|
455
|
+
priority: 154,
|
|
456
|
+
},
|
|
457
|
+
[League.FINLAND_VEIKKAUSLIIGA]: {
|
|
458
|
+
...SOCCER_DEFAULTS,
|
|
459
|
+
id: League.FINLAND_VEIKKAUSLIIGA,
|
|
460
|
+
label: 'Finland Veikkausliiga',
|
|
461
|
+
opticOddsName: 'Finland - Veikkausliiga',
|
|
462
|
+
priority: 155,
|
|
463
|
+
},
|
|
464
|
+
[League.ARGENTINA_PRIMERA]: {
|
|
465
|
+
...SOCCER_DEFAULTS,
|
|
466
|
+
id: League.ARGENTINA_PRIMERA,
|
|
467
|
+
label: 'Argentina Primera Division',
|
|
468
|
+
opticOddsName: 'Argentina - Primera Division',
|
|
469
|
+
priority: 156,
|
|
470
|
+
},
|
|
471
|
+
[League.RUSSIA_PREMIER]: {
|
|
472
|
+
...SOCCER_DEFAULTS,
|
|
473
|
+
id: League.RUSSIA_PREMIER,
|
|
474
|
+
label: 'Russia Premier League',
|
|
475
|
+
opticOddsName: 'Russia - Premier League',
|
|
476
|
+
priority: 157,
|
|
477
|
+
},
|
|
478
|
+
[League.TURKEY_SUPER_LEAGUE]: {
|
|
479
|
+
...SOCCER_DEFAULTS,
|
|
480
|
+
id: League.TURKEY_SUPER_LEAGUE,
|
|
481
|
+
label: 'Turkey Super Lig',
|
|
482
|
+
opticOddsName: 'Turkey - Super Lig',
|
|
483
|
+
priority: 158,
|
|
484
|
+
},
|
|
485
|
+
[League.SERBIA_SUPER_LEAGUE]: {
|
|
486
|
+
...SOCCER_DEFAULTS,
|
|
487
|
+
id: League.SERBIA_SUPER_LEAGUE,
|
|
488
|
+
label: 'Serbia Super Liga',
|
|
489
|
+
opticOddsName: 'Serbia - Super Liga',
|
|
490
|
+
priority: 159,
|
|
491
|
+
},
|
|
492
|
+
[League.GREECE_SUPER_LEAGUE]: {
|
|
493
|
+
...SOCCER_DEFAULTS,
|
|
494
|
+
id: League.GREECE_SUPER_LEAGUE,
|
|
495
|
+
label: 'Greece Super League',
|
|
496
|
+
opticOddsName: 'Greece - Super League',
|
|
497
|
+
priority: 160,
|
|
498
|
+
},
|
|
499
|
+
[League.INDIA_PREMIER]: {
|
|
500
|
+
...SOCCER_DEFAULTS,
|
|
501
|
+
id: League.INDIA_PREMIER,
|
|
502
|
+
label: 'India Calcutta Premier Division',
|
|
503
|
+
opticOddsName: 'India - Calcutta Premier Division',
|
|
504
|
+
priority: 161,
|
|
505
|
+
hidden: true,
|
|
506
|
+
},
|
|
507
|
+
[League.CHINA_SUPER_LEAGUE]: {
|
|
508
|
+
...SOCCER_DEFAULTS,
|
|
509
|
+
id: League.CHINA_SUPER_LEAGUE,
|
|
510
|
+
label: 'China Super League',
|
|
511
|
+
opticOddsName: 'China - Super League',
|
|
512
|
+
priority: 162,
|
|
513
|
+
},
|
|
514
|
+
[League.AUSTRALIA_A_LEAGUE]: {
|
|
515
|
+
...SOCCER_DEFAULTS,
|
|
516
|
+
id: League.AUSTRALIA_A_LEAGUE,
|
|
517
|
+
label: 'Australia A-League',
|
|
518
|
+
opticOddsName: 'Australia - A-League',
|
|
519
|
+
priority: 163,
|
|
520
|
+
},
|
|
521
|
+
[League.SWITZERLAND_SUPER_LEAGUE]: {
|
|
522
|
+
...SOCCER_DEFAULTS,
|
|
523
|
+
id: League.SWITZERLAND_SUPER_LEAGUE,
|
|
524
|
+
label: 'Switzerland Super League',
|
|
525
|
+
opticOddsName: 'Switzerland - Super League',
|
|
526
|
+
priority: 164,
|
|
527
|
+
},
|
|
528
|
+
[League.BUNDESLIGA_2]: {
|
|
529
|
+
...SOCCER_DEFAULTS,
|
|
530
|
+
id: League.BUNDESLIGA_2,
|
|
531
|
+
label: 'Bundesliga 2',
|
|
532
|
+
opticOddsName: 'Germany - Bundesliga 2',
|
|
533
|
+
priority: 165,
|
|
534
|
+
},
|
|
535
|
+
[League.LA_LIGA_2]: {
|
|
536
|
+
...SOCCER_DEFAULTS,
|
|
537
|
+
id: League.LA_LIGA_2,
|
|
538
|
+
label: 'La Liga 2',
|
|
539
|
+
opticOddsName: 'Spain - La Liga 2',
|
|
540
|
+
priority: 166,
|
|
541
|
+
},
|
|
542
|
+
[League.SERIE_B]: {
|
|
543
|
+
...SOCCER_DEFAULTS,
|
|
544
|
+
id: League.SERIE_B,
|
|
545
|
+
label: 'Serie B',
|
|
546
|
+
opticOddsName: 'Italy - Serie B',
|
|
547
|
+
priority: 167,
|
|
548
|
+
},
|
|
549
|
+
[League.INDIA_SUPER_LEAGUE]: {
|
|
550
|
+
...SOCCER_DEFAULTS,
|
|
551
|
+
id: League.INDIA_SUPER_LEAGUE,
|
|
552
|
+
label: 'India Super League',
|
|
553
|
+
opticOddsName: 'India - Super League',
|
|
554
|
+
priority: 168,
|
|
555
|
+
hidden: false,
|
|
556
|
+
},
|
|
557
|
+
[League.LIGUE_2]: {
|
|
558
|
+
...SOCCER_DEFAULTS,
|
|
559
|
+
id: League.LIGUE_2,
|
|
560
|
+
label: 'Ligue 2',
|
|
561
|
+
opticOddsName: 'France - Ligue 2',
|
|
562
|
+
priority: 169,
|
|
563
|
+
},
|
|
564
|
+
[League.AUSTRIA_BUNDESLIGA]: {
|
|
565
|
+
...SOCCER_DEFAULTS,
|
|
566
|
+
id: League.AUSTRIA_BUNDESLIGA,
|
|
567
|
+
label: 'Austria Bundesliga',
|
|
568
|
+
opticOddsName: 'Austria - Bundesliga',
|
|
569
|
+
priority: 170,
|
|
570
|
+
},
|
|
571
|
+
[League.DENMARK_SUPER_LEAGUE]: {
|
|
572
|
+
...SOCCER_DEFAULTS,
|
|
573
|
+
id: League.DENMARK_SUPER_LEAGUE,
|
|
574
|
+
label: 'Denmark Superliga',
|
|
575
|
+
opticOddsName: 'Denmark - Superliga',
|
|
576
|
+
priority: 171,
|
|
577
|
+
},
|
|
578
|
+
[League.POLAND_LEAGUE]: {
|
|
579
|
+
...SOCCER_DEFAULTS,
|
|
580
|
+
id: League.POLAND_LEAGUE,
|
|
581
|
+
label: 'Poland Ekstraklasa',
|
|
582
|
+
opticOddsName: 'Poland - Ekstraklasa',
|
|
583
|
+
priority: 172,
|
|
584
|
+
},
|
|
585
|
+
[League.SWEDEN_LEAGUE]: {
|
|
586
|
+
...SOCCER_DEFAULTS,
|
|
587
|
+
id: League.SWEDEN_LEAGUE,
|
|
588
|
+
label: 'Sweden Allsvenskan',
|
|
589
|
+
opticOddsName: 'Sweden - Allsvenskan',
|
|
590
|
+
priority: 173,
|
|
591
|
+
},
|
|
592
|
+
[League.COLOMBIA_PRIMERA_A]: {
|
|
593
|
+
...SOCCER_DEFAULTS,
|
|
594
|
+
id: League.COLOMBIA_PRIMERA_A,
|
|
595
|
+
label: 'Colombia Primera A',
|
|
596
|
+
opticOddsName: 'Colombia - Primera A',
|
|
597
|
+
priority: 174,
|
|
598
|
+
},
|
|
599
|
+
[League.ENGLAND_EFL_CUP]: {
|
|
600
|
+
...SOCCER_DEFAULTS,
|
|
601
|
+
id: League.ENGLAND_EFL_CUP,
|
|
602
|
+
label: 'England EFL Cup',
|
|
603
|
+
opticOddsName: 'England - EFL Cup',
|
|
604
|
+
priority: 175,
|
|
605
|
+
},
|
|
606
|
+
[League.ENGLAND_LEGAUE_1]: {
|
|
607
|
+
...SOCCER_DEFAULTS,
|
|
608
|
+
id: League.ENGLAND_LEGAUE_1,
|
|
609
|
+
label: 'England League 1',
|
|
610
|
+
opticOddsName: 'England - League 1',
|
|
611
|
+
priority: 176,
|
|
612
|
+
},
|
|
613
|
+
[League.URUGUAY_PRIMERA_DIVISION]: {
|
|
614
|
+
...SOCCER_DEFAULTS,
|
|
615
|
+
id: League.URUGUAY_PRIMERA_DIVISION,
|
|
616
|
+
label: 'Uruguay Primera Division',
|
|
617
|
+
opticOddsName: 'Uruguay - Primera Division',
|
|
618
|
+
priority: 177,
|
|
619
|
+
},
|
|
620
|
+
[League.AFC_CHAMPIONS_LEAGUE]: {
|
|
621
|
+
...SOCCER_DEFAULTS,
|
|
622
|
+
id: League.AFC_CHAMPIONS_LEAGUE,
|
|
623
|
+
label: 'AFC Champions League',
|
|
624
|
+
opticOddsName: 'AFC - Champions League',
|
|
625
|
+
priority: 178,
|
|
626
|
+
},
|
|
627
|
+
[League.ITALY_SUPER_CUP]: {
|
|
628
|
+
...SOCCER_DEFAULTS,
|
|
629
|
+
id: League.ITALY_SUPER_CUP,
|
|
630
|
+
label: 'Italy Super Cup',
|
|
631
|
+
opticOddsName: 'Italy - Supercoppa',
|
|
632
|
+
priority: 179,
|
|
633
|
+
},
|
|
634
|
+
[League.FRANCE_SUPER_CUP]: {
|
|
635
|
+
...SOCCER_DEFAULTS,
|
|
636
|
+
id: League.FRANCE_SUPER_CUP,
|
|
637
|
+
label: 'France Super Cup',
|
|
638
|
+
opticOddsName: 'France - Super Cup',
|
|
639
|
+
priority: 180,
|
|
640
|
+
},
|
|
641
|
+
[League.SPAIN_SUPER_CUP]: {
|
|
642
|
+
...SOCCER_DEFAULTS,
|
|
643
|
+
id: League.SPAIN_SUPER_CUP,
|
|
644
|
+
label: 'Spain Super Cup',
|
|
645
|
+
opticOddsName: 'Spain - Supercopa',
|
|
646
|
+
priority: 181,
|
|
647
|
+
},
|
|
648
|
+
[League.GERMANY_SUPER_CUP]: {
|
|
649
|
+
...SOCCER_DEFAULTS,
|
|
650
|
+
id: League.GERMANY_SUPER_CUP,
|
|
651
|
+
label: 'Germany Super Cup',
|
|
652
|
+
opticOddsName: 'Germany - Super Cup',
|
|
653
|
+
priority: 182,
|
|
654
|
+
},
|
|
655
|
+
[League.PORTUGAL_LEAGUE_CUP]: {
|
|
656
|
+
...SOCCER_DEFAULTS,
|
|
657
|
+
id: League.PORTUGAL_LEAGUE_CUP,
|
|
658
|
+
label: 'Portugal League Cup',
|
|
659
|
+
opticOddsName: 'Portugal - League Cup',
|
|
660
|
+
priority: 183,
|
|
661
|
+
},
|
|
662
|
+
[League.THAILAND_LEAGUE_1]: {
|
|
663
|
+
...SOCCER_DEFAULTS,
|
|
664
|
+
id: League.THAILAND_LEAGUE_1,
|
|
665
|
+
label: 'Thai League 1',
|
|
666
|
+
opticOddsName: 'Thailand - Thai League 1',
|
|
667
|
+
priority: 184,
|
|
668
|
+
},
|
|
669
|
+
[League.NETHERLANDS_CUP]: {
|
|
670
|
+
...SOCCER_DEFAULTS,
|
|
671
|
+
id: League.NETHERLANDS_CUP,
|
|
672
|
+
label: 'Netherlands KNVB Beker',
|
|
673
|
+
opticOddsName: 'Netherlands - KNVB Beker',
|
|
674
|
+
priority: 185,
|
|
675
|
+
},
|
|
676
|
+
[League.PORTUGAL_CUP]: {
|
|
677
|
+
...SOCCER_DEFAULTS,
|
|
678
|
+
id: League.PORTUGAL_CUP,
|
|
679
|
+
label: 'Taca de Portugal',
|
|
680
|
+
opticOddsName: 'Portugal - Taca de Portugal',
|
|
681
|
+
priority: 186,
|
|
682
|
+
},
|
|
683
|
+
[League.CONCACAF_GOLD_CUP]: {
|
|
684
|
+
...SOCCER_DEFAULTS,
|
|
685
|
+
id: League.CONCACAF_GOLD_CUP,
|
|
686
|
+
label: 'CONCACAF Gold Cup',
|
|
687
|
+
opticOddsName: 'CONCACAF - Gold Cup',
|
|
688
|
+
priority: 187,
|
|
689
|
+
},
|
|
690
|
+
[League.ECUADOR_SERIE_A]: {
|
|
691
|
+
...SOCCER_DEFAULTS,
|
|
692
|
+
id: League.ECUADOR_SERIE_A,
|
|
693
|
+
label: 'Ecuador Serie A',
|
|
694
|
+
opticOddsName: 'Ecuador - Serie A',
|
|
695
|
+
priority: 188,
|
|
696
|
+
},
|
|
697
|
+
[League.COSAFA_CUP]: {
|
|
698
|
+
...SOCCER_DEFAULTS,
|
|
699
|
+
id: League.COSAFA_CUP,
|
|
700
|
+
label: 'COSAFA Cup',
|
|
701
|
+
opticOddsName: 'COSAFA - Cup',
|
|
702
|
+
priority: 187,
|
|
703
|
+
},
|
|
704
|
+
[League.ICELAND_BESTA_DEILD_KARLA]: {
|
|
705
|
+
...SOCCER_DEFAULTS,
|
|
706
|
+
id: League.ICELAND_BESTA_DEILD_KARLA,
|
|
707
|
+
label: 'Iceland Besta Deild Karla',
|
|
708
|
+
opticOddsName: 'Iceland - Besta Deild Karla',
|
|
709
|
+
priority: 189,
|
|
710
|
+
},
|
|
711
|
+
[League.KOREA_K1_LEAGUE]: {
|
|
712
|
+
...SOCCER_DEFAULTS,
|
|
713
|
+
id: League.KOREA_K1_LEAGUE,
|
|
714
|
+
label: 'Korea K1 League',
|
|
715
|
+
opticOddsName: 'Korea - K1 League',
|
|
716
|
+
priority: 189,
|
|
717
|
+
},
|
|
718
|
+
[League.ALGERIA_LIGUE_1]: {
|
|
719
|
+
...SOCCER_DEFAULTS,
|
|
720
|
+
id: League.ALGERIA_LIGUE_1,
|
|
721
|
+
label: 'Algeria Ligue 1',
|
|
722
|
+
opticOddsName: 'Algeria - Ligue 1',
|
|
723
|
+
priority: 189,
|
|
724
|
+
},
|
|
725
|
+
[League.PERU_PRIMERA_DIVISION]: {
|
|
726
|
+
...SOCCER_DEFAULTS,
|
|
727
|
+
id: League.PERU_PRIMERA_DIVISION,
|
|
728
|
+
label: 'Peru Primera Division',
|
|
729
|
+
opticOddsName: 'Peru - Primera Division',
|
|
730
|
+
priority: 188,
|
|
731
|
+
},
|
|
732
|
+
[League.UEFA_EUROPEAN_CHAMPIONSHIP_U21]: {
|
|
733
|
+
...SOCCER_DEFAULTS,
|
|
734
|
+
id: League.UEFA_EUROPEAN_CHAMPIONSHIP_U21,
|
|
735
|
+
label: 'UEFA European Championship U21',
|
|
736
|
+
opticOddsName: 'UEFA - European Championship U21',
|
|
737
|
+
priority: 189,
|
|
738
|
+
},
|
|
739
|
+
[League.UEFA_EUROPEAN_CHAMPIONSHIP_QUALIFIERS_U21]: {
|
|
740
|
+
...SOCCER_DEFAULTS,
|
|
741
|
+
id: League.UEFA_EUROPEAN_CHAMPIONSHIP_QUALIFIERS_U21,
|
|
742
|
+
label: 'UEFA European Championship Qualifiers U21',
|
|
743
|
+
opticOddsName: 'UEFA - European Championship Qualifiers U21',
|
|
744
|
+
priority: 189,
|
|
745
|
+
},
|
|
746
|
+
[League.UEFA_EUROPEAN_CHAMPIONSHIP_QUALIFIERS_U19]: {
|
|
747
|
+
...SOCCER_DEFAULTS,
|
|
748
|
+
id: League.UEFA_EUROPEAN_CHAMPIONSHIP_QUALIFIERS_U19,
|
|
749
|
+
label: 'UEFA European Championship Qualifiers U19',
|
|
750
|
+
opticOddsName: 'UEFA - European Championship Qualifiers U19',
|
|
751
|
+
priority: 189,
|
|
752
|
+
},
|
|
753
|
+
[League.UEFA_EUROPEAN_CHAMPIONSHIP_U19]: {
|
|
754
|
+
...SOCCER_DEFAULTS,
|
|
755
|
+
id: League.UEFA_EUROPEAN_CHAMPIONSHIP_U19,
|
|
756
|
+
label: 'UEFA European Championship U19',
|
|
757
|
+
opticOddsName: 'UEFA - European Championship U19',
|
|
758
|
+
priority: 189,
|
|
759
|
+
},
|
|
760
|
+
[League.UEFA_EUROPEAN_CHAMPIONSHIP_QUALIFIERS_WOMEN_U19]: {
|
|
761
|
+
...SOCCER_DEFAULTS,
|
|
762
|
+
id: League.UEFA_EUROPEAN_CHAMPIONSHIP_QUALIFIERS_WOMEN_U19,
|
|
763
|
+
label: 'UEFA European Championship Qualifiers Women U19',
|
|
764
|
+
opticOddsName: 'UEFA - European Championship Qualifiers Women U19',
|
|
765
|
+
priority: 190,
|
|
766
|
+
},
|
|
767
|
+
[League.UEFA_EUROPEAN_CHAMPIONSHIP_WOMEN_U19]: {
|
|
768
|
+
...SOCCER_DEFAULTS,
|
|
769
|
+
id: League.UEFA_EUROPEAN_CHAMPIONSHIP_WOMEN_U19,
|
|
770
|
+
label: 'UEFA European Championship Women U19',
|
|
771
|
+
opticOddsName: 'UEFA - European Championship Women U19',
|
|
772
|
+
priority: 190,
|
|
773
|
+
},
|
|
774
|
+
[League.UEFA_EUROPEAN_CHAMPIONSHIP_WOMEN]: {
|
|
775
|
+
...SOCCER_DEFAULTS,
|
|
776
|
+
id: League.UEFA_EUROPEAN_CHAMPIONSHIP_WOMEN,
|
|
777
|
+
label: 'UEFA European Championship Women',
|
|
778
|
+
opticOddsName: 'UEFA - European Championship Women',
|
|
779
|
+
priority: 190,
|
|
780
|
+
},
|
|
781
|
+
[League.ENGLAND_SUPER_LEAGUE_WOMEN]: {
|
|
782
|
+
...SOCCER_DEFAULTS,
|
|
783
|
+
id: League.ENGLAND_SUPER_LEAGUE_WOMEN,
|
|
784
|
+
label: "England Women's Super League",
|
|
785
|
+
opticOddsName: 'England - Womens Super League',
|
|
786
|
+
priority: 190,
|
|
787
|
+
},
|
|
788
|
+
[League.ITALY_SERIE_A_WOMEN]: {
|
|
789
|
+
...SOCCER_DEFAULTS,
|
|
790
|
+
id: League.ITALY_SERIE_A_WOMEN,
|
|
791
|
+
label: 'Italy Serie A Femminile',
|
|
792
|
+
opticOddsName: 'Italy - Serie A Femminile',
|
|
793
|
+
priority: 191,
|
|
794
|
+
},
|
|
795
|
+
[League.FRANCE_PREMIERE_LIGUE_WOMEN]: {
|
|
796
|
+
...SOCCER_DEFAULTS,
|
|
797
|
+
id: League.FRANCE_PREMIERE_LIGUE_WOMEN,
|
|
798
|
+
label: 'France Premiere Ligue Women',
|
|
799
|
+
opticOddsName: 'France - Premiere Ligue',
|
|
800
|
+
priority: 192,
|
|
801
|
+
},
|
|
802
|
+
[League.GERMANY_BUNDESLIGA_WOMEN]: {
|
|
803
|
+
...SOCCER_DEFAULTS,
|
|
804
|
+
id: League.GERMANY_BUNDESLIGA_WOMEN,
|
|
805
|
+
label: 'Germany Frauen Bundesliga',
|
|
806
|
+
opticOddsName: 'Germany - Frauen Bundesliga',
|
|
807
|
+
priority: 193,
|
|
808
|
+
},
|
|
809
|
+
[League.SPAIN_LIGA_F_WOMEN]: {
|
|
810
|
+
...SOCCER_DEFAULTS,
|
|
811
|
+
id: League.SPAIN_LIGA_F_WOMEN,
|
|
812
|
+
label: 'Spain Liga F Women',
|
|
813
|
+
opticOddsName: 'Spain - Liga F',
|
|
814
|
+
priority: 194,
|
|
815
|
+
},
|
|
816
|
+
[League.NETHERLANDS_EREDIVISIE_WOMEN]: {
|
|
817
|
+
...SOCCER_DEFAULTS,
|
|
818
|
+
id: League.NETHERLANDS_EREDIVISIE_WOMEN,
|
|
819
|
+
label: 'Netherlands Eredivisie Women',
|
|
820
|
+
opticOddsName: 'Netherlands - Vrouwen Eredivisie',
|
|
821
|
+
priority: 195,
|
|
822
|
+
},
|
|
823
|
+
[League.BELGIUM_SUPER_LEAGUE_WOMEN]: {
|
|
824
|
+
...SOCCER_DEFAULTS,
|
|
825
|
+
id: League.BELGIUM_SUPER_LEAGUE_WOMEN,
|
|
826
|
+
label: "Belgium Women's Super League",
|
|
827
|
+
opticOddsName: 'Belgium - Womens Super League',
|
|
828
|
+
priority: 196,
|
|
829
|
+
},
|
|
830
|
+
[League.UEFA_CHAMPIONS_LEAGUE_WOMEN]: {
|
|
831
|
+
...SOCCER_DEFAULTS,
|
|
832
|
+
id: League.UEFA_CHAMPIONS_LEAGUE_WOMEN,
|
|
833
|
+
label: 'UEFA Champions League Women',
|
|
834
|
+
opticOddsName: 'UEFA - Champions League Women',
|
|
835
|
+
priority: 197,
|
|
836
|
+
},
|
|
837
|
+
[League.USA_NWSL]: {
|
|
838
|
+
...SOCCER_DEFAULTS,
|
|
839
|
+
id: League.USA_NWSL,
|
|
840
|
+
label: 'USA NWSL',
|
|
841
|
+
opticOddsName: 'USA - NWSL',
|
|
842
|
+
priority: 198,
|
|
843
|
+
},
|
|
844
|
+
[League.AUSTRALIA_A_LEAGUE_WOMEN]: {
|
|
845
|
+
...SOCCER_DEFAULTS,
|
|
846
|
+
id: League.AUSTRALIA_A_LEAGUE_WOMEN,
|
|
847
|
+
label: 'Australia A-League Women',
|
|
848
|
+
opticOddsName: 'Australia - A-League Women',
|
|
849
|
+
priority: 199,
|
|
850
|
+
},
|
|
851
|
+
[League.CONCACAF_CHAMPIONS_CUP]: {
|
|
852
|
+
...SOCCER_DEFAULTS,
|
|
853
|
+
id: League.CONCACAF_CHAMPIONS_CUP,
|
|
854
|
+
label: 'CONCACAF Champions Cup',
|
|
855
|
+
opticOddsName: 'CONCACAF - Champions Cup',
|
|
856
|
+
priority: 150,
|
|
857
|
+
tooltipKey: 'common.football-tooltip',
|
|
858
|
+
},
|
|
859
|
+
[League.SLOVAKIA_SUPERLIGA]: {
|
|
860
|
+
...SOCCER_DEFAULTS,
|
|
861
|
+
id: League.SLOVAKIA_SUPERLIGA,
|
|
862
|
+
label: 'Slovakia Superliga',
|
|
863
|
+
opticOddsName: 'Slovakia - Superliga',
|
|
864
|
+
priority: 150,
|
|
865
|
+
},
|
|
866
|
+
[League.CHINA_FA_CUP]: {
|
|
867
|
+
...SOCCER_DEFAULTS,
|
|
868
|
+
id: League.CHINA_FA_CUP,
|
|
869
|
+
label: 'China FA Cup',
|
|
870
|
+
opticOddsName: 'China - FA Cup',
|
|
871
|
+
priority: 150,
|
|
872
|
+
},
|
|
873
|
+
[League.ROMANIA_LIGA_I]: {
|
|
874
|
+
...SOCCER_DEFAULTS,
|
|
875
|
+
id: League.ROMANIA_LIGA_I,
|
|
876
|
+
label: 'Romania Liga I',
|
|
877
|
+
opticOddsName: 'Romania - Liga I',
|
|
878
|
+
priority: 150,
|
|
879
|
+
},
|
|
880
|
+
[League.BULGARIA_PARVA_LIGA]: {
|
|
881
|
+
...SOCCER_DEFAULTS,
|
|
882
|
+
id: League.BULGARIA_PARVA_LIGA,
|
|
883
|
+
label: 'Bulgaria Parva Liga',
|
|
884
|
+
opticOddsName: 'Bulgaria - Parva Liga',
|
|
885
|
+
priority: 150,
|
|
886
|
+
},
|
|
887
|
+
[League.LITHUANIA_A_LYGA]: {
|
|
888
|
+
...SOCCER_DEFAULTS,
|
|
889
|
+
id: League.LITHUANIA_A_LYGA,
|
|
890
|
+
label: 'Lithuania A Lyga',
|
|
891
|
+
opticOddsName: 'Lithuania - A Lyga',
|
|
892
|
+
priority: 150,
|
|
893
|
+
},
|
|
894
|
+
[League.LATVIA_VIRSLIGA]: {
|
|
895
|
+
...SOCCER_DEFAULTS,
|
|
896
|
+
id: League.LATVIA_VIRSLIGA,
|
|
897
|
+
label: 'Latvia Virsliga',
|
|
898
|
+
opticOddsName: 'Latvia - Virsliga',
|
|
899
|
+
priority: 150,
|
|
900
|
+
},
|
|
901
|
+
[League.IRELAND_PREMIER_LEAGUE]: {
|
|
902
|
+
...SOCCER_DEFAULTS,
|
|
903
|
+
id: League.IRELAND_PREMIER_LEAGUE,
|
|
904
|
+
label: 'Ireland Premier League',
|
|
905
|
+
opticOddsName: 'Ireland - Premier League',
|
|
906
|
+
priority: 150,
|
|
907
|
+
},
|
|
908
|
+
[League.SLOVENIA_PRVALIGA]: {
|
|
909
|
+
...SOCCER_DEFAULTS,
|
|
910
|
+
id: League.SLOVENIA_PRVALIGA,
|
|
911
|
+
label: 'Slovenia PrvaLiga',
|
|
912
|
+
opticOddsName: 'Slovenia - PrvaLiga',
|
|
913
|
+
priority: 150,
|
|
914
|
+
},
|
|
915
|
+
[League.HUNGARY_NB_I]: {
|
|
916
|
+
...SOCCER_DEFAULTS,
|
|
917
|
+
id: League.HUNGARY_NB_I,
|
|
918
|
+
label: 'Hungary NB I',
|
|
919
|
+
opticOddsName: 'Hungary - NB I',
|
|
920
|
+
priority: 150,
|
|
921
|
+
},
|
|
922
|
+
[League.CROATIA_1_HNL]: {
|
|
923
|
+
...SOCCER_DEFAULTS,
|
|
924
|
+
id: League.CROATIA_1_HNL,
|
|
925
|
+
label: 'Croatia 1. HNL',
|
|
926
|
+
opticOddsName: 'Croatia - 1. HNL',
|
|
927
|
+
priority: 150,
|
|
928
|
+
},
|
|
929
|
+
[League.CYPRUS_FIRST_DIVISION]: {
|
|
930
|
+
...SOCCER_DEFAULTS,
|
|
931
|
+
id: League.CYPRUS_FIRST_DIVISION,
|
|
932
|
+
label: 'Cyprus First Division',
|
|
933
|
+
opticOddsName: 'Cyprus - First Division',
|
|
934
|
+
priority: 150,
|
|
935
|
+
},
|
|
936
|
+
[League.CZECH_REPUBLIC_FIRST_LEAGUE]: {
|
|
937
|
+
...SOCCER_DEFAULTS,
|
|
938
|
+
id: League.CZECH_REPUBLIC_FIRST_LEAGUE,
|
|
939
|
+
label: 'Czech Republic First League',
|
|
940
|
+
opticOddsName: 'Czech Republic - First League',
|
|
941
|
+
priority: 150,
|
|
942
|
+
},
|
|
943
|
+
[League.MALTA_PREMIER_LEAGUE]: {
|
|
944
|
+
...SOCCER_DEFAULTS,
|
|
945
|
+
id: League.MALTA_PREMIER_LEAGUE,
|
|
946
|
+
label: 'Malta Premier League',
|
|
947
|
+
opticOddsName: 'Malta - Premier League',
|
|
948
|
+
priority: 150,
|
|
949
|
+
},
|
|
950
|
+
[League.INTERNATIONAL_CLUB_FRIENDLIES]: {
|
|
951
|
+
...SOCCER_DEFAULTS,
|
|
952
|
+
id: League.INTERNATIONAL_CLUB_FRIENDLIES,
|
|
953
|
+
label: 'International Club Friendlies',
|
|
954
|
+
opticOddsName: 'International - Club Friendlies',
|
|
955
|
+
priority: 151,
|
|
956
|
+
},
|
|
957
|
+
[League.INTERNATIONAL_FRIENDLIES]: {
|
|
958
|
+
...SOCCER_DEFAULTS,
|
|
959
|
+
id: League.INTERNATIONAL_FRIENDLIES,
|
|
960
|
+
label: 'International Friendlies',
|
|
961
|
+
opticOddsName: 'International - Friendlies',
|
|
962
|
+
priority: 151,
|
|
963
|
+
},
|
|
964
|
+
[League.INTERNATIONAL_FRIENDLIES_WOMEN]: {
|
|
965
|
+
...SOCCER_DEFAULTS,
|
|
966
|
+
id: League.INTERNATIONAL_FRIENDLIES_WOMEN,
|
|
967
|
+
label: 'International Friendlies Women',
|
|
968
|
+
opticOddsName: 'International - Friendlies Women',
|
|
969
|
+
priority: 151,
|
|
970
|
+
},
|
|
971
|
+
[League.NORTH_AMERICA_LEAGUES_CUP]: {
|
|
972
|
+
...SOCCER_DEFAULTS,
|
|
973
|
+
id: League.NORTH_AMERICA_LEAGUES_CUP,
|
|
974
|
+
label: 'North America Leagues Cup',
|
|
975
|
+
opticOddsName: 'North America - Leagues Cup',
|
|
976
|
+
priority: 150,
|
|
977
|
+
},
|
|
978
|
+
[League.BRAZIL_SERIE_B]: {
|
|
979
|
+
...SOCCER_DEFAULTS,
|
|
980
|
+
id: League.BRAZIL_SERIE_B,
|
|
981
|
+
label: 'Brazil Serie B',
|
|
982
|
+
opticOddsName: 'Brazil - Serie B',
|
|
983
|
+
priority: 150,
|
|
984
|
+
},
|
|
985
|
+
[League.AUSTRALIA_CUP]: {
|
|
986
|
+
...SOCCER_DEFAULTS,
|
|
987
|
+
id: League.AUSTRALIA_CUP,
|
|
988
|
+
label: 'Australia Cup',
|
|
989
|
+
opticOddsName: 'Australia - Cup',
|
|
990
|
+
priority: 150,
|
|
991
|
+
},
|
|
992
|
+
[League.KAZAKHSTAN_PREMIER_LEAGUE]: {
|
|
993
|
+
...SOCCER_DEFAULTS,
|
|
994
|
+
id: League.KAZAKHSTAN_PREMIER_LEAGUE,
|
|
995
|
+
label: 'Kazakhstan Premier League',
|
|
996
|
+
opticOddsName: 'Kazakhstan - Premier League',
|
|
997
|
+
priority: 150,
|
|
998
|
+
},
|
|
999
|
+
[League.ESTONIA_PREMIUM_LIIGA]: {
|
|
1000
|
+
...SOCCER_DEFAULTS,
|
|
1001
|
+
id: League.ESTONIA_PREMIUM_LIIGA,
|
|
1002
|
+
label: 'Estonia Premium Liiga',
|
|
1003
|
+
opticOddsName: 'Estonia - Premium Liiga',
|
|
1004
|
+
priority: 150,
|
|
1005
|
+
},
|
|
1006
|
+
[League.USA_USL_CHAMPIONSHIP]: {
|
|
1007
|
+
...SOCCER_DEFAULTS,
|
|
1008
|
+
id: League.USA_USL_CHAMPIONSHIP,
|
|
1009
|
+
label: 'USA USL Championship',
|
|
1010
|
+
opticOddsName: 'USA - USL Championship',
|
|
1011
|
+
priority: 150,
|
|
1012
|
+
},
|
|
1013
|
+
[League.COSTA_RICA_PRIMERA_DIVISION]: {
|
|
1014
|
+
...SOCCER_DEFAULTS,
|
|
1015
|
+
id: League.COSTA_RICA_PRIMERA_DIVISION,
|
|
1016
|
+
label: 'Costa Rica Primera Division',
|
|
1017
|
+
opticOddsName: 'Costa Rica - Primera Division',
|
|
1018
|
+
priority: 150,
|
|
1019
|
+
},
|
|
1020
|
+
[League.RUSSIA_CUP]: {
|
|
1021
|
+
...SOCCER_DEFAULTS,
|
|
1022
|
+
id: League.RUSSIA_CUP,
|
|
1023
|
+
label: 'Russia Cup',
|
|
1024
|
+
opticOddsName: 'Russia - Cup',
|
|
1025
|
+
priority: 150,
|
|
1026
|
+
},
|
|
1027
|
+
[League.SWEDEN_SUPERETTAN]: {
|
|
1028
|
+
...SOCCER_DEFAULTS,
|
|
1029
|
+
id: League.SWEDEN_SUPERETTAN,
|
|
1030
|
+
label: 'Sweden Superettan',
|
|
1031
|
+
opticOddsName: 'Sweden - Superettan',
|
|
1032
|
+
priority: 150,
|
|
1033
|
+
},
|
|
1034
|
+
[League.SWITZERLAND_CHALLENGE_LEAGUE]: {
|
|
1035
|
+
...SOCCER_DEFAULTS,
|
|
1036
|
+
id: League.SWITZERLAND_CHALLENGE_LEAGUE,
|
|
1037
|
+
label: 'Switzerland Challenge League',
|
|
1038
|
+
opticOddsName: 'Switzerland - Challenge League',
|
|
1039
|
+
priority: 150,
|
|
1040
|
+
},
|
|
1041
|
+
[League.PORTUGAL_SUPER_CUP]: {
|
|
1042
|
+
...SOCCER_DEFAULTS,
|
|
1043
|
+
id: League.PORTUGAL_SUPER_CUP,
|
|
1044
|
+
label: 'Portugal Super Cup',
|
|
1045
|
+
opticOddsName: 'Portugal - Super Cup',
|
|
1046
|
+
priority: 140,
|
|
1047
|
+
},
|
|
1048
|
+
[League.NETHERLANDS_SUPER_CUP]: {
|
|
1049
|
+
...SOCCER_DEFAULTS,
|
|
1050
|
+
id: League.NETHERLANDS_SUPER_CUP,
|
|
1051
|
+
label: 'Netherlands Super Cup',
|
|
1052
|
+
opticOddsName: 'Netherlands - Super Cup',
|
|
1053
|
+
priority: 140,
|
|
1054
|
+
},
|
|
1055
|
+
[League.ARGENTINA_COPA_ARGENTINA]: {
|
|
1056
|
+
...SOCCER_DEFAULTS,
|
|
1057
|
+
id: League.ARGENTINA_COPA_ARGENTINA,
|
|
1058
|
+
label: 'Argentina Copa Argentina',
|
|
1059
|
+
opticOddsName: 'Argentina - Copa Argentina',
|
|
1060
|
+
priority: 141,
|
|
1061
|
+
},
|
|
1062
|
+
[League.NORWAY_1_DIVISJON]: {
|
|
1063
|
+
...SOCCER_DEFAULTS,
|
|
1064
|
+
id: League.NORWAY_1_DIVISJON,
|
|
1065
|
+
label: 'Norway 1. Divisjon',
|
|
1066
|
+
opticOddsName: 'Norway - 1. Divisjon',
|
|
1067
|
+
priority: 150,
|
|
1068
|
+
},
|
|
1069
|
+
[League.DENMARK_1ST_DIVISION]: {
|
|
1070
|
+
...SOCCER_DEFAULTS,
|
|
1071
|
+
id: League.DENMARK_1ST_DIVISION,
|
|
1072
|
+
label: 'Denmark 1st Division',
|
|
1073
|
+
opticOddsName: 'Denmark - 1st Division',
|
|
1074
|
+
priority: 150,
|
|
1075
|
+
},
|
|
1076
|
+
[League.ENGLAND_COMMUNITY_SHIELD]: {
|
|
1077
|
+
...SOCCER_DEFAULTS,
|
|
1078
|
+
id: League.ENGLAND_COMMUNITY_SHIELD,
|
|
1079
|
+
label: 'England Community Shield',
|
|
1080
|
+
opticOddsName: 'England - Community Shield',
|
|
1081
|
+
priority: 150,
|
|
1082
|
+
},
|
|
1083
|
+
[League.EGYPT_PREMIER_LEAGUE]: {
|
|
1084
|
+
...SOCCER_DEFAULTS,
|
|
1085
|
+
id: League.EGYPT_PREMIER_LEAGUE,
|
|
1086
|
+
label: 'Egypt Premier League',
|
|
1087
|
+
opticOddsName: 'Egypt - Premier League',
|
|
1088
|
+
priority: 150,
|
|
1089
|
+
},
|
|
1090
|
+
[League.UZBEKISTAN_SUPER_LEAGUE]: {
|
|
1091
|
+
...SOCCER_DEFAULTS,
|
|
1092
|
+
id: League.UZBEKISTAN_SUPER_LEAGUE,
|
|
1093
|
+
label: 'Uzbekistan Super League',
|
|
1094
|
+
opticOddsName: 'Uzbekistan - Super League',
|
|
1095
|
+
priority: 150,
|
|
1096
|
+
},
|
|
1097
|
+
[League.WALES_CYMRU_PREMIER]: {
|
|
1098
|
+
...SOCCER_DEFAULTS,
|
|
1099
|
+
id: League.WALES_CYMRU_PREMIER,
|
|
1100
|
+
label: 'Wales Cymru Premier',
|
|
1101
|
+
opticOddsName: 'Wales - Cymru Premier',
|
|
1102
|
+
priority: 150,
|
|
1103
|
+
},
|
|
1104
|
+
[League.NORTHERN_IRELAND_PREMIERSHIP]: {
|
|
1105
|
+
...SOCCER_DEFAULTS,
|
|
1106
|
+
id: League.NORTHERN_IRELAND_PREMIERSHIP,
|
|
1107
|
+
label: 'Northern Ireland Premiership',
|
|
1108
|
+
opticOddsName: 'Northern Ireland - Premiership',
|
|
1109
|
+
priority: 150,
|
|
1110
|
+
},
|
|
1111
|
+
[League.BELARUS_PREMIER_LEAGUE]: {
|
|
1112
|
+
...SOCCER_DEFAULTS,
|
|
1113
|
+
id: League.BELARUS_PREMIER_LEAGUE,
|
|
1114
|
+
label: 'Belarus Premier League',
|
|
1115
|
+
opticOddsName: 'Belarus - Premier League',
|
|
1116
|
+
priority: 150,
|
|
1117
|
+
},
|
|
1118
|
+
[League.SOUTH_AFRICA_PREMIER_LEAGUE]: {
|
|
1119
|
+
...SOCCER_DEFAULTS,
|
|
1120
|
+
id: League.SOUTH_AFRICA_PREMIER_LEAGUE,
|
|
1121
|
+
label: 'South Africa Premier League',
|
|
1122
|
+
opticOddsName: 'South Africa - Premier League',
|
|
1123
|
+
priority: 150,
|
|
1124
|
+
},
|
|
1125
|
+
[League.INDONESIA_LIGA_1]: {
|
|
1126
|
+
...SOCCER_DEFAULTS,
|
|
1127
|
+
id: League.INDONESIA_LIGA_1,
|
|
1128
|
+
label: 'Indonesia Liga 1',
|
|
1129
|
+
opticOddsName: 'Indonesia - Liga 1',
|
|
1130
|
+
priority: 150,
|
|
1131
|
+
},
|
|
1132
|
+
[League.QATAR_STARS_LEAGUE]: {
|
|
1133
|
+
...SOCCER_DEFAULTS,
|
|
1134
|
+
id: League.QATAR_STARS_LEAGUE,
|
|
1135
|
+
label: 'Qatar Stars League',
|
|
1136
|
+
opticOddsName: 'Qatar - Stars League',
|
|
1137
|
+
priority: 150,
|
|
1138
|
+
},
|
|
1139
|
+
[League.GEORGIA_EROVNULI_LIGA]: {
|
|
1140
|
+
...SOCCER_DEFAULTS,
|
|
1141
|
+
id: League.GEORGIA_EROVNULI_LIGA,
|
|
1142
|
+
label: 'Georgia Erovnuli Liga',
|
|
1143
|
+
opticOddsName: 'Georgia - Erovnuli Liga',
|
|
1144
|
+
priority: 150,
|
|
1145
|
+
},
|
|
1146
|
+
[League.MALAYSIA_SUPER_LEAGUE]: {
|
|
1147
|
+
...SOCCER_DEFAULTS,
|
|
1148
|
+
id: League.MALAYSIA_SUPER_LEAGUE,
|
|
1149
|
+
label: 'Malaysia Super League',
|
|
1150
|
+
opticOddsName: 'Malaysia - Super League',
|
|
1151
|
+
priority: 150,
|
|
1152
|
+
},
|
|
1153
|
+
[League.VIETNAM_V_LEAGUE_1]: {
|
|
1154
|
+
...SOCCER_DEFAULTS,
|
|
1155
|
+
id: League.VIETNAM_V_LEAGUE_1,
|
|
1156
|
+
label: 'Vietnam V League 1',
|
|
1157
|
+
opticOddsName: 'Vietnam - V League 1',
|
|
1158
|
+
priority: 150,
|
|
1159
|
+
},
|
|
1160
|
+
[League.AUSTRIA_2_LIGA]: {
|
|
1161
|
+
...SOCCER_DEFAULTS,
|
|
1162
|
+
id: League.AUSTRIA_2_LIGA,
|
|
1163
|
+
label: 'Austria 2 Liga',
|
|
1164
|
+
opticOddsName: 'Austria - 2. Liga',
|
|
1165
|
+
priority: 150,
|
|
1166
|
+
},
|
|
1167
|
+
[League.BELGIUM_CHALLENGER_PRO_LEAGUE]: {
|
|
1168
|
+
...SOCCER_DEFAULTS,
|
|
1169
|
+
id: League.BELGIUM_CHALLENGER_PRO_LEAGUE,
|
|
1170
|
+
label: 'Belgium Challenger Pro League',
|
|
1171
|
+
opticOddsName: 'Belgium - Challenger Pro League',
|
|
1172
|
+
priority: 150,
|
|
1173
|
+
},
|
|
1174
|
+
[League.NETHERLANDS_EERSTE_DIVISIE]: {
|
|
1175
|
+
...SOCCER_DEFAULTS,
|
|
1176
|
+
id: League.NETHERLANDS_EERSTE_DIVISIE,
|
|
1177
|
+
label: 'Netherlands Eerste Divisie',
|
|
1178
|
+
opticOddsName: 'Netherlands - Eerste Divisie',
|
|
1179
|
+
priority: 150,
|
|
1180
|
+
},
|
|
1181
|
+
[League.IRELAND_DIVISION_1]: {
|
|
1182
|
+
...SOCCER_DEFAULTS,
|
|
1183
|
+
id: League.IRELAND_DIVISION_1,
|
|
1184
|
+
label: 'Ireland Division 1',
|
|
1185
|
+
opticOddsName: 'Ireland - Division 1',
|
|
1186
|
+
priority: 150,
|
|
1187
|
+
},
|
|
1188
|
+
[League.PORTUGAL_SEGUNDA_LIGA]: {
|
|
1189
|
+
...SOCCER_DEFAULTS,
|
|
1190
|
+
id: League.PORTUGAL_SEGUNDA_LIGA,
|
|
1191
|
+
label: 'Portugal Segunda Liga',
|
|
1192
|
+
opticOddsName: 'Portugal - Segunda Liga',
|
|
1193
|
+
priority: 150,
|
|
1194
|
+
},
|
|
1195
|
+
[League.RUSSIA_FIRST_LEAGUE]: {
|
|
1196
|
+
...SOCCER_DEFAULTS,
|
|
1197
|
+
id: League.RUSSIA_FIRST_LEAGUE,
|
|
1198
|
+
label: 'Russia First League',
|
|
1199
|
+
opticOddsName: 'Russia - First League',
|
|
1200
|
+
priority: 150,
|
|
1201
|
+
},
|
|
1202
|
+
[League.SCOTLAND_CHAMPIONSHIP]: {
|
|
1203
|
+
...SOCCER_DEFAULTS,
|
|
1204
|
+
id: League.SCOTLAND_CHAMPIONSHIP,
|
|
1205
|
+
label: 'Scotland Championship',
|
|
1206
|
+
opticOddsName: 'Scotland - Championship',
|
|
1207
|
+
priority: 150,
|
|
1208
|
+
},
|
|
1209
|
+
[League.TURKEY_1_LIG]: {
|
|
1210
|
+
...SOCCER_DEFAULTS,
|
|
1211
|
+
id: League.TURKEY_1_LIG,
|
|
1212
|
+
label: 'Turkey 1 Lig',
|
|
1213
|
+
opticOddsName: 'Turkey - 1. Lig',
|
|
1214
|
+
priority: 150,
|
|
1215
|
+
},
|
|
1216
|
+
[League.ENGLAND_LEAGUE_2]: {
|
|
1217
|
+
...SOCCER_DEFAULTS,
|
|
1218
|
+
id: League.ENGLAND_LEAGUE_2,
|
|
1219
|
+
label: 'England League 2',
|
|
1220
|
+
opticOddsName: 'England - League 2',
|
|
1221
|
+
priority: 150,
|
|
1222
|
+
},
|
|
1223
|
+
[League.ENGLAND_NATIONAL_LEAGUE]: {
|
|
1224
|
+
...SOCCER_DEFAULTS,
|
|
1225
|
+
id: League.ENGLAND_NATIONAL_LEAGUE,
|
|
1226
|
+
label: 'England National League',
|
|
1227
|
+
opticOddsName: 'England - National League',
|
|
1228
|
+
priority: 150,
|
|
1229
|
+
},
|
|
1230
|
+
[League.ENGLAND_NATIONAL_LEAGUE_NORTH]: {
|
|
1231
|
+
...SOCCER_DEFAULTS,
|
|
1232
|
+
id: League.ENGLAND_NATIONAL_LEAGUE_NORTH,
|
|
1233
|
+
label: 'England National League North',
|
|
1234
|
+
opticOddsName: 'England - National League North',
|
|
1235
|
+
priority: 150,
|
|
1236
|
+
},
|
|
1237
|
+
[League.ENGLAND_NATIONAL_LEAGUE_SOUTH]: {
|
|
1238
|
+
...SOCCER_DEFAULTS,
|
|
1239
|
+
id: League.ENGLAND_NATIONAL_LEAGUE_SOUTH,
|
|
1240
|
+
label: 'England National League South',
|
|
1241
|
+
opticOddsName: 'England - National League South',
|
|
1242
|
+
priority: 150,
|
|
1243
|
+
},
|
|
1244
|
+
[League.GERMANY_BUNDESLIGA_3]: {
|
|
1245
|
+
...SOCCER_DEFAULTS,
|
|
1246
|
+
id: League.GERMANY_BUNDESLIGA_3,
|
|
1247
|
+
label: 'Germany Bundesliga 3',
|
|
1248
|
+
opticOddsName: 'Germany - Bundesliga 3',
|
|
1249
|
+
priority: 150,
|
|
1250
|
+
},
|
|
1251
|
+
[League.PORTUGAL_LIGA_3]: {
|
|
1252
|
+
...SOCCER_DEFAULTS,
|
|
1253
|
+
id: League.PORTUGAL_LIGA_3,
|
|
1254
|
+
label: 'Portugal Liga 3',
|
|
1255
|
+
opticOddsName: 'Portugal - Liga 3',
|
|
1256
|
+
priority: 150,
|
|
1257
|
+
},
|
|
1258
|
+
[League.ROMANIA_LIGA_II]: {
|
|
1259
|
+
...SOCCER_DEFAULTS,
|
|
1260
|
+
id: League.ROMANIA_LIGA_II,
|
|
1261
|
+
label: 'Romania Liga II',
|
|
1262
|
+
opticOddsName: 'Romania - Liga II',
|
|
1263
|
+
priority: 150,
|
|
1264
|
+
},
|
|
1265
|
+
[League.UKRAINE_PREMIER_LEAGUE]: {
|
|
1266
|
+
...SOCCER_DEFAULTS,
|
|
1267
|
+
id: League.UKRAINE_PREMIER_LEAGUE,
|
|
1268
|
+
label: 'Ukraine Premier League',
|
|
1269
|
+
opticOddsName: 'Ukraine - Premier League',
|
|
1270
|
+
priority: 150,
|
|
1271
|
+
},
|
|
1272
|
+
[League.ITALY_SERIE_C]: {
|
|
1273
|
+
...SOCCER_DEFAULTS,
|
|
1274
|
+
id: League.ITALY_SERIE_C,
|
|
1275
|
+
label: 'Italy Serie C',
|
|
1276
|
+
opticOddsName: 'Italy - Serie C',
|
|
1277
|
+
priority: 150,
|
|
1278
|
+
},
|
|
1279
|
+
[League.ISRAEL_PREMIER_LEAGUE]: {
|
|
1280
|
+
...SOCCER_DEFAULTS,
|
|
1281
|
+
id: League.ISRAEL_PREMIER_LEAGUE,
|
|
1282
|
+
label: 'Israel Premier League',
|
|
1283
|
+
opticOddsName: 'Israel - Premier League',
|
|
1284
|
+
priority: 150,
|
|
1285
|
+
},
|
|
1286
|
+
[League.PARAGUAY_PRIMERA_DIVISION]: {
|
|
1287
|
+
...SOCCER_DEFAULTS,
|
|
1288
|
+
id: League.PARAGUAY_PRIMERA_DIVISION,
|
|
1289
|
+
label: 'Paraguay Primera Division',
|
|
1290
|
+
opticOddsName: 'Paraguay - Primera Division',
|
|
1291
|
+
priority: 150,
|
|
1292
|
+
},
|
|
1293
|
+
[League.UAE_PRO_LEAGUE]: {
|
|
1294
|
+
...SOCCER_DEFAULTS,
|
|
1295
|
+
id: League.UAE_PRO_LEAGUE,
|
|
1296
|
+
label: 'UAE Pro League',
|
|
1297
|
+
opticOddsName: 'UAE - Pro League',
|
|
1298
|
+
priority: 150,
|
|
1299
|
+
},
|
|
1300
|
+
[League.ARGENTINA_PRIMERA_NACIONAL]: {
|
|
1301
|
+
...SOCCER_DEFAULTS,
|
|
1302
|
+
id: League.ARGENTINA_PRIMERA_NACIONAL,
|
|
1303
|
+
label: 'Argentina Primera Nacional',
|
|
1304
|
+
opticOddsName: 'Argentina - Primera Nacional',
|
|
1305
|
+
priority: 150,
|
|
1306
|
+
},
|
|
1307
|
+
[League.CONMEBOL_COPA_SUDAMERICANA]: {
|
|
1308
|
+
...SOCCER_DEFAULTS,
|
|
1309
|
+
id: League.CONMEBOL_COPA_SUDAMERICANA,
|
|
1310
|
+
label: 'CONMEBOL Copa Sudamericana',
|
|
1311
|
+
opticOddsName: 'CONMEBOL - Copa Sudamericana',
|
|
1312
|
+
priority: 150,
|
|
1313
|
+
},
|
|
1314
|
+
[League.BOLIVIA_DIVISION_PROFESSIONAL]: {
|
|
1315
|
+
...SOCCER_DEFAULTS,
|
|
1316
|
+
id: League.BOLIVIA_DIVISION_PROFESSIONAL,
|
|
1317
|
+
label: 'Bolivia Division Professional',
|
|
1318
|
+
opticOddsName: 'Bolivia - Division Professional',
|
|
1319
|
+
priority: 150,
|
|
1320
|
+
},
|
|
1321
|
+
[League.VENEZUELA_PRIMERA_DIVISION]: {
|
|
1322
|
+
...SOCCER_DEFAULTS,
|
|
1323
|
+
id: League.VENEZUELA_PRIMERA_DIVISION,
|
|
1324
|
+
label: 'Venezuela Primera Division',
|
|
1325
|
+
opticOddsName: 'Venezuela - Primera Division',
|
|
1326
|
+
priority: 150,
|
|
1327
|
+
},
|
|
1328
|
+
[League.FIFA_ARAB_NATIONS_CUP]: {
|
|
1329
|
+
...SOCCER_DEFAULTS,
|
|
1330
|
+
id: League.FIFA_ARAB_NATIONS_CUP,
|
|
1331
|
+
label: 'FIFA Arab Nations Cup',
|
|
1332
|
+
opticOddsName: 'FIFA - Arab Nations Cup',
|
|
1333
|
+
priority: 100,
|
|
1334
|
+
},
|
|
1335
|
+
[League.FIFA_INTERCONTINENTAL_CUP]: {
|
|
1336
|
+
...SOCCER_DEFAULTS,
|
|
1337
|
+
id: League.FIFA_INTERCONTINENTAL_CUP,
|
|
1338
|
+
label: 'FIFA Intercontinental Cup',
|
|
1339
|
+
opticOddsName: 'FIFA - Intercontinental Cup',
|
|
1340
|
+
priority: 100,
|
|
1341
|
+
},
|
|
1342
|
+
[League.CAF_AFRICA_CUP_OF_NATIONS]: {
|
|
1343
|
+
...SOCCER_DEFAULTS,
|
|
1344
|
+
id: League.CAF_AFRICA_CUP_OF_NATIONS,
|
|
1345
|
+
label: 'CAF Africa Cup of Nations',
|
|
1346
|
+
opticOddsName: 'CAF - Africa Cup of Nations',
|
|
1347
|
+
priority: 100,
|
|
1348
|
+
},
|
|
1349
|
+
[League.CAF_AFRICA_CUP_OF_NATIONS_QUALIFIERS]: {
|
|
1350
|
+
...SOCCER_DEFAULTS,
|
|
1351
|
+
id: League.CAF_AFRICA_CUP_OF_NATIONS_QUALIFIERS,
|
|
1352
|
+
label: 'CAF Africa Cup of Nations Qualifiers',
|
|
1353
|
+
opticOddsName: 'CAF - Africa Cup of Nations Qualifiers',
|
|
1354
|
+
priority: 100,
|
|
1355
|
+
},
|
|
1356
|
+
[League.FINLAND_YKKOSLIIGA]: {
|
|
1357
|
+
...SOCCER_DEFAULTS,
|
|
1358
|
+
id: League.FINLAND_YKKOSLIIGA,
|
|
1359
|
+
label: 'Finland Ykkösliiga',
|
|
1360
|
+
opticOddsName: 'Finland - Ykkosliiga',
|
|
1361
|
+
priority: 150,
|
|
1362
|
+
},
|
|
1363
|
+
[League.SOUTH_KOREA_K_LEAGUE_2]: {
|
|
1364
|
+
...SOCCER_DEFAULTS,
|
|
1365
|
+
id: League.SOUTH_KOREA_K_LEAGUE_2,
|
|
1366
|
+
label: 'Korea K2 League',
|
|
1367
|
+
opticOddsName: 'Korea - K2 League',
|
|
1368
|
+
priority: 150,
|
|
1369
|
+
},
|
|
1370
|
+
[League.MEXICO_LIGA_DE_EXPANSION]: {
|
|
1371
|
+
...SOCCER_DEFAULTS,
|
|
1372
|
+
id: League.MEXICO_LIGA_DE_EXPANSION,
|
|
1373
|
+
label: 'Mexico Liga de Expansion MX',
|
|
1374
|
+
opticOddsName: 'Mexico - Liga de Expansion MX',
|
|
1375
|
+
priority: 150,
|
|
1376
|
+
},
|
|
1377
|
+
[League.SPAIN_RFEF_PRIMERA]: {
|
|
1378
|
+
...SOCCER_DEFAULTS,
|
|
1379
|
+
id: League.SPAIN_RFEF_PRIMERA,
|
|
1380
|
+
label: 'Spain Primera Federacion',
|
|
1381
|
+
opticOddsName: 'Spain - Primera Federacion',
|
|
1382
|
+
priority: 150,
|
|
1383
|
+
},
|
|
1384
|
+
[League.SWITZERLAND_CUP]: {
|
|
1385
|
+
...SOCCER_DEFAULTS,
|
|
1386
|
+
id: League.SWITZERLAND_CUP,
|
|
1387
|
+
label: 'Switzerland Cup',
|
|
1388
|
+
opticOddsName: 'Switzerland - Cup',
|
|
1389
|
+
priority: 150,
|
|
1390
|
+
},
|
|
1391
|
+
[League.SINGAPORE_PREMIER_LEAGUE]: {
|
|
1392
|
+
...SOCCER_DEFAULTS,
|
|
1393
|
+
id: League.SINGAPORE_PREMIER_LEAGUE,
|
|
1394
|
+
label: 'Singapore Premier League',
|
|
1395
|
+
opticOddsName: 'Singapore - Premier League',
|
|
1396
|
+
priority: 150,
|
|
1397
|
+
},
|
|
1398
|
+
[League.JAPAN_EMPEROR_CUP]: {
|
|
1399
|
+
...SOCCER_DEFAULTS,
|
|
1400
|
+
id: League.JAPAN_EMPEROR_CUP,
|
|
1401
|
+
label: 'Japan Emperor Cup',
|
|
1402
|
+
opticOddsName: 'Japan - Emperor Cup',
|
|
1403
|
+
priority: 151,
|
|
1404
|
+
},
|
|
1405
|
+
[League.ESTONIA_MEISTRILIIGA_WOMEN]: {
|
|
1406
|
+
...SOCCER_DEFAULTS,
|
|
1407
|
+
id: League.ESTONIA_MEISTRILIIGA_WOMEN,
|
|
1408
|
+
label: 'Estonia Meistriliiga Women',
|
|
1409
|
+
opticOddsName: 'Estonia - Meistriliiga Women',
|
|
1410
|
+
priority: 150,
|
|
1411
|
+
},
|
|
1412
|
+
[League.MEXICO_LIGA_MX_WOMEN]: {
|
|
1413
|
+
...SOCCER_DEFAULTS,
|
|
1414
|
+
id: League.MEXICO_LIGA_MX_WOMEN,
|
|
1415
|
+
label: 'Mexico Liga MX Women',
|
|
1416
|
+
opticOddsName: 'Mexico - Liga MX Women',
|
|
1417
|
+
priority: 150,
|
|
1418
|
+
},
|
|
1419
|
+
[League.HONG_KONG_PREMIER_LEAGUE]: {
|
|
1420
|
+
...SOCCER_DEFAULTS,
|
|
1421
|
+
id: League.HONG_KONG_PREMIER_LEAGUE,
|
|
1422
|
+
label: 'Hong Kong Premier League',
|
|
1423
|
+
opticOddsName: 'Hong Kong - Premier League',
|
|
1424
|
+
priority: 150,
|
|
1425
|
+
},
|
|
1426
|
+
[League.AUSTRIA_OFB_CUP]: {
|
|
1427
|
+
...SOCCER_DEFAULTS,
|
|
1428
|
+
id: League.AUSTRIA_OFB_CUP,
|
|
1429
|
+
label: 'Austria OFB Cup',
|
|
1430
|
+
opticOddsName: 'Austria - OFB Cup',
|
|
1431
|
+
priority: 150,
|
|
1432
|
+
},
|
|
1433
|
+
[League.NORWAY_TOPSERIEN_WOMEN]: {
|
|
1434
|
+
...SOCCER_DEFAULTS,
|
|
1435
|
+
id: League.NORWAY_TOPSERIEN_WOMEN,
|
|
1436
|
+
label: 'Norway Topserien Women',
|
|
1437
|
+
opticOddsName: 'Norway - Topserien Women',
|
|
1438
|
+
priority: 150,
|
|
1439
|
+
},
|
|
1440
|
+
[League.SWEDEN_DAMALLSVENSKAN]: {
|
|
1441
|
+
...SOCCER_DEFAULTS,
|
|
1442
|
+
id: League.SWEDEN_DAMALLSVENSKAN,
|
|
1443
|
+
label: 'Sweden Damallsvenskan',
|
|
1444
|
+
opticOddsName: 'Sweden - Damallsvenskan',
|
|
1445
|
+
priority: 150,
|
|
1446
|
+
},
|
|
1447
|
+
[League.AFC_ASIAN_CUP_WOMEN]: {
|
|
1448
|
+
...SOCCER_DEFAULTS,
|
|
1449
|
+
id: League.AFC_ASIAN_CUP_WOMEN,
|
|
1450
|
+
label: 'AFC Asian Cup Women',
|
|
1451
|
+
opticOddsName: 'AFC - Asian Cup Women',
|
|
1452
|
+
priority: 100,
|
|
1453
|
+
},
|
|
1454
|
+
[League.AFC_ASIAN_CUP_WOMEN_QUALIFIERS]: {
|
|
1455
|
+
...SOCCER_DEFAULTS,
|
|
1456
|
+
id: League.AFC_ASIAN_CUP_WOMEN_QUALIFIERS,
|
|
1457
|
+
label: 'AFC Asian Cup Women Qualifiers',
|
|
1458
|
+
opticOddsName: 'AFC - Asian Cup Women Qualifiers',
|
|
1459
|
+
priority: 100,
|
|
1460
|
+
},
|
|
1461
|
+
[League.CONCACAF_CHAMPIONS_CUP_WOMEN]: {
|
|
1462
|
+
...SOCCER_DEFAULTS,
|
|
1463
|
+
id: League.CONCACAF_CHAMPIONS_CUP_WOMEN,
|
|
1464
|
+
label: 'CONCACAF Champions Cup Women',
|
|
1465
|
+
opticOddsName: 'CONCACAF - Champions Cup Women',
|
|
1466
|
+
priority: 109,
|
|
1467
|
+
},
|
|
1468
|
+
[League.CONCACAF_CHAMPIONSHIP_QUALIFIERS_WOMEN]: {
|
|
1469
|
+
...SOCCER_DEFAULTS,
|
|
1470
|
+
id: League.CONCACAF_CHAMPIONSHIP_QUALIFIERS_WOMEN,
|
|
1471
|
+
label: 'CONCACAF Championship Qualifiers Women',
|
|
1472
|
+
opticOddsName: 'CONCACAF - Championship Qualifiers Women',
|
|
1473
|
+
priority: 109,
|
|
1474
|
+
},
|
|
1475
|
+
[League.CONCACAF_CHAMPIONSHIP_WOMEN]: {
|
|
1476
|
+
...SOCCER_DEFAULTS,
|
|
1477
|
+
id: League.CONCACAF_CHAMPIONSHIP_WOMEN,
|
|
1478
|
+
label: 'CONCACAF Championship Women',
|
|
1479
|
+
opticOddsName: 'CONCACAF - Championship Women',
|
|
1480
|
+
priority: 109,
|
|
1481
|
+
},
|
|
1482
|
+
[League.CONMEBOL_COPA_AMERICA_WOMEN]: {
|
|
1483
|
+
...SOCCER_DEFAULTS,
|
|
1484
|
+
id: League.CONMEBOL_COPA_AMERICA_WOMEN,
|
|
1485
|
+
label: 'CONMEBOL Copa America Women',
|
|
1486
|
+
opticOddsName: 'CONMEBOL - Copa America Women',
|
|
1487
|
+
priority: 107,
|
|
1488
|
+
},
|
|
1489
|
+
[League.COSAFA_CUP_WOMEN]: {
|
|
1490
|
+
...SOCCER_DEFAULTS,
|
|
1491
|
+
id: League.COSAFA_CUP_WOMEN,
|
|
1492
|
+
label: 'COSAFA Cup Women',
|
|
1493
|
+
opticOddsName: 'COSAFA - Cup Women',
|
|
1494
|
+
priority: 187,
|
|
1495
|
+
},
|
|
1496
|
+
[League.FIFA_WC_QUALIFIERS_WOMEN]: {
|
|
1497
|
+
...SOCCER_DEFAULTS,
|
|
1498
|
+
id: League.FIFA_WC_QUALIFIERS_WOMEN,
|
|
1499
|
+
label: 'FIFA World Cup Qualifiers Women',
|
|
1500
|
+
opticOddsName: 'FIFA - World Cup Qualifiers Women',
|
|
1501
|
+
logoClass: 'icon-homepage league--fifa-world-cup',
|
|
1502
|
+
priority: 100,
|
|
1503
|
+
},
|
|
1504
|
+
[League.INTERNATIONAL_SHEBELIEVES_CUP]: {
|
|
1505
|
+
...SOCCER_DEFAULTS,
|
|
1506
|
+
id: League.INTERNATIONAL_SHEBELIEVES_CUP,
|
|
1507
|
+
label: 'International SheBelieves Cup',
|
|
1508
|
+
opticOddsName: 'International - SheBelieves Cup',
|
|
1509
|
+
priority: 151,
|
|
1510
|
+
},
|
|
1511
|
+
[League.WAFF_CHAMPIONSHIP_WOMEN]: {
|
|
1512
|
+
...SOCCER_DEFAULTS,
|
|
1513
|
+
id: League.WAFF_CHAMPIONSHIP_WOMEN,
|
|
1514
|
+
label: 'WAFF Championship Women',
|
|
1515
|
+
opticOddsName: 'WAFF - Championship Women',
|
|
1516
|
+
priority: 100,
|
|
1517
|
+
},
|
|
1518
|
+
[League.JAPAN_WE_LEAGUE]: {
|
|
1519
|
+
...SOCCER_DEFAULTS,
|
|
1520
|
+
id: League.JAPAN_WE_LEAGUE,
|
|
1521
|
+
label: 'Japan WE League',
|
|
1522
|
+
opticOddsName: 'Japan - WE League',
|
|
1523
|
+
priority: 150,
|
|
1524
|
+
},
|
|
1525
|
+
[League.KOREA_WK_LEAGUE]: {
|
|
1526
|
+
...SOCCER_DEFAULTS,
|
|
1527
|
+
id: League.KOREA_WK_LEAGUE,
|
|
1528
|
+
label: 'Korea WK League',
|
|
1529
|
+
opticOddsName: 'Korea - WK League',
|
|
1530
|
+
priority: 150,
|
|
1531
|
+
},
|
|
1532
|
+
[League.TURKEY_SUPER_LIG_WOMEN]: {
|
|
1533
|
+
...SOCCER_DEFAULTS,
|
|
1534
|
+
id: League.TURKEY_SUPER_LIG_WOMEN,
|
|
1535
|
+
label: 'Turkey Super Lig Women',
|
|
1536
|
+
opticOddsName: 'Turkey - Super Lig Women',
|
|
1537
|
+
priority: 150,
|
|
1538
|
+
},
|
|
1539
|
+
[League.COSTA_RICA_PRIMERA_DIVISION_WOMEN]: {
|
|
1540
|
+
...SOCCER_DEFAULTS,
|
|
1541
|
+
id: League.COSTA_RICA_PRIMERA_DIVISION_WOMEN,
|
|
1542
|
+
label: 'Costa Rica Primera Division Women',
|
|
1543
|
+
opticOddsName: 'Costa Rica - Primera Division Women',
|
|
1544
|
+
priority: 150,
|
|
1545
|
+
},
|
|
1546
|
+
[League.ITALY_KINGS_LEAGUE]: {
|
|
1547
|
+
...SOCCER_DEFAULTS,
|
|
1548
|
+
id: League.ITALY_KINGS_LEAGUE,
|
|
1549
|
+
label: 'Italy Kings League',
|
|
1550
|
+
opticOddsName: 'Italy - Kings League',
|
|
1551
|
+
priority: 200,
|
|
1552
|
+
},
|
|
1553
|
+
[League.SPAIN_KINGS_LEAGUE]: {
|
|
1554
|
+
...SOCCER_DEFAULTS,
|
|
1555
|
+
id: League.SPAIN_KINGS_LEAGUE,
|
|
1556
|
+
label: 'Spain Kings League',
|
|
1557
|
+
opticOddsName: 'Spain - Kings League',
|
|
1558
|
+
priority: 200,
|
|
1559
|
+
},
|
|
1560
|
+
[League.BRAZIL_KINGS_LEAGUE]: {
|
|
1561
|
+
...SOCCER_DEFAULTS,
|
|
1562
|
+
id: League.BRAZIL_KINGS_LEAGUE,
|
|
1563
|
+
label: 'Brazil Kings League',
|
|
1564
|
+
opticOddsName: 'Brazil - Kings League',
|
|
1565
|
+
priority: 200,
|
|
1566
|
+
},
|
|
1567
|
+
[League.GERMANY_KINGS_LEAGUE]: {
|
|
1568
|
+
...SOCCER_DEFAULTS,
|
|
1569
|
+
id: League.GERMANY_KINGS_LEAGUE,
|
|
1570
|
+
label: 'Germany Kings League',
|
|
1571
|
+
opticOddsName: 'Germany - Kings League',
|
|
1572
|
+
priority: 200,
|
|
1573
|
+
},
|
|
1574
|
+
[League.KINGS_LEAGUE_CLUB_WORLD_CUP]: {
|
|
1575
|
+
...SOCCER_DEFAULTS,
|
|
1576
|
+
id: League.KINGS_LEAGUE_CLUB_WORLD_CUP,
|
|
1577
|
+
label: 'Kings League Club World Cup',
|
|
1578
|
+
opticOddsName: 'Kings League - Club World Cup',
|
|
1579
|
+
priority: 200,
|
|
1580
|
+
},
|
|
1581
|
+
[League.KINGS_LEAGUE_WORLD_CUP]: {
|
|
1582
|
+
...SOCCER_DEFAULTS,
|
|
1583
|
+
id: League.KINGS_LEAGUE_WORLD_CUP,
|
|
1584
|
+
label: 'Kings League World Cup',
|
|
1585
|
+
opticOddsName: 'Kings League - World Cup',
|
|
1586
|
+
priority: 200,
|
|
1587
|
+
},
|
|
1588
|
+
[League.SAUDI_KINGS_CUP]: {
|
|
1589
|
+
...SOCCER_DEFAULTS,
|
|
1590
|
+
id: League.SAUDI_KINGS_CUP,
|
|
1591
|
+
label: 'Saudi Arabia Kings Cup',
|
|
1592
|
+
opticOddsName: 'Saudi Arabia - Kings Cup',
|
|
1593
|
+
priority: 200,
|
|
1594
|
+
},
|
|
1595
|
+
[League.INTERNATIONAL_KINGS_CUP]: {
|
|
1596
|
+
...SOCCER_DEFAULTS,
|
|
1597
|
+
id: League.INTERNATIONAL_KINGS_CUP,
|
|
1598
|
+
label: 'International Kings Cup',
|
|
1599
|
+
opticOddsName: 'International - Kings Cup',
|
|
1600
|
+
priority: 200,
|
|
1601
|
+
},
|
|
1602
|
+
[League.SWEDEN_ETTAN]: {
|
|
1603
|
+
...SOCCER_DEFAULTS,
|
|
1604
|
+
id: League.SWEDEN_ETTAN,
|
|
1605
|
+
label: 'Sweden Ettan',
|
|
1606
|
+
opticOddsName: 'Sweden - Ettan',
|
|
1607
|
+
priority: 150,
|
|
1608
|
+
},
|
|
1609
|
+
[League.FINLAND_YKKONEN]: {
|
|
1610
|
+
...SOCCER_DEFAULTS,
|
|
1611
|
+
id: League.FINLAND_YKKONEN,
|
|
1612
|
+
label: 'Finland Ykkonen',
|
|
1613
|
+
opticOddsName: 'Finland - Ykkonen',
|
|
1614
|
+
priority: 150,
|
|
1615
|
+
},
|
|
1616
|
+
[League.ICELAND_1_DEILD]: {
|
|
1617
|
+
...SOCCER_DEFAULTS,
|
|
1618
|
+
id: League.ICELAND_1_DEILD,
|
|
1619
|
+
label: 'Iceland 1. Deild',
|
|
1620
|
+
opticOddsName: 'Iceland - 1. Deild',
|
|
1621
|
+
priority: 150,
|
|
1622
|
+
},
|
|
1623
|
+
[League.ESTONIA_ESILIIGA]: {
|
|
1624
|
+
...SOCCER_DEFAULTS,
|
|
1625
|
+
id: League.ESTONIA_ESILIIGA,
|
|
1626
|
+
label: 'Estonia Esiliiga',
|
|
1627
|
+
opticOddsName: 'Estonia - Esiliiga',
|
|
1628
|
+
priority: 150,
|
|
1629
|
+
},
|
|
1630
|
+
[League.LATVIA_1_LIGA]: {
|
|
1631
|
+
...SOCCER_DEFAULTS,
|
|
1632
|
+
id: League.LATVIA_1_LIGA,
|
|
1633
|
+
label: 'Latvia 1. Liga',
|
|
1634
|
+
opticOddsName: 'Latvia - 1. Liga',
|
|
1635
|
+
priority: 150,
|
|
1636
|
+
},
|
|
1637
|
+
[League.FINLAND_KAKKONEN]: {
|
|
1638
|
+
...SOCCER_DEFAULTS,
|
|
1639
|
+
id: League.FINLAND_KAKKONEN,
|
|
1640
|
+
label: 'Finland Kakkonen',
|
|
1641
|
+
opticOddsName: 'Finland - Kakkonen',
|
|
1642
|
+
priority: 150,
|
|
1643
|
+
},
|
|
1644
|
+
[League.FINLAND_KOLMONEN]: {
|
|
1645
|
+
...SOCCER_DEFAULTS,
|
|
1646
|
+
id: League.FINLAND_KOLMONEN,
|
|
1647
|
+
label: 'Finland Kolmonen',
|
|
1648
|
+
opticOddsName: 'Finland - Kolmonen',
|
|
1649
|
+
priority: 150,
|
|
1650
|
+
},
|
|
1651
|
+
[League.MOROCCO_BOTOLA_PRO_1]: {
|
|
1652
|
+
...SOCCER_DEFAULTS,
|
|
1653
|
+
id: League.MOROCCO_BOTOLA_PRO_1,
|
|
1654
|
+
label: 'Morocco Botola Pro 1',
|
|
1655
|
+
opticOddsName: 'Morocco - Botola Pro 1',
|
|
1656
|
+
priority: 150,
|
|
1657
|
+
},
|
|
1658
|
+
[League.MOROCCO_BOTOLA_PRO_2]: {
|
|
1659
|
+
...SOCCER_DEFAULTS,
|
|
1660
|
+
id: League.MOROCCO_BOTOLA_PRO_2,
|
|
1661
|
+
label: 'Morocco Botola Pro 2',
|
|
1662
|
+
opticOddsName: 'Morocco - Botola Pro 2',
|
|
1663
|
+
priority: 150,
|
|
1664
|
+
},
|
|
1665
|
+
[League.POLAND_I_LIGA]: {
|
|
1666
|
+
...SOCCER_DEFAULTS,
|
|
1667
|
+
id: League.POLAND_I_LIGA,
|
|
1668
|
+
label: 'Poland I Liga',
|
|
1669
|
+
opticOddsName: 'Poland - I Liga',
|
|
1670
|
+
priority: 182,
|
|
1671
|
+
},
|
|
1672
|
+
[League.ECUADOR_SERIE_B]: {
|
|
1673
|
+
...SOCCER_DEFAULTS,
|
|
1674
|
+
id: League.ECUADOR_SERIE_B,
|
|
1675
|
+
label: 'Ecuador Serie B',
|
|
1676
|
+
opticOddsName: 'Ecuador - Serie B',
|
|
1677
|
+
priority: 192,
|
|
1678
|
+
},
|
|
1679
|
+
[League.COLOMBIA_CUP]: {
|
|
1680
|
+
...SOCCER_DEFAULTS,
|
|
1681
|
+
id: League.COLOMBIA_CUP,
|
|
1682
|
+
label: 'Colombia Cup',
|
|
1683
|
+
opticOddsName: 'Colombia - Cup',
|
|
1684
|
+
priority: 185,
|
|
1685
|
+
},
|
|
1686
|
+
[League.EL_SALVADOR_PRIMERA]: {
|
|
1687
|
+
...SOCCER_DEFAULTS,
|
|
1688
|
+
id: League.EL_SALVADOR_PRIMERA,
|
|
1689
|
+
label: 'El Salvador Primera Division',
|
|
1690
|
+
opticOddsName: 'El Salvador - Primera Division',
|
|
1691
|
+
priority: 190,
|
|
1692
|
+
},
|
|
1693
|
+
[League.BRAZIL_BRASILEIRO_U20]: {
|
|
1694
|
+
...SOCCER_DEFAULTS,
|
|
1695
|
+
id: League.BRAZIL_BRASILEIRO_U20,
|
|
1696
|
+
label: 'Brazil Brasileiro U20',
|
|
1697
|
+
opticOddsName: 'Brazil - Brasileiro U20',
|
|
1698
|
+
priority: 196,
|
|
1699
|
+
},
|
|
1700
|
+
[League.NIGERIA_PREMIER_LEAGUE]: {
|
|
1701
|
+
...SOCCER_DEFAULTS,
|
|
1702
|
+
id: League.NIGERIA_PREMIER_LEAGUE,
|
|
1703
|
+
label: 'Nigeria Premier League',
|
|
1704
|
+
opticOddsName: 'Nigeria - Premier League',
|
|
1705
|
+
priority: 190,
|
|
1706
|
+
},
|
|
1707
|
+
[League.GHANA_PREMIER_LEAGUE]: {
|
|
1708
|
+
...SOCCER_DEFAULTS,
|
|
1709
|
+
id: League.GHANA_PREMIER_LEAGUE,
|
|
1710
|
+
label: 'Ghana Premier League',
|
|
1711
|
+
opticOddsName: 'Ghana - Premier League',
|
|
1712
|
+
priority: 190,
|
|
1713
|
+
},
|
|
1714
|
+
[League.IVORY_COAST_LIGUE_1]: {
|
|
1715
|
+
...SOCCER_DEFAULTS,
|
|
1716
|
+
id: League.IVORY_COAST_LIGUE_1,
|
|
1717
|
+
label: 'Ivory Coast Ligue 1',
|
|
1718
|
+
opticOddsName: 'Ivory Coast - Ligue 1',
|
|
1719
|
+
priority: 190,
|
|
1720
|
+
},
|
|
1721
|
+
[League.CAMEROON_ELITE_ONE]: {
|
|
1722
|
+
...SOCCER_DEFAULTS,
|
|
1723
|
+
id: League.CAMEROON_ELITE_ONE,
|
|
1724
|
+
label: 'Cameroon Elite One',
|
|
1725
|
+
opticOddsName: 'Cameroon - Elite One',
|
|
1726
|
+
priority: 190,
|
|
1727
|
+
},
|
|
1728
|
+
[League.SENEGAL_LIGUE_1]: {
|
|
1729
|
+
...SOCCER_DEFAULTS,
|
|
1730
|
+
id: League.SENEGAL_LIGUE_1,
|
|
1731
|
+
label: 'Senegal Ligue 1',
|
|
1732
|
+
opticOddsName: 'Senegal - Ligue 1',
|
|
1733
|
+
priority: 190,
|
|
1734
|
+
},
|
|
1735
|
+
[League.TUNISIA_LEAGUE_1]: {
|
|
1736
|
+
...SOCCER_DEFAULTS,
|
|
1737
|
+
id: League.TUNISIA_LEAGUE_1,
|
|
1738
|
+
label: 'Tunisia League 1',
|
|
1739
|
+
opticOddsName: 'Tunisia - League 1',
|
|
1740
|
+
priority: 190,
|
|
1741
|
+
},
|
|
1742
|
+
[League.IRAN_PRO_LEAGUE]: {
|
|
1743
|
+
...SOCCER_DEFAULTS,
|
|
1744
|
+
id: League.IRAN_PRO_LEAGUE,
|
|
1745
|
+
label: 'Iran Pro League',
|
|
1746
|
+
opticOddsName: 'Iran - Pro League',
|
|
1747
|
+
priority: 190,
|
|
1748
|
+
},
|
|
1749
|
+
[League.ZAMBIA_SUPER_LEAGUE]: {
|
|
1750
|
+
...SOCCER_DEFAULTS,
|
|
1751
|
+
id: League.ZAMBIA_SUPER_LEAGUE,
|
|
1752
|
+
label: 'Zambia Super League',
|
|
1753
|
+
opticOddsName: 'Zambia - Super League',
|
|
1754
|
+
priority: 190,
|
|
1755
|
+
},
|
|
1756
|
+
[League.TANZANIA_PREMIER_LEAGUE]: {
|
|
1757
|
+
...SOCCER_DEFAULTS,
|
|
1758
|
+
id: League.TANZANIA_PREMIER_LEAGUE,
|
|
1759
|
+
label: 'Tanzania Premier League',
|
|
1760
|
+
opticOddsName: 'Tanzania - Premier League',
|
|
1761
|
+
priority: 190,
|
|
1762
|
+
},
|
|
1763
|
+
[League.UGANDA_PREMIER_LEAGUE]: {
|
|
1764
|
+
...SOCCER_DEFAULTS,
|
|
1765
|
+
id: League.UGANDA_PREMIER_LEAGUE,
|
|
1766
|
+
label: 'Uganda Premier League',
|
|
1767
|
+
opticOddsName: 'Uganda - Premier League',
|
|
1768
|
+
priority: 190,
|
|
1769
|
+
},
|
|
1770
|
+
[League.BURKINA_FASO_PREMIER_LEAGUE]: {
|
|
1771
|
+
...SOCCER_DEFAULTS,
|
|
1772
|
+
id: League.BURKINA_FASO_PREMIER_LEAGUE,
|
|
1773
|
+
label: 'Burkina Faso Premier League',
|
|
1774
|
+
opticOddsName: 'Burkina Faso - Premier League',
|
|
1775
|
+
priority: 190,
|
|
1776
|
+
},
|
|
1777
|
+
[League.HONDURAS_LIGA_NACIONAL]: {
|
|
1778
|
+
...SOCCER_DEFAULTS,
|
|
1779
|
+
id: League.HONDURAS_LIGA_NACIONAL,
|
|
1780
|
+
label: 'Honduras Liga Nacional',
|
|
1781
|
+
opticOddsName: 'Honduras - Liga Nacional',
|
|
1782
|
+
priority: 190,
|
|
1783
|
+
},
|
|
1784
|
+
[League.KUWAIT_PREMIER_LEAGUE]: {
|
|
1785
|
+
...SOCCER_DEFAULTS,
|
|
1786
|
+
id: League.KUWAIT_PREMIER_LEAGUE,
|
|
1787
|
+
label: 'Kuwait Premier League',
|
|
1788
|
+
opticOddsName: 'Kuwait - Premier League',
|
|
1789
|
+
priority: 190,
|
|
1790
|
+
},
|
|
1791
|
+
[League.OMAN_PRO_LEAGUE]: {
|
|
1792
|
+
...SOCCER_DEFAULTS,
|
|
1793
|
+
id: League.OMAN_PRO_LEAGUE,
|
|
1794
|
+
label: 'Oman Pro League',
|
|
1795
|
+
opticOddsName: 'Oman - Pro League',
|
|
1796
|
+
priority: 190,
|
|
1797
|
+
},
|
|
1798
|
+
[League.JORDAN_PRO_LEAGUE]: {
|
|
1799
|
+
...SOCCER_DEFAULTS,
|
|
1800
|
+
id: League.JORDAN_PRO_LEAGUE,
|
|
1801
|
+
label: 'Jordan Pro League',
|
|
1802
|
+
opticOddsName: 'Jordan - Pro League',
|
|
1803
|
+
priority: 190,
|
|
1804
|
+
},
|
|
1805
|
+
[League.LEBANON_PREMIER_LEAGUE]: {
|
|
1806
|
+
...SOCCER_DEFAULTS,
|
|
1807
|
+
id: League.LEBANON_PREMIER_LEAGUE,
|
|
1808
|
+
label: 'Lebanon Premier League',
|
|
1809
|
+
opticOddsName: 'Lebanon - Premier League',
|
|
1810
|
+
priority: 190,
|
|
1811
|
+
},
|
|
1812
|
+
[League.MALI_LEAGUE_ONE]: {
|
|
1813
|
+
...SOCCER_DEFAULTS,
|
|
1814
|
+
id: League.MALI_LEAGUE_ONE,
|
|
1815
|
+
label: 'Mali League One',
|
|
1816
|
+
opticOddsName: 'Mali - League One',
|
|
1817
|
+
priority: 190,
|
|
1818
|
+
},
|
|
1819
|
+
[League.MOLDOVA_SUPER_LIGA]: {
|
|
1820
|
+
...SOCCER_DEFAULTS,
|
|
1821
|
+
id: League.MOLDOVA_SUPER_LIGA,
|
|
1822
|
+
label: 'Moldova Super Liga',
|
|
1823
|
+
opticOddsName: 'Moldova - Super Liga',
|
|
1824
|
+
priority: 190,
|
|
1825
|
+
},
|
|
1826
|
+
[League.RWANDA_PREMIER_LEAGUE]: {
|
|
1827
|
+
...SOCCER_DEFAULTS,
|
|
1828
|
+
id: League.RWANDA_PREMIER_LEAGUE,
|
|
1829
|
+
label: 'Rwanda Premier League',
|
|
1830
|
+
opticOddsName: 'Rwanda - Premier League',
|
|
1831
|
+
priority: 190,
|
|
1832
|
+
},
|
|
1833
|
+
[League.MOZAMBIQUE_MOCAMBOLA]: {
|
|
1834
|
+
...SOCCER_DEFAULTS,
|
|
1835
|
+
id: League.MOZAMBIQUE_MOCAMBOLA,
|
|
1836
|
+
label: 'Mozambique Mocambola',
|
|
1837
|
+
opticOddsName: 'Mozambique - Mocambola',
|
|
1838
|
+
priority: 190,
|
|
1839
|
+
},
|
|
1840
|
+
[League.ANGOLA_GIRABOLA]: {
|
|
1841
|
+
...SOCCER_DEFAULTS,
|
|
1842
|
+
id: League.ANGOLA_GIRABOLA,
|
|
1843
|
+
label: 'Angola Girabola',
|
|
1844
|
+
opticOddsName: 'Angola - Girabola',
|
|
1845
|
+
priority: 196,
|
|
1846
|
+
},
|
|
1847
|
+
[League.ARUBA_DIVISION_DI_HONOR]: {
|
|
1848
|
+
...SOCCER_DEFAULTS,
|
|
1849
|
+
id: League.ARUBA_DIVISION_DI_HONOR,
|
|
1850
|
+
label: 'Aruba Division di Honor',
|
|
1851
|
+
opticOddsName: 'Aruba - Division di Honor',
|
|
1852
|
+
priority: 196,
|
|
1853
|
+
},
|
|
1854
|
+
[League.BANGLADESH_PREMIER_LEAGUE]: {
|
|
1855
|
+
...SOCCER_DEFAULTS,
|
|
1856
|
+
id: League.BANGLADESH_PREMIER_LEAGUE,
|
|
1857
|
+
label: 'Bangladesh Premier League',
|
|
1858
|
+
opticOddsName: 'Bangladesh - Premier League',
|
|
1859
|
+
priority: 196,
|
|
1860
|
+
},
|
|
1861
|
+
[League.BARBADOS_PREMIER_LEAGUE]: {
|
|
1862
|
+
...SOCCER_DEFAULTS,
|
|
1863
|
+
id: League.BARBADOS_PREMIER_LEAGUE,
|
|
1864
|
+
label: 'Barbados Premier League',
|
|
1865
|
+
opticOddsName: 'Barbados - Premier League',
|
|
1866
|
+
priority: 196,
|
|
1867
|
+
},
|
|
1868
|
+
[League.BENIN_LIGUE_1]: {
|
|
1869
|
+
...SOCCER_DEFAULTS,
|
|
1870
|
+
id: League.BENIN_LIGUE_1,
|
|
1871
|
+
label: 'Benin Ligue 1',
|
|
1872
|
+
opticOddsName: 'Benin - Ligue 1',
|
|
1873
|
+
priority: 196,
|
|
1874
|
+
},
|
|
1875
|
+
[League.BHUTAN_PREMIER_LEAGUE]: {
|
|
1876
|
+
...SOCCER_DEFAULTS,
|
|
1877
|
+
id: League.BHUTAN_PREMIER_LEAGUE,
|
|
1878
|
+
label: 'Bhutan Premier League',
|
|
1879
|
+
opticOddsName: 'Bhutan - Premier League',
|
|
1880
|
+
priority: 196,
|
|
1881
|
+
},
|
|
1882
|
+
[League.BOTSWANA_PREMIER_LEAGUE]: {
|
|
1883
|
+
...SOCCER_DEFAULTS,
|
|
1884
|
+
id: League.BOTSWANA_PREMIER_LEAGUE,
|
|
1885
|
+
label: 'Botswana Premier League',
|
|
1886
|
+
opticOddsName: 'Botswana - Premier League',
|
|
1887
|
+
priority: 196,
|
|
1888
|
+
},
|
|
1889
|
+
[League.BURUNDI_PRIMUS_LEAGUE]: {
|
|
1890
|
+
...SOCCER_DEFAULTS,
|
|
1891
|
+
id: League.BURUNDI_PRIMUS_LEAGUE,
|
|
1892
|
+
label: 'Burundi Primus League',
|
|
1893
|
+
opticOddsName: 'Burundi - Primus League',
|
|
1894
|
+
priority: 196,
|
|
1895
|
+
},
|
|
1896
|
+
[League.CAMBODIA_PREMIER_LEAGUE]: {
|
|
1897
|
+
...SOCCER_DEFAULTS,
|
|
1898
|
+
id: League.CAMBODIA_PREMIER_LEAGUE,
|
|
1899
|
+
label: 'Cambodia Premier League',
|
|
1900
|
+
opticOddsName: 'Cambodia - Premier League',
|
|
1901
|
+
priority: 196,
|
|
1902
|
+
},
|
|
1903
|
+
[League.CHAD_PREMIER_LEAGUE]: {
|
|
1904
|
+
...SOCCER_DEFAULTS,
|
|
1905
|
+
id: League.CHAD_PREMIER_LEAGUE,
|
|
1906
|
+
label: 'Chad Premier League',
|
|
1907
|
+
opticOddsName: 'Chad - Premier League',
|
|
1908
|
+
priority: 196,
|
|
1909
|
+
},
|
|
1910
|
+
[League.DOMINICAN_REPUBLIC_LDF]: {
|
|
1911
|
+
...SOCCER_DEFAULTS,
|
|
1912
|
+
id: League.DOMINICAN_REPUBLIC_LDF,
|
|
1913
|
+
label: 'Dominican Republic LDF',
|
|
1914
|
+
opticOddsName: 'Dominican Republic - LDF',
|
|
1915
|
+
priority: 196,
|
|
1916
|
+
},
|
|
1917
|
+
[League.DOMINICA_PREMIER_LEAGUE]: {
|
|
1918
|
+
...SOCCER_DEFAULTS,
|
|
1919
|
+
id: League.DOMINICA_PREMIER_LEAGUE,
|
|
1920
|
+
label: 'Dominica Premier League',
|
|
1921
|
+
opticOddsName: 'Dominica - Premier League',
|
|
1922
|
+
priority: 196,
|
|
1923
|
+
},
|
|
1924
|
+
[League.FIJI_PREMIER_LEAGUE]: {
|
|
1925
|
+
...SOCCER_DEFAULTS,
|
|
1926
|
+
id: League.FIJI_PREMIER_LEAGUE,
|
|
1927
|
+
label: 'Fiji Premier League',
|
|
1928
|
+
opticOddsName: 'Fiji - Premier League',
|
|
1929
|
+
priority: 196,
|
|
1930
|
+
},
|
|
1931
|
+
[League.GAMBIA_GFA_LEAGUE]: {
|
|
1932
|
+
...SOCCER_DEFAULTS,
|
|
1933
|
+
id: League.GAMBIA_GFA_LEAGUE,
|
|
1934
|
+
label: 'Gambia GFA League',
|
|
1935
|
+
opticOddsName: 'Gambia - GFA League',
|
|
1936
|
+
priority: 196,
|
|
1937
|
+
},
|
|
1938
|
+
[League.KYRGYZSTAN_PREMIER_LEAGUE]: {
|
|
1939
|
+
...SOCCER_DEFAULTS,
|
|
1940
|
+
id: League.KYRGYZSTAN_PREMIER_LEAGUE,
|
|
1941
|
+
label: 'Kyrgyzstan Premier League',
|
|
1942
|
+
opticOddsName: 'Kyrgyzstan - Premier League',
|
|
1943
|
+
priority: 196,
|
|
1944
|
+
},
|
|
1945
|
+
[League.MACAO_ELITE_LEAGUE]: {
|
|
1946
|
+
...SOCCER_DEFAULTS,
|
|
1947
|
+
id: League.MACAO_ELITE_LEAGUE,
|
|
1948
|
+
label: 'Macao Elite League',
|
|
1949
|
+
opticOddsName: 'Macao - Elite League',
|
|
1950
|
+
priority: 196,
|
|
1951
|
+
},
|
|
1952
|
+
[League.MALAWI_SUPER_LEAGUE]: {
|
|
1953
|
+
...SOCCER_DEFAULTS,
|
|
1954
|
+
id: League.MALAWI_SUPER_LEAGUE,
|
|
1955
|
+
label: 'Malawi Super League',
|
|
1956
|
+
opticOddsName: 'Malawi - Super League',
|
|
1957
|
+
priority: 196,
|
|
1958
|
+
},
|
|
1959
|
+
[League.MAURITANIA_LIGUE_1]: {
|
|
1960
|
+
...SOCCER_DEFAULTS,
|
|
1961
|
+
id: League.MAURITANIA_LIGUE_1,
|
|
1962
|
+
label: 'Mauritania Ligue 1',
|
|
1963
|
+
opticOddsName: 'Mauritania - Ligue 1',
|
|
1964
|
+
priority: 196,
|
|
1965
|
+
},
|
|
1966
|
+
[League.MYANMAR_NATIONAL_LEAGUE]: {
|
|
1967
|
+
...SOCCER_DEFAULTS,
|
|
1968
|
+
id: League.MYANMAR_NATIONAL_LEAGUE,
|
|
1969
|
+
label: 'Myanmar National League',
|
|
1970
|
+
opticOddsName: 'Myanmar - National League',
|
|
1971
|
+
priority: 196,
|
|
1972
|
+
},
|
|
1973
|
+
[League.NICARAGUA_PRIMERA_DIVISION]: {
|
|
1974
|
+
...SOCCER_DEFAULTS,
|
|
1975
|
+
id: League.NICARAGUA_PRIMERA_DIVISION,
|
|
1976
|
+
label: 'Nicaragua Primera Division',
|
|
1977
|
+
opticOddsName: 'Nicaragua - Primera Division',
|
|
1978
|
+
priority: 196,
|
|
1979
|
+
},
|
|
1980
|
+
[League.PHILIPPINES_PFL]: {
|
|
1981
|
+
...SOCCER_DEFAULTS,
|
|
1982
|
+
id: League.PHILIPPINES_PFL,
|
|
1983
|
+
label: 'Philippines PFL',
|
|
1984
|
+
opticOddsName: 'Philippines - PFL',
|
|
1985
|
+
priority: 196,
|
|
1986
|
+
},
|
|
1987
|
+
[League.PUERTO_RICO_LPR_PRO]: {
|
|
1988
|
+
...SOCCER_DEFAULTS,
|
|
1989
|
+
id: League.PUERTO_RICO_LPR_PRO,
|
|
1990
|
+
label: 'Puerto Rico LPR Pro',
|
|
1991
|
+
opticOddsName: 'Puerto Rico - LPR Pro',
|
|
1992
|
+
priority: 196,
|
|
1993
|
+
},
|
|
1994
|
+
[League.SIERRA_LEONE_PREMIER_LEAGUE]: {
|
|
1995
|
+
...SOCCER_DEFAULTS,
|
|
1996
|
+
id: League.SIERRA_LEONE_PREMIER_LEAGUE,
|
|
1997
|
+
label: 'Sierra Leone Premier League',
|
|
1998
|
+
opticOddsName: 'Sierra Leone - Premier League',
|
|
1999
|
+
priority: 196,
|
|
2000
|
+
},
|
|
2001
|
+
[League.SYRIA_PREMIER_LEAGUE]: {
|
|
2002
|
+
...SOCCER_DEFAULTS,
|
|
2003
|
+
id: League.SYRIA_PREMIER_LEAGUE,
|
|
2004
|
+
label: 'Syria Premier League',
|
|
2005
|
+
opticOddsName: 'Syria - Premier League',
|
|
2006
|
+
priority: 196,
|
|
2007
|
+
},
|
|
2008
|
+
[League.TAIWAN_PREMIER_LEAGUE]: {
|
|
2009
|
+
...SOCCER_DEFAULTS,
|
|
2010
|
+
id: League.TAIWAN_PREMIER_LEAGUE,
|
|
2011
|
+
label: 'Taiwan Premier League',
|
|
2012
|
+
opticOddsName: 'Taiwan - Premier League',
|
|
2013
|
+
priority: 196,
|
|
2014
|
+
},
|
|
2015
|
+
[League.TOGO_LIGUE_1]: {
|
|
2016
|
+
...SOCCER_DEFAULTS,
|
|
2017
|
+
id: League.TOGO_LIGUE_1,
|
|
2018
|
+
label: 'Togo Ligue 1',
|
|
2019
|
+
opticOddsName: 'Togo - Ligue 1',
|
|
2020
|
+
priority: 196,
|
|
2021
|
+
},
|
|
2022
|
+
[League.TRINIDAD_AND_TOBAGO_PREMIER_LEAGUE]: {
|
|
2023
|
+
...SOCCER_DEFAULTS,
|
|
2024
|
+
id: League.TRINIDAD_AND_TOBAGO_PREMIER_LEAGUE,
|
|
2025
|
+
label: 'Trinidad and Tobago Premier League',
|
|
2026
|
+
opticOddsName: 'Trinidad and Tobago - Premier League',
|
|
2027
|
+
priority: 196,
|
|
2028
|
+
},
|
|
2029
|
+
[League.ALBANIA_KATEGORIA_SUPERIORE]: {
|
|
2030
|
+
...SOCCER_DEFAULTS,
|
|
2031
|
+
id: League.ALBANIA_KATEGORIA_SUPERIORE,
|
|
2032
|
+
label: 'Albania Kategoria Superiore',
|
|
2033
|
+
opticOddsName: 'Albania - Kategoria Superiore',
|
|
2034
|
+
priority: 190,
|
|
2035
|
+
},
|
|
2036
|
+
[League.ARMENIA_PREMIER_LEAGUE]: {
|
|
2037
|
+
...SOCCER_DEFAULTS,
|
|
2038
|
+
id: League.ARMENIA_PREMIER_LEAGUE,
|
|
2039
|
+
label: 'Armenia Premier League',
|
|
2040
|
+
opticOddsName: 'Armenia - Premier League',
|
|
2041
|
+
priority: 190,
|
|
2042
|
+
},
|
|
2043
|
+
[League.AZERBAIJAN_PREMIER_LEAGUE]: {
|
|
2044
|
+
...SOCCER_DEFAULTS,
|
|
2045
|
+
id: League.AZERBAIJAN_PREMIER_LEAGUE,
|
|
2046
|
+
label: 'Azerbaijan Premier League',
|
|
2047
|
+
opticOddsName: 'Azerbaijan - Premier League',
|
|
2048
|
+
priority: 190,
|
|
2049
|
+
},
|
|
2050
|
+
[League.BAHRAIN_PREMIER_LEAGUE]: {
|
|
2051
|
+
...SOCCER_DEFAULTS,
|
|
2052
|
+
id: League.BAHRAIN_PREMIER_LEAGUE,
|
|
2053
|
+
label: 'Bahrain Premier League',
|
|
2054
|
+
opticOddsName: 'Bahrain - Premier League',
|
|
2055
|
+
priority: 190,
|
|
2056
|
+
},
|
|
2057
|
+
[League.BOSNIA_AND_HERZEGOVINA_PREMIER_LEAGUE]: {
|
|
2058
|
+
...SOCCER_DEFAULTS,
|
|
2059
|
+
id: League.BOSNIA_AND_HERZEGOVINA_PREMIER_LEAGUE,
|
|
2060
|
+
label: 'Bosnia and Herzegovina Premier League',
|
|
2061
|
+
opticOddsName: 'Bosnia and Herzegovina - Premier League',
|
|
2062
|
+
priority: 190,
|
|
2063
|
+
},
|
|
2064
|
+
[League.ETHIOPIA_PREMIER_LEAGUE]: {
|
|
2065
|
+
...SOCCER_DEFAULTS,
|
|
2066
|
+
id: League.ETHIOPIA_PREMIER_LEAGUE,
|
|
2067
|
+
label: 'Ethiopia Premier League',
|
|
2068
|
+
opticOddsName: 'Ethiopia - Premier League',
|
|
2069
|
+
priority: 190,
|
|
2070
|
+
},
|
|
2071
|
+
[League.GUATEMALA_LIGA_NACIONAL]: {
|
|
2072
|
+
...SOCCER_DEFAULTS,
|
|
2073
|
+
id: League.GUATEMALA_LIGA_NACIONAL,
|
|
2074
|
+
label: 'Guatemala Liga Nacional',
|
|
2075
|
+
opticOddsName: 'Guatemala - Liga Nacional',
|
|
2076
|
+
priority: 190,
|
|
2077
|
+
},
|
|
2078
|
+
[League.IRAQ_STARS_LEAGUE]: {
|
|
2079
|
+
...SOCCER_DEFAULTS,
|
|
2080
|
+
id: League.IRAQ_STARS_LEAGUE,
|
|
2081
|
+
label: 'Iraq Stars League',
|
|
2082
|
+
opticOddsName: 'Iraq - Stars League',
|
|
2083
|
+
priority: 190,
|
|
2084
|
+
},
|
|
2085
|
+
[League.JAMAICA_PREMIER_LEAGUE]: {
|
|
2086
|
+
...SOCCER_DEFAULTS,
|
|
2087
|
+
id: League.JAMAICA_PREMIER_LEAGUE,
|
|
2088
|
+
label: 'Jamaica Premier League',
|
|
2089
|
+
opticOddsName: 'Jamaica - Premier League',
|
|
2090
|
+
priority: 190,
|
|
2091
|
+
},
|
|
2092
|
+
[League.KENYA_PREMIER_LEAGUE]: {
|
|
2093
|
+
...SOCCER_DEFAULTS,
|
|
2094
|
+
id: League.KENYA_PREMIER_LEAGUE,
|
|
2095
|
+
label: 'Kenya Premier League',
|
|
2096
|
+
opticOddsName: 'Kenya - Premier League',
|
|
2097
|
+
priority: 190,
|
|
2098
|
+
},
|
|
2099
|
+
[League.KOSOVO_SUPERLIGA]: {
|
|
2100
|
+
...SOCCER_DEFAULTS,
|
|
2101
|
+
id: League.KOSOVO_SUPERLIGA,
|
|
2102
|
+
label: 'Kosovo Superliga',
|
|
2103
|
+
opticOddsName: 'Kosovo - Superliga',
|
|
2104
|
+
priority: 190,
|
|
2105
|
+
},
|
|
2106
|
+
[League.NORTH_MACEDONIA_FIRST_LEAGUE]: {
|
|
2107
|
+
...SOCCER_DEFAULTS,
|
|
2108
|
+
id: League.NORTH_MACEDONIA_FIRST_LEAGUE,
|
|
2109
|
+
label: 'North Macedonia First League',
|
|
2110
|
+
opticOddsName: 'North Macedonia - First League',
|
|
2111
|
+
priority: 190,
|
|
2112
|
+
},
|
|
2113
|
+
[League.PANAMA_LIGA_PANAMENA]: {
|
|
2114
|
+
...SOCCER_DEFAULTS,
|
|
2115
|
+
id: League.PANAMA_LIGA_PANAMENA,
|
|
2116
|
+
label: 'Panama Liga Panamena',
|
|
2117
|
+
opticOddsName: 'Panama - Liga Panamena',
|
|
2118
|
+
priority: 190,
|
|
2119
|
+
},
|
|
2120
|
+
[League.ZIMBABWE_PREMIER_LEAGUE]: {
|
|
2121
|
+
...SOCCER_DEFAULTS,
|
|
2122
|
+
id: League.ZIMBABWE_PREMIER_LEAGUE,
|
|
2123
|
+
label: 'Zimbabwe Premier League',
|
|
2124
|
+
opticOddsName: 'Zimbabwe - Premier League',
|
|
2125
|
+
priority: 190,
|
|
2126
|
+
},
|
|
2127
|
+
[League.UZBEKISTAN_PROFESSIONAL_LEAGUE]: {
|
|
2128
|
+
...SOCCER_DEFAULTS,
|
|
2129
|
+
id: League.UZBEKISTAN_PROFESSIONAL_LEAGUE,
|
|
2130
|
+
label: 'Uzbekistan Professional League',
|
|
2131
|
+
opticOddsName: 'Uzbekistan - Professional League',
|
|
2132
|
+
priority: 190,
|
|
2133
|
+
},
|
|
2134
|
+
[League.ANDORRA_PRIMERA_DIVISIO]: {
|
|
2135
|
+
...SOCCER_DEFAULTS,
|
|
2136
|
+
id: League.ANDORRA_PRIMERA_DIVISIO,
|
|
2137
|
+
label: 'Andorra Primera Divisio',
|
|
2138
|
+
opticOddsName: 'Andorra - Primera Divisio',
|
|
2139
|
+
priority: 196,
|
|
2140
|
+
},
|
|
2141
|
+
[League.FAROE_ISLANDS_PREMIER_LEAGUE]: {
|
|
2142
|
+
...SOCCER_DEFAULTS,
|
|
2143
|
+
id: League.FAROE_ISLANDS_PREMIER_LEAGUE,
|
|
2144
|
+
label: 'Faroe Islands Premier League',
|
|
2145
|
+
opticOddsName: 'Faroe Islands - Premier League',
|
|
2146
|
+
priority: 196,
|
|
2147
|
+
},
|
|
2148
|
+
[League.GIBRALTAR_FOOTBALL_LEAGUE]: {
|
|
2149
|
+
...SOCCER_DEFAULTS,
|
|
2150
|
+
id: League.GIBRALTAR_FOOTBALL_LEAGUE,
|
|
2151
|
+
label: 'Gibraltar Football League',
|
|
2152
|
+
opticOddsName: 'Gibraltar - Football League',
|
|
2153
|
+
priority: 196,
|
|
2154
|
+
},
|
|
2155
|
+
[League.MONGOLIA_PREMIER_LEAGUE]: {
|
|
2156
|
+
...SOCCER_DEFAULTS,
|
|
2157
|
+
id: League.MONGOLIA_PREMIER_LEAGUE,
|
|
2158
|
+
label: 'Mongolia Premier League',
|
|
2159
|
+
opticOddsName: 'Mongolia - Premier League',
|
|
2160
|
+
priority: 196,
|
|
2161
|
+
},
|
|
2162
|
+
[League.MONTENEGRO_CFL_1]: {
|
|
2163
|
+
...SOCCER_DEFAULTS,
|
|
2164
|
+
id: League.MONTENEGRO_CFL_1,
|
|
2165
|
+
label: 'Montenegro CFL 1',
|
|
2166
|
+
opticOddsName: 'Montenegro - CFL 1',
|
|
2167
|
+
priority: 196,
|
|
2168
|
+
},
|
|
2169
|
+
[League.NEW_ZEALAND_NATIONAL_LEAGUE]: {
|
|
2170
|
+
...SOCCER_DEFAULTS,
|
|
2171
|
+
id: League.NEW_ZEALAND_NATIONAL_LEAGUE,
|
|
2172
|
+
label: 'New Zealand National League',
|
|
2173
|
+
opticOddsName: 'New Zealand - National League',
|
|
2174
|
+
priority: 196,
|
|
2175
|
+
},
|
|
2176
|
+
[League.SAN_MARINO_CAMPIONATO]: {
|
|
2177
|
+
...SOCCER_DEFAULTS,
|
|
2178
|
+
id: League.SAN_MARINO_CAMPIONATO,
|
|
2179
|
+
label: 'San Marino Campionato',
|
|
2180
|
+
opticOddsName: 'San Marino - Campionato',
|
|
2181
|
+
priority: 196,
|
|
2182
|
+
},
|
|
2183
|
+
[League.COLOMBIA_PRIMERA_B]: {
|
|
2184
|
+
...SOCCER_DEFAULTS,
|
|
2185
|
+
id: League.COLOMBIA_PRIMERA_B,
|
|
2186
|
+
label: 'Colombia Primera B',
|
|
2187
|
+
opticOddsName: 'Colombia - Primera B',
|
|
2188
|
+
priority: 192,
|
|
2189
|
+
},
|
|
2190
|
+
[League.DENMARK_2ND_DIVISION]: {
|
|
2191
|
+
...SOCCER_DEFAULTS,
|
|
2192
|
+
id: League.DENMARK_2ND_DIVISION,
|
|
2193
|
+
label: 'Denmark 2nd Division',
|
|
2194
|
+
opticOddsName: 'Denmark - 2nd Division',
|
|
2195
|
+
priority: 195,
|
|
2196
|
+
},
|
|
2197
|
+
[League.POLAND_II_LIGA]: {
|
|
2198
|
+
...SOCCER_DEFAULTS,
|
|
2199
|
+
id: League.POLAND_II_LIGA,
|
|
2200
|
+
label: 'Poland II Liga',
|
|
2201
|
+
opticOddsName: 'Poland - II Liga',
|
|
2202
|
+
priority: 193,
|
|
2203
|
+
},
|
|
2204
|
+
[League.SLOVAKIA_2_LIGA]: {
|
|
2205
|
+
...SOCCER_DEFAULTS,
|
|
2206
|
+
id: League.SLOVAKIA_2_LIGA,
|
|
2207
|
+
label: 'Slovakia 2. Liga',
|
|
2208
|
+
opticOddsName: 'Slovakia - 2. Liga',
|
|
2209
|
+
priority: 193,
|
|
2210
|
+
},
|
|
2211
|
+
[League.SWITZERLAND_PROMOTION_LEAGUE]: {
|
|
2212
|
+
...SOCCER_DEFAULTS,
|
|
2213
|
+
id: League.SWITZERLAND_PROMOTION_LEAGUE,
|
|
2214
|
+
label: 'Switzerland Promotion League',
|
|
2215
|
+
opticOddsName: 'Switzerland - Promotion League',
|
|
2216
|
+
priority: 195,
|
|
2217
|
+
},
|
|
2218
|
+
[League.AUSTRALIA_NORTHERN_NSW_NPL]: {
|
|
2219
|
+
...SOCCER_DEFAULTS,
|
|
2220
|
+
id: League.AUSTRALIA_NORTHERN_NSW_NPL,
|
|
2221
|
+
label: 'Australia Northern NSW NPL',
|
|
2222
|
+
opticOddsName: 'Australia - Northern NSW NPL',
|
|
2223
|
+
priority: 197,
|
|
2224
|
+
},
|
|
2225
|
+
[League.AUSTRALIA_QUEENSLAND_NPL]: {
|
|
2226
|
+
...SOCCER_DEFAULTS,
|
|
2227
|
+
id: League.AUSTRALIA_QUEENSLAND_NPL,
|
|
2228
|
+
label: 'Australia Queensland NPL',
|
|
2229
|
+
opticOddsName: 'Australia - Queensland NPL',
|
|
2230
|
+
priority: 197,
|
|
2231
|
+
},
|
|
2232
|
+
[League.AUSTRALIA_QUEENSLAND_PREMIER_LEAGUE]: {
|
|
2233
|
+
...SOCCER_DEFAULTS,
|
|
2234
|
+
id: League.AUSTRALIA_QUEENSLAND_PREMIER_LEAGUE,
|
|
2235
|
+
label: 'Australia Queensland Premier League',
|
|
2236
|
+
opticOddsName: 'Australia - Queensland Premier League',
|
|
2237
|
+
priority: 197,
|
|
2238
|
+
},
|
|
2239
|
+
[League.AUSTRALIA_SOUTH_AUSTRALIA_NPL]: {
|
|
2240
|
+
...SOCCER_DEFAULTS,
|
|
2241
|
+
id: League.AUSTRALIA_SOUTH_AUSTRALIA_NPL,
|
|
2242
|
+
label: 'Australia South Australia NPL',
|
|
2243
|
+
opticOddsName: 'Australia - South Australia NPL',
|
|
2244
|
+
priority: 197,
|
|
2245
|
+
},
|
|
2246
|
+
[League.AUSTRALIA_VICTORIA_NPL]: {
|
|
2247
|
+
...SOCCER_DEFAULTS,
|
|
2248
|
+
id: League.AUSTRALIA_VICTORIA_NPL,
|
|
2249
|
+
label: 'Australia Victoria NPL',
|
|
2250
|
+
opticOddsName: 'Australia - Victoria NPL',
|
|
2251
|
+
priority: 197,
|
|
2252
|
+
},
|
|
2253
|
+
[League.AUSTRALIA_VICTORIA_PREMIER_LEAGUE_1]: {
|
|
2254
|
+
...SOCCER_DEFAULTS,
|
|
2255
|
+
id: League.AUSTRALIA_VICTORIA_PREMIER_LEAGUE_1,
|
|
2256
|
+
label: 'Australia Victoria Premier League 1',
|
|
2257
|
+
opticOddsName: 'Australia - Victoria Premier League 1',
|
|
2258
|
+
priority: 197,
|
|
2259
|
+
},
|
|
2260
|
+
[League.CHINA_LEAGUE_ONE]: {
|
|
2261
|
+
...SOCCER_DEFAULTS,
|
|
2262
|
+
id: League.CHINA_LEAGUE_ONE,
|
|
2263
|
+
label: 'China League One',
|
|
2264
|
+
opticOddsName: 'China - League One',
|
|
2265
|
+
priority: 193,
|
|
2266
|
+
},
|
|
2267
|
+
[League.CHILE_PRIMERA_B]: {
|
|
2268
|
+
...SOCCER_DEFAULTS,
|
|
2269
|
+
id: League.CHILE_PRIMERA_B,
|
|
2270
|
+
label: 'Chile Primera B',
|
|
2271
|
+
opticOddsName: 'Chile - Primera B',
|
|
2272
|
+
priority: 193,
|
|
2273
|
+
},
|
|
2274
|
+
[League.USA_MLS_NEXT_PRO]: {
|
|
2275
|
+
...SOCCER_DEFAULTS,
|
|
2276
|
+
id: League.USA_MLS_NEXT_PRO,
|
|
2277
|
+
label: 'USA MLS Next Pro',
|
|
2278
|
+
opticOddsName: 'USA - MLS Next Pro',
|
|
2279
|
+
priority: 196,
|
|
2280
|
+
},
|
|
2281
|
+
[League.NORWAY_2_DIVISION]: {
|
|
2282
|
+
...SOCCER_DEFAULTS,
|
|
2283
|
+
id: League.NORWAY_2_DIVISION,
|
|
2284
|
+
label: 'Norway 2. Division',
|
|
2285
|
+
opticOddsName: 'Norway - 2. Division',
|
|
2286
|
+
priority: 195,
|
|
2287
|
+
},
|
|
2288
|
+
[League.GERMANY_REGIONALLIGA]: {
|
|
2289
|
+
...SOCCER_DEFAULTS,
|
|
2290
|
+
id: League.GERMANY_REGIONALLIGA,
|
|
2291
|
+
label: 'Germany Regionalliga',
|
|
2292
|
+
opticOddsName: 'Germany - Regionalliga',
|
|
2293
|
+
priority: 196,
|
|
2294
|
+
},
|
|
2295
|
+
[League.GERMANY_BUNDESLIGA_U19]: {
|
|
2296
|
+
...SOCCER_DEFAULTS,
|
|
2297
|
+
id: League.GERMANY_BUNDESLIGA_U19,
|
|
2298
|
+
label: 'Germany Bundesliga U19',
|
|
2299
|
+
opticOddsName: 'Germany - Bundesliga U19',
|
|
2300
|
+
priority: 197,
|
|
2301
|
+
},
|
|
2302
|
+
[League.BRAZIL_BRASILEIRO_WOMEN]: {
|
|
2303
|
+
...SOCCER_DEFAULTS,
|
|
2304
|
+
id: League.BRAZIL_BRASILEIRO_WOMEN,
|
|
2305
|
+
label: 'Brazil Brasileiro Women',
|
|
2306
|
+
opticOddsName: 'Brazil - Brasileiro Women',
|
|
2307
|
+
priority: 197,
|
|
2308
|
+
},
|
|
2309
|
+
[League.SWEDEN_ELITETTAN_WOMEN]: {
|
|
2310
|
+
...SOCCER_DEFAULTS,
|
|
2311
|
+
id: League.SWEDEN_ELITETTAN_WOMEN,
|
|
2312
|
+
label: 'Sweden Elitettan Women',
|
|
2313
|
+
opticOddsName: 'Sweden - Elitettan Women',
|
|
2314
|
+
priority: 197,
|
|
2315
|
+
},
|
|
2316
|
+
[League.ARGENTINA_LIGA_PRO_RESERVES]: {
|
|
2317
|
+
...SOCCER_DEFAULTS,
|
|
2318
|
+
id: League.ARGENTINA_LIGA_PRO_RESERVES,
|
|
2319
|
+
label: 'Argentina Liga Pro Reserves',
|
|
2320
|
+
opticOddsName: 'Argentina - Liga Pro Reserves',
|
|
2321
|
+
priority: 198,
|
|
2322
|
+
},
|
|
2323
|
+
[League.JAPAN_J2_LEAGUE]: {
|
|
2324
|
+
...SOCCER_DEFAULTS,
|
|
2325
|
+
id: League.JAPAN_J2_LEAGUE,
|
|
2326
|
+
label: 'Japan J2 League',
|
|
2327
|
+
opticOddsName: 'Japan - J2 League',
|
|
2328
|
+
priority: 184,
|
|
2329
|
+
},
|
|
2330
|
+
[League.JAPAN_J3_LEAGUE]: {
|
|
2331
|
+
...SOCCER_DEFAULTS,
|
|
2332
|
+
id: League.JAPAN_J3_LEAGUE,
|
|
2333
|
+
label: 'Japan J3 League',
|
|
2334
|
+
opticOddsName: 'Japan - J3 League',
|
|
2335
|
+
priority: 192,
|
|
2336
|
+
},
|
|
2337
|
+
[League.FRANCE_NATIONAL_1]: {
|
|
2338
|
+
...SOCCER_DEFAULTS,
|
|
2339
|
+
id: League.FRANCE_NATIONAL_1,
|
|
2340
|
+
label: 'France National 1',
|
|
2341
|
+
opticOddsName: 'France - National 1',
|
|
2342
|
+
priority: 192,
|
|
2343
|
+
},
|
|
2344
|
+
[League.BRAZIL_SERIE_C]: {
|
|
2345
|
+
...SOCCER_DEFAULTS,
|
|
2346
|
+
id: League.BRAZIL_SERIE_C,
|
|
2347
|
+
label: 'Brazil Serie C',
|
|
2348
|
+
opticOddsName: 'Brazil - Serie C',
|
|
2349
|
+
priority: 190,
|
|
2350
|
+
},
|
|
2351
|
+
[League.SERBIA_PRVA_LIGA]: {
|
|
2352
|
+
...SOCCER_DEFAULTS,
|
|
2353
|
+
id: League.SERBIA_PRVA_LIGA,
|
|
2354
|
+
label: 'Serbia Prva Liga',
|
|
2355
|
+
opticOddsName: 'Serbia - Prva Liga',
|
|
2356
|
+
priority: 190,
|
|
2357
|
+
},
|
|
2358
|
+
[League.UKRAINE_PERSHA_LIHA]: {
|
|
2359
|
+
...SOCCER_DEFAULTS,
|
|
2360
|
+
id: League.UKRAINE_PERSHA_LIHA,
|
|
2361
|
+
label: 'Ukraine Persha Liha',
|
|
2362
|
+
opticOddsName: 'Ukraine - Persha Liha',
|
|
2363
|
+
priority: 190,
|
|
2364
|
+
},
|
|
2365
|
+
[League.HUNGARY_NB_II]: {
|
|
2366
|
+
...SOCCER_DEFAULTS,
|
|
2367
|
+
id: League.HUNGARY_NB_II,
|
|
2368
|
+
label: 'Hungary NB II',
|
|
2369
|
+
opticOddsName: 'Hungary - NB II',
|
|
2370
|
+
priority: 192,
|
|
2371
|
+
},
|
|
2372
|
+
[League.ISRAEL_NATIONAL_LEAGUE]: {
|
|
2373
|
+
...SOCCER_DEFAULTS,
|
|
2374
|
+
id: League.ISRAEL_NATIONAL_LEAGUE,
|
|
2375
|
+
label: 'Israel National League',
|
|
2376
|
+
opticOddsName: 'Israel - National League',
|
|
2377
|
+
priority: 192,
|
|
2378
|
+
},
|
|
2379
|
+
[League.SAUDI_ARABIA_DIVISION_1]: {
|
|
2380
|
+
...SOCCER_DEFAULTS,
|
|
2381
|
+
id: League.SAUDI_ARABIA_DIVISION_1,
|
|
2382
|
+
label: 'Saudi Arabia Division 1',
|
|
2383
|
+
opticOddsName: 'Saudi Arabia - Division 1',
|
|
2384
|
+
priority: 188,
|
|
2385
|
+
},
|
|
2386
|
+
[League.SCOTLAND_LEAGUE_ONE]: {
|
|
2387
|
+
...SOCCER_DEFAULTS,
|
|
2388
|
+
id: League.SCOTLAND_LEAGUE_ONE,
|
|
2389
|
+
label: 'Scotland League One',
|
|
2390
|
+
opticOddsName: 'Scotland - League One',
|
|
2391
|
+
priority: 190,
|
|
2392
|
+
},
|
|
2393
|
+
[League.SCOTLAND_LEAGUE_TWO]: {
|
|
2394
|
+
...SOCCER_DEFAULTS,
|
|
2395
|
+
id: League.SCOTLAND_LEAGUE_TWO,
|
|
2396
|
+
label: 'Scotland League Two',
|
|
2397
|
+
opticOddsName: 'Scotland - League Two',
|
|
2398
|
+
priority: 194,
|
|
2399
|
+
},
|
|
2400
|
+
[League.USA_USL_LEAGUE_ONE]: {
|
|
2401
|
+
...SOCCER_DEFAULTS,
|
|
2402
|
+
id: League.USA_USL_LEAGUE_ONE,
|
|
2403
|
+
label: 'USA USL League One',
|
|
2404
|
+
opticOddsName: 'USA - USL League One',
|
|
2405
|
+
priority: 192,
|
|
2406
|
+
},
|
|
2407
|
+
[League.ENGLAND_ISTHMIAN_PREMIER_LEAGUE]: {
|
|
2408
|
+
...SOCCER_DEFAULTS,
|
|
2409
|
+
id: League.ENGLAND_ISTHMIAN_PREMIER_LEAGUE,
|
|
2410
|
+
label: 'England Isthmian Premier League',
|
|
2411
|
+
opticOddsName: 'England - Isthmian Premier League',
|
|
2412
|
+
priority: 195,
|
|
2413
|
+
},
|
|
2414
|
+
[League.ENGLAND_NORTHERN_PREMIER_LEAGUE]: {
|
|
2415
|
+
...SOCCER_DEFAULTS,
|
|
2416
|
+
id: League.ENGLAND_NORTHERN_PREMIER_LEAGUE,
|
|
2417
|
+
label: 'England Northern Premier League',
|
|
2418
|
+
opticOddsName: 'England - Northern Premier League',
|
|
2419
|
+
priority: 195,
|
|
2420
|
+
},
|
|
2421
|
+
[League.ENGLAND_SOUTHERN_PREMIER_LEAGUE]: {
|
|
2422
|
+
...SOCCER_DEFAULTS,
|
|
2423
|
+
id: League.ENGLAND_SOUTHERN_PREMIER_LEAGUE,
|
|
2424
|
+
label: 'England Southern Premier League',
|
|
2425
|
+
opticOddsName: 'England - Southern Premier League',
|
|
2426
|
+
priority: 195,
|
|
2427
|
+
},
|
|
2428
|
+
[League.ENGLAND_PROFESSIONAL_DEVELOPMENT_LEAGUE_U21]: {
|
|
2429
|
+
...SOCCER_DEFAULTS,
|
|
2430
|
+
id: League.ENGLAND_PROFESSIONAL_DEVELOPMENT_LEAGUE_U21,
|
|
2431
|
+
label: 'England Professional Development League U21',
|
|
2432
|
+
opticOddsName: 'England - Professional Development League U21',
|
|
2433
|
+
priority: 197,
|
|
2434
|
+
},
|
|
2435
|
+
[League.ITALY_PRIMAVERA_U20]: {
|
|
2436
|
+
...SOCCER_DEFAULTS,
|
|
2437
|
+
id: League.ITALY_PRIMAVERA_U20,
|
|
2438
|
+
label: 'Italy Primavera U20',
|
|
2439
|
+
opticOddsName: 'Italy - Primavera U20',
|
|
2440
|
+
priority: 197,
|
|
2441
|
+
},
|
|
2442
|
+
[League.PORTUGAL_LIGA_REVELACAO_U23]: {
|
|
2443
|
+
...SOCCER_DEFAULTS,
|
|
2444
|
+
id: League.PORTUGAL_LIGA_REVELACAO_U23,
|
|
2445
|
+
label: 'Portugal Liga Revelacao U23',
|
|
2446
|
+
opticOddsName: 'Portugal - Liga Revelacao U23',
|
|
2447
|
+
priority: 197,
|
|
2448
|
+
},
|
|
2449
|
+
[League.AUSTRALIA_NSW_NPL]: {
|
|
2450
|
+
...SOCCER_DEFAULTS,
|
|
2451
|
+
id: League.AUSTRALIA_NSW_NPL,
|
|
2452
|
+
label: 'Australia NSW NPL',
|
|
2453
|
+
opticOddsName: 'Australia - NSW NPL',
|
|
2454
|
+
priority: 197,
|
|
2455
|
+
},
|
|
2456
|
+
[League.EGYPT_SECOND_DIVISION]: {
|
|
2457
|
+
...SOCCER_DEFAULTS,
|
|
2458
|
+
id: League.EGYPT_SECOND_DIVISION,
|
|
2459
|
+
label: 'Egypt Second Division',
|
|
2460
|
+
opticOddsName: 'Egypt - Second Division',
|
|
2461
|
+
priority: 193,
|
|
2462
|
+
},
|
|
2463
|
+
[League.ICELAND_BESTA_DEILD_WOMEN]: {
|
|
2464
|
+
...SOCCER_DEFAULTS,
|
|
2465
|
+
id: League.ICELAND_BESTA_DEILD_WOMEN,
|
|
2466
|
+
label: 'Iceland Besta Deild Women',
|
|
2467
|
+
opticOddsName: 'Iceland - Besta Deild Women',
|
|
2468
|
+
priority: 197,
|
|
2469
|
+
},
|
|
2470
|
+
[League.SLOVAKIA_SLOVENSKY_POHAR]: {
|
|
2471
|
+
...SOCCER_DEFAULTS,
|
|
2472
|
+
id: League.SLOVAKIA_SLOVENSKY_POHAR,
|
|
2473
|
+
label: 'Slovakia Slovensky Pohar',
|
|
2474
|
+
opticOddsName: 'Slovakia - Slovensky Pohar',
|
|
2475
|
+
priority: 185,
|
|
2476
|
+
},
|
|
2477
|
+
[League.ASEAN_CHAMPIONSHIP]: {
|
|
2478
|
+
...SOCCER_DEFAULTS,
|
|
2479
|
+
id: League.ASEAN_CHAMPIONSHIP,
|
|
2480
|
+
label: 'ASEAN Championship',
|
|
2481
|
+
opticOddsName: 'ASEAN - Championship',
|
|
2482
|
+
priority: 187,
|
|
2483
|
+
},
|
|
2484
|
+
[League.ITALY_SERIE_C_CUP]: {
|
|
2485
|
+
...SOCCER_DEFAULTS,
|
|
2486
|
+
id: League.ITALY_SERIE_C_CUP,
|
|
2487
|
+
label: 'Italy Serie C Cup',
|
|
2488
|
+
opticOddsName: 'Italy - Serie C Cup',
|
|
2489
|
+
priority: 150,
|
|
2490
|
+
},
|
|
2491
|
+
[League.AUSTRALIA_WESTERN_AUSTRALIA_NPL]: {
|
|
2492
|
+
...SOCCER_DEFAULTS,
|
|
2493
|
+
id: League.AUSTRALIA_WESTERN_AUSTRALIA_NPL,
|
|
2494
|
+
label: 'Australia Western Australia NPL',
|
|
2495
|
+
opticOddsName: 'Australia - Western Australia NPL',
|
|
2496
|
+
priority: 197,
|
|
2497
|
+
},
|
|
2498
|
+
[League.JAPAN_LEAGUE_CUP]: {
|
|
2499
|
+
...SOCCER_DEFAULTS,
|
|
2500
|
+
id: League.JAPAN_LEAGUE_CUP,
|
|
2501
|
+
label: 'Japan League Cup',
|
|
2502
|
+
opticOddsName: 'Japan - League Cup',
|
|
2503
|
+
priority: 184,
|
|
2504
|
+
},
|
|
2505
|
+
[League.IRELAND_FAI_CUP]: {
|
|
2506
|
+
...SOCCER_DEFAULTS,
|
|
2507
|
+
id: League.IRELAND_FAI_CUP,
|
|
2508
|
+
label: 'Ireland FAI Cup',
|
|
2509
|
+
opticOddsName: 'Ireland - FAI Cup',
|
|
2510
|
+
priority: 150,
|
|
2511
|
+
},
|
|
2512
|
+
[League.AUSTRALIA_QUEENSLAND_NPL_WOMEN]: {
|
|
2513
|
+
...SOCCER_DEFAULTS,
|
|
2514
|
+
id: League.AUSTRALIA_QUEENSLAND_NPL_WOMEN,
|
|
2515
|
+
label: 'Australia Queensland NPL Women',
|
|
2516
|
+
opticOddsName: 'Australia - Queensland NPL Women',
|
|
2517
|
+
priority: 197,
|
|
2518
|
+
},
|
|
2519
|
+
[League.URUGUAY_SEGUNDA_DIVISION]: {
|
|
2520
|
+
...SOCCER_DEFAULTS,
|
|
2521
|
+
id: League.URUGUAY_SEGUNDA_DIVISION,
|
|
2522
|
+
label: 'Uruguay Segunda Division',
|
|
2523
|
+
opticOddsName: 'Uruguay - Segunda Division',
|
|
2524
|
+
priority: 177,
|
|
2525
|
+
},
|
|
2526
|
+
[League.AFC_CHAMPIONS_LEAGUE_2]: {
|
|
2527
|
+
...SOCCER_DEFAULTS,
|
|
2528
|
+
id: League.AFC_CHAMPIONS_LEAGUE_2,
|
|
2529
|
+
label: 'AFC Champions League 2',
|
|
2530
|
+
opticOddsName: 'AFC - Champions League 2',
|
|
2531
|
+
priority: 179,
|
|
2532
|
+
},
|
|
2533
|
+
[League.THAILAND_LEAGUE_2]: {
|
|
2534
|
+
...SOCCER_DEFAULTS,
|
|
2535
|
+
id: League.THAILAND_LEAGUE_2,
|
|
2536
|
+
label: 'Thai League 2',
|
|
2537
|
+
opticOddsName: 'Thailand - Thai League 2',
|
|
2538
|
+
priority: 185,
|
|
2539
|
+
},
|
|
2540
|
+
[League.CHINA_LEAGUE_TWO]: {
|
|
2541
|
+
...SOCCER_DEFAULTS,
|
|
2542
|
+
id: League.CHINA_LEAGUE_TWO,
|
|
2543
|
+
label: 'China League Two',
|
|
2544
|
+
opticOddsName: 'China - League Two',
|
|
2545
|
+
priority: 194,
|
|
2546
|
+
},
|
|
2547
|
+
[League.CONCACAF_CENTRAL_AMERICA_CUP]: {
|
|
2548
|
+
...SOCCER_DEFAULTS,
|
|
2549
|
+
id: League.CONCACAF_CENTRAL_AMERICA_CUP,
|
|
2550
|
+
label: 'CONCACAF Central America Cup',
|
|
2551
|
+
opticOddsName: 'CONCACAF - Central America Cup',
|
|
2552
|
+
priority: 188,
|
|
2553
|
+
},
|
|
2554
|
+
[League.ARGENTINA_PRIMERA_B]: {
|
|
2555
|
+
...SOCCER_DEFAULTS,
|
|
2556
|
+
id: League.ARGENTINA_PRIMERA_B,
|
|
2557
|
+
label: 'Argentina Primera B',
|
|
2558
|
+
opticOddsName: 'Argentina - Primera B',
|
|
2559
|
+
priority: 190,
|
|
2560
|
+
},
|
|
2561
|
+
[League.CROATIA_FIRST_NL]: {
|
|
2562
|
+
...SOCCER_DEFAULTS,
|
|
2563
|
+
id: League.CROATIA_FIRST_NL,
|
|
2564
|
+
label: 'Croatia First NL',
|
|
2565
|
+
opticOddsName: 'Croatia - First NL',
|
|
2566
|
+
priority: 190,
|
|
2567
|
+
},
|
|
2568
|
+
[League.LITHUANIA_1_LYGA]: {
|
|
2569
|
+
...SOCCER_DEFAULTS,
|
|
2570
|
+
id: League.LITHUANIA_1_LYGA,
|
|
2571
|
+
label: 'Lithuania 1 Lyga',
|
|
2572
|
+
opticOddsName: 'Lithuania - 1 Lyga',
|
|
2573
|
+
priority: 190,
|
|
2574
|
+
},
|
|
2575
|
+
[League.FRANCE_LIGUE_3]: {
|
|
2576
|
+
...SOCCER_DEFAULTS,
|
|
2577
|
+
id: League.FRANCE_LIGUE_3,
|
|
2578
|
+
label: 'France Ligue 3',
|
|
2579
|
+
opticOddsName: 'France - Ligue 3',
|
|
2580
|
+
priority: 193,
|
|
2581
|
+
},
|
|
2582
|
+
};
|