@sigmaott/base-library-next 2.2.6 → 2.2.8
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/.npmrc +3 -0
- package/locales/en.yaml +289 -289
- package/locales/vi.yaml +294 -294
- package/nuxt.config.ts +18 -18
- package/package.json +32 -33
- package/public/routes.json +33 -33
- package/src/api/axios.ts +3 -3
- package/src/api/index.ts +86 -86
- package/src/api-client-library/.openapi-generator/FILES +20 -20
- package/src/api-client-library/.openapi-generator-ignore +23 -23
- package/src/api-client-library/api/health-api.ts +119 -119
- package/src/api-client-library/api/presets-api.ts +599 -599
- package/src/api-client-library/api/profiles-api.ts +676 -676
- package/src/api-client-library/api.ts +20 -20
- package/src/api-client-library/base.ts +72 -72
- package/src/api-client-library/common.ts +150 -150
- package/src/api-client-library/configuration.ts +101 -101
- package/src/api-client-library/git_push.sh +57 -57
- package/src/api-client-library/index.ts +18 -18
- package/src/api-client-library/models/create-preset-dto.ts +223 -223
- package/src/api-client-library/models/create-profile-dto.ts +45 -45
- package/src/api-client-library/models/health-controller-get-health200-response-info-value.ts +32 -32
- package/src/api-client-library/models/health-controller-get-health200-response.ts +51 -51
- package/src/api-client-library/models/health-controller-get-health503-response.ts +51 -51
- package/src/api-client-library/models/index.ts +7 -7
- package/src/api-client-library/models/update-preset-dto.ts +223 -223
- package/src/api-client-library/models/update-profile-dto.ts +45 -45
- package/src/components/MediaSelection.vue +40 -40
- package/src/components/PresetModify.vue +154 -154
- package/src/components/PresetTable.vue +114 -114
- package/src/components/ProfileAllList.vue +137 -137
- package/src/components/ProfileFormModal.vue +79 -79
- package/src/components/ProfileModify.vue +152 -152
- package/src/components/ProfileTable.vue +68 -68
- package/src/components/WatermarkDraggableItem.vue +88 -88
- package/src/components/channel/ConfigWatermarkItem.vue +239 -239
- package/src/components/channel/WatermarkPreview.vue +19 -19
- package/src/components/common/Vue3DraggableResizable/Container.vue +71 -71
- package/src/components/common/Vue3DraggableResizable/index.vue +1327 -1327
- package/src/components/common/Vue3DraggableResizable/utils/dom.js +63 -63
- package/src/components/common/Vue3DraggableResizable/utils/fns.js +37 -37
- package/src/components/common/VueDraggableResizable/dom.js +63 -63
- package/src/components/common/VueDraggableResizable/fns.js +37 -37
- package/src/components/common/VueDraggableResizable/index.vue +958 -958
- package/src/components/preset/ConfigItem.vue +956 -956
- package/src/components/profile/ConfigItem.vue +765 -765
- package/src/components/profile/TableColumns.vue +137 -137
- package/src/components/shared/AudioInfoViewer.vue +101 -101
- package/src/components/shared/MediaInfoViewer.vue +257 -249
- package/src/components/shared/MediaInfoViewerSmall.vue +105 -105
- package/src/components/shared/PopoverProfile.vue +17 -17
- package/src/components/shared/VideoInfoViewer.vue +136 -136
- package/src/components/shared/fileSizeFilter.ts +26 -26
- package/src/composables/preset.ts +141 -141
- package/src/public/build-time.json +1 -1
- package/src/public/favicon.svg +15 -15
- package/src/public/logo.svg +9 -9
- package/src/public/routes.json +86 -86
- package/src/utils/common.ts +175 -175
- package/src/utils/config.ts +19 -19
- package/src/utils/preset.ts +353 -353
- package/src/utils/profile.ts +30 -30
- package/tsconfig.json +3 -3
|
@@ -1,249 +1,257 @@
|
|
|
1
|
-
<script setup lang="ts">
|
|
2
|
-
// import { fileSizeFilter } from './fileSizeFilter'
|
|
3
|
-
|
|
4
|
-
const props = defineProps<{ media: any }>()
|
|
5
|
-
|
|
6
|
-
const hasInterlaced = computed(() => {
|
|
7
|
-
return (
|
|
8
|
-
(props.media && props.media.interlaced)
|
|
9
|
-
|| (props.media
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
)
|
|
13
|
-
})
|
|
14
|
-
|
|
15
|
-
const hasCbr = computed(() => {
|
|
16
|
-
return (
|
|
17
|
-
(props.media && props.media.cbr)
|
|
18
|
-
|| (props.media && !props.media.cbr && typeof props.media.cbr === 'boolean')
|
|
19
|
-
)
|
|
20
|
-
})
|
|
21
|
-
|
|
22
|
-
function fileSizeFilter(size: number) {
|
|
23
|
-
if (Number.isNaN(size))
|
|
24
|
-
size = 0
|
|
25
|
-
|
|
26
|
-
return `${(size / 1024).toFixed(2)} KB`
|
|
27
|
-
}
|
|
28
|
-
</script>
|
|
29
|
-
|
|
30
|
-
<template>
|
|
31
|
-
<div class="item-list-row inline-flex">
|
|
32
|
-
<ul class="flex flex-wrap items-center justify-center">
|
|
33
|
-
<template v-if="
|
|
34
|
-
<li title="
|
|
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
|
-
</li>
|
|
75
|
-
</template>
|
|
76
|
-
<template v-if="media && media?.
|
|
77
|
-
<li title="
|
|
78
|
-
<el-icon>
|
|
79
|
-
<div class="i-ep:
|
|
80
|
-
</el-icon>
|
|
81
|
-
<span>{{ media.
|
|
82
|
-
</li>
|
|
83
|
-
</template>
|
|
84
|
-
|
|
85
|
-
<li title="
|
|
86
|
-
<el-icon>
|
|
87
|
-
<div class="i-ep:
|
|
88
|
-
</el-icon
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
<span>
|
|
99
|
-
</li>
|
|
100
|
-
</template>
|
|
101
|
-
<template v-if="media.type === 'video'">
|
|
102
|
-
<li title="
|
|
103
|
-
<el-icon>
|
|
104
|
-
<div class="i-ep:
|
|
105
|
-
</el-icon>
|
|
106
|
-
<span>{{ media.
|
|
107
|
-
</li>
|
|
108
|
-
</template>
|
|
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
|
-
<span>
|
|
134
|
-
</li>
|
|
135
|
-
</template>
|
|
136
|
-
<template v-if="media && media.
|
|
137
|
-
<li title="
|
|
138
|
-
<el-icon>
|
|
139
|
-
<div class="i-ep:
|
|
140
|
-
</el-icon>
|
|
141
|
-
<span>{{ media.
|
|
142
|
-
</li>
|
|
143
|
-
</template>
|
|
144
|
-
<template v-if="media && media.
|
|
145
|
-
<li title="
|
|
146
|
-
<el-icon>
|
|
147
|
-
<div class="i-ep:
|
|
148
|
-
</el-icon>
|
|
149
|
-
<span>{{ media.
|
|
150
|
-
</li>
|
|
151
|
-
</template>
|
|
152
|
-
<template v-if="media && media.
|
|
153
|
-
<li title="
|
|
154
|
-
<el-icon>
|
|
155
|
-
<div class="i-ep:
|
|
156
|
-
</el-icon>
|
|
157
|
-
<span>{{ media.
|
|
158
|
-
</li>
|
|
159
|
-
</template>
|
|
160
|
-
<template v-if="media && media.
|
|
161
|
-
<li title="
|
|
162
|
-
<el-icon>
|
|
163
|
-
<div class="i-ep:
|
|
164
|
-
</el-icon>
|
|
165
|
-
<span>
|
|
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
|
-
|
|
1
|
+
<script setup lang="ts">
|
|
2
|
+
// import { fileSizeFilter } from './fileSizeFilter'
|
|
3
|
+
|
|
4
|
+
const props = defineProps<{ media: any, isShowPId?: boolean }>()
|
|
5
|
+
|
|
6
|
+
const hasInterlaced = computed(() => {
|
|
7
|
+
return (
|
|
8
|
+
(props.media && props.media.interlaced)
|
|
9
|
+
|| (props.media
|
|
10
|
+
&& !props.media.interlaced
|
|
11
|
+
&& typeof props.media.interlaced === 'boolean')
|
|
12
|
+
)
|
|
13
|
+
})
|
|
14
|
+
|
|
15
|
+
const hasCbr = computed(() => {
|
|
16
|
+
return (
|
|
17
|
+
(props.media && props.media.cbr)
|
|
18
|
+
|| (props.media && !props.media.cbr && typeof props.media.cbr === 'boolean')
|
|
19
|
+
)
|
|
20
|
+
})
|
|
21
|
+
|
|
22
|
+
function fileSizeFilter(size: number) {
|
|
23
|
+
if (Number.isNaN(size))
|
|
24
|
+
size = 0
|
|
25
|
+
|
|
26
|
+
return `${(size / 1024).toFixed(2)} KB`
|
|
27
|
+
}
|
|
28
|
+
</script>
|
|
29
|
+
|
|
30
|
+
<template>
|
|
31
|
+
<div class="item-list-row inline-flex">
|
|
32
|
+
<ul class="flex flex-wrap items-center justify-center">
|
|
33
|
+
<template v-if="isShowPId">
|
|
34
|
+
<li title="PID">
|
|
35
|
+
<div class="i-carbon:id text-primary text-20px" />
|
|
36
|
+
<span>{{ media.id }}</span>
|
|
37
|
+
</li>
|
|
38
|
+
</template>
|
|
39
|
+
<template v-if="media && media.name && media.type !== 'video'">
|
|
40
|
+
<li title="Name">
|
|
41
|
+
<el-icon>
|
|
42
|
+
<div class="i-ep:camera-filled text-primary"
|
|
43
|
+
:class="media.type === 'audio' ? 'i-ep:headset' : 'i-ep:menu'" />
|
|
44
|
+
</el-icon>
|
|
45
|
+
<span v-if="media.codec === 'copy'"> </span>
|
|
46
|
+
<span class="item__name" :title="media.name">{{
|
|
47
|
+
(media && media.name) || '-'
|
|
48
|
+
}}</span>
|
|
49
|
+
</li>
|
|
50
|
+
</template>
|
|
51
|
+
<template v-if="media && media.codec">
|
|
52
|
+
<li title="Codec">
|
|
53
|
+
<el-icon>
|
|
54
|
+
<div class="i-ep:grid text-indigo-500" />
|
|
55
|
+
</el-icon>
|
|
56
|
+
<span>{{ media.codec }}</span>
|
|
57
|
+
</li>
|
|
58
|
+
</template>
|
|
59
|
+
<template v-if="media && (media.height || media.width) && media.type !== 'data'">
|
|
60
|
+
<li title="Resolution">
|
|
61
|
+
<el-icon name="crop">
|
|
62
|
+
<div class="i-ep:crop text-pink-600" />
|
|
63
|
+
</el-icon>
|
|
64
|
+
<span>{{ media.width }}x{{ media.height }}</span>
|
|
65
|
+
</li>
|
|
66
|
+
</template>
|
|
67
|
+
<template v-if="(media?.videoBitrate || media?.audioBitrate) && media.type !== 'data'">
|
|
68
|
+
<li title="Bitrate">
|
|
69
|
+
<el-icon>
|
|
70
|
+
<div class="i-ep:scale-to-original text-teal-600" />
|
|
71
|
+
</el-icon>
|
|
72
|
+
<span>{{ media.audioBitrate ? fileSizeFilter(media.audioBitrate || media.bitrate) :
|
|
73
|
+
fileSizeFilter(media.videoBitrate || media.bitrate) }}/s</span>
|
|
74
|
+
</li>
|
|
75
|
+
</template>
|
|
76
|
+
<template v-if="media?.fps && media?.fps !== 0 && media.type !== 'data'">
|
|
77
|
+
<li title="FPS">
|
|
78
|
+
<el-icon>
|
|
79
|
+
<div class="i-ep:sort text-green-600" />
|
|
80
|
+
</el-icon>
|
|
81
|
+
<span>{{ media.fps }} fps</span>
|
|
82
|
+
</li>
|
|
83
|
+
</template>
|
|
84
|
+
<template v-if="media && media?.sampleRate && media.type !== 'data' && media.type !== 'video'">
|
|
85
|
+
<li title="Sample rate">
|
|
86
|
+
<el-icon>
|
|
87
|
+
<div class="i-ep:message-box text-indigo-500" />
|
|
88
|
+
</el-icon>
|
|
89
|
+
<span>{{ media.sampleRate || '-' }}</span>
|
|
90
|
+
</li>
|
|
91
|
+
</template>
|
|
92
|
+
<!-- <template v-if="media.type === 'video'">
|
|
93
|
+
<li title="CBR">
|
|
94
|
+
<el-icon>
|
|
95
|
+
<div class="i-ep:switch-button" :class="media.cbr ? 'text-success' : 'text-gray-400'" />
|
|
96
|
+
</el-icon>
|
|
97
|
+
|
|
98
|
+
<span> cbr </span>
|
|
99
|
+
</li>
|
|
100
|
+
</template>
|
|
101
|
+
<template v-if="media.type === 'video'">
|
|
102
|
+
<li title="Pixel format">
|
|
103
|
+
<el-icon>
|
|
104
|
+
<div class="i-ep:picture" :class="!media.pixelFormat || 'text-indigo-500'" />
|
|
105
|
+
</el-icon>
|
|
106
|
+
<span>{{ media.pixelFormat || '-' }}</span>
|
|
107
|
+
</li>
|
|
108
|
+
</template>
|
|
109
|
+
<template v-if="media.type === 'video'">
|
|
110
|
+
<li title="Scale type">
|
|
111
|
+
<el-icon>
|
|
112
|
+
<div class="i-ep:scale-to-original" :class="!media.scaleType || 'text-pink-600'" />
|
|
113
|
+
</el-icon>
|
|
114
|
+
<span>{{ media.scaleType || '-' }}</span>
|
|
115
|
+
</li>
|
|
116
|
+
</template>
|
|
117
|
+
|
|
118
|
+
<template v-if="media.type === 'video'">
|
|
119
|
+
<li title="Constant quality">
|
|
120
|
+
<el-icon>
|
|
121
|
+
<div class="i-ep:star-filled" :class="!media.cq || 'text-teal-600'" />
|
|
122
|
+
</el-icon>
|
|
123
|
+
<span>{{ media.cq || '-' }}</span>
|
|
124
|
+
</li>
|
|
125
|
+
</template>
|
|
126
|
+
|
|
127
|
+
<template v-if="media.type === 'video'">
|
|
128
|
+
<li title="Interlaced mode">
|
|
129
|
+
<el-icon>
|
|
130
|
+
<div class="i-ep:switch-button" :class="media.interlaced ? 'text-success' : 'text-gray-400'" />
|
|
131
|
+
</el-icon>
|
|
132
|
+
|
|
133
|
+
<span> interlaced </span>
|
|
134
|
+
</li>
|
|
135
|
+
</template> -->
|
|
136
|
+
<template v-if="media && media.channel && media.type === 'audio'">
|
|
137
|
+
<li title="Channel">
|
|
138
|
+
<el-icon>
|
|
139
|
+
<div class="i-ep:platform text-pink-600" />
|
|
140
|
+
</el-icon>
|
|
141
|
+
<span>{{ media.channel || '-' }}</span>
|
|
142
|
+
</li>
|
|
143
|
+
</template>
|
|
144
|
+
<template v-if="media && media.bframe && media.type !== 'video' && media.type !== 'data'">
|
|
145
|
+
<li title="Bframe">
|
|
146
|
+
<el-icon>
|
|
147
|
+
<div class="i-ep:full-screen text-indigo-500" />
|
|
148
|
+
</el-icon>
|
|
149
|
+
<span>{{ media.bframe || '-' }}</span>
|
|
150
|
+
</li>
|
|
151
|
+
</template>
|
|
152
|
+
<template v-if="media && media.profile && media.type !== 'data'">
|
|
153
|
+
<li title="Profile">
|
|
154
|
+
<el-icon>
|
|
155
|
+
<div class="i-ep:credit-card text-gray-400" />
|
|
156
|
+
</el-icon>
|
|
157
|
+
<span>{{ media.profile || '-' }}</span>
|
|
158
|
+
</li>
|
|
159
|
+
</template>
|
|
160
|
+
<template v-if="media && media.level">
|
|
161
|
+
<li title="Level">
|
|
162
|
+
<el-icon>
|
|
163
|
+
<div class="i-ep:star text-indigo-500" />
|
|
164
|
+
</el-icon>
|
|
165
|
+
<span>{{ media.level || '-' }}</span>
|
|
166
|
+
</li>
|
|
167
|
+
</template>
|
|
168
|
+
<template v-if="media && media.colorRange">
|
|
169
|
+
<li title="Color range">
|
|
170
|
+
<el-icon>
|
|
171
|
+
<div class="i-ep:brush text-green-600" />
|
|
172
|
+
</el-icon>
|
|
173
|
+
<span>Range:
|
|
174
|
+
<span class="font-medium">{{ media.colorRange || '-' }}</span></span>
|
|
175
|
+
</li>
|
|
176
|
+
</template>
|
|
177
|
+
<template v-if="media && media.colorTransfer">
|
|
178
|
+
<li title="Color transfer">
|
|
179
|
+
<el-icon>
|
|
180
|
+
<div class="i-ep:brush text-green-600" />
|
|
181
|
+
</el-icon>
|
|
182
|
+
<span>Transfer:
|
|
183
|
+
<span class="font-medium">{{
|
|
184
|
+
media.colorTransfer || '-'
|
|
185
|
+
}}</span></span>
|
|
186
|
+
</li>
|
|
187
|
+
</template>
|
|
188
|
+
<template v-if="media && media.colorPrimaries">
|
|
189
|
+
<li title="Color primaries">
|
|
190
|
+
<el-icon>
|
|
191
|
+
<div class="i-ep:brush text-green-600" />
|
|
192
|
+
</el-icon>
|
|
193
|
+
<span>Primary:
|
|
194
|
+
<span class="font-medium">{{
|
|
195
|
+
media.colorPrimaries || '-'
|
|
196
|
+
}}</span></span>
|
|
197
|
+
</li>
|
|
198
|
+
</template>
|
|
199
|
+
<template v-if="media && media.colorSpace">
|
|
200
|
+
<li title="Color space">
|
|
201
|
+
<el-icon>
|
|
202
|
+
<div class="i-ep:brush text-green-600" />
|
|
203
|
+
</el-icon>
|
|
204
|
+
<span>Space:
|
|
205
|
+
<span class="font-medium">{{ media.colorSpace || '-' }}</span></span>
|
|
206
|
+
</li>
|
|
207
|
+
</template>
|
|
208
|
+
</ul>
|
|
209
|
+
<div v-if="$slots && $slots.anchor" class="anchor">
|
|
210
|
+
<slot name="anchor" />
|
|
211
|
+
</div>
|
|
212
|
+
</div>
|
|
213
|
+
</template>
|
|
214
|
+
|
|
215
|
+
<style lang="scss" scoped>
|
|
216
|
+
.item-list-row {
|
|
217
|
+
margin: 5px;
|
|
218
|
+
padding: 5px;
|
|
219
|
+
position: relative;
|
|
220
|
+
border: 1px solid rgba(64, 158, 255, 0.4);
|
|
221
|
+
border-radius: 4px;
|
|
222
|
+
|
|
223
|
+
ul {
|
|
224
|
+
li {
|
|
225
|
+
white-space: nowrap;
|
|
226
|
+
display: flex;
|
|
227
|
+
align-items: center;
|
|
228
|
+
|
|
229
|
+
&:not(:last-child):after {
|
|
230
|
+
content: '|';
|
|
231
|
+
display: inline-block;
|
|
232
|
+
color: #9ca3af;
|
|
233
|
+
padding: 0 0.3rem;
|
|
234
|
+
}
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
.item__name {
|
|
238
|
+
max-width: 85px;
|
|
239
|
+
overflow: hidden;
|
|
240
|
+
white-space: nowrap;
|
|
241
|
+
text-overflow: ellipsis;
|
|
242
|
+
}
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
.anchor {
|
|
246
|
+
padding: 5px;
|
|
247
|
+
margin: -5px -5px -5px 5px;
|
|
248
|
+
display: flex;
|
|
249
|
+
flex-direction: column;
|
|
250
|
+
border-left: 1px solid;
|
|
251
|
+
border-color: inherit;
|
|
252
|
+
background-color: rgba(64, 158, 255, 0.2);
|
|
253
|
+
border-top-right-radius: inherit;
|
|
254
|
+
border-bottom-right-radius: inherit;
|
|
255
|
+
}
|
|
256
|
+
}
|
|
257
|
+
</style>
|