-
-
Notifications
You must be signed in to change notification settings - Fork 4.1k
/
Copy pathutil.ts
877 lines (807 loc) · 21.5 KB
/
util.ts
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
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
// eslint-disable-next-line unicorn/prefer-node-protocol
import path from 'path'
import type { CustomState } from '@vue/devtools-api'
import { parseCircularAutoChunks, stringifyCircularAutoChunks } from './transfer'
import {
getCustomInstanceDetails,
getCustomObjectDetails,
getCustomRouterDetails,
getCustomStoreDetails,
getInstanceMap,
isVueInstance,
} from './backend'
import { SharedData } from './shared-data'
import { isChrome, target } from './env'
function cached(fn) {
const cache = Object.create(null)
return function cachedFn(str) {
const hit = cache[str]
return hit || (cache[str] = fn(str))
}
}
const classifyRE = /(?:^|[-_/])(\w)/g
export const classify = cached((str) => {
// fix: str.replace may causes '"replace" is not a function' exception.
// This bug may causes the UI 'Component Filter' to not work properly
// e.g. The type of 'str' is Number.
// So need cover 'str' to String.
return str && (`${str}`).replace(classifyRE, toUpper)
})
const camelizeRE = /-(\w)/g
export const camelize = cached((str) => {
return str && str.replace(camelizeRE, toUpper)
})
const kebabizeRE = /([a-z0-9])([A-Z])/g
export const kebabize = cached((str) => {
return str && str
.replace(kebabizeRE, (_, lowerCaseCharacter, upperCaseLetter) => {
return `${lowerCaseCharacter}-${upperCaseLetter}`
})
.toLowerCase()
})
function toUpper(_, c) {
return c ? c.toUpperCase() : ''
}
export function getComponentDisplayName(originalName, style = 'class') {
switch (style) {
case 'class':
return classify(originalName)
case 'kebab':
return kebabize(originalName)
case 'original':
default:
return originalName
}
}
export function inDoc(node) {
if (!node) {
return false
}
const doc = node.ownerDocument.documentElement
const parent = node.parentNode
return doc === node
|| doc === parent
|| !!(parent && parent.nodeType === 1 && (doc.contains(parent)))
}
/**
* Stringify/parse data using CircularJSON.
*/
export const UNDEFINED = '__vue_devtool_undefined__'
export const INFINITY = '__vue_devtool_infinity__'
export const NEGATIVE_INFINITY = '__vue_devtool_negative_infinity__'
export const NAN = '__vue_devtool_nan__'
export const SPECIAL_TOKENS = {
'true': true,
'false': false,
'undefined': UNDEFINED,
'null': null,
'-Infinity': NEGATIVE_INFINITY,
'Infinity': INFINITY,
'NaN': NAN,
}
export const MAX_STRING_SIZE = 10000
export const MAX_ARRAY_SIZE = 5000
export function specialTokenToString(value) {
if (value === null) {
return 'null'
}
else if (value === UNDEFINED) {
return 'undefined'
}
else if (value === NAN) {
return 'NaN'
}
else if (value === INFINITY) {
return 'Infinity'
}
else if (value === NEGATIVE_INFINITY) {
return '-Infinity'
}
return false
}
/**
* Needed to prevent stack overflow
* while replacing complex objects
* like components because we create
* new objects with the CustomValue API
* (.i.e `{ _custom: { ... } }`)
*/
class EncodeCache {
map: Map<any, any>
constructor() {
this.map = new Map()
}
/**
* Returns a result unique to each input data
* @param {*} data Input data
* @param {*} factory Function used to create the unique result
*/
cache<TResult, TData>(data: TData, factory: (data: TData) => TResult): TResult {
const cached: TResult = this.map.get(data)
if (cached) {
return cached
}
else {
const result = factory(data)
this.map.set(data, result)
return result
}
}
clear() {
this.map.clear()
}
}
const encodeCache = new EncodeCache()
class ReviveCache {
map: Map<number, any>
index: number
size: number
maxSize: number
constructor(maxSize: number) {
this.maxSize = maxSize
this.map = new Map()
this.index = 0
this.size = 0
}
cache(value: any) {
const currentIndex = this.index
this.map.set(currentIndex, value)
this.size++
if (this.size > this.maxSize) {
this.map.delete(currentIndex - this.size)
this.size--
}
this.index++
return currentIndex
}
read(id: number) {
return this.map.get(id)
}
}
const reviveCache = new ReviveCache(1000)
const replacers = {
internal: replacerForInternal,
user: replaceForUser,
}
export function stringify(data, target: keyof typeof replacers = 'internal') {
// Create a fresh cache for each serialization
encodeCache.clear()
return stringifyCircularAutoChunks(data, replacers[target])
}
function replacerForInternal(key) {
// @ts-expect-error meow
const val = this[key]
const type = typeof val
if (Array.isArray(val)) {
const l = val.length
if (l > MAX_ARRAY_SIZE) {
return {
_isArray: true,
length: l,
items: val.slice(0, MAX_ARRAY_SIZE),
}
}
return val
}
else if (typeof val === 'string') {
if (val.length > MAX_STRING_SIZE) {
return `${val.substring(0, MAX_STRING_SIZE)}... (${(val.length)} total length)`
}
else {
return val
}
}
else if (type === 'undefined') {
return UNDEFINED
}
else if (val === Number.POSITIVE_INFINITY) {
return INFINITY
}
else if (val === Number.NEGATIVE_INFINITY) {
return NEGATIVE_INFINITY
}
else if (type === 'function') {
return getCustomFunctionDetails(val)
}
else if (type === 'symbol') {
return `[native Symbol ${Symbol.prototype.toString.call(val)}]`
}
else if (type === 'bigint') {
return getCustomBigIntDetails(val)
}
else if (val !== null && type === 'object') {
const proto = Object.prototype.toString.call(val)
if (proto === '[object Map]') {
return encodeCache.cache(val, () => getCustomMapDetails(val))
}
else if (proto === '[object Set]') {
return encodeCache.cache(val, () => getCustomSetDetails(val))
}
else if (proto === '[object RegExp]') {
// special handling of native type
return `[native RegExp ${RegExp.prototype.toString.call(val)}]`
}
else if (proto === '[object Date]') {
return getCustomDateDetails(val)
}
else if (proto === '[object Error]') {
return `[native Error ${val.message}<>${val.stack}]`
}
else if (val.state && val._vm) {
return encodeCache.cache(val, () => getCustomStoreDetails(val))
}
else if (val.constructor && val.constructor.name === 'VueRouter') {
return encodeCache.cache(val, () => getCustomRouterDetails(val))
}
else if (isVueInstance(val)) {
return encodeCache.cache(val, () => getCustomInstanceDetails(val))
}
else if (typeof val.render === 'function') {
return encodeCache.cache(val, () => getCustomComponentDefinitionDetails(val))
}
else if (val.constructor && val.constructor.name === 'VNode') {
return `[native VNode <${val.tag}>]`
}
else if (typeof HTMLElement !== 'undefined' && val instanceof HTMLElement) {
return encodeCache.cache(val, () => getCustomHTMLElementDetails(val))
}
else if (val.constructor?.name === 'Store' && val._wrappedGetters) {
return `[object Store]`
}
else if (val.currentRoute) {
return `[object Router]`
}
const customDetails = getCustomObjectDetails(val, proto)
if (customDetails != null) {
return customDetails
}
}
else if (Number.isNaN(val)) {
return NAN
}
return sanitize(val)
}
// @TODO revive from backend to have more data to the clipboard
function replaceForUser(key) {
// @ts-expect-error meow
let val = this[key]
const type = typeof val
if (val?._custom && 'value' in val._custom) {
val = val._custom.value
}
if (type !== 'object') {
if (val === UNDEFINED) {
return undefined
}
else if (val === INFINITY) {
return Number.POSITIVE_INFINITY
}
else if (val === NEGATIVE_INFINITY) {
return Number.NEGATIVE_INFINITY
}
else if (val === NAN) {
return Number.NaN
}
return val
}
return sanitize(val)
}
export function getCustomMapDetails(val) {
const list = []
val.forEach(
(value, key) => list.push({
key,
value,
}),
)
return {
_custom: {
type: 'map',
display: 'Map',
value: list,
readOnly: true,
fields: {
abstract: true,
},
},
}
}
export function reviveMap(val) {
const result = new Map()
const list = val._custom.value
for (let i = 0; i < list.length; i++) {
const { key, value } = list[i]
result.set(key, revive(value))
}
return result
}
export function getCustomSetDetails(val) {
const list = Array.from(val)
return {
_custom: {
type: 'set',
display: `Set[${list.length}]`,
value: list,
readOnly: true,
},
}
}
export function reviveSet(val) {
const result = new Set()
const list = val._custom.value
for (let i = 0; i < list.length; i++) {
const value = list[i]
result.add(revive(value))
}
return result
}
export function getCustomBigIntDetails(val) {
const stringifiedBigInt = BigInt.prototype.toString.call(val)
return {
_custom: {
type: 'bigint',
display: `BigInt(${stringifiedBigInt})`,
value: stringifiedBigInt,
},
}
}
export function getCustomDateDetails(val: Date) {
const dateCopy = new Date(val.getTime())
dateCopy.setMinutes(dateCopy.getMinutes() - dateCopy.getTimezoneOffset())
const displayedTime = Date.prototype.toString.call(val)
return {
_custom: {
type: 'date',
display: displayedTime,
value: dateCopy.toISOString().slice(0, -1),
skipSerialize: true,
},
}
}
// Use a custom basename functions instead of the shimed version
// because it doesn't work on Windows
export function basename(filename, ext) {
filename = filename.replace(/\\/g, '/')
if (filename.includes(`/index${ext}`)) {
filename = filename.replace(`/index${ext}`, ext)
}
return path.basename(
filename.replace(/^[a-z]:/i, ''),
ext,
)
}
export function getComponentName(options) {
const name = options.displayName || options.name || options._componentTag
if (name) {
return name
}
const file = options.__file // injected by vue-loader
if (file) {
return classify(basename(file, '.vue'))
}
}
export function getCustomComponentDefinitionDetails(def) {
let display = getComponentName(def)
if (display) {
if (def.name && def.__file) {
display += ` <span>(${def.__file})</span>`
}
}
else {
display = '<i>Unknown Component</i>'
}
return {
_custom: {
type: 'component-definition',
display,
tooltip: 'Component definition',
...def.__file
? {
file: def.__file,
}
: {},
},
}
}
export function getCustomFunctionDetails(func: Function): CustomState {
let string = ''
let matches = null
try {
string = Function.prototype.toString.call(func)
matches = String.prototype.match.call(string, /\([\s\S]*?\)/)
}
catch (e) {
// Func is probably a Proxy, which can break Function.prototype.toString()
}
// Trim any excess whitespace from the argument string
const match = matches && matches[0]
const args = typeof match === 'string'
? match
: '(?)'
const name = typeof func.name === 'string' ? func.name : ''
return {
_custom: {
type: 'function',
display: `<span style="opacity:.5;">function</span> ${escape(name)}${args}`,
tooltip: string.trim() ? `<pre>${string}</pre>` : null,
_reviveId: reviveCache.cache(func),
},
}
}
export function getCustomHTMLElementDetails(value: HTMLElement): CustomState {
try {
return {
_custom: {
type: 'HTMLElement',
display: `<span class="opacity-30"><</span><span class="text-blue-500">${value.tagName.toLowerCase()}</span><span class="opacity-30">></span>`,
value: namedNodeMapToObject(value.attributes),
actions: [
{
icon: 'input',
tooltip: 'Log element to console',
action: () => {
// eslint-disable-next-line no-console
console.log(value)
},
},
],
},
}
}
catch (e) {
return {
_custom: {
type: 'HTMLElement',
display: `<span class="text-blue-500">${String(value)}</span>`,
},
}
}
}
function namedNodeMapToObject(map: NamedNodeMap) {
const result: any = {}
const l = map.length
for (let i = 0; i < l; i++) {
const node = map.item(i)
result[node.name] = node.value
}
return result
}
export function getCustomRefDetails(instance, key, ref) {
let value
if (Array.isArray(ref)) {
value = ref.map(r => getCustomRefDetails(instance, key, r)).map(data => data.value)
}
else {
let name
if (ref._isVue) {
name = getComponentName(ref.$options)
}
else {
name = ref.tagName.toLowerCase()
}
value = {
_custom: {
display: `<${name}${
ref.id ? ` <span class="attr-title">id</span>="${ref.id}"` : ''
}${ref.className ? ` <span class="attr-title">class</span>="${ref.className}"` : ''}>`,
uid: instance.__VUE_DEVTOOLS_UID__,
type: 'reference',
},
}
}
return {
type: '$refs',
key,
value,
editable: false,
}
}
export function parse(data: any, revive = false) {
return revive
? parseCircularAutoChunks(data, reviver)
: parseCircularAutoChunks(data)
}
const specialTypeRE = /^\[native (\w+) (.*?)(?:<>[.\s]*)?\]$/
const symbolRE = /^\[native Symbol Symbol\((.*)\)\]$/
function reviver(key, val) {
return revive(val)
}
export function revive(val) {
if (val === UNDEFINED) {
return undefined
}
else if (val === INFINITY) {
return Number.POSITIVE_INFINITY
}
else if (val === NEGATIVE_INFINITY) {
return Number.NEGATIVE_INFINITY
}
else if (val === NAN) {
return Number.NaN
}
else if (val && val._custom) {
const { _custom: custom }: CustomState = val
if (custom.type === 'component') {
return getInstanceMap().get(custom.id)
}
else if (custom.type === 'map') {
return reviveMap(val)
}
else if (custom.type === 'set') {
return reviveSet(val)
}
else if (custom.type === 'bigint') {
return BigInt(custom.value)
}
else if (custom.type === 'date') {
return new Date(custom.value)
}
else if (custom._reviveId) {
return reviveCache.read(custom._reviveId)
}
else {
return revive(custom.value)
}
}
else if (symbolRE.test(val)) {
const [, string] = symbolRE.exec(val)
return Symbol.for(string)
}
else if (specialTypeRE.test(val)) {
const [, type, string,, details] = specialTypeRE.exec(val)
const result = new target[type](string)
if (type === 'Error' && details) {
result.stack = details
}
return result
}
else {
return val
}
}
/**
* Sanitize data to be posted to the other side.
* Since the message posted is sent with structured clone,
* we need to filter out any types that might cause an error.
*
* @param {*} data
* @return {*}
*/
function sanitize(data) {
if (
!isPrimitive(data)
&& !Array.isArray(data)
&& !isPlainObject(data)
) {
// handle types that will probably cause issues in
// the structured clone
return Object.prototype.toString.call(data)
}
else {
return data
}
}
export function isPlainObject(obj) {
return Object.prototype.toString.call(obj) === '[object Object]'
}
function isPrimitive(data) {
if (data == null) {
return true
}
const type = typeof data
return (
type === 'string'
|| type === 'number'
|| type === 'boolean'
)
}
/**
* Searches a key or value in the object, with a maximum deepness
* @param {*} obj Search target
* @param {string} searchTerm Search string
* @returns {boolean} Search match
*/
export function searchDeepInObject(obj, searchTerm) {
const seen = new Map()
const result = internalSearchObject(obj, searchTerm.toLowerCase(), seen, 0)
seen.clear()
return result
}
const SEARCH_MAX_DEPTH = 10
/**
* Executes a search on each field of the provided object
* @param {*} obj Search target
* @param {string} searchTerm Search string
* @param {Map<any,boolean>} seen Map containing the search result to prevent stack overflow by walking on the same object multiple times
* @param {number} depth Deep search depth level, which is capped to prevent performance issues
* @returns {boolean} Search match
*/
function internalSearchObject(obj, searchTerm, seen, depth) {
if (depth > SEARCH_MAX_DEPTH) {
return false
}
let match = false
const keys = Object.keys(obj)
let key, value
for (let i = 0; i < keys.length; i++) {
key = keys[i]
value = obj[key]
match = internalSearchCheck(searchTerm, key, value, seen, depth + 1)
if (match) {
break
}
}
return match
}
/**
* Executes a search on each value of the provided array
* @param {*} array Search target
* @param {string} searchTerm Search string
* @param {Map<any,boolean>} seen Map containing the search result to prevent stack overflow by walking on the same object multiple times
* @param {number} depth Deep search depth level, which is capped to prevent performance issues
* @returns {boolean} Search match
*/
function internalSearchArray(array, searchTerm, seen, depth) {
if (depth > SEARCH_MAX_DEPTH) {
return false
}
let match = false
let value
for (let i = 0; i < array.length; i++) {
value = array[i]
match = internalSearchCheck(searchTerm, null, value, seen, depth + 1)
if (match) {
break
}
}
return match
}
/**
* Checks if the provided field matches the search terms
* @param {string} searchTerm Search string
* @param {string} key Field key (null if from array)
* @param {*} value Field value
* @param {Map<any,boolean>} seen Map containing the search result to prevent stack overflow by walking on the same object multiple times
* @param {number} depth Deep search depth level, which is capped to prevent performance issues
* @returns {boolean} Search match
*/
function internalSearchCheck(searchTerm, key, value, seen, depth) {
let match = false
let result
if (key === '_custom') {
key = value.display
value = value.value
}
(result = specialTokenToString(value)) && (value = result)
if (key && compare(key, searchTerm)) {
match = true
seen.set(value, true)
}
else if (seen.has(value)) {
match = seen.get(value)
}
else if (Array.isArray(value)) {
seen.set(value, null)
match = internalSearchArray(value, searchTerm, seen, depth)
seen.set(value, match)
}
else if (isPlainObject(value)) {
seen.set(value, null)
match = internalSearchObject(value, searchTerm, seen, depth)
seen.set(value, match)
}
else if (compare(value, searchTerm)) {
match = true
seen.set(value, true)
}
return match
}
/**
* Compares two values
* @param {*} value Mixed type value that will be cast to string
* @param {string} searchTerm Search string
* @returns {boolean} Search match
*/
function compare(value, searchTerm) {
return (`${value}`).toLowerCase().includes(searchTerm)
}
export function sortByKey(state) {
return state && state.slice().sort((a, b) => {
if (a.key < b.key) {
return -1
}
if (a.key > b.key) {
return 1
}
return 0
})
}
export function simpleGet(object, path) {
const sections = Array.isArray(path) ? path : path.split('.')
for (let i = 0; i < sections.length; i++) {
object = object[sections[i]]
if (!object) {
return undefined
}
}
return object
}
export function focusInput(el) {
el.focus()
el.setSelectionRange(0, el.value.length)
}
export function openInEditor(file) {
// Console display
const fileName = file.replace(/\\/g, '\\\\')
const src = `fetch('${SharedData.openInEditorHost}__open-in-editor?file=${encodeURI(file)}').then(response => {
if (response.ok) {
console.log('File ${fileName} opened in editor')
} else {
const msg = 'Opening component ${fileName} failed'
const target = typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : {}
if (target.__VUE_DEVTOOLS_TOAST__) {
target.__VUE_DEVTOOLS_TOAST__(msg, 'error')
} else {
console.log('%c' + msg, 'color:red')
}
console.log('Check the setup of your project, see https://devtools-v6.vuejs.org/guide/open-in-editor.html')
}
})`
if (isChrome) {
target.chrome.devtools.inspectedWindow.eval(src)
}
else {
// eslint-disable-next-line no-eval
eval(src)
}
}
const ESC = {
'<': '<',
'>': '>',
'"': '"',
'&': '&',
}
export function escape(s) {
return s.replace(/[<>"&]/g, escapeChar)
}
function escapeChar(a) {
return ESC[a] || a
}
export function copyToClipboard(state) {
let text: string
if (typeof state !== 'object') {
text = String(state)
}
else {
text = stringify(state, 'user')
}
// @TODO navigator.clipboard is buggy in extensions
if (typeof document === 'undefined') {
return
}
const dummyTextArea = document.createElement('textarea')
dummyTextArea.textContent = text
document.body.appendChild(dummyTextArea)
dummyTextArea.select()
document.execCommand('copy')
document.body.removeChild(dummyTextArea)
}
export function isEmptyObject(obj) {
return obj === UNDEFINED || !obj || Object.keys(obj).length === 0
}
/**
* chunk an array into smaller chunk of given size.
* @see https://stackoverflow.com/a/37826698
* @param array
* @param size
*/
export function chunk(array: unknown[], size: number): unknown[][] {
return array.reduce((resultArray, item, index) => {
const chunkIndex = Math.floor(index / size)
if (!resultArray[chunkIndex]) {
resultArray[chunkIndex] = [] // start a new chunk
}
resultArray[chunkIndex].push(item)
return resultArray
}, []) as unknown[][]
}