@topvisor/ui 1.0.19 → 1.0.20-selector2-3

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.
Files changed (921) hide show
  1. package/.idea/.gitignore +11 -0
  2. package/.idea/codeStyles/Project.xml +205 -0
  3. package/.idea/codeStyles/codeStyleConfig.xml +5 -0
  4. package/.idea/externalDependencies.xml +6 -0
  5. package/.idea/inspectionProfiles/Disabled.xml +824 -0
  6. package/.idea/inspectionProfiles/Project_Default.xml +33 -0
  7. package/.idea/php.xml +19 -0
  8. package/.idea/vcs.xml +6 -0
  9. package/.storybook/TopTheme.ts +115 -0
  10. package/.storybook/TopThemeManager.ts +53 -0
  11. package/.storybook/main.ts +51 -0
  12. package/.storybook/manager.ts +25 -0
  13. package/.storybook/preview-head.html +21 -0
  14. package/.storybook/preview.ts +47 -0
  15. package/.storybook/vue/coreDecorator.ts +76 -0
  16. package/.storybook/vue/vModelDecorator.ts +46 -0
  17. package/.versionrc.json +16 -0
  18. package/.vscode/extensions.json +11 -0
  19. package/.vscode/keybindings.example.json +121 -0
  20. package/.vscode/settings.json +45 -0
  21. package/CHANGELOG.md +175 -0
  22. package/NPM.md +25 -0
  23. package/PUBLISH.md +63 -0
  24. package/README.md +41 -82
  25. package/STORYBOOK.md +43 -0
  26. package/USE_IN_PROJECT.md +32 -0
  27. package/build/afterBuild.sh +11 -0
  28. package/build/cssModules.ts +39 -0
  29. package/build/genDocs.sh +19 -0
  30. package/build/plugin/amdFix.ts +83 -0
  31. package/build/plugin/autoloadCSS.ts +155 -0
  32. package/build/rollup.config.ts +37 -0
  33. package/package.json +87 -34
  34. package/public/README.md +82 -0
  35. package/public/icomoon/Read Me.txt +7 -0
  36. package/public/icomoon/Topvisor icons.json +6260 -0
  37. package/public/icomoon/demo-files/demo.css +158 -0
  38. package/public/icomoon/demo-files/demo.js +30 -0
  39. package/public/icomoon/demo.html +3558 -0
  40. package/public/icomoon/fonts/Topvisor-2.eot +0 -0
  41. package/public/icomoon/fonts/Topvisor-2.svg +277 -0
  42. package/public/icomoon/fonts/Topvisor-2.ttf +0 -0
  43. package/public/icomoon/fonts/Topvisor-2.woff +0 -0
  44. package/public/icomoon/selection.json +1 -0
  45. package/public/icomoon/style.css +780 -0
  46. package/public/jquery-ui.min.css +6 -0
  47. package/public/require/css.amd.js +12 -0
  48. package/src/components/charts/charts.ts +8 -0
  49. package/src/components/charts/miniChart/miniChart.stories.ts +67 -0
  50. package/src/components/charts/miniChart/miniChart.ts +110 -0
  51. package/src/components/charts/miniChart/miniChart.vue +158 -0
  52. package/src/components/charts/miniChart/stories/README.md +9 -0
  53. package/src/components/charts/miniChart/stories/dummy.ts +25 -0
  54. package/src/components/charts/miniChart/styles/miniChart.css +87 -0
  55. package/src/components/charts/miniChart/utils/consts.ts +9 -0
  56. package/src/components/charts/miniCharts/miniCharts.stories.ts +76 -0
  57. package/src/components/charts/miniCharts/miniCharts.ts +24 -0
  58. package/src/components/charts/miniCharts/miniCharts.vue +128 -0
  59. package/src/components/charts/miniCharts/stories/README.md +18 -0
  60. package/src/components/charts/miniCharts/stories/dummy.ts +70 -0
  61. package/src/components/charts/miniCharts/stories/overview.vue +139 -0
  62. package/src/components/charts/miniCharts/styles/miniCharts.css +32 -0
  63. package/src/components/component.ts +130 -0
  64. package/src/components/core/core.mdx +7 -0
  65. package/src/components/core/notice/item/item.vue +145 -0
  66. package/src/components/core/notice/item/style.css +70 -0
  67. package/src/components/core/notice/item/types.ts +71 -0
  68. package/src/components/core/notice/notice.stories.ts +105 -0
  69. package/src/components/core/notice/notice.vue +69 -0
  70. package/src/components/core/notice/stories/README.md +34 -0
  71. package/src/components/core/notice/types.ts +1 -0
  72. package/src/components/core/notice/utils.ts +115 -0
  73. package/src/components/dialog/dialog/Dialog (code).mdx +61 -0
  74. package/src/components/dialog/dialog/composables/asyncDialogHandle.ts +99 -0
  75. package/src/components/dialog/dialog/composables/dialogHandle.ts +176 -0
  76. package/src/components/dialog/dialog/composables/types.ts +12 -0
  77. package/src/components/dialog/dialog/composables/utils.ts +39 -0
  78. package/src/components/dialog/dialog/dialog.stories.ts +83 -0
  79. package/src/components/dialog/dialog/dialog.vue +74 -0
  80. package/src/components/dialog/dialog/dialogs/dialogs.vue +58 -0
  81. package/src/components/dialog/dialog/page/page.vue +86 -0
  82. package/src/components/dialog/dialog/page/types.ts +84 -0
  83. package/src/components/dialog/dialog/page.stories.ts +27 -0
  84. package/src/components/dialog/dialog/pageComponent/pageComponent.vue +57 -0
  85. package/src/components/dialog/dialog/pageComponent/types.ts +21 -0
  86. package/src/components/dialog/dialog/pageComponent.stories.ts +27 -0
  87. package/src/components/dialog/dialog/stories/README.md +117 -0
  88. package/src/components/dialog/dialog/stories/autoload.ts +12 -0
  89. package/src/components/dialog/dialog/stories/dialog_example/dialog_example.vue +73 -0
  90. package/src/components/dialog/dialog/stories/dialog_example/pages/async.vue +57 -0
  91. package/src/components/dialog/dialog/stories/dialog_example/pages/default.vue +64 -0
  92. package/src/components/dialog/dialog/stories/dialog_example/pages/headerButtons.vue +56 -0
  93. package/src/components/dialog/dialog/stories/dialog_example/pages/utils.ts +26 -0
  94. package/src/components/dialog/dialog/stories/dialog_example/pages/withoutCache.vue +64 -0
  95. package/src/components/dialog/dialog/stories/page/README.md +24 -0
  96. package/src/components/dialog/dialog/stories/pageComponent/README.md +12 -0
  97. package/src/components/dialog/dialog/style/dialog.css +316 -0
  98. package/src/components/dialog/dialog/style/dialog.m.css +40 -0
  99. package/src/components/dialog/dialog/style/dialog.pc.css +73 -0
  100. package/src/components/dialog/dialog/style/modern/dialog.css +12 -0
  101. package/src/components/dialog/dialog/style/modern/dialog.pc.css +3 -0
  102. package/src/components/dialog/dialog/types.ts +69 -0
  103. package/src/components/dialog/dialog.ts +7 -0
  104. package/src/components/dialog/lib/types.ts +26 -0
  105. package/src/components/dialog/lib/utils.globalEvents.ts +175 -0
  106. package/src/components/dialog/lib/utils.ts +525 -0
  107. package/src/components/dialog/lib/worker.ts +273 -0
  108. package/src/components/forms/README.mdx +10 -0
  109. package/src/components/forms/avatar/avatar.stories.ts +38 -0
  110. package/src/components/forms/avatar/avatar.ts +40 -0
  111. package/src/components/forms/avatar/avatar.vue +77 -0
  112. package/src/components/forms/avatar/stories/overview.vue +28 -0
  113. package/src/components/forms/button/button.stories.ts +118 -0
  114. package/src/components/forms/button/button.vue +111 -0
  115. package/src/components/forms/button/stories/README.md +9 -0
  116. package/src/components/forms/button/stories/overview.vue +33 -0
  117. package/src/components/forms/button/style/button.css +139 -0
  118. package/src/components/forms/button/style/style-outline.css +129 -0
  119. package/src/components/forms/button/style/style-soft.css +89 -0
  120. package/src/components/forms/button/style/style-transparent.css +39 -0
  121. package/src/components/forms/button/types.ts +66 -0
  122. package/src/components/forms/checkbox/checkbox.stories.ts +33 -0
  123. package/src/components/forms/checkbox/checkbox.ts +21 -0
  124. package/src/components/forms/checkbox/checkbox.vue +114 -0
  125. package/src/components/forms/checkbox/stories/overview.vue +171 -0
  126. package/src/components/forms/controlLabel/controlLabel.stories.ts +32 -0
  127. package/src/components/forms/controlLabel/controlLabel.ts +4 -0
  128. package/src/components/forms/controlLabel/controlLabel.vue +54 -0
  129. package/src/components/forms/forms.ts +40 -0
  130. package/src/components/forms/helpers.ts +11 -0
  131. package/src/components/forms/hint/hint.stories.ts +41 -0
  132. package/src/components/forms/hint/hint.ts +8 -0
  133. package/src/components/forms/hint/hint.vue +32 -0
  134. package/src/components/forms/input/input.stories.ts +31 -0
  135. package/src/components/forms/input/input.ts +37 -0
  136. package/src/components/forms/input/input.vue +187 -0
  137. package/src/components/forms/input/stories/overview.vue +61 -0
  138. package/src/components/forms/inputDate/datepicker.css +246 -0
  139. package/src/components/forms/inputDate/datepicker.ts +101 -0
  140. package/src/components/forms/inputDate/inputDate.stories.ts +41 -0
  141. package/src/components/forms/inputDate/inputDate.ts +5 -0
  142. package/src/components/forms/inputDate/inputDate.vue +133 -0
  143. package/src/components/forms/inputDate/stories/overview.vue +35 -0
  144. package/src/components/forms/inputRange/inputRange.stories.ts +53 -0
  145. package/src/components/forms/inputRange/inputRange.ts +3 -0
  146. package/src/components/forms/inputRange/inputRange.vue +39 -0
  147. package/src/components/forms/inputRange/stories/overview.vue +129 -0
  148. package/src/components/forms/loadbar/loadbar.stories.ts +17 -0
  149. package/src/components/forms/loadbar/loadbar.vue +37 -0
  150. package/src/components/forms/radio/radio.stories.ts +34 -0
  151. package/src/components/forms/radio/radio.ts +15 -0
  152. package/src/components/forms/radio/radio.vue +97 -0
  153. package/src/components/forms/radio/stories/overview.vue +79 -0
  154. package/src/components/forms/select/select.stories.ts +68 -0
  155. package/src/components/forms/select/select.ts +60 -0
  156. package/src/components/forms/select/select.vue +298 -0
  157. package/src/components/forms/select/stories/exampleOptions.ts +61 -0
  158. package/src/components/forms/select/stories/overview.vue +72 -0
  159. package/src/components/forms/switcher/stories/overview.vue +139 -0
  160. package/src/components/forms/switcher/switcher.stories.ts +33 -0
  161. package/src/components/forms/switcher/switcher.ts +22 -0
  162. package/src/components/forms/switcher/switcher.vue +118 -0
  163. package/src/components/forms/textarea/stories/overview.vue +62 -0
  164. package/src/components/forms/textarea/textarea.stories.ts +33 -0
  165. package/src/components/forms/textarea/textarea.ts +38 -0
  166. package/src/components/forms/textarea/textarea.vue +121 -0
  167. package/src/components/formsExt/README.mdx +5 -0
  168. package/src/components/formsExt/editArea/editArea.stories.ts +41 -0
  169. package/src/components/formsExt/editArea/editArea.ts +41 -0
  170. package/src/components/formsExt/editArea/editArea.vue +195 -0
  171. package/src/components/formsExt/editArea/stories/README.md +21 -0
  172. package/src/components/formsExt/editArea/stories/overview.vue +67 -0
  173. package/src/components/formsExt/editInput/editInput.stories.ts +36 -0
  174. package/src/components/formsExt/editInput/editInput.ts +20 -0
  175. package/src/components/formsExt/editInput/editInput.vue +54 -0
  176. package/src/components/formsExt/editInput/stories/overview.vue +54 -0
  177. package/src/components/formsExt/formsExt.ts +15 -0
  178. package/src/components/formsExt/info/info.stories.ts +35 -0
  179. package/src/components/formsExt/info/info.vue +84 -0
  180. package/src/components/formsExt/info/stories/overview.vue +29 -0
  181. package/src/components/formsExt/info/types.ts +25 -0
  182. package/src/components/formsExt/menu/menu.stories.ts +59 -0
  183. package/src/components/formsExt/menu/menu.ts +45 -0
  184. package/src/components/formsExt/menu/menu.vue +321 -0
  185. package/src/components/formsExt/menu/stories/items.ts +18 -0
  186. package/src/components/formsExt/menu/stories/overview.vue +52 -0
  187. package/src/components/formsExt/radioGroup/radioGroup.stories.ts +51 -0
  188. package/src/components/formsExt/radioGroup/radioGroup.ts +28 -0
  189. package/src/components/formsExt/radioGroup/radioGroup.vue +146 -0
  190. package/src/components/formsExt/radioGroup/stories/overview.vue +78 -0
  191. package/src/components/formsExt/radioGroup/styles/top-scrollBar.css +52 -0
  192. package/src/components/formsExt/selector2/api.ts +148 -0
  193. package/src/components/formsExt/selector2/itemMulti.vue +57 -0
  194. package/src/components/formsExt/selector2/selector2.stories.ts +48 -0
  195. package/src/components/formsExt/selector2/selector2.ts +145 -0
  196. package/src/components/formsExt/selector2/selector2.vue +389 -0
  197. package/src/components/formsExt/selector2/stories/dummyAPIRequest.ts +58 -0
  198. package/src/components/formsExt/selector2/stories/overview.vue +93 -0
  199. package/src/components/helper.js +10 -0
  200. package/src/components/helpersStories.ts +205 -0
  201. package/src/components/layout/islandRows/islandRows.stories.ts +139 -0
  202. package/src/components/layout/islandRows/islandRows.vue +53 -0
  203. package/src/components/layout/islandRows/islandRowsRow/islandRowsRow.vue +36 -0
  204. package/src/components/layout/islandRows/islandRowsRow/types.ts +1 -0
  205. package/src/components/layout/islandRows/islandRowsSubTitle/islandRowsSubTitle.vue +16 -0
  206. package/src/components/layout/islandRows/stories/README.md +8 -0
  207. package/src/components/layout/islandRows/types.ts +11 -0
  208. package/src/components/layout/layout.ts +11 -0
  209. package/src/components/layout/rows/rows.stories.ts +48 -0
  210. package/src/components/layout/rows/rows.vue +46 -0
  211. package/src/components/layout/rows/stories/README.md +10 -0
  212. package/src/components/layout/rows/types.ts +6 -0
  213. package/src/components/popup/alert/alert.stories.ts +71 -0
  214. package/src/components/popup/alert/alert.ts +11 -0
  215. package/src/components/popup/alert/alert.vue +46 -0
  216. package/src/components/popup/alert/stories/overview.vue +40 -0
  217. package/src/components/popup/confirm/confirm.stories.ts +75 -0
  218. package/src/components/popup/confirm/confirm.ts +26 -0
  219. package/src/components/popup/confirm/confirm.vue +75 -0
  220. package/src/components/popup/confirm/stories/overview.vue +62 -0
  221. package/src/components/popup/lib/popup.globalEvents.ts +239 -0
  222. package/src/components/popup/lib/popup.ts +790 -0
  223. package/src/components/popup/lib/worker.globalEvents.ts +97 -0
  224. package/src/components/popup/lib/worker.ts +286 -0
  225. package/src/components/popup/popup/listItem.vue +35 -0
  226. package/src/components/popup/popup/opener.vue +81 -0
  227. package/src/components/popup/popup/popup.stories.ts +74 -0
  228. package/src/components/popup/popup/popup.ts +120 -0
  229. package/src/components/popup/popup/popup.vue +168 -0
  230. package/src/components/popup/popup/stories/README.md +55 -0
  231. package/src/components/popup/popup/stories/listItems.vue +44 -0
  232. package/src/components/popup/popup/stories/listSubItems.vue +47 -0
  233. package/src/components/popup/popup/stories/overview.vue +210 -0
  234. package/src/components/popup/popup/style/popup.css +345 -0
  235. package/src/components/popup/popup/style/popup.m.css +72 -0
  236. package/src/components/popup/popup/style/popup.pc.css +26 -0
  237. package/src/components/popup/popup/widgetInput.vue +43 -0
  238. package/src/components/popup/popup.ts +17 -0
  239. package/src/components/popup/prompt/prompt.stories.ts +78 -0
  240. package/src/components/popup/prompt/prompt.ts +26 -0
  241. package/src/components/popup/prompt/prompt.vue +84 -0
  242. package/src/components/popup/prompt/stories/overview.vue +50 -0
  243. package/src/components/popup/worker.ts +1 -0
  244. package/src/components/project/project.ts +23 -0
  245. package/src/components/project/selectorCompetitors/composables.ts +21 -0
  246. package/src/components/project/selectorCompetitors/selectorCompetitors.stories.ts +33 -0
  247. package/src/components/project/selectorCompetitors/selectorCompetitors.ts +27 -0
  248. package/src/components/project/selectorCompetitors/selectorCompetitors.vue +75 -0
  249. package/src/components/project/selectorCompetitors/stories/README.md +20 -0
  250. package/src/components/project/selectorCompetitors/stories/items.ts +30 -0
  251. package/src/components/project/selectorCompetitors/types/competitor.ts +7 -0
  252. package/src/components/project/selectorRegion/composables/compare.ts +87 -0
  253. package/src/components/project/selectorRegion/composables/selectRegion.ts +147 -0
  254. package/src/components/project/selectorRegion/composables/selectSearcher.ts +64 -0
  255. package/src/components/project/selectorRegion/composables/selectorRegion.ts +165 -0
  256. package/src/components/project/selectorRegion/selectorRegion.stories.ts +69 -0
  257. package/src/components/project/selectorRegion/selectorRegion.ts +217 -0
  258. package/src/components/project/selectorRegion/selectorRegion.vue +330 -0
  259. package/src/components/project/selectorRegion/stories/README.md +36 -0
  260. package/src/components/project/selectorRegion/stories/searchers.ts +59 -0
  261. package/src/components/project/selectorRegion/styles/searcherColors.css +41 -0
  262. package/src/components/project/selectorRegion/utils/consts.ts +73 -0
  263. package/src/components/project/selectorRegion/utils/utils.ts +157 -0
  264. package/src/components/project/tagSelector/popupListItem/tagPopupListItem.vue +209 -0
  265. package/src/components/project/tagSelector/popupListItem/types.ts +40 -0
  266. package/src/components/project/tagSelector/popupOpener/popupOpener.vue +145 -0
  267. package/src/components/project/tagSelector/popupOpener/types.ts +71 -0
  268. package/src/components/project/tagSelector/stories/README.md +62 -0
  269. package/src/components/project/tagSelector/stories/overview.vue +152 -0
  270. package/src/components/project/tagSelector/tagIcon/tagIcon.vue +97 -0
  271. package/src/components/project/tagSelector/tagIcon/types.ts +25 -0
  272. package/src/components/project/tagSelector/tagSelector.stories.ts +51 -0
  273. package/src/components/project/tagSelector/tagSelector.vue +359 -0
  274. package/src/components/project/tagSelector/tagsDefaults.ts +54 -0
  275. package/src/components/project/tagSelector/types.ts +159 -0
  276. package/src/components/project/tagSelector/utils/el.ts +151 -0
  277. package/src/components/project/tagSelector/utils/utils.ts +30 -0
  278. package/src/components/tabs/tabs/content.vue +24 -0
  279. package/src/components/tabs/tabs/stories/README.md +12 -0
  280. package/src/components/tabs/tabs/tab.vue +49 -0
  281. package/src/components/tabs/tabs/tabs.stories.ts +171 -0
  282. package/src/components/tabs/tabs/tabs.ts +22 -0
  283. package/src/components/tabs/tabs/tabs.vue +64 -0
  284. package/src/components/tabs/tabs.ts +9 -0
  285. package/src/components/tabsView/tabsView/menu.vue +291 -0
  286. package/src/components/tabsView/tabsView/menuDelimeter.vue +26 -0
  287. package/src/components/tabsView/tabsView/menuItem.vue +125 -0
  288. package/src/components/tabsView/tabsView/menuTitle.vue +46 -0
  289. package/src/components/tabsView/tabsView/store.ts +60 -0
  290. package/src/components/tabsView/tabsView/stories/README.md +22 -0
  291. package/src/components/tabsView/tabsView/tabsView.stories.ts +170 -0
  292. package/src/components/tabsView/tabsView/tabsView.ts +118 -0
  293. package/src/components/tabsView/tabsView/tabsView.vue +120 -0
  294. package/src/components/tabsView/tabsView/utils.ts +27 -0
  295. package/src/components/tabsView/tabsView//320/255/320/273/320/265/320/274/320/265/320/275/321/202/321/213/MenuItem.stories.ts +47 -0
  296. package/src/components/tabsView/tabsView//320/255/320/273/320/265/320/274/320/265/320/275/321/202/321/213/MenuTitle.stories.ts +43 -0
  297. package/src/components/tabsView/tabsView.ts +9 -0
  298. package/src/components/types.ts +3 -0
  299. package/src/core/app.ts +22 -0
  300. package/src/core/core/core.mdx +36 -0
  301. package/src/core/core/core.ts +287 -0
  302. package/src/core/core/events/resize.ts +47 -0
  303. package/src/core/core/events.ts +6 -0
  304. package/src/core/core/jQuery.mdx +41 -0
  305. package/src/core/core/options.ts +51 -0
  306. package/src/core/core/preloaders.ts +31 -0
  307. package/src/core/core/state.ts +61 -0
  308. package/src/core/directives/data.mdx +24 -0
  309. package/src/core/directives/data.ts +25 -0
  310. package/src/core/directives/focus.mdx +28 -0
  311. package/src/core/directives/focus.ts +73 -0
  312. package/src/core/directives/scrollIntoView.mdx +41 -0
  313. package/src/core/directives/scrollIntoView.ts +123 -0
  314. package/src/core/directives/scrollShadow.mdx +23 -0
  315. package/src/core/directives/scrollShadow.ts +27 -0
  316. package/src/core/directives/sticky.mdx +29 -0
  317. package/src/core/directives/sticky.ts +32 -0
  318. package/src/core/directives/swimUp.mdx +27 -0
  319. package/src/core/directives/swimUp.ts +95 -0
  320. package/src/core/directives/tooltip.mdx +13 -0
  321. package/src/core/directives/tooltip.ts +57 -0
  322. package/src/core/icons/gallery.vue +70 -0
  323. package/src/core/icons/icons.mdx +24 -0
  324. package/src/core/icons/icons.stories.ts +14 -0
  325. package/src/core/plugins/core.ts +131 -0
  326. package/src/core/plugins/i18n.ts +184 -0
  327. package/src/core/plugins/piniaTPA.ts +431 -0
  328. package/src/core/plugins/plugins.mdx +82 -0
  329. package/src/core/styles/CSS Variables.stories.ts +17 -0
  330. package/src/core/styles/styles.mdx +26 -0
  331. package/src/core/theme/Variables.stories.ts +16 -0
  332. package/src/core/theme/theme.mdx +117 -0
  333. package/src/core/utils/References/Docs.mdx +23 -0
  334. package/src/core/utils/References/check/Docs.mdx +15 -0
  335. package/src/core/utils/References/check/functions/getDomainRegexp.mdx +15 -0
  336. package/src/core/utils/References/check/functions/isDomain.mdx +21 -0
  337. package/src/core/utils/References/check/functions/isEmail.mdx +22 -0
  338. package/src/core/utils/References/check/functions/isIp.mdx +21 -0
  339. package/src/core/utils/References/check/functions/validUrl.mdx +22 -0
  340. package/src/core/utils/References/clipboard/Docs.mdx +11 -0
  341. package/src/core/utils/References/clipboard/functions/setClipboard.mdx +23 -0
  342. package/src/core/utils/References/date/Docs.mdx +17 -0
  343. package/src/core/utils/References/date/functions/dateFormat.mdx +28 -0
  344. package/src/core/utils/References/date/functions/dateToString.mdx +26 -0
  345. package/src/core/utils/References/date/functions/dateUnformat.mdx +22 -0
  346. package/src/core/utils/References/date/functions/genDate.mdx +26 -0
  347. package/src/core/utils/References/date/functions/genDateMoscow.mdx +22 -0
  348. package/src/core/utils/References/date/functions/getDayOfWeek.mdx +26 -0
  349. package/src/core/utils/References/date/functions/stringToDate.mdx +21 -0
  350. package/src/core/utils/References/device/Docs.mdx +21 -0
  351. package/src/core/utils/References/device/functions/get$scroll.mdx +15 -0
  352. package/src/core/utils/References/device/functions/getCommandKeyLabel.mdx +15 -0
  353. package/src/core/utils/References/device/functions/getElsScroll.mdx +15 -0
  354. package/src/core/utils/References/device/functions/getOS.mdx +17 -0
  355. package/src/core/utils/References/device/functions/getOSAsync.mdx +15 -0
  356. package/src/core/utils/References/device/functions/getScrollTop.mdx +15 -0
  357. package/src/core/utils/References/device/functions/isApp.mdx +15 -0
  358. package/src/core/utils/References/device/functions/isMacOS.mdx +15 -0
  359. package/src/core/utils/References/device/functions/isMobile.mdx +15 -0
  360. package/src/core/utils/References/device/functions/isRetina.mdx +15 -0
  361. package/src/core/utils/References/device/functions/isSafari.mdx +15 -0
  362. package/src/core/utils/References/dom/Docs.mdx +27 -0
  363. package/src/core/utils/References/dom/functions/css.mdx +24 -0
  364. package/src/core/utils/References/dom/functions/genEl.mdx +28 -0
  365. package/src/core/utils/References/dom/functions/isVisible.mdx +23 -0
  366. package/src/core/utils/References/dom/functions/offset.mdx +35 -0
  367. package/src/core/utils/References/dom/functions/querySelectorAllArray.mdx +22 -0
  368. package/src/core/utils/References/dom/functions/querySelectorAllVisible.mdx +22 -0
  369. package/src/core/utils/References/dom/functions/querySelectorVisible.mdx +22 -0
  370. package/src/core/utils/References/dom/functions/querySelectorVisibleLast.mdx +22 -0
  371. package/src/core/utils/References/dom/functions/storage.mdx +28 -0
  372. package/src/core/utils/References/dom/functions/storageClear.mdx +21 -0
  373. package/src/core/utils/References/dom/functions/wrap.mdx +22 -0
  374. package/src/core/utils/References/dom/variables/default.mdx +241 -0
  375. package/src/core/utils/References/image/Docs.mdx +12 -0
  376. package/src/core/utils/References/image/functions/downloadImageFromString.mdx +22 -0
  377. package/src/core/utils/References/image/functions/genFaviconImgHtml.mdx +22 -0
  378. package/src/core/utils/References/keyboard/Docs.mdx +11 -0
  379. package/src/core/utils/References/keyboard/functions/invertKeyboardLayout.mdx +21 -0
  380. package/src/core/utils/References/lodash/Docs.mdx +20 -0
  381. package/src/core/utils/References/lodash/functions/cloneDeep.mdx +29 -0
  382. package/src/core/utils/References/lodash/functions/debounce.mdx +76 -0
  383. package/src/core/utils/References/lodash/functions/memoize.mdx +26 -0
  384. package/src/core/utils/References/lodash/functions/merge.mdx +200 -0
  385. package/src/core/utils/References/lodash/functions/throttle.mdx +73 -0
  386. package/src/core/utils/References/number/Docs.mdx +11 -0
  387. package/src/core/utils/References/number/functions/percentOfNumber.mdx +26 -0
  388. package/src/core/utils/References/price/Docs.mdx +11 -0
  389. package/src/core/utils/References/price/functions/genPrice.mdx +28 -0
  390. package/src/core/utils/References/route/Docs.mdx +16 -0
  391. package/src/core/utils/References/route/functions/delHash.mdx +26 -0
  392. package/src/core/utils/References/route/functions/genHash.mdx +26 -0
  393. package/src/core/utils/References/route/functions/getHash.mdx +22 -0
  394. package/src/core/utils/References/route/functions/historySetState.mdx +31 -0
  395. package/src/core/utils/References/route/functions/setHash.mdx +26 -0
  396. package/src/core/utils/References/route/functions/setHashs.mdx +22 -0
  397. package/src/core/utils/References/scroll/Docs.mdx +14 -0
  398. package/src/core/utils/References/scroll/functions/amountScrolled.mdx +17 -0
  399. package/src/core/utils/References/scroll/functions/connectScrollShadow.mdx +28 -0
  400. package/src/core/utils/References/scroll/functions/genHasScroll.mdx +25 -0
  401. package/src/core/utils/References/scroll/functions/getScrollPercent.mdx +21 -0
  402. package/src/core/utils/References/searchers/Docs.mdx +19 -0
  403. package/src/core/utils/References/searchers/functions/genVolumeLabel.mdx +26 -0
  404. package/src/core/utils/References/searchers/functions/getDeviceGIcon.mdx +21 -0
  405. package/src/core/utils/References/searchers/functions/getLangLabel.mdx +22 -0
  406. package/src/core/utils/References/searchers/functions/getSearcherGIcon.mdx +21 -0
  407. package/src/core/utils/References/searchers/functions/prepareVolumeType.mdx +22 -0
  408. package/src/core/utils/References/searchers/variables/searchersNames.mdx +97 -0
  409. package/src/core/utils/References/store/Docs.mdx +18 -0
  410. package/src/core/utils/References/store/functions/defineStore.mdx +36 -0
  411. package/src/core/utils/References/store/functions/useStore.mdx +29 -0
  412. package/src/core/utils/References/store/variables/plugin.mdx +66 -0
  413. package/src/core/utils/References/string/Docs.mdx +26 -0
  414. package/src/core/utils/References/string/functions/addCommasWhite.mdx +21 -0
  415. package/src/core/utils/References/string/functions/addLinkTags.mdx +23 -0
  416. package/src/core/utils/References/string/functions/camelToSnakeCase.mdx +21 -0
  417. package/src/core/utils/References/string/functions/ellipsis.mdx +26 -0
  418. package/src/core/utils/References/string/functions/genFlagLinkByCountryCode.mdx +21 -0
  419. package/src/core/utils/References/string/functions/genIntHash.mdx +21 -0
  420. package/src/core/utils/References/string/functions/getRandomHash.mdx +21 -0
  421. package/src/core/utils/References/string/functions/highlightHtml.mdx +25 -0
  422. package/src/core/utils/References/string/functions/htmlspecialchars.mdx +21 -0
  423. package/src/core/utils/References/string/functions/isUrl.mdx +21 -0
  424. package/src/core/utils/References/string/functions/nl2br.mdx +21 -0
  425. package/src/core/utils/References/string/functions/numberEnding.mdx +28 -0
  426. package/src/core/utils/References/string/functions/numberWithWord.mdx +28 -0
  427. package/src/core/utils/References/string/functions/rusToLatin.mdx +21 -0
  428. package/src/core/utils/References/string/functions/toCapitalize.mdx +21 -0
  429. package/src/core/utils/References/string/functions/toRoditPadej.mdx +21 -0
  430. package/src/core/utils/References/system/Docs.mdx +13 -0
  431. package/src/core/utils/References/system/functions/sleep.mdx +21 -0
  432. package/src/core/utils/References/system/functions/sleepWhile.mdx +26 -0
  433. package/src/core/utils/References/system/functions/waitWhile.mdx +26 -0
  434. package/src/core/utils/References/url/Docs.mdx +17 -0
  435. package/src/core/utils/References/url/functions/decode.mdx +21 -0
  436. package/src/core/utils/References/url/functions/encode.mdx +21 -0
  437. package/src/core/utils/References/url/functions/fromPuny.mdx +23 -0
  438. package/src/core/utils/References/url/functions/getHost.mdx +21 -0
  439. package/src/core/utils/References/url/functions/hostToLowerCase.mdx +21 -0
  440. package/src/core/utils/References/url/functions/normalize.mdx +21 -0
  441. package/src/core/utils/References/url/functions/toPuny.mdx +23 -0
  442. package/src/core/utils/check.ts +88 -0
  443. package/src/core/utils/clipboard.ts +51 -0
  444. package/src/core/utils/date.ts +291 -0
  445. package/src/core/utils/device.ts +139 -0
  446. package/src/core/utils/dom.ts +182 -0
  447. package/src/core/utils/image.ts +46 -0
  448. package/src/core/utils/keyboard.ts +29 -0
  449. package/src/core/utils/lodash.ts +18 -0
  450. package/src/core/utils/number.ts +37 -0
  451. package/src/core/utils/price.ts +24 -0
  452. package/src/core/utils/route.ts +115 -0
  453. package/src/core/utils/scroll.ts +120 -0
  454. package/src/core/utils/searchers.ts +189 -0
  455. package/src/core/utils/store/localStorage.ts +56 -0
  456. package/src/core/utils/store/plugin.ts +50 -0
  457. package/src/core/utils/store/store.ts +77 -0
  458. package/src/core/utils/store.ts +7 -0
  459. package/src/core/utils/string.ts +315 -0
  460. package/src/core/utils/system.ts +72 -0
  461. package/src/core/utils/url.ts +138 -0
  462. package/src/core/utils/utils.mdx +6 -0
  463. package/src/d.ts +12 -0
  464. package/src/icomoon.d.ts +98 -0
  465. package/src/resources/styles/core/components.css +102 -0
  466. package/src/resources/styles/core/core.ts +11 -0
  467. package/src/resources/styles/core/forms/clear.css +20 -0
  468. package/src/resources/styles/core/forms/controls.css +20 -0
  469. package/src/resources/styles/core/forms/focusable.css +26 -0
  470. package/src/resources/styles/core/forms/forms.css +117 -0
  471. package/src/resources/styles/core/icon.css +58 -0
  472. package/src/resources/styles/core/jquery.css +1 -0
  473. package/src/resources/styles/core/layout.css +59 -0
  474. package/src/resources/styles/core/modifiers/as.css +9 -0
  475. package/src/resources/styles/core/modifiers/ellipsis.css +26 -0
  476. package/src/resources/styles/core/modifiers/modifiers.css +120 -0
  477. package/src/resources/styles/core/modifiers/only.css +19 -0
  478. package/src/resources/styles/core/modifiers/scrollShadow.css +50 -0
  479. package/src/resources/styles/core/select.css +15 -0
  480. package/src/resources/styles/storybook.css +11 -0
  481. package/src/resources/styles/themes/dark/dark-layout.css +47 -0
  482. package/src/resources/styles/themes/dark/dark-positions.css +66 -0
  483. package/src/resources/styles/themes/dark/dark.css +400 -0
  484. package/src/resources/styles/themes/dark-positions.ts +1 -0
  485. package/src/resources/styles/themes/dark-th/dark-th-layout.css +47 -0
  486. package/src/resources/styles/themes/dark-th/dark-th-positions.css +67 -0
  487. package/src/resources/styles/themes/dark-th/dark-th.css +400 -0
  488. package/src/resources/styles/themes/dark-th-positions.ts +1 -0
  489. package/src/resources/styles/themes/dark-th.ts +3 -0
  490. package/src/resources/styles/themes/dark.ts +3 -0
  491. package/src/resources/styles/themes/light/light-layout.css +47 -0
  492. package/src/resources/styles/themes/light/light-positions.css +66 -0
  493. package/src/resources/styles/themes/light/light.css +400 -0
  494. package/src/resources/styles/themes/light-positions.ts +1 -0
  495. package/src/resources/styles/themes/light.ts +3 -0
  496. package/src/storybook/components/color.vue +47 -0
  497. package/src/storybook/components/cssVariables.vue +195 -0
  498. package/src/storybook/components/icomoon.ts +40 -0
  499. package/src/storybook/jquery.ts +4 -0
  500. package/src//320/221/321/213/321/201/321/202/321/200/321/213/320/271 /321/201/321/202/320/260/321/200/321/202.mdx" +181 -0
  501. package/src//320/230/320/275/321/204/320/276/321/200/320/274/320/260/321/206/320/270/321/217 /320/276 /321/201/320/261/320/276/321/200/320/272/320/265.mdx" +12 -0
  502. package/src//320/240/320/260/320/267/321/200/320/260/320/261/320/276/321/202/320/272/320/260 (Contributing)/CHANGELOG.md.mdx" +4 -0
  503. package/src//320/240/320/260/320/267/321/200/320/260/320/261/320/276/321/202/320/272/320/260 (Contributing)/CSS/FAQ.mdx" +43 -0
  504. package/src//320/240/320/260/320/267/321/200/320/260/320/261/320/276/321/202/320/272/320/260 (Contributing)/CSS//320/236/320/261/321/211/320/270/320/265 /320/274/320/276/320/264/320/270/321/204/320/270/320/272/320/260/321/202/320/276/321/200/321/213.mdx" +155 -0
  505. package/src//320/240/320/260/320/267/321/200/320/260/320/261/320/276/321/202/320/272/320/260 (Contributing)/CSS//320/237/320/265/321/200/320/265/320/274/320/265/320/275/320/275/321/213/320/265.mdx" +35 -0
  506. package/src//320/240/320/260/320/267/321/200/320/260/320/261/320/276/321/202/320/272/320/260 (Contributing)/CSS//320/237/321/200/320/265/320/264/320/277/321/200/320/276/321/206/320/265/321/201/321/201/320/276/321/200/321/213.mdx" +15 -0
  507. package/src//320/240/320/260/320/267/321/200/320/260/320/261/320/276/321/202/320/272/320/260 (Contributing)/CSS//320/240/320/265/320/272/320/276/320/274/320/265/320/275/320/264/320/260/321/206/320/270/320/270 /320/221/320/255/320/234.mdx" +56 -0
  508. package/src//320/240/320/260/320/267/321/200/320/260/320/261/320/276/321/202/320/272/320/260 (Contributing)/CSS//320/241/321/202/320/270/320/273/320/270.mdx" +53 -0
  509. package/src//320/240/320/260/320/267/321/200/320/260/320/261/320/276/321/202/320/272/320/260 (Contributing)/CSS//320/247/321/202/320/276 /321/202/320/260/320/272/320/276/320/265 css /320/274/320/276/320/264/321/203/320/273/321/214.mdx" +55 -0
  510. package/src//320/240/320/260/320/267/321/200/320/260/320/261/320/276/321/202/320/272/320/260 (Contributing)/PUBLISH.md.mdx" +4 -0
  511. package/src//320/240/320/260/320/267/321/200/320/260/320/261/320/276/321/202/320/272/320/260 (Contributing)/README.md.mdx" +4 -0
  512. package/src//320/240/320/260/320/267/321/200/320/260/320/261/320/276/321/202/320/272/320/260 (Contributing)/STORYBOOK.md.mdx" +4 -0
  513. package/src//320/240/320/260/320/267/321/200/320/260/320/261/320/276/321/202/320/272/320/260 (Contributing)/USE_IN_PROJECT.md.mdx" +3 -0
  514. package/src//320/240/320/260/320/267/321/200/320/260/320/261/320/276/321/202/320/272/320/260 (Contributing)//320/222/320/262/320/265/320/264/320/265/320/275/320/270/320/265 /320/262 NPM.md.mdx" +4 -0
  515. package/src//320/240/320/260/320/267/321/200/320/260/320/261/320/276/321/202/320/272/320/260 (Contributing)//320/224/320/276/320/277/320/276/320/273/320/275/320/270/321/202/320/265/320/273/321/214/320/275/320/260/321/217 /320/273/320/270/321/202/320/265/321/200/320/260/321/202/321/203/321/200/320/260.mdx" +15 -0
  516. package/src//320/240/320/260/320/267/321/200/320/260/320/261/320/276/321/202/320/272/320/260 (Contributing)//320/241/321/202/320/260/320/275/320/264/320/260/321/200/321/202/321/213 /320/272/320/276/320/264/320/260//320/235/320/260/321/201/321/202/321/200/320/276/320/271/320/272/320/260 IDE.mdx" +45 -0
  517. package/src//320/240/320/260/320/267/321/200/320/260/320/261/320/276/321/202/320/272/320/260 (Contributing)//320/241/321/202/320/260/320/275/320/264/320/260/321/200/321/202/321/213 /320/272/320/276/320/264/320/260//320/236/321/204/320/276/321/200/320/274/320/273/320/265/320/275/320/270/320/265 /320/272/320/276/320/264/320/260.mdx" +31 -0
  518. package/src//320/240/320/260/320/267/321/200/320/260/320/261/320/276/321/202/320/272/320/260 (Contributing)//320/241/321/202/320/260/320/275/320/264/320/260/321/200/321/202/321/213 /320/272/320/276/320/264/320/260//320/241/321/202/320/260/320/275/320/264/320/260/321/200/321/202/321/213 /320/272/320/276/320/264/320/260.mdx" +29 -0
  519. package/src//320/240/320/260/320/267/321/200/320/260/320/261/320/276/321/202/320/272/320/260 (Contributing)//320/241/321/202/321/200/321/203/320/272/321/202/321/203/321/200/320/260 UI//320/232/320/276/320/274/320/277/320/276/320/275/320/265/320/275/321/202/321/213//320/232/320/276/320/274/320/277/320/276/320/275/320/265/320/275/321/202/321/213.mdx" +41 -0
  520. package/src//320/240/320/260/320/267/321/200/320/260/320/261/320/276/321/202/320/272/320/260 (Contributing)//320/241/321/202/321/200/321/203/320/272/321/202/321/203/321/200/320/260 UI//320/232/320/276/320/274/320/277/320/276/320/275/320/265/320/275/321/202/321/213//320/241/321/202/320/270/320/273/320/270 /320/272/320/276/320/274/320/277/320/276/320/275/320/265/320/275/321/202/321/213.mdx" +58 -0
  521. package/src//320/240/320/260/320/267/321/200/320/260/320/261/320/276/321/202/320/272/320/260 (Contributing)//320/241/321/202/321/200/321/203/320/272/321/202/321/203/321/200/320/260 UI//320/241/321/202/321/200/321/203/320/272/321/202/321/203/321/200/320/260 UI.mdx" +11 -0
  522. package/src//320/240/320/260/320/267/321/200/320/260/320/261/320/276/321/202/320/272/320/260 (Contributing)//320/241/321/202/321/200/321/203/320/272/321/202/321/203/321/200/320/260 UI//320/243/321/202/320/270/320/273/320/270/321/202/321/213.mdx" +5 -0
  523. package/tsconfig.json +91 -0
  524. package/typedoc.json +20 -0
  525. package/vite.config.ts +148 -0
  526. package/web-types.json +130 -130
  527. package/.chunks/datepicker-B8O5mg_G.es.js +0 -44
  528. package/.chunks/datepicker-B8O5mg_G.es.js.map +0 -1
  529. package/.chunks/datepicker-CFiizYlZ.amd.js +0 -2
  530. package/.chunks/datepicker-CFiizYlZ.amd.js.map +0 -1
  531. package/.chunks/dialogs.vue_vue_type_script_setup_true_lang-B55gllXV.amd.js +0 -2
  532. package/.chunks/dialogs.vue_vue_type_script_setup_true_lang-B55gllXV.amd.js.map +0 -1
  533. package/.chunks/dialogs.vue_vue_type_script_setup_true_lang-BkBYW0yR.es.js +0 -266
  534. package/.chunks/dialogs.vue_vue_type_script_setup_true_lang-BkBYW0yR.es.js.map +0 -1
  535. package/.chunks/forms-BWc2kMFD.amd.js +0 -3
  536. package/.chunks/forms-BWc2kMFD.amd.js.map +0 -1
  537. package/.chunks/forms-DW_XLzg8.es.js +0 -2018
  538. package/.chunks/forms-DW_XLzg8.es.js.map +0 -1
  539. package/.chunks/listItem.vue_vue_type_script_setup_true_lang-naMiJruI.amd.js +0 -2
  540. package/.chunks/listItem.vue_vue_type_script_setup_true_lang-naMiJruI.amd.js.map +0 -1
  541. package/.chunks/listItem.vue_vue_type_script_setup_true_lang-saYIC17M.es.js +0 -181
  542. package/.chunks/listItem.vue_vue_type_script_setup_true_lang-saYIC17M.es.js.map +0 -1
  543. package/.chunks/menu.vue_vue_type_style_index_0_lang-06YUloqb.amd.js +0 -2
  544. package/.chunks/menu.vue_vue_type_style_index_0_lang-06YUloqb.amd.js.map +0 -1
  545. package/.chunks/menu.vue_vue_type_style_index_0_lang-CcspstQc.es.js +0 -109
  546. package/.chunks/menu.vue_vue_type_style_index_0_lang-CcspstQc.es.js.map +0 -1
  547. package/.chunks/notice-BQyuy4nF.es.js +0 -175
  548. package/.chunks/notice-BQyuy4nF.es.js.map +0 -1
  549. package/.chunks/notice-zADfJ5TR.amd.js +0 -4
  550. package/.chunks/notice-zADfJ5TR.amd.js.map +0 -1
  551. package/.chunks/popup-CPS-7fSX.amd.js +0 -2
  552. package/.chunks/popup-CPS-7fSX.amd.js.map +0 -1
  553. package/.chunks/popup-DsVptZvL.es.js +0 -415
  554. package/.chunks/popup-DsVptZvL.es.js.map +0 -1
  555. package/.chunks/punycode.es6-C2yitnNb.amd.js +0 -2
  556. package/.chunks/punycode.es6-C2yitnNb.amd.js.map +0 -1
  557. package/.chunks/punycode.es6-CNI-zL6U.es.js +0 -134
  558. package/.chunks/punycode.es6-CNI-zL6U.es.js.map +0 -1
  559. package/.chunks/store-CX_6ZXhO.es.js +0 -29
  560. package/.chunks/store-CX_6ZXhO.es.js.map +0 -1
  561. package/.chunks/store-esTid5oI.amd.js +0 -2
  562. package/.chunks/store-esTid5oI.amd.js.map +0 -1
  563. package/.chunks/utils-B75aamxF.amd.js +0 -2
  564. package/.chunks/utils-B75aamxF.amd.js.map +0 -1
  565. package/.chunks/utils-DIP-BdDy.es.js +0 -225
  566. package/.chunks/utils-DIP-BdDy.es.js.map +0 -1
  567. package/.chunks/utils-DfYj3r9i.amd.js +0 -2
  568. package/.chunks/utils-DfYj3r9i.amd.js.map +0 -1
  569. package/.chunks/utils-h5v4GPgp.es.js +0 -79
  570. package/.chunks/utils-h5v4GPgp.es.js.map +0 -1
  571. package/assets/charts.css +0 -1
  572. package/assets/core.css +0 -1
  573. package/assets/forms.css +0 -1
  574. package/assets/formsExt.css +0 -1
  575. package/assets/layout.css +0 -1
  576. package/assets/listItem.css +0 -1
  577. package/assets/menu.css +0 -1
  578. package/assets/notice.css +0 -1
  579. package/assets/popup.css +0 -1
  580. package/assets/project.css +0 -1
  581. package/assets/tabs.css +0 -1
  582. package/assets/tabsView.css +0 -1
  583. package/assets/themes/dark-th.css +0 -1
  584. package/assets/themes/dark.css +0 -1
  585. package/assets/themes/light.css +0 -1
  586. package/charts/charts.amd.js +0 -2
  587. package/charts/charts.amd.js.map +0 -1
  588. package/charts/charts.d.ts +0 -2
  589. package/charts/charts.js +0 -178
  590. package/charts/charts.js.map +0 -1
  591. package/components/charts/charts.d.ts +0 -5
  592. package/components/charts/miniChart/miniChart.d.ts +0 -92
  593. package/components/charts/miniChart/miniChart.vue.d.ts +0 -15
  594. package/components/charts/miniChart/stories/dummy.d.ts +0 -13
  595. package/components/charts/miniChart/utils/consts.d.ts +0 -8
  596. package/components/charts/miniCharts/miniCharts.d.ts +0 -20
  597. package/components/charts/miniCharts/miniCharts.vue.d.ts +0 -32
  598. package/components/charts/miniCharts/stories/dummy.d.ts +0 -6
  599. package/components/core/notice/item/item.vue.d.ts +0 -10
  600. package/components/core/notice/item/types.d.ts +0 -61
  601. package/components/core/notice/notice.vue.d.ts +0 -5
  602. package/components/core/notice/types.d.ts +0 -1
  603. package/components/core/notice/utils.d.ts +0 -27
  604. package/components/dialog/dialog/composables/asyncDialogHandle.d.ts +0 -51
  605. package/components/dialog/dialog/composables/dialogHandle.d.ts +0 -108
  606. package/components/dialog/dialog/composables/types.d.ts +0 -11
  607. package/components/dialog/dialog/composables/utils.d.ts +0 -21
  608. package/components/dialog/dialog/dialog.vue.d.ts +0 -28
  609. package/components/dialog/dialog/dialogs/dialogs.vue.d.ts +0 -10
  610. package/components/dialog/dialog/page/page.vue.d.ts +0 -19
  611. package/components/dialog/dialog/page/types.d.ts +0 -72
  612. package/components/dialog/dialog/pageComponent/pageComponent.vue.d.ts +0 -6
  613. package/components/dialog/dialog/pageComponent/types.d.ts +0 -18
  614. package/components/dialog/dialog/stories/autoload.d.ts +0 -2
  615. package/components/dialog/dialog/stories/dialog_example/pages/utils.d.ts +0 -7
  616. package/components/dialog/dialog/types.d.ts +0 -58
  617. package/components/dialog/dialog.d.ts +0 -6
  618. package/components/dialog/lib/types.d.ts +0 -21
  619. package/components/dialog/lib/utils.d.ts +0 -14
  620. package/components/dialog/lib/utils.globalEvents.d.ts +0 -8
  621. package/components/dialog/lib/worker.d.ts +0 -60
  622. package/components/forms/avatar/avatar.d.ts +0 -38
  623. package/components/forms/avatar/avatar.vue.d.ts +0 -10
  624. package/components/forms/button/button.vue.d.ts +0 -25
  625. package/components/forms/button/types.d.ts +0 -53
  626. package/components/forms/checkbox/checkbox.d.ts +0 -19
  627. package/components/forms/checkbox/checkbox.vue.d.ts +0 -27
  628. package/components/forms/controlLabel/controlLabel.d.ts +0 -4
  629. package/components/forms/controlLabel/controlLabel.vue.d.ts +0 -19
  630. package/components/forms/forms.d.ts +0 -27
  631. package/components/forms/helpers.d.ts +0 -10
  632. package/components/forms/hint/hint.d.ts +0 -8
  633. package/components/forms/hint/hint.vue.d.ts +0 -4
  634. package/components/forms/input/input.d.ts +0 -26
  635. package/components/forms/input/input.vue.d.ts +0 -27
  636. package/components/forms/inputDate/datepicker.d.ts +0 -5
  637. package/components/forms/inputDate/inputDate.d.ts +0 -3
  638. package/components/forms/inputDate/inputDate.vue.d.ts +0 -12
  639. package/components/forms/inputRange/inputRange.d.ts +0 -2
  640. package/components/forms/inputRange/inputRange.vue.d.ts +0 -19
  641. package/components/forms/loadbar/loadbar.vue.d.ts +0 -3
  642. package/components/forms/radio/radio.d.ts +0 -14
  643. package/components/forms/radio/radio.vue.d.ts +0 -23
  644. package/components/forms/select/select.d.ts +0 -51
  645. package/components/forms/select/select.vue.d.ts +0 -17
  646. package/components/forms/select/stories/exampleOptions.d.ts +0 -5
  647. package/components/forms/switcher/switcher.d.ts +0 -21
  648. package/components/forms/switcher/switcher.vue.d.ts +0 -23
  649. package/components/forms/textarea/textarea.d.ts +0 -33
  650. package/components/forms/textarea/textarea.vue.d.ts +0 -11
  651. package/components/formsExt/editArea/editArea.d.ts +0 -33
  652. package/components/formsExt/editArea/editArea.vue.d.ts +0 -18
  653. package/components/formsExt/editInput/editInput.d.ts +0 -16
  654. package/components/formsExt/editInput/editInput.vue.d.ts +0 -8
  655. package/components/formsExt/formsExt.d.ts +0 -13
  656. package/components/formsExt/info/info.vue.d.ts +0 -20
  657. package/components/formsExt/info/types.d.ts +0 -21
  658. package/components/formsExt/menu/menu.d.ts +0 -37
  659. package/components/formsExt/menu/menu.vue.d.ts +0 -16
  660. package/components/formsExt/menu/stories/items.d.ts +0 -3
  661. package/components/formsExt/radioGroup/radioGroup.d.ts +0 -21
  662. package/components/formsExt/radioGroup/radioGroup.vue.d.ts +0 -19
  663. package/components/formsExt/selector2/api.d.ts +0 -8
  664. package/components/formsExt/selector2/itemMulti.vue.d.ts +0 -8
  665. package/components/formsExt/selector2/selector2.d.ts +0 -130
  666. package/components/formsExt/selector2/selector2.vue.d.ts +0 -210
  667. package/components/formsExt/selector2/stories/dummyAPIRequest.d.ts +0 -10
  668. package/components/layout/islandRows/islandRows.vue.d.ts +0 -17
  669. package/components/layout/islandRows/islandRowsRow/islandRowsRow.vue.d.ts +0 -18
  670. package/components/layout/islandRows/islandRowsRow/types.d.ts +0 -2
  671. package/components/layout/islandRows/islandRowsSubTitle/islandRowsSubTitle.vue.d.ts +0 -18
  672. package/components/layout/islandRows/types.d.ts +0 -10
  673. package/components/layout/layout.d.ts +0 -9
  674. package/components/layout/rows/rows.vue.d.ts +0 -21
  675. package/components/layout/rows/types.d.ts +0 -6
  676. package/components/popup/alert/alert.d.ts +0 -8
  677. package/components/popup/alert/alert.vue.d.ts +0 -31
  678. package/components/popup/confirm/confirm.d.ts +0 -21
  679. package/components/popup/confirm/confirm.vue.d.ts +0 -33
  680. package/components/popup/lib/popup.d.ts +0 -83
  681. package/components/popup/lib/popup.globalEvents.d.ts +0 -26
  682. package/components/popup/lib/worker.d.ts +0 -75
  683. package/components/popup/lib/worker.globalEvents.d.ts +0 -19
  684. package/components/popup/popup/listItem.vue.d.ts +0 -22
  685. package/components/popup/popup/opener.vue.d.ts +0 -23
  686. package/components/popup/popup/popup.d.ts +0 -101
  687. package/components/popup/popup/popup.vue.d.ts +0 -40
  688. package/components/popup/popup/widgetInput.vue.d.ts +0 -17
  689. package/components/popup/popup.d.ts +0 -15
  690. package/components/popup/prompt/prompt.d.ts +0 -21
  691. package/components/popup/prompt/prompt.vue.d.ts +0 -33
  692. package/components/popup/worker.d.ts +0 -1
  693. package/components/project/project.d.ts +0 -15
  694. package/components/project/selectorCompetitors/composables.d.ts +0 -4
  695. package/components/project/selectorCompetitors/selectorCompetitors.d.ts +0 -23
  696. package/components/project/selectorCompetitors/selectorCompetitors.vue.d.ts +0 -14
  697. package/components/project/selectorCompetitors/stories/items.d.ts +0 -3
  698. package/components/project/selectorCompetitors/types/competitor.d.ts +0 -7
  699. package/components/project/selectorRegion/composables/compare.d.ts +0 -12
  700. package/components/project/selectorRegion/composables/selectRegion.d.ts +0 -14
  701. package/components/project/selectorRegion/composables/selectSearcher.d.ts +0 -13
  702. package/components/project/selectorRegion/composables/selectorRegion.d.ts +0 -25
  703. package/components/project/selectorRegion/selectorRegion.d.ts +0 -182
  704. package/components/project/selectorRegion/selectorRegion.vue.d.ts +0 -25
  705. package/components/project/selectorRegion/stories/searchers.d.ts +0 -3
  706. package/components/project/selectorRegion/utils/consts.d.ts +0 -18
  707. package/components/project/selectorRegion/utils/utils.d.ts +0 -23
  708. package/components/project/tagSelector/popupListItem/tagPopupListItem.vue.d.ts +0 -20
  709. package/components/project/tagSelector/popupListItem/types.d.ts +0 -33
  710. package/components/project/tagSelector/popupOpener/popupOpener.vue.d.ts +0 -27
  711. package/components/project/tagSelector/popupOpener/types.d.ts +0 -62
  712. package/components/project/tagSelector/tagIcon/tagIcon.vue.d.ts +0 -4
  713. package/components/project/tagSelector/tagIcon/types.d.ts +0 -21
  714. package/components/project/tagSelector/tagSelector.vue.d.ts +0 -37
  715. package/components/project/tagSelector/tagsDefaults.d.ts +0 -3
  716. package/components/project/tagSelector/types.d.ts +0 -138
  717. package/components/project/tagSelector/utils/el.d.ts +0 -19
  718. package/components/project/tagSelector/utils/utils.d.ts +0 -14
  719. package/components/tabs/tabs/content.vue.d.ts +0 -19
  720. package/components/tabs/tabs/tab.vue.d.ts +0 -19
  721. package/components/tabs/tabs/tabs.d.ts +0 -19
  722. package/components/tabs/tabs/tabs.vue.d.ts +0 -21
  723. package/components/tabs/tabs.d.ts +0 -7
  724. package/components/tabsView/tabsView/menu.vue.d.ts +0 -32
  725. package/components/tabsView/tabsView/menuDelimeter.vue.d.ts +0 -3
  726. package/components/tabsView/tabsView/menuItem.vue.d.ts +0 -23
  727. package/components/tabsView/tabsView/menuTitle.vue.d.ts +0 -20
  728. package/components/tabsView/tabsView/store.d.ts +0 -192
  729. package/components/tabsView/tabsView/tabsView.d.ts +0 -98
  730. package/components/tabsView/tabsView/tabsView.vue.d.ts +0 -34
  731. package/components/tabsView/tabsView/utils.d.ts +0 -11
  732. package/components/tabsView/tabsView.d.ts +0 -7
  733. package/core/app.amd.js +0 -2
  734. package/core/app.amd.js.map +0 -1
  735. package/core/app.d.ts +0 -8
  736. package/core/app.js +0 -402
  737. package/core/app.js.map +0 -1
  738. package/core/core/core.d.ts +0 -113
  739. package/core/core/events/resize.d.ts +0 -16
  740. package/core/core/events.d.ts +0 -15
  741. package/core/core/options.d.ts +0 -46
  742. package/core/core/preloaders.d.ts +0 -19
  743. package/core/core/state.d.ts +0 -49
  744. package/core/directives/data.d.ts +0 -10
  745. package/core/directives/focus.d.ts +0 -10
  746. package/core/directives/scrollIntoView.d.ts +0 -3
  747. package/core/directives/scrollShadow.d.ts +0 -15
  748. package/core/directives/sticky.d.ts +0 -10
  749. package/core/directives/swimUp.d.ts +0 -15
  750. package/core/directives/tooltip.d.ts +0 -10
  751. package/core/plugins/core.d.ts +0 -60
  752. package/core/plugins/i18n.d.ts +0 -107
  753. package/core/plugins/piniaTPA.d.ts +0 -17
  754. package/core/utils/check.d.ts +0 -26
  755. package/core/utils/clipboard.d.ts +0 -12
  756. package/core/utils/date.d.ts +0 -52
  757. package/core/utils/device.d.ts +0 -50
  758. package/core/utils/dom.d.ts +0 -94
  759. package/core/utils/image.d.ts +0 -16
  760. package/core/utils/keyboard.d.ts +0 -8
  761. package/core/utils/lodash.d.ts +0 -6
  762. package/core/utils/number.d.ts +0 -17
  763. package/core/utils/price.d.ts +0 -10
  764. package/core/utils/route.d.ts +0 -33
  765. package/core/utils/scroll.d.ts +0 -32
  766. package/core/utils/searchers.d.ts +0 -38
  767. package/core/utils/store/localStorage.d.ts +0 -6
  768. package/core/utils/store/plugin.d.ts +0 -24
  769. package/core/utils/store/store.d.ts +0 -34
  770. package/core/utils/store.d.ts +0 -6
  771. package/core/utils/string.d.ts +0 -86
  772. package/core/utils/system.d.ts +0 -25
  773. package/core/utils/url.d.ts +0 -36
  774. package/dialog/dialog.amd.js +0 -2
  775. package/dialog/dialog.amd.js.map +0 -1
  776. package/dialog/dialog.d.ts +0 -2
  777. package/dialog/dialog.js +0 -194
  778. package/dialog/dialog.js.map +0 -1
  779. package/forms/forms.amd.js +0 -2
  780. package/forms/forms.amd.js.map +0 -1
  781. package/forms/forms.d.ts +0 -2
  782. package/forms/forms.js +0 -17
  783. package/forms/forms.js.map +0 -1
  784. package/forms/helpers.amd.js +0 -2
  785. package/forms/helpers.amd.js.map +0 -1
  786. package/forms/helpers.d.ts +0 -2
  787. package/forms/helpers.js +0 -10
  788. package/forms/helpers.js.map +0 -1
  789. package/formsExt/formsExt.amd.js +0 -2
  790. package/formsExt/formsExt.amd.js.map +0 -1
  791. package/formsExt/formsExt.d.ts +0 -2
  792. package/formsExt/formsExt.js +0 -483
  793. package/formsExt/formsExt.js.map +0 -1
  794. package/icomoon/Read Me.txt +0 -7
  795. package/icomoon/Topvisor icons.json +0 -6145
  796. package/icomoon/demo-files/demo.css +0 -158
  797. package/icomoon/demo-files/demo.js +0 -30
  798. package/icomoon/demo.html +0 -3488
  799. package/icomoon/fonts/Topvisor-2.eot +0 -0
  800. package/icomoon/fonts/Topvisor-2.svg +0 -272
  801. package/icomoon/fonts/Topvisor-2.ttf +0 -0
  802. package/icomoon/fonts/Topvisor-2.woff +0 -0
  803. package/icomoon/selection.json +0 -1
  804. package/icomoon/style.css +0 -765
  805. package/jquery-ui.min.css +0 -6
  806. package/layout/layout.amd.js +0 -2
  807. package/layout/layout.amd.js.map +0 -1
  808. package/layout/layout.d.ts +0 -2
  809. package/layout/layout.js +0 -62
  810. package/layout/layout.js.map +0 -1
  811. package/popup/popup.amd.js +0 -2
  812. package/popup/popup.amd.js.map +0 -1
  813. package/popup/popup.d.ts +0 -2
  814. package/popup/popup.js +0 -243
  815. package/popup/popup.js.map +0 -1
  816. package/popup/worker.amd.js +0 -2
  817. package/popup/worker.amd.js.map +0 -1
  818. package/popup/worker.d.ts +0 -2
  819. package/popup/worker.js +0 -129
  820. package/popup/worker.js.map +0 -1
  821. package/project/project.amd.js +0 -2
  822. package/project/project.amd.js.map +0 -1
  823. package/project/project.d.ts +0 -2
  824. package/project/project.js +0 -975
  825. package/project/project.js.map +0 -1
  826. package/require/css.amd.js +0 -12
  827. package/tabs/tabs.amd.js +0 -2
  828. package/tabs/tabs.amd.js.map +0 -1
  829. package/tabs/tabs.d.ts +0 -2
  830. package/tabs/tabs.js +0 -81
  831. package/tabs/tabs.js.map +0 -1
  832. package/tabsView/tabsView.amd.js +0 -2
  833. package/tabsView/tabsView.amd.js.map +0 -1
  834. package/tabsView/tabsView.d.ts +0 -2
  835. package/tabsView/tabsView.js +0 -306
  836. package/tabsView/tabsView.js.map +0 -1
  837. package/utils/check.amd.js +0 -2
  838. package/utils/check.amd.js.map +0 -1
  839. package/utils/check.d.ts +0 -2
  840. package/utils/check.js +0 -26
  841. package/utils/check.js.map +0 -1
  842. package/utils/clipboard.amd.js +0 -6
  843. package/utils/clipboard.amd.js.map +0 -1
  844. package/utils/clipboard.d.ts +0 -2
  845. package/utils/clipboard.js +0 -33
  846. package/utils/clipboard.js.map +0 -1
  847. package/utils/date.amd.js +0 -2
  848. package/utils/date.amd.js.map +0 -1
  849. package/utils/date.d.ts +0 -2
  850. package/utils/date.js +0 -11
  851. package/utils/date.js.map +0 -1
  852. package/utils/device.amd.js +0 -2
  853. package/utils/device.amd.js.map +0 -1
  854. package/utils/device.d.ts +0 -2
  855. package/utils/device.js +0 -15
  856. package/utils/device.js.map +0 -1
  857. package/utils/dom.amd.js +0 -2
  858. package/utils/dom.amd.js.map +0 -1
  859. package/utils/dom.d.ts +0 -6
  860. package/utils/dom.js +0 -75
  861. package/utils/dom.js.map +0 -1
  862. package/utils/image.amd.js +0 -12
  863. package/utils/image.amd.js.map +0 -1
  864. package/utils/image.d.ts +0 -2
  865. package/utils/image.js +0 -23
  866. package/utils/image.js.map +0 -1
  867. package/utils/keyboard.amd.js +0 -2
  868. package/utils/keyboard.amd.js.map +0 -1
  869. package/utils/keyboard.d.ts +0 -2
  870. package/utils/keyboard.js +0 -12
  871. package/utils/keyboard.js.map +0 -1
  872. package/utils/lodash.amd.js +0 -2
  873. package/utils/lodash.amd.js.map +0 -1
  874. package/utils/lodash.d.ts +0 -2
  875. package/utils/lodash.js +0 -9
  876. package/utils/lodash.js.map +0 -1
  877. package/utils/number.amd.js +0 -2
  878. package/utils/number.amd.js.map +0 -1
  879. package/utils/number.d.ts +0 -2
  880. package/utils/number.js +0 -13
  881. package/utils/number.js.map +0 -1
  882. package/utils/price.amd.js +0 -2
  883. package/utils/price.amd.js.map +0 -1
  884. package/utils/price.d.ts +0 -2
  885. package/utils/price.js +0 -10
  886. package/utils/price.js.map +0 -1
  887. package/utils/route.amd.js +0 -2
  888. package/utils/route.amd.js.map +0 -1
  889. package/utils/route.d.ts +0 -2
  890. package/utils/route.js +0 -31
  891. package/utils/route.js.map +0 -1
  892. package/utils/scroll.amd.js +0 -2
  893. package/utils/scroll.amd.js.map +0 -1
  894. package/utils/scroll.d.ts +0 -2
  895. package/utils/scroll.js +0 -45
  896. package/utils/scroll.js.map +0 -1
  897. package/utils/searchers.amd.js +0 -2
  898. package/utils/searchers.amd.js.map +0 -1
  899. package/utils/searchers.d.ts +0 -2
  900. package/utils/searchers.js +0 -128
  901. package/utils/searchers.js.map +0 -1
  902. package/utils/store.amd.js +0 -2
  903. package/utils/store.amd.js.map +0 -1
  904. package/utils/store.d.ts +0 -2
  905. package/utils/store.js +0 -7
  906. package/utils/store.js.map +0 -1
  907. package/utils/string.amd.js +0 -2
  908. package/utils/string.amd.js.map +0 -1
  909. package/utils/string.d.ts +0 -2
  910. package/utils/string.js +0 -139
  911. package/utils/string.js.map +0 -1
  912. package/utils/system.amd.js +0 -2
  913. package/utils/system.amd.js.map +0 -1
  914. package/utils/system.d.ts +0 -2
  915. package/utils/system.js +0 -29
  916. package/utils/system.js.map +0 -1
  917. package/utils/url.amd.js +0 -3
  918. package/utils/url.amd.js.map +0 -1
  919. package/utils/url.d.ts +0 -2
  920. package/utils/url.js +0 -48
  921. package/utils/url.js.map +0 -1
