brainloper-ui 14.0.28 → 14.0.30
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2020/brainloper-ui.mjs +5 -0
- package/esm2020/public_api.mjs +56 -0
- package/esm2020/src/app/modules/brainloper-ui/brainloper-ui.module.mjs +310 -0
- package/esm2020/src/app/modules/brainloper-ui/components/bread-crumb/bread-crumb.component.mjs +29 -0
- package/esm2020/src/app/modules/brainloper-ui/components/buttons/button-icon/button-icon.component.mjs +23 -0
- package/esm2020/src/app/modules/brainloper-ui/components/buttons/button-label/button-label.component.mjs +83 -0
- package/esm2020/src/app/modules/brainloper-ui/components/carousel/carousel.component.mjs +37 -0
- package/esm2020/src/app/modules/brainloper-ui/components/combos/combos.component.mjs +176 -0
- package/esm2020/src/app/modules/brainloper-ui/components/data-table/data-table.component.mjs +719 -0
- package/esm2020/src/app/modules/brainloper-ui/components/data-table/table-modal/table-modal.component.mjs +118 -0
- package/esm2020/src/app/modules/brainloper-ui/components/file-input/file-input.component.mjs +185 -0
- package/esm2020/src/app/modules/brainloper-ui/components/file-input/imagenes/doc.mjs +2 -0
- package/esm2020/src/app/modules/brainloper-ui/components/file-input/imagenes/fondoTransparente.mjs +2 -0
- package/esm2020/src/app/modules/brainloper-ui/components/file-input/imagenes/pdf.mjs +2 -0
- package/esm2020/src/app/modules/brainloper-ui/components/filters/filters.component.mjs +222 -0
- package/esm2020/src/app/modules/brainloper-ui/components/report/generate-pdf/generate-pdf.component.mjs +80 -0
- package/esm2020/src/app/modules/brainloper-ui/components/report/template-fuel/template-fuel.component.mjs +81 -0
- package/esm2020/src/app/modules/brainloper-ui/components/select-filter/select-filter.component.mjs +108 -0
- package/esm2020/src/app/modules/directives/carousel-item.directive.mjs +18 -0
- package/esm2020/src/app/modules/interfaces/buttons/button-icon.mjs +2 -0
- package/esm2020/src/app/modules/interfaces/buttons/button-lavel-edit.mjs +2 -0
- package/esm2020/src/app/modules/interfaces/combos/combos-configuration.mjs +2 -0
- package/esm2020/src/app/modules/interfaces/data-table/params.mjs +2 -0
- package/esm2020/src/app/modules/interfaces/data-table/rules.mjs +2 -0
- package/esm2020/src/app/modules/interfaces/data-table/table-columns.mjs +2 -0
- package/esm2020/src/app/modules/interfaces/data-table/table-configuration.mjs +2 -0
- package/esm2020/src/app/modules/interfaces/enum/enumActions.mjs +8 -0
- package/esm2020/src/app/modules/interfaces/enum/enumRules.mjs +8 -0
- package/esm2020/src/app/modules/interfaces/file-forms-service/file-forms-params.mjs +2 -0
- package/esm2020/src/app/modules/interfaces/file-forms-service/file-input-params.mjs +2 -0
- package/esm2020/src/app/modules/interfaces/filters/header-filters.mjs +2 -0
- package/esm2020/src/app/modules/interfaces/menu-break-crumb/menu-break-crumb.mjs +8 -0
- package/esm2020/src/app/modules/interfaces/report/template-pdf-ot.mjs +2 -0
- package/esm2020/src/app/modules/interfaces/report/template-pfd-fo.mjs +2 -0
- package/esm2020/src/app/modules/services/crypto.service.mjs +37 -0
- package/esm2020/src/app/modules/services/export-data.service.mjs +166 -0
- package/esm2020/src/app/modules/services/file-forms.service.mjs +24 -0
- package/esm2020/src/app/modules/services/functions.service.mjs +54 -0
- package/esm2020/src/app/modules/services/generate-pdf.service.mjs +58 -0
- package/esm2020/src/app/modules/services/http.service.mjs +97 -0
- package/esm2020/src/app/modules/services/loading/loading.component.mjs +28 -0
- package/esm2020/src/app/modules/services/local-storage.service.mjs +115 -0
- package/esm2020/src/app/modules/services/message.service.mjs +200 -0
- package/esm2020/src/app/modules/services/screen-size-util.mjs +6 -0
- package/esm2020/src/app/modules/services/session.service.mjs +42 -0
- package/fesm2015/brainloper-ui.mjs +2944 -0
- package/fesm2015/brainloper-ui.mjs.map +1 -0
- package/fesm2020/brainloper-ui.mjs +2903 -0
- package/fesm2020/brainloper-ui.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/package.json +22 -41
- package/public_api.d.ts +55 -0
- package/src/app/modules/brainloper-ui/brainloper-ui.module.d.ts +74 -0
- package/src/app/modules/brainloper-ui/components/bread-crumb/bread-crumb.component.d.ts +13 -0
- package/src/app/modules/brainloper-ui/components/buttons/button-icon/button-icon.component.d.ts +10 -0
- package/src/app/modules/brainloper-ui/components/buttons/button-label/button-label.component.d.ts +24 -0
- package/src/app/modules/brainloper-ui/components/carousel/carousel.component.d.ts +15 -0
- package/src/app/modules/brainloper-ui/components/combos/combos.component.d.ts +46 -0
- package/src/app/modules/brainloper-ui/components/data-table/data-table.component.d.ts +125 -0
- package/src/app/modules/brainloper-ui/components/data-table/table-modal/table-modal.component.d.ts +21 -0
- package/src/app/modules/brainloper-ui/components/file-input/file-input.component.d.ts +42 -0
- package/src/app/modules/brainloper-ui/components/file-input/imagenes/doc.d.ts +2 -0
- package/src/app/modules/brainloper-ui/components/file-input/imagenes/fondoTransparente.d.ts +2 -0
- package/src/app/modules/brainloper-ui/components/file-input/imagenes/pdf.d.ts +2 -0
- package/src/app/modules/brainloper-ui/components/filters/filters.component.d.ts +30 -0
- package/src/app/modules/brainloper-ui/components/report/generate-pdf/generate-pdf.component.d.ts +35 -0
- package/src/app/modules/brainloper-ui/components/report/template-fuel/template-fuel.component.d.ts +36 -0
- package/src/app/modules/brainloper-ui/components/select-filter/select-filter.component.d.ts +26 -0
- package/src/app/modules/directives/carousel-item.directive.d.ts +9 -0
- package/src/app/modules/interfaces/buttons/button-icon.d.ts +9 -0
- package/src/app/modules/interfaces/buttons/button-lavel-edit.d.ts +6 -0
- package/src/app/modules/interfaces/combos/combos-configuration.d.ts +13 -0
- package/src/app/modules/interfaces/data-table/params.d.ts +7 -0
- package/src/app/modules/interfaces/data-table/rules.d.ts +8 -0
- package/src/app/modules/interfaces/data-table/table-columns.d.ts +25 -0
- package/src/app/modules/interfaces/data-table/table-configuration.d.ts +26 -0
- package/src/app/modules/interfaces/enum/enumActions.d.ts +6 -0
- package/src/app/modules/interfaces/enum/enumRules.d.ts +6 -0
- package/src/app/modules/interfaces/file-forms-service/file-forms-params.d.ts +4 -0
- package/src/app/modules/interfaces/file-forms-service/file-input-params.d.ts +13 -0
- package/src/app/modules/interfaces/filters/header-filters.d.ts +13 -0
- package/src/app/modules/interfaces/menu-break-crumb/menu-break-crumb.d.ts +10 -0
- package/src/app/modules/interfaces/report/template-pdf-ot.d.ts +19 -0
- package/src/app/modules/interfaces/report/template-pfd-fo.d.ts +20 -0
- package/src/app/modules/services/crypto.service.d.ts +10 -0
- package/src/app/modules/services/export-data.service.d.ts +18 -0
- package/src/app/modules/services/file-forms.service.d.ts +7 -0
- package/src/app/modules/services/functions.service.d.ts +13 -0
- package/src/app/modules/services/generate-pdf.service.d.ts +12 -0
- package/src/app/modules/services/http.service.d.ts +22 -0
- package/src/app/modules/services/loading/loading.component.d.ts +15 -0
- package/src/app/modules/services/local-storage.service.d.ts +49 -0
- package/src/app/modules/services/message.service.d.ts +23 -0
- package/src/app/modules/services/screen-size-util.d.ts +3 -0
- package/src/app/modules/services/session.service.d.ts +14 -0
- package/.browserslistrc +0 -12
- package/.editorconfig +0 -16
- package/.vs/VSWorkspaceState.json +0 -6
- package/.vs/eter-ui/v17/.suo +0 -0
- package/.vs/eter-ui/v17/workspaceFileList.bin +0 -0
- package/.vs/slnx.sqlite +0 -0
- package/.vscode/launch.json +0 -22
- package/angular.json +0 -124
- package/brainloper-ui-14.0.4.tgz +0 -0
- package/compilar +0 -0
- package/debug.log +0 -33
- package/e2e/protractor.conf.js +0 -32
- package/e2e/src/app.e2e-spec.ts +0 -23
- package/e2e/src/app.po.ts +0 -11
- package/e2e/tsconfig.json +0 -13
- package/karma.conf.js +0 -32
- package/ng-package.json +0 -45
- package/public_api.ts +0 -63
- package/src/EterStyles.scss +0 -35
- package/src/app/app.component.html +0 -381
- package/src/app/app.component.scss +0 -23
- package/src/app/app.component.spec.ts +0 -31
- package/src/app/app.component.ts +0 -732
- package/src/app/app.module.ts +0 -36
- package/src/app/auth-interceptor.service.spec.ts +0 -16
- package/src/app/auth-interceptor.service.ts +0 -42
- package/src/app/modules/brainloper-ui/brainloper-ui.module.ts +0 -166
- package/src/app/modules/brainloper-ui/components/bread-crumb/bread-crumb.component.html +0 -5
- package/src/app/modules/brainloper-ui/components/bread-crumb/bread-crumb.component.scss +0 -8
- package/src/app/modules/brainloper-ui/components/bread-crumb/bread-crumb.component.spec.ts +0 -25
- package/src/app/modules/brainloper-ui/components/bread-crumb/bread-crumb.component.ts +0 -28
- package/src/app/modules/brainloper-ui/components/buttons/button-icon/button-icon.component.html +0 -17
- package/src/app/modules/brainloper-ui/components/buttons/button-icon/button-icon.component.scss +0 -65
- package/src/app/modules/brainloper-ui/components/buttons/button-icon/button-icon.component.spec.ts +0 -25
- package/src/app/modules/brainloper-ui/components/buttons/button-icon/button-icon.component.ts +0 -18
- package/src/app/modules/brainloper-ui/components/buttons/button-label/button-label.component.html +0 -26
- package/src/app/modules/brainloper-ui/components/buttons/button-label/button-label.component.scss +0 -18
- package/src/app/modules/brainloper-ui/components/buttons/button-label/button-label.component.spec.ts +0 -25
- package/src/app/modules/brainloper-ui/components/buttons/button-label/button-label.component.ts +0 -80
- package/src/app/modules/brainloper-ui/components/carousel/carousel.component.html +0 -9
- package/src/app/modules/brainloper-ui/components/carousel/carousel.component.scss +0 -31
- package/src/app/modules/brainloper-ui/components/carousel/carousel.component.spec.ts +0 -25
- package/src/app/modules/brainloper-ui/components/carousel/carousel.component.ts +0 -33
- package/src/app/modules/brainloper-ui/components/combos/combos.component.html +0 -31
- package/src/app/modules/brainloper-ui/components/combos/combos.component.scss +0 -23
- package/src/app/modules/brainloper-ui/components/combos/combos.component.spec.ts +0 -25
- package/src/app/modules/brainloper-ui/components/combos/combos.component.ts +0 -170
- package/src/app/modules/brainloper-ui/components/data-table/data-table.component.html +0 -93
- package/src/app/modules/brainloper-ui/components/data-table/data-table.component.scss +0 -98
- package/src/app/modules/brainloper-ui/components/data-table/data-table.component.spec.ts +0 -25
- package/src/app/modules/brainloper-ui/components/data-table/data-table.component.ts +0 -753
- package/src/app/modules/brainloper-ui/components/data-table/table-modal/table-modal.component.html +0 -76
- package/src/app/modules/brainloper-ui/components/data-table/table-modal/table-modal.component.scss +0 -7
- package/src/app/modules/brainloper-ui/components/data-table/table-modal/table-modal.component.spec.ts +0 -25
- package/src/app/modules/brainloper-ui/components/data-table/table-modal/table-modal.component.ts +0 -129
- package/src/app/modules/brainloper-ui/components/file-input/file-input.component.html +0 -32
- package/src/app/modules/brainloper-ui/components/file-input/file-input.component.scss +0 -50
- package/src/app/modules/brainloper-ui/components/file-input/file-input.component.spec.ts +0 -25
- package/src/app/modules/brainloper-ui/components/file-input/file-input.component.ts +0 -228
- package/src/app/modules/brainloper-ui/components/file-input/imagenes/doc.ts +0 -1
- package/src/app/modules/brainloper-ui/components/file-input/imagenes/fondoTransparente.ts +0 -1
- package/src/app/modules/brainloper-ui/components/file-input/imagenes/pdf.ts +0 -1
- package/src/app/modules/brainloper-ui/components/filters/filters.component.html +0 -63
- package/src/app/modules/brainloper-ui/components/filters/filters.component.scss +0 -4
- package/src/app/modules/brainloper-ui/components/filters/filters.component.spec.ts +0 -25
- package/src/app/modules/brainloper-ui/components/filters/filters.component.ts +0 -225
- package/src/app/modules/brainloper-ui/components/report/generate-pdf/generate-pdf.component.html +0 -116
- package/src/app/modules/brainloper-ui/components/report/generate-pdf/generate-pdf.component.scss +0 -15
- package/src/app/modules/brainloper-ui/components/report/generate-pdf/generate-pdf.component.spec.ts +0 -25
- package/src/app/modules/brainloper-ui/components/report/generate-pdf/generate-pdf.component.ts +0 -88
- package/src/app/modules/brainloper-ui/components/report/template-fuel/template-fuel.component.html +0 -117
- package/src/app/modules/brainloper-ui/components/report/template-fuel/template-fuel.component.scss +0 -16
- package/src/app/modules/brainloper-ui/components/report/template-fuel/template-fuel.component.spec.ts +0 -25
- package/src/app/modules/brainloper-ui/components/report/template-fuel/template-fuel.component.ts +0 -89
- package/src/app/modules/brainloper-ui/components/select-filter/select-filter.component.html +0 -10
- package/src/app/modules/brainloper-ui/components/select-filter/select-filter.component.scss +0 -37
- package/src/app/modules/brainloper-ui/components/select-filter/select-filter.component.spec.ts +0 -23
- package/src/app/modules/brainloper-ui/components/select-filter/select-filter.component.ts +0 -107
- package/src/app/modules/directives/carousel-item.directive.ts +0 -10
- package/src/app/modules/interfaces/buttons/button-icon.ts +0 -10
- package/src/app/modules/interfaces/buttons/button-lavel-edit.ts +0 -6
- package/src/app/modules/interfaces/combos/combos-configuration.ts +0 -15
- package/src/app/modules/interfaces/data-table/params.ts +0 -8
- package/src/app/modules/interfaces/data-table/rules.ts +0 -10
- package/src/app/modules/interfaces/data-table/table-columns.ts +0 -27
- package/src/app/modules/interfaces/data-table/table-configuration.ts +0 -26
- package/src/app/modules/interfaces/enum/enumActions.ts +0 -6
- package/src/app/modules/interfaces/enum/enumRules.ts +0 -6
- package/src/app/modules/interfaces/file-forms-service/file-forms-params.ts +0 -4
- package/src/app/modules/interfaces/file-forms-service/file-input-params.ts +0 -14
- package/src/app/modules/interfaces/filters/header-filters.ts +0 -13
- package/src/app/modules/interfaces/menu-break-crumb/menu-break-crumb.ts +0 -11
- package/src/app/modules/interfaces/report/template-pdf-ot.ts +0 -19
- package/src/app/modules/interfaces/report/template-pfd-fo.ts +0 -20
- package/src/app/modules/services/crypto.service.ts +0 -38
- package/src/app/modules/services/export-data.service.ts +0 -206
- package/src/app/modules/services/file-forms.service.ts +0 -23
- package/src/app/modules/services/functions.service.ts +0 -57
- package/src/app/modules/services/generate-pdf.service.ts +0 -62
- package/src/app/modules/services/http.service.ts +0 -123
- package/src/app/modules/services/image2-base64-converter.service.ts +0 -28
- package/src/app/modules/services/loading/loading.component.html +0 -14
- package/src/app/modules/services/loading/loading.component.scss +0 -4
- package/src/app/modules/services/loading/loading.component.spec.ts +0 -25
- package/src/app/modules/services/loading/loading.component.ts +0 -34
- package/src/app/modules/services/local-storage.service.ts +0 -117
- package/src/app/modules/services/message.service.ts +0 -219
- package/src/app/modules/services/screen-size-util.ts +0 -5
- package/src/app/modules/services/session.service.ts +0 -44
- package/src/assets/.gitkeep +0 -0
- package/src/assets/fa/LICENSE.txt +0 -34
- package/src/assets/fa/css/all.css +0 -4556
- package/src/assets/fa/css/all.min.css +0 -5
- package/src/assets/fa/css/brands.css +0 -15
- package/src/assets/fa/css/brands.min.css +0 -5
- package/src/assets/fa/css/fontawesome.css +0 -4522
- package/src/assets/fa/css/fontawesome.min.css +0 -5
- package/src/assets/fa/css/regular.css +0 -15
- package/src/assets/fa/css/regular.min.css +0 -5
- package/src/assets/fa/css/solid.css +0 -16
- package/src/assets/fa/css/solid.min.css +0 -5
- package/src/assets/fa/css/svg-with-js.css +0 -371
- package/src/assets/fa/css/svg-with-js.min.css +0 -5
- package/src/assets/fa/css/v4-shims.css +0 -2172
- package/src/assets/fa/css/v4-shims.min.css +0 -5
- package/src/assets/fa/js/all.js +0 -4441
- package/src/assets/fa/js/all.min.js +0 -5
- package/src/assets/fa/js/brands.js +0 -571
- package/src/assets/fa/js/brands.min.js +0 -5
- package/src/assets/fa/js/conflict-detection.js +0 -998
- package/src/assets/fa/js/conflict-detection.min.js +0 -5
- package/src/assets/fa/js/fontawesome.js +0 -2478
- package/src/assets/fa/js/fontawesome.min.js +0 -5
- package/src/assets/fa/js/regular.js +0 -280
- package/src/assets/fa/js/regular.min.js +0 -5
- package/src/assets/fa/js/solid.js +0 -1124
- package/src/assets/fa/js/solid.min.js +0 -5
- package/src/assets/fa/js/v4-shims.js +0 -68
- package/src/assets/fa/js/v4-shims.min.js +0 -5
- package/src/assets/fa/less/_animated.less +0 -19
- package/src/assets/fa/less/_bordered-pulled.less +0 -16
- package/src/assets/fa/less/_core.less +0 -12
- package/src/assets/fa/less/_fixed-width.less +0 -6
- package/src/assets/fa/less/_icons.less +0 -1441
- package/src/assets/fa/less/_larger.less +0 -27
- package/src/assets/fa/less/_list.less +0 -18
- package/src/assets/fa/less/_mixins.less +0 -56
- package/src/assets/fa/less/_rotated-flipped.less +0 -24
- package/src/assets/fa/less/_screen-reader.less +0 -5
- package/src/assets/fa/less/_shims.less +0 -2066
- package/src/assets/fa/less/_stacked.less +0 -22
- package/src/assets/fa/less/_variables.less +0 -1453
- package/src/assets/fa/less/brands.less +0 -23
- package/src/assets/fa/less/fontawesome.less +0 -16
- package/src/assets/fa/less/regular.less +0 -23
- package/src/assets/fa/less/solid.less +0 -24
- package/src/assets/fa/less/v4-shims.less +0 -6
- package/src/assets/fa/metadata/categories.yml +0 -2562
- package/src/assets/fa/metadata/icons.json +0 -57762
- package/src/assets/fa/metadata/icons.yml +0 -21485
- package/src/assets/fa/metadata/shims.json +0 -2317
- package/src/assets/fa/metadata/shims.yml +0 -298
- package/src/assets/fa/metadata/sponsors.yml +0 -688
- package/src/assets/fa/scss/_animated.scss +0 -20
- package/src/assets/fa/scss/_bordered-pulled.scss +0 -20
- package/src/assets/fa/scss/_core.scss +0 -21
- package/src/assets/fa/scss/_fixed-width.scss +0 -6
- package/src/assets/fa/scss/_icons.scss +0 -1441
- package/src/assets/fa/scss/_larger.scss +0 -23
- package/src/assets/fa/scss/_list.scss +0 -18
- package/src/assets/fa/scss/_mixins.scss +0 -56
- package/src/assets/fa/scss/_rotated-flipped.scss +0 -24
- package/src/assets/fa/scss/_screen-reader.scss +0 -5
- package/src/assets/fa/scss/_shims.scss +0 -2066
- package/src/assets/fa/scss/_stacked.scss +0 -31
- package/src/assets/fa/scss/_variables.scss +0 -1458
- package/src/assets/fa/scss/brands.scss +0 -23
- package/src/assets/fa/scss/fontawesome.scss +0 -16
- package/src/assets/fa/scss/regular.scss +0 -23
- package/src/assets/fa/scss/solid.scss +0 -24
- package/src/assets/fa/scss/v4-shims.scss +0 -6
- package/src/assets/fa/sprites/brands.svg +0 -1336
- package/src/assets/fa/sprites/regular.svg +0 -463
- package/src/assets/fa/sprites/solid.svg +0 -2995
- package/src/assets/fa/svgs/brands/500px.svg +0 -1
- package/src/assets/fa/svgs/brands/accessible-icon.svg +0 -1
- package/src/assets/fa/svgs/brands/accusoft.svg +0 -1
- package/src/assets/fa/svgs/brands/acquisitions-incorporated.svg +0 -1
- package/src/assets/fa/svgs/brands/adn.svg +0 -1
- package/src/assets/fa/svgs/brands/adobe.svg +0 -1
- package/src/assets/fa/svgs/brands/adversal.svg +0 -1
- package/src/assets/fa/svgs/brands/affiliatetheme.svg +0 -1
- package/src/assets/fa/svgs/brands/airbnb.svg +0 -1
- package/src/assets/fa/svgs/brands/algolia.svg +0 -1
- package/src/assets/fa/svgs/brands/alipay.svg +0 -1
- package/src/assets/fa/svgs/brands/amazon-pay.svg +0 -1
- package/src/assets/fa/svgs/brands/amazon.svg +0 -1
- package/src/assets/fa/svgs/brands/amilia.svg +0 -1
- package/src/assets/fa/svgs/brands/android.svg +0 -1
- package/src/assets/fa/svgs/brands/angellist.svg +0 -1
- package/src/assets/fa/svgs/brands/angrycreative.svg +0 -1
- package/src/assets/fa/svgs/brands/angular.svg +0 -1
- package/src/assets/fa/svgs/brands/app-store-ios.svg +0 -1
- package/src/assets/fa/svgs/brands/app-store.svg +0 -1
- package/src/assets/fa/svgs/brands/apper.svg +0 -1
- package/src/assets/fa/svgs/brands/apple-pay.svg +0 -1
- package/src/assets/fa/svgs/brands/apple.svg +0 -1
- package/src/assets/fa/svgs/brands/artstation.svg +0 -1
- package/src/assets/fa/svgs/brands/asymmetrik.svg +0 -1
- package/src/assets/fa/svgs/brands/atlassian.svg +0 -1
- package/src/assets/fa/svgs/brands/audible.svg +0 -1
- package/src/assets/fa/svgs/brands/autoprefixer.svg +0 -1
- package/src/assets/fa/svgs/brands/avianex.svg +0 -1
- package/src/assets/fa/svgs/brands/aviato.svg +0 -1
- package/src/assets/fa/svgs/brands/aws.svg +0 -1
- package/src/assets/fa/svgs/brands/bandcamp.svg +0 -1
- package/src/assets/fa/svgs/brands/battle-net.svg +0 -1
- package/src/assets/fa/svgs/brands/behance-square.svg +0 -1
- package/src/assets/fa/svgs/brands/behance.svg +0 -1
- package/src/assets/fa/svgs/brands/bimobject.svg +0 -1
- package/src/assets/fa/svgs/brands/bitbucket.svg +0 -1
- package/src/assets/fa/svgs/brands/bitcoin.svg +0 -1
- package/src/assets/fa/svgs/brands/bity.svg +0 -1
- package/src/assets/fa/svgs/brands/black-tie.svg +0 -1
- package/src/assets/fa/svgs/brands/blackberry.svg +0 -1
- package/src/assets/fa/svgs/brands/blogger-b.svg +0 -1
- package/src/assets/fa/svgs/brands/blogger.svg +0 -1
- package/src/assets/fa/svgs/brands/bluetooth-b.svg +0 -1
- package/src/assets/fa/svgs/brands/bluetooth.svg +0 -1
- package/src/assets/fa/svgs/brands/bootstrap.svg +0 -1
- package/src/assets/fa/svgs/brands/btc.svg +0 -1
- package/src/assets/fa/svgs/brands/buffer.svg +0 -1
- package/src/assets/fa/svgs/brands/buromobelexperte.svg +0 -1
- package/src/assets/fa/svgs/brands/buy-n-large.svg +0 -1
- package/src/assets/fa/svgs/brands/buysellads.svg +0 -1
- package/src/assets/fa/svgs/brands/canadian-maple-leaf.svg +0 -1
- package/src/assets/fa/svgs/brands/cc-amazon-pay.svg +0 -1
- package/src/assets/fa/svgs/brands/cc-amex.svg +0 -1
- package/src/assets/fa/svgs/brands/cc-apple-pay.svg +0 -1
- package/src/assets/fa/svgs/brands/cc-diners-club.svg +0 -1
- package/src/assets/fa/svgs/brands/cc-discover.svg +0 -1
- package/src/assets/fa/svgs/brands/cc-jcb.svg +0 -1
- package/src/assets/fa/svgs/brands/cc-mastercard.svg +0 -1
- package/src/assets/fa/svgs/brands/cc-paypal.svg +0 -1
- package/src/assets/fa/svgs/brands/cc-stripe.svg +0 -1
- package/src/assets/fa/svgs/brands/cc-visa.svg +0 -1
- package/src/assets/fa/svgs/brands/centercode.svg +0 -1
- package/src/assets/fa/svgs/brands/centos.svg +0 -1
- package/src/assets/fa/svgs/brands/chrome.svg +0 -1
- package/src/assets/fa/svgs/brands/chromecast.svg +0 -1
- package/src/assets/fa/svgs/brands/cloudscale.svg +0 -1
- package/src/assets/fa/svgs/brands/cloudsmith.svg +0 -1
- package/src/assets/fa/svgs/brands/cloudversify.svg +0 -1
- package/src/assets/fa/svgs/brands/codepen.svg +0 -1
- package/src/assets/fa/svgs/brands/codiepie.svg +0 -1
- package/src/assets/fa/svgs/brands/confluence.svg +0 -1
- package/src/assets/fa/svgs/brands/connectdevelop.svg +0 -1
- package/src/assets/fa/svgs/brands/contao.svg +0 -1
- package/src/assets/fa/svgs/brands/cotton-bureau.svg +0 -1
- package/src/assets/fa/svgs/brands/cpanel.svg +0 -1
- package/src/assets/fa/svgs/brands/creative-commons-by.svg +0 -1
- package/src/assets/fa/svgs/brands/creative-commons-nc-eu.svg +0 -1
- package/src/assets/fa/svgs/brands/creative-commons-nc-jp.svg +0 -1
- package/src/assets/fa/svgs/brands/creative-commons-nc.svg +0 -1
- package/src/assets/fa/svgs/brands/creative-commons-nd.svg +0 -1
- package/src/assets/fa/svgs/brands/creative-commons-pd-alt.svg +0 -1
- package/src/assets/fa/svgs/brands/creative-commons-pd.svg +0 -1
- package/src/assets/fa/svgs/brands/creative-commons-remix.svg +0 -1
- package/src/assets/fa/svgs/brands/creative-commons-sa.svg +0 -1
- package/src/assets/fa/svgs/brands/creative-commons-sampling-plus.svg +0 -1
- package/src/assets/fa/svgs/brands/creative-commons-sampling.svg +0 -1
- package/src/assets/fa/svgs/brands/creative-commons-share.svg +0 -1
- package/src/assets/fa/svgs/brands/creative-commons-zero.svg +0 -1
- package/src/assets/fa/svgs/brands/creative-commons.svg +0 -1
- package/src/assets/fa/svgs/brands/critical-role.svg +0 -1
- package/src/assets/fa/svgs/brands/css3-alt.svg +0 -1
- package/src/assets/fa/svgs/brands/css3.svg +0 -1
- package/src/assets/fa/svgs/brands/cuttlefish.svg +0 -1
- package/src/assets/fa/svgs/brands/d-and-d-beyond.svg +0 -1
- package/src/assets/fa/svgs/brands/d-and-d.svg +0 -1
- package/src/assets/fa/svgs/brands/dailymotion.svg +0 -1
- package/src/assets/fa/svgs/brands/dashcube.svg +0 -1
- package/src/assets/fa/svgs/brands/delicious.svg +0 -1
- package/src/assets/fa/svgs/brands/deploydog.svg +0 -1
- package/src/assets/fa/svgs/brands/deskpro.svg +0 -1
- package/src/assets/fa/svgs/brands/dev.svg +0 -1
- package/src/assets/fa/svgs/brands/deviantart.svg +0 -1
- package/src/assets/fa/svgs/brands/dhl.svg +0 -1
- package/src/assets/fa/svgs/brands/diaspora.svg +0 -1
- package/src/assets/fa/svgs/brands/digg.svg +0 -1
- package/src/assets/fa/svgs/brands/digital-ocean.svg +0 -1
- package/src/assets/fa/svgs/brands/discord.svg +0 -1
- package/src/assets/fa/svgs/brands/discourse.svg +0 -1
- package/src/assets/fa/svgs/brands/dochub.svg +0 -1
- package/src/assets/fa/svgs/brands/docker.svg +0 -1
- package/src/assets/fa/svgs/brands/draft2digital.svg +0 -1
- package/src/assets/fa/svgs/brands/dribbble-square.svg +0 -1
- package/src/assets/fa/svgs/brands/dribbble.svg +0 -1
- package/src/assets/fa/svgs/brands/dropbox.svg +0 -1
- package/src/assets/fa/svgs/brands/drupal.svg +0 -1
- package/src/assets/fa/svgs/brands/dyalog.svg +0 -1
- package/src/assets/fa/svgs/brands/earlybirds.svg +0 -1
- package/src/assets/fa/svgs/brands/ebay.svg +0 -1
- package/src/assets/fa/svgs/brands/edge.svg +0 -1
- package/src/assets/fa/svgs/brands/elementor.svg +0 -1
- package/src/assets/fa/svgs/brands/ello.svg +0 -1
- package/src/assets/fa/svgs/brands/ember.svg +0 -1
- package/src/assets/fa/svgs/brands/empire.svg +0 -1
- package/src/assets/fa/svgs/brands/envira.svg +0 -1
- package/src/assets/fa/svgs/brands/erlang.svg +0 -1
- package/src/assets/fa/svgs/brands/ethereum.svg +0 -1
- package/src/assets/fa/svgs/brands/etsy.svg +0 -1
- package/src/assets/fa/svgs/brands/evernote.svg +0 -1
- package/src/assets/fa/svgs/brands/expeditedssl.svg +0 -1
- package/src/assets/fa/svgs/brands/facebook-f.svg +0 -1
- package/src/assets/fa/svgs/brands/facebook-messenger.svg +0 -1
- package/src/assets/fa/svgs/brands/facebook-square.svg +0 -1
- package/src/assets/fa/svgs/brands/facebook.svg +0 -1
- package/src/assets/fa/svgs/brands/fantasy-flight-games.svg +0 -1
- package/src/assets/fa/svgs/brands/fedex.svg +0 -1
- package/src/assets/fa/svgs/brands/fedora.svg +0 -1
- package/src/assets/fa/svgs/brands/figma.svg +0 -1
- package/src/assets/fa/svgs/brands/firefox-browser.svg +0 -1
- package/src/assets/fa/svgs/brands/firefox.svg +0 -1
- package/src/assets/fa/svgs/brands/first-order-alt.svg +0 -1
- package/src/assets/fa/svgs/brands/first-order.svg +0 -1
- package/src/assets/fa/svgs/brands/firstdraft.svg +0 -1
- package/src/assets/fa/svgs/brands/flickr.svg +0 -1
- package/src/assets/fa/svgs/brands/flipboard.svg +0 -1
- package/src/assets/fa/svgs/brands/fly.svg +0 -1
- package/src/assets/fa/svgs/brands/font-awesome-alt.svg +0 -1
- package/src/assets/fa/svgs/brands/font-awesome-flag.svg +0 -1
- package/src/assets/fa/svgs/brands/font-awesome-logo-full.svg +0 -1
- package/src/assets/fa/svgs/brands/font-awesome.svg +0 -1
- package/src/assets/fa/svgs/brands/fonticons-fi.svg +0 -1
- package/src/assets/fa/svgs/brands/fonticons.svg +0 -1
- package/src/assets/fa/svgs/brands/fort-awesome-alt.svg +0 -1
- package/src/assets/fa/svgs/brands/fort-awesome.svg +0 -1
- package/src/assets/fa/svgs/brands/forumbee.svg +0 -1
- package/src/assets/fa/svgs/brands/foursquare.svg +0 -1
- package/src/assets/fa/svgs/brands/free-code-camp.svg +0 -1
- package/src/assets/fa/svgs/brands/freebsd.svg +0 -1
- package/src/assets/fa/svgs/brands/fulcrum.svg +0 -1
- package/src/assets/fa/svgs/brands/galactic-republic.svg +0 -1
- package/src/assets/fa/svgs/brands/galactic-senate.svg +0 -1
- package/src/assets/fa/svgs/brands/get-pocket.svg +0 -1
- package/src/assets/fa/svgs/brands/gg-circle.svg +0 -1
- package/src/assets/fa/svgs/brands/gg.svg +0 -1
- package/src/assets/fa/svgs/brands/git-alt.svg +0 -1
- package/src/assets/fa/svgs/brands/git-square.svg +0 -1
- package/src/assets/fa/svgs/brands/git.svg +0 -1
- package/src/assets/fa/svgs/brands/github-alt.svg +0 -1
- package/src/assets/fa/svgs/brands/github-square.svg +0 -1
- package/src/assets/fa/svgs/brands/github.svg +0 -1
- package/src/assets/fa/svgs/brands/gitkraken.svg +0 -1
- package/src/assets/fa/svgs/brands/gitlab.svg +0 -1
- package/src/assets/fa/svgs/brands/gitter.svg +0 -1
- package/src/assets/fa/svgs/brands/glide-g.svg +0 -1
- package/src/assets/fa/svgs/brands/glide.svg +0 -1
- package/src/assets/fa/svgs/brands/gofore.svg +0 -1
- package/src/assets/fa/svgs/brands/goodreads-g.svg +0 -1
- package/src/assets/fa/svgs/brands/goodreads.svg +0 -1
- package/src/assets/fa/svgs/brands/google-drive.svg +0 -1
- package/src/assets/fa/svgs/brands/google-play.svg +0 -1
- package/src/assets/fa/svgs/brands/google-plus-g.svg +0 -1
- package/src/assets/fa/svgs/brands/google-plus-square.svg +0 -1
- package/src/assets/fa/svgs/brands/google-plus.svg +0 -1
- package/src/assets/fa/svgs/brands/google-wallet.svg +0 -1
- package/src/assets/fa/svgs/brands/google.svg +0 -1
- package/src/assets/fa/svgs/brands/gratipay.svg +0 -1
- package/src/assets/fa/svgs/brands/grav.svg +0 -1
- package/src/assets/fa/svgs/brands/gripfire.svg +0 -1
- package/src/assets/fa/svgs/brands/grunt.svg +0 -1
- package/src/assets/fa/svgs/brands/gulp.svg +0 -1
- package/src/assets/fa/svgs/brands/hacker-news-square.svg +0 -1
- package/src/assets/fa/svgs/brands/hacker-news.svg +0 -1
- package/src/assets/fa/svgs/brands/hackerrank.svg +0 -1
- package/src/assets/fa/svgs/brands/hips.svg +0 -1
- package/src/assets/fa/svgs/brands/hire-a-helper.svg +0 -1
- package/src/assets/fa/svgs/brands/hooli.svg +0 -1
- package/src/assets/fa/svgs/brands/hornbill.svg +0 -1
- package/src/assets/fa/svgs/brands/hotjar.svg +0 -1
- package/src/assets/fa/svgs/brands/houzz.svg +0 -1
- package/src/assets/fa/svgs/brands/html5.svg +0 -1
- package/src/assets/fa/svgs/brands/hubspot.svg +0 -1
- package/src/assets/fa/svgs/brands/ideal.svg +0 -1
- package/src/assets/fa/svgs/brands/imdb.svg +0 -1
- package/src/assets/fa/svgs/brands/instagram-square.svg +0 -1
- package/src/assets/fa/svgs/brands/instagram.svg +0 -1
- package/src/assets/fa/svgs/brands/intercom.svg +0 -1
- package/src/assets/fa/svgs/brands/internet-explorer.svg +0 -1
- package/src/assets/fa/svgs/brands/invision.svg +0 -1
- package/src/assets/fa/svgs/brands/ioxhost.svg +0 -1
- package/src/assets/fa/svgs/brands/itch-io.svg +0 -1
- package/src/assets/fa/svgs/brands/itunes-note.svg +0 -1
- package/src/assets/fa/svgs/brands/itunes.svg +0 -1
- package/src/assets/fa/svgs/brands/java.svg +0 -1
- package/src/assets/fa/svgs/brands/jedi-order.svg +0 -1
- package/src/assets/fa/svgs/brands/jenkins.svg +0 -1
- package/src/assets/fa/svgs/brands/jira.svg +0 -1
- package/src/assets/fa/svgs/brands/joget.svg +0 -1
- package/src/assets/fa/svgs/brands/joomla.svg +0 -1
- package/src/assets/fa/svgs/brands/js-square.svg +0 -1
- package/src/assets/fa/svgs/brands/js.svg +0 -1
- package/src/assets/fa/svgs/brands/jsfiddle.svg +0 -1
- package/src/assets/fa/svgs/brands/kaggle.svg +0 -1
- package/src/assets/fa/svgs/brands/keybase.svg +0 -1
- package/src/assets/fa/svgs/brands/keycdn.svg +0 -1
- package/src/assets/fa/svgs/brands/kickstarter-k.svg +0 -1
- package/src/assets/fa/svgs/brands/kickstarter.svg +0 -1
- package/src/assets/fa/svgs/brands/korvue.svg +0 -1
- package/src/assets/fa/svgs/brands/laravel.svg +0 -1
- package/src/assets/fa/svgs/brands/lastfm-square.svg +0 -1
- package/src/assets/fa/svgs/brands/lastfm.svg +0 -1
- package/src/assets/fa/svgs/brands/leanpub.svg +0 -1
- package/src/assets/fa/svgs/brands/less.svg +0 -1
- package/src/assets/fa/svgs/brands/line.svg +0 -1
- package/src/assets/fa/svgs/brands/linkedin-in.svg +0 -1
- package/src/assets/fa/svgs/brands/linkedin.svg +0 -1
- package/src/assets/fa/svgs/brands/linode.svg +0 -1
- package/src/assets/fa/svgs/brands/linux.svg +0 -1
- package/src/assets/fa/svgs/brands/lyft.svg +0 -1
- package/src/assets/fa/svgs/brands/magento.svg +0 -1
- package/src/assets/fa/svgs/brands/mailchimp.svg +0 -1
- package/src/assets/fa/svgs/brands/mandalorian.svg +0 -1
- package/src/assets/fa/svgs/brands/markdown.svg +0 -1
- package/src/assets/fa/svgs/brands/mastodon.svg +0 -1
- package/src/assets/fa/svgs/brands/maxcdn.svg +0 -1
- package/src/assets/fa/svgs/brands/mdb.svg +0 -1
- package/src/assets/fa/svgs/brands/medapps.svg +0 -1
- package/src/assets/fa/svgs/brands/medium-m.svg +0 -1
- package/src/assets/fa/svgs/brands/medium.svg +0 -1
- package/src/assets/fa/svgs/brands/medrt.svg +0 -1
- package/src/assets/fa/svgs/brands/meetup.svg +0 -1
- package/src/assets/fa/svgs/brands/megaport.svg +0 -1
- package/src/assets/fa/svgs/brands/mendeley.svg +0 -1
- package/src/assets/fa/svgs/brands/microblog.svg +0 -1
- package/src/assets/fa/svgs/brands/microsoft.svg +0 -1
- package/src/assets/fa/svgs/brands/mix.svg +0 -1
- package/src/assets/fa/svgs/brands/mixcloud.svg +0 -1
- package/src/assets/fa/svgs/brands/mixer.svg +0 -1
- package/src/assets/fa/svgs/brands/mizuni.svg +0 -1
- package/src/assets/fa/svgs/brands/modx.svg +0 -1
- package/src/assets/fa/svgs/brands/monero.svg +0 -1
- package/src/assets/fa/svgs/brands/napster.svg +0 -1
- package/src/assets/fa/svgs/brands/neos.svg +0 -1
- package/src/assets/fa/svgs/brands/nimblr.svg +0 -1
- package/src/assets/fa/svgs/brands/node-js.svg +0 -1
- package/src/assets/fa/svgs/brands/node.svg +0 -1
- package/src/assets/fa/svgs/brands/npm.svg +0 -1
- package/src/assets/fa/svgs/brands/ns8.svg +0 -1
- package/src/assets/fa/svgs/brands/nutritionix.svg +0 -1
- package/src/assets/fa/svgs/brands/odnoklassniki-square.svg +0 -1
- package/src/assets/fa/svgs/brands/odnoklassniki.svg +0 -1
- package/src/assets/fa/svgs/brands/old-republic.svg +0 -1
- package/src/assets/fa/svgs/brands/opencart.svg +0 -1
- package/src/assets/fa/svgs/brands/openid.svg +0 -1
- package/src/assets/fa/svgs/brands/opera.svg +0 -1
- package/src/assets/fa/svgs/brands/optin-monster.svg +0 -1
- package/src/assets/fa/svgs/brands/orcid.svg +0 -1
- package/src/assets/fa/svgs/brands/osi.svg +0 -1
- package/src/assets/fa/svgs/brands/page4.svg +0 -1
- package/src/assets/fa/svgs/brands/pagelines.svg +0 -1
- package/src/assets/fa/svgs/brands/palfed.svg +0 -1
- package/src/assets/fa/svgs/brands/patreon.svg +0 -1
- package/src/assets/fa/svgs/brands/paypal.svg +0 -1
- package/src/assets/fa/svgs/brands/penny-arcade.svg +0 -1
- package/src/assets/fa/svgs/brands/periscope.svg +0 -1
- package/src/assets/fa/svgs/brands/phabricator.svg +0 -1
- package/src/assets/fa/svgs/brands/phoenix-framework.svg +0 -1
- package/src/assets/fa/svgs/brands/phoenix-squadron.svg +0 -1
- package/src/assets/fa/svgs/brands/php.svg +0 -1
- package/src/assets/fa/svgs/brands/pied-piper-alt.svg +0 -1
- package/src/assets/fa/svgs/brands/pied-piper-hat.svg +0 -1
- package/src/assets/fa/svgs/brands/pied-piper-pp.svg +0 -1
- package/src/assets/fa/svgs/brands/pied-piper-square.svg +0 -1
- package/src/assets/fa/svgs/brands/pied-piper.svg +0 -1
- package/src/assets/fa/svgs/brands/pinterest-p.svg +0 -1
- package/src/assets/fa/svgs/brands/pinterest-square.svg +0 -1
- package/src/assets/fa/svgs/brands/pinterest.svg +0 -1
- package/src/assets/fa/svgs/brands/playstation.svg +0 -1
- package/src/assets/fa/svgs/brands/product-hunt.svg +0 -1
- package/src/assets/fa/svgs/brands/pushed.svg +0 -1
- package/src/assets/fa/svgs/brands/python.svg +0 -1
- package/src/assets/fa/svgs/brands/qq.svg +0 -1
- package/src/assets/fa/svgs/brands/quinscape.svg +0 -1
- package/src/assets/fa/svgs/brands/quora.svg +0 -1
- package/src/assets/fa/svgs/brands/r-project.svg +0 -1
- package/src/assets/fa/svgs/brands/raspberry-pi.svg +0 -1
- package/src/assets/fa/svgs/brands/ravelry.svg +0 -1
- package/src/assets/fa/svgs/brands/react.svg +0 -1
- package/src/assets/fa/svgs/brands/reacteurope.svg +0 -1
- package/src/assets/fa/svgs/brands/readme.svg +0 -1
- package/src/assets/fa/svgs/brands/rebel.svg +0 -1
- package/src/assets/fa/svgs/brands/red-river.svg +0 -1
- package/src/assets/fa/svgs/brands/reddit-alien.svg +0 -1
- package/src/assets/fa/svgs/brands/reddit-square.svg +0 -1
- package/src/assets/fa/svgs/brands/reddit.svg +0 -1
- package/src/assets/fa/svgs/brands/redhat.svg +0 -1
- package/src/assets/fa/svgs/brands/renren.svg +0 -1
- package/src/assets/fa/svgs/brands/replyd.svg +0 -1
- package/src/assets/fa/svgs/brands/researchgate.svg +0 -1
- package/src/assets/fa/svgs/brands/resolving.svg +0 -1
- package/src/assets/fa/svgs/brands/rev.svg +0 -1
- package/src/assets/fa/svgs/brands/rocketchat.svg +0 -1
- package/src/assets/fa/svgs/brands/rockrms.svg +0 -1
- package/src/assets/fa/svgs/brands/safari.svg +0 -1
- package/src/assets/fa/svgs/brands/salesforce.svg +0 -1
- package/src/assets/fa/svgs/brands/sass.svg +0 -1
- package/src/assets/fa/svgs/brands/schlix.svg +0 -1
- package/src/assets/fa/svgs/brands/scribd.svg +0 -1
- package/src/assets/fa/svgs/brands/searchengin.svg +0 -1
- package/src/assets/fa/svgs/brands/sellcast.svg +0 -1
- package/src/assets/fa/svgs/brands/sellsy.svg +0 -1
- package/src/assets/fa/svgs/brands/servicestack.svg +0 -1
- package/src/assets/fa/svgs/brands/shirtsinbulk.svg +0 -1
- package/src/assets/fa/svgs/brands/shopify.svg +0 -1
- package/src/assets/fa/svgs/brands/shopware.svg +0 -1
- package/src/assets/fa/svgs/brands/simplybuilt.svg +0 -1
- package/src/assets/fa/svgs/brands/sistrix.svg +0 -1
- package/src/assets/fa/svgs/brands/sith.svg +0 -1
- package/src/assets/fa/svgs/brands/sketch.svg +0 -1
- package/src/assets/fa/svgs/brands/skyatlas.svg +0 -1
- package/src/assets/fa/svgs/brands/skype.svg +0 -1
- package/src/assets/fa/svgs/brands/slack-hash.svg +0 -1
- package/src/assets/fa/svgs/brands/slack.svg +0 -1
- package/src/assets/fa/svgs/brands/slideshare.svg +0 -1
- package/src/assets/fa/svgs/brands/snapchat-ghost.svg +0 -1
- package/src/assets/fa/svgs/brands/snapchat-square.svg +0 -1
- package/src/assets/fa/svgs/brands/snapchat.svg +0 -1
- package/src/assets/fa/svgs/brands/soundcloud.svg +0 -1
- package/src/assets/fa/svgs/brands/sourcetree.svg +0 -1
- package/src/assets/fa/svgs/brands/speakap.svg +0 -1
- package/src/assets/fa/svgs/brands/speaker-deck.svg +0 -1
- package/src/assets/fa/svgs/brands/spotify.svg +0 -1
- package/src/assets/fa/svgs/brands/squarespace.svg +0 -1
- package/src/assets/fa/svgs/brands/stack-exchange.svg +0 -1
- package/src/assets/fa/svgs/brands/stack-overflow.svg +0 -1
- package/src/assets/fa/svgs/brands/stackpath.svg +0 -1
- package/src/assets/fa/svgs/brands/staylinked.svg +0 -1
- package/src/assets/fa/svgs/brands/steam-square.svg +0 -1
- package/src/assets/fa/svgs/brands/steam-symbol.svg +0 -1
- package/src/assets/fa/svgs/brands/steam.svg +0 -1
- package/src/assets/fa/svgs/brands/sticker-mule.svg +0 -1
- package/src/assets/fa/svgs/brands/strava.svg +0 -1
- package/src/assets/fa/svgs/brands/stripe-s.svg +0 -1
- package/src/assets/fa/svgs/brands/stripe.svg +0 -1
- package/src/assets/fa/svgs/brands/studiovinari.svg +0 -1
- package/src/assets/fa/svgs/brands/stumbleupon-circle.svg +0 -1
- package/src/assets/fa/svgs/brands/stumbleupon.svg +0 -1
- package/src/assets/fa/svgs/brands/superpowers.svg +0 -1
- package/src/assets/fa/svgs/brands/supple.svg +0 -1
- package/src/assets/fa/svgs/brands/suse.svg +0 -1
- package/src/assets/fa/svgs/brands/swift.svg +0 -1
- package/src/assets/fa/svgs/brands/symfony.svg +0 -1
- package/src/assets/fa/svgs/brands/teamspeak.svg +0 -1
- package/src/assets/fa/svgs/brands/telegram-plane.svg +0 -1
- package/src/assets/fa/svgs/brands/telegram.svg +0 -1
- package/src/assets/fa/svgs/brands/tencent-weibo.svg +0 -1
- package/src/assets/fa/svgs/brands/the-red-yeti.svg +0 -1
- package/src/assets/fa/svgs/brands/themeco.svg +0 -1
- package/src/assets/fa/svgs/brands/themeisle.svg +0 -1
- package/src/assets/fa/svgs/brands/think-peaks.svg +0 -1
- package/src/assets/fa/svgs/brands/trade-federation.svg +0 -1
- package/src/assets/fa/svgs/brands/trello.svg +0 -1
- package/src/assets/fa/svgs/brands/tripadvisor.svg +0 -1
- package/src/assets/fa/svgs/brands/tumblr-square.svg +0 -1
- package/src/assets/fa/svgs/brands/tumblr.svg +0 -1
- package/src/assets/fa/svgs/brands/twitch.svg +0 -1
- package/src/assets/fa/svgs/brands/twitter-square.svg +0 -1
- package/src/assets/fa/svgs/brands/twitter.svg +0 -1
- package/src/assets/fa/svgs/brands/typo3.svg +0 -1
- package/src/assets/fa/svgs/brands/uber.svg +0 -1
- package/src/assets/fa/svgs/brands/ubuntu.svg +0 -1
- package/src/assets/fa/svgs/brands/uikit.svg +0 -1
- package/src/assets/fa/svgs/brands/umbraco.svg +0 -1
- package/src/assets/fa/svgs/brands/uniregistry.svg +0 -1
- package/src/assets/fa/svgs/brands/unity.svg +0 -1
- package/src/assets/fa/svgs/brands/untappd.svg +0 -1
- package/src/assets/fa/svgs/brands/ups.svg +0 -1
- package/src/assets/fa/svgs/brands/usb.svg +0 -1
- package/src/assets/fa/svgs/brands/usps.svg +0 -1
- package/src/assets/fa/svgs/brands/ussunnah.svg +0 -1
- package/src/assets/fa/svgs/brands/vaadin.svg +0 -1
- package/src/assets/fa/svgs/brands/viacoin.svg +0 -1
- package/src/assets/fa/svgs/brands/viadeo-square.svg +0 -1
- package/src/assets/fa/svgs/brands/viadeo.svg +0 -1
- package/src/assets/fa/svgs/brands/viber.svg +0 -1
- package/src/assets/fa/svgs/brands/vimeo-square.svg +0 -1
- package/src/assets/fa/svgs/brands/vimeo-v.svg +0 -1
- package/src/assets/fa/svgs/brands/vimeo.svg +0 -1
- package/src/assets/fa/svgs/brands/vine.svg +0 -1
- package/src/assets/fa/svgs/brands/vk.svg +0 -1
- package/src/assets/fa/svgs/brands/vnv.svg +0 -1
- package/src/assets/fa/svgs/brands/vuejs.svg +0 -1
- package/src/assets/fa/svgs/brands/waze.svg +0 -1
- package/src/assets/fa/svgs/brands/weebly.svg +0 -1
- package/src/assets/fa/svgs/brands/weibo.svg +0 -1
- package/src/assets/fa/svgs/brands/weixin.svg +0 -1
- package/src/assets/fa/svgs/brands/whatsapp-square.svg +0 -1
- package/src/assets/fa/svgs/brands/whatsapp.svg +0 -1
- package/src/assets/fa/svgs/brands/whmcs.svg +0 -1
- package/src/assets/fa/svgs/brands/wikipedia-w.svg +0 -1
- package/src/assets/fa/svgs/brands/windows.svg +0 -1
- package/src/assets/fa/svgs/brands/wix.svg +0 -1
- package/src/assets/fa/svgs/brands/wizards-of-the-coast.svg +0 -1
- package/src/assets/fa/svgs/brands/wolf-pack-battalion.svg +0 -1
- package/src/assets/fa/svgs/brands/wordpress-simple.svg +0 -1
- package/src/assets/fa/svgs/brands/wordpress.svg +0 -1
- package/src/assets/fa/svgs/brands/wpbeginner.svg +0 -1
- package/src/assets/fa/svgs/brands/wpexplorer.svg +0 -1
- package/src/assets/fa/svgs/brands/wpforms.svg +0 -1
- package/src/assets/fa/svgs/brands/wpressr.svg +0 -1
- package/src/assets/fa/svgs/brands/xbox.svg +0 -1
- package/src/assets/fa/svgs/brands/xing-square.svg +0 -1
- package/src/assets/fa/svgs/brands/xing.svg +0 -1
- package/src/assets/fa/svgs/brands/y-combinator.svg +0 -1
- package/src/assets/fa/svgs/brands/yahoo.svg +0 -1
- package/src/assets/fa/svgs/brands/yammer.svg +0 -1
- package/src/assets/fa/svgs/brands/yandex-international.svg +0 -1
- package/src/assets/fa/svgs/brands/yandex.svg +0 -1
- package/src/assets/fa/svgs/brands/yarn.svg +0 -1
- package/src/assets/fa/svgs/brands/yelp.svg +0 -1
- package/src/assets/fa/svgs/brands/yoast.svg +0 -1
- package/src/assets/fa/svgs/brands/youtube-square.svg +0 -1
- package/src/assets/fa/svgs/brands/youtube.svg +0 -1
- package/src/assets/fa/svgs/brands/zhihu.svg +0 -1
- package/src/assets/fa/svgs/regular/address-book.svg +0 -1
- package/src/assets/fa/svgs/regular/address-card.svg +0 -1
- package/src/assets/fa/svgs/regular/angry.svg +0 -1
- package/src/assets/fa/svgs/regular/arrow-alt-circle-down.svg +0 -1
- package/src/assets/fa/svgs/regular/arrow-alt-circle-left.svg +0 -1
- package/src/assets/fa/svgs/regular/arrow-alt-circle-right.svg +0 -1
- package/src/assets/fa/svgs/regular/arrow-alt-circle-up.svg +0 -1
- package/src/assets/fa/svgs/regular/bell-slash.svg +0 -1
- package/src/assets/fa/svgs/regular/bell.svg +0 -1
- package/src/assets/fa/svgs/regular/bookmark.svg +0 -1
- package/src/assets/fa/svgs/regular/building.svg +0 -1
- package/src/assets/fa/svgs/regular/calendar-alt.svg +0 -1
- package/src/assets/fa/svgs/regular/calendar-check.svg +0 -1
- package/src/assets/fa/svgs/regular/calendar-minus.svg +0 -1
- package/src/assets/fa/svgs/regular/calendar-plus.svg +0 -1
- package/src/assets/fa/svgs/regular/calendar-times.svg +0 -1
- package/src/assets/fa/svgs/regular/calendar.svg +0 -1
- package/src/assets/fa/svgs/regular/caret-square-down.svg +0 -1
- package/src/assets/fa/svgs/regular/caret-square-left.svg +0 -1
- package/src/assets/fa/svgs/regular/caret-square-right.svg +0 -1
- package/src/assets/fa/svgs/regular/caret-square-up.svg +0 -1
- package/src/assets/fa/svgs/regular/chart-bar.svg +0 -1
- package/src/assets/fa/svgs/regular/check-circle.svg +0 -1
- package/src/assets/fa/svgs/regular/check-square.svg +0 -1
- package/src/assets/fa/svgs/regular/circle.svg +0 -1
- package/src/assets/fa/svgs/regular/clipboard.svg +0 -1
- package/src/assets/fa/svgs/regular/clock.svg +0 -1
- package/src/assets/fa/svgs/regular/clone.svg +0 -1
- package/src/assets/fa/svgs/regular/closed-captioning.svg +0 -1
- package/src/assets/fa/svgs/regular/comment-alt.svg +0 -1
- package/src/assets/fa/svgs/regular/comment-dots.svg +0 -1
- package/src/assets/fa/svgs/regular/comment.svg +0 -1
- package/src/assets/fa/svgs/regular/comments.svg +0 -1
- package/src/assets/fa/svgs/regular/compass.svg +0 -1
- package/src/assets/fa/svgs/regular/copy.svg +0 -1
- package/src/assets/fa/svgs/regular/copyright.svg +0 -1
- package/src/assets/fa/svgs/regular/credit-card.svg +0 -1
- package/src/assets/fa/svgs/regular/dizzy.svg +0 -1
- package/src/assets/fa/svgs/regular/dot-circle.svg +0 -1
- package/src/assets/fa/svgs/regular/edit.svg +0 -1
- package/src/assets/fa/svgs/regular/envelope-open.svg +0 -1
- package/src/assets/fa/svgs/regular/envelope.svg +0 -1
- package/src/assets/fa/svgs/regular/eye-slash.svg +0 -1
- package/src/assets/fa/svgs/regular/eye.svg +0 -1
- package/src/assets/fa/svgs/regular/file-alt.svg +0 -1
- package/src/assets/fa/svgs/regular/file-archive.svg +0 -1
- package/src/assets/fa/svgs/regular/file-audio.svg +0 -1
- package/src/assets/fa/svgs/regular/file-code.svg +0 -1
- package/src/assets/fa/svgs/regular/file-excel.svg +0 -1
- package/src/assets/fa/svgs/regular/file-image.svg +0 -1
- package/src/assets/fa/svgs/regular/file-pdf.svg +0 -1
- package/src/assets/fa/svgs/regular/file-powerpoint.svg +0 -1
- package/src/assets/fa/svgs/regular/file-video.svg +0 -1
- package/src/assets/fa/svgs/regular/file-word.svg +0 -1
- package/src/assets/fa/svgs/regular/file.svg +0 -1
- package/src/assets/fa/svgs/regular/flag.svg +0 -1
- package/src/assets/fa/svgs/regular/flushed.svg +0 -1
- package/src/assets/fa/svgs/regular/folder-open.svg +0 -1
- package/src/assets/fa/svgs/regular/folder.svg +0 -1
- package/src/assets/fa/svgs/regular/font-awesome-logo-full.svg +0 -1
- package/src/assets/fa/svgs/regular/frown-open.svg +0 -1
- package/src/assets/fa/svgs/regular/frown.svg +0 -1
- package/src/assets/fa/svgs/regular/futbol.svg +0 -1
- package/src/assets/fa/svgs/regular/gem.svg +0 -1
- package/src/assets/fa/svgs/regular/grimace.svg +0 -1
- package/src/assets/fa/svgs/regular/grin-alt.svg +0 -1
- package/src/assets/fa/svgs/regular/grin-beam-sweat.svg +0 -1
- package/src/assets/fa/svgs/regular/grin-beam.svg +0 -1
- package/src/assets/fa/svgs/regular/grin-hearts.svg +0 -1
- package/src/assets/fa/svgs/regular/grin-squint-tears.svg +0 -1
- package/src/assets/fa/svgs/regular/grin-squint.svg +0 -1
- package/src/assets/fa/svgs/regular/grin-stars.svg +0 -1
- package/src/assets/fa/svgs/regular/grin-tears.svg +0 -1
- package/src/assets/fa/svgs/regular/grin-tongue-squint.svg +0 -1
- package/src/assets/fa/svgs/regular/grin-tongue-wink.svg +0 -1
- package/src/assets/fa/svgs/regular/grin-tongue.svg +0 -1
- package/src/assets/fa/svgs/regular/grin-wink.svg +0 -1
- package/src/assets/fa/svgs/regular/grin.svg +0 -1
- package/src/assets/fa/svgs/regular/hand-lizard.svg +0 -1
- package/src/assets/fa/svgs/regular/hand-paper.svg +0 -1
- package/src/assets/fa/svgs/regular/hand-peace.svg +0 -1
- package/src/assets/fa/svgs/regular/hand-point-down.svg +0 -1
- package/src/assets/fa/svgs/regular/hand-point-left.svg +0 -1
- package/src/assets/fa/svgs/regular/hand-point-right.svg +0 -1
- package/src/assets/fa/svgs/regular/hand-point-up.svg +0 -1
- package/src/assets/fa/svgs/regular/hand-pointer.svg +0 -1
- package/src/assets/fa/svgs/regular/hand-rock.svg +0 -1
- package/src/assets/fa/svgs/regular/hand-scissors.svg +0 -1
- package/src/assets/fa/svgs/regular/hand-spock.svg +0 -1
- package/src/assets/fa/svgs/regular/handshake.svg +0 -1
- package/src/assets/fa/svgs/regular/hdd.svg +0 -1
- package/src/assets/fa/svgs/regular/heart.svg +0 -1
- package/src/assets/fa/svgs/regular/hospital.svg +0 -1
- package/src/assets/fa/svgs/regular/hourglass.svg +0 -1
- package/src/assets/fa/svgs/regular/id-badge.svg +0 -1
- package/src/assets/fa/svgs/regular/id-card.svg +0 -1
- package/src/assets/fa/svgs/regular/image.svg +0 -1
- package/src/assets/fa/svgs/regular/images.svg +0 -1
- package/src/assets/fa/svgs/regular/keyboard.svg +0 -1
- package/src/assets/fa/svgs/regular/kiss-beam.svg +0 -1
- package/src/assets/fa/svgs/regular/kiss-wink-heart.svg +0 -1
- package/src/assets/fa/svgs/regular/kiss.svg +0 -1
- package/src/assets/fa/svgs/regular/laugh-beam.svg +0 -1
- package/src/assets/fa/svgs/regular/laugh-squint.svg +0 -1
- package/src/assets/fa/svgs/regular/laugh-wink.svg +0 -1
- package/src/assets/fa/svgs/regular/laugh.svg +0 -1
- package/src/assets/fa/svgs/regular/lemon.svg +0 -1
- package/src/assets/fa/svgs/regular/life-ring.svg +0 -1
- package/src/assets/fa/svgs/regular/lightbulb.svg +0 -1
- package/src/assets/fa/svgs/regular/list-alt.svg +0 -1
- package/src/assets/fa/svgs/regular/map.svg +0 -1
- package/src/assets/fa/svgs/regular/meh-blank.svg +0 -1
- package/src/assets/fa/svgs/regular/meh-rolling-eyes.svg +0 -1
- package/src/assets/fa/svgs/regular/meh.svg +0 -1
- package/src/assets/fa/svgs/regular/minus-square.svg +0 -1
- package/src/assets/fa/svgs/regular/money-bill-alt.svg +0 -1
- package/src/assets/fa/svgs/regular/moon.svg +0 -1
- package/src/assets/fa/svgs/regular/newspaper.svg +0 -1
- package/src/assets/fa/svgs/regular/object-group.svg +0 -1
- package/src/assets/fa/svgs/regular/object-ungroup.svg +0 -1
- package/src/assets/fa/svgs/regular/paper-plane.svg +0 -1
- package/src/assets/fa/svgs/regular/pause-circle.svg +0 -1
- package/src/assets/fa/svgs/regular/play-circle.svg +0 -1
- package/src/assets/fa/svgs/regular/plus-square.svg +0 -1
- package/src/assets/fa/svgs/regular/question-circle.svg +0 -1
- package/src/assets/fa/svgs/regular/registered.svg +0 -1
- package/src/assets/fa/svgs/regular/sad-cry.svg +0 -1
- package/src/assets/fa/svgs/regular/sad-tear.svg +0 -1
- package/src/assets/fa/svgs/regular/save.svg +0 -1
- package/src/assets/fa/svgs/regular/share-square.svg +0 -1
- package/src/assets/fa/svgs/regular/smile-beam.svg +0 -1
- package/src/assets/fa/svgs/regular/smile-wink.svg +0 -1
- package/src/assets/fa/svgs/regular/smile.svg +0 -1
- package/src/assets/fa/svgs/regular/snowflake.svg +0 -1
- package/src/assets/fa/svgs/regular/square.svg +0 -1
- package/src/assets/fa/svgs/regular/star-half.svg +0 -1
- package/src/assets/fa/svgs/regular/star.svg +0 -1
- package/src/assets/fa/svgs/regular/sticky-note.svg +0 -1
- package/src/assets/fa/svgs/regular/stop-circle.svg +0 -1
- package/src/assets/fa/svgs/regular/sun.svg +0 -1
- package/src/assets/fa/svgs/regular/surprise.svg +0 -1
- package/src/assets/fa/svgs/regular/thumbs-down.svg +0 -1
- package/src/assets/fa/svgs/regular/thumbs-up.svg +0 -1
- package/src/assets/fa/svgs/regular/times-circle.svg +0 -1
- package/src/assets/fa/svgs/regular/tired.svg +0 -1
- package/src/assets/fa/svgs/regular/trash-alt.svg +0 -1
- package/src/assets/fa/svgs/regular/user-circle.svg +0 -1
- package/src/assets/fa/svgs/regular/user.svg +0 -1
- package/src/assets/fa/svgs/regular/window-close.svg +0 -1
- package/src/assets/fa/svgs/regular/window-maximize.svg +0 -1
- package/src/assets/fa/svgs/regular/window-minimize.svg +0 -1
- package/src/assets/fa/svgs/regular/window-restore.svg +0 -1
- package/src/assets/fa/svgs/solid/ad.svg +0 -1
- package/src/assets/fa/svgs/solid/address-book.svg +0 -1
- package/src/assets/fa/svgs/solid/address-card.svg +0 -1
- package/src/assets/fa/svgs/solid/adjust.svg +0 -1
- package/src/assets/fa/svgs/solid/air-freshener.svg +0 -1
- package/src/assets/fa/svgs/solid/align-center.svg +0 -1
- package/src/assets/fa/svgs/solid/align-justify.svg +0 -1
- package/src/assets/fa/svgs/solid/align-left.svg +0 -1
- package/src/assets/fa/svgs/solid/align-right.svg +0 -1
- package/src/assets/fa/svgs/solid/allergies.svg +0 -1
- package/src/assets/fa/svgs/solid/ambulance.svg +0 -1
- package/src/assets/fa/svgs/solid/american-sign-language-interpreting.svg +0 -1
- package/src/assets/fa/svgs/solid/anchor.svg +0 -1
- package/src/assets/fa/svgs/solid/angle-double-down.svg +0 -1
- package/src/assets/fa/svgs/solid/angle-double-left.svg +0 -1
- package/src/assets/fa/svgs/solid/angle-double-right.svg +0 -1
- package/src/assets/fa/svgs/solid/angle-double-up.svg +0 -1
- package/src/assets/fa/svgs/solid/angle-down.svg +0 -1
- package/src/assets/fa/svgs/solid/angle-left.svg +0 -1
- package/src/assets/fa/svgs/solid/angle-right.svg +0 -1
- package/src/assets/fa/svgs/solid/angle-up.svg +0 -1
- package/src/assets/fa/svgs/solid/angry.svg +0 -1
- package/src/assets/fa/svgs/solid/ankh.svg +0 -1
- package/src/assets/fa/svgs/solid/apple-alt.svg +0 -1
- package/src/assets/fa/svgs/solid/archive.svg +0 -1
- package/src/assets/fa/svgs/solid/archway.svg +0 -1
- package/src/assets/fa/svgs/solid/arrow-alt-circle-down.svg +0 -1
- package/src/assets/fa/svgs/solid/arrow-alt-circle-left.svg +0 -1
- package/src/assets/fa/svgs/solid/arrow-alt-circle-right.svg +0 -1
- package/src/assets/fa/svgs/solid/arrow-alt-circle-up.svg +0 -1
- package/src/assets/fa/svgs/solid/arrow-circle-down.svg +0 -1
- package/src/assets/fa/svgs/solid/arrow-circle-left.svg +0 -1
- package/src/assets/fa/svgs/solid/arrow-circle-right.svg +0 -1
- package/src/assets/fa/svgs/solid/arrow-circle-up.svg +0 -1
- package/src/assets/fa/svgs/solid/arrow-down.svg +0 -1
- package/src/assets/fa/svgs/solid/arrow-left.svg +0 -1
- package/src/assets/fa/svgs/solid/arrow-right.svg +0 -1
- package/src/assets/fa/svgs/solid/arrow-up.svg +0 -1
- package/src/assets/fa/svgs/solid/arrows-alt-h.svg +0 -1
- package/src/assets/fa/svgs/solid/arrows-alt-v.svg +0 -1
- package/src/assets/fa/svgs/solid/arrows-alt.svg +0 -1
- package/src/assets/fa/svgs/solid/assistive-listening-systems.svg +0 -1
- package/src/assets/fa/svgs/solid/asterisk.svg +0 -1
- package/src/assets/fa/svgs/solid/at.svg +0 -1
- package/src/assets/fa/svgs/solid/atlas.svg +0 -1
- package/src/assets/fa/svgs/solid/atom.svg +0 -1
- package/src/assets/fa/svgs/solid/audio-description.svg +0 -1
- package/src/assets/fa/svgs/solid/award.svg +0 -1
- package/src/assets/fa/svgs/solid/baby-carriage.svg +0 -1
- package/src/assets/fa/svgs/solid/baby.svg +0 -1
- package/src/assets/fa/svgs/solid/backspace.svg +0 -1
- package/src/assets/fa/svgs/solid/backward.svg +0 -1
- package/src/assets/fa/svgs/solid/bacon.svg +0 -1
- package/src/assets/fa/svgs/solid/bahai.svg +0 -1
- package/src/assets/fa/svgs/solid/balance-scale-left.svg +0 -1
- package/src/assets/fa/svgs/solid/balance-scale-right.svg +0 -1
- package/src/assets/fa/svgs/solid/balance-scale.svg +0 -1
- package/src/assets/fa/svgs/solid/ban.svg +0 -1
- package/src/assets/fa/svgs/solid/band-aid.svg +0 -1
- package/src/assets/fa/svgs/solid/barcode.svg +0 -1
- package/src/assets/fa/svgs/solid/bars.svg +0 -1
- package/src/assets/fa/svgs/solid/baseball-ball.svg +0 -1
- package/src/assets/fa/svgs/solid/basketball-ball.svg +0 -1
- package/src/assets/fa/svgs/solid/bath.svg +0 -1
- package/src/assets/fa/svgs/solid/battery-empty.svg +0 -1
- package/src/assets/fa/svgs/solid/battery-full.svg +0 -1
- package/src/assets/fa/svgs/solid/battery-half.svg +0 -1
- package/src/assets/fa/svgs/solid/battery-quarter.svg +0 -1
- package/src/assets/fa/svgs/solid/battery-three-quarters.svg +0 -1
- package/src/assets/fa/svgs/solid/bed.svg +0 -1
- package/src/assets/fa/svgs/solid/beer.svg +0 -1
- package/src/assets/fa/svgs/solid/bell-slash.svg +0 -1
- package/src/assets/fa/svgs/solid/bell.svg +0 -1
- package/src/assets/fa/svgs/solid/bezier-curve.svg +0 -1
- package/src/assets/fa/svgs/solid/bible.svg +0 -1
- package/src/assets/fa/svgs/solid/bicycle.svg +0 -1
- package/src/assets/fa/svgs/solid/biking.svg +0 -1
- package/src/assets/fa/svgs/solid/binoculars.svg +0 -1
- package/src/assets/fa/svgs/solid/biohazard.svg +0 -1
- package/src/assets/fa/svgs/solid/birthday-cake.svg +0 -1
- package/src/assets/fa/svgs/solid/blender-phone.svg +0 -1
- package/src/assets/fa/svgs/solid/blender.svg +0 -1
- package/src/assets/fa/svgs/solid/blind.svg +0 -1
- package/src/assets/fa/svgs/solid/blog.svg +0 -1
- package/src/assets/fa/svgs/solid/bold.svg +0 -1
- package/src/assets/fa/svgs/solid/bolt.svg +0 -1
- package/src/assets/fa/svgs/solid/bomb.svg +0 -1
- package/src/assets/fa/svgs/solid/bone.svg +0 -1
- package/src/assets/fa/svgs/solid/bong.svg +0 -1
- package/src/assets/fa/svgs/solid/book-dead.svg +0 -1
- package/src/assets/fa/svgs/solid/book-medical.svg +0 -1
- package/src/assets/fa/svgs/solid/book-open.svg +0 -1
- package/src/assets/fa/svgs/solid/book-reader.svg +0 -1
- package/src/assets/fa/svgs/solid/book.svg +0 -1
- package/src/assets/fa/svgs/solid/bookmark.svg +0 -1
- package/src/assets/fa/svgs/solid/border-all.svg +0 -1
- package/src/assets/fa/svgs/solid/border-none.svg +0 -1
- package/src/assets/fa/svgs/solid/border-style.svg +0 -1
- package/src/assets/fa/svgs/solid/bowling-ball.svg +0 -1
- package/src/assets/fa/svgs/solid/box-open.svg +0 -1
- package/src/assets/fa/svgs/solid/box-tissue.svg +0 -1
- package/src/assets/fa/svgs/solid/box.svg +0 -1
- package/src/assets/fa/svgs/solid/boxes.svg +0 -1
- package/src/assets/fa/svgs/solid/braille.svg +0 -1
- package/src/assets/fa/svgs/solid/brain.svg +0 -1
- package/src/assets/fa/svgs/solid/bread-slice.svg +0 -1
- package/src/assets/fa/svgs/solid/briefcase-medical.svg +0 -1
- package/src/assets/fa/svgs/solid/briefcase.svg +0 -1
- package/src/assets/fa/svgs/solid/broadcast-tower.svg +0 -1
- package/src/assets/fa/svgs/solid/broom.svg +0 -1
- package/src/assets/fa/svgs/solid/brush.svg +0 -1
- package/src/assets/fa/svgs/solid/bug.svg +0 -1
- package/src/assets/fa/svgs/solid/building.svg +0 -1
- package/src/assets/fa/svgs/solid/bullhorn.svg +0 -1
- package/src/assets/fa/svgs/solid/bullseye.svg +0 -1
- package/src/assets/fa/svgs/solid/burn.svg +0 -1
- package/src/assets/fa/svgs/solid/bus-alt.svg +0 -1
- package/src/assets/fa/svgs/solid/bus.svg +0 -1
- package/src/assets/fa/svgs/solid/business-time.svg +0 -1
- package/src/assets/fa/svgs/solid/calculator.svg +0 -1
- package/src/assets/fa/svgs/solid/calendar-alt.svg +0 -1
- package/src/assets/fa/svgs/solid/calendar-check.svg +0 -1
- package/src/assets/fa/svgs/solid/calendar-day.svg +0 -1
- package/src/assets/fa/svgs/solid/calendar-minus.svg +0 -1
- package/src/assets/fa/svgs/solid/calendar-plus.svg +0 -1
- package/src/assets/fa/svgs/solid/calendar-times.svg +0 -1
- package/src/assets/fa/svgs/solid/calendar-week.svg +0 -1
- package/src/assets/fa/svgs/solid/calendar.svg +0 -1
- package/src/assets/fa/svgs/solid/camera-retro.svg +0 -1
- package/src/assets/fa/svgs/solid/camera.svg +0 -1
- package/src/assets/fa/svgs/solid/campground.svg +0 -1
- package/src/assets/fa/svgs/solid/candy-cane.svg +0 -1
- package/src/assets/fa/svgs/solid/cannabis.svg +0 -1
- package/src/assets/fa/svgs/solid/capsules.svg +0 -1
- package/src/assets/fa/svgs/solid/car-alt.svg +0 -1
- package/src/assets/fa/svgs/solid/car-battery.svg +0 -1
- package/src/assets/fa/svgs/solid/car-crash.svg +0 -1
- package/src/assets/fa/svgs/solid/car-side.svg +0 -1
- package/src/assets/fa/svgs/solid/car.svg +0 -1
- package/src/assets/fa/svgs/solid/caravan.svg +0 -1
- package/src/assets/fa/svgs/solid/caret-down.svg +0 -1
- package/src/assets/fa/svgs/solid/caret-left.svg +0 -1
- package/src/assets/fa/svgs/solid/caret-right.svg +0 -1
- package/src/assets/fa/svgs/solid/caret-square-down.svg +0 -1
- package/src/assets/fa/svgs/solid/caret-square-left.svg +0 -1
- package/src/assets/fa/svgs/solid/caret-square-right.svg +0 -1
- package/src/assets/fa/svgs/solid/caret-square-up.svg +0 -1
- package/src/assets/fa/svgs/solid/caret-up.svg +0 -1
- package/src/assets/fa/svgs/solid/carrot.svg +0 -1
- package/src/assets/fa/svgs/solid/cart-arrow-down.svg +0 -1
- package/src/assets/fa/svgs/solid/cart-plus.svg +0 -1
- package/src/assets/fa/svgs/solid/cash-register.svg +0 -1
- package/src/assets/fa/svgs/solid/cat.svg +0 -1
- package/src/assets/fa/svgs/solid/certificate.svg +0 -1
- package/src/assets/fa/svgs/solid/chair.svg +0 -1
- package/src/assets/fa/svgs/solid/chalkboard-teacher.svg +0 -1
- package/src/assets/fa/svgs/solid/chalkboard.svg +0 -1
- package/src/assets/fa/svgs/solid/charging-station.svg +0 -1
- package/src/assets/fa/svgs/solid/chart-area.svg +0 -1
- package/src/assets/fa/svgs/solid/chart-bar.svg +0 -1
- package/src/assets/fa/svgs/solid/chart-line.svg +0 -1
- package/src/assets/fa/svgs/solid/chart-pie.svg +0 -1
- package/src/assets/fa/svgs/solid/check-circle.svg +0 -1
- package/src/assets/fa/svgs/solid/check-double.svg +0 -1
- package/src/assets/fa/svgs/solid/check-square.svg +0 -1
- package/src/assets/fa/svgs/solid/check.svg +0 -1
- package/src/assets/fa/svgs/solid/cheese.svg +0 -1
- package/src/assets/fa/svgs/solid/chess-bishop.svg +0 -1
- package/src/assets/fa/svgs/solid/chess-board.svg +0 -1
- package/src/assets/fa/svgs/solid/chess-king.svg +0 -1
- package/src/assets/fa/svgs/solid/chess-knight.svg +0 -1
- package/src/assets/fa/svgs/solid/chess-pawn.svg +0 -1
- package/src/assets/fa/svgs/solid/chess-queen.svg +0 -1
- package/src/assets/fa/svgs/solid/chess-rook.svg +0 -1
- package/src/assets/fa/svgs/solid/chess.svg +0 -1
- package/src/assets/fa/svgs/solid/chevron-circle-down.svg +0 -1
- package/src/assets/fa/svgs/solid/chevron-circle-left.svg +0 -1
- package/src/assets/fa/svgs/solid/chevron-circle-right.svg +0 -1
- package/src/assets/fa/svgs/solid/chevron-circle-up.svg +0 -1
- package/src/assets/fa/svgs/solid/chevron-down.svg +0 -1
- package/src/assets/fa/svgs/solid/chevron-left.svg +0 -1
- package/src/assets/fa/svgs/solid/chevron-right.svg +0 -1
- package/src/assets/fa/svgs/solid/chevron-up.svg +0 -1
- package/src/assets/fa/svgs/solid/child.svg +0 -1
- package/src/assets/fa/svgs/solid/church.svg +0 -1
- package/src/assets/fa/svgs/solid/circle-notch.svg +0 -1
- package/src/assets/fa/svgs/solid/circle.svg +0 -1
- package/src/assets/fa/svgs/solid/city.svg +0 -1
- package/src/assets/fa/svgs/solid/clinic-medical.svg +0 -1
- package/src/assets/fa/svgs/solid/clipboard-check.svg +0 -1
- package/src/assets/fa/svgs/solid/clipboard-list.svg +0 -1
- package/src/assets/fa/svgs/solid/clipboard.svg +0 -1
- package/src/assets/fa/svgs/solid/clock.svg +0 -1
- package/src/assets/fa/svgs/solid/clone.svg +0 -1
- package/src/assets/fa/svgs/solid/closed-captioning.svg +0 -1
- package/src/assets/fa/svgs/solid/cloud-download-alt.svg +0 -1
- package/src/assets/fa/svgs/solid/cloud-meatball.svg +0 -1
- package/src/assets/fa/svgs/solid/cloud-moon-rain.svg +0 -1
- package/src/assets/fa/svgs/solid/cloud-moon.svg +0 -1
- package/src/assets/fa/svgs/solid/cloud-rain.svg +0 -1
- package/src/assets/fa/svgs/solid/cloud-showers-heavy.svg +0 -1
- package/src/assets/fa/svgs/solid/cloud-sun-rain.svg +0 -1
- package/src/assets/fa/svgs/solid/cloud-sun.svg +0 -1
- package/src/assets/fa/svgs/solid/cloud-upload-alt.svg +0 -1
- package/src/assets/fa/svgs/solid/cloud.svg +0 -1
- package/src/assets/fa/svgs/solid/cocktail.svg +0 -1
- package/src/assets/fa/svgs/solid/code-branch.svg +0 -1
- package/src/assets/fa/svgs/solid/code.svg +0 -1
- package/src/assets/fa/svgs/solid/coffee.svg +0 -1
- package/src/assets/fa/svgs/solid/cog.svg +0 -1
- package/src/assets/fa/svgs/solid/cogs.svg +0 -1
- package/src/assets/fa/svgs/solid/coins.svg +0 -1
- package/src/assets/fa/svgs/solid/columns.svg +0 -1
- package/src/assets/fa/svgs/solid/comment-alt.svg +0 -1
- package/src/assets/fa/svgs/solid/comment-dollar.svg +0 -1
- package/src/assets/fa/svgs/solid/comment-dots.svg +0 -1
- package/src/assets/fa/svgs/solid/comment-medical.svg +0 -1
- package/src/assets/fa/svgs/solid/comment-slash.svg +0 -1
- package/src/assets/fa/svgs/solid/comment.svg +0 -1
- package/src/assets/fa/svgs/solid/comments-dollar.svg +0 -1
- package/src/assets/fa/svgs/solid/comments.svg +0 -1
- package/src/assets/fa/svgs/solid/compact-disc.svg +0 -1
- package/src/assets/fa/svgs/solid/compass.svg +0 -1
- package/src/assets/fa/svgs/solid/compress-alt.svg +0 -1
- package/src/assets/fa/svgs/solid/compress-arrows-alt.svg +0 -1
- package/src/assets/fa/svgs/solid/compress.svg +0 -1
- package/src/assets/fa/svgs/solid/concierge-bell.svg +0 -1
- package/src/assets/fa/svgs/solid/cookie-bite.svg +0 -1
- package/src/assets/fa/svgs/solid/cookie.svg +0 -1
- package/src/assets/fa/svgs/solid/copy.svg +0 -1
- package/src/assets/fa/svgs/solid/copyright.svg +0 -1
- package/src/assets/fa/svgs/solid/couch.svg +0 -1
- package/src/assets/fa/svgs/solid/credit-card.svg +0 -1
- package/src/assets/fa/svgs/solid/crop-alt.svg +0 -1
- package/src/assets/fa/svgs/solid/crop.svg +0 -1
- package/src/assets/fa/svgs/solid/cross.svg +0 -1
- package/src/assets/fa/svgs/solid/crosshairs.svg +0 -1
- package/src/assets/fa/svgs/solid/crow.svg +0 -1
- package/src/assets/fa/svgs/solid/crown.svg +0 -1
- package/src/assets/fa/svgs/solid/crutch.svg +0 -1
- package/src/assets/fa/svgs/solid/cube.svg +0 -1
- package/src/assets/fa/svgs/solid/cubes.svg +0 -1
- package/src/assets/fa/svgs/solid/cut.svg +0 -1
- package/src/assets/fa/svgs/solid/database.svg +0 -1
- package/src/assets/fa/svgs/solid/deaf.svg +0 -1
- package/src/assets/fa/svgs/solid/democrat.svg +0 -1
- package/src/assets/fa/svgs/solid/desktop.svg +0 -1
- package/src/assets/fa/svgs/solid/dharmachakra.svg +0 -1
- package/src/assets/fa/svgs/solid/diagnoses.svg +0 -1
- package/src/assets/fa/svgs/solid/dice-d20.svg +0 -1
- package/src/assets/fa/svgs/solid/dice-d6.svg +0 -1
- package/src/assets/fa/svgs/solid/dice-five.svg +0 -1
- package/src/assets/fa/svgs/solid/dice-four.svg +0 -1
- package/src/assets/fa/svgs/solid/dice-one.svg +0 -1
- package/src/assets/fa/svgs/solid/dice-six.svg +0 -1
- package/src/assets/fa/svgs/solid/dice-three.svg +0 -1
- package/src/assets/fa/svgs/solid/dice-two.svg +0 -1
- package/src/assets/fa/svgs/solid/dice.svg +0 -1
- package/src/assets/fa/svgs/solid/digital-tachograph.svg +0 -1
- package/src/assets/fa/svgs/solid/directions.svg +0 -1
- package/src/assets/fa/svgs/solid/disease.svg +0 -1
- package/src/assets/fa/svgs/solid/divide.svg +0 -1
- package/src/assets/fa/svgs/solid/dizzy.svg +0 -1
- package/src/assets/fa/svgs/solid/dna.svg +0 -1
- package/src/assets/fa/svgs/solid/dog.svg +0 -1
- package/src/assets/fa/svgs/solid/dollar-sign.svg +0 -1
- package/src/assets/fa/svgs/solid/dolly-flatbed.svg +0 -1
- package/src/assets/fa/svgs/solid/dolly.svg +0 -1
- package/src/assets/fa/svgs/solid/donate.svg +0 -1
- package/src/assets/fa/svgs/solid/door-closed.svg +0 -1
- package/src/assets/fa/svgs/solid/door-open.svg +0 -1
- package/src/assets/fa/svgs/solid/dot-circle.svg +0 -1
- package/src/assets/fa/svgs/solid/dove.svg +0 -1
- package/src/assets/fa/svgs/solid/download.svg +0 -1
- package/src/assets/fa/svgs/solid/drafting-compass.svg +0 -1
- package/src/assets/fa/svgs/solid/dragon.svg +0 -1
- package/src/assets/fa/svgs/solid/draw-polygon.svg +0 -1
- package/src/assets/fa/svgs/solid/drum-steelpan.svg +0 -1
- package/src/assets/fa/svgs/solid/drum.svg +0 -1
- package/src/assets/fa/svgs/solid/drumstick-bite.svg +0 -1
- package/src/assets/fa/svgs/solid/dumbbell.svg +0 -1
- package/src/assets/fa/svgs/solid/dumpster-fire.svg +0 -1
- package/src/assets/fa/svgs/solid/dumpster.svg +0 -1
- package/src/assets/fa/svgs/solid/dungeon.svg +0 -1
- package/src/assets/fa/svgs/solid/edit.svg +0 -1
- package/src/assets/fa/svgs/solid/egg.svg +0 -1
- package/src/assets/fa/svgs/solid/eject.svg +0 -1
- package/src/assets/fa/svgs/solid/ellipsis-h.svg +0 -1
- package/src/assets/fa/svgs/solid/ellipsis-v.svg +0 -1
- package/src/assets/fa/svgs/solid/envelope-open-text.svg +0 -1
- package/src/assets/fa/svgs/solid/envelope-open.svg +0 -1
- package/src/assets/fa/svgs/solid/envelope-square.svg +0 -1
- package/src/assets/fa/svgs/solid/envelope.svg +0 -1
- package/src/assets/fa/svgs/solid/equals.svg +0 -1
- package/src/assets/fa/svgs/solid/eraser.svg +0 -1
- package/src/assets/fa/svgs/solid/ethernet.svg +0 -1
- package/src/assets/fa/svgs/solid/euro-sign.svg +0 -1
- package/src/assets/fa/svgs/solid/exchange-alt.svg +0 -1
- package/src/assets/fa/svgs/solid/exclamation-circle.svg +0 -1
- package/src/assets/fa/svgs/solid/exclamation-triangle.svg +0 -1
- package/src/assets/fa/svgs/solid/exclamation.svg +0 -1
- package/src/assets/fa/svgs/solid/expand-alt.svg +0 -1
- package/src/assets/fa/svgs/solid/expand-arrows-alt.svg +0 -1
- package/src/assets/fa/svgs/solid/expand.svg +0 -1
- package/src/assets/fa/svgs/solid/external-link-alt.svg +0 -1
- package/src/assets/fa/svgs/solid/external-link-square-alt.svg +0 -1
- package/src/assets/fa/svgs/solid/eye-dropper.svg +0 -1
- package/src/assets/fa/svgs/solid/eye-slash.svg +0 -1
- package/src/assets/fa/svgs/solid/eye.svg +0 -1
- package/src/assets/fa/svgs/solid/fan.svg +0 -1
- package/src/assets/fa/svgs/solid/fast-backward.svg +0 -1
- package/src/assets/fa/svgs/solid/fast-forward.svg +0 -1
- package/src/assets/fa/svgs/solid/faucet.svg +0 -1
- package/src/assets/fa/svgs/solid/fax.svg +0 -1
- package/src/assets/fa/svgs/solid/feather-alt.svg +0 -1
- package/src/assets/fa/svgs/solid/feather.svg +0 -1
- package/src/assets/fa/svgs/solid/female.svg +0 -1
- package/src/assets/fa/svgs/solid/fighter-jet.svg +0 -1
- package/src/assets/fa/svgs/solid/file-alt.svg +0 -1
- package/src/assets/fa/svgs/solid/file-archive.svg +0 -1
- package/src/assets/fa/svgs/solid/file-audio.svg +0 -1
- package/src/assets/fa/svgs/solid/file-code.svg +0 -1
- package/src/assets/fa/svgs/solid/file-contract.svg +0 -1
- package/src/assets/fa/svgs/solid/file-csv.svg +0 -1
- package/src/assets/fa/svgs/solid/file-download.svg +0 -1
- package/src/assets/fa/svgs/solid/file-excel.svg +0 -1
- package/src/assets/fa/svgs/solid/file-export.svg +0 -1
- package/src/assets/fa/svgs/solid/file-image.svg +0 -1
- package/src/assets/fa/svgs/solid/file-import.svg +0 -1
- package/src/assets/fa/svgs/solid/file-invoice-dollar.svg +0 -1
- package/src/assets/fa/svgs/solid/file-invoice.svg +0 -1
- package/src/assets/fa/svgs/solid/file-medical-alt.svg +0 -1
- package/src/assets/fa/svgs/solid/file-medical.svg +0 -1
- package/src/assets/fa/svgs/solid/file-pdf.svg +0 -1
- package/src/assets/fa/svgs/solid/file-powerpoint.svg +0 -1
- package/src/assets/fa/svgs/solid/file-prescription.svg +0 -1
- package/src/assets/fa/svgs/solid/file-signature.svg +0 -1
- package/src/assets/fa/svgs/solid/file-upload.svg +0 -1
- package/src/assets/fa/svgs/solid/file-video.svg +0 -1
- package/src/assets/fa/svgs/solid/file-word.svg +0 -1
- package/src/assets/fa/svgs/solid/file.svg +0 -1
- package/src/assets/fa/svgs/solid/fill-drip.svg +0 -1
- package/src/assets/fa/svgs/solid/fill.svg +0 -1
- package/src/assets/fa/svgs/solid/film.svg +0 -1
- package/src/assets/fa/svgs/solid/filter.svg +0 -1
- package/src/assets/fa/svgs/solid/fingerprint.svg +0 -1
- package/src/assets/fa/svgs/solid/fire-alt.svg +0 -1
- package/src/assets/fa/svgs/solid/fire-extinguisher.svg +0 -1
- package/src/assets/fa/svgs/solid/fire.svg +0 -1
- package/src/assets/fa/svgs/solid/first-aid.svg +0 -1
- package/src/assets/fa/svgs/solid/fish.svg +0 -1
- package/src/assets/fa/svgs/solid/fist-raised.svg +0 -1
- package/src/assets/fa/svgs/solid/flag-checkered.svg +0 -1
- package/src/assets/fa/svgs/solid/flag-usa.svg +0 -1
- package/src/assets/fa/svgs/solid/flag.svg +0 -1
- package/src/assets/fa/svgs/solid/flask.svg +0 -1
- package/src/assets/fa/svgs/solid/flushed.svg +0 -1
- package/src/assets/fa/svgs/solid/folder-minus.svg +0 -1
- package/src/assets/fa/svgs/solid/folder-open.svg +0 -1
- package/src/assets/fa/svgs/solid/folder-plus.svg +0 -1
- package/src/assets/fa/svgs/solid/folder.svg +0 -1
- package/src/assets/fa/svgs/solid/font-awesome-logo-full.svg +0 -1
- package/src/assets/fa/svgs/solid/font.svg +0 -1
- package/src/assets/fa/svgs/solid/football-ball.svg +0 -1
- package/src/assets/fa/svgs/solid/forward.svg +0 -1
- package/src/assets/fa/svgs/solid/frog.svg +0 -1
- package/src/assets/fa/svgs/solid/frown-open.svg +0 -1
- package/src/assets/fa/svgs/solid/frown.svg +0 -1
- package/src/assets/fa/svgs/solid/funnel-dollar.svg +0 -1
- package/src/assets/fa/svgs/solid/futbol.svg +0 -1
- package/src/assets/fa/svgs/solid/gamepad.svg +0 -1
- package/src/assets/fa/svgs/solid/gas-pump.svg +0 -1
- package/src/assets/fa/svgs/solid/gavel.svg +0 -1
- package/src/assets/fa/svgs/solid/gem.svg +0 -1
- package/src/assets/fa/svgs/solid/genderless.svg +0 -1
- package/src/assets/fa/svgs/solid/ghost.svg +0 -1
- package/src/assets/fa/svgs/solid/gift.svg +0 -1
- package/src/assets/fa/svgs/solid/gifts.svg +0 -1
- package/src/assets/fa/svgs/solid/glass-cheers.svg +0 -1
- package/src/assets/fa/svgs/solid/glass-martini-alt.svg +0 -1
- package/src/assets/fa/svgs/solid/glass-martini.svg +0 -1
- package/src/assets/fa/svgs/solid/glass-whiskey.svg +0 -1
- package/src/assets/fa/svgs/solid/glasses.svg +0 -1
- package/src/assets/fa/svgs/solid/globe-africa.svg +0 -1
- package/src/assets/fa/svgs/solid/globe-americas.svg +0 -1
- package/src/assets/fa/svgs/solid/globe-asia.svg +0 -1
- package/src/assets/fa/svgs/solid/globe-europe.svg +0 -1
- package/src/assets/fa/svgs/solid/globe.svg +0 -1
- package/src/assets/fa/svgs/solid/golf-ball.svg +0 -1
- package/src/assets/fa/svgs/solid/gopuram.svg +0 -1
- package/src/assets/fa/svgs/solid/graduation-cap.svg +0 -1
- package/src/assets/fa/svgs/solid/greater-than-equal.svg +0 -1
- package/src/assets/fa/svgs/solid/greater-than.svg +0 -1
- package/src/assets/fa/svgs/solid/grimace.svg +0 -1
- package/src/assets/fa/svgs/solid/grin-alt.svg +0 -1
- package/src/assets/fa/svgs/solid/grin-beam-sweat.svg +0 -1
- package/src/assets/fa/svgs/solid/grin-beam.svg +0 -1
- package/src/assets/fa/svgs/solid/grin-hearts.svg +0 -1
- package/src/assets/fa/svgs/solid/grin-squint-tears.svg +0 -1
- package/src/assets/fa/svgs/solid/grin-squint.svg +0 -1
- package/src/assets/fa/svgs/solid/grin-stars.svg +0 -1
- package/src/assets/fa/svgs/solid/grin-tears.svg +0 -1
- package/src/assets/fa/svgs/solid/grin-tongue-squint.svg +0 -1
- package/src/assets/fa/svgs/solid/grin-tongue-wink.svg +0 -1
- package/src/assets/fa/svgs/solid/grin-tongue.svg +0 -1
- package/src/assets/fa/svgs/solid/grin-wink.svg +0 -1
- package/src/assets/fa/svgs/solid/grin.svg +0 -1
- package/src/assets/fa/svgs/solid/grip-horizontal.svg +0 -1
- package/src/assets/fa/svgs/solid/grip-lines-vertical.svg +0 -1
- package/src/assets/fa/svgs/solid/grip-lines.svg +0 -1
- package/src/assets/fa/svgs/solid/grip-vertical.svg +0 -1
- package/src/assets/fa/svgs/solid/guitar.svg +0 -1
- package/src/assets/fa/svgs/solid/h-square.svg +0 -1
- package/src/assets/fa/svgs/solid/hamburger.svg +0 -1
- package/src/assets/fa/svgs/solid/hammer.svg +0 -1
- package/src/assets/fa/svgs/solid/hamsa.svg +0 -1
- package/src/assets/fa/svgs/solid/hand-holding-heart.svg +0 -1
- package/src/assets/fa/svgs/solid/hand-holding-medical.svg +0 -1
- package/src/assets/fa/svgs/solid/hand-holding-usd.svg +0 -1
- package/src/assets/fa/svgs/solid/hand-holding-water.svg +0 -1
- package/src/assets/fa/svgs/solid/hand-holding.svg +0 -1
- package/src/assets/fa/svgs/solid/hand-lizard.svg +0 -1
- package/src/assets/fa/svgs/solid/hand-middle-finger.svg +0 -1
- package/src/assets/fa/svgs/solid/hand-paper.svg +0 -1
- package/src/assets/fa/svgs/solid/hand-peace.svg +0 -1
- package/src/assets/fa/svgs/solid/hand-point-down.svg +0 -1
- package/src/assets/fa/svgs/solid/hand-point-left.svg +0 -1
- package/src/assets/fa/svgs/solid/hand-point-right.svg +0 -1
- package/src/assets/fa/svgs/solid/hand-point-up.svg +0 -1
- package/src/assets/fa/svgs/solid/hand-pointer.svg +0 -1
- package/src/assets/fa/svgs/solid/hand-rock.svg +0 -1
- package/src/assets/fa/svgs/solid/hand-scissors.svg +0 -1
- package/src/assets/fa/svgs/solid/hand-sparkles.svg +0 -1
- package/src/assets/fa/svgs/solid/hand-spock.svg +0 -1
- package/src/assets/fa/svgs/solid/hands-helping.svg +0 -1
- package/src/assets/fa/svgs/solid/hands-wash.svg +0 -1
- package/src/assets/fa/svgs/solid/hands.svg +0 -1
- package/src/assets/fa/svgs/solid/handshake-alt-slash.svg +0 -1
- package/src/assets/fa/svgs/solid/handshake-slash.svg +0 -1
- package/src/assets/fa/svgs/solid/handshake.svg +0 -1
- package/src/assets/fa/svgs/solid/hanukiah.svg +0 -1
- package/src/assets/fa/svgs/solid/hard-hat.svg +0 -1
- package/src/assets/fa/svgs/solid/hashtag.svg +0 -1
- package/src/assets/fa/svgs/solid/hat-cowboy-side.svg +0 -1
- package/src/assets/fa/svgs/solid/hat-cowboy.svg +0 -1
- package/src/assets/fa/svgs/solid/hat-wizard.svg +0 -1
- package/src/assets/fa/svgs/solid/hdd.svg +0 -1
- package/src/assets/fa/svgs/solid/head-side-cough-slash.svg +0 -1
- package/src/assets/fa/svgs/solid/head-side-cough.svg +0 -1
- package/src/assets/fa/svgs/solid/head-side-mask.svg +0 -1
- package/src/assets/fa/svgs/solid/head-side-virus.svg +0 -1
- package/src/assets/fa/svgs/solid/heading.svg +0 -1
- package/src/assets/fa/svgs/solid/headphones-alt.svg +0 -1
- package/src/assets/fa/svgs/solid/headphones.svg +0 -1
- package/src/assets/fa/svgs/solid/headset.svg +0 -1
- package/src/assets/fa/svgs/solid/heart-broken.svg +0 -1
- package/src/assets/fa/svgs/solid/heart.svg +0 -1
- package/src/assets/fa/svgs/solid/heartbeat.svg +0 -1
- package/src/assets/fa/svgs/solid/helicopter.svg +0 -1
- package/src/assets/fa/svgs/solid/highlighter.svg +0 -1
- package/src/assets/fa/svgs/solid/hiking.svg +0 -1
- package/src/assets/fa/svgs/solid/hippo.svg +0 -1
- package/src/assets/fa/svgs/solid/history.svg +0 -1
- package/src/assets/fa/svgs/solid/hockey-puck.svg +0 -1
- package/src/assets/fa/svgs/solid/holly-berry.svg +0 -1
- package/src/assets/fa/svgs/solid/home.svg +0 -1
- package/src/assets/fa/svgs/solid/horse-head.svg +0 -1
- package/src/assets/fa/svgs/solid/horse.svg +0 -1
- package/src/assets/fa/svgs/solid/hospital-alt.svg +0 -1
- package/src/assets/fa/svgs/solid/hospital-symbol.svg +0 -1
- package/src/assets/fa/svgs/solid/hospital-user.svg +0 -1
- package/src/assets/fa/svgs/solid/hospital.svg +0 -1
- package/src/assets/fa/svgs/solid/hot-tub.svg +0 -1
- package/src/assets/fa/svgs/solid/hotdog.svg +0 -1
- package/src/assets/fa/svgs/solid/hotel.svg +0 -1
- package/src/assets/fa/svgs/solid/hourglass-end.svg +0 -1
- package/src/assets/fa/svgs/solid/hourglass-half.svg +0 -1
- package/src/assets/fa/svgs/solid/hourglass-start.svg +0 -1
- package/src/assets/fa/svgs/solid/hourglass.svg +0 -1
- package/src/assets/fa/svgs/solid/house-damage.svg +0 -1
- package/src/assets/fa/svgs/solid/house-user.svg +0 -1
- package/src/assets/fa/svgs/solid/hryvnia.svg +0 -1
- package/src/assets/fa/svgs/solid/i-cursor.svg +0 -1
- package/src/assets/fa/svgs/solid/ice-cream.svg +0 -1
- package/src/assets/fa/svgs/solid/icicles.svg +0 -1
- package/src/assets/fa/svgs/solid/icons.svg +0 -1
- package/src/assets/fa/svgs/solid/id-badge.svg +0 -1
- package/src/assets/fa/svgs/solid/id-card-alt.svg +0 -1
- package/src/assets/fa/svgs/solid/id-card.svg +0 -1
- package/src/assets/fa/svgs/solid/igloo.svg +0 -1
- package/src/assets/fa/svgs/solid/image.svg +0 -1
- package/src/assets/fa/svgs/solid/images.svg +0 -1
- package/src/assets/fa/svgs/solid/inbox.svg +0 -1
- package/src/assets/fa/svgs/solid/indent.svg +0 -1
- package/src/assets/fa/svgs/solid/industry.svg +0 -1
- package/src/assets/fa/svgs/solid/infinity.svg +0 -1
- package/src/assets/fa/svgs/solid/info-circle.svg +0 -1
- package/src/assets/fa/svgs/solid/info.svg +0 -1
- package/src/assets/fa/svgs/solid/italic.svg +0 -1
- package/src/assets/fa/svgs/solid/jedi.svg +0 -1
- package/src/assets/fa/svgs/solid/joint.svg +0 -1
- package/src/assets/fa/svgs/solid/journal-whills.svg +0 -1
- package/src/assets/fa/svgs/solid/kaaba.svg +0 -1
- package/src/assets/fa/svgs/solid/key.svg +0 -1
- package/src/assets/fa/svgs/solid/keyboard.svg +0 -1
- package/src/assets/fa/svgs/solid/khanda.svg +0 -1
- package/src/assets/fa/svgs/solid/kiss-beam.svg +0 -1
- package/src/assets/fa/svgs/solid/kiss-wink-heart.svg +0 -1
- package/src/assets/fa/svgs/solid/kiss.svg +0 -1
- package/src/assets/fa/svgs/solid/kiwi-bird.svg +0 -1
- package/src/assets/fa/svgs/solid/landmark.svg +0 -1
- package/src/assets/fa/svgs/solid/language.svg +0 -1
- package/src/assets/fa/svgs/solid/laptop-code.svg +0 -1
- package/src/assets/fa/svgs/solid/laptop-house.svg +0 -1
- package/src/assets/fa/svgs/solid/laptop-medical.svg +0 -1
- package/src/assets/fa/svgs/solid/laptop.svg +0 -1
- package/src/assets/fa/svgs/solid/laugh-beam.svg +0 -1
- package/src/assets/fa/svgs/solid/laugh-squint.svg +0 -1
- package/src/assets/fa/svgs/solid/laugh-wink.svg +0 -1
- package/src/assets/fa/svgs/solid/laugh.svg +0 -1
- package/src/assets/fa/svgs/solid/layer-group.svg +0 -1
- package/src/assets/fa/svgs/solid/leaf.svg +0 -1
- package/src/assets/fa/svgs/solid/lemon.svg +0 -1
- package/src/assets/fa/svgs/solid/less-than-equal.svg +0 -1
- package/src/assets/fa/svgs/solid/less-than.svg +0 -1
- package/src/assets/fa/svgs/solid/level-down-alt.svg +0 -1
- package/src/assets/fa/svgs/solid/level-up-alt.svg +0 -1
- package/src/assets/fa/svgs/solid/life-ring.svg +0 -1
- package/src/assets/fa/svgs/solid/lightbulb.svg +0 -1
- package/src/assets/fa/svgs/solid/link.svg +0 -1
- package/src/assets/fa/svgs/solid/lira-sign.svg +0 -1
- package/src/assets/fa/svgs/solid/list-alt.svg +0 -1
- package/src/assets/fa/svgs/solid/list-ol.svg +0 -1
- package/src/assets/fa/svgs/solid/list-ul.svg +0 -1
- package/src/assets/fa/svgs/solid/list.svg +0 -1
- package/src/assets/fa/svgs/solid/location-arrow.svg +0 -1
- package/src/assets/fa/svgs/solid/lock-open.svg +0 -1
- package/src/assets/fa/svgs/solid/lock.svg +0 -1
- package/src/assets/fa/svgs/solid/long-arrow-alt-down.svg +0 -1
- package/src/assets/fa/svgs/solid/long-arrow-alt-left.svg +0 -1
- package/src/assets/fa/svgs/solid/long-arrow-alt-right.svg +0 -1
- package/src/assets/fa/svgs/solid/long-arrow-alt-up.svg +0 -1
- package/src/assets/fa/svgs/solid/low-vision.svg +0 -1
- package/src/assets/fa/svgs/solid/luggage-cart.svg +0 -1
- package/src/assets/fa/svgs/solid/lungs-virus.svg +0 -1
- package/src/assets/fa/svgs/solid/lungs.svg +0 -1
- package/src/assets/fa/svgs/solid/magic.svg +0 -1
- package/src/assets/fa/svgs/solid/magnet.svg +0 -1
- package/src/assets/fa/svgs/solid/mail-bulk.svg +0 -1
- package/src/assets/fa/svgs/solid/male.svg +0 -1
- package/src/assets/fa/svgs/solid/map-marked-alt.svg +0 -1
- package/src/assets/fa/svgs/solid/map-marked.svg +0 -1
- package/src/assets/fa/svgs/solid/map-marker-alt.svg +0 -1
- package/src/assets/fa/svgs/solid/map-marker.svg +0 -1
- package/src/assets/fa/svgs/solid/map-pin.svg +0 -1
- package/src/assets/fa/svgs/solid/map-signs.svg +0 -1
- package/src/assets/fa/svgs/solid/map.svg +0 -1
- package/src/assets/fa/svgs/solid/marker.svg +0 -1
- package/src/assets/fa/svgs/solid/mars-double.svg +0 -1
- package/src/assets/fa/svgs/solid/mars-stroke-h.svg +0 -1
- package/src/assets/fa/svgs/solid/mars-stroke-v.svg +0 -1
- package/src/assets/fa/svgs/solid/mars-stroke.svg +0 -1
- package/src/assets/fa/svgs/solid/mars.svg +0 -1
- package/src/assets/fa/svgs/solid/mask.svg +0 -1
- package/src/assets/fa/svgs/solid/medal.svg +0 -1
- package/src/assets/fa/svgs/solid/medkit.svg +0 -1
- package/src/assets/fa/svgs/solid/meh-blank.svg +0 -1
- package/src/assets/fa/svgs/solid/meh-rolling-eyes.svg +0 -1
- package/src/assets/fa/svgs/solid/meh.svg +0 -1
- package/src/assets/fa/svgs/solid/memory.svg +0 -1
- package/src/assets/fa/svgs/solid/menorah.svg +0 -1
- package/src/assets/fa/svgs/solid/mercury.svg +0 -1
- package/src/assets/fa/svgs/solid/meteor.svg +0 -1
- package/src/assets/fa/svgs/solid/microchip.svg +0 -1
- package/src/assets/fa/svgs/solid/microphone-alt-slash.svg +0 -1
- package/src/assets/fa/svgs/solid/microphone-alt.svg +0 -1
- package/src/assets/fa/svgs/solid/microphone-slash.svg +0 -1
- package/src/assets/fa/svgs/solid/microphone.svg +0 -1
- package/src/assets/fa/svgs/solid/microscope.svg +0 -1
- package/src/assets/fa/svgs/solid/minus-circle.svg +0 -1
- package/src/assets/fa/svgs/solid/minus-square.svg +0 -1
- package/src/assets/fa/svgs/solid/minus.svg +0 -1
- package/src/assets/fa/svgs/solid/mitten.svg +0 -1
- package/src/assets/fa/svgs/solid/mobile-alt.svg +0 -1
- package/src/assets/fa/svgs/solid/mobile.svg +0 -1
- package/src/assets/fa/svgs/solid/money-bill-alt.svg +0 -1
- package/src/assets/fa/svgs/solid/money-bill-wave-alt.svg +0 -1
- package/src/assets/fa/svgs/solid/money-bill-wave.svg +0 -1
- package/src/assets/fa/svgs/solid/money-bill.svg +0 -1
- package/src/assets/fa/svgs/solid/money-check-alt.svg +0 -1
- package/src/assets/fa/svgs/solid/money-check.svg +0 -1
- package/src/assets/fa/svgs/solid/monument.svg +0 -1
- package/src/assets/fa/svgs/solid/moon.svg +0 -1
- package/src/assets/fa/svgs/solid/mortar-pestle.svg +0 -1
- package/src/assets/fa/svgs/solid/mosque.svg +0 -1
- package/src/assets/fa/svgs/solid/motorcycle.svg +0 -1
- package/src/assets/fa/svgs/solid/mountain.svg +0 -1
- package/src/assets/fa/svgs/solid/mouse-pointer.svg +0 -1
- package/src/assets/fa/svgs/solid/mouse.svg +0 -1
- package/src/assets/fa/svgs/solid/mug-hot.svg +0 -1
- package/src/assets/fa/svgs/solid/music.svg +0 -1
- package/src/assets/fa/svgs/solid/network-wired.svg +0 -1
- package/src/assets/fa/svgs/solid/neuter.svg +0 -1
- package/src/assets/fa/svgs/solid/newspaper.svg +0 -1
- package/src/assets/fa/svgs/solid/not-equal.svg +0 -1
- package/src/assets/fa/svgs/solid/notes-medical.svg +0 -1
- package/src/assets/fa/svgs/solid/object-group.svg +0 -1
- package/src/assets/fa/svgs/solid/object-ungroup.svg +0 -1
- package/src/assets/fa/svgs/solid/oil-can.svg +0 -1
- package/src/assets/fa/svgs/solid/om.svg +0 -1
- package/src/assets/fa/svgs/solid/otter.svg +0 -1
- package/src/assets/fa/svgs/solid/outdent.svg +0 -1
- package/src/assets/fa/svgs/solid/pager.svg +0 -1
- package/src/assets/fa/svgs/solid/paint-brush.svg +0 -1
- package/src/assets/fa/svgs/solid/paint-roller.svg +0 -1
- package/src/assets/fa/svgs/solid/palette.svg +0 -1
- package/src/assets/fa/svgs/solid/pallet.svg +0 -1
- package/src/assets/fa/svgs/solid/paper-plane.svg +0 -1
- package/src/assets/fa/svgs/solid/paperclip.svg +0 -1
- package/src/assets/fa/svgs/solid/parachute-box.svg +0 -1
- package/src/assets/fa/svgs/solid/paragraph.svg +0 -1
- package/src/assets/fa/svgs/solid/parking.svg +0 -1
- package/src/assets/fa/svgs/solid/passport.svg +0 -1
- package/src/assets/fa/svgs/solid/pastafarianism.svg +0 -1
- package/src/assets/fa/svgs/solid/paste.svg +0 -1
- package/src/assets/fa/svgs/solid/pause-circle.svg +0 -1
- package/src/assets/fa/svgs/solid/pause.svg +0 -1
- package/src/assets/fa/svgs/solid/paw.svg +0 -1
- package/src/assets/fa/svgs/solid/peace.svg +0 -1
- package/src/assets/fa/svgs/solid/pen-alt.svg +0 -1
- package/src/assets/fa/svgs/solid/pen-fancy.svg +0 -1
- package/src/assets/fa/svgs/solid/pen-nib.svg +0 -1
- package/src/assets/fa/svgs/solid/pen-square.svg +0 -1
- package/src/assets/fa/svgs/solid/pen.svg +0 -1
- package/src/assets/fa/svgs/solid/pencil-alt.svg +0 -1
- package/src/assets/fa/svgs/solid/pencil-ruler.svg +0 -1
- package/src/assets/fa/svgs/solid/people-arrows.svg +0 -1
- package/src/assets/fa/svgs/solid/people-carry.svg +0 -1
- package/src/assets/fa/svgs/solid/pepper-hot.svg +0 -1
- package/src/assets/fa/svgs/solid/percent.svg +0 -1
- package/src/assets/fa/svgs/solid/percentage.svg +0 -1
- package/src/assets/fa/svgs/solid/person-booth.svg +0 -1
- package/src/assets/fa/svgs/solid/phone-alt.svg +0 -1
- package/src/assets/fa/svgs/solid/phone-slash.svg +0 -1
- package/src/assets/fa/svgs/solid/phone-square-alt.svg +0 -1
- package/src/assets/fa/svgs/solid/phone-square.svg +0 -1
- package/src/assets/fa/svgs/solid/phone-volume.svg +0 -1
- package/src/assets/fa/svgs/solid/phone.svg +0 -1
- package/src/assets/fa/svgs/solid/photo-video.svg +0 -1
- package/src/assets/fa/svgs/solid/piggy-bank.svg +0 -1
- package/src/assets/fa/svgs/solid/pills.svg +0 -1
- package/src/assets/fa/svgs/solid/pizza-slice.svg +0 -1
- package/src/assets/fa/svgs/solid/place-of-worship.svg +0 -1
- package/src/assets/fa/svgs/solid/plane-arrival.svg +0 -1
- package/src/assets/fa/svgs/solid/plane-departure.svg +0 -1
- package/src/assets/fa/svgs/solid/plane-slash.svg +0 -1
- package/src/assets/fa/svgs/solid/plane.svg +0 -1
- package/src/assets/fa/svgs/solid/play-circle.svg +0 -1
- package/src/assets/fa/svgs/solid/play.svg +0 -1
- package/src/assets/fa/svgs/solid/plug.svg +0 -1
- package/src/assets/fa/svgs/solid/plus-circle.svg +0 -1
- package/src/assets/fa/svgs/solid/plus-square.svg +0 -1
- package/src/assets/fa/svgs/solid/plus.svg +0 -1
- package/src/assets/fa/svgs/solid/podcast.svg +0 -1
- package/src/assets/fa/svgs/solid/poll-h.svg +0 -1
- package/src/assets/fa/svgs/solid/poll.svg +0 -1
- package/src/assets/fa/svgs/solid/poo-storm.svg +0 -1
- package/src/assets/fa/svgs/solid/poo.svg +0 -1
- package/src/assets/fa/svgs/solid/poop.svg +0 -1
- package/src/assets/fa/svgs/solid/portrait.svg +0 -1
- package/src/assets/fa/svgs/solid/pound-sign.svg +0 -1
- package/src/assets/fa/svgs/solid/power-off.svg +0 -1
- package/src/assets/fa/svgs/solid/pray.svg +0 -1
- package/src/assets/fa/svgs/solid/praying-hands.svg +0 -1
- package/src/assets/fa/svgs/solid/prescription-bottle-alt.svg +0 -1
- package/src/assets/fa/svgs/solid/prescription-bottle.svg +0 -1
- package/src/assets/fa/svgs/solid/prescription.svg +0 -1
- package/src/assets/fa/svgs/solid/print.svg +0 -1
- package/src/assets/fa/svgs/solid/procedures.svg +0 -1
- package/src/assets/fa/svgs/solid/project-diagram.svg +0 -1
- package/src/assets/fa/svgs/solid/pump-medical.svg +0 -1
- package/src/assets/fa/svgs/solid/pump-soap.svg +0 -1
- package/src/assets/fa/svgs/solid/puzzle-piece.svg +0 -1
- package/src/assets/fa/svgs/solid/qrcode.svg +0 -1
- package/src/assets/fa/svgs/solid/question-circle.svg +0 -1
- package/src/assets/fa/svgs/solid/question.svg +0 -1
- package/src/assets/fa/svgs/solid/quidditch.svg +0 -1
- package/src/assets/fa/svgs/solid/quote-left.svg +0 -1
- package/src/assets/fa/svgs/solid/quote-right.svg +0 -1
- package/src/assets/fa/svgs/solid/quran.svg +0 -1
- package/src/assets/fa/svgs/solid/radiation-alt.svg +0 -1
- package/src/assets/fa/svgs/solid/radiation.svg +0 -1
- package/src/assets/fa/svgs/solid/rainbow.svg +0 -1
- package/src/assets/fa/svgs/solid/random.svg +0 -1
- package/src/assets/fa/svgs/solid/receipt.svg +0 -1
- package/src/assets/fa/svgs/solid/record-vinyl.svg +0 -1
- package/src/assets/fa/svgs/solid/recycle.svg +0 -1
- package/src/assets/fa/svgs/solid/redo-alt.svg +0 -1
- package/src/assets/fa/svgs/solid/redo.svg +0 -1
- package/src/assets/fa/svgs/solid/registered.svg +0 -1
- package/src/assets/fa/svgs/solid/remove-format.svg +0 -1
- package/src/assets/fa/svgs/solid/reply-all.svg +0 -1
- package/src/assets/fa/svgs/solid/reply.svg +0 -1
- package/src/assets/fa/svgs/solid/republican.svg +0 -1
- package/src/assets/fa/svgs/solid/restroom.svg +0 -1
- package/src/assets/fa/svgs/solid/retweet.svg +0 -1
- package/src/assets/fa/svgs/solid/ribbon.svg +0 -1
- package/src/assets/fa/svgs/solid/ring.svg +0 -1
- package/src/assets/fa/svgs/solid/road.svg +0 -1
- package/src/assets/fa/svgs/solid/robot.svg +0 -1
- package/src/assets/fa/svgs/solid/rocket.svg +0 -1
- package/src/assets/fa/svgs/solid/route.svg +0 -1
- package/src/assets/fa/svgs/solid/rss-square.svg +0 -1
- package/src/assets/fa/svgs/solid/rss.svg +0 -1
- package/src/assets/fa/svgs/solid/ruble-sign.svg +0 -1
- package/src/assets/fa/svgs/solid/ruler-combined.svg +0 -1
- package/src/assets/fa/svgs/solid/ruler-horizontal.svg +0 -1
- package/src/assets/fa/svgs/solid/ruler-vertical.svg +0 -1
- package/src/assets/fa/svgs/solid/ruler.svg +0 -1
- package/src/assets/fa/svgs/solid/running.svg +0 -1
- package/src/assets/fa/svgs/solid/rupee-sign.svg +0 -1
- package/src/assets/fa/svgs/solid/sad-cry.svg +0 -1
- package/src/assets/fa/svgs/solid/sad-tear.svg +0 -1
- package/src/assets/fa/svgs/solid/satellite-dish.svg +0 -1
- package/src/assets/fa/svgs/solid/satellite.svg +0 -1
- package/src/assets/fa/svgs/solid/save.svg +0 -1
- package/src/assets/fa/svgs/solid/school.svg +0 -1
- package/src/assets/fa/svgs/solid/screwdriver.svg +0 -1
- package/src/assets/fa/svgs/solid/scroll.svg +0 -1
- package/src/assets/fa/svgs/solid/sd-card.svg +0 -1
- package/src/assets/fa/svgs/solid/search-dollar.svg +0 -1
- package/src/assets/fa/svgs/solid/search-location.svg +0 -1
- package/src/assets/fa/svgs/solid/search-minus.svg +0 -1
- package/src/assets/fa/svgs/solid/search-plus.svg +0 -1
- package/src/assets/fa/svgs/solid/search.svg +0 -1
- package/src/assets/fa/svgs/solid/seedling.svg +0 -1
- package/src/assets/fa/svgs/solid/server.svg +0 -1
- package/src/assets/fa/svgs/solid/shapes.svg +0 -1
- package/src/assets/fa/svgs/solid/share-alt-square.svg +0 -1
- package/src/assets/fa/svgs/solid/share-alt.svg +0 -1
- package/src/assets/fa/svgs/solid/share-square.svg +0 -1
- package/src/assets/fa/svgs/solid/share.svg +0 -1
- package/src/assets/fa/svgs/solid/shekel-sign.svg +0 -1
- package/src/assets/fa/svgs/solid/shield-alt.svg +0 -1
- package/src/assets/fa/svgs/solid/shield-virus.svg +0 -1
- package/src/assets/fa/svgs/solid/ship.svg +0 -1
- package/src/assets/fa/svgs/solid/shipping-fast.svg +0 -1
- package/src/assets/fa/svgs/solid/shoe-prints.svg +0 -1
- package/src/assets/fa/svgs/solid/shopping-bag.svg +0 -1
- package/src/assets/fa/svgs/solid/shopping-basket.svg +0 -1
- package/src/assets/fa/svgs/solid/shopping-cart.svg +0 -1
- package/src/assets/fa/svgs/solid/shower.svg +0 -1
- package/src/assets/fa/svgs/solid/shuttle-van.svg +0 -1
- package/src/assets/fa/svgs/solid/sign-in-alt.svg +0 -1
- package/src/assets/fa/svgs/solid/sign-language.svg +0 -1
- package/src/assets/fa/svgs/solid/sign-out-alt.svg +0 -1
- package/src/assets/fa/svgs/solid/sign.svg +0 -1
- package/src/assets/fa/svgs/solid/signal.svg +0 -1
- package/src/assets/fa/svgs/solid/signature.svg +0 -1
- package/src/assets/fa/svgs/solid/sim-card.svg +0 -1
- package/src/assets/fa/svgs/solid/sitemap.svg +0 -1
- package/src/assets/fa/svgs/solid/skating.svg +0 -1
- package/src/assets/fa/svgs/solid/skiing-nordic.svg +0 -1
- package/src/assets/fa/svgs/solid/skiing.svg +0 -1
- package/src/assets/fa/svgs/solid/skull-crossbones.svg +0 -1
- package/src/assets/fa/svgs/solid/skull.svg +0 -1
- package/src/assets/fa/svgs/solid/slash.svg +0 -1
- package/src/assets/fa/svgs/solid/sleigh.svg +0 -1
- package/src/assets/fa/svgs/solid/sliders-h.svg +0 -1
- package/src/assets/fa/svgs/solid/smile-beam.svg +0 -1
- package/src/assets/fa/svgs/solid/smile-wink.svg +0 -1
- package/src/assets/fa/svgs/solid/smile.svg +0 -1
- package/src/assets/fa/svgs/solid/smog.svg +0 -1
- package/src/assets/fa/svgs/solid/smoking-ban.svg +0 -1
- package/src/assets/fa/svgs/solid/smoking.svg +0 -1
- package/src/assets/fa/svgs/solid/sms.svg +0 -1
- package/src/assets/fa/svgs/solid/snowboarding.svg +0 -1
- package/src/assets/fa/svgs/solid/snowflake.svg +0 -1
- package/src/assets/fa/svgs/solid/snowman.svg +0 -1
- package/src/assets/fa/svgs/solid/snowplow.svg +0 -1
- package/src/assets/fa/svgs/solid/soap.svg +0 -1
- package/src/assets/fa/svgs/solid/socks.svg +0 -1
- package/src/assets/fa/svgs/solid/solar-panel.svg +0 -1
- package/src/assets/fa/svgs/solid/sort-alpha-down-alt.svg +0 -1
- package/src/assets/fa/svgs/solid/sort-alpha-down.svg +0 -1
- package/src/assets/fa/svgs/solid/sort-alpha-up-alt.svg +0 -1
- package/src/assets/fa/svgs/solid/sort-alpha-up.svg +0 -1
- package/src/assets/fa/svgs/solid/sort-amount-down-alt.svg +0 -1
- package/src/assets/fa/svgs/solid/sort-amount-down.svg +0 -1
- package/src/assets/fa/svgs/solid/sort-amount-up-alt.svg +0 -1
- package/src/assets/fa/svgs/solid/sort-amount-up.svg +0 -1
- package/src/assets/fa/svgs/solid/sort-down.svg +0 -1
- package/src/assets/fa/svgs/solid/sort-numeric-down-alt.svg +0 -1
- package/src/assets/fa/svgs/solid/sort-numeric-down.svg +0 -1
- package/src/assets/fa/svgs/solid/sort-numeric-up-alt.svg +0 -1
- package/src/assets/fa/svgs/solid/sort-numeric-up.svg +0 -1
- package/src/assets/fa/svgs/solid/sort-up.svg +0 -1
- package/src/assets/fa/svgs/solid/sort.svg +0 -1
- package/src/assets/fa/svgs/solid/spa.svg +0 -1
- package/src/assets/fa/svgs/solid/space-shuttle.svg +0 -1
- package/src/assets/fa/svgs/solid/spell-check.svg +0 -1
- package/src/assets/fa/svgs/solid/spider.svg +0 -1
- package/src/assets/fa/svgs/solid/spinner.svg +0 -1
- package/src/assets/fa/svgs/solid/splotch.svg +0 -1
- package/src/assets/fa/svgs/solid/spray-can.svg +0 -1
- package/src/assets/fa/svgs/solid/square-full.svg +0 -1
- package/src/assets/fa/svgs/solid/square-root-alt.svg +0 -1
- package/src/assets/fa/svgs/solid/square.svg +0 -1
- package/src/assets/fa/svgs/solid/stamp.svg +0 -1
- package/src/assets/fa/svgs/solid/star-and-crescent.svg +0 -1
- package/src/assets/fa/svgs/solid/star-half-alt.svg +0 -1
- package/src/assets/fa/svgs/solid/star-half.svg +0 -1
- package/src/assets/fa/svgs/solid/star-of-david.svg +0 -1
- package/src/assets/fa/svgs/solid/star-of-life.svg +0 -1
- package/src/assets/fa/svgs/solid/star.svg +0 -1
- package/src/assets/fa/svgs/solid/step-backward.svg +0 -1
- package/src/assets/fa/svgs/solid/step-forward.svg +0 -1
- package/src/assets/fa/svgs/solid/stethoscope.svg +0 -1
- package/src/assets/fa/svgs/solid/sticky-note.svg +0 -1
- package/src/assets/fa/svgs/solid/stop-circle.svg +0 -1
- package/src/assets/fa/svgs/solid/stop.svg +0 -1
- package/src/assets/fa/svgs/solid/stopwatch-20.svg +0 -1
- package/src/assets/fa/svgs/solid/stopwatch.svg +0 -1
- package/src/assets/fa/svgs/solid/store-alt-slash.svg +0 -1
- package/src/assets/fa/svgs/solid/store-alt.svg +0 -1
- package/src/assets/fa/svgs/solid/store-slash.svg +0 -1
- package/src/assets/fa/svgs/solid/store.svg +0 -1
- package/src/assets/fa/svgs/solid/stream.svg +0 -1
- package/src/assets/fa/svgs/solid/street-view.svg +0 -1
- package/src/assets/fa/svgs/solid/strikethrough.svg +0 -1
- package/src/assets/fa/svgs/solid/stroopwafel.svg +0 -1
- package/src/assets/fa/svgs/solid/subscript.svg +0 -1
- package/src/assets/fa/svgs/solid/subway.svg +0 -1
- package/src/assets/fa/svgs/solid/suitcase-rolling.svg +0 -1
- package/src/assets/fa/svgs/solid/suitcase.svg +0 -1
- package/src/assets/fa/svgs/solid/sun.svg +0 -1
- package/src/assets/fa/svgs/solid/superscript.svg +0 -1
- package/src/assets/fa/svgs/solid/surprise.svg +0 -1
- package/src/assets/fa/svgs/solid/swatchbook.svg +0 -1
- package/src/assets/fa/svgs/solid/swimmer.svg +0 -1
- package/src/assets/fa/svgs/solid/swimming-pool.svg +0 -1
- package/src/assets/fa/svgs/solid/synagogue.svg +0 -1
- package/src/assets/fa/svgs/solid/sync-alt.svg +0 -1
- package/src/assets/fa/svgs/solid/sync.svg +0 -1
- package/src/assets/fa/svgs/solid/syringe.svg +0 -1
- package/src/assets/fa/svgs/solid/table-tennis.svg +0 -1
- package/src/assets/fa/svgs/solid/table.svg +0 -1
- package/src/assets/fa/svgs/solid/tablet-alt.svg +0 -1
- package/src/assets/fa/svgs/solid/tablet.svg +0 -1
- package/src/assets/fa/svgs/solid/tablets.svg +0 -1
- package/src/assets/fa/svgs/solid/tachometer-alt.svg +0 -1
- package/src/assets/fa/svgs/solid/tag.svg +0 -1
- package/src/assets/fa/svgs/solid/tags.svg +0 -1
- package/src/assets/fa/svgs/solid/tape.svg +0 -1
- package/src/assets/fa/svgs/solid/tasks.svg +0 -1
- package/src/assets/fa/svgs/solid/taxi.svg +0 -1
- package/src/assets/fa/svgs/solid/teeth-open.svg +0 -1
- package/src/assets/fa/svgs/solid/teeth.svg +0 -1
- package/src/assets/fa/svgs/solid/temperature-high.svg +0 -1
- package/src/assets/fa/svgs/solid/temperature-low.svg +0 -1
- package/src/assets/fa/svgs/solid/tenge.svg +0 -1
- package/src/assets/fa/svgs/solid/terminal.svg +0 -1
- package/src/assets/fa/svgs/solid/text-height.svg +0 -1
- package/src/assets/fa/svgs/solid/text-width.svg +0 -1
- package/src/assets/fa/svgs/solid/th-large.svg +0 -1
- package/src/assets/fa/svgs/solid/th-list.svg +0 -1
- package/src/assets/fa/svgs/solid/th.svg +0 -1
- package/src/assets/fa/svgs/solid/theater-masks.svg +0 -1
- package/src/assets/fa/svgs/solid/thermometer-empty.svg +0 -1
- package/src/assets/fa/svgs/solid/thermometer-full.svg +0 -1
- package/src/assets/fa/svgs/solid/thermometer-half.svg +0 -1
- package/src/assets/fa/svgs/solid/thermometer-quarter.svg +0 -1
- package/src/assets/fa/svgs/solid/thermometer-three-quarters.svg +0 -1
- package/src/assets/fa/svgs/solid/thermometer.svg +0 -1
- package/src/assets/fa/svgs/solid/thumbs-down.svg +0 -1
- package/src/assets/fa/svgs/solid/thumbs-up.svg +0 -1
- package/src/assets/fa/svgs/solid/thumbtack.svg +0 -1
- package/src/assets/fa/svgs/solid/ticket-alt.svg +0 -1
- package/src/assets/fa/svgs/solid/times-circle.svg +0 -1
- package/src/assets/fa/svgs/solid/times.svg +0 -1
- package/src/assets/fa/svgs/solid/tint-slash.svg +0 -1
- package/src/assets/fa/svgs/solid/tint.svg +0 -1
- package/src/assets/fa/svgs/solid/tired.svg +0 -1
- package/src/assets/fa/svgs/solid/toggle-off.svg +0 -1
- package/src/assets/fa/svgs/solid/toggle-on.svg +0 -1
- package/src/assets/fa/svgs/solid/toilet-paper-slash.svg +0 -1
- package/src/assets/fa/svgs/solid/toilet-paper.svg +0 -1
- package/src/assets/fa/svgs/solid/toilet.svg +0 -1
- package/src/assets/fa/svgs/solid/toolbox.svg +0 -1
- package/src/assets/fa/svgs/solid/tools.svg +0 -1
- package/src/assets/fa/svgs/solid/tooth.svg +0 -1
- package/src/assets/fa/svgs/solid/torah.svg +0 -1
- package/src/assets/fa/svgs/solid/torii-gate.svg +0 -1
- package/src/assets/fa/svgs/solid/tractor.svg +0 -1
- package/src/assets/fa/svgs/solid/trademark.svg +0 -1
- package/src/assets/fa/svgs/solid/traffic-light.svg +0 -1
- package/src/assets/fa/svgs/solid/trailer.svg +0 -1
- package/src/assets/fa/svgs/solid/train.svg +0 -1
- package/src/assets/fa/svgs/solid/tram.svg +0 -1
- package/src/assets/fa/svgs/solid/transgender-alt.svg +0 -1
- package/src/assets/fa/svgs/solid/transgender.svg +0 -1
- package/src/assets/fa/svgs/solid/trash-alt.svg +0 -1
- package/src/assets/fa/svgs/solid/trash-restore-alt.svg +0 -1
- package/src/assets/fa/svgs/solid/trash-restore.svg +0 -1
- package/src/assets/fa/svgs/solid/trash.svg +0 -1
- package/src/assets/fa/svgs/solid/tree.svg +0 -1
- package/src/assets/fa/svgs/solid/trophy.svg +0 -1
- package/src/assets/fa/svgs/solid/truck-loading.svg +0 -1
- package/src/assets/fa/svgs/solid/truck-monster.svg +0 -1
- package/src/assets/fa/svgs/solid/truck-moving.svg +0 -1
- package/src/assets/fa/svgs/solid/truck-pickup.svg +0 -1
- package/src/assets/fa/svgs/solid/truck.svg +0 -1
- package/src/assets/fa/svgs/solid/tshirt.svg +0 -1
- package/src/assets/fa/svgs/solid/tty.svg +0 -1
- package/src/assets/fa/svgs/solid/tv.svg +0 -1
- package/src/assets/fa/svgs/solid/umbrella-beach.svg +0 -1
- package/src/assets/fa/svgs/solid/umbrella.svg +0 -1
- package/src/assets/fa/svgs/solid/underline.svg +0 -1
- package/src/assets/fa/svgs/solid/undo-alt.svg +0 -1
- package/src/assets/fa/svgs/solid/undo.svg +0 -1
- package/src/assets/fa/svgs/solid/universal-access.svg +0 -1
- package/src/assets/fa/svgs/solid/university.svg +0 -1
- package/src/assets/fa/svgs/solid/unlink.svg +0 -1
- package/src/assets/fa/svgs/solid/unlock-alt.svg +0 -1
- package/src/assets/fa/svgs/solid/unlock.svg +0 -1
- package/src/assets/fa/svgs/solid/upload.svg +0 -1
- package/src/assets/fa/svgs/solid/user-alt-slash.svg +0 -1
- package/src/assets/fa/svgs/solid/user-alt.svg +0 -1
- package/src/assets/fa/svgs/solid/user-astronaut.svg +0 -1
- package/src/assets/fa/svgs/solid/user-check.svg +0 -1
- package/src/assets/fa/svgs/solid/user-circle.svg +0 -1
- package/src/assets/fa/svgs/solid/user-clock.svg +0 -1
- package/src/assets/fa/svgs/solid/user-cog.svg +0 -1
- package/src/assets/fa/svgs/solid/user-edit.svg +0 -1
- package/src/assets/fa/svgs/solid/user-friends.svg +0 -1
- package/src/assets/fa/svgs/solid/user-graduate.svg +0 -1
- package/src/assets/fa/svgs/solid/user-injured.svg +0 -1
- package/src/assets/fa/svgs/solid/user-lock.svg +0 -1
- package/src/assets/fa/svgs/solid/user-md.svg +0 -1
- package/src/assets/fa/svgs/solid/user-minus.svg +0 -1
- package/src/assets/fa/svgs/solid/user-ninja.svg +0 -1
- package/src/assets/fa/svgs/solid/user-nurse.svg +0 -1
- package/src/assets/fa/svgs/solid/user-plus.svg +0 -1
- package/src/assets/fa/svgs/solid/user-secret.svg +0 -1
- package/src/assets/fa/svgs/solid/user-shield.svg +0 -1
- package/src/assets/fa/svgs/solid/user-slash.svg +0 -1
- package/src/assets/fa/svgs/solid/user-tag.svg +0 -1
- package/src/assets/fa/svgs/solid/user-tie.svg +0 -1
- package/src/assets/fa/svgs/solid/user-times.svg +0 -1
- package/src/assets/fa/svgs/solid/user.svg +0 -1
- package/src/assets/fa/svgs/solid/users-cog.svg +0 -1
- package/src/assets/fa/svgs/solid/users.svg +0 -1
- package/src/assets/fa/svgs/solid/utensil-spoon.svg +0 -1
- package/src/assets/fa/svgs/solid/utensils.svg +0 -1
- package/src/assets/fa/svgs/solid/vector-square.svg +0 -1
- package/src/assets/fa/svgs/solid/venus-double.svg +0 -1
- package/src/assets/fa/svgs/solid/venus-mars.svg +0 -1
- package/src/assets/fa/svgs/solid/venus.svg +0 -1
- package/src/assets/fa/svgs/solid/vial.svg +0 -1
- package/src/assets/fa/svgs/solid/vials.svg +0 -1
- package/src/assets/fa/svgs/solid/video-slash.svg +0 -1
- package/src/assets/fa/svgs/solid/video.svg +0 -1
- package/src/assets/fa/svgs/solid/vihara.svg +0 -1
- package/src/assets/fa/svgs/solid/virus-slash.svg +0 -1
- package/src/assets/fa/svgs/solid/virus.svg +0 -1
- package/src/assets/fa/svgs/solid/viruses.svg +0 -1
- package/src/assets/fa/svgs/solid/voicemail.svg +0 -1
- package/src/assets/fa/svgs/solid/volleyball-ball.svg +0 -1
- package/src/assets/fa/svgs/solid/volume-down.svg +0 -1
- package/src/assets/fa/svgs/solid/volume-mute.svg +0 -1
- package/src/assets/fa/svgs/solid/volume-off.svg +0 -1
- package/src/assets/fa/svgs/solid/volume-up.svg +0 -1
- package/src/assets/fa/svgs/solid/vote-yea.svg +0 -1
- package/src/assets/fa/svgs/solid/vr-cardboard.svg +0 -1
- package/src/assets/fa/svgs/solid/walking.svg +0 -1
- package/src/assets/fa/svgs/solid/wallet.svg +0 -1
- package/src/assets/fa/svgs/solid/warehouse.svg +0 -1
- package/src/assets/fa/svgs/solid/water.svg +0 -1
- package/src/assets/fa/svgs/solid/wave-square.svg +0 -1
- package/src/assets/fa/svgs/solid/weight-hanging.svg +0 -1
- package/src/assets/fa/svgs/solid/weight.svg +0 -1
- package/src/assets/fa/svgs/solid/wheelchair.svg +0 -1
- package/src/assets/fa/svgs/solid/wifi.svg +0 -1
- package/src/assets/fa/svgs/solid/wind.svg +0 -1
- package/src/assets/fa/svgs/solid/window-close.svg +0 -1
- package/src/assets/fa/svgs/solid/window-maximize.svg +0 -1
- package/src/assets/fa/svgs/solid/window-minimize.svg +0 -1
- package/src/assets/fa/svgs/solid/window-restore.svg +0 -1
- package/src/assets/fa/svgs/solid/wine-bottle.svg +0 -1
- package/src/assets/fa/svgs/solid/wine-glass-alt.svg +0 -1
- package/src/assets/fa/svgs/solid/wine-glass.svg +0 -1
- package/src/assets/fa/svgs/solid/won-sign.svg +0 -1
- package/src/assets/fa/svgs/solid/wrench.svg +0 -1
- package/src/assets/fa/svgs/solid/x-ray.svg +0 -1
- package/src/assets/fa/svgs/solid/yen-sign.svg +0 -1
- package/src/assets/fa/svgs/solid/yin-yang.svg +0 -1
- package/src/assets/fa/webfonts/fa-brands-400.eot +0 -0
- package/src/assets/fa/webfonts/fa-brands-400.svg +0 -3570
- package/src/assets/fa/webfonts/fa-brands-400.ttf +0 -0
- package/src/assets/fa/webfonts/fa-brands-400.woff +0 -0
- package/src/assets/fa/webfonts/fa-brands-400.woff2 +0 -0
- package/src/assets/fa/webfonts/fa-regular-400.eot +0 -0
- package/src/assets/fa/webfonts/fa-regular-400.svg +0 -803
- package/src/assets/fa/webfonts/fa-regular-400.ttf +0 -0
- package/src/assets/fa/webfonts/fa-regular-400.woff +0 -0
- package/src/assets/fa/webfonts/fa-regular-400.woff2 +0 -0
- package/src/assets/fa/webfonts/fa-solid-900.eot +0 -0
- package/src/assets/fa/webfonts/fa-solid-900.svg +0 -4938
- package/src/assets/fa/webfonts/fa-solid-900.ttf +0 -0
- package/src/assets/fa/webfonts/fa-solid-900.woff +0 -0
- package/src/assets/fa/webfonts/fa-solid-900.woff2 +0 -0
- package/src/assets/images/eter-logo.png +0 -0
- package/src/assets/images/next.png +0 -0
- package/src/assets/images/pre.png +0 -0
- package/src/assets/loading.gif +0 -0
- package/src/assets/loading.json +0 -1
- package/src/assets/themes/eter.scss +0 -54
- package/src/environments/environment.prod.ts +0 -4
- package/src/environments/environment.ts +0 -18
- package/src/favicon.ico +0 -0
- package/src/index.html +0 -18
- package/src/main.ts +0 -12
- package/src/polyfills.ts +0 -57
- package/src/styles.scss +0 -26
- package/src/test.ts +0 -27
- package/tester.js +0 -1
- package/tsconfig.app.json +0 -14
- package/tsconfig.json +0 -30
- package/tsconfig.spec.json +0 -18
- package/tslint.json +0 -148
|
@@ -1,2172 +0,0 @@
|
|
|
1
|
-
/*!
|
|
2
|
-
* Font Awesome Free 5.13.0 by @fontawesome - https://fontawesome.com
|
|
3
|
-
* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
|
|
4
|
-
*/
|
|
5
|
-
.fa.fa-glass:before {
|
|
6
|
-
content: "\f000"; }
|
|
7
|
-
|
|
8
|
-
.fa.fa-meetup {
|
|
9
|
-
font-family: 'Font Awesome 5 Brands';
|
|
10
|
-
font-weight: 400; }
|
|
11
|
-
|
|
12
|
-
.fa.fa-star-o {
|
|
13
|
-
font-family: 'Font Awesome 5 Free';
|
|
14
|
-
font-weight: 400; }
|
|
15
|
-
|
|
16
|
-
.fa.fa-star-o:before {
|
|
17
|
-
content: "\f005"; }
|
|
18
|
-
|
|
19
|
-
.fa.fa-remove:before {
|
|
20
|
-
content: "\f00d"; }
|
|
21
|
-
|
|
22
|
-
.fa.fa-close:before {
|
|
23
|
-
content: "\f00d"; }
|
|
24
|
-
|
|
25
|
-
.fa.fa-gear:before {
|
|
26
|
-
content: "\f013"; }
|
|
27
|
-
|
|
28
|
-
.fa.fa-trash-o {
|
|
29
|
-
font-family: 'Font Awesome 5 Free';
|
|
30
|
-
font-weight: 400; }
|
|
31
|
-
|
|
32
|
-
.fa.fa-trash-o:before {
|
|
33
|
-
content: "\f2ed"; }
|
|
34
|
-
|
|
35
|
-
.fa.fa-file-o {
|
|
36
|
-
font-family: 'Font Awesome 5 Free';
|
|
37
|
-
font-weight: 400; }
|
|
38
|
-
|
|
39
|
-
.fa.fa-file-o:before {
|
|
40
|
-
content: "\f15b"; }
|
|
41
|
-
|
|
42
|
-
.fa.fa-clock-o {
|
|
43
|
-
font-family: 'Font Awesome 5 Free';
|
|
44
|
-
font-weight: 400; }
|
|
45
|
-
|
|
46
|
-
.fa.fa-clock-o:before {
|
|
47
|
-
content: "\f017"; }
|
|
48
|
-
|
|
49
|
-
.fa.fa-arrow-circle-o-down {
|
|
50
|
-
font-family: 'Font Awesome 5 Free';
|
|
51
|
-
font-weight: 400; }
|
|
52
|
-
|
|
53
|
-
.fa.fa-arrow-circle-o-down:before {
|
|
54
|
-
content: "\f358"; }
|
|
55
|
-
|
|
56
|
-
.fa.fa-arrow-circle-o-up {
|
|
57
|
-
font-family: 'Font Awesome 5 Free';
|
|
58
|
-
font-weight: 400; }
|
|
59
|
-
|
|
60
|
-
.fa.fa-arrow-circle-o-up:before {
|
|
61
|
-
content: "\f35b"; }
|
|
62
|
-
|
|
63
|
-
.fa.fa-play-circle-o {
|
|
64
|
-
font-family: 'Font Awesome 5 Free';
|
|
65
|
-
font-weight: 400; }
|
|
66
|
-
|
|
67
|
-
.fa.fa-play-circle-o:before {
|
|
68
|
-
content: "\f144"; }
|
|
69
|
-
|
|
70
|
-
.fa.fa-repeat:before {
|
|
71
|
-
content: "\f01e"; }
|
|
72
|
-
|
|
73
|
-
.fa.fa-rotate-right:before {
|
|
74
|
-
content: "\f01e"; }
|
|
75
|
-
|
|
76
|
-
.fa.fa-refresh:before {
|
|
77
|
-
content: "\f021"; }
|
|
78
|
-
|
|
79
|
-
.fa.fa-list-alt {
|
|
80
|
-
font-family: 'Font Awesome 5 Free';
|
|
81
|
-
font-weight: 400; }
|
|
82
|
-
|
|
83
|
-
.fa.fa-dedent:before {
|
|
84
|
-
content: "\f03b"; }
|
|
85
|
-
|
|
86
|
-
.fa.fa-video-camera:before {
|
|
87
|
-
content: "\f03d"; }
|
|
88
|
-
|
|
89
|
-
.fa.fa-picture-o {
|
|
90
|
-
font-family: 'Font Awesome 5 Free';
|
|
91
|
-
font-weight: 400; }
|
|
92
|
-
|
|
93
|
-
.fa.fa-picture-o:before {
|
|
94
|
-
content: "\f03e"; }
|
|
95
|
-
|
|
96
|
-
.fa.fa-photo {
|
|
97
|
-
font-family: 'Font Awesome 5 Free';
|
|
98
|
-
font-weight: 400; }
|
|
99
|
-
|
|
100
|
-
.fa.fa-photo:before {
|
|
101
|
-
content: "\f03e"; }
|
|
102
|
-
|
|
103
|
-
.fa.fa-image {
|
|
104
|
-
font-family: 'Font Awesome 5 Free';
|
|
105
|
-
font-weight: 400; }
|
|
106
|
-
|
|
107
|
-
.fa.fa-image:before {
|
|
108
|
-
content: "\f03e"; }
|
|
109
|
-
|
|
110
|
-
.fa.fa-pencil:before {
|
|
111
|
-
content: "\f303"; }
|
|
112
|
-
|
|
113
|
-
.fa.fa-map-marker:before {
|
|
114
|
-
content: "\f3c5"; }
|
|
115
|
-
|
|
116
|
-
.fa.fa-pencil-square-o {
|
|
117
|
-
font-family: 'Font Awesome 5 Free';
|
|
118
|
-
font-weight: 400; }
|
|
119
|
-
|
|
120
|
-
.fa.fa-pencil-square-o:before {
|
|
121
|
-
content: "\f044"; }
|
|
122
|
-
|
|
123
|
-
.fa.fa-share-square-o {
|
|
124
|
-
font-family: 'Font Awesome 5 Free';
|
|
125
|
-
font-weight: 400; }
|
|
126
|
-
|
|
127
|
-
.fa.fa-share-square-o:before {
|
|
128
|
-
content: "\f14d"; }
|
|
129
|
-
|
|
130
|
-
.fa.fa-check-square-o {
|
|
131
|
-
font-family: 'Font Awesome 5 Free';
|
|
132
|
-
font-weight: 400; }
|
|
133
|
-
|
|
134
|
-
.fa.fa-check-square-o:before {
|
|
135
|
-
content: "\f14a"; }
|
|
136
|
-
|
|
137
|
-
.fa.fa-arrows:before {
|
|
138
|
-
content: "\f0b2"; }
|
|
139
|
-
|
|
140
|
-
.fa.fa-times-circle-o {
|
|
141
|
-
font-family: 'Font Awesome 5 Free';
|
|
142
|
-
font-weight: 400; }
|
|
143
|
-
|
|
144
|
-
.fa.fa-times-circle-o:before {
|
|
145
|
-
content: "\f057"; }
|
|
146
|
-
|
|
147
|
-
.fa.fa-check-circle-o {
|
|
148
|
-
font-family: 'Font Awesome 5 Free';
|
|
149
|
-
font-weight: 400; }
|
|
150
|
-
|
|
151
|
-
.fa.fa-check-circle-o:before {
|
|
152
|
-
content: "\f058"; }
|
|
153
|
-
|
|
154
|
-
.fa.fa-mail-forward:before {
|
|
155
|
-
content: "\f064"; }
|
|
156
|
-
|
|
157
|
-
.fa.fa-expand:before {
|
|
158
|
-
content: "\f424"; }
|
|
159
|
-
|
|
160
|
-
.fa.fa-compress:before {
|
|
161
|
-
content: "\f422"; }
|
|
162
|
-
|
|
163
|
-
.fa.fa-eye {
|
|
164
|
-
font-family: 'Font Awesome 5 Free';
|
|
165
|
-
font-weight: 400; }
|
|
166
|
-
|
|
167
|
-
.fa.fa-eye-slash {
|
|
168
|
-
font-family: 'Font Awesome 5 Free';
|
|
169
|
-
font-weight: 400; }
|
|
170
|
-
|
|
171
|
-
.fa.fa-warning:before {
|
|
172
|
-
content: "\f071"; }
|
|
173
|
-
|
|
174
|
-
.fa.fa-calendar:before {
|
|
175
|
-
content: "\f073"; }
|
|
176
|
-
|
|
177
|
-
.fa.fa-arrows-v:before {
|
|
178
|
-
content: "\f338"; }
|
|
179
|
-
|
|
180
|
-
.fa.fa-arrows-h:before {
|
|
181
|
-
content: "\f337"; }
|
|
182
|
-
|
|
183
|
-
.fa.fa-bar-chart {
|
|
184
|
-
font-family: 'Font Awesome 5 Free';
|
|
185
|
-
font-weight: 400; }
|
|
186
|
-
|
|
187
|
-
.fa.fa-bar-chart:before {
|
|
188
|
-
content: "\f080"; }
|
|
189
|
-
|
|
190
|
-
.fa.fa-bar-chart-o {
|
|
191
|
-
font-family: 'Font Awesome 5 Free';
|
|
192
|
-
font-weight: 400; }
|
|
193
|
-
|
|
194
|
-
.fa.fa-bar-chart-o:before {
|
|
195
|
-
content: "\f080"; }
|
|
196
|
-
|
|
197
|
-
.fa.fa-twitter-square {
|
|
198
|
-
font-family: 'Font Awesome 5 Brands';
|
|
199
|
-
font-weight: 400; }
|
|
200
|
-
|
|
201
|
-
.fa.fa-facebook-square {
|
|
202
|
-
font-family: 'Font Awesome 5 Brands';
|
|
203
|
-
font-weight: 400; }
|
|
204
|
-
|
|
205
|
-
.fa.fa-gears:before {
|
|
206
|
-
content: "\f085"; }
|
|
207
|
-
|
|
208
|
-
.fa.fa-thumbs-o-up {
|
|
209
|
-
font-family: 'Font Awesome 5 Free';
|
|
210
|
-
font-weight: 400; }
|
|
211
|
-
|
|
212
|
-
.fa.fa-thumbs-o-up:before {
|
|
213
|
-
content: "\f164"; }
|
|
214
|
-
|
|
215
|
-
.fa.fa-thumbs-o-down {
|
|
216
|
-
font-family: 'Font Awesome 5 Free';
|
|
217
|
-
font-weight: 400; }
|
|
218
|
-
|
|
219
|
-
.fa.fa-thumbs-o-down:before {
|
|
220
|
-
content: "\f165"; }
|
|
221
|
-
|
|
222
|
-
.fa.fa-heart-o {
|
|
223
|
-
font-family: 'Font Awesome 5 Free';
|
|
224
|
-
font-weight: 400; }
|
|
225
|
-
|
|
226
|
-
.fa.fa-heart-o:before {
|
|
227
|
-
content: "\f004"; }
|
|
228
|
-
|
|
229
|
-
.fa.fa-sign-out:before {
|
|
230
|
-
content: "\f2f5"; }
|
|
231
|
-
|
|
232
|
-
.fa.fa-linkedin-square {
|
|
233
|
-
font-family: 'Font Awesome 5 Brands';
|
|
234
|
-
font-weight: 400; }
|
|
235
|
-
|
|
236
|
-
.fa.fa-linkedin-square:before {
|
|
237
|
-
content: "\f08c"; }
|
|
238
|
-
|
|
239
|
-
.fa.fa-thumb-tack:before {
|
|
240
|
-
content: "\f08d"; }
|
|
241
|
-
|
|
242
|
-
.fa.fa-external-link:before {
|
|
243
|
-
content: "\f35d"; }
|
|
244
|
-
|
|
245
|
-
.fa.fa-sign-in:before {
|
|
246
|
-
content: "\f2f6"; }
|
|
247
|
-
|
|
248
|
-
.fa.fa-github-square {
|
|
249
|
-
font-family: 'Font Awesome 5 Brands';
|
|
250
|
-
font-weight: 400; }
|
|
251
|
-
|
|
252
|
-
.fa.fa-lemon-o {
|
|
253
|
-
font-family: 'Font Awesome 5 Free';
|
|
254
|
-
font-weight: 400; }
|
|
255
|
-
|
|
256
|
-
.fa.fa-lemon-o:before {
|
|
257
|
-
content: "\f094"; }
|
|
258
|
-
|
|
259
|
-
.fa.fa-square-o {
|
|
260
|
-
font-family: 'Font Awesome 5 Free';
|
|
261
|
-
font-weight: 400; }
|
|
262
|
-
|
|
263
|
-
.fa.fa-square-o:before {
|
|
264
|
-
content: "\f0c8"; }
|
|
265
|
-
|
|
266
|
-
.fa.fa-bookmark-o {
|
|
267
|
-
font-family: 'Font Awesome 5 Free';
|
|
268
|
-
font-weight: 400; }
|
|
269
|
-
|
|
270
|
-
.fa.fa-bookmark-o:before {
|
|
271
|
-
content: "\f02e"; }
|
|
272
|
-
|
|
273
|
-
.fa.fa-twitter {
|
|
274
|
-
font-family: 'Font Awesome 5 Brands';
|
|
275
|
-
font-weight: 400; }
|
|
276
|
-
|
|
277
|
-
.fa.fa-facebook {
|
|
278
|
-
font-family: 'Font Awesome 5 Brands';
|
|
279
|
-
font-weight: 400; }
|
|
280
|
-
|
|
281
|
-
.fa.fa-facebook:before {
|
|
282
|
-
content: "\f39e"; }
|
|
283
|
-
|
|
284
|
-
.fa.fa-facebook-f {
|
|
285
|
-
font-family: 'Font Awesome 5 Brands';
|
|
286
|
-
font-weight: 400; }
|
|
287
|
-
|
|
288
|
-
.fa.fa-facebook-f:before {
|
|
289
|
-
content: "\f39e"; }
|
|
290
|
-
|
|
291
|
-
.fa.fa-github {
|
|
292
|
-
font-family: 'Font Awesome 5 Brands';
|
|
293
|
-
font-weight: 400; }
|
|
294
|
-
|
|
295
|
-
.fa.fa-credit-card {
|
|
296
|
-
font-family: 'Font Awesome 5 Free';
|
|
297
|
-
font-weight: 400; }
|
|
298
|
-
|
|
299
|
-
.fa.fa-feed:before {
|
|
300
|
-
content: "\f09e"; }
|
|
301
|
-
|
|
302
|
-
.fa.fa-hdd-o {
|
|
303
|
-
font-family: 'Font Awesome 5 Free';
|
|
304
|
-
font-weight: 400; }
|
|
305
|
-
|
|
306
|
-
.fa.fa-hdd-o:before {
|
|
307
|
-
content: "\f0a0"; }
|
|
308
|
-
|
|
309
|
-
.fa.fa-hand-o-right {
|
|
310
|
-
font-family: 'Font Awesome 5 Free';
|
|
311
|
-
font-weight: 400; }
|
|
312
|
-
|
|
313
|
-
.fa.fa-hand-o-right:before {
|
|
314
|
-
content: "\f0a4"; }
|
|
315
|
-
|
|
316
|
-
.fa.fa-hand-o-left {
|
|
317
|
-
font-family: 'Font Awesome 5 Free';
|
|
318
|
-
font-weight: 400; }
|
|
319
|
-
|
|
320
|
-
.fa.fa-hand-o-left:before {
|
|
321
|
-
content: "\f0a5"; }
|
|
322
|
-
|
|
323
|
-
.fa.fa-hand-o-up {
|
|
324
|
-
font-family: 'Font Awesome 5 Free';
|
|
325
|
-
font-weight: 400; }
|
|
326
|
-
|
|
327
|
-
.fa.fa-hand-o-up:before {
|
|
328
|
-
content: "\f0a6"; }
|
|
329
|
-
|
|
330
|
-
.fa.fa-hand-o-down {
|
|
331
|
-
font-family: 'Font Awesome 5 Free';
|
|
332
|
-
font-weight: 400; }
|
|
333
|
-
|
|
334
|
-
.fa.fa-hand-o-down:before {
|
|
335
|
-
content: "\f0a7"; }
|
|
336
|
-
|
|
337
|
-
.fa.fa-arrows-alt:before {
|
|
338
|
-
content: "\f31e"; }
|
|
339
|
-
|
|
340
|
-
.fa.fa-group:before {
|
|
341
|
-
content: "\f0c0"; }
|
|
342
|
-
|
|
343
|
-
.fa.fa-chain:before {
|
|
344
|
-
content: "\f0c1"; }
|
|
345
|
-
|
|
346
|
-
.fa.fa-scissors:before {
|
|
347
|
-
content: "\f0c4"; }
|
|
348
|
-
|
|
349
|
-
.fa.fa-files-o {
|
|
350
|
-
font-family: 'Font Awesome 5 Free';
|
|
351
|
-
font-weight: 400; }
|
|
352
|
-
|
|
353
|
-
.fa.fa-files-o:before {
|
|
354
|
-
content: "\f0c5"; }
|
|
355
|
-
|
|
356
|
-
.fa.fa-floppy-o {
|
|
357
|
-
font-family: 'Font Awesome 5 Free';
|
|
358
|
-
font-weight: 400; }
|
|
359
|
-
|
|
360
|
-
.fa.fa-floppy-o:before {
|
|
361
|
-
content: "\f0c7"; }
|
|
362
|
-
|
|
363
|
-
.fa.fa-navicon:before {
|
|
364
|
-
content: "\f0c9"; }
|
|
365
|
-
|
|
366
|
-
.fa.fa-reorder:before {
|
|
367
|
-
content: "\f0c9"; }
|
|
368
|
-
|
|
369
|
-
.fa.fa-pinterest {
|
|
370
|
-
font-family: 'Font Awesome 5 Brands';
|
|
371
|
-
font-weight: 400; }
|
|
372
|
-
|
|
373
|
-
.fa.fa-pinterest-square {
|
|
374
|
-
font-family: 'Font Awesome 5 Brands';
|
|
375
|
-
font-weight: 400; }
|
|
376
|
-
|
|
377
|
-
.fa.fa-google-plus-square {
|
|
378
|
-
font-family: 'Font Awesome 5 Brands';
|
|
379
|
-
font-weight: 400; }
|
|
380
|
-
|
|
381
|
-
.fa.fa-google-plus {
|
|
382
|
-
font-family: 'Font Awesome 5 Brands';
|
|
383
|
-
font-weight: 400; }
|
|
384
|
-
|
|
385
|
-
.fa.fa-google-plus:before {
|
|
386
|
-
content: "\f0d5"; }
|
|
387
|
-
|
|
388
|
-
.fa.fa-money {
|
|
389
|
-
font-family: 'Font Awesome 5 Free';
|
|
390
|
-
font-weight: 400; }
|
|
391
|
-
|
|
392
|
-
.fa.fa-money:before {
|
|
393
|
-
content: "\f3d1"; }
|
|
394
|
-
|
|
395
|
-
.fa.fa-unsorted:before {
|
|
396
|
-
content: "\f0dc"; }
|
|
397
|
-
|
|
398
|
-
.fa.fa-sort-desc:before {
|
|
399
|
-
content: "\f0dd"; }
|
|
400
|
-
|
|
401
|
-
.fa.fa-sort-asc:before {
|
|
402
|
-
content: "\f0de"; }
|
|
403
|
-
|
|
404
|
-
.fa.fa-linkedin {
|
|
405
|
-
font-family: 'Font Awesome 5 Brands';
|
|
406
|
-
font-weight: 400; }
|
|
407
|
-
|
|
408
|
-
.fa.fa-linkedin:before {
|
|
409
|
-
content: "\f0e1"; }
|
|
410
|
-
|
|
411
|
-
.fa.fa-rotate-left:before {
|
|
412
|
-
content: "\f0e2"; }
|
|
413
|
-
|
|
414
|
-
.fa.fa-legal:before {
|
|
415
|
-
content: "\f0e3"; }
|
|
416
|
-
|
|
417
|
-
.fa.fa-tachometer:before {
|
|
418
|
-
content: "\f3fd"; }
|
|
419
|
-
|
|
420
|
-
.fa.fa-dashboard:before {
|
|
421
|
-
content: "\f3fd"; }
|
|
422
|
-
|
|
423
|
-
.fa.fa-comment-o {
|
|
424
|
-
font-family: 'Font Awesome 5 Free';
|
|
425
|
-
font-weight: 400; }
|
|
426
|
-
|
|
427
|
-
.fa.fa-comment-o:before {
|
|
428
|
-
content: "\f075"; }
|
|
429
|
-
|
|
430
|
-
.fa.fa-comments-o {
|
|
431
|
-
font-family: 'Font Awesome 5 Free';
|
|
432
|
-
font-weight: 400; }
|
|
433
|
-
|
|
434
|
-
.fa.fa-comments-o:before {
|
|
435
|
-
content: "\f086"; }
|
|
436
|
-
|
|
437
|
-
.fa.fa-flash:before {
|
|
438
|
-
content: "\f0e7"; }
|
|
439
|
-
|
|
440
|
-
.fa.fa-clipboard {
|
|
441
|
-
font-family: 'Font Awesome 5 Free';
|
|
442
|
-
font-weight: 400; }
|
|
443
|
-
|
|
444
|
-
.fa.fa-paste {
|
|
445
|
-
font-family: 'Font Awesome 5 Free';
|
|
446
|
-
font-weight: 400; }
|
|
447
|
-
|
|
448
|
-
.fa.fa-paste:before {
|
|
449
|
-
content: "\f328"; }
|
|
450
|
-
|
|
451
|
-
.fa.fa-lightbulb-o {
|
|
452
|
-
font-family: 'Font Awesome 5 Free';
|
|
453
|
-
font-weight: 400; }
|
|
454
|
-
|
|
455
|
-
.fa.fa-lightbulb-o:before {
|
|
456
|
-
content: "\f0eb"; }
|
|
457
|
-
|
|
458
|
-
.fa.fa-exchange:before {
|
|
459
|
-
content: "\f362"; }
|
|
460
|
-
|
|
461
|
-
.fa.fa-cloud-download:before {
|
|
462
|
-
content: "\f381"; }
|
|
463
|
-
|
|
464
|
-
.fa.fa-cloud-upload:before {
|
|
465
|
-
content: "\f382"; }
|
|
466
|
-
|
|
467
|
-
.fa.fa-bell-o {
|
|
468
|
-
font-family: 'Font Awesome 5 Free';
|
|
469
|
-
font-weight: 400; }
|
|
470
|
-
|
|
471
|
-
.fa.fa-bell-o:before {
|
|
472
|
-
content: "\f0f3"; }
|
|
473
|
-
|
|
474
|
-
.fa.fa-cutlery:before {
|
|
475
|
-
content: "\f2e7"; }
|
|
476
|
-
|
|
477
|
-
.fa.fa-file-text-o {
|
|
478
|
-
font-family: 'Font Awesome 5 Free';
|
|
479
|
-
font-weight: 400; }
|
|
480
|
-
|
|
481
|
-
.fa.fa-file-text-o:before {
|
|
482
|
-
content: "\f15c"; }
|
|
483
|
-
|
|
484
|
-
.fa.fa-building-o {
|
|
485
|
-
font-family: 'Font Awesome 5 Free';
|
|
486
|
-
font-weight: 400; }
|
|
487
|
-
|
|
488
|
-
.fa.fa-building-o:before {
|
|
489
|
-
content: "\f1ad"; }
|
|
490
|
-
|
|
491
|
-
.fa.fa-hospital-o {
|
|
492
|
-
font-family: 'Font Awesome 5 Free';
|
|
493
|
-
font-weight: 400; }
|
|
494
|
-
|
|
495
|
-
.fa.fa-hospital-o:before {
|
|
496
|
-
content: "\f0f8"; }
|
|
497
|
-
|
|
498
|
-
.fa.fa-tablet:before {
|
|
499
|
-
content: "\f3fa"; }
|
|
500
|
-
|
|
501
|
-
.fa.fa-mobile:before {
|
|
502
|
-
content: "\f3cd"; }
|
|
503
|
-
|
|
504
|
-
.fa.fa-mobile-phone:before {
|
|
505
|
-
content: "\f3cd"; }
|
|
506
|
-
|
|
507
|
-
.fa.fa-circle-o {
|
|
508
|
-
font-family: 'Font Awesome 5 Free';
|
|
509
|
-
font-weight: 400; }
|
|
510
|
-
|
|
511
|
-
.fa.fa-circle-o:before {
|
|
512
|
-
content: "\f111"; }
|
|
513
|
-
|
|
514
|
-
.fa.fa-mail-reply:before {
|
|
515
|
-
content: "\f3e5"; }
|
|
516
|
-
|
|
517
|
-
.fa.fa-github-alt {
|
|
518
|
-
font-family: 'Font Awesome 5 Brands';
|
|
519
|
-
font-weight: 400; }
|
|
520
|
-
|
|
521
|
-
.fa.fa-folder-o {
|
|
522
|
-
font-family: 'Font Awesome 5 Free';
|
|
523
|
-
font-weight: 400; }
|
|
524
|
-
|
|
525
|
-
.fa.fa-folder-o:before {
|
|
526
|
-
content: "\f07b"; }
|
|
527
|
-
|
|
528
|
-
.fa.fa-folder-open-o {
|
|
529
|
-
font-family: 'Font Awesome 5 Free';
|
|
530
|
-
font-weight: 400; }
|
|
531
|
-
|
|
532
|
-
.fa.fa-folder-open-o:before {
|
|
533
|
-
content: "\f07c"; }
|
|
534
|
-
|
|
535
|
-
.fa.fa-smile-o {
|
|
536
|
-
font-family: 'Font Awesome 5 Free';
|
|
537
|
-
font-weight: 400; }
|
|
538
|
-
|
|
539
|
-
.fa.fa-smile-o:before {
|
|
540
|
-
content: "\f118"; }
|
|
541
|
-
|
|
542
|
-
.fa.fa-frown-o {
|
|
543
|
-
font-family: 'Font Awesome 5 Free';
|
|
544
|
-
font-weight: 400; }
|
|
545
|
-
|
|
546
|
-
.fa.fa-frown-o:before {
|
|
547
|
-
content: "\f119"; }
|
|
548
|
-
|
|
549
|
-
.fa.fa-meh-o {
|
|
550
|
-
font-family: 'Font Awesome 5 Free';
|
|
551
|
-
font-weight: 400; }
|
|
552
|
-
|
|
553
|
-
.fa.fa-meh-o:before {
|
|
554
|
-
content: "\f11a"; }
|
|
555
|
-
|
|
556
|
-
.fa.fa-keyboard-o {
|
|
557
|
-
font-family: 'Font Awesome 5 Free';
|
|
558
|
-
font-weight: 400; }
|
|
559
|
-
|
|
560
|
-
.fa.fa-keyboard-o:before {
|
|
561
|
-
content: "\f11c"; }
|
|
562
|
-
|
|
563
|
-
.fa.fa-flag-o {
|
|
564
|
-
font-family: 'Font Awesome 5 Free';
|
|
565
|
-
font-weight: 400; }
|
|
566
|
-
|
|
567
|
-
.fa.fa-flag-o:before {
|
|
568
|
-
content: "\f024"; }
|
|
569
|
-
|
|
570
|
-
.fa.fa-mail-reply-all:before {
|
|
571
|
-
content: "\f122"; }
|
|
572
|
-
|
|
573
|
-
.fa.fa-star-half-o {
|
|
574
|
-
font-family: 'Font Awesome 5 Free';
|
|
575
|
-
font-weight: 400; }
|
|
576
|
-
|
|
577
|
-
.fa.fa-star-half-o:before {
|
|
578
|
-
content: "\f089"; }
|
|
579
|
-
|
|
580
|
-
.fa.fa-star-half-empty {
|
|
581
|
-
font-family: 'Font Awesome 5 Free';
|
|
582
|
-
font-weight: 400; }
|
|
583
|
-
|
|
584
|
-
.fa.fa-star-half-empty:before {
|
|
585
|
-
content: "\f089"; }
|
|
586
|
-
|
|
587
|
-
.fa.fa-star-half-full {
|
|
588
|
-
font-family: 'Font Awesome 5 Free';
|
|
589
|
-
font-weight: 400; }
|
|
590
|
-
|
|
591
|
-
.fa.fa-star-half-full:before {
|
|
592
|
-
content: "\f089"; }
|
|
593
|
-
|
|
594
|
-
.fa.fa-code-fork:before {
|
|
595
|
-
content: "\f126"; }
|
|
596
|
-
|
|
597
|
-
.fa.fa-chain-broken:before {
|
|
598
|
-
content: "\f127"; }
|
|
599
|
-
|
|
600
|
-
.fa.fa-shield:before {
|
|
601
|
-
content: "\f3ed"; }
|
|
602
|
-
|
|
603
|
-
.fa.fa-calendar-o {
|
|
604
|
-
font-family: 'Font Awesome 5 Free';
|
|
605
|
-
font-weight: 400; }
|
|
606
|
-
|
|
607
|
-
.fa.fa-calendar-o:before {
|
|
608
|
-
content: "\f133"; }
|
|
609
|
-
|
|
610
|
-
.fa.fa-maxcdn {
|
|
611
|
-
font-family: 'Font Awesome 5 Brands';
|
|
612
|
-
font-weight: 400; }
|
|
613
|
-
|
|
614
|
-
.fa.fa-html5 {
|
|
615
|
-
font-family: 'Font Awesome 5 Brands';
|
|
616
|
-
font-weight: 400; }
|
|
617
|
-
|
|
618
|
-
.fa.fa-css3 {
|
|
619
|
-
font-family: 'Font Awesome 5 Brands';
|
|
620
|
-
font-weight: 400; }
|
|
621
|
-
|
|
622
|
-
.fa.fa-ticket:before {
|
|
623
|
-
content: "\f3ff"; }
|
|
624
|
-
|
|
625
|
-
.fa.fa-minus-square-o {
|
|
626
|
-
font-family: 'Font Awesome 5 Free';
|
|
627
|
-
font-weight: 400; }
|
|
628
|
-
|
|
629
|
-
.fa.fa-minus-square-o:before {
|
|
630
|
-
content: "\f146"; }
|
|
631
|
-
|
|
632
|
-
.fa.fa-level-up:before {
|
|
633
|
-
content: "\f3bf"; }
|
|
634
|
-
|
|
635
|
-
.fa.fa-level-down:before {
|
|
636
|
-
content: "\f3be"; }
|
|
637
|
-
|
|
638
|
-
.fa.fa-pencil-square:before {
|
|
639
|
-
content: "\f14b"; }
|
|
640
|
-
|
|
641
|
-
.fa.fa-external-link-square:before {
|
|
642
|
-
content: "\f360"; }
|
|
643
|
-
|
|
644
|
-
.fa.fa-compass {
|
|
645
|
-
font-family: 'Font Awesome 5 Free';
|
|
646
|
-
font-weight: 400; }
|
|
647
|
-
|
|
648
|
-
.fa.fa-caret-square-o-down {
|
|
649
|
-
font-family: 'Font Awesome 5 Free';
|
|
650
|
-
font-weight: 400; }
|
|
651
|
-
|
|
652
|
-
.fa.fa-caret-square-o-down:before {
|
|
653
|
-
content: "\f150"; }
|
|
654
|
-
|
|
655
|
-
.fa.fa-toggle-down {
|
|
656
|
-
font-family: 'Font Awesome 5 Free';
|
|
657
|
-
font-weight: 400; }
|
|
658
|
-
|
|
659
|
-
.fa.fa-toggle-down:before {
|
|
660
|
-
content: "\f150"; }
|
|
661
|
-
|
|
662
|
-
.fa.fa-caret-square-o-up {
|
|
663
|
-
font-family: 'Font Awesome 5 Free';
|
|
664
|
-
font-weight: 400; }
|
|
665
|
-
|
|
666
|
-
.fa.fa-caret-square-o-up:before {
|
|
667
|
-
content: "\f151"; }
|
|
668
|
-
|
|
669
|
-
.fa.fa-toggle-up {
|
|
670
|
-
font-family: 'Font Awesome 5 Free';
|
|
671
|
-
font-weight: 400; }
|
|
672
|
-
|
|
673
|
-
.fa.fa-toggle-up:before {
|
|
674
|
-
content: "\f151"; }
|
|
675
|
-
|
|
676
|
-
.fa.fa-caret-square-o-right {
|
|
677
|
-
font-family: 'Font Awesome 5 Free';
|
|
678
|
-
font-weight: 400; }
|
|
679
|
-
|
|
680
|
-
.fa.fa-caret-square-o-right:before {
|
|
681
|
-
content: "\f152"; }
|
|
682
|
-
|
|
683
|
-
.fa.fa-toggle-right {
|
|
684
|
-
font-family: 'Font Awesome 5 Free';
|
|
685
|
-
font-weight: 400; }
|
|
686
|
-
|
|
687
|
-
.fa.fa-toggle-right:before {
|
|
688
|
-
content: "\f152"; }
|
|
689
|
-
|
|
690
|
-
.fa.fa-eur:before {
|
|
691
|
-
content: "\f153"; }
|
|
692
|
-
|
|
693
|
-
.fa.fa-euro:before {
|
|
694
|
-
content: "\f153"; }
|
|
695
|
-
|
|
696
|
-
.fa.fa-gbp:before {
|
|
697
|
-
content: "\f154"; }
|
|
698
|
-
|
|
699
|
-
.fa.fa-usd:before {
|
|
700
|
-
content: "\f155"; }
|
|
701
|
-
|
|
702
|
-
.fa.fa-dollar:before {
|
|
703
|
-
content: "\f155"; }
|
|
704
|
-
|
|
705
|
-
.fa.fa-inr:before {
|
|
706
|
-
content: "\f156"; }
|
|
707
|
-
|
|
708
|
-
.fa.fa-rupee:before {
|
|
709
|
-
content: "\f156"; }
|
|
710
|
-
|
|
711
|
-
.fa.fa-jpy:before {
|
|
712
|
-
content: "\f157"; }
|
|
713
|
-
|
|
714
|
-
.fa.fa-cny:before {
|
|
715
|
-
content: "\f157"; }
|
|
716
|
-
|
|
717
|
-
.fa.fa-rmb:before {
|
|
718
|
-
content: "\f157"; }
|
|
719
|
-
|
|
720
|
-
.fa.fa-yen:before {
|
|
721
|
-
content: "\f157"; }
|
|
722
|
-
|
|
723
|
-
.fa.fa-rub:before {
|
|
724
|
-
content: "\f158"; }
|
|
725
|
-
|
|
726
|
-
.fa.fa-ruble:before {
|
|
727
|
-
content: "\f158"; }
|
|
728
|
-
|
|
729
|
-
.fa.fa-rouble:before {
|
|
730
|
-
content: "\f158"; }
|
|
731
|
-
|
|
732
|
-
.fa.fa-krw:before {
|
|
733
|
-
content: "\f159"; }
|
|
734
|
-
|
|
735
|
-
.fa.fa-won:before {
|
|
736
|
-
content: "\f159"; }
|
|
737
|
-
|
|
738
|
-
.fa.fa-btc {
|
|
739
|
-
font-family: 'Font Awesome 5 Brands';
|
|
740
|
-
font-weight: 400; }
|
|
741
|
-
|
|
742
|
-
.fa.fa-bitcoin {
|
|
743
|
-
font-family: 'Font Awesome 5 Brands';
|
|
744
|
-
font-weight: 400; }
|
|
745
|
-
|
|
746
|
-
.fa.fa-bitcoin:before {
|
|
747
|
-
content: "\f15a"; }
|
|
748
|
-
|
|
749
|
-
.fa.fa-file-text:before {
|
|
750
|
-
content: "\f15c"; }
|
|
751
|
-
|
|
752
|
-
.fa.fa-sort-alpha-asc:before {
|
|
753
|
-
content: "\f15d"; }
|
|
754
|
-
|
|
755
|
-
.fa.fa-sort-alpha-desc:before {
|
|
756
|
-
content: "\f881"; }
|
|
757
|
-
|
|
758
|
-
.fa.fa-sort-amount-asc:before {
|
|
759
|
-
content: "\f160"; }
|
|
760
|
-
|
|
761
|
-
.fa.fa-sort-amount-desc:before {
|
|
762
|
-
content: "\f884"; }
|
|
763
|
-
|
|
764
|
-
.fa.fa-sort-numeric-asc:before {
|
|
765
|
-
content: "\f162"; }
|
|
766
|
-
|
|
767
|
-
.fa.fa-sort-numeric-desc:before {
|
|
768
|
-
content: "\f886"; }
|
|
769
|
-
|
|
770
|
-
.fa.fa-youtube-square {
|
|
771
|
-
font-family: 'Font Awesome 5 Brands';
|
|
772
|
-
font-weight: 400; }
|
|
773
|
-
|
|
774
|
-
.fa.fa-youtube {
|
|
775
|
-
font-family: 'Font Awesome 5 Brands';
|
|
776
|
-
font-weight: 400; }
|
|
777
|
-
|
|
778
|
-
.fa.fa-xing {
|
|
779
|
-
font-family: 'Font Awesome 5 Brands';
|
|
780
|
-
font-weight: 400; }
|
|
781
|
-
|
|
782
|
-
.fa.fa-xing-square {
|
|
783
|
-
font-family: 'Font Awesome 5 Brands';
|
|
784
|
-
font-weight: 400; }
|
|
785
|
-
|
|
786
|
-
.fa.fa-youtube-play {
|
|
787
|
-
font-family: 'Font Awesome 5 Brands';
|
|
788
|
-
font-weight: 400; }
|
|
789
|
-
|
|
790
|
-
.fa.fa-youtube-play:before {
|
|
791
|
-
content: "\f167"; }
|
|
792
|
-
|
|
793
|
-
.fa.fa-dropbox {
|
|
794
|
-
font-family: 'Font Awesome 5 Brands';
|
|
795
|
-
font-weight: 400; }
|
|
796
|
-
|
|
797
|
-
.fa.fa-stack-overflow {
|
|
798
|
-
font-family: 'Font Awesome 5 Brands';
|
|
799
|
-
font-weight: 400; }
|
|
800
|
-
|
|
801
|
-
.fa.fa-instagram {
|
|
802
|
-
font-family: 'Font Awesome 5 Brands';
|
|
803
|
-
font-weight: 400; }
|
|
804
|
-
|
|
805
|
-
.fa.fa-flickr {
|
|
806
|
-
font-family: 'Font Awesome 5 Brands';
|
|
807
|
-
font-weight: 400; }
|
|
808
|
-
|
|
809
|
-
.fa.fa-adn {
|
|
810
|
-
font-family: 'Font Awesome 5 Brands';
|
|
811
|
-
font-weight: 400; }
|
|
812
|
-
|
|
813
|
-
.fa.fa-bitbucket {
|
|
814
|
-
font-family: 'Font Awesome 5 Brands';
|
|
815
|
-
font-weight: 400; }
|
|
816
|
-
|
|
817
|
-
.fa.fa-bitbucket-square {
|
|
818
|
-
font-family: 'Font Awesome 5 Brands';
|
|
819
|
-
font-weight: 400; }
|
|
820
|
-
|
|
821
|
-
.fa.fa-bitbucket-square:before {
|
|
822
|
-
content: "\f171"; }
|
|
823
|
-
|
|
824
|
-
.fa.fa-tumblr {
|
|
825
|
-
font-family: 'Font Awesome 5 Brands';
|
|
826
|
-
font-weight: 400; }
|
|
827
|
-
|
|
828
|
-
.fa.fa-tumblr-square {
|
|
829
|
-
font-family: 'Font Awesome 5 Brands';
|
|
830
|
-
font-weight: 400; }
|
|
831
|
-
|
|
832
|
-
.fa.fa-long-arrow-down:before {
|
|
833
|
-
content: "\f309"; }
|
|
834
|
-
|
|
835
|
-
.fa.fa-long-arrow-up:before {
|
|
836
|
-
content: "\f30c"; }
|
|
837
|
-
|
|
838
|
-
.fa.fa-long-arrow-left:before {
|
|
839
|
-
content: "\f30a"; }
|
|
840
|
-
|
|
841
|
-
.fa.fa-long-arrow-right:before {
|
|
842
|
-
content: "\f30b"; }
|
|
843
|
-
|
|
844
|
-
.fa.fa-apple {
|
|
845
|
-
font-family: 'Font Awesome 5 Brands';
|
|
846
|
-
font-weight: 400; }
|
|
847
|
-
|
|
848
|
-
.fa.fa-windows {
|
|
849
|
-
font-family: 'Font Awesome 5 Brands';
|
|
850
|
-
font-weight: 400; }
|
|
851
|
-
|
|
852
|
-
.fa.fa-android {
|
|
853
|
-
font-family: 'Font Awesome 5 Brands';
|
|
854
|
-
font-weight: 400; }
|
|
855
|
-
|
|
856
|
-
.fa.fa-linux {
|
|
857
|
-
font-family: 'Font Awesome 5 Brands';
|
|
858
|
-
font-weight: 400; }
|
|
859
|
-
|
|
860
|
-
.fa.fa-dribbble {
|
|
861
|
-
font-family: 'Font Awesome 5 Brands';
|
|
862
|
-
font-weight: 400; }
|
|
863
|
-
|
|
864
|
-
.fa.fa-skype {
|
|
865
|
-
font-family: 'Font Awesome 5 Brands';
|
|
866
|
-
font-weight: 400; }
|
|
867
|
-
|
|
868
|
-
.fa.fa-foursquare {
|
|
869
|
-
font-family: 'Font Awesome 5 Brands';
|
|
870
|
-
font-weight: 400; }
|
|
871
|
-
|
|
872
|
-
.fa.fa-trello {
|
|
873
|
-
font-family: 'Font Awesome 5 Brands';
|
|
874
|
-
font-weight: 400; }
|
|
875
|
-
|
|
876
|
-
.fa.fa-gratipay {
|
|
877
|
-
font-family: 'Font Awesome 5 Brands';
|
|
878
|
-
font-weight: 400; }
|
|
879
|
-
|
|
880
|
-
.fa.fa-gittip {
|
|
881
|
-
font-family: 'Font Awesome 5 Brands';
|
|
882
|
-
font-weight: 400; }
|
|
883
|
-
|
|
884
|
-
.fa.fa-gittip:before {
|
|
885
|
-
content: "\f184"; }
|
|
886
|
-
|
|
887
|
-
.fa.fa-sun-o {
|
|
888
|
-
font-family: 'Font Awesome 5 Free';
|
|
889
|
-
font-weight: 400; }
|
|
890
|
-
|
|
891
|
-
.fa.fa-sun-o:before {
|
|
892
|
-
content: "\f185"; }
|
|
893
|
-
|
|
894
|
-
.fa.fa-moon-o {
|
|
895
|
-
font-family: 'Font Awesome 5 Free';
|
|
896
|
-
font-weight: 400; }
|
|
897
|
-
|
|
898
|
-
.fa.fa-moon-o:before {
|
|
899
|
-
content: "\f186"; }
|
|
900
|
-
|
|
901
|
-
.fa.fa-vk {
|
|
902
|
-
font-family: 'Font Awesome 5 Brands';
|
|
903
|
-
font-weight: 400; }
|
|
904
|
-
|
|
905
|
-
.fa.fa-weibo {
|
|
906
|
-
font-family: 'Font Awesome 5 Brands';
|
|
907
|
-
font-weight: 400; }
|
|
908
|
-
|
|
909
|
-
.fa.fa-renren {
|
|
910
|
-
font-family: 'Font Awesome 5 Brands';
|
|
911
|
-
font-weight: 400; }
|
|
912
|
-
|
|
913
|
-
.fa.fa-pagelines {
|
|
914
|
-
font-family: 'Font Awesome 5 Brands';
|
|
915
|
-
font-weight: 400; }
|
|
916
|
-
|
|
917
|
-
.fa.fa-stack-exchange {
|
|
918
|
-
font-family: 'Font Awesome 5 Brands';
|
|
919
|
-
font-weight: 400; }
|
|
920
|
-
|
|
921
|
-
.fa.fa-arrow-circle-o-right {
|
|
922
|
-
font-family: 'Font Awesome 5 Free';
|
|
923
|
-
font-weight: 400; }
|
|
924
|
-
|
|
925
|
-
.fa.fa-arrow-circle-o-right:before {
|
|
926
|
-
content: "\f35a"; }
|
|
927
|
-
|
|
928
|
-
.fa.fa-arrow-circle-o-left {
|
|
929
|
-
font-family: 'Font Awesome 5 Free';
|
|
930
|
-
font-weight: 400; }
|
|
931
|
-
|
|
932
|
-
.fa.fa-arrow-circle-o-left:before {
|
|
933
|
-
content: "\f359"; }
|
|
934
|
-
|
|
935
|
-
.fa.fa-caret-square-o-left {
|
|
936
|
-
font-family: 'Font Awesome 5 Free';
|
|
937
|
-
font-weight: 400; }
|
|
938
|
-
|
|
939
|
-
.fa.fa-caret-square-o-left:before {
|
|
940
|
-
content: "\f191"; }
|
|
941
|
-
|
|
942
|
-
.fa.fa-toggle-left {
|
|
943
|
-
font-family: 'Font Awesome 5 Free';
|
|
944
|
-
font-weight: 400; }
|
|
945
|
-
|
|
946
|
-
.fa.fa-toggle-left:before {
|
|
947
|
-
content: "\f191"; }
|
|
948
|
-
|
|
949
|
-
.fa.fa-dot-circle-o {
|
|
950
|
-
font-family: 'Font Awesome 5 Free';
|
|
951
|
-
font-weight: 400; }
|
|
952
|
-
|
|
953
|
-
.fa.fa-dot-circle-o:before {
|
|
954
|
-
content: "\f192"; }
|
|
955
|
-
|
|
956
|
-
.fa.fa-vimeo-square {
|
|
957
|
-
font-family: 'Font Awesome 5 Brands';
|
|
958
|
-
font-weight: 400; }
|
|
959
|
-
|
|
960
|
-
.fa.fa-try:before {
|
|
961
|
-
content: "\f195"; }
|
|
962
|
-
|
|
963
|
-
.fa.fa-turkish-lira:before {
|
|
964
|
-
content: "\f195"; }
|
|
965
|
-
|
|
966
|
-
.fa.fa-plus-square-o {
|
|
967
|
-
font-family: 'Font Awesome 5 Free';
|
|
968
|
-
font-weight: 400; }
|
|
969
|
-
|
|
970
|
-
.fa.fa-plus-square-o:before {
|
|
971
|
-
content: "\f0fe"; }
|
|
972
|
-
|
|
973
|
-
.fa.fa-slack {
|
|
974
|
-
font-family: 'Font Awesome 5 Brands';
|
|
975
|
-
font-weight: 400; }
|
|
976
|
-
|
|
977
|
-
.fa.fa-wordpress {
|
|
978
|
-
font-family: 'Font Awesome 5 Brands';
|
|
979
|
-
font-weight: 400; }
|
|
980
|
-
|
|
981
|
-
.fa.fa-openid {
|
|
982
|
-
font-family: 'Font Awesome 5 Brands';
|
|
983
|
-
font-weight: 400; }
|
|
984
|
-
|
|
985
|
-
.fa.fa-institution:before {
|
|
986
|
-
content: "\f19c"; }
|
|
987
|
-
|
|
988
|
-
.fa.fa-bank:before {
|
|
989
|
-
content: "\f19c"; }
|
|
990
|
-
|
|
991
|
-
.fa.fa-mortar-board:before {
|
|
992
|
-
content: "\f19d"; }
|
|
993
|
-
|
|
994
|
-
.fa.fa-yahoo {
|
|
995
|
-
font-family: 'Font Awesome 5 Brands';
|
|
996
|
-
font-weight: 400; }
|
|
997
|
-
|
|
998
|
-
.fa.fa-google {
|
|
999
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1000
|
-
font-weight: 400; }
|
|
1001
|
-
|
|
1002
|
-
.fa.fa-reddit {
|
|
1003
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1004
|
-
font-weight: 400; }
|
|
1005
|
-
|
|
1006
|
-
.fa.fa-reddit-square {
|
|
1007
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1008
|
-
font-weight: 400; }
|
|
1009
|
-
|
|
1010
|
-
.fa.fa-stumbleupon-circle {
|
|
1011
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1012
|
-
font-weight: 400; }
|
|
1013
|
-
|
|
1014
|
-
.fa.fa-stumbleupon {
|
|
1015
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1016
|
-
font-weight: 400; }
|
|
1017
|
-
|
|
1018
|
-
.fa.fa-delicious {
|
|
1019
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1020
|
-
font-weight: 400; }
|
|
1021
|
-
|
|
1022
|
-
.fa.fa-digg {
|
|
1023
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1024
|
-
font-weight: 400; }
|
|
1025
|
-
|
|
1026
|
-
.fa.fa-pied-piper-pp {
|
|
1027
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1028
|
-
font-weight: 400; }
|
|
1029
|
-
|
|
1030
|
-
.fa.fa-pied-piper-alt {
|
|
1031
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1032
|
-
font-weight: 400; }
|
|
1033
|
-
|
|
1034
|
-
.fa.fa-drupal {
|
|
1035
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1036
|
-
font-weight: 400; }
|
|
1037
|
-
|
|
1038
|
-
.fa.fa-joomla {
|
|
1039
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1040
|
-
font-weight: 400; }
|
|
1041
|
-
|
|
1042
|
-
.fa.fa-spoon:before {
|
|
1043
|
-
content: "\f2e5"; }
|
|
1044
|
-
|
|
1045
|
-
.fa.fa-behance {
|
|
1046
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1047
|
-
font-weight: 400; }
|
|
1048
|
-
|
|
1049
|
-
.fa.fa-behance-square {
|
|
1050
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1051
|
-
font-weight: 400; }
|
|
1052
|
-
|
|
1053
|
-
.fa.fa-steam {
|
|
1054
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1055
|
-
font-weight: 400; }
|
|
1056
|
-
|
|
1057
|
-
.fa.fa-steam-square {
|
|
1058
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1059
|
-
font-weight: 400; }
|
|
1060
|
-
|
|
1061
|
-
.fa.fa-automobile:before {
|
|
1062
|
-
content: "\f1b9"; }
|
|
1063
|
-
|
|
1064
|
-
.fa.fa-envelope-o {
|
|
1065
|
-
font-family: 'Font Awesome 5 Free';
|
|
1066
|
-
font-weight: 400; }
|
|
1067
|
-
|
|
1068
|
-
.fa.fa-envelope-o:before {
|
|
1069
|
-
content: "\f0e0"; }
|
|
1070
|
-
|
|
1071
|
-
.fa.fa-spotify {
|
|
1072
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1073
|
-
font-weight: 400; }
|
|
1074
|
-
|
|
1075
|
-
.fa.fa-deviantart {
|
|
1076
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1077
|
-
font-weight: 400; }
|
|
1078
|
-
|
|
1079
|
-
.fa.fa-soundcloud {
|
|
1080
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1081
|
-
font-weight: 400; }
|
|
1082
|
-
|
|
1083
|
-
.fa.fa-file-pdf-o {
|
|
1084
|
-
font-family: 'Font Awesome 5 Free';
|
|
1085
|
-
font-weight: 400; }
|
|
1086
|
-
|
|
1087
|
-
.fa.fa-file-pdf-o:before {
|
|
1088
|
-
content: "\f1c1"; }
|
|
1089
|
-
|
|
1090
|
-
.fa.fa-file-word-o {
|
|
1091
|
-
font-family: 'Font Awesome 5 Free';
|
|
1092
|
-
font-weight: 400; }
|
|
1093
|
-
|
|
1094
|
-
.fa.fa-file-word-o:before {
|
|
1095
|
-
content: "\f1c2"; }
|
|
1096
|
-
|
|
1097
|
-
.fa.fa-file-excel-o {
|
|
1098
|
-
font-family: 'Font Awesome 5 Free';
|
|
1099
|
-
font-weight: 400; }
|
|
1100
|
-
|
|
1101
|
-
.fa.fa-file-excel-o:before {
|
|
1102
|
-
content: "\f1c3"; }
|
|
1103
|
-
|
|
1104
|
-
.fa.fa-file-powerpoint-o {
|
|
1105
|
-
font-family: 'Font Awesome 5 Free';
|
|
1106
|
-
font-weight: 400; }
|
|
1107
|
-
|
|
1108
|
-
.fa.fa-file-powerpoint-o:before {
|
|
1109
|
-
content: "\f1c4"; }
|
|
1110
|
-
|
|
1111
|
-
.fa.fa-file-image-o {
|
|
1112
|
-
font-family: 'Font Awesome 5 Free';
|
|
1113
|
-
font-weight: 400; }
|
|
1114
|
-
|
|
1115
|
-
.fa.fa-file-image-o:before {
|
|
1116
|
-
content: "\f1c5"; }
|
|
1117
|
-
|
|
1118
|
-
.fa.fa-file-photo-o {
|
|
1119
|
-
font-family: 'Font Awesome 5 Free';
|
|
1120
|
-
font-weight: 400; }
|
|
1121
|
-
|
|
1122
|
-
.fa.fa-file-photo-o:before {
|
|
1123
|
-
content: "\f1c5"; }
|
|
1124
|
-
|
|
1125
|
-
.fa.fa-file-picture-o {
|
|
1126
|
-
font-family: 'Font Awesome 5 Free';
|
|
1127
|
-
font-weight: 400; }
|
|
1128
|
-
|
|
1129
|
-
.fa.fa-file-picture-o:before {
|
|
1130
|
-
content: "\f1c5"; }
|
|
1131
|
-
|
|
1132
|
-
.fa.fa-file-archive-o {
|
|
1133
|
-
font-family: 'Font Awesome 5 Free';
|
|
1134
|
-
font-weight: 400; }
|
|
1135
|
-
|
|
1136
|
-
.fa.fa-file-archive-o:before {
|
|
1137
|
-
content: "\f1c6"; }
|
|
1138
|
-
|
|
1139
|
-
.fa.fa-file-zip-o {
|
|
1140
|
-
font-family: 'Font Awesome 5 Free';
|
|
1141
|
-
font-weight: 400; }
|
|
1142
|
-
|
|
1143
|
-
.fa.fa-file-zip-o:before {
|
|
1144
|
-
content: "\f1c6"; }
|
|
1145
|
-
|
|
1146
|
-
.fa.fa-file-audio-o {
|
|
1147
|
-
font-family: 'Font Awesome 5 Free';
|
|
1148
|
-
font-weight: 400; }
|
|
1149
|
-
|
|
1150
|
-
.fa.fa-file-audio-o:before {
|
|
1151
|
-
content: "\f1c7"; }
|
|
1152
|
-
|
|
1153
|
-
.fa.fa-file-sound-o {
|
|
1154
|
-
font-family: 'Font Awesome 5 Free';
|
|
1155
|
-
font-weight: 400; }
|
|
1156
|
-
|
|
1157
|
-
.fa.fa-file-sound-o:before {
|
|
1158
|
-
content: "\f1c7"; }
|
|
1159
|
-
|
|
1160
|
-
.fa.fa-file-video-o {
|
|
1161
|
-
font-family: 'Font Awesome 5 Free';
|
|
1162
|
-
font-weight: 400; }
|
|
1163
|
-
|
|
1164
|
-
.fa.fa-file-video-o:before {
|
|
1165
|
-
content: "\f1c8"; }
|
|
1166
|
-
|
|
1167
|
-
.fa.fa-file-movie-o {
|
|
1168
|
-
font-family: 'Font Awesome 5 Free';
|
|
1169
|
-
font-weight: 400; }
|
|
1170
|
-
|
|
1171
|
-
.fa.fa-file-movie-o:before {
|
|
1172
|
-
content: "\f1c8"; }
|
|
1173
|
-
|
|
1174
|
-
.fa.fa-file-code-o {
|
|
1175
|
-
font-family: 'Font Awesome 5 Free';
|
|
1176
|
-
font-weight: 400; }
|
|
1177
|
-
|
|
1178
|
-
.fa.fa-file-code-o:before {
|
|
1179
|
-
content: "\f1c9"; }
|
|
1180
|
-
|
|
1181
|
-
.fa.fa-vine {
|
|
1182
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1183
|
-
font-weight: 400; }
|
|
1184
|
-
|
|
1185
|
-
.fa.fa-codepen {
|
|
1186
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1187
|
-
font-weight: 400; }
|
|
1188
|
-
|
|
1189
|
-
.fa.fa-jsfiddle {
|
|
1190
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1191
|
-
font-weight: 400; }
|
|
1192
|
-
|
|
1193
|
-
.fa.fa-life-ring {
|
|
1194
|
-
font-family: 'Font Awesome 5 Free';
|
|
1195
|
-
font-weight: 400; }
|
|
1196
|
-
|
|
1197
|
-
.fa.fa-life-bouy {
|
|
1198
|
-
font-family: 'Font Awesome 5 Free';
|
|
1199
|
-
font-weight: 400; }
|
|
1200
|
-
|
|
1201
|
-
.fa.fa-life-bouy:before {
|
|
1202
|
-
content: "\f1cd"; }
|
|
1203
|
-
|
|
1204
|
-
.fa.fa-life-buoy {
|
|
1205
|
-
font-family: 'Font Awesome 5 Free';
|
|
1206
|
-
font-weight: 400; }
|
|
1207
|
-
|
|
1208
|
-
.fa.fa-life-buoy:before {
|
|
1209
|
-
content: "\f1cd"; }
|
|
1210
|
-
|
|
1211
|
-
.fa.fa-life-saver {
|
|
1212
|
-
font-family: 'Font Awesome 5 Free';
|
|
1213
|
-
font-weight: 400; }
|
|
1214
|
-
|
|
1215
|
-
.fa.fa-life-saver:before {
|
|
1216
|
-
content: "\f1cd"; }
|
|
1217
|
-
|
|
1218
|
-
.fa.fa-support {
|
|
1219
|
-
font-family: 'Font Awesome 5 Free';
|
|
1220
|
-
font-weight: 400; }
|
|
1221
|
-
|
|
1222
|
-
.fa.fa-support:before {
|
|
1223
|
-
content: "\f1cd"; }
|
|
1224
|
-
|
|
1225
|
-
.fa.fa-circle-o-notch:before {
|
|
1226
|
-
content: "\f1ce"; }
|
|
1227
|
-
|
|
1228
|
-
.fa.fa-rebel {
|
|
1229
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1230
|
-
font-weight: 400; }
|
|
1231
|
-
|
|
1232
|
-
.fa.fa-ra {
|
|
1233
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1234
|
-
font-weight: 400; }
|
|
1235
|
-
|
|
1236
|
-
.fa.fa-ra:before {
|
|
1237
|
-
content: "\f1d0"; }
|
|
1238
|
-
|
|
1239
|
-
.fa.fa-resistance {
|
|
1240
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1241
|
-
font-weight: 400; }
|
|
1242
|
-
|
|
1243
|
-
.fa.fa-resistance:before {
|
|
1244
|
-
content: "\f1d0"; }
|
|
1245
|
-
|
|
1246
|
-
.fa.fa-empire {
|
|
1247
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1248
|
-
font-weight: 400; }
|
|
1249
|
-
|
|
1250
|
-
.fa.fa-ge {
|
|
1251
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1252
|
-
font-weight: 400; }
|
|
1253
|
-
|
|
1254
|
-
.fa.fa-ge:before {
|
|
1255
|
-
content: "\f1d1"; }
|
|
1256
|
-
|
|
1257
|
-
.fa.fa-git-square {
|
|
1258
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1259
|
-
font-weight: 400; }
|
|
1260
|
-
|
|
1261
|
-
.fa.fa-git {
|
|
1262
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1263
|
-
font-weight: 400; }
|
|
1264
|
-
|
|
1265
|
-
.fa.fa-hacker-news {
|
|
1266
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1267
|
-
font-weight: 400; }
|
|
1268
|
-
|
|
1269
|
-
.fa.fa-y-combinator-square {
|
|
1270
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1271
|
-
font-weight: 400; }
|
|
1272
|
-
|
|
1273
|
-
.fa.fa-y-combinator-square:before {
|
|
1274
|
-
content: "\f1d4"; }
|
|
1275
|
-
|
|
1276
|
-
.fa.fa-yc-square {
|
|
1277
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1278
|
-
font-weight: 400; }
|
|
1279
|
-
|
|
1280
|
-
.fa.fa-yc-square:before {
|
|
1281
|
-
content: "\f1d4"; }
|
|
1282
|
-
|
|
1283
|
-
.fa.fa-tencent-weibo {
|
|
1284
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1285
|
-
font-weight: 400; }
|
|
1286
|
-
|
|
1287
|
-
.fa.fa-qq {
|
|
1288
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1289
|
-
font-weight: 400; }
|
|
1290
|
-
|
|
1291
|
-
.fa.fa-weixin {
|
|
1292
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1293
|
-
font-weight: 400; }
|
|
1294
|
-
|
|
1295
|
-
.fa.fa-wechat {
|
|
1296
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1297
|
-
font-weight: 400; }
|
|
1298
|
-
|
|
1299
|
-
.fa.fa-wechat:before {
|
|
1300
|
-
content: "\f1d7"; }
|
|
1301
|
-
|
|
1302
|
-
.fa.fa-send:before {
|
|
1303
|
-
content: "\f1d8"; }
|
|
1304
|
-
|
|
1305
|
-
.fa.fa-paper-plane-o {
|
|
1306
|
-
font-family: 'Font Awesome 5 Free';
|
|
1307
|
-
font-weight: 400; }
|
|
1308
|
-
|
|
1309
|
-
.fa.fa-paper-plane-o:before {
|
|
1310
|
-
content: "\f1d8"; }
|
|
1311
|
-
|
|
1312
|
-
.fa.fa-send-o {
|
|
1313
|
-
font-family: 'Font Awesome 5 Free';
|
|
1314
|
-
font-weight: 400; }
|
|
1315
|
-
|
|
1316
|
-
.fa.fa-send-o:before {
|
|
1317
|
-
content: "\f1d8"; }
|
|
1318
|
-
|
|
1319
|
-
.fa.fa-circle-thin {
|
|
1320
|
-
font-family: 'Font Awesome 5 Free';
|
|
1321
|
-
font-weight: 400; }
|
|
1322
|
-
|
|
1323
|
-
.fa.fa-circle-thin:before {
|
|
1324
|
-
content: "\f111"; }
|
|
1325
|
-
|
|
1326
|
-
.fa.fa-header:before {
|
|
1327
|
-
content: "\f1dc"; }
|
|
1328
|
-
|
|
1329
|
-
.fa.fa-sliders:before {
|
|
1330
|
-
content: "\f1de"; }
|
|
1331
|
-
|
|
1332
|
-
.fa.fa-futbol-o {
|
|
1333
|
-
font-family: 'Font Awesome 5 Free';
|
|
1334
|
-
font-weight: 400; }
|
|
1335
|
-
|
|
1336
|
-
.fa.fa-futbol-o:before {
|
|
1337
|
-
content: "\f1e3"; }
|
|
1338
|
-
|
|
1339
|
-
.fa.fa-soccer-ball-o {
|
|
1340
|
-
font-family: 'Font Awesome 5 Free';
|
|
1341
|
-
font-weight: 400; }
|
|
1342
|
-
|
|
1343
|
-
.fa.fa-soccer-ball-o:before {
|
|
1344
|
-
content: "\f1e3"; }
|
|
1345
|
-
|
|
1346
|
-
.fa.fa-slideshare {
|
|
1347
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1348
|
-
font-weight: 400; }
|
|
1349
|
-
|
|
1350
|
-
.fa.fa-twitch {
|
|
1351
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1352
|
-
font-weight: 400; }
|
|
1353
|
-
|
|
1354
|
-
.fa.fa-yelp {
|
|
1355
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1356
|
-
font-weight: 400; }
|
|
1357
|
-
|
|
1358
|
-
.fa.fa-newspaper-o {
|
|
1359
|
-
font-family: 'Font Awesome 5 Free';
|
|
1360
|
-
font-weight: 400; }
|
|
1361
|
-
|
|
1362
|
-
.fa.fa-newspaper-o:before {
|
|
1363
|
-
content: "\f1ea"; }
|
|
1364
|
-
|
|
1365
|
-
.fa.fa-paypal {
|
|
1366
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1367
|
-
font-weight: 400; }
|
|
1368
|
-
|
|
1369
|
-
.fa.fa-google-wallet {
|
|
1370
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1371
|
-
font-weight: 400; }
|
|
1372
|
-
|
|
1373
|
-
.fa.fa-cc-visa {
|
|
1374
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1375
|
-
font-weight: 400; }
|
|
1376
|
-
|
|
1377
|
-
.fa.fa-cc-mastercard {
|
|
1378
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1379
|
-
font-weight: 400; }
|
|
1380
|
-
|
|
1381
|
-
.fa.fa-cc-discover {
|
|
1382
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1383
|
-
font-weight: 400; }
|
|
1384
|
-
|
|
1385
|
-
.fa.fa-cc-amex {
|
|
1386
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1387
|
-
font-weight: 400; }
|
|
1388
|
-
|
|
1389
|
-
.fa.fa-cc-paypal {
|
|
1390
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1391
|
-
font-weight: 400; }
|
|
1392
|
-
|
|
1393
|
-
.fa.fa-cc-stripe {
|
|
1394
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1395
|
-
font-weight: 400; }
|
|
1396
|
-
|
|
1397
|
-
.fa.fa-bell-slash-o {
|
|
1398
|
-
font-family: 'Font Awesome 5 Free';
|
|
1399
|
-
font-weight: 400; }
|
|
1400
|
-
|
|
1401
|
-
.fa.fa-bell-slash-o:before {
|
|
1402
|
-
content: "\f1f6"; }
|
|
1403
|
-
|
|
1404
|
-
.fa.fa-trash:before {
|
|
1405
|
-
content: "\f2ed"; }
|
|
1406
|
-
|
|
1407
|
-
.fa.fa-copyright {
|
|
1408
|
-
font-family: 'Font Awesome 5 Free';
|
|
1409
|
-
font-weight: 400; }
|
|
1410
|
-
|
|
1411
|
-
.fa.fa-eyedropper:before {
|
|
1412
|
-
content: "\f1fb"; }
|
|
1413
|
-
|
|
1414
|
-
.fa.fa-area-chart:before {
|
|
1415
|
-
content: "\f1fe"; }
|
|
1416
|
-
|
|
1417
|
-
.fa.fa-pie-chart:before {
|
|
1418
|
-
content: "\f200"; }
|
|
1419
|
-
|
|
1420
|
-
.fa.fa-line-chart:before {
|
|
1421
|
-
content: "\f201"; }
|
|
1422
|
-
|
|
1423
|
-
.fa.fa-lastfm {
|
|
1424
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1425
|
-
font-weight: 400; }
|
|
1426
|
-
|
|
1427
|
-
.fa.fa-lastfm-square {
|
|
1428
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1429
|
-
font-weight: 400; }
|
|
1430
|
-
|
|
1431
|
-
.fa.fa-ioxhost {
|
|
1432
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1433
|
-
font-weight: 400; }
|
|
1434
|
-
|
|
1435
|
-
.fa.fa-angellist {
|
|
1436
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1437
|
-
font-weight: 400; }
|
|
1438
|
-
|
|
1439
|
-
.fa.fa-cc {
|
|
1440
|
-
font-family: 'Font Awesome 5 Free';
|
|
1441
|
-
font-weight: 400; }
|
|
1442
|
-
|
|
1443
|
-
.fa.fa-cc:before {
|
|
1444
|
-
content: "\f20a"; }
|
|
1445
|
-
|
|
1446
|
-
.fa.fa-ils:before {
|
|
1447
|
-
content: "\f20b"; }
|
|
1448
|
-
|
|
1449
|
-
.fa.fa-shekel:before {
|
|
1450
|
-
content: "\f20b"; }
|
|
1451
|
-
|
|
1452
|
-
.fa.fa-sheqel:before {
|
|
1453
|
-
content: "\f20b"; }
|
|
1454
|
-
|
|
1455
|
-
.fa.fa-meanpath {
|
|
1456
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1457
|
-
font-weight: 400; }
|
|
1458
|
-
|
|
1459
|
-
.fa.fa-meanpath:before {
|
|
1460
|
-
content: "\f2b4"; }
|
|
1461
|
-
|
|
1462
|
-
.fa.fa-buysellads {
|
|
1463
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1464
|
-
font-weight: 400; }
|
|
1465
|
-
|
|
1466
|
-
.fa.fa-connectdevelop {
|
|
1467
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1468
|
-
font-weight: 400; }
|
|
1469
|
-
|
|
1470
|
-
.fa.fa-dashcube {
|
|
1471
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1472
|
-
font-weight: 400; }
|
|
1473
|
-
|
|
1474
|
-
.fa.fa-forumbee {
|
|
1475
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1476
|
-
font-weight: 400; }
|
|
1477
|
-
|
|
1478
|
-
.fa.fa-leanpub {
|
|
1479
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1480
|
-
font-weight: 400; }
|
|
1481
|
-
|
|
1482
|
-
.fa.fa-sellsy {
|
|
1483
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1484
|
-
font-weight: 400; }
|
|
1485
|
-
|
|
1486
|
-
.fa.fa-shirtsinbulk {
|
|
1487
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1488
|
-
font-weight: 400; }
|
|
1489
|
-
|
|
1490
|
-
.fa.fa-simplybuilt {
|
|
1491
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1492
|
-
font-weight: 400; }
|
|
1493
|
-
|
|
1494
|
-
.fa.fa-skyatlas {
|
|
1495
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1496
|
-
font-weight: 400; }
|
|
1497
|
-
|
|
1498
|
-
.fa.fa-diamond {
|
|
1499
|
-
font-family: 'Font Awesome 5 Free';
|
|
1500
|
-
font-weight: 400; }
|
|
1501
|
-
|
|
1502
|
-
.fa.fa-diamond:before {
|
|
1503
|
-
content: "\f3a5"; }
|
|
1504
|
-
|
|
1505
|
-
.fa.fa-intersex:before {
|
|
1506
|
-
content: "\f224"; }
|
|
1507
|
-
|
|
1508
|
-
.fa.fa-facebook-official {
|
|
1509
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1510
|
-
font-weight: 400; }
|
|
1511
|
-
|
|
1512
|
-
.fa.fa-facebook-official:before {
|
|
1513
|
-
content: "\f09a"; }
|
|
1514
|
-
|
|
1515
|
-
.fa.fa-pinterest-p {
|
|
1516
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1517
|
-
font-weight: 400; }
|
|
1518
|
-
|
|
1519
|
-
.fa.fa-whatsapp {
|
|
1520
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1521
|
-
font-weight: 400; }
|
|
1522
|
-
|
|
1523
|
-
.fa.fa-hotel:before {
|
|
1524
|
-
content: "\f236"; }
|
|
1525
|
-
|
|
1526
|
-
.fa.fa-viacoin {
|
|
1527
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1528
|
-
font-weight: 400; }
|
|
1529
|
-
|
|
1530
|
-
.fa.fa-medium {
|
|
1531
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1532
|
-
font-weight: 400; }
|
|
1533
|
-
|
|
1534
|
-
.fa.fa-y-combinator {
|
|
1535
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1536
|
-
font-weight: 400; }
|
|
1537
|
-
|
|
1538
|
-
.fa.fa-yc {
|
|
1539
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1540
|
-
font-weight: 400; }
|
|
1541
|
-
|
|
1542
|
-
.fa.fa-yc:before {
|
|
1543
|
-
content: "\f23b"; }
|
|
1544
|
-
|
|
1545
|
-
.fa.fa-optin-monster {
|
|
1546
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1547
|
-
font-weight: 400; }
|
|
1548
|
-
|
|
1549
|
-
.fa.fa-opencart {
|
|
1550
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1551
|
-
font-weight: 400; }
|
|
1552
|
-
|
|
1553
|
-
.fa.fa-expeditedssl {
|
|
1554
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1555
|
-
font-weight: 400; }
|
|
1556
|
-
|
|
1557
|
-
.fa.fa-battery-4:before {
|
|
1558
|
-
content: "\f240"; }
|
|
1559
|
-
|
|
1560
|
-
.fa.fa-battery:before {
|
|
1561
|
-
content: "\f240"; }
|
|
1562
|
-
|
|
1563
|
-
.fa.fa-battery-3:before {
|
|
1564
|
-
content: "\f241"; }
|
|
1565
|
-
|
|
1566
|
-
.fa.fa-battery-2:before {
|
|
1567
|
-
content: "\f242"; }
|
|
1568
|
-
|
|
1569
|
-
.fa.fa-battery-1:before {
|
|
1570
|
-
content: "\f243"; }
|
|
1571
|
-
|
|
1572
|
-
.fa.fa-battery-0:before {
|
|
1573
|
-
content: "\f244"; }
|
|
1574
|
-
|
|
1575
|
-
.fa.fa-object-group {
|
|
1576
|
-
font-family: 'Font Awesome 5 Free';
|
|
1577
|
-
font-weight: 400; }
|
|
1578
|
-
|
|
1579
|
-
.fa.fa-object-ungroup {
|
|
1580
|
-
font-family: 'Font Awesome 5 Free';
|
|
1581
|
-
font-weight: 400; }
|
|
1582
|
-
|
|
1583
|
-
.fa.fa-sticky-note-o {
|
|
1584
|
-
font-family: 'Font Awesome 5 Free';
|
|
1585
|
-
font-weight: 400; }
|
|
1586
|
-
|
|
1587
|
-
.fa.fa-sticky-note-o:before {
|
|
1588
|
-
content: "\f249"; }
|
|
1589
|
-
|
|
1590
|
-
.fa.fa-cc-jcb {
|
|
1591
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1592
|
-
font-weight: 400; }
|
|
1593
|
-
|
|
1594
|
-
.fa.fa-cc-diners-club {
|
|
1595
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1596
|
-
font-weight: 400; }
|
|
1597
|
-
|
|
1598
|
-
.fa.fa-clone {
|
|
1599
|
-
font-family: 'Font Awesome 5 Free';
|
|
1600
|
-
font-weight: 400; }
|
|
1601
|
-
|
|
1602
|
-
.fa.fa-hourglass-o {
|
|
1603
|
-
font-family: 'Font Awesome 5 Free';
|
|
1604
|
-
font-weight: 400; }
|
|
1605
|
-
|
|
1606
|
-
.fa.fa-hourglass-o:before {
|
|
1607
|
-
content: "\f254"; }
|
|
1608
|
-
|
|
1609
|
-
.fa.fa-hourglass-1:before {
|
|
1610
|
-
content: "\f251"; }
|
|
1611
|
-
|
|
1612
|
-
.fa.fa-hourglass-2:before {
|
|
1613
|
-
content: "\f252"; }
|
|
1614
|
-
|
|
1615
|
-
.fa.fa-hourglass-3:before {
|
|
1616
|
-
content: "\f253"; }
|
|
1617
|
-
|
|
1618
|
-
.fa.fa-hand-rock-o {
|
|
1619
|
-
font-family: 'Font Awesome 5 Free';
|
|
1620
|
-
font-weight: 400; }
|
|
1621
|
-
|
|
1622
|
-
.fa.fa-hand-rock-o:before {
|
|
1623
|
-
content: "\f255"; }
|
|
1624
|
-
|
|
1625
|
-
.fa.fa-hand-grab-o {
|
|
1626
|
-
font-family: 'Font Awesome 5 Free';
|
|
1627
|
-
font-weight: 400; }
|
|
1628
|
-
|
|
1629
|
-
.fa.fa-hand-grab-o:before {
|
|
1630
|
-
content: "\f255"; }
|
|
1631
|
-
|
|
1632
|
-
.fa.fa-hand-paper-o {
|
|
1633
|
-
font-family: 'Font Awesome 5 Free';
|
|
1634
|
-
font-weight: 400; }
|
|
1635
|
-
|
|
1636
|
-
.fa.fa-hand-paper-o:before {
|
|
1637
|
-
content: "\f256"; }
|
|
1638
|
-
|
|
1639
|
-
.fa.fa-hand-stop-o {
|
|
1640
|
-
font-family: 'Font Awesome 5 Free';
|
|
1641
|
-
font-weight: 400; }
|
|
1642
|
-
|
|
1643
|
-
.fa.fa-hand-stop-o:before {
|
|
1644
|
-
content: "\f256"; }
|
|
1645
|
-
|
|
1646
|
-
.fa.fa-hand-scissors-o {
|
|
1647
|
-
font-family: 'Font Awesome 5 Free';
|
|
1648
|
-
font-weight: 400; }
|
|
1649
|
-
|
|
1650
|
-
.fa.fa-hand-scissors-o:before {
|
|
1651
|
-
content: "\f257"; }
|
|
1652
|
-
|
|
1653
|
-
.fa.fa-hand-lizard-o {
|
|
1654
|
-
font-family: 'Font Awesome 5 Free';
|
|
1655
|
-
font-weight: 400; }
|
|
1656
|
-
|
|
1657
|
-
.fa.fa-hand-lizard-o:before {
|
|
1658
|
-
content: "\f258"; }
|
|
1659
|
-
|
|
1660
|
-
.fa.fa-hand-spock-o {
|
|
1661
|
-
font-family: 'Font Awesome 5 Free';
|
|
1662
|
-
font-weight: 400; }
|
|
1663
|
-
|
|
1664
|
-
.fa.fa-hand-spock-o:before {
|
|
1665
|
-
content: "\f259"; }
|
|
1666
|
-
|
|
1667
|
-
.fa.fa-hand-pointer-o {
|
|
1668
|
-
font-family: 'Font Awesome 5 Free';
|
|
1669
|
-
font-weight: 400; }
|
|
1670
|
-
|
|
1671
|
-
.fa.fa-hand-pointer-o:before {
|
|
1672
|
-
content: "\f25a"; }
|
|
1673
|
-
|
|
1674
|
-
.fa.fa-hand-peace-o {
|
|
1675
|
-
font-family: 'Font Awesome 5 Free';
|
|
1676
|
-
font-weight: 400; }
|
|
1677
|
-
|
|
1678
|
-
.fa.fa-hand-peace-o:before {
|
|
1679
|
-
content: "\f25b"; }
|
|
1680
|
-
|
|
1681
|
-
.fa.fa-registered {
|
|
1682
|
-
font-family: 'Font Awesome 5 Free';
|
|
1683
|
-
font-weight: 400; }
|
|
1684
|
-
|
|
1685
|
-
.fa.fa-creative-commons {
|
|
1686
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1687
|
-
font-weight: 400; }
|
|
1688
|
-
|
|
1689
|
-
.fa.fa-gg {
|
|
1690
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1691
|
-
font-weight: 400; }
|
|
1692
|
-
|
|
1693
|
-
.fa.fa-gg-circle {
|
|
1694
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1695
|
-
font-weight: 400; }
|
|
1696
|
-
|
|
1697
|
-
.fa.fa-tripadvisor {
|
|
1698
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1699
|
-
font-weight: 400; }
|
|
1700
|
-
|
|
1701
|
-
.fa.fa-odnoklassniki {
|
|
1702
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1703
|
-
font-weight: 400; }
|
|
1704
|
-
|
|
1705
|
-
.fa.fa-odnoklassniki-square {
|
|
1706
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1707
|
-
font-weight: 400; }
|
|
1708
|
-
|
|
1709
|
-
.fa.fa-get-pocket {
|
|
1710
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1711
|
-
font-weight: 400; }
|
|
1712
|
-
|
|
1713
|
-
.fa.fa-wikipedia-w {
|
|
1714
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1715
|
-
font-weight: 400; }
|
|
1716
|
-
|
|
1717
|
-
.fa.fa-safari {
|
|
1718
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1719
|
-
font-weight: 400; }
|
|
1720
|
-
|
|
1721
|
-
.fa.fa-chrome {
|
|
1722
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1723
|
-
font-weight: 400; }
|
|
1724
|
-
|
|
1725
|
-
.fa.fa-firefox {
|
|
1726
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1727
|
-
font-weight: 400; }
|
|
1728
|
-
|
|
1729
|
-
.fa.fa-opera {
|
|
1730
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1731
|
-
font-weight: 400; }
|
|
1732
|
-
|
|
1733
|
-
.fa.fa-internet-explorer {
|
|
1734
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1735
|
-
font-weight: 400; }
|
|
1736
|
-
|
|
1737
|
-
.fa.fa-television:before {
|
|
1738
|
-
content: "\f26c"; }
|
|
1739
|
-
|
|
1740
|
-
.fa.fa-contao {
|
|
1741
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1742
|
-
font-weight: 400; }
|
|
1743
|
-
|
|
1744
|
-
.fa.fa-500px {
|
|
1745
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1746
|
-
font-weight: 400; }
|
|
1747
|
-
|
|
1748
|
-
.fa.fa-amazon {
|
|
1749
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1750
|
-
font-weight: 400; }
|
|
1751
|
-
|
|
1752
|
-
.fa.fa-calendar-plus-o {
|
|
1753
|
-
font-family: 'Font Awesome 5 Free';
|
|
1754
|
-
font-weight: 400; }
|
|
1755
|
-
|
|
1756
|
-
.fa.fa-calendar-plus-o:before {
|
|
1757
|
-
content: "\f271"; }
|
|
1758
|
-
|
|
1759
|
-
.fa.fa-calendar-minus-o {
|
|
1760
|
-
font-family: 'Font Awesome 5 Free';
|
|
1761
|
-
font-weight: 400; }
|
|
1762
|
-
|
|
1763
|
-
.fa.fa-calendar-minus-o:before {
|
|
1764
|
-
content: "\f272"; }
|
|
1765
|
-
|
|
1766
|
-
.fa.fa-calendar-times-o {
|
|
1767
|
-
font-family: 'Font Awesome 5 Free';
|
|
1768
|
-
font-weight: 400; }
|
|
1769
|
-
|
|
1770
|
-
.fa.fa-calendar-times-o:before {
|
|
1771
|
-
content: "\f273"; }
|
|
1772
|
-
|
|
1773
|
-
.fa.fa-calendar-check-o {
|
|
1774
|
-
font-family: 'Font Awesome 5 Free';
|
|
1775
|
-
font-weight: 400; }
|
|
1776
|
-
|
|
1777
|
-
.fa.fa-calendar-check-o:before {
|
|
1778
|
-
content: "\f274"; }
|
|
1779
|
-
|
|
1780
|
-
.fa.fa-map-o {
|
|
1781
|
-
font-family: 'Font Awesome 5 Free';
|
|
1782
|
-
font-weight: 400; }
|
|
1783
|
-
|
|
1784
|
-
.fa.fa-map-o:before {
|
|
1785
|
-
content: "\f279"; }
|
|
1786
|
-
|
|
1787
|
-
.fa.fa-commenting:before {
|
|
1788
|
-
content: "\f4ad"; }
|
|
1789
|
-
|
|
1790
|
-
.fa.fa-commenting-o {
|
|
1791
|
-
font-family: 'Font Awesome 5 Free';
|
|
1792
|
-
font-weight: 400; }
|
|
1793
|
-
|
|
1794
|
-
.fa.fa-commenting-o:before {
|
|
1795
|
-
content: "\f4ad"; }
|
|
1796
|
-
|
|
1797
|
-
.fa.fa-houzz {
|
|
1798
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1799
|
-
font-weight: 400; }
|
|
1800
|
-
|
|
1801
|
-
.fa.fa-vimeo {
|
|
1802
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1803
|
-
font-weight: 400; }
|
|
1804
|
-
|
|
1805
|
-
.fa.fa-vimeo:before {
|
|
1806
|
-
content: "\f27d"; }
|
|
1807
|
-
|
|
1808
|
-
.fa.fa-black-tie {
|
|
1809
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1810
|
-
font-weight: 400; }
|
|
1811
|
-
|
|
1812
|
-
.fa.fa-fonticons {
|
|
1813
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1814
|
-
font-weight: 400; }
|
|
1815
|
-
|
|
1816
|
-
.fa.fa-reddit-alien {
|
|
1817
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1818
|
-
font-weight: 400; }
|
|
1819
|
-
|
|
1820
|
-
.fa.fa-edge {
|
|
1821
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1822
|
-
font-weight: 400; }
|
|
1823
|
-
|
|
1824
|
-
.fa.fa-credit-card-alt:before {
|
|
1825
|
-
content: "\f09d"; }
|
|
1826
|
-
|
|
1827
|
-
.fa.fa-codiepie {
|
|
1828
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1829
|
-
font-weight: 400; }
|
|
1830
|
-
|
|
1831
|
-
.fa.fa-modx {
|
|
1832
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1833
|
-
font-weight: 400; }
|
|
1834
|
-
|
|
1835
|
-
.fa.fa-fort-awesome {
|
|
1836
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1837
|
-
font-weight: 400; }
|
|
1838
|
-
|
|
1839
|
-
.fa.fa-usb {
|
|
1840
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1841
|
-
font-weight: 400; }
|
|
1842
|
-
|
|
1843
|
-
.fa.fa-product-hunt {
|
|
1844
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1845
|
-
font-weight: 400; }
|
|
1846
|
-
|
|
1847
|
-
.fa.fa-mixcloud {
|
|
1848
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1849
|
-
font-weight: 400; }
|
|
1850
|
-
|
|
1851
|
-
.fa.fa-scribd {
|
|
1852
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1853
|
-
font-weight: 400; }
|
|
1854
|
-
|
|
1855
|
-
.fa.fa-pause-circle-o {
|
|
1856
|
-
font-family: 'Font Awesome 5 Free';
|
|
1857
|
-
font-weight: 400; }
|
|
1858
|
-
|
|
1859
|
-
.fa.fa-pause-circle-o:before {
|
|
1860
|
-
content: "\f28b"; }
|
|
1861
|
-
|
|
1862
|
-
.fa.fa-stop-circle-o {
|
|
1863
|
-
font-family: 'Font Awesome 5 Free';
|
|
1864
|
-
font-weight: 400; }
|
|
1865
|
-
|
|
1866
|
-
.fa.fa-stop-circle-o:before {
|
|
1867
|
-
content: "\f28d"; }
|
|
1868
|
-
|
|
1869
|
-
.fa.fa-bluetooth {
|
|
1870
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1871
|
-
font-weight: 400; }
|
|
1872
|
-
|
|
1873
|
-
.fa.fa-bluetooth-b {
|
|
1874
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1875
|
-
font-weight: 400; }
|
|
1876
|
-
|
|
1877
|
-
.fa.fa-gitlab {
|
|
1878
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1879
|
-
font-weight: 400; }
|
|
1880
|
-
|
|
1881
|
-
.fa.fa-wpbeginner {
|
|
1882
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1883
|
-
font-weight: 400; }
|
|
1884
|
-
|
|
1885
|
-
.fa.fa-wpforms {
|
|
1886
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1887
|
-
font-weight: 400; }
|
|
1888
|
-
|
|
1889
|
-
.fa.fa-envira {
|
|
1890
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1891
|
-
font-weight: 400; }
|
|
1892
|
-
|
|
1893
|
-
.fa.fa-wheelchair-alt {
|
|
1894
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1895
|
-
font-weight: 400; }
|
|
1896
|
-
|
|
1897
|
-
.fa.fa-wheelchair-alt:before {
|
|
1898
|
-
content: "\f368"; }
|
|
1899
|
-
|
|
1900
|
-
.fa.fa-question-circle-o {
|
|
1901
|
-
font-family: 'Font Awesome 5 Free';
|
|
1902
|
-
font-weight: 400; }
|
|
1903
|
-
|
|
1904
|
-
.fa.fa-question-circle-o:before {
|
|
1905
|
-
content: "\f059"; }
|
|
1906
|
-
|
|
1907
|
-
.fa.fa-volume-control-phone:before {
|
|
1908
|
-
content: "\f2a0"; }
|
|
1909
|
-
|
|
1910
|
-
.fa.fa-asl-interpreting:before {
|
|
1911
|
-
content: "\f2a3"; }
|
|
1912
|
-
|
|
1913
|
-
.fa.fa-deafness:before {
|
|
1914
|
-
content: "\f2a4"; }
|
|
1915
|
-
|
|
1916
|
-
.fa.fa-hard-of-hearing:before {
|
|
1917
|
-
content: "\f2a4"; }
|
|
1918
|
-
|
|
1919
|
-
.fa.fa-glide {
|
|
1920
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1921
|
-
font-weight: 400; }
|
|
1922
|
-
|
|
1923
|
-
.fa.fa-glide-g {
|
|
1924
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1925
|
-
font-weight: 400; }
|
|
1926
|
-
|
|
1927
|
-
.fa.fa-signing:before {
|
|
1928
|
-
content: "\f2a7"; }
|
|
1929
|
-
|
|
1930
|
-
.fa.fa-viadeo {
|
|
1931
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1932
|
-
font-weight: 400; }
|
|
1933
|
-
|
|
1934
|
-
.fa.fa-viadeo-square {
|
|
1935
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1936
|
-
font-weight: 400; }
|
|
1937
|
-
|
|
1938
|
-
.fa.fa-snapchat {
|
|
1939
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1940
|
-
font-weight: 400; }
|
|
1941
|
-
|
|
1942
|
-
.fa.fa-snapchat-ghost {
|
|
1943
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1944
|
-
font-weight: 400; }
|
|
1945
|
-
|
|
1946
|
-
.fa.fa-snapchat-square {
|
|
1947
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1948
|
-
font-weight: 400; }
|
|
1949
|
-
|
|
1950
|
-
.fa.fa-pied-piper {
|
|
1951
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1952
|
-
font-weight: 400; }
|
|
1953
|
-
|
|
1954
|
-
.fa.fa-first-order {
|
|
1955
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1956
|
-
font-weight: 400; }
|
|
1957
|
-
|
|
1958
|
-
.fa.fa-yoast {
|
|
1959
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1960
|
-
font-weight: 400; }
|
|
1961
|
-
|
|
1962
|
-
.fa.fa-themeisle {
|
|
1963
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1964
|
-
font-weight: 400; }
|
|
1965
|
-
|
|
1966
|
-
.fa.fa-google-plus-official {
|
|
1967
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1968
|
-
font-weight: 400; }
|
|
1969
|
-
|
|
1970
|
-
.fa.fa-google-plus-official:before {
|
|
1971
|
-
content: "\f2b3"; }
|
|
1972
|
-
|
|
1973
|
-
.fa.fa-google-plus-circle {
|
|
1974
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1975
|
-
font-weight: 400; }
|
|
1976
|
-
|
|
1977
|
-
.fa.fa-google-plus-circle:before {
|
|
1978
|
-
content: "\f2b3"; }
|
|
1979
|
-
|
|
1980
|
-
.fa.fa-font-awesome {
|
|
1981
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1982
|
-
font-weight: 400; }
|
|
1983
|
-
|
|
1984
|
-
.fa.fa-fa {
|
|
1985
|
-
font-family: 'Font Awesome 5 Brands';
|
|
1986
|
-
font-weight: 400; }
|
|
1987
|
-
|
|
1988
|
-
.fa.fa-fa:before {
|
|
1989
|
-
content: "\f2b4"; }
|
|
1990
|
-
|
|
1991
|
-
.fa.fa-handshake-o {
|
|
1992
|
-
font-family: 'Font Awesome 5 Free';
|
|
1993
|
-
font-weight: 400; }
|
|
1994
|
-
|
|
1995
|
-
.fa.fa-handshake-o:before {
|
|
1996
|
-
content: "\f2b5"; }
|
|
1997
|
-
|
|
1998
|
-
.fa.fa-envelope-open-o {
|
|
1999
|
-
font-family: 'Font Awesome 5 Free';
|
|
2000
|
-
font-weight: 400; }
|
|
2001
|
-
|
|
2002
|
-
.fa.fa-envelope-open-o:before {
|
|
2003
|
-
content: "\f2b6"; }
|
|
2004
|
-
|
|
2005
|
-
.fa.fa-linode {
|
|
2006
|
-
font-family: 'Font Awesome 5 Brands';
|
|
2007
|
-
font-weight: 400; }
|
|
2008
|
-
|
|
2009
|
-
.fa.fa-address-book-o {
|
|
2010
|
-
font-family: 'Font Awesome 5 Free';
|
|
2011
|
-
font-weight: 400; }
|
|
2012
|
-
|
|
2013
|
-
.fa.fa-address-book-o:before {
|
|
2014
|
-
content: "\f2b9"; }
|
|
2015
|
-
|
|
2016
|
-
.fa.fa-vcard:before {
|
|
2017
|
-
content: "\f2bb"; }
|
|
2018
|
-
|
|
2019
|
-
.fa.fa-address-card-o {
|
|
2020
|
-
font-family: 'Font Awesome 5 Free';
|
|
2021
|
-
font-weight: 400; }
|
|
2022
|
-
|
|
2023
|
-
.fa.fa-address-card-o:before {
|
|
2024
|
-
content: "\f2bb"; }
|
|
2025
|
-
|
|
2026
|
-
.fa.fa-vcard-o {
|
|
2027
|
-
font-family: 'Font Awesome 5 Free';
|
|
2028
|
-
font-weight: 400; }
|
|
2029
|
-
|
|
2030
|
-
.fa.fa-vcard-o:before {
|
|
2031
|
-
content: "\f2bb"; }
|
|
2032
|
-
|
|
2033
|
-
.fa.fa-user-circle-o {
|
|
2034
|
-
font-family: 'Font Awesome 5 Free';
|
|
2035
|
-
font-weight: 400; }
|
|
2036
|
-
|
|
2037
|
-
.fa.fa-user-circle-o:before {
|
|
2038
|
-
content: "\f2bd"; }
|
|
2039
|
-
|
|
2040
|
-
.fa.fa-user-o {
|
|
2041
|
-
font-family: 'Font Awesome 5 Free';
|
|
2042
|
-
font-weight: 400; }
|
|
2043
|
-
|
|
2044
|
-
.fa.fa-user-o:before {
|
|
2045
|
-
content: "\f007"; }
|
|
2046
|
-
|
|
2047
|
-
.fa.fa-id-badge {
|
|
2048
|
-
font-family: 'Font Awesome 5 Free';
|
|
2049
|
-
font-weight: 400; }
|
|
2050
|
-
|
|
2051
|
-
.fa.fa-drivers-license:before {
|
|
2052
|
-
content: "\f2c2"; }
|
|
2053
|
-
|
|
2054
|
-
.fa.fa-id-card-o {
|
|
2055
|
-
font-family: 'Font Awesome 5 Free';
|
|
2056
|
-
font-weight: 400; }
|
|
2057
|
-
|
|
2058
|
-
.fa.fa-id-card-o:before {
|
|
2059
|
-
content: "\f2c2"; }
|
|
2060
|
-
|
|
2061
|
-
.fa.fa-drivers-license-o {
|
|
2062
|
-
font-family: 'Font Awesome 5 Free';
|
|
2063
|
-
font-weight: 400; }
|
|
2064
|
-
|
|
2065
|
-
.fa.fa-drivers-license-o:before {
|
|
2066
|
-
content: "\f2c2"; }
|
|
2067
|
-
|
|
2068
|
-
.fa.fa-quora {
|
|
2069
|
-
font-family: 'Font Awesome 5 Brands';
|
|
2070
|
-
font-weight: 400; }
|
|
2071
|
-
|
|
2072
|
-
.fa.fa-free-code-camp {
|
|
2073
|
-
font-family: 'Font Awesome 5 Brands';
|
|
2074
|
-
font-weight: 400; }
|
|
2075
|
-
|
|
2076
|
-
.fa.fa-telegram {
|
|
2077
|
-
font-family: 'Font Awesome 5 Brands';
|
|
2078
|
-
font-weight: 400; }
|
|
2079
|
-
|
|
2080
|
-
.fa.fa-thermometer-4:before {
|
|
2081
|
-
content: "\f2c7"; }
|
|
2082
|
-
|
|
2083
|
-
.fa.fa-thermometer:before {
|
|
2084
|
-
content: "\f2c7"; }
|
|
2085
|
-
|
|
2086
|
-
.fa.fa-thermometer-3:before {
|
|
2087
|
-
content: "\f2c8"; }
|
|
2088
|
-
|
|
2089
|
-
.fa.fa-thermometer-2:before {
|
|
2090
|
-
content: "\f2c9"; }
|
|
2091
|
-
|
|
2092
|
-
.fa.fa-thermometer-1:before {
|
|
2093
|
-
content: "\f2ca"; }
|
|
2094
|
-
|
|
2095
|
-
.fa.fa-thermometer-0:before {
|
|
2096
|
-
content: "\f2cb"; }
|
|
2097
|
-
|
|
2098
|
-
.fa.fa-bathtub:before {
|
|
2099
|
-
content: "\f2cd"; }
|
|
2100
|
-
|
|
2101
|
-
.fa.fa-s15:before {
|
|
2102
|
-
content: "\f2cd"; }
|
|
2103
|
-
|
|
2104
|
-
.fa.fa-window-maximize {
|
|
2105
|
-
font-family: 'Font Awesome 5 Free';
|
|
2106
|
-
font-weight: 400; }
|
|
2107
|
-
|
|
2108
|
-
.fa.fa-window-restore {
|
|
2109
|
-
font-family: 'Font Awesome 5 Free';
|
|
2110
|
-
font-weight: 400; }
|
|
2111
|
-
|
|
2112
|
-
.fa.fa-times-rectangle:before {
|
|
2113
|
-
content: "\f410"; }
|
|
2114
|
-
|
|
2115
|
-
.fa.fa-window-close-o {
|
|
2116
|
-
font-family: 'Font Awesome 5 Free';
|
|
2117
|
-
font-weight: 400; }
|
|
2118
|
-
|
|
2119
|
-
.fa.fa-window-close-o:before {
|
|
2120
|
-
content: "\f410"; }
|
|
2121
|
-
|
|
2122
|
-
.fa.fa-times-rectangle-o {
|
|
2123
|
-
font-family: 'Font Awesome 5 Free';
|
|
2124
|
-
font-weight: 400; }
|
|
2125
|
-
|
|
2126
|
-
.fa.fa-times-rectangle-o:before {
|
|
2127
|
-
content: "\f410"; }
|
|
2128
|
-
|
|
2129
|
-
.fa.fa-bandcamp {
|
|
2130
|
-
font-family: 'Font Awesome 5 Brands';
|
|
2131
|
-
font-weight: 400; }
|
|
2132
|
-
|
|
2133
|
-
.fa.fa-grav {
|
|
2134
|
-
font-family: 'Font Awesome 5 Brands';
|
|
2135
|
-
font-weight: 400; }
|
|
2136
|
-
|
|
2137
|
-
.fa.fa-etsy {
|
|
2138
|
-
font-family: 'Font Awesome 5 Brands';
|
|
2139
|
-
font-weight: 400; }
|
|
2140
|
-
|
|
2141
|
-
.fa.fa-imdb {
|
|
2142
|
-
font-family: 'Font Awesome 5 Brands';
|
|
2143
|
-
font-weight: 400; }
|
|
2144
|
-
|
|
2145
|
-
.fa.fa-ravelry {
|
|
2146
|
-
font-family: 'Font Awesome 5 Brands';
|
|
2147
|
-
font-weight: 400; }
|
|
2148
|
-
|
|
2149
|
-
.fa.fa-eercast {
|
|
2150
|
-
font-family: 'Font Awesome 5 Brands';
|
|
2151
|
-
font-weight: 400; }
|
|
2152
|
-
|
|
2153
|
-
.fa.fa-eercast:before {
|
|
2154
|
-
content: "\f2da"; }
|
|
2155
|
-
|
|
2156
|
-
.fa.fa-snowflake-o {
|
|
2157
|
-
font-family: 'Font Awesome 5 Free';
|
|
2158
|
-
font-weight: 400; }
|
|
2159
|
-
|
|
2160
|
-
.fa.fa-snowflake-o:before {
|
|
2161
|
-
content: "\f2dc"; }
|
|
2162
|
-
|
|
2163
|
-
.fa.fa-superpowers {
|
|
2164
|
-
font-family: 'Font Awesome 5 Brands';
|
|
2165
|
-
font-weight: 400; }
|
|
2166
|
-
|
|
2167
|
-
.fa.fa-wpexplorer {
|
|
2168
|
-
font-family: 'Font Awesome 5 Brands';
|
|
2169
|
-
font-weight: 400; }
|
|
2170
|
-
|
|
2171
|
-
.fa.fa-cab:before {
|
|
2172
|
-
content: "\f1ba"; }
|