data.js
19.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
import {ref} from "vue";
export const nationList = [
{
"id": "01",
"name": "汉族"
},
{
"id": "02",
"name": "蒙古族"
},
{
"id": "03",
"name": "回族"
},
{
"id": "04",
"name": "藏族"
},
{
"id": "05",
"name": "维吾尔族"
},
{
"id": "06",
"name": "苗族"
},
{
"id": "07",
"name": "彝族"
},
{
"id": "08",
"name": "壮族"
},
{
"id": "09",
"name": "布依族"
},
{
"id": "10",
"name": "朝鲜族"
},
{
"id": "11",
"name": "满族"
},
{
"id": "12",
"name": "侗族"
},
{
"id": "13",
"name": "瑶族"
},
{
"id": "14",
"name": "白族"
},
{
"id": "15",
"name": "土家族"
},
{
"id": "16",
"name": "哈尼族"
},
{
"id": "17",
"name": "哈萨克族"
},
{
"id": "18",
"name": "傣族"
},
{
"id": "19",
"name": "黎族"
},
{
"id": "20",
"name": "傈僳族"
},
{
"id": "21",
"name": "佤族"
},
{
"id": "22",
"name": "畲族"
},
{
"id": "23",
"name": "高山族"
},
{
"id": "24",
"name": "拉祜族"
},
{
"id": "25",
"name": "水族"
},
{
"id": "26",
"name": "东乡族"
},
{
"id": "27",
"name": "纳西族"
},
{
"id": "28",
"name": "景颇族"
},
{
"id": "29",
"name": "柯尔克孜族"
},
{
"id": "30",
"name": "土族"
},
{
"id": "31",
"name": "达斡尔族"
},
{
"id": "32",
"name": "仫佬族"
},
{
"id": "33",
"name": "羌族"
},
{
"id": "34",
"name": "布朗族"
},
{
"id": "35",
"name": "撒拉族"
},
{
"id": "36",
"name": "毛难族"
},
{
"id": "37",
"name": "仡佬族"
},
{
"id": "38",
"name": "锡伯族"
},
{
"id": "39",
"name": "阿昌族"
},
{
"id": "40",
"name": "普米族"
},
{
"id": "41",
"name": "塔吉克族"
},
{
"id": "42",
"name": "怒族"
},
{
"id": "43",
"name": "乌孜别克族"
},
{
"id": "44",
"name": "俄罗斯族"
},
{
"id": "45",
"name": "鄂温克族"
},
{
"id": "46",
"name": "崩龙族"
},
{
"id": "47",
"name": "保安族"
},
{
"id": "48",
"name": "裕固族"
},
{
"id": "49",
"name": "京族"
},
{
"id": "50",
"name": "塔塔尔族"
},
{
"id": "51",
"name": "独龙族"
},
{
"id": "52",
"name": "鄂伦春族"
},
{
"id": "53",
"name": "赫哲族"
},
{
"id": "54",
"name": "门巴族"
},
{
"id": "55",
"name": "珞巴族"
},
{
"id": "56",
"name": "基诺族"
},
{
"id": "57",
"name": "其他"
},
{
"id": "58",
"name": "外国血统中国人士"
}
]
export const certificates = [
{
value: '0',
label: '居民身份证'
},
{
value: '1',
label: '护照'
},
{
value: '2',
label: '其他'
}
]
export const tagList = [{text: '运动员', value: '0'}, {text: '教练', value: '1'}, {
text: '领队',
value: '2'
}, {text: '其他', value: '3'}];
export const sexs = [{text: '女', value: '0'}, {text: '男', value: '1'}];
export const idcTypeList = [
{value: '0', text: "身份证"},
{value: '1', text: "护照"},
{value: '2', text: "其他"},
]
export const typeList = [{text: '俱乐部', value: '0'}, {text: '事业单位', value: '1'}, {
text: '道馆',
value: '2'
}, {text: '企业', value: '3'}, {text: '机关', value: '4'}, {text: '其他', value: '5'}];
export const comList = [{text: '国资企业(含央企和本地)', value: '0'}, {
text: '外商投资企业',
value: '1'
}, {text: '港澳台企业', value: '2'}, {text: '民营企业', value: '3'}, {text: '商会组织', value: '4'}, {
text: '其他',
value: '5'
}];
export const rankList = [
{
index: '1',
code: 'lt',
name: 'Evaldas Sodeika - Ieva Zukauskaite',
gj: '立陶宛',
en_gj: 'LTU',
jin: '1',
yin: '0',
tong: '0'
},
{
index: '2',
code: 'md',
name: 'Alexey Glukhov - Anastasia Glazunova',
gj: '摩尔多瓦共和国',
en_gj: 'MDA',
jin: '1',
yin: '0',
tong: '0'
},
{
index: '3',
code: 'de',
name: 'Marius-Andrei Balan - Khrystyna Moshenska',
gj: '德国',
en_gj: 'GER',
jin: '1',
yin: '0',
tong: '0'
},
{
index: '4',
code: 'de',
name: 'Tomas Fainsil - Violetta Fainsil',
gj: '德国',
en_gj: 'GER',
jin: '0',
yin: '2',
tong: '0'
},
{
index: '5',
code: 'fr',
name: 'Charles-Guillaume Schmitt - Elena Salikhova',
gj: '法国',
en_gj: 'FRA',
jin: '0',
yin: '1',
tong: '0'
},
{
index: '6',
code: 'ro',
name: 'Cojoc Rares - Matei Andreea',
gj: '罗马尼亚',
en_gj: 'ROU',
jin: '0',
yin: '0',
tong: '2'
},
{index: '7', code: 'cn', name: 'Yan Bangbang - Du Yujun', gj: '中国', en_gj: 'China', jin: '0', yin: '0', tong: '1'}
]
export const cjList = [
{
title: '2023 年 WDSF 世界标准舞锦标赛',
list: [
{
title: 'FINAL',
rows: [
{RANK: 1, COUPLE: 'Evaldas Sodeika - Ieva Zukauskaite', COUNTRY: 'LTU', START: '59'},
{RANK: 2, COUPLE: 'Tomas Fainsil - Violetta Fainsil', COUNTRY: 'GER', START: '25'},
{RANK: 3, COUPLE: 'Cojoc Rares - Matei Andreea', COUNTRY: 'ROU', START: '19'},
{RANK: 4, COUPLE: 'Dariusz Mycka - Madara Freiberga', COUNTRY: 'POL', START: '53'},
{RANK: 5, COUPLE: 'Vadim Shurin - Anastasia Meshkova', COUNTRY: 'LAT', START: '62'},
{RANK: 6, COUPLE: 'Yuan Shaoyang - Qi Chongxuan', COUNTRY: 'CHN', START: '71'}
]
},
{
title: '4 . ROUND',
rows: [
{RANK: 7, COUPLE: 'Dmitri Kolobov - Signe Busk', COUNTRY: 'DEN', START: '40'},
{RANK: 8, COUPLE: 'Marco Bodini - Kristina Charitonovaite', COUNTRY: 'LTU', START: '14'},
{RANK: 9, COUPLE: 'Marius Ilciukas - Grigore Daria', COUNTRY: 'ROU', START: '34'},
{RANK: 10, COUPLE: 'Evgeny Nikitin - Valeriya Menyaylo', COUNTRY: 'AZE', START: '54'},
{RANK: 11, COUPLE: 'Mateusz Brzozowski - Justyna Mozdzonek', COUNTRY: 'POL', START: '16'},
{RANK: 12, COUPLE: 'Dusan Grula - Giada Cragnolini', COUNTRY: 'SVK', START: '29'},
]
},
{
title: '3 . ROUND',
rows: [
{RANK: 13, COUPLE: 'Vladislav Kozhevnikov - Eleonora Metelitsa', COUNTRY: 'ISR', START: '42'},
{RANK: 14, COUPLE: 'Earle Williamson - Veronika Myshko', COUNTRY: 'UKR', START: '69'},
{RANK: 15, COUPLE: 'Andrea Gioncada - Vera Demidova', COUNTRY: 'ITA', START: '27'},
{RANK: 16, COUPLE: 'Kostadin Vasilev - Roberta Scuderi', COUNTRY: 'BUL', START: '67'},
{RANK: 17, COUPLE: 'Errol Williamson - Ami Williamson', COUNTRY: 'DEN', START: '70'},
{RANK: 18, COUPLE: 'Liu YI - Zou Xiaotong', COUNTRY: 'CHN', START: '49'},
{RANK: 19, COUPLE: 'Romans Dobrecovs - Violetta Levchenko', COUNTRY: 'LAT', START: '21'},
{RANK: 20, COUPLE: 'Davide Corrodi - Maja Kucharczyk', COUNTRY: 'SUI', START: '20'},
{RANK: 21, COUPLE: 'Iliya Dobrev - Daria Posypai', COUNTRY: 'BUL', START: '22'},
{RANK: 22, COUPLE: 'Szalai Denes Ferenc - Balla Petra', COUNTRY: 'HUN', START: '63'},
{RANK: 23, COUPLE: 'Jakub Bruck - Marina Makarenko', COUNTRY: 'CZE', START: '15'},
{RANK: 24, COUPLE: 'Dominik Stoeckl - Anna Gommer', COUNTRY: 'GER', START: '60'},
{RANK: 25, COUPLE: 'Martin Mestek - Anna Stareckova', COUNTRY: 'CZE', START: '52'}
]
},
{
title: '2 . ROUND',
rows:[
{RANK: '26-29', COUPLE: 'Luciano Donato - Adele Diodati', COUNTRY: 'ITA', START: '23'},
{RANK: '26-29', COUPLE: 'Jean Francois Gueudry - Ilmira Yarullina', COUNTRY: 'FRA', START: '31'},
{RANK: '26-29', COUPLE: 'Ilia Rotar - Silvia Susanne Barjabin', COUNTRY: 'EST', START: '57'},
{RANK: '26-29', COUPLE: 'Edgar Sztuce Vel Stuzmania - Gemma Dominguez Garcia', COUNTRY: 'ESP', START: '61'},
{RANK: 30, COUPLE: 'Tim Grabenwoeger - Natalie Cremar', COUNTRY: 'AUT', START: '28'},
{RANK: 31, COUPLE: 'Eric Izakson - Violetta Karnaushenko', COUNTRY: 'ISR', START: '35'},
{RANK: 32, COUPLE: 'Gabriel Korpas - Vanessa Murajdova', COUNTRY: 'SVK', START: '41'},
{RANK: 33, COUPLE: 'Ivan Valeri Zahariev Aguilar - Magdalena Vidas', COUNTRY: 'CRO', START: '10'},
{RANK: '34-36', COUPLE: 'Nicolo Barbizi - Sara Ros Jakobsdottir', COUNTRY: 'ISL', START: '12'},
{RANK: '34-36', COUPLE: 'Jung Hoon - Lee Yeeun', COUNTRY: 'KOR', START: '36'},
{RANK: '34-36', COUPLE: 'Liu Kai Sum Sam - Liu Wan Hin', COUNTRY: 'HKG', START: '48'},
{RANK: '37', COUPLE: 'Andreas Pohl - Magdalena Weinstabl', COUNTRY: 'AUT', START: '56'},
{RANK: '38', COUPLE: 'Mikhail Khasanov - Yekaterina Lagutina', COUNTRY: 'KAZ', START: '37'},
{RANK: '39-40', COUPLE: 'Minato Kojima - Megumi Morita', COUNTRY: 'JPN', START: '39'},
{RANK: '39-40', COUPLE: 'Hiroaki Onishi - Sakina Onishi', COUNTRY: 'JPN', START: '55'},
{RANK: '41', COUPLE: 'Florian Baudoux - Natalia Sadowska', COUNTRY: 'FRA', START: '13'},
{RANK: '42-44', COUPLE: 'Joost Findhammer - Sina Sawall', COUNTRY: 'NED', START: '26'},
{RANK: '42-44', COUPLE: 'Markus Kinnunen - Ellen Puotiniemi', COUNTRY: 'FIN', START: '38'},
{RANK: '42-44', COUPLE: 'Genis Betrian Latorre - Lua Ferrando Ortells', COUNTRY: 'ESP', START: '43'},
{RANK: '45-48', COUPLE: 'Hoang Tien Manh - Van Quynh Phuong', COUNTRY: 'VIE', START: '33'},
{RANK: '45-48', COUPLE: 'Lee Jun Hyeok - Kim Ga Eun', COUNTRY: 'KOR', START: '44'},
{RANK: '45-48', COUPLE: 'Lin Li - Hsieh Wen Hsin', COUNTRY: 'TPE', START: '47'},
{RANK: '45-48', COUPLE: 'Sean Aranar - Ana Nualla', COUNTRY: 'PHI', START: '58'}
]
}, {
title: '1 . ROUND',
rows:[
{RANK: '49', COUPLE: 'Vereb Daniel - Unger Fanni', COUNTRY: 'HUN', START: '68'},
{RANK: '50', COUPLE: 'Wesley van Riel - van Schijndel Sigrid', COUNTRY: 'NED', START: '66'},
{RANK: '51', COUPLE: 'Lin Daniel - Chen Angelina', COUNTRY: 'TPE', START: '46'},
{RANK: '52', COUPLE: 'Aleksi Ahola - Fay Antikainen', COUNTRY: 'FIN', START: '11'},
{RANK: '53', COUPLE: 'Jirapong Thongsanta - Wansika Torwichien', COUNTRY: 'THA', START: '64'},
{RANK: '54', COUPLE: 'Hoang Gia Bao - Hoang Gia Linh', COUNTRY: 'VIE', START: '32'},
{RANK: '55', COUPLE: 'Adam Mamrak - Emilia Usselmann', COUNTRY: 'SWE', START: '51'},
{RANK: '56', COUPLE: 'Issarapong Duangkaew - Thanawan Yananun', COUNTRY: 'THA', START: '24'},
{RANK: '57', COUPLE: 'Che Tin Long - Vong Weng Lam', COUNTRY: 'MAC', START: '17'},
{RANK: '58', COUPLE: 'Daniel Sverrir Gudbjornsson - Svandis Osk Einarsdottir', COUNTRY: 'ISL', START: '30'},
{RANK: '59', COUPLE: 'Lee Kwan Yau - Chow Cheuk Ying', COUNTRY: 'HKG', START: '45'},
{RANK: '60-62', COUPLE: 'Chuluunbaatar Ankhbayar - Nomun Batsaikhan', COUNTRY: 'MGL', START: '18'},
{RANK: '60-62', COUPLE: 'Hoh Leonard - Mu Linda', COUNTRY: 'MAS', START: '50'},
{RANK: '60-62', COUPLE: 'Tuyo Wen Hao - Tuyo Xing Yao', COUNTRY: 'MAS', START: '65'},
]
}]
},
{
title: '2023 年 WDSF 世界体育舞蹈大奖赛(拉丁舞、标准舞)',
list: [{
title: 'FINAL',
rows: [
{
RANK: 1,
COUPLE: 'Alexey Glukhov - Anastasia Glazunova',
COUNTRY: 'MDA',
START: '131',
BASE: '400',
POINTS: '1040'
},
{
RANK: 2,
COUPLE: 'Tomas Fainsil - Violetta Fainsil',
COUNTRY: 'GER',
START: '123',
BASE: '380',
POINTS: '988'
},
{
RANK: 3,
COUPLE: 'Cojoc Rares - Matei Andreea',
COUNTRY: 'ROU',
START: '113',
BASE: '360',
POINTS: '936'
},
{
RANK: 4,
COUPLE: 'Dariusz Mycka - Madara Freiberga',
COUNTRY: 'POL',
START: '173',
BASE: '340',
POINTS: '884'
},
{
RANK: 5,
COUPLE: 'Vadim Shurin - Anastasia Meshkova',
COUNTRY: 'LAT',
START: '195',
BASE: '320',
POINTS: '832'
},
{
RANK: 6,
COUPLE: 'Dmitri Kolobov - Signe Busk',
COUNTRY: 'DEN',
START: '151',
BASE: '300',
POINTS: '780'
},
]
}, {
title: '5 . ROUND',
rows: [
{ RANK: 7, COUPLE: 'Marco Bodini - Kristina Charitonovaite', COUNTRY: 'LTU', START: '106', BASE: '280', POINTS: '728'},
{ RANK: 8, COUPLE: 'Georgy Kalashnikov - Domile Semeskeviciute', COUNTRY: 'LTU', START: '146', BASE: '260', POINTS: '676'},
{ RANK: 9, COUPLE: 'Qiu Yuming - HU Jingyi', COUNTRY: 'CHN', START: '182', BASE: '240', POINTS: '624'},
{ RANK: 10, COUPLE: 'Marius Ilciukas - Grigore Daria', COUNTRY: 'ROU', START: '142', BASE: '220', POINTS: '572'},
{ RANK: 11, COUPLE: 'Evgeny Nikitin - Valeriya Menyaylo', COUNTRY: 'AZE', START: '176', BASE: '200', POINTS: '520'},
{ RANK: 12, COUPLE: 'Bartlomiej Szkutnik - Agata Brychcy', COUNTRY: 'POL', START: '197', BASE: '180', POINTS: '468'}
]
}, {
title: '4 . ROUND',
rows: [
{ RANK:13,COUPLE:'Mateusz Brzozowski - Justyna Mozdzonek',COUNTRY:'POL',START:'109',BASE:'140',POINTS:'364'},
{ RANK:14,COUPLE:'Dusan Grula - Giada Cragnolini',COUNTRY:'SVK',START:'133',BASE:'135',POINTS:'351'},
{ RANK:15,COUPLE:'Andrea Gioncada - Vera Demidova',COUNTRY:'ITA',START:'130',BASE:'130',POINTS:'338'},
{ RANK:'16-17',COUPLE:'Alexey Bredikhin - Daria Bredikhina',COUNTRY:'ALB',START:'107',BASE:'125',POINTS:'325'},
{ RANK:'16-17',COUPLE:'Earle Williamson - Veronika Myshko',COUNTRY:'UKB',START:'206',BASE:'125',POINTS:'325'},
{ RANK:18,COUPLE:'Vladislav Kozhevnikov - Eleonora Metelitsa',COUNTRY:'ISR',START:'153',BASE:'115',POINTS:'299'},
{ RANK:19,COUPLE:'Errol Williamson - Ami Williamson',COUNTRY:'DEN',START:'207',BASE:'110',POINTS:'286'},
{ RANK:20,COUPLE:'Iliya Dobrev - Daria Posypai',COUNTRY:'BUL',START:'118',BASE:'105',POINTS:'273'},
{ RANK:21,COUPLE:'WU Hongbo - LU Wanying',COUNTRY:'CHN',START:'208',BASE:'100',POINTS:'260'},
{ RANK:22,COUPLE:'Kostadin Vasilev - Roberta Scuderi',COUNTRY:'BUL',START:'200',BASE:'95',POINTS:'247'},
{ RANK:23,COUPLE:'Ilia Rotar - Silvia Susanne Barjabin',COUNTRY:'EST',START:'185',BASE:'90',POINTS:'234'},
{ RANK:24,COUPLE:'Pawel Subczynski - Aleksandra Kucharska',COUNTRY:'POL',START:'193',BASE:'85',POINTS:'221'},
{ RANK:25,COUPLE:'Dominik Stoeckl - Anna Gommer',COUNTRY:'GER',START:'191',BASE:'70',POINTS:'182'},
{ RANK:26,COUPLE:'Martin Mestek - Anna Stareckova',COUNTRY:'CZE',START:'172',BASE:'70',POINTS:'182'},
{ RANK:27,COUPLE:'Eric Izakson - Violetta Karnaushenko',COUNTRY:'ISR',START:'144',BASE:'70',POINTS:'182'}
]
// }, {
// title: '3 . ROUND',
// rows: []
// }, {
// title: '2 . ROUND',
// rows: []
// }, {
// title: '1 . ROUND',
// rows: []
}]
},
{
title: '2023 WDSF GrandSlam(Standard&Latin)',
list: [{
title: 'FINAL',
rows: [
{RANK: 1, COUPLE: 'Marius-Andrei Balan - Khrystyna Moshenska', COUNTRY: 'GER', START: '303', BASE: '400', POINTS: '1080'},
{RANK: 2,COUPLE:'Charles-Guillaume Schmitt - Elena Salikhova',COUNTRY:'FRA',START:'375',BASE:'380',POINTS:'1026'},
{RANK: 3,COUPLE:'Yan Bangbang - Du Yujun',COUNTRY:'CHN',START:'406',BASE:'360',POINTS:'972'},
{RANK: 4,COUPLE:'Malthe Brinch Rohde - Sandra Sorensen',COUNTRY:'DEN',START:'372',BASE:'340',POINTS:'918'},
{RANK: 5,COUPLE:'Winson Tam - Anastasia Novikova',COUNTRY:'HKG',START:'383',BASE:'320',POINTS:'864'},
{RANK: 6,COUPLE:'Konstantin Gorodilov - Polina Figurenko',COUNTRY:'EST',START:'323',BASE:'300',POINTS:'810'}
]
}, {
title: '5 . ROUND',
rows: [
{RANK: 7,COUPLE:'Miculescu Ionut Alexandru - Pacurar Andra',COUNTRY:'ROU',START:'364',BASE:'280',POINTS:'756'},
{RANK: 8,COUPLE:'Artur Balandin - Anna Salita',COUNTRY:'GER',START:'304',BASE:'260',POINTS:'702'},
{RANK: 9,COUPLE:'Jakub Lipowski - Tereza Kucerova',COUNTRY:'CZE',START:'354',BASE:'240',POINTS:'648'},
{RANK: 10,COUPLE:'Eric Testa - Federica Brezzo',COUNTRY:'ITA',START:'384',BASE:'220',POINTS:'594'},
{RANK: 11,COUPLE:'Vicenc Torremade - Megija Dana Morite',COUNTRY:'LAT',START:'374',BASE:'200',POINTS:'540'},
{RANK: 12,COUPLE:'Egor Kondratenko - Mie Lincke Funch',COUNTRY:'DEN',START:'344',BASE:'180',POINTS:'486'}
]
// }, {
// title: '4 . ROUND',
// rows: []
// }, {
// title: '3 . ROUND',
// rows: []
// }, {
// title: '2 . ROUND',
// rows: []
// }, {
// title: '1 . ROUND',
// rows: []
}]
}
]