@@ -0,0 +1,3558 @@
1
+ <!doctype html>
2
+ <html>
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <title>IcoMoon Demo</title>
6
+ <meta name="description" content="An Icon Font Generated By IcoMoon.io">
7
+ <meta name="viewport" content="width=device-width, initial-scale=1">
8
+ <link rel="stylesheet" href="demo-files/demo.css">
9
+ <link rel="stylesheet" href="style.css"></head>
10
+ <body>
11
+ <div class="bgc1 clearfix">
12
+ <h1 class="mhmm mvm"><span class="fgc1">Font Name:</span> Topvisor-2 <small class="fgc1">(Glyphs:&nbsp;251)</small></h1>
13
+ </div>
14
+ <div class="clearfix mhl ptl">
15
+ <h1 class="mvm mtn fgc1">Grid Size: 24</h1>
16
+ <div class="glyph fs1">
17
+ <div class="clearfix bshadow0 pbs">
18
+ <span class="icon2-searcher-0-ru"></span>
19
+ <span class="mls"> icon2-searcher-0-ru</span>
20
+ </div>
21
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
22
+ <input type="text" readonly value="e97a" class="unit size1of2" />
23
+ <input type="text" maxlength="1" readonly value="&#xe97a;" class="unitRight size1of2 talign-right" />
24
+ </fieldset>
25
+ <div class="fs0 bshadow0 clearfix hidden-true">
26
+ <span class="unit pvs fgc1">liga: </span>
27
+ <input type="text" readonly value="" class="liga unitRight" />
28
+ </div>
29
+ </div>
30
+ <div class="glyph fs1">
31
+ <div class="clearfix bshadow0 pbs">
32
+ <span class="icon2-searcher-0-en"></span>
33
+ <span class="mls"> icon2-searcher-0-en</span>
34
+ </div>
35
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
36
+ <input type="text" readonly value="e986" class="unit size1of2" />
37
+ <input type="text" maxlength="1" readonly value="&#xe986;" class="unitRight size1of2 talign-right" />
38
+ </fieldset>
39
+ <div class="fs0 bshadow0 clearfix hidden-true">
40
+ <span class="unit pvs fgc1">liga: </span>
41
+ <input type="text" readonly value="" class="liga unitRight" />
42
+ </div>
43
+ </div>
44
+ <div class="glyph fs1">
45
+ <div class="clearfix bshadow0 pbs">
46
+ <span class="icon2-searcher-1"></span>
47
+ <span class="mls"> icon2-searcher-1</span>
48
+ </div>
49
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
50
+ <input type="text" readonly value="e97f" class="unit size1of2" />
51
+ <input type="text" maxlength="1" readonly value="&#xe97f;" class="unitRight size1of2 talign-right" />
52
+ </fieldset>
53
+ <div class="fs0 bshadow0 clearfix hidden-true">
54
+ <span class="unit pvs fgc1">liga: </span>
55
+ <input type="text" readonly value="" class="liga unitRight" />
56
+ </div>
57
+ </div>
58
+ <div class="glyph fs1">
59
+ <div class="clearfix bshadow0 pbs">
60
+ <span class="icon2-searcher-2"></span>
61
+ <span class="mls"> icon2-searcher-2</span>
62
+ </div>
63
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
64
+ <input type="text" readonly value="e97d" class="unit size1of2" />
65
+ <input type="text" maxlength="1" readonly value="&#xe97d;" class="unitRight size1of2 talign-right" />
66
+ </fieldset>
67
+ <div class="fs0 bshadow0 clearfix hidden-true">
68
+ <span class="unit pvs fgc1">liga: </span>
69
+ <input type="text" readonly value="" class="liga unitRight" />
70
+ </div>
71
+ </div>
72
+ <div class="glyph fs1">
73
+ <div class="clearfix bshadow0 pbs">
74
+ <span class="icon2-searcher-4"></span>
75
+ <span class="mls"> icon2-searcher-4</span>
76
+ </div>
77
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
78
+ <input type="text" readonly value="e97b" class="unit size1of2" />
79
+ <input type="text" maxlength="1" readonly value="&#xe97b;" class="unitRight size1of2 talign-right" />
80
+ </fieldset>
81
+ <div class="fs0 bshadow0 clearfix hidden-true">
82
+ <span class="unit pvs fgc1">liga: </span>
83
+ <input type="text" readonly value="" class="liga unitRight" />
84
+ </div>
85
+ </div>
86
+ <div class="glyph fs1">
87
+ <div class="clearfix bshadow0 pbs">
88
+ <span class="icon2-searcher-5"></span>
89
+ <span class="mls"> icon2-searcher-5</span>
90
+ </div>
91
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
92
+ <input type="text" readonly value="e987" class="unit size1of2" />
93
+ <input type="text" maxlength="1" readonly value="&#xe987;" class="unitRight size1of2 talign-right" />
94
+ </fieldset>
95
+ <div class="fs0 bshadow0 clearfix hidden-true">
96
+ <span class="unit pvs fgc1">liga: </span>
97
+ <input type="text" readonly value="" class="liga unitRight" />
98
+ </div>
99
+ </div>
100
+ <div class="glyph fs1">
101
+ <div class="clearfix bshadow0 pbs">
102
+ <span class="icon2-searcher-6"></span>
103
+ <span class="mls"> icon2-searcher-6</span>
104
+ </div>
105
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
106
+ <input type="text" readonly value="e97e" class="unit size1of2" />
107
+ <input type="text" maxlength="1" readonly value="&#xe97e;" class="unitRight size1of2 talign-right" />
108
+ </fieldset>
109
+ <div class="fs0 bshadow0 clearfix hidden-true">
110
+ <span class="unit pvs fgc1">liga: </span>
111
+ <input type="text" readonly value="" class="liga unitRight" />
112
+ </div>
113
+ </div>
114
+ <div class="glyph fs1">
115
+ <div class="clearfix bshadow0 pbs">
116
+ <span class="icon2-searcher-7"></span>
117
+ <span class="mls"> icon2-searcher-7</span>
118
+ </div>
119
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
120
+ <input type="text" readonly value="e97c" class="unit size1of2" />
121
+ <input type="text" maxlength="1" readonly value="&#xe97c;" class="unitRight size1of2 talign-right" />
122
+ </fieldset>
123
+ <div class="fs0 bshadow0 clearfix hidden-true">
124
+ <span class="unit pvs fgc1">liga: </span>
125
+ <input type="text" readonly value="" class="liga unitRight" />
126
+ </div>
127
+ </div>
128
+ <div class="glyph fs1">
129
+ <div class="clearfix bshadow0 pbs">
130
+ <span class="icon2-searcher-8"></span>
131
+ <span class="mls"> icon2-searcher-8</span>
132
+ </div>
133
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
134
+ <input type="text" readonly value="e980" class="unit size1of2" />
135
+ <input type="text" maxlength="1" readonly value="&#xe980;" class="unitRight size1of2 talign-right" />
136
+ </fieldset>
137
+ <div class="fs0 bshadow0 clearfix hidden-true">
138
+ <span class="unit pvs fgc1">liga: </span>
139
+ <input type="text" readonly value="" class="liga unitRight" />
140
+ </div>
141
+ </div>
142
+ <div class="glyph fs1">
143
+ <div class="clearfix bshadow0 pbs">
144
+ <span class="icon2-searcher-9"></span>
145
+ <span class="mls"> icon2-searcher-9</span>
146
+ </div>
147
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
148
+ <input type="text" readonly value="e988" class="unit size1of2" />
149
+ <input type="text" maxlength="1" readonly value="&#xe988;" class="unitRight size1of2 talign-right" />
150
+ </fieldset>
151
+ <div class="fs0 bshadow0 clearfix hidden-true">
152
+ <span class="unit pvs fgc1">liga: </span>
153
+ <input type="text" readonly value="" class="liga unitRight" />
154
+ </div>
155
+ </div>
156
+ <div class="glyph fs1">
157
+ <div class="clearfix bshadow0 pbs">
158
+ <span class="icon2-searcher-101"></span>
159
+ <span class="mls"> icon2-searcher-101</span>
160
+ </div>
161
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
162
+ <input type="text" readonly value="e947" class="unit size1of2" />
163
+ <input type="text" maxlength="1" readonly value="&#xe947;" class="unitRight size1of2 talign-right" />
164
+ </fieldset>
165
+ <div class="fs0 bshadow0 clearfix hidden-true">
166
+ <span class="unit pvs fgc1">liga: </span>
167
+ <input type="text" readonly value="" class="liga unitRight" />
168
+ </div>
169
+ </div>
170
+ <div class="glyph fs1">
171
+ <div class="clearfix bshadow0 pbs">
172
+ <span class="icon2-searcher-102"></span>
173
+ <span class="mls"> icon2-searcher-102</span>
174
+ </div>
175
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
176
+ <input type="text" readonly value="e943" class="unit size1of2" />
177
+ <input type="text" maxlength="1" readonly value="&#xe943;" class="unitRight size1of2 talign-right" />
178
+ </fieldset>
179
+ <div class="fs0 bshadow0 clearfix hidden-true">
180
+ <span class="unit pvs fgc1">liga: </span>
181
+ <input type="text" readonly value="" class="liga unitRight" />
182
+ </div>
183
+ </div>
184
+ <div class="glyph fs1">
185
+ <div class="clearfix bshadow0 pbs">
186
+ <span class="icon2-searcher-103"></span>
187
+ <span class="mls"> icon2-searcher-103</span>
188
+ </div>
189
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
190
+ <input type="text" readonly value="e946" class="unit size1of2" />
191
+ <input type="text" maxlength="1" readonly value="&#xe946;" class="unitRight size1of2 talign-right" />
192
+ </fieldset>
193
+ <div class="fs0 bshadow0 clearfix hidden-true">
194
+ <span class="unit pvs fgc1">liga: </span>
195
+ <input type="text" readonly value="" class="liga unitRight" />
196
+ </div>
197
+ </div>
198
+ <div class="glyph fs1">
199
+ <div class="clearfix bshadow0 pbs">
200
+ <span class="icon2-searcher-105"></span>
201
+ <span class="mls"> icon2-searcher-105</span>
202
+ </div>
203
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
204
+ <input type="text" readonly value="e944" class="unit size1of2" />
205
+ <input type="text" maxlength="1" readonly value="&#xe944;" class="unitRight size1of2 talign-right" />
206
+ </fieldset>
207
+ <div class="fs0 bshadow0 clearfix hidden-true">
208
+ <span class="unit pvs fgc1">liga: </span>
209
+ <input type="text" readonly value="" class="liga unitRight" />
210
+ </div>
211
+ </div>
212
+ <div class="glyph fs1">
213
+ <div class="clearfix bshadow0 pbs">
214
+ <span class="icon2-searcher-106"></span>
215
+ <span class="mls"> icon2-searcher-106</span>
216
+ </div>
217
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
218
+ <input type="text" readonly value="e945" class="unit size1of2" />
219
+ <input type="text" maxlength="1" readonly value="&#xe945;" class="unitRight size1of2 talign-right" />
220
+ </fieldset>
221
+ <div class="fs0 bshadow0 clearfix hidden-true">
222
+ <span class="unit pvs fgc1">liga: </span>
223
+ <input type="text" readonly value="" class="liga unitRight" />
224
+ </div>
225
+ </div>
226
+ <div class="glyph fs1">
227
+ <div class="clearfix bshadow0 pbs">
228
+ <span class="icon2-searcher-107"></span>
229
+ <span class="mls"> icon2-searcher-107</span>
230
+ </div>
231
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
232
+ <input type="text" readonly value="e989" class="unit size1of2" />
233
+ <input type="text" maxlength="1" readonly value="&#xe989;" class="unitRight size1of2 talign-right" />
234
+ </fieldset>
235
+ <div class="fs0 bshadow0 clearfix hidden-true">
236
+ <span class="unit pvs fgc1">liga: </span>
237
+ <input type="text" readonly value="" class="liga unitRight" />
238
+ </div>
239
+ </div>
240
+ <div class="glyph fs1">
241
+ <div class="clearfix bshadow0 pbs">
242
+ <span class="icon2-arrows-expand-horizontal"></span>
243
+ <span class="mls"> icon2-arrows-expand-horizontal</span>
244
+ </div>
245
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
246
+ <input type="text" readonly value="e9e3" class="unit size1of2" />
247
+ <input type="text" maxlength="1" readonly value="&#xe9e3;" class="unitRight size1of2 talign-right" />
248
+ </fieldset>
249
+ <div class="fs0 bshadow0 clearfix hidden-true">
250
+ <span class="unit pvs fgc1">liga: </span>
251
+ <input type="text" readonly value="" class="liga unitRight" />
252
+ </div>
253
+ </div>
254
+ <div class="glyph fs1">
255
+ <div class="clearfix bshadow0 pbs">
256
+ <span class="icon2-arrows-expand-vertical"></span>
257
+ <span class="mls"> icon2-arrows-expand-vertical</span>
258
+ </div>
259
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
260
+ <input type="text" readonly value="e9e4" class="unit size1of2" />
261
+ <input type="text" maxlength="1" readonly value="&#xe9e4;" class="unitRight size1of2 talign-right" />
262
+ </fieldset>
263
+ <div class="fs0 bshadow0 clearfix hidden-true">
264
+ <span class="unit pvs fgc1">liga: </span>
265
+ <input type="text" readonly value="" class="liga unitRight" />
266
+ </div>
267
+ </div>
268
+ <div class="glyph fs1">
269
+ <div class="clearfix bshadow0 pbs">
270
+ <span class="icon2-arrows-in"></span>
271
+ <span class="mls"> icon2-arrows-in</span>
272
+ </div>
273
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
274
+ <input type="text" readonly value="e9e5" class="unit size1of2" />
275
+ <input type="text" maxlength="1" readonly value="&#xe9e5;" class="unitRight size1of2 talign-right" />
276
+ </fieldset>
277
+ <div class="fs0 bshadow0 clearfix hidden-true">
278
+ <span class="unit pvs fgc1">liga: </span>
279
+ <input type="text" readonly value="" class="liga unitRight" />
280
+ </div>
281
+ </div>
282
+ <div class="glyph fs1">
283
+ <div class="clearfix bshadow0 pbs">
284
+ <span class="icon2-arrows-out"></span>
285
+ <span class="mls"> icon2-arrows-out</span>
286
+ </div>
287
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
288
+ <input type="text" readonly value="e9e6" class="unit size1of2" />
289
+ <input type="text" maxlength="1" readonly value="&#xe9e6;" class="unitRight size1of2 talign-right" />
290
+ </fieldset>
291
+ <div class="fs0 bshadow0 clearfix hidden-true">
292
+ <span class="unit pvs fgc1">liga: </span>
293
+ <input type="text" readonly value="" class="liga unitRight" />
294
+ </div>
295
+ </div>
296
+ <div class="glyph fs1">
297
+ <div class="clearfix bshadow0 pbs">
298
+ <span class="icon2-arrows-vertical-up"></span>
299
+ <span class="mls"> icon2-arrows-vertical-up</span>
300
+ </div>
301
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
302
+ <input type="text" readonly value="e9e7" class="unit size1of2" />
303
+ <input type="text" maxlength="1" readonly value="&#xe9e7;" class="unitRight size1of2 talign-right" />
304
+ </fieldset>
305
+ <div class="fs0 bshadow0 clearfix hidden-true">
306
+ <span class="unit pvs fgc1">liga: </span>
307
+ <input type="text" readonly value="" class="liga unitRight" />
308
+ </div>
309
+ </div>
310
+ <div class="glyph fs1">
311
+ <div class="clearfix bshadow0 pbs">
312
+ <span class="icon2-chevron-contract"></span>
313
+ <span class="mls"> icon2-chevron-contract</span>
314
+ </div>
315
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
316
+ <input type="text" readonly value="e9e9" class="unit size1of2" />
317
+ <input type="text" maxlength="1" readonly value="&#xe9e9;" class="unitRight size1of2 talign-right" />
318
+ </fieldset>
319
+ <div class="fs0 bshadow0 clearfix hidden-true">
320
+ <span class="unit pvs fgc1">liga: </span>
321
+ <input type="text" readonly value="" class="liga unitRight" />
322
+ </div>
323
+ </div>
324
+ <div class="glyph fs1">
325
+ <div class="clearfix bshadow0 pbs">
326
+ <span class="icon2-chevron-expand"></span>
327
+ <span class="mls"> icon2-chevron-expand</span>
328
+ </div>
329
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
330
+ <input type="text" readonly value="e9e8" class="unit size1of2" />
331
+ <input type="text" maxlength="1" readonly value="&#xe9e8;" class="unitRight size1of2 talign-right" />
332
+ </fieldset>
333
+ <div class="fs0 bshadow0 clearfix hidden-true">
334
+ <span class="unit pvs fgc1">liga: </span>
335
+ <input type="text" readonly value="" class="liga unitRight" />
336
+ </div>
337
+ </div>
338
+ <div class="glyph fs1">
339
+ <div class="clearfix bshadow0 pbs">
340
+ <span class="icon2-select"></span>
341
+ <span class="mls"> icon2-select</span>
342
+ </div>
343
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
344
+ <input type="text" readonly value="e9ce" class="unit size1of2" />
345
+ <input type="text" maxlength="1" readonly value="&#xe9ce;" class="unitRight size1of2 talign-right" />
346
+ </fieldset>
347
+ <div class="fs0 bshadow0 clearfix hidden-true">
348
+ <span class="unit pvs fgc1">liga: </span>
349
+ <input type="text" readonly value="" class="liga unitRight" />
350
+ </div>
351
+ </div>
352
+ <div class="glyph fs1">
353
+ <div class="clearfix bshadow0 pbs">
354
+ <span class="icon2-chevron_down-s"></span>
355
+ <span class="mls"> icon2-chevron_down-s</span>
356
+ </div>
357
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
358
+ <input type="text" readonly value="e9ba" class="unit size1of2" />
359
+ <input type="text" maxlength="1" readonly value="&#xe9ba;" class="unitRight size1of2 talign-right" />
360
+ </fieldset>
361
+ <div class="fs0 bshadow0 clearfix hidden-true">
362
+ <span class="unit pvs fgc1">liga: </span>
363
+ <input type="text" readonly value="" class="liga unitRight" />
364
+ </div>
365
+ </div>
366
+ <div class="glyph fs1">
367
+ <div class="clearfix bshadow0 pbs">
368
+ <span class="icon2-chevron_up-s"></span>
369
+ <span class="mls"> icon2-chevron_up-s</span>
370
+ </div>
371
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
372
+ <input type="text" readonly value="e9bb" class="unit size1of2" />
373
+ <input type="text" maxlength="1" readonly value="&#xe9bb;" class="unitRight size1of2 talign-right" />
374
+ </fieldset>
375
+ <div class="fs0 bshadow0 clearfix hidden-true">
376
+ <span class="unit pvs fgc1">liga: </span>
377
+ <input type="text" readonly value="" class="liga unitRight" />
378
+ </div>
379
+ </div>
380
+ <div class="glyph fs1">
381
+ <div class="clearfix bshadow0 pbs">
382
+ <span class="icon2-chevron_left-s"></span>
383
+ <span class="mls"> icon2-chevron_left-s</span>
384
+ </div>
385
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
386
+ <input type="text" readonly value="e9bc" class="unit size1of2" />
387
+ <input type="text" maxlength="1" readonly value="&#xe9bc;" class="unitRight size1of2 talign-right" />
388
+ </fieldset>
389
+ <div class="fs0 bshadow0 clearfix hidden-true">
390
+ <span class="unit pvs fgc1">liga: </span>
391
+ <input type="text" readonly value="" class="liga unitRight" />
392
+ </div>
393
+ </div>
394
+ <div class="glyph fs1">
395
+ <div class="clearfix bshadow0 pbs">
396
+ <span class="icon2-chevron_right-s"></span>
397
+ <span class="mls"> icon2-chevron_right-s</span>
398
+ </div>
399
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
400
+ <input type="text" readonly value="e9bd" class="unit size1of2" />
401
+ <input type="text" maxlength="1" readonly value="&#xe9bd;" class="unitRight size1of2 talign-right" />
402
+ </fieldset>
403
+ <div class="fs0 bshadow0 clearfix hidden-true">
404
+ <span class="unit pvs fgc1">liga: </span>
405
+ <input type="text" readonly value="" class="liga unitRight" />
406
+ </div>
407
+ </div>
408
+ <div class="glyph fs1">
409
+ <div class="clearfix bshadow0 pbs">
410
+ <span class="icon2-arrow-down"></span>
411
+ <span class="mls"> icon2-arrow-down</span>
412
+ </div>
413
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
414
+ <input type="text" readonly value="e900" class="unit size1of2" />
415
+ <input type="text" maxlength="1" readonly value="&#xe900;" class="unitRight size1of2 talign-right" />
416
+ </fieldset>
417
+ <div class="fs0 bshadow0 clearfix hidden-true">
418
+ <span class="unit pvs fgc1">liga: </span>
419
+ <input type="text" readonly value="" class="liga unitRight" />
420
+ </div>
421
+ </div>
422
+ <div class="glyph fs1">
423
+ <div class="clearfix bshadow0 pbs">
424
+ <span class="icon2-arrow-left"></span>
425
+ <span class="mls"> icon2-arrow-left</span>
426
+ </div>
427
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
428
+ <input type="text" readonly value="e901" class="unit size1of2" />
429
+ <input type="text" maxlength="1" readonly value="&#xe901;" class="unitRight size1of2 talign-right" />
430
+ </fieldset>
431
+ <div class="fs0 bshadow0 clearfix hidden-true">
432
+ <span class="unit pvs fgc1">liga: </span>
433
+ <input type="text" readonly value="" class="liga unitRight" />
434
+ </div>
435
+ </div>
436
+ <div class="glyph fs1">
437
+ <div class="clearfix bshadow0 pbs">
438
+ <span class="icon2-arrow-right"></span>
439
+ <span class="mls"> icon2-arrow-right</span>
440
+ </div>
441
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
442
+ <input type="text" readonly value="e902" class="unit size1of2" />
443
+ <input type="text" maxlength="1" readonly value="&#xe902;" class="unitRight size1of2 talign-right" />
444
+ </fieldset>
445
+ <div class="fs0 bshadow0 clearfix hidden-true">
446
+ <span class="unit pvs fgc1">liga: </span>
447
+ <input type="text" readonly value="" class="liga unitRight" />
448
+ </div>
449
+ </div>
450
+ <div class="glyph fs1">
451
+ <div class="clearfix bshadow0 pbs">
452
+ <span class="icon2-arrow-up"></span>
453
+ <span class="mls"> icon2-arrow-up</span>
454
+ </div>
455
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
456
+ <input type="text" readonly value="e903" class="unit size1of2" />
457
+ <input type="text" maxlength="1" readonly value="&#xe903;" class="unitRight size1of2 talign-right" />
458
+ </fieldset>
459
+ <div class="fs0 bshadow0 clearfix hidden-true">
460
+ <span class="unit pvs fgc1">liga: </span>
461
+ <input type="text" readonly value="" class="liga unitRight" />
462
+ </div>
463
+ </div>
464
+ <div class="glyph fs1">
465
+ <div class="clearfix bshadow0 pbs">
466
+ <span class="icon2-chevron-down"></span>
467
+ <span class="mls"> icon2-chevron-down</span>
468
+ </div>
469
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
470
+ <input type="text" readonly value="e90c" class="unit size1of2" />
471
+ <input type="text" maxlength="1" readonly value="&#xe90c;" class="unitRight size1of2 talign-right" />
472
+ </fieldset>
473
+ <div class="fs0 bshadow0 clearfix hidden-true">
474
+ <span class="unit pvs fgc1">liga: </span>
475
+ <input type="text" readonly value="" class="liga unitRight" />
476
+ </div>
477
+ </div>
478
+ <div class="glyph fs1">
479
+ <div class="clearfix bshadow0 pbs">
480
+ <span class="icon2-chevron-left"></span>
481
+ <span class="mls"> icon2-chevron-left</span>
482
+ </div>
483
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
484
+ <input type="text" readonly value="e90d" class="unit size1of2" />
485
+ <input type="text" maxlength="1" readonly value="&#xe90d;" class="unitRight size1of2 talign-right" />
486
+ </fieldset>
487
+ <div class="fs0 bshadow0 clearfix hidden-true">
488
+ <span class="unit pvs fgc1">liga: </span>
489
+ <input type="text" readonly value="" class="liga unitRight" />
490
+ </div>
491
+ </div>
492
+ <div class="glyph fs1">
493
+ <div class="clearfix bshadow0 pbs">
494
+ <span class="icon2-chevron-right"></span>
495
+ <span class="mls"> icon2-chevron-right</span>
496
+ </div>
497
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
498
+ <input type="text" readonly value="e90e" class="unit size1of2" />
499
+ <input type="text" maxlength="1" readonly value="&#xe90e;" class="unitRight size1of2 talign-right" />
500
+ </fieldset>
501
+ <div class="fs0 bshadow0 clearfix hidden-true">
502
+ <span class="unit pvs fgc1">liga: </span>
503
+ <input type="text" readonly value="" class="liga unitRight" />
504
+ </div>
505
+ </div>
506
+ <div class="glyph fs1">
507
+ <div class="clearfix bshadow0 pbs">
508
+ <span class="icon2-chevron-up"></span>
509
+ <span class="mls"> icon2-chevron-up</span>
510
+ </div>
511
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
512
+ <input type="text" readonly value="e90f" class="unit size1of2" />
513
+ <input type="text" maxlength="1" readonly value="&#xe90f;" class="unitRight size1of2 talign-right" />
514
+ </fieldset>
515
+ <div class="fs0 bshadow0 clearfix hidden-true">
516
+ <span class="unit pvs fgc1">liga: </span>
517
+ <input type="text" readonly value="" class="liga unitRight" />
518
+ </div>
519
+ </div>
520
+ <div class="glyph fs1">
521
+ <div class="clearfix bshadow0 pbs">
522
+ <span class="icon2-window"></span>
523
+ <span class="mls"> icon2-window</span>
524
+ </div>
525
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
526
+ <input type="text" readonly value="e9c5" class="unit size1of2" />
527
+ <input type="text" maxlength="1" readonly value="&#xe9c5;" class="unitRight size1of2 talign-right" />
528
+ </fieldset>
529
+ <div class="fs0 bshadow0 clearfix hidden-true">
530
+ <span class="unit pvs fgc1">liga: </span>
531
+ <input type="text" readonly value="" class="liga unitRight" />
532
+ </div>
533
+ </div>
534
+ <div class="glyph fs1">
535
+ <div class="clearfix bshadow0 pbs">
536
+ <span class="icon2-analysis"></span>
537
+ <span class="mls"> icon2-analysis</span>
538
+ </div>
539
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
540
+ <input type="text" readonly value="e979" class="unit size1of2" />
541
+ <input type="text" maxlength="1" readonly value="&#xe979;" class="unitRight size1of2 talign-right" />
542
+ </fieldset>
543
+ <div class="fs0 bshadow0 clearfix hidden-true">
544
+ <span class="unit pvs fgc1">liga: </span>
545
+ <input type="text" readonly value="" class="liga unitRight" />
546
+ </div>
547
+ </div>
548
+ <div class="glyph fs1">
549
+ <div class="clearfix bshadow0 pbs">
550
+ <span class="icon2-analysis-fill"></span>
551
+ <span class="mls"> icon2-analysis-fill</span>
552
+ </div>
553
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
554
+ <input type="text" readonly value="e960" class="unit size1of2" />
555
+ <input type="text" maxlength="1" readonly value="&#xe960;" class="unitRight size1of2 talign-right" />
556
+ </fieldset>
557
+ <div class="fs0 bshadow0 clearfix hidden-true">
558
+ <span class="unit pvs fgc1">liga: </span>
559
+ <input type="text" readonly value="" class="liga unitRight" />
560
+ </div>
561
+ </div>
562
+ <div class="glyph fs1">
563
+ <div class="clearfix bshadow0 pbs">
564
+ <span class="icon2-hammer"></span>
565
+ <span class="mls"> icon2-hammer</span>
566
+ </div>
567
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
568
+ <input type="text" readonly value="e962" class="unit size1of2" />
569
+ <input type="text" maxlength="1" readonly value="&#xe962;" class="unitRight size1of2 talign-right" />
570
+ </fieldset>
571
+ <div class="fs0 bshadow0 clearfix hidden-true">
572
+ <span class="unit pvs fgc1">liga: </span>
573
+ <input type="text" readonly value="" class="liga unitRight" />
574
+ </div>
575
+ </div>
576
+ <div class="glyph fs1">
577
+ <div class="clearfix bshadow0 pbs">
578
+ <span class="icon2-hammer-fill"></span>
579
+ <span class="mls"> icon2-hammer-fill</span>
580
+ </div>
581
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
582
+ <input type="text" readonly value="e961" class="unit size1of2" />
583
+ <input type="text" maxlength="1" readonly value="&#xe961;" class="unitRight size1of2 talign-right" />
584
+ </fieldset>
585
+ <div class="fs0 bshadow0 clearfix hidden-true">
586
+ <span class="unit pvs fgc1">liga: </span>
587
+ <input type="text" readonly value="" class="liga unitRight" />
588
+ </div>
589
+ </div>
590
+ <div class="glyph fs1">
591
+ <div class="clearfix bshadow0 pbs">
592
+ <span class="icon2-radar-fill"></span>
593
+ <span class="mls"> icon2-radar-fill</span>
594
+ </div>
595
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
596
+ <input type="text" readonly value="e967" class="unit size1of2" />
597
+ <input type="text" maxlength="1" readonly value="&#xe967;" class="unitRight size1of2 talign-right" />
598
+ </fieldset>
599
+ <div class="fs0 bshadow0 clearfix hidden-true">
600
+ <span class="unit pvs fgc1">liga: </span>
601
+ <input type="text" readonly value="" class="liga unitRight" />
602
+ </div>
603
+ </div>
604
+ <div class="glyph fs1">
605
+ <div class="clearfix bshadow0 pbs">
606
+ <span class="icon2-radar"></span>
607
+ <span class="mls"> icon2-radar</span>
608
+ </div>
609
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
610
+ <input type="text" readonly value="e968" class="unit size1of2" />
611
+ <input type="text" maxlength="1" readonly value="&#xe968;" class="unitRight size1of2 talign-right" />
612
+ </fieldset>
613
+ <div class="fs0 bshadow0 clearfix hidden-true">
614
+ <span class="unit pvs fgc1">liga: </span>
615
+ <input type="text" readonly value="" class="liga unitRight" />
616
+ </div>
617
+ </div>
618
+ <div class="glyph fs1">
619
+ <div class="clearfix bshadow0 pbs">
620
+ <span class="icon2-bar_chart"></span>
621
+ <span class="mls"> icon2-bar_chart</span>
622
+ </div>
623
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
624
+ <input type="text" readonly value="e96a" class="unit size1of2" />
625
+ <input type="text" maxlength="1" readonly value="&#xe96a;" class="unitRight size1of2 talign-right" />
626
+ </fieldset>
627
+ <div class="fs0 bshadow0 clearfix hidden-true">
628
+ <span class="unit pvs fgc1">liga: </span>
629
+ <input type="text" readonly value="" class="liga unitRight" />
630
+ </div>
631
+ </div>
632
+ <div class="glyph fs1">
633
+ <div class="clearfix bshadow0 pbs">
634
+ <span class="icon2-bar_chart-fill"></span>
635
+ <span class="mls"> icon2-bar_chart-fill</span>
636
+ </div>
637
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
638
+ <input type="text" readonly value="e969" class="unit size1of2" />
639
+ <input type="text" maxlength="1" readonly value="&#xe969;" class="unitRight size1of2 talign-right" />
640
+ </fieldset>
641
+ <div class="fs0 bshadow0 clearfix hidden-true">
642
+ <span class="unit pvs fgc1">liga: </span>
643
+ <input type="text" readonly value="" class="liga unitRight" />
644
+ </div>
645
+ </div>
646
+ <div class="glyph fs1">
647
+ <div class="clearfix bshadow0 pbs">
648
+ <span class="icon2-core"></span>
649
+ <span class="mls"> icon2-core</span>
650
+ </div>
651
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
652
+ <input type="text" readonly value="e96c" class="unit size1of2" />
653
+ <input type="text" maxlength="1" readonly value="&#xe96c;" class="unitRight size1of2 talign-right" />
654
+ </fieldset>
655
+ <div class="fs0 bshadow0 clearfix hidden-true">
656
+ <span class="unit pvs fgc1">liga: </span>
657
+ <input type="text" readonly value="" class="liga unitRight" />
658
+ </div>
659
+ </div>
660
+ <div class="glyph fs1">
661
+ <div class="clearfix bshadow0 pbs">
662
+ <span class="icon2-trending-up"></span>
663
+ <span class="mls"> icon2-trending-up</span>
664
+ </div>
665
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
666
+ <input type="text" readonly value="e96d" class="unit size1of2" />
667
+ <input type="text" maxlength="1" readonly value="&#xe96d;" class="unitRight size1of2 talign-right" />
668
+ </fieldset>
669
+ <div class="fs0 bshadow0 clearfix hidden-true">
670
+ <span class="unit pvs fgc1">liga: </span>
671
+ <input type="text" readonly value="" class="liga unitRight" />
672
+ </div>
673
+ </div>
674
+ <div class="glyph fs1">
675
+ <div class="clearfix bshadow0 pbs">
676
+ <span class="icon2-inbox"></span>
677
+ <span class="mls"> icon2-inbox</span>
678
+ </div>
679
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
680
+ <input type="text" readonly value="e96e" class="unit size1of2" />
681
+ <input type="text" maxlength="1" readonly value="&#xe96e;" class="unitRight size1of2 talign-right" />
682
+ </fieldset>
683
+ <div class="fs0 bshadow0 clearfix hidden-true">
684
+ <span class="unit pvs fgc1">liga: </span>
685
+ <input type="text" readonly value="" class="liga unitRight" />
686
+ </div>
687
+ </div>
688
+ <div class="glyph fs1">
689
+ <div class="clearfix bshadow0 pbs">
690
+ <span class="icon2-inbox-fill"></span>
691
+ <span class="mls"> icon2-inbox-fill</span>
692
+ </div>
693
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
694
+ <input type="text" readonly value="e96f" class="unit size1of2" />
695
+ <input type="text" maxlength="1" readonly value="&#xe96f;" class="unitRight size1of2 talign-right" />
696
+ </fieldset>
697
+ <div class="fs0 bshadow0 clearfix hidden-true">
698
+ <span class="unit pvs fgc1">liga: </span>
699
+ <input type="text" readonly value="" class="liga unitRight" />
700
+ </div>
701
+ </div>
702
+ <div class="glyph fs1">
703
+ <div class="clearfix bshadow0 pbs">
704
+ <span class="icon2-map"></span>
705
+ <span class="mls"> icon2-map</span>
706
+ </div>
707
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
708
+ <input type="text" readonly value="e972" class="unit size1of2" />
709
+ <input type="text" maxlength="1" readonly value="&#xe972;" class="unitRight size1of2 talign-right" />
710
+ </fieldset>
711
+ <div class="fs0 bshadow0 clearfix hidden-true">
712
+ <span class="unit pvs fgc1">liga: </span>
713
+ <input type="text" readonly value="" class="liga unitRight" />
714
+ </div>
715
+ </div>
716
+ <div class="glyph fs1">
717
+ <div class="clearfix bshadow0 pbs">
718
+ <span class="icon2-cup"></span>
719
+ <span class="mls"> icon2-cup</span>
720
+ </div>
721
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
722
+ <input type="text" readonly value="e974" class="unit size1of2" />
723
+ <input type="text" maxlength="1" readonly value="&#xe974;" class="unitRight size1of2 talign-right" />
724
+ </fieldset>
725
+ <div class="fs0 bshadow0 clearfix hidden-true">
726
+ <span class="unit pvs fgc1">liga: </span>
727
+ <input type="text" readonly value="" class="liga unitRight" />
728
+ </div>
729
+ </div>
730
+ <div class="glyph fs1">
731
+ <div class="clearfix bshadow0 pbs">
732
+ <span class="icon2-cup-fill"></span>
733
+ <span class="mls"> icon2-cup-fill</span>
734
+ </div>
735
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
736
+ <input type="text" readonly value="e975" class="unit size1of2" />
737
+ <input type="text" maxlength="1" readonly value="&#xe975;" class="unitRight size1of2 talign-right" />
738
+ </fieldset>
739
+ <div class="fs0 bshadow0 clearfix hidden-true">
740
+ <span class="unit pvs fgc1">liga: </span>
741
+ <input type="text" readonly value="" class="liga unitRight" />
742
+ </div>
743
+ </div>
744
+ <div class="glyph fs1">
745
+ <div class="clearfix bshadow0 pbs">
746
+ <span class="icon2-snapshot"></span>
747
+ <span class="mls"> icon2-snapshot</span>
748
+ </div>
749
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
750
+ <input type="text" readonly value="e91b" class="unit size1of2" />
751
+ <input type="text" maxlength="1" readonly value="&#xe91b;" class="unitRight size1of2 talign-right" />
752
+ </fieldset>
753
+ <div class="fs0 bshadow0 clearfix hidden-true">
754
+ <span class="unit pvs fgc1">liga: </span>
755
+ <input type="text" readonly value="" class="liga unitRight" />
756
+ </div>
757
+ </div>
758
+ <div class="glyph fs1">
759
+ <div class="clearfix bshadow0 pbs">
760
+ <span class="icon2-phone"></span>
761
+ <span class="mls"> icon2-phone</span>
762
+ </div>
763
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
764
+ <input type="text" readonly value="e9f3" class="unit size1of2" />
765
+ <input type="text" maxlength="1" readonly value="&#xe9f3;" class="unitRight size1of2 talign-right" />
766
+ </fieldset>
767
+ <div class="fs0 bshadow0 clearfix hidden-true">
768
+ <span class="unit pvs fgc1">liga: </span>
769
+ <input type="text" readonly value="" class="liga unitRight" />
770
+ </div>
771
+ </div>
772
+ <div class="glyph fs1">
773
+ <div class="clearfix bshadow0 pbs">
774
+ <span class="icon2-tablet"></span>
775
+ <span class="mls"> icon2-tablet</span>
776
+ </div>
777
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
778
+ <input type="text" readonly value="e9f4" class="unit size1of2" />
779
+ <input type="text" maxlength="1" readonly value="&#xe9f4;" class="unitRight size1of2 talign-right" />
780
+ </fieldset>
781
+ <div class="fs0 bshadow0 clearfix hidden-true">
782
+ <span class="unit pvs fgc1">liga: </span>
783
+ <input type="text" readonly value="" class="liga unitRight" />
784
+ </div>
785
+ </div>
786
+ <div class="glyph fs1">
787
+ <div class="clearfix bshadow0 pbs">
788
+ <span class="icon2-desktop"></span>
789
+ <span class="mls"> icon2-desktop</span>
790
+ </div>
791
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
792
+ <input type="text" readonly value="e9f5" class="unit size1of2" />
793
+ <input type="text" maxlength="1" readonly value="&#xe9f5;" class="unitRight size1of2 talign-right" />
794
+ </fieldset>
795
+ <div class="fs0 bshadow0 clearfix hidden-true">
796
+ <span class="unit pvs fgc1">liga: </span>
797
+ <input type="text" readonly value="" class="liga unitRight" />
798
+ </div>
799
+ </div>
800
+ <div class="glyph fs1">
801
+ <div class="clearfix bshadow0 pbs">
802
+ <span class="icon2-circle"></span>
803
+ <span class="mls"> icon2-circle</span>
804
+ </div>
805
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
806
+ <input type="text" readonly value="e9ea" class="unit size1of2" />
807
+ <input type="text" maxlength="1" readonly value="&#xe9ea;" class="unitRight size1of2 talign-right" />
808
+ </fieldset>
809
+ <div class="fs0 bshadow0 clearfix hidden-true">
810
+ <span class="unit pvs fgc1">liga: </span>
811
+ <input type="text" readonly value="" class="liga unitRight" />
812
+ </div>
813
+ </div>
814
+ <div class="glyph fs1">
815
+ <div class="clearfix bshadow0 pbs">
816
+ <span class="icon2-circles"></span>
817
+ <span class="mls"> icon2-circles</span>
818
+ </div>
819
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
820
+ <input type="text" readonly value="e9eb" class="unit size1of2" />
821
+ <input type="text" maxlength="1" readonly value="&#xe9eb;" class="unitRight size1of2 talign-right" />
822
+ </fieldset>
823
+ <div class="fs0 bshadow0 clearfix hidden-true">
824
+ <span class="unit pvs fgc1">liga: </span>
825
+ <input type="text" readonly value="" class="liga unitRight" />
826
+ </div>
827
+ </div>
828
+ <div class="glyph fs1">
829
+ <div class="clearfix bshadow0 pbs">
830
+ <span class="icon2-filled-circle"></span>
831
+ <span class="mls"> icon2-filled-circle</span>
832
+ </div>
833
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
834
+ <input type="text" readonly value="e9ec" class="unit size1of2" />
835
+ <input type="text" maxlength="1" readonly value="&#xe9ec;" class="unitRight size1of2 talign-right" />
836
+ </fieldset>
837
+ <div class="fs0 bshadow0 clearfix hidden-true">
838
+ <span class="unit pvs fgc1">liga: </span>
839
+ <input type="text" readonly value="" class="liga unitRight" />
840
+ </div>
841
+ </div>
842
+ <div class="glyph fs1">
843
+ <div class="clearfix bshadow0 pbs">
844
+ <span class="icon2-campaign"></span>
845
+ <span class="mls"> icon2-campaign</span>
846
+ </div>
847
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
848
+ <input type="text" readonly value="e9cf" class="unit size1of2" />
849
+ <input type="text" maxlength="1" readonly value="&#xe9cf;" class="unitRight size1of2 talign-right" />
850
+ </fieldset>
851
+ <div class="fs0 bshadow0 clearfix hidden-true">
852
+ <span class="unit pvs fgc1">liga: </span>
853
+ <input type="text" readonly value="" class="liga unitRight" />
854
+ </div>
855
+ </div>
856
+ <div class="glyph fs1">
857
+ <div class="clearfix bshadow0 pbs">
858
+ <span class="icon2-dialog"></span>
859
+ <span class="mls"> icon2-dialog</span>
860
+ </div>
861
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
862
+ <input type="text" readonly value="e9d0" class="unit size1of2" />
863
+ <input type="text" maxlength="1" readonly value="&#xe9d0;" class="unitRight size1of2 talign-right" />
864
+ </fieldset>
865
+ <div class="fs0 bshadow0 clearfix hidden-true">
866
+ <span class="unit pvs fgc1">liga: </span>
867
+ <input type="text" readonly value="" class="liga unitRight" />
868
+ </div>
869
+ </div>
870
+ <div class="glyph fs1">
871
+ <div class="clearfix bshadow0 pbs">
872
+ <span class="icon2-gift"></span>
873
+ <span class="mls"> icon2-gift</span>
874
+ </div>
875
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
876
+ <input type="text" readonly value="e9d1" class="unit size1of2" />
877
+ <input type="text" maxlength="1" readonly value="&#xe9d1;" class="unitRight size1of2 talign-right" />
878
+ </fieldset>
879
+ <div class="fs0 bshadow0 clearfix hidden-true">
880
+ <span class="unit pvs fgc1">liga: </span>
881
+ <input type="text" readonly value="" class="liga unitRight" />
882
+ </div>
883
+ </div>
884
+ <div class="glyph fs1">
885
+ <div class="clearfix bshadow0 pbs">
886
+ <span class="icon2-skill"></span>
887
+ <span class="mls"> icon2-skill</span>
888
+ </div>
889
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
890
+ <input type="text" readonly value="e9d2" class="unit size1of2" />
891
+ <input type="text" maxlength="1" readonly value="&#xe9d2;" class="unitRight size1of2 talign-right" />
892
+ </fieldset>
893
+ <div class="fs0 bshadow0 clearfix hidden-true">
894
+ <span class="unit pvs fgc1">liga: </span>
895
+ <input type="text" readonly value="" class="liga unitRight" />
896
+ </div>
897
+ </div>
898
+ <div class="glyph fs1">
899
+ <div class="clearfix bshadow0 pbs">
900
+ <span class="icon2-template"></span>
901
+ <span class="mls"> icon2-template</span>
902
+ </div>
903
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
904
+ <input type="text" readonly value="e9cd" class="unit size1of2" />
905
+ <input type="text" maxlength="1" readonly value="&#xe9cd;" class="unitRight size1of2 talign-right" />
906
+ </fieldset>
907
+ <div class="fs0 bshadow0 clearfix hidden-true">
908
+ <span class="unit pvs fgc1">liga: </span>
909
+ <input type="text" readonly value="" class="liga unitRight" />
910
+ </div>
911
+ </div>
912
+ <div class="glyph fs1">
913
+ <div class="clearfix bshadow0 pbs">
914
+ <span class="icon2-core-v1"></span>
915
+ <span class="mls"> icon2-core-v1</span>
916
+ </div>
917
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
918
+ <input type="text" readonly value="e9c7" class="unit size1of2" />
919
+ <input type="text" maxlength="1" readonly value="&#xe9c7;" class="unitRight size1of2 talign-right" />
920
+ </fieldset>
921
+ <div class="fs0 bshadow0 clearfix hidden-true">
922
+ <span class="unit pvs fgc1">liga: </span>
923
+ <input type="text" readonly value="" class="liga unitRight" />
924
+ </div>
925
+ </div>
926
+ <div class="glyph fs1">
927
+ <div class="clearfix bshadow0 pbs">
928
+ <span class="icon2-core-v3"></span>
929
+ <span class="mls"> icon2-core-v3</span>
930
+ </div>
931
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
932
+ <input type="text" readonly value="e9c8" class="unit size1of2" />
933
+ <input type="text" maxlength="1" readonly value="&#xe9c8;" class="unitRight size1of2 talign-right" />
934
+ </fieldset>
935
+ <div class="fs0 bshadow0 clearfix hidden-true">
936
+ <span class="unit pvs fgc1">liga: </span>
937
+ <input type="text" readonly value="" class="liga unitRight" />
938
+ </div>
939
+ </div>
940
+ <div class="glyph fs1">
941
+ <div class="clearfix bshadow0 pbs">
942
+ <span class="icon2-bar_chart_2"></span>
943
+ <span class="mls"> icon2-bar_chart_2</span>
944
+ </div>
945
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
946
+ <input type="text" readonly value="e977" class="unit size1of2" />
947
+ <input type="text" maxlength="1" readonly value="&#xe977;" class="unitRight size1of2 talign-right" />
948
+ </fieldset>
949
+ <div class="fs0 bshadow0 clearfix hidden-true">
950
+ <span class="unit pvs fgc1">liga: </span>
951
+ <input type="text" readonly value="" class="liga unitRight" />
952
+ </div>
953
+ </div>
954
+ <div class="glyph fs1">
955
+ <div class="clearfix bshadow0 pbs">
956
+ <span class="icon2-sand_clock"></span>
957
+ <span class="mls"> icon2-sand_clock</span>
958
+ </div>
959
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
960
+ <input type="text" readonly value="e9c3" class="unit size1of2" />
961
+ <input type="text" maxlength="1" readonly value="&#xe9c3;" class="unitRight size1of2 talign-right" />
962
+ </fieldset>
963
+ <div class="fs0 bshadow0 clearfix hidden-true">
964
+ <span class="unit pvs fgc1">liga: </span>
965
+ <input type="text" readonly value="" class="liga unitRight" />
966
+ </div>
967
+ </div>
968
+ <div class="glyph fs1">
969
+ <div class="clearfix bshadow0 pbs">
970
+ <span class="icon2-lamp"></span>
971
+ <span class="mls"> icon2-lamp</span>
972
+ </div>
973
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
974
+ <input type="text" readonly value="e9c2" class="unit size1of2" />
975
+ <input type="text" maxlength="1" readonly value="&#xe9c2;" class="unitRight size1of2 talign-right" />
976
+ </fieldset>
977
+ <div class="fs0 bshadow0 clearfix hidden-true">
978
+ <span class="unit pvs fgc1">liga: </span>
979
+ <input type="text" readonly value="" class="liga unitRight" />
980
+ </div>
981
+ </div>
982
+ <div class="glyph fs1">
983
+ <div class="clearfix bshadow0 pbs">
984
+ <span class="icon2-book"></span>
985
+ <span class="mls"> icon2-book</span>
986
+ </div>
987
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
988
+ <input type="text" readonly value="e9be" class="unit size1of2" />
989
+ <input type="text" maxlength="1" readonly value="&#xe9be;" class="unitRight size1of2 talign-right" />
990
+ </fieldset>
991
+ <div class="fs0 bshadow0 clearfix hidden-true">
992
+ <span class="unit pvs fgc1">liga: </span>
993
+ <input type="text" readonly value="" class="liga unitRight" />
994
+ </div>
995
+ </div>
996
+ <div class="glyph fs1">
997
+ <div class="clearfix bshadow0 pbs">
998
+ <span class="icon2-horns_sign"></span>
999
+ <span class="mls"> icon2-horns_sign</span>
1000
+ </div>
1001
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
1002
+ <input type="text" readonly value="e9bf" class="unit size1of2" />
1003
+ <input type="text" maxlength="1" readonly value="&#xe9bf;" class="unitRight size1of2 talign-right" />
1004
+ </fieldset>
1005
+ <div class="fs0 bshadow0 clearfix hidden-true">
1006
+ <span class="unit pvs fgc1">liga: </span>
1007
+ <input type="text" readonly value="" class="liga unitRight" />
1008
+ </div>
1009
+ </div>
1010
+ <div class="glyph fs1">
1011
+ <div class="clearfix bshadow0 pbs">
1012
+ <span class="icon2-microphone"></span>
1013
+ <span class="mls"> icon2-microphone</span>
1014
+ </div>
1015
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
1016
+ <input type="text" readonly value="e9c0" class="unit size1of2" />
1017
+ <input type="text" maxlength="1" readonly value="&#xe9c0;" class="unitRight size1of2 talign-right" />
1018
+ </fieldset>
1019
+ <div class="fs0 bshadow0 clearfix hidden-true">
1020
+ <span class="unit pvs fgc1">liga: </span>
1021
+ <input type="text" readonly value="" class="liga unitRight" />
1022
+ </div>
1023
+ </div>
1024
+ <div class="glyph fs1">
1025
+ <div class="clearfix bshadow0 pbs">
1026
+ <span class="icon2-newspaper"></span>
1027
+ <span class="mls"> icon2-newspaper</span>
1028
+ </div>
1029
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
1030
+ <input type="text" readonly value="e9c1" class="unit size1of2" />
1031
+ <input type="text" maxlength="1" readonly value="&#xe9c1;" class="unitRight size1of2 talign-right" />
1032
+ </fieldset>
1033
+ <div class="fs0 bshadow0 clearfix hidden-true">
1034
+ <span class="unit pvs fgc1">liga: </span>
1035
+ <input type="text" readonly value="" class="liga unitRight" />
1036
+ </div>
1037
+ </div>
1038
+ <div class="glyph fs1">
1039
+ <div class="clearfix bshadow0 pbs">
1040
+ <span class="icon2-rss"></span>
1041
+ <span class="mls"> icon2-rss</span>
1042
+ </div>
1043
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
1044
+ <input type="text" readonly value="e9b8" class="unit size1of2" />
1045
+ <input type="text" maxlength="1" readonly value="&#xe9b8;" class="unitRight size1of2 talign-right" />
1046
+ </fieldset>
1047
+ <div class="fs0 bshadow0 clearfix hidden-true">
1048
+ <span class="unit pvs fgc1">liga: </span>
1049
+ <input type="text" readonly value="" class="liga unitRight" />
1050
+ </div>
1051
+ </div>
1052
+ <div class="glyph fs1">
1053
+ <div class="clearfix bshadow0 pbs">
1054
+ <span class="icon2-journal"></span>
1055
+ <span class="mls"> icon2-journal</span>
1056
+ </div>
1057
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
1058
+ <input type="text" readonly value="e978" class="unit size1of2" />
1059
+ <input type="text" maxlength="1" readonly value="&#xe978;" class="unitRight size1of2 talign-right" />
1060
+ </fieldset>
1061
+ <div class="fs0 bshadow0 clearfix hidden-true">
1062
+ <span class="unit pvs fgc1">liga: </span>
1063
+ <input type="text" readonly value="" class="liga unitRight" />
1064
+ </div>
1065
+ </div>
1066
+ <div class="glyph fs1">
1067
+ <div class="clearfix bshadow0 pbs">
1068
+ <span class="icon2-academy"></span>
1069
+ <span class="mls"> icon2-academy</span>
1070
+ </div>
1071
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
1072
+ <input type="text" readonly value="e996" class="unit size1of2" />
1073
+ <input type="text" maxlength="1" readonly value="&#xe996;" class="unitRight size1of2 talign-right" />
1074
+ </fieldset>
1075
+ <div class="fs0 bshadow0 clearfix hidden-true">
1076
+ <span class="unit pvs fgc1">liga: </span>
1077
+ <input type="text" readonly value="" class="liga unitRight" />
1078
+ </div>
1079
+ </div>
1080
+ <div class="glyph fs1">
1081
+ <div class="clearfix bshadow0 pbs">
1082
+ <span class="icon2-content"></span>
1083
+ <span class="mls"> icon2-content</span>
1084
+ </div>
1085
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
1086
+ <input type="text" readonly value="e9b6" class="unit size1of2" />
1087
+ <input type="text" maxlength="1" readonly value="&#xe9b6;" class="unitRight size1of2 talign-right" />
1088
+ </fieldset>
1089
+ <div class="fs0 bshadow0 clearfix hidden-true">
1090
+ <span class="unit pvs fgc1">liga: </span>
1091
+ <input type="text" readonly value="" class="liga unitRight" />
1092
+ </div>
1093
+ </div>
1094
+ <div class="glyph fs1">
1095
+ <div class="clearfix bshadow0 pbs">
1096
+ <span class="icon2-h"></span>
1097
+ <span class="mls"> icon2-h</span>
1098
+ </div>
1099
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
1100
+ <input type="text" readonly value="e9b3" class="unit size1of2" />
1101
+ <input type="text" maxlength="1" readonly value="&#xe9b3;" class="unitRight size1of2 talign-right" />
1102
+ </fieldset>
1103
+ <div class="fs0 bshadow0 clearfix hidden-true">
1104
+ <span class="unit pvs fgc1">liga: </span>
1105
+ <input type="text" readonly value="" class="liga unitRight" />
1106
+ </div>
1107
+ </div>
1108
+ <div class="glyph fs1">
1109
+ <div class="clearfix bshadow0 pbs">
1110
+ <span class="icon2-status_code"></span>
1111
+ <span class="mls"> icon2-status_code</span>
1112
+ </div>
1113
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
1114
+ <input type="text" readonly value="e9b4" class="unit size1of2" />
1115
+ <input type="text" maxlength="1" readonly value="&#xe9b4;" class="unitRight size1of2 talign-right" />
1116
+ </fieldset>
1117
+ <div class="fs0 bshadow0 clearfix hidden-true">
1118
+ <span class="unit pvs fgc1">liga: </span>
1119
+ <input type="text" readonly value="" class="liga unitRight" />
1120
+ </div>
1121
+ </div>
1122
+ <div class="glyph fs1">
1123
+ <div class="clearfix bshadow0 pbs">
1124
+ <span class="icon2-t"></span>
1125
+ <span class="mls"> icon2-t</span>
1126
+ </div>
1127
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
1128
+ <input type="text" readonly value="e9b5" class="unit size1of2" />
1129
+ <input type="text" maxlength="1" readonly value="&#xe9b5;" class="unitRight size1of2 talign-right" />
1130
+ </fieldset>
1131
+ <div class="fs0 bshadow0 clearfix hidden-true">
1132
+ <span class="unit pvs fgc1">liga: </span>
1133
+ <input type="text" readonly value="" class="liga unitRight" />
1134
+ </div>
1135
+ </div>
1136
+ <div class="glyph fs1">
1137
+ <div class="clearfix bshadow0 pbs">
1138
+ <span class="icon2-anonymous"></span>
1139
+ <span class="mls"> icon2-anonymous</span>
1140
+ </div>
1141
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
1142
+ <input type="text" readonly value="e9b1" class="unit size1of2" />
1143
+ <input type="text" maxlength="1" readonly value="&#xe9b1;" class="unitRight size1of2 talign-right" />
1144
+ </fieldset>
1145
+ <div class="fs0 bshadow0 clearfix hidden-true">
1146
+ <span class="unit pvs fgc1">liga: </span>
1147
+ <input type="text" readonly value="" class="liga unitRight" />
1148
+ </div>
1149
+ </div>
1150
+ <div class="glyph fs1">
1151
+ <div class="clearfix bshadow0 pbs">
1152
+ <span class="icon2-cube"></span>
1153
+ <span class="mls"> icon2-cube</span>
1154
+ </div>
1155
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
1156
+ <input type="text" readonly value="e9a9" class="unit size1of2" />
1157
+ <input type="text" maxlength="1" readonly value="&#xe9a9;" class="unitRight size1of2 talign-right" />
1158
+ </fieldset>
1159
+ <div class="fs0 bshadow0 clearfix hidden-true">
1160
+ <span class="unit pvs fgc1">liga: </span>
1161
+ <input type="text" readonly value="" class="liga unitRight" />
1162
+ </div>
1163
+ </div>
1164
+ <div class="glyph fs1">
1165
+ <div class="clearfix bshadow0 pbs">
1166
+ <span class="icon2-eye_closed"></span>
1167
+ <span class="mls"> icon2-eye_closed</span>
1168
+ </div>
1169
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
1170
+ <input type="text" readonly value="e9aa" class="unit size1of2" />
1171
+ <input type="text" maxlength="1" readonly value="&#xe9aa;" class="unitRight size1of2 talign-right" />
1172
+ </fieldset>
1173
+ <div class="fs0 bshadow0 clearfix hidden-true">
1174
+ <span class="unit pvs fgc1">liga: </span>
1175
+ <input type="text" readonly value="" class="liga unitRight" />
1176
+ </div>
1177
+ </div>
1178
+ <div class="glyph fs1">
1179
+ <div class="clearfix bshadow0 pbs">
1180
+ <span class="icon2-eye"></span>
1181
+ <span class="mls"> icon2-eye</span>
1182
+ </div>
1183
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
1184
+ <input type="text" readonly value="e9ab" class="unit size1of2" />
1185
+ <input type="text" maxlength="1" readonly value="&#xe9ab;" class="unitRight size1of2 talign-right" />
1186
+ </fieldset>
1187
+ <div class="fs0 bshadow0 clearfix hidden-true">
1188
+ <span class="unit pvs fgc1">liga: </span>
1189
+ <input type="text" readonly value="" class="liga unitRight" />
1190
+ </div>
1191
+ </div>
1192
+ <div class="glyph fs1">
1193
+ <div class="clearfix bshadow0 pbs">
1194
+ <span class="icon2-image"></span>
1195
+ <span class="mls"> icon2-image</span>
1196
+ </div>
1197
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
1198
+ <input type="text" readonly value="e9ac" class="unit size1of2" />
1199
+ <input type="text" maxlength="1" readonly value="&#xe9ac;" class="unitRight size1of2 talign-right" />
1200
+ </fieldset>
1201
+ <div class="fs0 bshadow0 clearfix hidden-true">
1202
+ <span class="unit pvs fgc1">liga: </span>
1203
+ <input type="text" readonly value="" class="liga unitRight" />
1204
+ </div>
1205
+ </div>
1206
+ <div class="glyph fs1">
1207
+ <div class="clearfix bshadow0 pbs">
1208
+ <span class="icon2-link"></span>
1209
+ <span class="mls"> icon2-link</span>
1210
+ </div>
1211
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
1212
+ <input type="text" readonly value="e9ad" class="unit size1of2" />
1213
+ <input type="text" maxlength="1" readonly value="&#xe9ad;" class="unitRight size1of2 talign-right" />
1214
+ </fieldset>
1215
+ <div class="fs0 bshadow0 clearfix hidden-true">
1216
+ <span class="unit pvs fgc1">liga: </span>
1217
+ <input type="text" readonly value="" class="liga unitRight" />
1218
+ </div>
1219
+ </div>
1220
+ <div class="glyph fs1">
1221
+ <div class="clearfix bshadow0 pbs">
1222
+ <span class="icon2-speed"></span>
1223
+ <span class="mls"> icon2-speed</span>
1224
+ </div>
1225
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
1226
+ <input type="text" readonly value="e9ae" class="unit size1of2" />
1227
+ <input type="text" maxlength="1" readonly value="&#xe9ae;" class="unitRight size1of2 talign-right" />
1228
+ </fieldset>
1229
+ <div class="fs0 bshadow0 clearfix hidden-true">
1230
+ <span class="unit pvs fgc1">liga: </span>
1231
+ <input type="text" readonly value="" class="liga unitRight" />
1232
+ </div>
1233
+ </div>
1234
+ <div class="glyph fs1">
1235
+ <div class="clearfix bshadow0 pbs">
1236
+ <span class="icon2-terminal"></span>
1237
+ <span class="mls"> icon2-terminal</span>
1238
+ </div>
1239
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
1240
+ <input type="text" readonly value="e9af" class="unit size1of2" />
1241
+ <input type="text" maxlength="1" readonly value="&#xe9af;" class="unitRight size1of2 talign-right" />
1242
+ </fieldset>
1243
+ <div class="fs0 bshadow0 clearfix hidden-true">
1244
+ <span class="unit pvs fgc1">liga: </span>
1245
+ <input type="text" readonly value="" class="liga unitRight" />
1246
+ </div>
1247
+ </div>
1248
+ <div class="glyph fs1">
1249
+ <div class="clearfix bshadow0 pbs">
1250
+ <span class="icon2-key"></span>
1251
+ <span class="mls"> icon2-key</span>
1252
+ </div>
1253
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
1254
+ <input type="text" readonly value="e98a" class="unit size1of2" />
1255
+ <input type="text" maxlength="1" readonly value="&#xe98a;" class="unitRight size1of2 talign-right" />
1256
+ </fieldset>
1257
+ <div class="fs0 bshadow0 clearfix hidden-true">
1258
+ <span class="unit pvs fgc1">liga: </span>
1259
+ <input type="text" readonly value="" class="liga unitRight" />
1260
+ </div>
1261
+ </div>
1262
+ <div class="glyph fs1">
1263
+ <div class="clearfix bshadow0 pbs">
1264
+ <span class="icon2-question"></span>
1265
+ <span class="mls"> icon2-question</span>
1266
+ </div>
1267
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
1268
+ <input type="text" readonly value="e98b" class="unit size1of2" />
1269
+ <input type="text" maxlength="1" readonly value="&#xe98b;" class="unitRight size1of2 talign-right" />
1270
+ </fieldset>
1271
+ <div class="fs0 bshadow0 clearfix hidden-true">
1272
+ <span class="unit pvs fgc1">liga: </span>
1273
+ <input type="text" readonly value="" class="liga unitRight" />
1274
+ </div>
1275
+ </div>
1276
+ <div class="glyph fs1">
1277
+ <div class="clearfix bshadow0 pbs">
1278
+ <span class="icon2-bulleted_list"></span>
1279
+ <span class="mls"> icon2-bulleted_list</span>
1280
+ </div>
1281
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
1282
+ <input type="text" readonly value="e95c" class="unit size1of2" />
1283
+ <input type="text" maxlength="1" readonly value="&#xe95c;" class="unitRight size1of2 talign-right" />
1284
+ </fieldset>
1285
+ <div class="fs0 bshadow0 clearfix hidden-true">
1286
+ <span class="unit pvs fgc1">liga: </span>
1287
+ <input type="text" readonly value="" class="liga unitRight" />
1288
+ </div>
1289
+ </div>
1290
+ <div class="glyph fs1">
1291
+ <div class="clearfix bshadow0 pbs">
1292
+ <span class="icon2-external"></span>
1293
+ <span class="mls"> icon2-external</span>
1294
+ </div>
1295
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
1296
+ <input type="text" readonly value="e948" class="unit size1of2" />
1297
+ <input type="text" maxlength="1" readonly value="&#xe948;" class="unitRight size1of2 talign-right" />
1298
+ </fieldset>
1299
+ <div class="fs0 bshadow0 clearfix hidden-true">
1300
+ <span class="unit pvs fgc1">liga: </span>
1301
+ <input type="text" readonly value="" class="liga unitRight" />
1302
+ </div>
1303
+ </div>
1304
+ <div class="glyph fs1">
1305
+ <div class="clearfix bshadow0 pbs">
1306
+ <span class="icon2-target"></span>
1307
+ <span class="mls"> icon2-target</span>
1308
+ </div>
1309
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
1310
+ <input type="text" readonly value="e91c" class="unit size1of2" />
1311
+ <input type="text" maxlength="1" readonly value="&#xe91c;" class="unitRight size1of2 talign-right" />
1312
+ </fieldset>
1313
+ <div class="fs0 bshadow0 clearfix hidden-true">
1314
+ <span class="unit pvs fgc1">liga: </span>
1315
+ <input type="text" readonly value="" class="liga unitRight" />
1316
+ </div>
1317
+ </div>
1318
+ <div class="glyph fs1">
1319
+ <div class="clearfix bshadow0 pbs">
1320
+ <span class="icon2-thunder"></span>
1321
+ <span class="mls"> icon2-thunder</span>
1322
+ </div>
1323
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
1324
+ <input type="text" readonly value="e91d" class="unit size1of2" />
1325
+ <input type="text" maxlength="1" readonly value="&#xe91d;" class="unitRight size1of2 talign-right" />
1326
+ </fieldset>
1327
+ <div class="fs0 bshadow0 clearfix hidden-true">
1328
+ <span class="unit pvs fgc1">liga: </span>
1329
+ <input type="text" readonly value="" class="liga unitRight" />
1330
+ </div>
1331
+ </div>
1332
+ <div class="glyph fs1">
1333
+ <div class="clearfix bshadow0 pbs">
1334
+ <span class="icon2-menu"></span>
1335
+ <span class="mls"> icon2-menu</span>
1336
+ </div>
1337
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
1338
+ <input type="text" readonly value="e914" class="unit size1of2" />
1339
+ <input type="text" maxlength="1" readonly value="&#xe914;" class="unitRight size1of2 talign-right" />
1340
+ </fieldset>
1341
+ <div class="fs0 bshadow0 clearfix hidden-true">
1342
+ <span class="unit pvs fgc1">liga: </span>
1343
+ <input type="text" readonly value="" class="liga unitRight" />
1344
+ </div>
1345
+ </div>
1346
+ <div class="glyph fs1">
1347
+ <div class="clearfix bshadow0 pbs">
1348
+ <span class="icon2-home"></span>
1349
+ <span class="mls"> icon2-home</span>
1350
+ </div>
1351
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
1352
+ <input type="text" readonly value="e964" class="unit size1of2" />
1353
+ <input type="text" maxlength="1" readonly value="&#xe964;" class="unitRight size1of2 talign-right" />
1354
+ </fieldset>
1355
+ <div class="fs0 bshadow0 clearfix hidden-true">
1356
+ <span class="unit pvs fgc1">liga: </span>
1357
+ <input type="text" readonly value="" class="liga unitRight" />
1358
+ </div>
1359
+ </div>
1360
+ <div class="glyph fs1">
1361
+ <div class="clearfix bshadow0 pbs">
1362
+ <span class="icon2-home-fill"></span>
1363
+ <span class="mls"> icon2-home-fill</span>
1364
+ </div>
1365
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
1366
+ <input type="text" readonly value="e963" class="unit size1of2" />
1367
+ <input type="text" maxlength="1" readonly value="&#xe963;" class="unitRight size1of2 talign-right" />
1368
+ </fieldset>
1369
+ <div class="fs0 bshadow0 clearfix hidden-true">
1370
+ <span class="unit pvs fgc1">liga: </span>
1371
+ <input type="text" readonly value="" class="liga unitRight" />
1372
+ </div>
1373
+ </div>
1374
+ <div class="glyph fs1">
1375
+ <div class="clearfix bshadow0 pbs">
1376
+ <span class="icon2-ballot"></span>
1377
+ <span class="mls"> icon2-ballot</span>
1378
+ </div>
1379
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
1380
+ <input type="text" readonly value="e966" class="unit size1of2" />
1381
+ <input type="text" maxlength="1" readonly value="&#xe966;" class="unitRight size1of2 talign-right" />
1382
+ </fieldset>
1383
+ <div class="fs0 bshadow0 clearfix hidden-true">
1384
+ <span class="unit pvs fgc1">liga: </span>
1385
+ <input type="text" readonly value="" class="liga unitRight" />
1386
+ </div>
1387
+ </div>
1388
+ <div class="glyph fs1">
1389
+ <div class="clearfix bshadow0 pbs">
1390
+ <span class="icon2-ballot-fill"></span>
1391
+ <span class="mls"> icon2-ballot-fill</span>
1392
+ </div>
1393
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
1394
+ <input type="text" readonly value="e965" class="unit size1of2" />
1395
+ <input type="text" maxlength="1" readonly value="&#xe965;" class="unitRight size1of2 talign-right" />
1396
+ </fieldset>
1397
+ <div class="fs0 bshadow0 clearfix hidden-true">
1398
+ <span class="unit pvs fgc1">liga: </span>
1399
+ <input type="text" readonly value="" class="liga unitRight" />
1400
+ </div>
1401
+ </div>
1402
+ <div class="glyph fs1">
1403
+ <div class="clearfix bshadow0 pbs">
1404
+ <span class="icon2-tools"></span>
1405
+ <span class="mls"> icon2-tools</span>
1406
+ </div>
1407
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
1408
+ <input type="text" readonly value="e96b" class="unit size1of2" />
1409
+ <input type="text" maxlength="1" readonly value="&#xe96b;" class="unitRight size1of2 talign-right" />
1410
+ </fieldset>
1411
+ <div class="fs0 bshadow0 clearfix hidden-true">
1412
+ <span class="unit pvs fgc1">liga: </span>
1413
+ <input type="text" readonly value="" class="liga unitRight" />
1414
+ </div>
1415
+ </div>
1416
+ <div class="glyph fs1">
1417
+ <div class="clearfix bshadow0 pbs">
1418
+ <span class="icon2-folder"></span>
1419
+ <span class="mls"> icon2-folder</span>
1420
+ </div>
1421
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
1422
+ <input type="text" readonly value="e970" class="unit size1of2" />
1423
+ <input type="text" maxlength="1" readonly value="&#xe970;" class="unitRight size1of2 talign-right" />
1424
+ </fieldset>
1425
+ <div class="fs0 bshadow0 clearfix hidden-true">
1426
+ <span class="unit pvs fgc1">liga: </span>
1427
+ <input type="text" readonly value="" class="liga unitRight" />
1428
+ </div>
1429
+ </div>
1430
+ <div class="glyph fs1">
1431
+ <div class="clearfix bshadow0 pbs">
1432
+ <span class="icon2-folder-fill"></span>
1433
+ <span class="mls"> icon2-folder-fill</span>
1434
+ </div>
1435
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
1436
+ <input type="text" readonly value="e971" class="unit size1of2" />
1437
+ <input type="text" maxlength="1" readonly value="&#xe971;" class="unitRight size1of2 talign-right" />
1438
+ </fieldset>
1439
+ <div class="fs0 bshadow0 clearfix hidden-true">
1440
+ <span class="unit pvs fgc1">liga: </span>
1441
+ <input type="text" readonly value="" class="liga unitRight" />
1442
+ </div>
1443
+ </div>
1444
+ <div class="glyph fs1">
1445
+ <div class="clearfix bshadow0 pbs">
1446
+ <span class="icon2-chart"></span>
1447
+ <span class="mls"> icon2-chart</span>
1448
+ </div>
1449
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
1450
+ <input type="text" readonly value="e976" class="unit size1of2" />
1451
+ <input type="text" maxlength="1" readonly value="&#xe976;" class="unitRight size1of2 talign-right" />
1452
+ </fieldset>
1453
+ <div class="fs0 bshadow0 clearfix hidden-true">
1454
+ <span class="unit pvs fgc1">liga: </span>
1455
+ <input type="text" readonly value="" class="liga unitRight" />
1456
+ </div>
1457
+ </div>
1458
+ <div class="glyph fs1">
1459
+ <div class="clearfix bshadow0 pbs">
1460
+ <span class="icon2-yandex_xml-en"></span>
1461
+ <span class="mls"> icon2-yandex_xml-en</span>
1462
+ </div>
1463
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
1464
+ <input type="text" readonly value="e94d" class="unit size1of2" />
1465
+ <input type="text" maxlength="1" readonly value="&#xe94d;" class="unitRight size1of2 talign-right" />
1466
+ </fieldset>
1467
+ <div class="fs0 bshadow0 clearfix hidden-true">
1468
+ <span class="unit pvs fgc1">liga: </span>
1469
+ <input type="text" readonly value="" class="liga unitRight" />
1470
+ </div>
1471
+ </div>
1472
+ <div class="glyph fs1">
1473
+ <div class="clearfix bshadow0 pbs">
1474
+ <span class="icon2-yandex_xml-fill-en"></span>
1475
+ <span class="mls"> icon2-yandex_xml-fill-en</span>
1476
+ </div>
1477
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
1478
+ <input type="text" readonly value="e94c" class="unit size1of2" />
1479
+ <input type="text" maxlength="1" readonly value="&#xe94c;" class="unitRight size1of2 talign-right" />
1480
+ </fieldset>
1481
+ <div class="fs0 bshadow0 clearfix hidden-true">
1482
+ <span class="unit pvs fgc1">liga: </span>
1483
+ <input type="text" readonly value="" class="liga unitRight" />
1484
+ </div>
1485
+ </div>
1486
+ <div class="glyph fs1">
1487
+ <div class="clearfix bshadow0 pbs">
1488
+ <span class="icon2-yandex_xml-fill-ru"></span>
1489
+ <span class="mls"> icon2-yandex_xml-fill-ru</span>
1490
+ </div>
1491
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
1492
+ <input type="text" readonly value="e94a" class="unit size1of2" />
1493
+ <input type="text" maxlength="1" readonly value="&#xe94a;" class="unitRight size1of2 talign-right" />
1494
+ </fieldset>
1495
+ <div class="fs0 bshadow0 clearfix hidden-true">
1496
+ <span class="unit pvs fgc1">liga: </span>
1497
+ <input type="text" readonly value="" class="liga unitRight" />
1498
+ </div>
1499
+ </div>
1500
+ <div class="glyph fs1">
1501
+ <div class="clearfix bshadow0 pbs">
1502
+ <span class="icon2-yandex_xml-ru"></span>
1503
+ <span class="mls"> icon2-yandex_xml-ru</span>
1504
+ </div>
1505
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
1506
+ <input type="text" readonly value="e949" class="unit size1of2" />
1507
+ <input type="text" maxlength="1" readonly value="&#xe949;" class="unitRight size1of2 talign-right" />
1508
+ </fieldset>
1509
+ <div class="fs0 bshadow0 clearfix hidden-true">
1510
+ <span class="unit pvs fgc1">liga: </span>
1511
+ <input type="text" readonly value="" class="liga unitRight" />
1512
+ </div>
1513
+ </div>
1514
+ <div class="glyph fs1">
1515
+ <div class="clearfix bshadow0 pbs">
1516
+ <span class="icon2-academic_cap"></span>
1517
+ <span class="mls"> icon2-academic_cap</span>
1518
+ </div>
1519
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
1520
+ <input type="text" readonly value="e94b" class="unit size1of2" />
1521
+ <input type="text" maxlength="1" readonly value="&#xe94b;" class="unitRight size1of2 talign-right" />
1522
+ </fieldset>
1523
+ <div class="fs0 bshadow0 clearfix hidden-true">
1524
+ <span class="unit pvs fgc1">liga: </span>
1525
+ <input type="text" readonly value="" class="liga unitRight" />
1526
+ </div>
1527
+ </div>
1528
+ <div class="glyph fs1">
1529
+ <div class="clearfix bshadow0 pbs">
1530
+ <span class="icon2-academic_cap-fill"></span>
1531
+ <span class="mls"> icon2-academic_cap-fill</span>
1532
+ </div>
1533
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
1534
+ <input type="text" readonly value="e95f" class="unit size1of2" />
1535
+ <input type="text" maxlength="1" readonly value="&#xe95f;" class="unitRight size1of2 talign-right" />
1536
+ </fieldset>
1537
+ <div class="fs0 bshadow0 clearfix hidden-true">
1538
+ <span class="unit pvs fgc1">liga: </span>
1539
+ <input type="text" readonly value="" class="liga unitRight" />
1540
+ </div>
1541
+ </div>
1542
+ <div class="glyph fs1">
1543
+ <div class="clearfix bshadow0 pbs">
1544
+ <span class="icon2-savings"></span>
1545
+ <span class="mls"> icon2-savings</span>
1546
+ </div>
1547
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
1548
+ <input type="text" readonly value="e905" class="unit size1of2" />
1549
+ <input type="text" maxlength="1" readonly value="&#xe905;" class="unitRight size1of2 talign-right" />
1550
+ </fieldset>
1551
+ <div class="fs0 bshadow0 clearfix hidden-true">
1552
+ <span class="unit pvs fgc1">liga: </span>
1553
+ <input type="text" readonly value="" class="liga unitRight" />
1554
+ </div>
1555
+ </div>
1556
+ <div class="glyph fs1">
1557
+ <div class="clearfix bshadow0 pbs">
1558
+ <span class="icon2-savings-fill"></span>
1559
+ <span class="mls"> icon2-savings-fill</span>
1560
+ </div>
1561
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
1562
+ <input type="text" readonly value="e904" class="unit size1of2" />
1563
+ <input type="text" maxlength="1" readonly value="&#xe904;" class="unitRight size1of2 talign-right" />
1564
+ </fieldset>
1565
+ <div class="fs0 bshadow0 clearfix hidden-true">
1566
+ <span class="unit pvs fgc1">liga: </span>
1567
+ <input type="text" readonly value="" class="liga unitRight" />
1568
+ </div>
1569
+ </div>
1570
+ <div class="glyph fs1">
1571
+ <div class="clearfix bshadow0 pbs">
1572
+ <span class="icon2-bell"></span>
1573
+ <span class="mls"> icon2-bell</span>
1574
+ </div>
1575
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
1576
+ <input type="text" readonly value="e907" class="unit size1of2" />
1577
+ <input type="text" maxlength="1" readonly value="&#xe907;" class="unitRight size1of2 talign-right" />
1578
+ </fieldset>
1579
+ <div class="fs0 bshadow0 clearfix hidden-true">
1580
+ <span class="unit pvs fgc1">liga: </span>
1581
+ <input type="text" readonly value="" class="liga unitRight" />
1582
+ </div>
1583
+ </div>
1584
+ <div class="glyph fs1">
1585
+ <div class="clearfix bshadow0 pbs">
1586
+ <span class="icon2-bell-fill"></span>
1587
+ <span class="mls"> icon2-bell-fill</span>
1588
+ </div>
1589
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
1590
+ <input type="text" readonly value="e906" class="unit size1of2" />
1591
+ <input type="text" maxlength="1" readonly value="&#xe906;" class="unitRight size1of2 talign-right" />
1592
+ </fieldset>
1593
+ <div class="fs0 bshadow0 clearfix hidden-true">
1594
+ <span class="unit pvs fgc1">liga: </span>
1595
+ <input type="text" readonly value="" class="liga unitRight" />
1596
+ </div>
1597
+ </div>
1598
+ <div class="glyph fs1">
1599
+ <div class="clearfix bshadow0 pbs">
1600
+ <span class="icon2-calendar"></span>
1601
+ <span class="mls"> icon2-calendar</span>
1602
+ </div>
1603
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
1604
+ <input type="text" readonly value="e909" class="unit size1of2" />
1605
+ <input type="text" maxlength="1" readonly value="&#xe909;" class="unitRight size1of2 talign-right" />
1606
+ </fieldset>
1607
+ <div class="fs0 bshadow0 clearfix hidden-true">
1608
+ <span class="unit pvs fgc1">liga: </span>
1609
+ <input type="text" readonly value="" class="liga unitRight" />
1610
+ </div>
1611
+ </div>
1612
+ <div class="glyph fs1">
1613
+ <div class="clearfix bshadow0 pbs">
1614
+ <span class="icon2-calendar-fill"></span>
1615
+ <span class="mls"> icon2-calendar-fill</span>
1616
+ </div>
1617
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
1618
+ <input type="text" readonly value="e908" class="unit size1of2" />
1619
+ <input type="text" maxlength="1" readonly value="&#xe908;" class="unitRight size1of2 talign-right" />
1620
+ </fieldset>
1621
+ <div class="fs0 bshadow0 clearfix hidden-true">
1622
+ <span class="unit pvs fgc1">liga: </span>
1623
+ <input type="text" readonly value="" class="liga unitRight" />
1624
+ </div>
1625
+ </div>
1626
+ <div class="glyph fs1">
1627
+ <div class="clearfix bshadow0 pbs">
1628
+ <span class="icon2-case"></span>
1629
+ <span class="mls"> icon2-case</span>
1630
+ </div>
1631
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
1632
+ <input type="text" readonly value="e90b" class="unit size1of2" />
1633
+ <input type="text" maxlength="1" readonly value="&#xe90b;" class="unitRight size1of2 talign-right" />
1634
+ </fieldset>
1635
+ <div class="fs0 bshadow0 clearfix hidden-true">
1636
+ <span class="unit pvs fgc1">liga: </span>
1637
+ <input type="text" readonly value="" class="liga unitRight" />
1638
+ </div>
1639
+ </div>
1640
+ <div class="glyph fs1">
1641
+ <div class="clearfix bshadow0 pbs">
1642
+ <span class="icon2-case-fill"></span>
1643
+ <span class="mls"> icon2-case-fill</span>
1644
+ </div>
1645
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
1646
+ <input type="text" readonly value="e90a" class="unit size1of2" />
1647
+ <input type="text" maxlength="1" readonly value="&#xe90a;" class="unitRight size1of2 talign-right" />
1648
+ </fieldset>
1649
+ <div class="fs0 bshadow0 clearfix hidden-true">
1650
+ <span class="unit pvs fgc1">liga: </span>
1651
+ <input type="text" readonly value="" class="liga unitRight" />
1652
+ </div>
1653
+ </div>
1654
+ <div class="glyph fs1">
1655
+ <div class="clearfix bshadow0 pbs">
1656
+ <span class="icon2-grid"></span>
1657
+ <span class="mls"> icon2-grid</span>
1658
+ </div>
1659
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
1660
+ <input type="text" readonly value="e911" class="unit size1of2" />
1661
+ <input type="text" maxlength="1" readonly value="&#xe911;" class="unitRight size1of2 talign-right" />
1662
+ </fieldset>
1663
+ <div class="fs0 bshadow0 clearfix hidden-true">
1664
+ <span class="unit pvs fgc1">liga: </span>
1665
+ <input type="text" readonly value="" class="liga unitRight" />
1666
+ </div>
1667
+ </div>
1668
+ <div class="glyph fs1">
1669
+ <div class="clearfix bshadow0 pbs">
1670
+ <span class="icon2-grid-fill"></span>
1671
+ <span class="mls"> icon2-grid-fill</span>
1672
+ </div>
1673
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
1674
+ <input type="text" readonly value="e910" class="unit size1of2" />
1675
+ <input type="text" maxlength="1" readonly value="&#xe910;" class="unitRight size1of2 talign-right" />
1676
+ </fieldset>
1677
+ <div class="fs0 bshadow0 clearfix hidden-true">
1678
+ <span class="unit pvs fgc1">liga: </span>
1679
+ <input type="text" readonly value="" class="liga unitRight" />
1680
+ </div>
1681
+ </div>
1682
+ <div class="glyph fs1">
1683
+ <div class="clearfix bshadow0 pbs">
1684
+ <span class="icon2-mail"></span>
1685
+ <span class="mls"> icon2-mail</span>
1686
+ </div>
1687
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
1688
+ <input type="text" readonly value="e913" class="unit size1of2" />
1689
+ <input type="text" maxlength="1" readonly value="&#xe913;" class="unitRight size1of2 talign-right" />
1690
+ </fieldset>
1691
+ <div class="fs0 bshadow0 clearfix hidden-true">
1692
+ <span class="unit pvs fgc1">liga: </span>
1693
+ <input type="text" readonly value="" class="liga unitRight" />
1694
+ </div>
1695
+ </div>
1696
+ <div class="glyph fs1">
1697
+ <div class="clearfix bshadow0 pbs">
1698
+ <span class="icon2-mail-fill"></span>
1699
+ <span class="mls"> icon2-mail-fill</span>
1700
+ </div>
1701
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
1702
+ <input type="text" readonly value="e912" class="unit size1of2" />
1703
+ <input type="text" maxlength="1" readonly value="&#xe912;" class="unitRight size1of2 talign-right" />
1704
+ </fieldset>
1705
+ <div class="fs0 bshadow0 clearfix hidden-true">
1706
+ <span class="unit pvs fgc1">liga: </span>
1707
+ <input type="text" readonly value="" class="liga unitRight" />
1708
+ </div>
1709
+ </div>
1710
+ <div class="glyph fs1">
1711
+ <div class="clearfix bshadow0 pbs">
1712
+ <span class="icon2-price_tag"></span>
1713
+ <span class="mls"> icon2-price_tag</span>
1714
+ </div>
1715
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
1716
+ <input type="text" readonly value="e916" class="unit size1of2" />
1717
+ <input type="text" maxlength="1" readonly value="&#xe916;" class="unitRight size1of2 talign-right" />
1718
+ </fieldset>
1719
+ <div class="fs0 bshadow0 clearfix hidden-true">
1720
+ <span class="unit pvs fgc1">liga: </span>
1721
+ <input type="text" readonly value="" class="liga unitRight" />
1722
+ </div>
1723
+ </div>
1724
+ <div class="glyph fs1">
1725
+ <div class="clearfix bshadow0 pbs">
1726
+ <span class="icon2-price_tag-fill"></span>
1727
+ <span class="mls"> icon2-price_tag-fill</span>
1728
+ </div>
1729
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
1730
+ <input type="text" readonly value="e915" class="unit size1of2" />
1731
+ <input type="text" maxlength="1" readonly value="&#xe915;" class="unitRight size1of2 talign-right" />
1732
+ </fieldset>
1733
+ <div class="fs0 bshadow0 clearfix hidden-true">
1734
+ <span class="unit pvs fgc1">liga: </span>
1735
+ <input type="text" readonly value="" class="liga unitRight" />
1736
+ </div>
1737
+ </div>
1738
+ <div class="glyph fs1">
1739
+ <div class="clearfix bshadow0 pbs">
1740
+ <span class="icon2-map_point"></span>
1741
+ <span class="mls"> icon2-map_point</span>
1742
+ </div>
1743
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
1744
+ <input type="text" readonly value="e918" class="unit size1of2" />
1745
+ <input type="text" maxlength="1" readonly value="&#xe918;" class="unitRight size1of2 talign-right" />
1746
+ </fieldset>
1747
+ <div class="fs0 bshadow0 clearfix hidden-true">
1748
+ <span class="unit pvs fgc1">liga: </span>
1749
+ <input type="text" readonly value="" class="liga unitRight" />
1750
+ </div>
1751
+ </div>
1752
+ <div class="glyph fs1">
1753
+ <div class="clearfix bshadow0 pbs">
1754
+ <span class="icon2-map_point-fill"></span>
1755
+ <span class="mls"> icon2-map_point-fill</span>
1756
+ </div>
1757
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
1758
+ <input type="text" readonly value="e917" class="unit size1of2" />
1759
+ <input type="text" maxlength="1" readonly value="&#xe917;" class="unitRight size1of2 talign-right" />
1760
+ </fieldset>
1761
+ <div class="fs0 bshadow0 clearfix hidden-true">
1762
+ <span class="unit pvs fgc1">liga: </span>
1763
+ <input type="text" readonly value="" class="liga unitRight" />
1764
+ </div>
1765
+ </div>
1766
+ <div class="glyph fs1">
1767
+ <div class="clearfix bshadow0 pbs">
1768
+ <span class="icon2-gear"></span>
1769
+ <span class="mls"> icon2-gear</span>
1770
+ </div>
1771
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
1772
+ <input type="text" readonly value="e91a" class="unit size1of2" />
1773
+ <input type="text" maxlength="1" readonly value="&#xe91a;" class="unitRight size1of2 talign-right" />
1774
+ </fieldset>
1775
+ <div class="fs0 bshadow0 clearfix hidden-true">
1776
+ <span class="unit pvs fgc1">liga: </span>
1777
+ <input type="text" readonly value="" class="liga unitRight" />
1778
+ </div>
1779
+ </div>
1780
+ <div class="glyph fs1">
1781
+ <div class="clearfix bshadow0 pbs">
1782
+ <span class="icon2-gear-fill"></span>
1783
+ <span class="mls"> icon2-gear-fill</span>
1784
+ </div>
1785
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
1786
+ <input type="text" readonly value="e919" class="unit size1of2" />
1787
+ <input type="text" maxlength="1" readonly value="&#xe919;" class="unitRight size1of2 talign-right" />
1788
+ </fieldset>
1789
+ <div class="fs0 bshadow0 clearfix hidden-true">
1790
+ <span class="unit pvs fgc1">liga: </span>
1791
+ <input type="text" readonly value="" class="liga unitRight" />
1792
+ </div>
1793
+ </div>
1794
+ <div class="glyph fs1">
1795
+ <div class="clearfix bshadow0 pbs">
1796
+ <span class="icon2-user"></span>
1797
+ <span class="mls"> icon2-user</span>
1798
+ </div>
1799
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
1800
+ <input type="text" readonly value="e91f" class="unit size1of2" />
1801
+ <input type="text" maxlength="1" readonly value="&#xe91f;" class="unitRight size1of2 talign-right" />
1802
+ </fieldset>
1803
+ <div class="fs0 bshadow0 clearfix hidden-true">
1804
+ <span class="unit pvs fgc1">liga: </span>
1805
+ <input type="text" readonly value="" class="liga unitRight" />
1806
+ </div>
1807
+ </div>
1808
+ <div class="glyph fs1">
1809
+ <div class="clearfix bshadow0 pbs">
1810
+ <span class="icon2-user-fill"></span>
1811
+ <span class="mls"> icon2-user-fill</span>
1812
+ </div>
1813
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
1814
+ <input type="text" readonly value="e91e" class="unit size1of2" />
1815
+ <input type="text" maxlength="1" readonly value="&#xe91e;" class="unitRight size1of2 talign-right" />
1816
+ </fieldset>
1817
+ <div class="fs0 bshadow0 clearfix hidden-true">
1818
+ <span class="unit pvs fgc1">liga: </span>
1819
+ <input type="text" readonly value="" class="liga unitRight" />
1820
+ </div>
1821
+ </div>
1822
+ <div class="glyph fs1">
1823
+ <div class="clearfix bshadow0 pbs">
1824
+ <span class="icon2-users"></span>
1825
+ <span class="mls"> icon2-users</span>
1826
+ </div>
1827
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
1828
+ <input type="text" readonly value="e921" class="unit size1of2" />
1829
+ <input type="text" maxlength="1" readonly value="&#xe921;" class="unitRight size1of2 talign-right" />
1830
+ </fieldset>
1831
+ <div class="fs0 bshadow0 clearfix hidden-true">
1832
+ <span class="unit pvs fgc1">liga: </span>
1833
+ <input type="text" readonly value="" class="liga unitRight" />
1834
+ </div>
1835
+ </div>
1836
+ <div class="glyph fs1">
1837
+ <div class="clearfix bshadow0 pbs">
1838
+ <span class="icon2-users-fill"></span>
1839
+ <span class="mls"> icon2-users-fill</span>
1840
+ </div>
1841
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
1842
+ <input type="text" readonly value="e920" class="unit size1of2" />
1843
+ <input type="text" maxlength="1" readonly value="&#xe920;" class="unitRight size1of2 talign-right" />
1844
+ </fieldset>
1845
+ <div class="fs0 bshadow0 clearfix hidden-true">
1846
+ <span class="unit pvs fgc1">liga: </span>
1847
+ <input type="text" readonly value="" class="liga unitRight" />
1848
+ </div>
1849
+ </div>
1850
+ <div class="glyph fs1">
1851
+ <div class="clearfix bshadow0 pbs">
1852
+ <span class="icon2-sun"></span>
1853
+ <span class="mls"> icon2-sun</span>
1854
+ </div>
1855
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
1856
+ <input type="text" readonly value="e9f6" class="unit size1of2" />
1857
+ <input type="text" maxlength="1" readonly value="&#xe9f6;" class="unitRight size1of2 talign-right" />
1858
+ </fieldset>
1859
+ <div class="fs0 bshadow0 clearfix hidden-true">
1860
+ <span class="unit pvs fgc1">liga: </span>
1861
+ <input type="text" readonly value="" class="liga unitRight" />
1862
+ </div>
1863
+ </div>
1864
+ <div class="glyph fs1">
1865
+ <div class="clearfix bshadow0 pbs">
1866
+ <span class="icon2-cloud"></span>
1867
+ <span class="mls"> icon2-cloud</span>
1868
+ </div>
1869
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
1870
+ <input type="text" readonly value="e9f7" class="unit size1of2" />
1871
+ <input type="text" maxlength="1" readonly value="&#xe9f7;" class="unitRight size1of2 talign-right" />
1872
+ </fieldset>
1873
+ <div class="fs0 bshadow0 clearfix hidden-true">
1874
+ <span class="unit pvs fgc1">liga: </span>
1875
+ <input type="text" readonly value="" class="liga unitRight" />
1876
+ </div>
1877
+ </div>
1878
+ <div class="glyph fs1">
1879
+ <div class="clearfix bshadow0 pbs">
1880
+ <span class="icon2-rain"></span>
1881
+ <span class="mls"> icon2-rain</span>
1882
+ </div>
1883
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
1884
+ <input type="text" readonly value="e9f8" class="unit size1of2" />
1885
+ <input type="text" maxlength="1" readonly value="&#xe9f8;" class="unitRight size1of2 talign-right" />
1886
+ </fieldset>
1887
+ <div class="fs0 bshadow0 clearfix hidden-true">
1888
+ <span class="unit pvs fgc1">liga: </span>
1889
+ <input type="text" readonly value="" class="liga unitRight" />
1890
+ </div>
1891
+ </div>
1892
+ <div class="glyph fs1">
1893
+ <div class="clearfix bshadow0 pbs">
1894
+ <span class="icon2-snow"></span>
1895
+ <span class="mls"> icon2-snow</span>
1896
+ </div>
1897
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
1898
+ <input type="text" readonly value="e9f9" class="unit size1of2" />
1899
+ <input type="text" maxlength="1" readonly value="&#xe9f9;" class="unitRight size1of2 talign-right" />
1900
+ </fieldset>
1901
+ <div class="fs0 bshadow0 clearfix hidden-true">
1902
+ <span class="unit pvs fgc1">liga: </span>
1903
+ <input type="text" readonly value="" class="liga unitRight" />
1904
+ </div>
1905
+ </div>
1906
+ <div class="glyph fs1">
1907
+ <div class="clearfix bshadow0 pbs">
1908
+ <span class="icon2-spider"></span>
1909
+ <span class="mls"> icon2-spider</span>
1910
+ </div>
1911
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
1912
+ <input type="text" readonly value="e9f2" class="unit size1of2" />
1913
+ <input type="text" maxlength="1" readonly value="&#xe9f2;" class="unitRight size1of2 talign-right" />
1914
+ </fieldset>
1915
+ <div class="fs0 bshadow0 clearfix hidden-true">
1916
+ <span class="unit pvs fgc1">liga: </span>
1917
+ <input type="text" readonly value="" class="liga unitRight" />
1918
+ </div>
1919
+ </div>
1920
+ <div class="glyph fs1">
1921
+ <div class="clearfix bshadow0 pbs">
1922
+ <span class="icon2-yandex-eng"></span>
1923
+ <span class="mls"> icon2-yandex-eng</span>
1924
+ </div>
1925
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
1926
+ <input type="text" readonly value="e9ee" class="unit size1of2" />
1927
+ <input type="text" maxlength="1" readonly value="&#xe9ee;" class="unitRight size1of2 talign-right" />
1928
+ </fieldset>
1929
+ <div class="fs0 bshadow0 clearfix hidden-true">
1930
+ <span class="unit pvs fgc1">liga: </span>
1931
+ <input type="text" readonly value="" class="liga unitRight" />
1932
+ </div>
1933
+ </div>
1934
+ <div class="glyph fs1">
1935
+ <div class="clearfix bshadow0 pbs">
1936
+ <span class="icon2-yandex-ru"></span>
1937
+ <span class="mls"> icon2-yandex-ru</span>
1938
+ </div>
1939
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
1940
+ <input type="text" readonly value="e9ef" class="unit size1of2" />
1941
+ <input type="text" maxlength="1" readonly value="&#xe9ef;" class="unitRight size1of2 talign-right" />
1942
+ </fieldset>
1943
+ <div class="fs0 bshadow0 clearfix hidden-true">
1944
+ <span class="unit pvs fgc1">liga: </span>
1945
+ <input type="text" readonly value="" class="liga unitRight" />
1946
+ </div>
1947
+ </div>
1948
+ <div class="glyph fs1">
1949
+ <div class="clearfix bshadow0 pbs">
1950
+ <span class="icon2-apple"></span>
1951
+ <span class="mls"> icon2-apple</span>
1952
+ </div>
1953
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
1954
+ <input type="text" readonly value="e9e1" class="unit size1of2" />
1955
+ <input type="text" maxlength="1" readonly value="&#xe9e1;" class="unitRight size1of2 talign-right" />
1956
+ </fieldset>
1957
+ <div class="fs0 bshadow0 clearfix hidden-true">
1958
+ <span class="unit pvs fgc1">liga: </span>
1959
+ <input type="text" readonly value="" class="liga unitRight" />
1960
+ </div>
1961
+ </div>
1962
+ <div class="glyph fs1">
1963
+ <div class="clearfix bshadow0 pbs">
1964
+ <span class="icon2-topvisor"></span>
1965
+ <span class="mls"> icon2-topvisor</span>
1966
+ </div>
1967
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
1968
+ <input type="text" readonly value="e9d3" class="unit size1of2" />
1969
+ <input type="text" maxlength="1" readonly value="&#xe9d3;" class="unitRight size1of2 talign-right" />
1970
+ </fieldset>
1971
+ <div class="fs0 bshadow0 clearfix hidden-true">
1972
+ <span class="unit pvs fgc1">liga: </span>
1973
+ <input type="text" readonly value="" class="liga unitRight" />
1974
+ </div>
1975
+ </div>
1976
+ <div class="glyph fs1">
1977
+ <div class="clearfix bshadow0 pbs">
1978
+ <span class="icon2-printer"></span>
1979
+ <span class="mls"> icon2-printer</span>
1980
+ </div>
1981
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
1982
+ <input type="text" readonly value="e9ed" class="unit size1of2" />
1983
+ <input type="text" maxlength="1" readonly value="&#xe9ed;" class="unitRight size1of2 talign-right" />
1984
+ </fieldset>
1985
+ <div class="fs0 bshadow0 clearfix hidden-true">
1986
+ <span class="unit pvs fgc1">liga: </span>
1987
+ <input type="text" readonly value="" class="liga unitRight" />
1988
+ </div>
1989
+ </div>
1990
+ <div class="glyph fs1">
1991
+ <div class="clearfix bshadow0 pbs">
1992
+ <span class="icon2-globe"></span>
1993
+ <span class="mls"> icon2-globe</span>
1994
+ </div>
1995
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
1996
+ <input type="text" readonly value="e9e2" class="unit size1of2" />
1997
+ <input type="text" maxlength="1" readonly value="&#xe9e2;" class="unitRight size1of2 talign-right" />
1998
+ </fieldset>
1999
+ <div class="fs0 bshadow0 clearfix hidden-true">
2000
+ <span class="unit pvs fgc1">liga: </span>
2001
+ <input type="text" readonly value="" class="liga unitRight" />
2002
+ </div>
2003
+ </div>
2004
+ <div class="glyph fs1">
2005
+ <div class="clearfix bshadow0 pbs">
2006
+ <span class="icon2-document_import"></span>
2007
+ <span class="mls"> icon2-document_import</span>
2008
+ </div>
2009
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
2010
+ <input type="text" readonly value="e9d4" class="unit size1of2" />
2011
+ <input type="text" maxlength="1" readonly value="&#xe9d4;" class="unitRight size1of2 talign-right" />
2012
+ </fieldset>
2013
+ <div class="fs0 bshadow0 clearfix hidden-true">
2014
+ <span class="unit pvs fgc1">liga: </span>
2015
+ <input type="text" readonly value="" class="liga unitRight" />
2016
+ </div>
2017
+ </div>
2018
+ <div class="glyph fs1">
2019
+ <div class="clearfix bshadow0 pbs">
2020
+ <span class="icon2-document_search"></span>
2021
+ <span class="mls"> icon2-document_search</span>
2022
+ </div>
2023
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
2024
+ <input type="text" readonly value="e9d5" class="unit size1of2" />
2025
+ <input type="text" maxlength="1" readonly value="&#xe9d5;" class="unitRight size1of2 talign-right" />
2026
+ </fieldset>
2027
+ <div class="fs0 bshadow0 clearfix hidden-true">
2028
+ <span class="unit pvs fgc1">liga: </span>
2029
+ <input type="text" readonly value="" class="liga unitRight" />
2030
+ </div>
2031
+ </div>
2032
+ <div class="glyph fs1">
2033
+ <div class="clearfix bshadow0 pbs">
2034
+ <span class="icon2-document_view"></span>
2035
+ <span class="mls"> icon2-document_view</span>
2036
+ </div>
2037
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
2038
+ <input type="text" readonly value="e9d6" class="unit size1of2" />
2039
+ <input type="text" maxlength="1" readonly value="&#xe9d6;" class="unitRight size1of2 talign-right" />
2040
+ </fieldset>
2041
+ <div class="fs0 bshadow0 clearfix hidden-true">
2042
+ <span class="unit pvs fgc1">liga: </span>
2043
+ <input type="text" readonly value="" class="liga unitRight" />
2044
+ </div>
2045
+ </div>
2046
+ <div class="glyph fs1">
2047
+ <div class="clearfix bshadow0 pbs">
2048
+ <span class="icon2-document"></span>
2049
+ <span class="mls"> icon2-document</span>
2050
+ </div>
2051
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
2052
+ <input type="text" readonly value="e9d7" class="unit size1of2" />
2053
+ <input type="text" maxlength="1" readonly value="&#xe9d7;" class="unitRight size1of2 talign-right" />
2054
+ </fieldset>
2055
+ <div class="fs0 bshadow0 clearfix hidden-true">
2056
+ <span class="unit pvs fgc1">liga: </span>
2057
+ <input type="text" readonly value="" class="liga unitRight" />
2058
+ </div>
2059
+ </div>
2060
+ <div class="glyph fs1">
2061
+ <div class="clearfix bshadow0 pbs">
2062
+ <span class="icon2-minus_circle"></span>
2063
+ <span class="mls"> icon2-minus_circle</span>
2064
+ </div>
2065
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
2066
+ <input type="text" readonly value="e9d8" class="unit size1of2" />
2067
+ <input type="text" maxlength="1" readonly value="&#xe9d8;" class="unitRight size1of2 talign-right" />
2068
+ </fieldset>
2069
+ <div class="fs0 bshadow0 clearfix hidden-true">
2070
+ <span class="unit pvs fgc1">liga: </span>
2071
+ <input type="text" readonly value="" class="liga unitRight" />
2072
+ </div>
2073
+ </div>
2074
+ <div class="glyph fs1">
2075
+ <div class="clearfix bshadow0 pbs">
2076
+ <span class="icon2-sort-a-z"></span>
2077
+ <span class="mls"> icon2-sort-a-z</span>
2078
+ </div>
2079
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
2080
+ <input type="text" readonly value="e9d9" class="unit size1of2" />
2081
+ <input type="text" maxlength="1" readonly value="&#xe9d9;" class="unitRight size1of2 talign-right" />
2082
+ </fieldset>
2083
+ <div class="fs0 bshadow0 clearfix hidden-true">
2084
+ <span class="unit pvs fgc1">liga: </span>
2085
+ <input type="text" readonly value="" class="liga unitRight" />
2086
+ </div>
2087
+ </div>
2088
+ <div class="glyph fs1">
2089
+ <div class="clearfix bshadow0 pbs">
2090
+ <span class="icon2-sort-z-a"></span>
2091
+ <span class="mls"> icon2-sort-z-a</span>
2092
+ </div>
2093
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
2094
+ <input type="text" readonly value="e9da" class="unit size1of2" />
2095
+ <input type="text" maxlength="1" readonly value="&#xe9da;" class="unitRight size1of2 talign-right" />
2096
+ </fieldset>
2097
+ <div class="fs0 bshadow0 clearfix hidden-true">
2098
+ <span class="unit pvs fgc1">liga: </span>
2099
+ <input type="text" readonly value="" class="liga unitRight" />
2100
+ </div>
2101
+ </div>
2102
+ <div class="glyph fs1">
2103
+ <div class="clearfix bshadow0 pbs">
2104
+ <span class="icon2-clipboard-done"></span>
2105
+ <span class="mls"> icon2-clipboard-done</span>
2106
+ </div>
2107
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
2108
+ <input type="text" readonly value="e9db" class="unit size1of2" />
2109
+ <input type="text" maxlength="1" readonly value="&#xe9db;" class="unitRight size1of2 talign-right" />
2110
+ </fieldset>
2111
+ <div class="fs0 bshadow0 clearfix hidden-true">
2112
+ <span class="unit pvs fgc1">liga: </span>
2113
+ <input type="text" readonly value="" class="liga unitRight" />
2114
+ </div>
2115
+ </div>
2116
+ <div class="glyph fs1">
2117
+ <div class="clearfix bshadow0 pbs">
2118
+ <span class="icon2-clipboard-undone"></span>
2119
+ <span class="mls"> icon2-clipboard-undone</span>
2120
+ </div>
2121
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
2122
+ <input type="text" readonly value="e9dc" class="unit size1of2" />
2123
+ <input type="text" maxlength="1" readonly value="&#xe9dc;" class="unitRight size1of2 talign-right" />
2124
+ </fieldset>
2125
+ <div class="fs0 bshadow0 clearfix hidden-true">
2126
+ <span class="unit pvs fgc1">liga: </span>
2127
+ <input type="text" readonly value="" class="liga unitRight" />
2128
+ </div>
2129
+ </div>
2130
+ <div class="glyph fs1">
2131
+ <div class="clearfix bshadow0 pbs">
2132
+ <span class="icon2-clipboard"></span>
2133
+ <span class="mls"> icon2-clipboard</span>
2134
+ </div>
2135
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
2136
+ <input type="text" readonly value="e9dd" class="unit size1of2" />
2137
+ <input type="text" maxlength="1" readonly value="&#xe9dd;" class="unitRight size1of2 talign-right" />
2138
+ </fieldset>
2139
+ <div class="fs0 bshadow0 clearfix hidden-true">
2140
+ <span class="unit pvs fgc1">liga: </span>
2141
+ <input type="text" readonly value="" class="liga unitRight" />
2142
+ </div>
2143
+ </div>
2144
+ <div class="glyph fs1">
2145
+ <div class="clearfix bshadow0 pbs">
2146
+ <span class="icon2-unlock-fill"></span>
2147
+ <span class="mls"> icon2-unlock-fill</span>
2148
+ </div>
2149
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
2150
+ <input type="text" readonly value="e9de" class="unit size1of2" />
2151
+ <input type="text" maxlength="1" readonly value="&#xe9de;" class="unitRight size1of2 talign-right" />
2152
+ </fieldset>
2153
+ <div class="fs0 bshadow0 clearfix hidden-true">
2154
+ <span class="unit pvs fgc1">liga: </span>
2155
+ <input type="text" readonly value="" class="liga unitRight" />
2156
+ </div>
2157
+ </div>
2158
+ <div class="glyph fs1">
2159
+ <div class="clearfix bshadow0 pbs">
2160
+ <span class="icon2-unlock"></span>
2161
+ <span class="mls"> icon2-unlock</span>
2162
+ </div>
2163
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
2164
+ <input type="text" readonly value="e9df" class="unit size1of2" />
2165
+ <input type="text" maxlength="1" readonly value="&#xe9df;" class="unitRight size1of2 talign-right" />
2166
+ </fieldset>
2167
+ <div class="fs0 bshadow0 clearfix hidden-true">
2168
+ <span class="unit pvs fgc1">liga: </span>
2169
+ <input type="text" readonly value="" class="liga unitRight" />
2170
+ </div>
2171
+ </div>
2172
+ <div class="glyph fs1">
2173
+ <div class="clearfix bshadow0 pbs">
2174
+ <span class="icon2-share"></span>
2175
+ <span class="mls"> icon2-share</span>
2176
+ </div>
2177
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
2178
+ <input type="text" readonly value="e9cc" class="unit size1of2" />
2179
+ <input type="text" maxlength="1" readonly value="&#xe9cc;" class="unitRight size1of2 talign-right" />
2180
+ </fieldset>
2181
+ <div class="fs0 bshadow0 clearfix hidden-true">
2182
+ <span class="unit pvs fgc1">liga: </span>
2183
+ <input type="text" readonly value="" class="liga unitRight" />
2184
+ </div>
2185
+ </div>
2186
+ <div class="glyph fs1">
2187
+ <div class="clearfix bshadow0 pbs">
2188
+ <span class="icon2-checklist"></span>
2189
+ <span class="mls"> icon2-checklist</span>
2190
+ </div>
2191
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
2192
+ <input type="text" readonly value="e9cb" class="unit size1of2" />
2193
+ <input type="text" maxlength="1" readonly value="&#xe9cb;" class="unitRight size1of2 talign-right" />
2194
+ </fieldset>
2195
+ <div class="fs0 bshadow0 clearfix hidden-true">
2196
+ <span class="unit pvs fgc1">liga: </span>
2197
+ <input type="text" readonly value="" class="liga unitRight" />
2198
+ </div>
2199
+ </div>
2200
+ <div class="glyph fs1">
2201
+ <div class="clearfix bshadow0 pbs">
2202
+ <span class="icon2-cluster"></span>
2203
+ <span class="mls"> icon2-cluster</span>
2204
+ </div>
2205
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
2206
+ <input type="text" readonly value="e932" class="unit size1of2" />
2207
+ <input type="text" maxlength="1" readonly value="&#xe932;" class="unitRight size1of2 talign-right" />
2208
+ </fieldset>
2209
+ <div class="fs0 bshadow0 clearfix hidden-true">
2210
+ <span class="unit pvs fgc1">liga: </span>
2211
+ <input type="text" readonly value="" class="liga unitRight" />
2212
+ </div>
2213
+ </div>
2214
+ <div class="glyph fs1">
2215
+ <div class="clearfix bshadow0 pbs">
2216
+ <span class="icon2-core-add"></span>
2217
+ <span class="mls"> icon2-core-add</span>
2218
+ </div>
2219
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
2220
+ <input type="text" readonly value="e9c6" class="unit size1of2" />
2221
+ <input type="text" maxlength="1" readonly value="&#xe9c6;" class="unitRight size1of2 talign-right" />
2222
+ </fieldset>
2223
+ <div class="fs0 bshadow0 clearfix hidden-true">
2224
+ <span class="unit pvs fgc1">liga: </span>
2225
+ <input type="text" readonly value="" class="liga unitRight" />
2226
+ </div>
2227
+ </div>
2228
+ <div class="glyph fs1">
2229
+ <div class="clearfix bshadow0 pbs">
2230
+ <span class="icon2-filter"></span>
2231
+ <span class="mls"> icon2-filter</span>
2232
+ </div>
2233
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
2234
+ <input type="text" readonly value="e9c9" class="unit size1of2" />
2235
+ <input type="text" maxlength="1" readonly value="&#xe9c9;" class="unitRight size1of2 talign-right" />
2236
+ </fieldset>
2237
+ <div class="fs0 bshadow0 clearfix hidden-true">
2238
+ <span class="unit pvs fgc1">liga: </span>
2239
+ <input type="text" readonly value="" class="liga unitRight" />
2240
+ </div>
2241
+ </div>
2242
+ <div class="glyph fs1">
2243
+ <div class="clearfix bshadow0 pbs">
2244
+ <span class="icon2-volume"></span>
2245
+ <span class="mls"> icon2-volume</span>
2246
+ </div>
2247
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
2248
+ <input type="text" readonly value="e9ca" class="unit size1of2" />
2249
+ <input type="text" maxlength="1" readonly value="&#xe9ca;" class="unitRight size1of2 talign-right" />
2250
+ </fieldset>
2251
+ <div class="fs0 bshadow0 clearfix hidden-true">
2252
+ <span class="unit pvs fgc1">liga: </span>
2253
+ <input type="text" readonly value="" class="liga unitRight" />
2254
+ </div>
2255
+ </div>
2256
+ <div class="glyph fs1">
2257
+ <div class="clearfix bshadow0 pbs">
2258
+ <span class="icon2-plug"></span>
2259
+ <span class="mls"> icon2-plug</span>
2260
+ </div>
2261
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
2262
+ <input type="text" readonly value="e973" class="unit size1of2" />
2263
+ <input type="text" maxlength="1" readonly value="&#xe973;" class="unitRight size1of2 talign-right" />
2264
+ </fieldset>
2265
+ <div class="fs0 bshadow0 clearfix hidden-true">
2266
+ <span class="unit pvs fgc1">liga: </span>
2267
+ <input type="text" readonly value="" class="liga unitRight" />
2268
+ </div>
2269
+ </div>
2270
+ <div class="glyph fs1">
2271
+ <div class="clearfix bshadow0 pbs">
2272
+ <span class="icon2-qr_code"></span>
2273
+ <span class="mls"> icon2-qr_code</span>
2274
+ </div>
2275
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
2276
+ <input type="text" readonly value="e9b7" class="unit size1of2" />
2277
+ <input type="text" maxlength="1" readonly value="&#xe9b7;" class="unitRight size1of2 talign-right" />
2278
+ </fieldset>
2279
+ <div class="fs0 bshadow0 clearfix hidden-true">
2280
+ <span class="unit pvs fgc1">liga: </span>
2281
+ <input type="text" readonly value="" class="liga unitRight" />
2282
+ </div>
2283
+ </div>
2284
+ <div class="glyph fs1">
2285
+ <div class="clearfix bshadow0 pbs">
2286
+ <span class="icon2-circular_arrow"></span>
2287
+ <span class="mls"> icon2-circular_arrow</span>
2288
+ </div>
2289
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
2290
+ <input type="text" readonly value="e9b0" class="unit size1of2" />
2291
+ <input type="text" maxlength="1" readonly value="&#xe9b0;" class="unitRight size1of2 talign-right" />
2292
+ </fieldset>
2293
+ <div class="fs0 bshadow0 clearfix hidden-true">
2294
+ <span class="unit pvs fgc1">liga: </span>
2295
+ <input type="text" readonly value="" class="liga unitRight" />
2296
+ </div>
2297
+ </div>
2298
+ <div class="glyph fs1">
2299
+ <div class="clearfix bshadow0 pbs">
2300
+ <span class="icon2-pause_circle"></span>
2301
+ <span class="mls"> icon2-pause_circle</span>
2302
+ </div>
2303
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
2304
+ <input type="text" readonly value="e9a3" class="unit size1of2" />
2305
+ <input type="text" maxlength="1" readonly value="&#xe9a3;" class="unitRight size1of2 talign-right" />
2306
+ </fieldset>
2307
+ <div class="fs0 bshadow0 clearfix hidden-true">
2308
+ <span class="unit pvs fgc1">liga: </span>
2309
+ <input type="text" readonly value="" class="liga unitRight" />
2310
+ </div>
2311
+ </div>
2312
+ <div class="glyph fs1">
2313
+ <div class="clearfix bshadow0 pbs">
2314
+ <span class="icon2-play_circle"></span>
2315
+ <span class="mls"> icon2-play_circle</span>
2316
+ </div>
2317
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
2318
+ <input type="text" readonly value="e9a4" class="unit size1of2" />
2319
+ <input type="text" maxlength="1" readonly value="&#xe9a4;" class="unitRight size1of2 talign-right" />
2320
+ </fieldset>
2321
+ <div class="fs0 bshadow0 clearfix hidden-true">
2322
+ <span class="unit pvs fgc1">liga: </span>
2323
+ <input type="text" readonly value="" class="liga unitRight" />
2324
+ </div>
2325
+ </div>
2326
+ <div class="glyph fs1">
2327
+ <div class="clearfix bshadow0 pbs">
2328
+ <span class="icon2-power"></span>
2329
+ <span class="mls"> icon2-power</span>
2330
+ </div>
2331
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
2332
+ <input type="text" readonly value="e9a5" class="unit size1of2" />
2333
+ <input type="text" maxlength="1" readonly value="&#xe9a5;" class="unitRight size1of2 talign-right" />
2334
+ </fieldset>
2335
+ <div class="fs0 bshadow0 clearfix hidden-true">
2336
+ <span class="unit pvs fgc1">liga: </span>
2337
+ <input type="text" readonly value="" class="liga unitRight" />
2338
+ </div>
2339
+ </div>
2340
+ <div class="glyph fs1">
2341
+ <div class="clearfix bshadow0 pbs">
2342
+ <span class="icon2-heart"></span>
2343
+ <span class="mls"> icon2-heart</span>
2344
+ </div>
2345
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
2346
+ <input type="text" readonly value="e99b" class="unit size1of2" />
2347
+ <input type="text" maxlength="1" readonly value="&#xe99b;" class="unitRight size1of2 talign-right" />
2348
+ </fieldset>
2349
+ <div class="fs0 bshadow0 clearfix hidden-true">
2350
+ <span class="unit pvs fgc1">liga: </span>
2351
+ <input type="text" readonly value="" class="liga unitRight" />
2352
+ </div>
2353
+ </div>
2354
+ <div class="glyph fs1">
2355
+ <div class="clearfix bshadow0 pbs">
2356
+ <span class="icon2-heart-fill"></span>
2357
+ <span class="mls"> icon2-heart-fill</span>
2358
+ </div>
2359
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
2360
+ <input type="text" readonly value="e99c" class="unit size1of2" />
2361
+ <input type="text" maxlength="1" readonly value="&#xe99c;" class="unitRight size1of2 talign-right" />
2362
+ </fieldset>
2363
+ <div class="fs0 bshadow0 clearfix hidden-true">
2364
+ <span class="unit pvs fgc1">liga: </span>
2365
+ <input type="text" readonly value="" class="liga unitRight" />
2366
+ </div>
2367
+ </div>
2368
+ <div class="glyph fs1">
2369
+ <div class="clearfix bshadow0 pbs">
2370
+ <span class="icon2-heart_broken"></span>
2371
+ <span class="mls"> icon2-heart_broken</span>
2372
+ </div>
2373
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
2374
+ <input type="text" readonly value="e99d" class="unit size1of2" />
2375
+ <input type="text" maxlength="1" readonly value="&#xe99d;" class="unitRight size1of2 talign-right" />
2376
+ </fieldset>
2377
+ <div class="fs0 bshadow0 clearfix hidden-true">
2378
+ <span class="unit pvs fgc1">liga: </span>
2379
+ <input type="text" readonly value="" class="liga unitRight" />
2380
+ </div>
2381
+ </div>
2382
+ <div class="glyph fs1">
2383
+ <div class="clearfix bshadow0 pbs">
2384
+ <span class="icon2-heart_broken-fill"></span>
2385
+ <span class="mls"> icon2-heart_broken-fill</span>
2386
+ </div>
2387
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
2388
+ <input type="text" readonly value="e99e" class="unit size1of2" />
2389
+ <input type="text" maxlength="1" readonly value="&#xe99e;" class="unitRight size1of2 talign-right" />
2390
+ </fieldset>
2391
+ <div class="fs0 bshadow0 clearfix hidden-true">
2392
+ <span class="unit pvs fgc1">liga: </span>
2393
+ <input type="text" readonly value="" class="liga unitRight" />
2394
+ </div>
2395
+ </div>
2396
+ <div class="glyph fs1">
2397
+ <div class="clearfix bshadow0 pbs">
2398
+ <span class="icon2-like"></span>
2399
+ <span class="mls"> icon2-like</span>
2400
+ </div>
2401
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
2402
+ <input type="text" readonly value="e99f" class="unit size1of2" />
2403
+ <input type="text" maxlength="1" readonly value="&#xe99f;" class="unitRight size1of2 talign-right" />
2404
+ </fieldset>
2405
+ <div class="fs0 bshadow0 clearfix hidden-true">
2406
+ <span class="unit pvs fgc1">liga: </span>
2407
+ <input type="text" readonly value="" class="liga unitRight" />
2408
+ </div>
2409
+ </div>
2410
+ <div class="glyph fs1">
2411
+ <div class="clearfix bshadow0 pbs">
2412
+ <span class="icon2-like-fill"></span>
2413
+ <span class="mls"> icon2-like-fill</span>
2414
+ </div>
2415
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
2416
+ <input type="text" readonly value="e9a0" class="unit size1of2" />
2417
+ <input type="text" maxlength="1" readonly value="&#xe9a0;" class="unitRight size1of2 talign-right" />
2418
+ </fieldset>
2419
+ <div class="fs0 bshadow0 clearfix hidden-true">
2420
+ <span class="unit pvs fgc1">liga: </span>
2421
+ <input type="text" readonly value="" class="liga unitRight" />
2422
+ </div>
2423
+ </div>
2424
+ <div class="glyph fs1">
2425
+ <div class="clearfix bshadow0 pbs">
2426
+ <span class="icon2-dislike"></span>
2427
+ <span class="mls"> icon2-dislike</span>
2428
+ </div>
2429
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
2430
+ <input type="text" readonly value="e9a1" class="unit size1of2" />
2431
+ <input type="text" maxlength="1" readonly value="&#xe9a1;" class="unitRight size1of2 talign-right" />
2432
+ </fieldset>
2433
+ <div class="fs0 bshadow0 clearfix hidden-true">
2434
+ <span class="unit pvs fgc1">liga: </span>
2435
+ <input type="text" readonly value="" class="liga unitRight" />
2436
+ </div>
2437
+ </div>
2438
+ <div class="glyph fs1">
2439
+ <div class="clearfix bshadow0 pbs">
2440
+ <span class="icon2-dislike-fill"></span>
2441
+ <span class="mls"> icon2-dislike-fill</span>
2442
+ </div>
2443
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
2444
+ <input type="text" readonly value="e9a2" class="unit size1of2" />
2445
+ <input type="text" maxlength="1" readonly value="&#xe9a2;" class="unitRight size1of2 talign-right" />
2446
+ </fieldset>
2447
+ <div class="fs0 bshadow0 clearfix hidden-true">
2448
+ <span class="unit pvs fgc1">liga: </span>
2449
+ <input type="text" readonly value="" class="liga unitRight" />
2450
+ </div>
2451
+ </div>
2452
+ <div class="glyph fs1">
2453
+ <div class="clearfix bshadow0 pbs">
2454
+ <span class="icon2-lock"></span>
2455
+ <span class="mls"> icon2-lock</span>
2456
+ </div>
2457
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
2458
+ <input type="text" readonly value="e998" class="unit size1of2" />
2459
+ <input type="text" maxlength="1" readonly value="&#xe998;" class="unitRight size1of2 talign-right" />
2460
+ </fieldset>
2461
+ <div class="fs0 bshadow0 clearfix hidden-true">
2462
+ <span class="unit pvs fgc1">liga: </span>
2463
+ <input type="text" readonly value="" class="liga unitRight" />
2464
+ </div>
2465
+ </div>
2466
+ <div class="glyph fs1">
2467
+ <div class="clearfix bshadow0 pbs">
2468
+ <span class="icon2-lock-fill"></span>
2469
+ <span class="mls"> icon2-lock-fill</span>
2470
+ </div>
2471
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
2472
+ <input type="text" readonly value="e997" class="unit size1of2" />
2473
+ <input type="text" maxlength="1" readonly value="&#xe997;" class="unitRight size1of2 talign-right" />
2474
+ </fieldset>
2475
+ <div class="fs0 bshadow0 clearfix hidden-true">
2476
+ <span class="unit pvs fgc1">liga: </span>
2477
+ <input type="text" readonly value="" class="liga unitRight" />
2478
+ </div>
2479
+ </div>
2480
+ <div class="glyph fs1">
2481
+ <div class="clearfix bshadow0 pbs">
2482
+ <span class="icon2-clock"></span>
2483
+ <span class="mls"> icon2-clock</span>
2484
+ </div>
2485
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
2486
+ <input type="text" readonly value="e99a" class="unit size1of2" />
2487
+ <input type="text" maxlength="1" readonly value="&#xe99a;" class="unitRight size1of2 talign-right" />
2488
+ </fieldset>
2489
+ <div class="fs0 bshadow0 clearfix hidden-true">
2490
+ <span class="unit pvs fgc1">liga: </span>
2491
+ <input type="text" readonly value="" class="liga unitRight" />
2492
+ </div>
2493
+ </div>
2494
+ <div class="glyph fs1">
2495
+ <div class="clearfix bshadow0 pbs">
2496
+ <span class="icon2-clock-fill"></span>
2497
+ <span class="mls"> icon2-clock-fill</span>
2498
+ </div>
2499
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
2500
+ <input type="text" readonly value="e999" class="unit size1of2" />
2501
+ <input type="text" maxlength="1" readonly value="&#xe999;" class="unitRight size1of2 talign-right" />
2502
+ </fieldset>
2503
+ <div class="fs0 bshadow0 clearfix hidden-true">
2504
+ <span class="unit pvs fgc1">liga: </span>
2505
+ <input type="text" readonly value="" class="liga unitRight" />
2506
+ </div>
2507
+ </div>
2508
+ <div class="glyph fs1">
2509
+ <div class="clearfix bshadow0 pbs">
2510
+ <span class="icon2-circular_arrows"></span>
2511
+ <span class="mls"> icon2-circular_arrows</span>
2512
+ </div>
2513
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
2514
+ <input type="text" readonly value="e98c" class="unit size1of2" />
2515
+ <input type="text" maxlength="1" readonly value="&#xe98c;" class="unitRight size1of2 talign-right" />
2516
+ </fieldset>
2517
+ <div class="fs0 bshadow0 clearfix hidden-true">
2518
+ <span class="unit pvs fgc1">liga: </span>
2519
+ <input type="text" readonly value="" class="liga unitRight" />
2520
+ </div>
2521
+ </div>
2522
+ <div class="glyph fs1">
2523
+ <div class="clearfix bshadow0 pbs">
2524
+ <span class="icon2-flag"></span>
2525
+ <span class="mls"> icon2-flag</span>
2526
+ </div>
2527
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
2528
+ <input type="text" readonly value="e95e" class="unit size1of2" />
2529
+ <input type="text" maxlength="1" readonly value="&#xe95e;" class="unitRight size1of2 talign-right" />
2530
+ </fieldset>
2531
+ <div class="fs0 bshadow0 clearfix hidden-true">
2532
+ <span class="unit pvs fgc1">liga: </span>
2533
+ <input type="text" readonly value="" class="liga unitRight" />
2534
+ </div>
2535
+ </div>
2536
+ <div class="glyph fs1">
2537
+ <div class="clearfix bshadow0 pbs">
2538
+ <span class="icon2-flag-fill"></span>
2539
+ <span class="mls"> icon2-flag-fill</span>
2540
+ </div>
2541
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
2542
+ <input type="text" readonly value="e982" class="unit size1of2" />
2543
+ <input type="text" maxlength="1" readonly value="&#xe982;" class="unitRight size1of2 talign-right" />
2544
+ </fieldset>
2545
+ <div class="fs0 bshadow0 clearfix hidden-true">
2546
+ <span class="unit pvs fgc1">liga: </span>
2547
+ <input type="text" readonly value="" class="liga unitRight" />
2548
+ </div>
2549
+ </div>
2550
+ <div class="glyph fs1">
2551
+ <div class="clearfix bshadow0 pbs">
2552
+ <span class="icon2-chain_broken"></span>
2553
+ <span class="mls"> icon2-chain_broken</span>
2554
+ </div>
2555
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
2556
+ <input type="text" readonly value="e983" class="unit size1of2" />
2557
+ <input type="text" maxlength="1" readonly value="&#xe983;" class="unitRight size1of2 talign-right" />
2558
+ </fieldset>
2559
+ <div class="fs0 bshadow0 clearfix hidden-true">
2560
+ <span class="unit pvs fgc1">liga: </span>
2561
+ <input type="text" readonly value="" class="liga unitRight" />
2562
+ </div>
2563
+ </div>
2564
+ <div class="glyph fs1">
2565
+ <div class="clearfix bshadow0 pbs">
2566
+ <span class="icon2-step-over"></span>
2567
+ <span class="mls"> icon2-step-over</span>
2568
+ </div>
2569
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
2570
+ <input type="text" readonly value="e993" class="unit size1of2" />
2571
+ <input type="text" maxlength="1" readonly value="&#xe993;" class="unitRight size1of2 talign-right" />
2572
+ </fieldset>
2573
+ <div class="fs0 bshadow0 clearfix hidden-true">
2574
+ <span class="unit pvs fgc1">liga: </span>
2575
+ <input type="text" readonly value="" class="liga unitRight" />
2576
+ </div>
2577
+ </div>
2578
+ <div class="glyph fs1">
2579
+ <div class="clearfix bshadow0 pbs">
2580
+ <span class="icon2-step"></span>
2581
+ <span class="mls"> icon2-step</span>
2582
+ </div>
2583
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
2584
+ <input type="text" readonly value="e984" class="unit size1of2" />
2585
+ <input type="text" maxlength="1" readonly value="&#xe984;" class="unitRight size1of2 talign-right" />
2586
+ </fieldset>
2587
+ <div class="fs0 bshadow0 clearfix hidden-true">
2588
+ <span class="unit pvs fgc1">liga: </span>
2589
+ <input type="text" readonly value="" class="liga unitRight" />
2590
+ </div>
2591
+ </div>
2592
+ <div class="glyph fs1">
2593
+ <div class="clearfix bshadow0 pbs">
2594
+ <span class="icon2-loop"></span>
2595
+ <span class="mls"> icon2-loop</span>
2596
+ </div>
2597
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
2598
+ <input type="text" readonly value="e981" class="unit size1of2" />
2599
+ <input type="text" maxlength="1" readonly value="&#xe981;" class="unitRight size1of2 talign-right" />
2600
+ </fieldset>
2601
+ <div class="fs0 bshadow0 clearfix hidden-true">
2602
+ <span class="unit pvs fgc1">liga: </span>
2603
+ <input type="text" readonly value="" class="liga unitRight" />
2604
+ </div>
2605
+ </div>
2606
+ <div class="glyph fs1">
2607
+ <div class="clearfix bshadow0 pbs">
2608
+ <span class="icon2-close"></span>
2609
+ <span class="mls"> icon2-close</span>
2610
+ </div>
2611
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
2612
+ <input type="text" readonly value="e924" class="unit size1of2" />
2613
+ <input type="text" maxlength="1" readonly value="&#xe924;" class="unitRight size1of2 talign-right" />
2614
+ </fieldset>
2615
+ <div class="fs0 bshadow0 clearfix hidden-true">
2616
+ <span class="unit pvs fgc1">liga: </span>
2617
+ <input type="text" readonly value="" class="liga unitRight" />
2618
+ </div>
2619
+ </div>
2620
+ <div class="glyph fs1">
2621
+ <div class="clearfix bshadow0 pbs">
2622
+ <span class="icon2-chat_bubble"></span>
2623
+ <span class="mls"> icon2-chat_bubble</span>
2624
+ </div>
2625
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
2626
+ <input type="text" readonly value="e923" class="unit size1of2" />
2627
+ <input type="text" maxlength="1" readonly value="&#xe923;" class="unitRight size1of2 talign-right" />
2628
+ </fieldset>
2629
+ <div class="fs0 bshadow0 clearfix hidden-true">
2630
+ <span class="unit pvs fgc1">liga: </span>
2631
+ <input type="text" readonly value="" class="liga unitRight" />
2632
+ </div>
2633
+ </div>
2634
+ <div class="glyph fs1">
2635
+ <div class="clearfix bshadow0 pbs">
2636
+ <span class="icon2-chat_bubble-fill"></span>
2637
+ <span class="mls"> icon2-chat_bubble-fill</span>
2638
+ </div>
2639
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
2640
+ <input type="text" readonly value="e922" class="unit size1of2" />
2641
+ <input type="text" maxlength="1" readonly value="&#xe922;" class="unitRight size1of2 talign-right" />
2642
+ </fieldset>
2643
+ <div class="fs0 bshadow0 clearfix hidden-true">
2644
+ <span class="unit pvs fgc1">liga: </span>
2645
+ <input type="text" readonly value="" class="liga unitRight" />
2646
+ </div>
2647
+ </div>
2648
+ <div class="glyph fs1">
2649
+ <div class="clearfix bshadow0 pbs">
2650
+ <span class="icon2-trash"></span>
2651
+ <span class="mls"> icon2-trash</span>
2652
+ </div>
2653
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
2654
+ <input type="text" readonly value="e926" class="unit size1of2" />
2655
+ <input type="text" maxlength="1" readonly value="&#xe926;" class="unitRight size1of2 talign-right" />
2656
+ </fieldset>
2657
+ <div class="fs0 bshadow0 clearfix hidden-true">
2658
+ <span class="unit pvs fgc1">liga: </span>
2659
+ <input type="text" readonly value="" class="liga unitRight" />
2660
+ </div>
2661
+ </div>
2662
+ <div class="glyph fs1">
2663
+ <div class="clearfix bshadow0 pbs">
2664
+ <span class="icon2-trash-fill"></span>
2665
+ <span class="mls"> icon2-trash-fill</span>
2666
+ </div>
2667
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
2668
+ <input type="text" readonly value="e925" class="unit size1of2" />
2669
+ <input type="text" maxlength="1" readonly value="&#xe925;" class="unitRight size1of2 talign-right" />
2670
+ </fieldset>
2671
+ <div class="fs0 bshadow0 clearfix hidden-true">
2672
+ <span class="unit pvs fgc1">liga: </span>
2673
+ <input type="text" readonly value="" class="liga unitRight" />
2674
+ </div>
2675
+ </div>
2676
+ <div class="glyph fs1">
2677
+ <div class="clearfix bshadow0 pbs">
2678
+ <span class="icon2-document_edit"></span>
2679
+ <span class="mls"> icon2-document_edit</span>
2680
+ </div>
2681
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
2682
+ <input type="text" readonly value="e928" class="unit size1of2" />
2683
+ <input type="text" maxlength="1" readonly value="&#xe928;" class="unitRight size1of2 talign-right" />
2684
+ </fieldset>
2685
+ <div class="fs0 bshadow0 clearfix hidden-true">
2686
+ <span class="unit pvs fgc1">liga: </span>
2687
+ <input type="text" readonly value="" class="liga unitRight" />
2688
+ </div>
2689
+ </div>
2690
+ <div class="glyph fs1">
2691
+ <div class="clearfix bshadow0 pbs">
2692
+ <span class="icon2-document_edit-fill"></span>
2693
+ <span class="mls"> icon2-document_edit-fill</span>
2694
+ </div>
2695
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
2696
+ <input type="text" readonly value="e927" class="unit size1of2" />
2697
+ <input type="text" maxlength="1" readonly value="&#xe927;" class="unitRight size1of2 talign-right" />
2698
+ </fieldset>
2699
+ <div class="fs0 bshadow0 clearfix hidden-true">
2700
+ <span class="unit pvs fgc1">liga: </span>
2701
+ <input type="text" readonly value="" class="liga unitRight" />
2702
+ </div>
2703
+ </div>
2704
+ <div class="glyph fs1">
2705
+ <div class="clearfix bshadow0 pbs">
2706
+ <span class="icon2-pencil"></span>
2707
+ <span class="mls"> icon2-pencil</span>
2708
+ </div>
2709
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
2710
+ <input type="text" readonly value="e92a" class="unit size1of2" />
2711
+ <input type="text" maxlength="1" readonly value="&#xe92a;" class="unitRight size1of2 talign-right" />
2712
+ </fieldset>
2713
+ <div class="fs0 bshadow0 clearfix hidden-true">
2714
+ <span class="unit pvs fgc1">liga: </span>
2715
+ <input type="text" readonly value="" class="liga unitRight" />
2716
+ </div>
2717
+ </div>
2718
+ <div class="glyph fs1">
2719
+ <div class="clearfix bshadow0 pbs">
2720
+ <span class="icon2-pencil-fill"></span>
2721
+ <span class="mls"> icon2-pencil-fill</span>
2722
+ </div>
2723
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
2724
+ <input type="text" readonly value="e929" class="unit size1of2" />
2725
+ <input type="text" maxlength="1" readonly value="&#xe929;" class="unitRight size1of2 talign-right" />
2726
+ </fieldset>
2727
+ <div class="fs0 bshadow0 clearfix hidden-true">
2728
+ <span class="unit pvs fgc1">liga: </span>
2729
+ <input type="text" readonly value="" class="liga unitRight" />
2730
+ </div>
2731
+ </div>
2732
+ <div class="glyph fs1">
2733
+ <div class="clearfix bshadow0 pbs">
2734
+ <span class="icon2-logout"></span>
2735
+ <span class="mls"> icon2-logout</span>
2736
+ </div>
2737
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
2738
+ <input type="text" readonly value="e92c" class="unit size1of2" />
2739
+ <input type="text" maxlength="1" readonly value="&#xe92c;" class="unitRight size1of2 talign-right" />
2740
+ </fieldset>
2741
+ <div class="fs0 bshadow0 clearfix hidden-true">
2742
+ <span class="unit pvs fgc1">liga: </span>
2743
+ <input type="text" readonly value="" class="liga unitRight" />
2744
+ </div>
2745
+ </div>
2746
+ <div class="glyph fs1">
2747
+ <div class="clearfix bshadow0 pbs">
2748
+ <span class="icon2-logout-fill"></span>
2749
+ <span class="mls"> icon2-logout-fill</span>
2750
+ </div>
2751
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
2752
+ <input type="text" readonly value="e92b" class="unit size1of2" />
2753
+ <input type="text" maxlength="1" readonly value="&#xe92b;" class="unitRight size1of2 talign-right" />
2754
+ </fieldset>
2755
+ <div class="fs0 bshadow0 clearfix hidden-true">
2756
+ <span class="unit pvs fgc1">liga: </span>
2757
+ <input type="text" readonly value="" class="liga unitRight" />
2758
+ </div>
2759
+ </div>
2760
+ <div class="glyph fs1">
2761
+ <div class="clearfix bshadow0 pbs">
2762
+ <span class="icon2-export"></span>
2763
+ <span class="mls"> icon2-export</span>
2764
+ </div>
2765
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
2766
+ <input type="text" readonly value="e92d" class="unit size1of2" />
2767
+ <input type="text" maxlength="1" readonly value="&#xe92d;" class="unitRight size1of2 talign-right" />
2768
+ </fieldset>
2769
+ <div class="fs0 bshadow0 clearfix hidden-true">
2770
+ <span class="unit pvs fgc1">liga: </span>
2771
+ <input type="text" readonly value="" class="liga unitRight" />
2772
+ </div>
2773
+ </div>
2774
+ <div class="glyph fs1">
2775
+ <div class="clearfix bshadow0 pbs">
2776
+ <span class="icon2-sort-asc"></span>
2777
+ <span class="mls"> icon2-sort-asc</span>
2778
+ </div>
2779
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
2780
+ <input type="text" readonly value="e92e" class="unit size1of2" />
2781
+ <input type="text" maxlength="1" readonly value="&#xe92e;" class="unitRight size1of2 talign-right" />
2782
+ </fieldset>
2783
+ <div class="fs0 bshadow0 clearfix hidden-true">
2784
+ <span class="unit pvs fgc1">liga: </span>
2785
+ <input type="text" readonly value="" class="liga unitRight" />
2786
+ </div>
2787
+ </div>
2788
+ <div class="glyph fs1">
2789
+ <div class="clearfix bshadow0 pbs">
2790
+ <span class="icon2-sort-desc"></span>
2791
+ <span class="mls"> icon2-sort-desc</span>
2792
+ </div>
2793
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
2794
+ <input type="text" readonly value="e92f" class="unit size1of2" />
2795
+ <input type="text" maxlength="1" readonly value="&#xe92f;" class="unitRight size1of2 talign-right" />
2796
+ </fieldset>
2797
+ <div class="fs0 bshadow0 clearfix hidden-true">
2798
+ <span class="unit pvs fgc1">liga: </span>
2799
+ <input type="text" readonly value="" class="liga unitRight" />
2800
+ </div>
2801
+ </div>
2802
+ <div class="glyph fs1">
2803
+ <div class="clearfix bshadow0 pbs">
2804
+ <span class="icon2-favorite"></span>
2805
+ <span class="mls"> icon2-favorite</span>
2806
+ </div>
2807
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
2808
+ <input type="text" readonly value="e931" class="unit size1of2" />
2809
+ <input type="text" maxlength="1" readonly value="&#xe931;" class="unitRight size1of2 talign-right" />
2810
+ </fieldset>
2811
+ <div class="fs0 bshadow0 clearfix hidden-true">
2812
+ <span class="unit pvs fgc1">liga: </span>
2813
+ <input type="text" readonly value="" class="liga unitRight" />
2814
+ </div>
2815
+ </div>
2816
+ <div class="glyph fs1">
2817
+ <div class="clearfix bshadow0 pbs">
2818
+ <span class="icon2-favorite-fill"></span>
2819
+ <span class="mls"> icon2-favorite-fill</span>
2820
+ </div>
2821
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
2822
+ <input type="text" readonly value="e930" class="unit size1of2" />
2823
+ <input type="text" maxlength="1" readonly value="&#xe930;" class="unitRight size1of2 talign-right" />
2824
+ </fieldset>
2825
+ <div class="fs0 bshadow0 clearfix hidden-true">
2826
+ <span class="unit pvs fgc1">liga: </span>
2827
+ <input type="text" readonly value="" class="liga unitRight" />
2828
+ </div>
2829
+ </div>
2830
+ <div class="glyph fs1">
2831
+ <div class="clearfix bshadow0 pbs">
2832
+ <span class="icon2-layers"></span>
2833
+ <span class="mls"> icon2-layers</span>
2834
+ </div>
2835
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
2836
+ <input type="text" readonly value="e934" class="unit size1of2" />
2837
+ <input type="text" maxlength="1" readonly value="&#xe934;" class="unitRight size1of2 talign-right" />
2838
+ </fieldset>
2839
+ <div class="fs0 bshadow0 clearfix hidden-true">
2840
+ <span class="unit pvs fgc1">liga: </span>
2841
+ <input type="text" readonly value="" class="liga unitRight" />
2842
+ </div>
2843
+ </div>
2844
+ <div class="glyph fs1">
2845
+ <div class="clearfix bshadow0 pbs">
2846
+ <span class="icon2-layers-fill"></span>
2847
+ <span class="mls"> icon2-layers-fill</span>
2848
+ </div>
2849
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
2850
+ <input type="text" readonly value="e933" class="unit size1of2" />
2851
+ <input type="text" maxlength="1" readonly value="&#xe933;" class="unitRight size1of2 talign-right" />
2852
+ </fieldset>
2853
+ <div class="fs0 bshadow0 clearfix hidden-true">
2854
+ <span class="unit pvs fgc1">liga: </span>
2855
+ <input type="text" readonly value="" class="liga unitRight" />
2856
+ </div>
2857
+ </div>
2858
+ <div class="glyph fs1">
2859
+ <div class="clearfix bshadow0 pbs">
2860
+ <span class="icon2-new_tab"></span>
2861
+ <span class="mls"> icon2-new_tab</span>
2862
+ </div>
2863
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
2864
+ <input type="text" readonly value="e935" class="unit size1of2" />
2865
+ <input type="text" maxlength="1" readonly value="&#xe935;" class="unitRight size1of2 talign-right" />
2866
+ </fieldset>
2867
+ <div class="fs0 bshadow0 clearfix hidden-true">
2868
+ <span class="unit pvs fgc1">liga: </span>
2869
+ <input type="text" readonly value="" class="liga unitRight" />
2870
+ </div>
2871
+ </div>
2872
+ <div class="glyph fs1">
2873
+ <div class="clearfix bshadow0 pbs">
2874
+ <span class="icon2-a"></span>
2875
+ <span class="mls"> icon2-a</span>
2876
+ </div>
2877
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
2878
+ <input type="text" readonly value="e937" class="unit size1of2" />
2879
+ <input type="text" maxlength="1" readonly value="&#xe937;" class="unitRight size1of2 talign-right" />
2880
+ </fieldset>
2881
+ <div class="fs0 bshadow0 clearfix hidden-true">
2882
+ <span class="unit pvs fgc1">liga: </span>
2883
+ <input type="text" readonly value="" class="liga unitRight" />
2884
+ </div>
2885
+ </div>
2886
+ <div class="glyph fs1">
2887
+ <div class="clearfix bshadow0 pbs">
2888
+ <span class="icon2-a-fill"></span>
2889
+ <span class="mls"> icon2-a-fill</span>
2890
+ </div>
2891
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
2892
+ <input type="text" readonly value="e936" class="unit size1of2" />
2893
+ <input type="text" maxlength="1" readonly value="&#xe936;" class="unitRight size1of2 talign-right" />
2894
+ </fieldset>
2895
+ <div class="fs0 bshadow0 clearfix hidden-true">
2896
+ <span class="unit pvs fgc1">liga: </span>
2897
+ <input type="text" readonly value="" class="liga unitRight" />
2898
+ </div>
2899
+ </div>
2900
+ <div class="glyph fs1">
2901
+ <div class="clearfix bshadow0 pbs">
2902
+ <span class="icon2-palette"></span>
2903
+ <span class="mls"> icon2-palette</span>
2904
+ </div>
2905
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
2906
+ <input type="text" readonly value="e938" class="unit size1of2" />
2907
+ <input type="text" maxlength="1" readonly value="&#xe938;" class="unitRight size1of2 talign-right" />
2908
+ </fieldset>
2909
+ <div class="fs0 bshadow0 clearfix hidden-true">
2910
+ <span class="unit pvs fgc1">liga: </span>
2911
+ <input type="text" readonly value="" class="liga unitRight" />
2912
+ </div>
2913
+ </div>
2914
+ <div class="glyph fs1">
2915
+ <div class="clearfix bshadow0 pbs">
2916
+ <span class="icon2-plus_circle"></span>
2917
+ <span class="mls"> icon2-plus_circle</span>
2918
+ </div>
2919
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
2920
+ <input type="text" readonly value="e93a" class="unit size1of2" />
2921
+ <input type="text" maxlength="1" readonly value="&#xe93a;" class="unitRight size1of2 talign-right" />
2922
+ </fieldset>
2923
+ <div class="fs0 bshadow0 clearfix hidden-true">
2924
+ <span class="unit pvs fgc1">liga: </span>
2925
+ <input type="text" readonly value="" class="liga unitRight" />
2926
+ </div>
2927
+ </div>
2928
+ <div class="glyph fs1">
2929
+ <div class="clearfix bshadow0 pbs">
2930
+ <span class="icon2-plus_circles-fill"></span>
2931
+ <span class="mls"> icon2-plus_circles-fill</span>
2932
+ </div>
2933
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
2934
+ <input type="text" readonly value="e939" class="unit size1of2" />
2935
+ <input type="text" maxlength="1" readonly value="&#xe939;" class="unitRight size1of2 talign-right" />
2936
+ </fieldset>
2937
+ <div class="fs0 bshadow0 clearfix hidden-true">
2938
+ <span class="unit pvs fgc1">liga: </span>
2939
+ <input type="text" readonly value="" class="liga unitRight" />
2940
+ </div>
2941
+ </div>
2942
+ <div class="glyph fs1">
2943
+ <div class="clearfix bshadow0 pbs">
2944
+ <span class="icon2-plus"></span>
2945
+ <span class="mls"> icon2-plus</span>
2946
+ </div>
2947
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
2948
+ <input type="text" readonly value="e93b" class="unit size1of2" />
2949
+ <input type="text" maxlength="1" readonly value="&#xe93b;" class="unitRight size1of2 talign-right" />
2950
+ </fieldset>
2951
+ <div class="fs0 bshadow0 clearfix hidden-true">
2952
+ <span class="unit pvs fgc1">liga: </span>
2953
+ <input type="text" readonly value="" class="liga unitRight" />
2954
+ </div>
2955
+ </div>
2956
+ <div class="glyph fs1">
2957
+ <div class="clearfix bshadow0 pbs">
2958
+ <span class="icon2-search"></span>
2959
+ <span class="mls"> icon2-search</span>
2960
+ </div>
2961
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
2962
+ <input type="text" readonly value="e93c" class="unit size1of2" />
2963
+ <input type="text" maxlength="1" readonly value="&#xe93c;" class="unitRight size1of2 talign-right" />
2964
+ </fieldset>
2965
+ <div class="fs0 bshadow0 clearfix hidden-true">
2966
+ <span class="unit pvs fgc1">liga: </span>
2967
+ <input type="text" readonly value="" class="liga unitRight" />
2968
+ </div>
2969
+ </div>
2970
+ <div class="glyph fs1">
2971
+ <div class="clearfix bshadow0 pbs">
2972
+ <span class="icon2-swap_vert"></span>
2973
+ <span class="mls"> icon2-swap_vert</span>
2974
+ </div>
2975
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
2976
+ <input type="text" readonly value="e93d" class="unit size1of2" />
2977
+ <input type="text" maxlength="1" readonly value="&#xe93d;" class="unitRight size1of2 talign-right" />
2978
+ </fieldset>
2979
+ <div class="fs0 bshadow0 clearfix hidden-true">
2980
+ <span class="unit pvs fgc1">liga: </span>
2981
+ <input type="text" readonly value="" class="liga unitRight" />
2982
+ </div>
2983
+ </div>
2984
+ <div class="glyph fs1">
2985
+ <div class="clearfix bshadow0 pbs">
2986
+ <span class="icon2-table"></span>
2987
+ <span class="mls"> icon2-table</span>
2988
+ </div>
2989
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
2990
+ <input type="text" readonly value="e93f" class="unit size1of2" />
2991
+ <input type="text" maxlength="1" readonly value="&#xe93f;" class="unitRight size1of2 talign-right" />
2992
+ </fieldset>
2993
+ <div class="fs0 bshadow0 clearfix hidden-true">
2994
+ <span class="unit pvs fgc1">liga: </span>
2995
+ <input type="text" readonly value="" class="liga unitRight" />
2996
+ </div>
2997
+ </div>
2998
+ <div class="glyph fs1">
2999
+ <div class="clearfix bshadow0 pbs">
3000
+ <span class="icon2-table-fill"></span>
3001
+ <span class="mls"> icon2-table-fill</span>
3002
+ </div>
3003
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
3004
+ <input type="text" readonly value="e93e" class="unit size1of2" />
3005
+ <input type="text" maxlength="1" readonly value="&#xe93e;" class="unitRight size1of2 talign-right" />
3006
+ </fieldset>
3007
+ <div class="fs0 bshadow0 clearfix hidden-true">
3008
+ <span class="unit pvs fgc1">liga: </span>
3009
+ <input type="text" readonly value="" class="liga unitRight" />
3010
+ </div>
3011
+ </div>
3012
+ <div class="glyph fs1">
3013
+ <div class="clearfix bshadow0 pbs">
3014
+ <span class="icon2-bookmark"></span>
3015
+ <span class="mls"> icon2-bookmark</span>
3016
+ </div>
3017
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
3018
+ <input type="text" readonly value="e942" class="unit size1of2" />
3019
+ <input type="text" maxlength="1" readonly value="&#xe942;" class="unitRight size1of2 talign-right" />
3020
+ </fieldset>
3021
+ <div class="fs0 bshadow0 clearfix hidden-true">
3022
+ <span class="unit pvs fgc1">liga: </span>
3023
+ <input type="text" readonly value="" class="liga unitRight" />
3024
+ </div>
3025
+ </div>
3026
+ <div class="glyph fs1">
3027
+ <div class="clearfix bshadow0 pbs">
3028
+ <span class="icon2-bookmark-fill"></span>
3029
+ <span class="mls"> icon2-bookmark-fill</span>
3030
+ </div>
3031
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
3032
+ <input type="text" readonly value="e941" class="unit size1of2" />
3033
+ <input type="text" maxlength="1" readonly value="&#xe941;" class="unitRight size1of2 talign-right" />
3034
+ </fieldset>
3035
+ <div class="fs0 bshadow0 clearfix hidden-true">
3036
+ <span class="unit pvs fgc1">liga: </span>
3037
+ <input type="text" readonly value="" class="liga unitRight" />
3038
+ </div>
3039
+ </div>
3040
+ <div class="glyph fs1">
3041
+ <div class="clearfix bshadow0 pbs">
3042
+ <span class="icon2-bookmark_crossed"></span>
3043
+ <span class="mls"> icon2-bookmark_crossed</span>
3044
+ </div>
3045
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
3046
+ <input type="text" readonly value="e940" class="unit size1of2" />
3047
+ <input type="text" maxlength="1" readonly value="&#xe940;" class="unitRight size1of2 talign-right" />
3048
+ </fieldset>
3049
+ <div class="fs0 bshadow0 clearfix hidden-true">
3050
+ <span class="unit pvs fgc1">liga: </span>
3051
+ <input type="text" readonly value="" class="liga unitRight" />
3052
+ </div>
3053
+ </div>
3054
+ <div class="glyph fs1">
3055
+ <div class="clearfix bshadow0 pbs">
3056
+ <span class="icon2-anime"></span>
3057
+ <span class="mls"> icon2-anime</span>
3058
+ </div>
3059
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
3060
+ <input type="text" readonly value="e9e0" class="unit size1of2" />
3061
+ <input type="text" maxlength="1" readonly value="&#xe9e0;" class="unitRight size1of2 talign-right" />
3062
+ </fieldset>
3063
+ <div class="fs0 bshadow0 clearfix hidden-true">
3064
+ <span class="unit pvs fgc1">liga: </span>
3065
+ <input type="text" readonly value="" class="liga unitRight" />
3066
+ </div>
3067
+ </div>
3068
+ </div>
3069
+ <div class="clearfix mhl ptl">
3070
+ <h1 class="mvm mtn fgc1">Grid Size: 16</h1>
3071
+ <div class="glyph fs2">
3072
+ <div class="clearfix bshadow0 pbs">
3073
+ <span class="icon2-caret-up-14"></span>
3074
+ <span class="mls"> icon2-caret-up-14</span>
3075
+ </div>
3076
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
3077
+ <input type="text" readonly value="e9c4" class="unit size1of2" />
3078
+ <input type="text" maxlength="1" readonly value="&#xe9c4;" class="unitRight size1of2 talign-right" />
3079
+ </fieldset>
3080
+ <div class="fs0 bshadow0 clearfix hidden-true">
3081
+ <span class="unit pvs fgc1">liga: </span>
3082
+ <input type="text" readonly value="" class="liga unitRight" />
3083
+ </div>
3084
+ </div>
3085
+ <div class="glyph fs2">
3086
+ <div class="clearfix bshadow0 pbs">
3087
+ <span class="icon2-caret-down-14"></span>
3088
+ <span class="mls"> icon2-caret-down-14</span>
3089
+ </div>
3090
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
3091
+ <input type="text" readonly value="e9f0" class="unit size1of2" />
3092
+ <input type="text" maxlength="1" readonly value="&#xe9f0;" class="unitRight size1of2 talign-right" />
3093
+ </fieldset>
3094
+ <div class="fs0 bshadow0 clearfix hidden-true">
3095
+ <span class="unit pvs fgc1">liga: </span>
3096
+ <input type="text" readonly value="" class="liga unitRight" />
3097
+ </div>
3098
+ </div>
3099
+ <div class="glyph fs2">
3100
+ <div class="clearfix bshadow0 pbs">
3101
+ <span class="icon2-switcher-circle-16-2"></span>
3102
+ <span class="mls"> icon2-switcher-circle-16-2</span>
3103
+ </div>
3104
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
3105
+ <input type="text" readonly value="e9b9" class="unit size1of2" />
3106
+ <input type="text" maxlength="1" readonly value="&#xe9b9;" class="unitRight size1of2 talign-right" />
3107
+ </fieldset>
3108
+ <div class="fs0 bshadow0 clearfix hidden-true">
3109
+ <span class="unit pvs fgc1">liga: </span>
3110
+ <input type="text" readonly value="" class="liga unitRight" />
3111
+ </div>
3112
+ </div>
3113
+ <div class="glyph fs2">
3114
+ <div class="clearfix bshadow0 pbs">
3115
+ <span class="icon2-desktop-16"></span>
3116
+ <span class="mls"> icon2-desktop-16</span>
3117
+ </div>
3118
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
3119
+ <input type="text" readonly value="e954" class="unit size1of2" />
3120
+ <input type="text" maxlength="1" readonly value="&#xe954;" class="unitRight size1of2 talign-right" />
3121
+ </fieldset>
3122
+ <div class="fs0 bshadow0 clearfix hidden-true">
3123
+ <span class="unit pvs fgc1">liga: </span>
3124
+ <input type="text" readonly value="" class="liga unitRight" />
3125
+ </div>
3126
+ </div>
3127
+ <div class="glyph fs2">
3128
+ <div class="clearfix bshadow0 pbs">
3129
+ <span class="icon2-phone-16"></span>
3130
+ <span class="mls"> icon2-phone-16</span>
3131
+ </div>
3132
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
3133
+ <input type="text" readonly value="e957" class="unit size1of2" />
3134
+ <input type="text" maxlength="1" readonly value="&#xe957;" class="unitRight size1of2 talign-right" />
3135
+ </fieldset>
3136
+ <div class="fs0 bshadow0 clearfix hidden-true">
3137
+ <span class="unit pvs fgc1">liga: </span>
3138
+ <input type="text" readonly value="" class="liga unitRight" />
3139
+ </div>
3140
+ </div>
3141
+ <div class="glyph fs2">
3142
+ <div class="clearfix bshadow0 pbs">
3143
+ <span class="icon2-tablet-16"></span>
3144
+ <span class="mls"> icon2-tablet-16</span>
3145
+ </div>
3146
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
3147
+ <input type="text" readonly value="e958" class="unit size1of2" />
3148
+ <input type="text" maxlength="1" readonly value="&#xe958;" class="unitRight size1of2 talign-right" />
3149
+ </fieldset>
3150
+ <div class="fs0 bshadow0 clearfix hidden-true">
3151
+ <span class="unit pvs fgc1">liga: </span>
3152
+ <input type="text" readonly value="" class="liga unitRight" />
3153
+ </div>
3154
+ </div>
3155
+ <div class="glyph fs2">
3156
+ <div class="clearfix bshadow0 pbs">
3157
+ <span class="icon2-more-horizontal-16"></span>
3158
+ <span class="mls"> icon2-more-horizontal-16</span>
3159
+ </div>
3160
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
3161
+ <input type="text" readonly value="e9f1" class="unit size1of2" />
3162
+ <input type="text" maxlength="1" readonly value="&#xe9f1;" class="unitRight size1of2 talign-right" />
3163
+ </fieldset>
3164
+ <div class="fs0 bshadow0 clearfix hidden-true">
3165
+ <span class="unit pvs fgc1">liga: </span>
3166
+ <input type="text" readonly value="" class="liga unitRight" />
3167
+ </div>
3168
+ </div>
3169
+ <div class="glyph fs2">
3170
+ <div class="clearfix bshadow0 pbs">
3171
+ <span class="icon2-user-plus-16"></span>
3172
+ <span class="mls"> icon2-user-plus-16</span>
3173
+ </div>
3174
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
3175
+ <input type="text" readonly value="e9b2" class="unit size1of2" />
3176
+ <input type="text" maxlength="1" readonly value="&#xe9b2;" class="unitRight size1of2 talign-right" />
3177
+ </fieldset>
3178
+ <div class="fs0 bshadow0 clearfix hidden-true">
3179
+ <span class="unit pvs fgc1">liga: </span>
3180
+ <input type="text" readonly value="" class="liga unitRight" />
3181
+ </div>
3182
+ </div>
3183
+ <div class="glyph fs2">
3184
+ <div class="clearfix bshadow0 pbs">
3185
+ <span class="icon2-bar_chart-fill-16"></span>
3186
+ <span class="mls"> icon2-bar_chart-fill-16</span>
3187
+ </div>
3188
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
3189
+ <input type="text" readonly value="e994" class="unit size1of2" />
3190
+ <input type="text" maxlength="1" readonly value="&#xe994;" class="unitRight size1of2 talign-right" />
3191
+ </fieldset>
3192
+ <div class="fs0 bshadow0 clearfix hidden-true">
3193
+ <span class="unit pvs fgc1">liga: </span>
3194
+ <input type="text" readonly value="" class="liga unitRight" />
3195
+ </div>
3196
+ </div>
3197
+ <div class="glyph fs2">
3198
+ <div class="clearfix bshadow0 pbs">
3199
+ <span class="icon2-flag-16"></span>
3200
+ <span class="mls"> icon2-flag-16</span>
3201
+ </div>
3202
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
3203
+ <input type="text" readonly value="e992" class="unit size1of2" />
3204
+ <input type="text" maxlength="1" readonly value="&#xe992;" class="unitRight size1of2 talign-right" />
3205
+ </fieldset>
3206
+ <div class="fs0 bshadow0 clearfix hidden-true">
3207
+ <span class="unit pvs fgc1">liga: </span>
3208
+ <input type="text" readonly value="" class="liga unitRight" />
3209
+ </div>
3210
+ </div>
3211
+ <div class="glyph fs2">
3212
+ <div class="clearfix bshadow0 pbs">
3213
+ <span class="icon2-user-checked-16"></span>
3214
+ <span class="mls"> icon2-user-checked-16</span>
3215
+ </div>
3216
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
3217
+ <input type="text" readonly value="e990" class="unit size1of2" />
3218
+ <input type="text" maxlength="1" readonly value="&#xe990;" class="unitRight size1of2 talign-right" />
3219
+ </fieldset>
3220
+ <div class="fs0 bshadow0 clearfix hidden-true">
3221
+ <span class="unit pvs fgc1">liga: </span>
3222
+ <input type="text" readonly value="" class="liga unitRight" />
3223
+ </div>
3224
+ </div>
3225
+ <div class="glyph fs2">
3226
+ <div class="clearfix bshadow0 pbs">
3227
+ <span class="icon2-user-16"></span>
3228
+ <span class="mls"> icon2-user-16</span>
3229
+ </div>
3230
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
3231
+ <input type="text" readonly value="e991" class="unit size1of2" />
3232
+ <input type="text" maxlength="1" readonly value="&#xe991;" class="unitRight size1of2 talign-right" />
3233
+ </fieldset>
3234
+ <div class="fs0 bshadow0 clearfix hidden-true">
3235
+ <span class="unit pvs fgc1">liga: </span>
3236
+ <input type="text" readonly value="" class="liga unitRight" />
3237
+ </div>
3238
+ </div>
3239
+ <div class="glyph fs2">
3240
+ <div class="clearfix bshadow0 pbs">
3241
+ <span class="icon2-user-fill-16"></span>
3242
+ <span class="mls"> icon2-user-fill-16</span>
3243
+ </div>
3244
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
3245
+ <input type="text" readonly value="e95b" class="unit size1of2" />
3246
+ <input type="text" maxlength="1" readonly value="&#xe95b;" class="unitRight size1of2 talign-right" />
3247
+ </fieldset>
3248
+ <div class="fs0 bshadow0 clearfix hidden-true">
3249
+ <span class="unit pvs fgc1">liga: </span>
3250
+ <input type="text" readonly value="" class="liga unitRight" />
3251
+ </div>
3252
+ </div>
3253
+ <div class="glyph fs2">
3254
+ <div class="clearfix bshadow0 pbs">
3255
+ <span class="icon2-average-16"></span>
3256
+ <span class="mls"> icon2-average-16</span>
3257
+ </div>
3258
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
3259
+ <input type="text" readonly value="e98d" class="unit size1of2" />
3260
+ <input type="text" maxlength="1" readonly value="&#xe98d;" class="unitRight size1of2 talign-right" />
3261
+ </fieldset>
3262
+ <div class="fs0 bshadow0 clearfix hidden-true">
3263
+ <span class="unit pvs fgc1">liga: </span>
3264
+ <input type="text" readonly value="" class="liga unitRight" />
3265
+ </div>
3266
+ </div>
3267
+ <div class="glyph fs2">
3268
+ <div class="clearfix bshadow0 pbs">
3269
+ <span class="icon2-median-16"></span>
3270
+ <span class="mls"> icon2-median-16</span>
3271
+ </div>
3272
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
3273
+ <input type="text" readonly value="e98e" class="unit size1of2" />
3274
+ <input type="text" maxlength="1" readonly value="&#xe98e;" class="unitRight size1of2 talign-right" />
3275
+ </fieldset>
3276
+ <div class="fs0 bshadow0 clearfix hidden-true">
3277
+ <span class="unit pvs fgc1">liga: </span>
3278
+ <input type="text" readonly value="" class="liga unitRight" />
3279
+ </div>
3280
+ </div>
3281
+ <div class="glyph fs2">
3282
+ <div class="clearfix bshadow0 pbs">
3283
+ <span class="icon2-visibility-16"></span>
3284
+ <span class="mls"> icon2-visibility-16</span>
3285
+ </div>
3286
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
3287
+ <input type="text" readonly value="e98f" class="unit size1of2" />
3288
+ <input type="text" maxlength="1" readonly value="&#xe98f;" class="unitRight size1of2 talign-right" />
3289
+ </fieldset>
3290
+ <div class="fs0 bshadow0 clearfix hidden-true">
3291
+ <span class="unit pvs fgc1">liga: </span>
3292
+ <input type="text" readonly value="" class="liga unitRight" />
3293
+ </div>
3294
+ </div>
3295
+ <div class="glyph fs2">
3296
+ <div class="clearfix bshadow0 pbs">
3297
+ <span class="icon2-checked-indicate-16"></span>
3298
+ <span class="mls"> icon2-checked-indicate-16</span>
3299
+ </div>
3300
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
3301
+ <input type="text" readonly value="e95d" class="unit size1of2" />
3302
+ <input type="text" maxlength="1" readonly value="&#xe95d;" class="unitRight size1of2 talign-right" />
3303
+ </fieldset>
3304
+ <div class="fs0 bshadow0 clearfix hidden-true">
3305
+ <span class="unit pvs fgc1">liga: </span>
3306
+ <input type="text" readonly value="" class="liga unitRight" />
3307
+ </div>
3308
+ </div>
3309
+ <div class="glyph fs2">
3310
+ <div class="clearfix bshadow0 pbs">
3311
+ <span class="icon2-cross-indicate-16"></span>
3312
+ <span class="mls"> icon2-cross-indicate-16</span>
3313
+ </div>
3314
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
3315
+ <input type="text" readonly value="e985" class="unit size1of2" />
3316
+ <input type="text" maxlength="1" readonly value="&#xe985;" class="unitRight size1of2 talign-right" />
3317
+ </fieldset>
3318
+ <div class="fs0 bshadow0 clearfix hidden-true">
3319
+ <span class="unit pvs fgc1">liga: </span>
3320
+ <input type="text" readonly value="" class="liga unitRight" />
3321
+ </div>
3322
+ </div>
3323
+ <div class="glyph fs2">
3324
+ <div class="clearfix bshadow0 pbs">
3325
+ <span class="icon2-minus-indicate-16"></span>
3326
+ <span class="mls"> icon2-minus-indicate-16</span>
3327
+ </div>
3328
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
3329
+ <input type="text" readonly value="e995" class="unit size1of2" />
3330
+ <input type="text" maxlength="1" readonly value="&#xe995;" class="unitRight size1of2 talign-right" />
3331
+ </fieldset>
3332
+ <div class="fs0 bshadow0 clearfix hidden-true">
3333
+ <span class="unit pvs fgc1">liga: </span>
3334
+ <input type="text" readonly value="" class="liga unitRight" />
3335
+ </div>
3336
+ </div>
3337
+ <div class="glyph fs2">
3338
+ <div class="clearfix bshadow0 pbs">
3339
+ <span class="icon2-external-16"></span>
3340
+ <span class="mls"> icon2-external-16</span>
3341
+ </div>
3342
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
3343
+ <input type="text" readonly value="e94f" class="unit size1of2" />
3344
+ <input type="text" maxlength="1" readonly value="&#xe94f;" class="unitRight size1of2 talign-right" />
3345
+ </fieldset>
3346
+ <div class="fs0 bshadow0 clearfix hidden-true">
3347
+ <span class="unit pvs fgc1">liga: </span>
3348
+ <input type="text" readonly value="" class="liga unitRight" />
3349
+ </div>
3350
+ </div>
3351
+ <div class="glyph fs2">
3352
+ <div class="clearfix bshadow0 pbs">
3353
+ <span class="icon2-more-vertical-16"></span>
3354
+ <span class="mls"> icon2-more-vertical-16</span>
3355
+ </div>
3356
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
3357
+ <input type="text" readonly value="e950" class="unit size1of2" />
3358
+ <input type="text" maxlength="1" readonly value="&#xe950;" class="unitRight size1of2 talign-right" />
3359
+ </fieldset>
3360
+ <div class="fs0 bshadow0 clearfix hidden-true">
3361
+ <span class="unit pvs fgc1">liga: </span>
3362
+ <input type="text" readonly value="" class="liga unitRight" />
3363
+ </div>
3364
+ </div>
3365
+ <div class="glyph fs2">
3366
+ <div class="clearfix bshadow0 pbs">
3367
+ <span class="icon2-crown-16"></span>
3368
+ <span class="mls"> icon2-crown-16</span>
3369
+ </div>
3370
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
3371
+ <input type="text" readonly value="e953" class="unit size1of2" />
3372
+ <input type="text" maxlength="1" readonly value="&#xe953;" class="unitRight size1of2 talign-right" />
3373
+ </fieldset>
3374
+ <div class="fs0 bshadow0 clearfix hidden-true">
3375
+ <span class="unit pvs fgc1">liga: </span>
3376
+ <input type="text" readonly value="" class="liga unitRight" />
3377
+ </div>
3378
+ </div>
3379
+ <div class="glyph fs2">
3380
+ <div class="clearfix bshadow0 pbs">
3381
+ <span class="icon2-turbo-16"></span>
3382
+ <span class="mls"> icon2-turbo-16</span>
3383
+ </div>
3384
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
3385
+ <input type="text" readonly value="e959" class="unit size1of2" />
3386
+ <input type="text" maxlength="1" readonly value="&#xe959;" class="unitRight size1of2 talign-right" />
3387
+ </fieldset>
3388
+ <div class="fs0 bshadow0 clearfix hidden-true">
3389
+ <span class="unit pvs fgc1">liga: </span>
3390
+ <input type="text" readonly value="" class="liga unitRight" />
3391
+ </div>
3392
+ </div>
3393
+ <div class="glyph fs2">
3394
+ <div class="clearfix bshadow0 pbs">
3395
+ <span class="icon2-amp-16"></span>
3396
+ <span class="mls"> icon2-amp-16</span>
3397
+ </div>
3398
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
3399
+ <input type="text" readonly value="e951" class="unit size1of2" />
3400
+ <input type="text" maxlength="1" readonly value="&#xe951;" class="unitRight size1of2 talign-right" />
3401
+ </fieldset>
3402
+ <div class="fs0 bshadow0 clearfix hidden-true">
3403
+ <span class="unit pvs fgc1">liga: </span>
3404
+ <input type="text" readonly value="" class="liga unitRight" />
3405
+ </div>
3406
+ </div>
3407
+ <div class="glyph fs2">
3408
+ <div class="clearfix bshadow0 pbs">
3409
+ <span class="icon2-checked-circle-16"></span>
3410
+ <span class="mls"> icon2-checked-circle-16</span>
3411
+ </div>
3412
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
3413
+ <input type="text" readonly value="e952" class="unit size1of2" />
3414
+ <input type="text" maxlength="1" readonly value="&#xe952;" class="unitRight size1of2 talign-right" />
3415
+ </fieldset>
3416
+ <div class="fs0 bshadow0 clearfix hidden-true">
3417
+ <span class="unit pvs fgc1">liga: </span>
3418
+ <input type="text" readonly value="" class="liga unitRight" />
3419
+ </div>
3420
+ </div>
3421
+ <div class="glyph fs2">
3422
+ <div class="clearfix bshadow0 pbs">
3423
+ <span class="icon2-warning-circle-16"></span>
3424
+ <span class="mls"> icon2-warning-circle-16</span>
3425
+ </div>
3426
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
3427
+ <input type="text" readonly value="e9a6" class="unit size1of2" />
3428
+ <input type="text" maxlength="1" readonly value="&#xe9a6;" class="unitRight size1of2 talign-right" />
3429
+ </fieldset>
3430
+ <div class="fs0 bshadow0 clearfix hidden-true">
3431
+ <span class="unit pvs fgc1">liga: </span>
3432
+ <input type="text" readonly value="" class="liga unitRight" />
3433
+ </div>
3434
+ </div>
3435
+ <div class="glyph fs2">
3436
+ <div class="clearfix bshadow0 pbs">
3437
+ <span class="icon2-dangerous-circle-16"></span>
3438
+ <span class="mls"> icon2-dangerous-circle-16</span>
3439
+ </div>
3440
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
3441
+ <input type="text" readonly value="e9a7" class="unit size1of2" />
3442
+ <input type="text" maxlength="1" readonly value="&#xe9a7;" class="unitRight size1of2 talign-right" />
3443
+ </fieldset>
3444
+ <div class="fs0 bshadow0 clearfix hidden-true">
3445
+ <span class="unit pvs fgc1">liga: </span>
3446
+ <input type="text" readonly value="" class="liga unitRight" />
3447
+ </div>
3448
+ </div>
3449
+ <div class="glyph fs2">
3450
+ <div class="clearfix bshadow0 pbs">
3451
+ <span class="icon2-question-circle-16"></span>
3452
+ <span class="mls"> icon2-question-circle-16</span>
3453
+ </div>
3454
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
3455
+ <input type="text" readonly value="e9a8" class="unit size1of2" />
3456
+ <input type="text" maxlength="1" readonly value="&#xe9a8;" class="unitRight size1of2 talign-right" />
3457
+ </fieldset>
3458
+ <div class="fs0 bshadow0 clearfix hidden-true">
3459
+ <span class="unit pvs fgc1">liga: </span>
3460
+ <input type="text" readonly value="" class="liga unitRight" />
3461
+ </div>
3462
+ </div>
3463
+ <div class="glyph fs2">
3464
+ <div class="clearfix bshadow0 pbs">
3465
+ <span class="icon2-up-circle-16"></span>
3466
+ <span class="mls"> icon2-up-circle-16</span>
3467
+ </div>
3468
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
3469
+ <input type="text" readonly value="e95a" class="unit size1of2" />
3470
+ <input type="text" maxlength="1" readonly value="&#xe95a;" class="unitRight size1of2 talign-right" />
3471
+ </fieldset>
3472
+ <div class="fs0 bshadow0 clearfix hidden-true">
3473
+ <span class="unit pvs fgc1">liga: </span>
3474
+ <input type="text" readonly value="" class="liga unitRight" />
3475
+ </div>
3476
+ </div>
3477
+ <div class="glyph fs2">
3478
+ <div class="clearfix bshadow0 pbs">
3479
+ <span class="icon2-down-circle-16"></span>
3480
+ <span class="mls"> icon2-down-circle-16</span>
3481
+ </div>
3482
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
3483
+ <input type="text" readonly value="e955" class="unit size1of2" />
3484
+ <input type="text" maxlength="1" readonly value="&#xe955;" class="unitRight size1of2 talign-right" />
3485
+ </fieldset>
3486
+ <div class="fs0 bshadow0 clearfix hidden-true">
3487
+ <span class="unit pvs fgc1">liga: </span>
3488
+ <input type="text" readonly value="" class="liga unitRight" />
3489
+ </div>
3490
+ </div>
3491
+ <div class="glyph fs2">
3492
+ <div class="clearfix bshadow0 pbs">
3493
+ <span class="icon2-equal-circle-16"></span>
3494
+ <span class="mls"> icon2-equal-circle-16</span>
3495
+ </div>
3496
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
3497
+ <input type="text" readonly value="e956" class="unit size1of2" />
3498
+ <input type="text" maxlength="1" readonly value="&#xe956;" class="unitRight size1of2 talign-right" />
3499
+ </fieldset>
3500
+ <div class="fs0 bshadow0 clearfix hidden-true">
3501
+ <span class="unit pvs fgc1">liga: </span>
3502
+ <input type="text" readonly value="" class="liga unitRight" />
3503
+ </div>
3504
+ </div>
3505
+ <div class="glyph fs2">
3506
+ <div class="clearfix bshadow0 pbs">
3507
+ <span class="icon2-lightning-circle-16"></span>
3508
+ <span class="mls"> icon2-lightning-circle-16</span>
3509
+ </div>
3510
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
3511
+ <input type="text" readonly value="e9fa" class="unit size1of2" />
3512
+ <input type="text" maxlength="1" readonly value="&#xe9fa;" class="unitRight size1of2 talign-right" />
3513
+ </fieldset>
3514
+ <div class="fs0 bshadow0 clearfix hidden-true">
3515
+ <span class="unit pvs fgc1">liga: </span>
3516
+ <input type="text" readonly value="" class="liga unitRight" />
3517
+ </div>
3518
+ </div>
3519
+ </div>
3520
+ <div class="clearfix mhl ptl">
3521
+ <h1 class="mvm mtn fgc1">Grid Size: 8</h1>
3522
+ <div class="glyph fs3">
3523
+ <div class="clearfix bshadow0 pbs">
3524
+ <span class="icon2-triangle"></span>
3525
+ <span class="mls"> icon2-triangle</span>
3526
+ </div>
3527
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
3528
+ <input type="text" readonly value="e94e" class="unit size1of2" />
3529
+ <input type="text" maxlength="1" readonly value="&#xe94e;" class="unitRight size1of2 talign-right" />
3530
+ </fieldset>
3531
+ <div class="fs0 bshadow0 clearfix hidden-true">
3532
+ <span class="unit pvs fgc1">liga: </span>
3533
+ <input type="text" readonly value="" class="liga unitRight" />
3534
+ </div>
3535
+ </div>
3536
+ </div>
3537
+
3538
+ <!--[if gt IE 8]><!-->
3539
+ <div class="mhl clearfix mbl">
3540
+ <h1>Font Test Drive</h1>
3541
+ <label>
3542
+ Font Size: <input id="fontSize" type="number" class="textbox0 mbm"
3543
+ min="8" value="48" />
3544
+ px
3545
+ </label>
3546
+ <input id="testText" type="text" class="phl size1of1 mvl"
3547
+ placeholder="Type some text to test..." value=""/>
3548
+ <div id="testDrive" class="icon2-" style="font-family: Topvisor-2">&nbsp;
3549
+ </div>
3550
+ </div>
3551
+ <!--<![endif]-->
3552
+ <div class="bgc1 clearfix">
3553
+ <p class="mhl">Generated by <a href="https://icomoon.io/app">IcoMoon</a></p>
3554
+ </div>
3555
+
3556
+ <script src="demo-files/demo.js"></script>
3557
+ </body>
3558
+ </html>