├── .eslintrc.js ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── CI-CD.yml ├── .gitignore ├── LICENSE ├── README.md ├── dist ├── bundle.js ├── index.html └── static │ ├── Backbone │ ├── backbone-min.js │ └── backbone-min.js.map │ ├── Dagre │ ├── dagre.min.js │ └── graphlib.min.js │ ├── DataTables │ ├── Buttons-2.2.3 │ │ ├── css │ │ │ ├── buttons.bootstrap.css │ │ │ ├── buttons.bootstrap.min.css │ │ │ ├── buttons.bootstrap4.css │ │ │ ├── buttons.bootstrap4.min.css │ │ │ ├── buttons.bootstrap5.css │ │ │ ├── buttons.bootstrap5.min.css │ │ │ ├── buttons.bulma.css │ │ │ ├── buttons.bulma.min.css │ │ │ ├── buttons.dataTables.css │ │ │ ├── buttons.dataTables.min.css │ │ │ ├── buttons.foundation.css │ │ │ ├── buttons.foundation.min.css │ │ │ ├── buttons.jqueryui.css │ │ │ ├── buttons.jqueryui.min.css │ │ │ ├── buttons.semanticui.css │ │ │ ├── buttons.semanticui.min.css │ │ │ ├── common.scss │ │ │ └── mixins.scss │ │ └── js │ │ │ ├── buttons.bootstrap.js │ │ │ ├── buttons.bootstrap.min.js │ │ │ ├── buttons.bootstrap4.js │ │ │ ├── buttons.bootstrap4.min.js │ │ │ ├── buttons.bootstrap5.js │ │ │ ├── buttons.bootstrap5.min.js │ │ │ ├── buttons.bulma.js │ │ │ ├── buttons.bulma.min.js │ │ │ ├── buttons.colVis.js │ │ │ ├── buttons.colVis.min.js │ │ │ ├── buttons.dataTables.js │ │ │ ├── buttons.dataTables.min.js │ │ │ ├── buttons.foundation.js │ │ │ ├── buttons.foundation.min.js │ │ │ ├── buttons.html5.js │ │ │ ├── buttons.html5.min.js │ │ │ ├── buttons.jqueryui.js │ │ │ ├── buttons.jqueryui.min.js │ │ │ ├── buttons.print.js │ │ │ ├── buttons.print.min.js │ │ │ ├── buttons.semanticui.js │ │ │ ├── buttons.semanticui.min.js │ │ │ ├── dataTables.buttons.js │ │ │ └── dataTables.buttons.min.js │ ├── ColReorder-1.5.6 │ │ ├── css │ │ │ ├── colReorder.bootstrap.css │ │ │ ├── colReorder.bootstrap.min.css │ │ │ ├── colReorder.bootstrap4.css │ │ │ ├── colReorder.bootstrap4.min.css │ │ │ ├── colReorder.bootstrap5.css │ │ │ ├── colReorder.bootstrap5.min.css │ │ │ ├── colReorder.bulma.css │ │ │ ├── colReorder.bulma.min.css │ │ │ ├── colReorder.dataTables.css │ │ │ ├── colReorder.dataTables.min.css │ │ │ ├── colReorder.foundation.css │ │ │ ├── colReorder.foundation.min.css │ │ │ ├── colReorder.jqueryui.css │ │ │ ├── colReorder.jqueryui.min.css │ │ │ ├── colReorder.semanticui.css │ │ │ └── colReorder.semanticui.min.css │ │ └── js │ │ │ ├── colReorder.bootstrap.js │ │ │ ├── colReorder.bootstrap.min.js │ │ │ ├── colReorder.bootstrap4.js │ │ │ ├── colReorder.bootstrap4.min.js │ │ │ ├── colReorder.bootstrap5.js │ │ │ ├── colReorder.bootstrap5.min.js │ │ │ ├── colReorder.bulma.js │ │ │ ├── colReorder.bulma.min.js │ │ │ ├── colReorder.dataTables.js │ │ │ ├── colReorder.dataTables.min.js │ │ │ ├── colReorder.foundation.js │ │ │ ├── colReorder.foundation.min.js │ │ │ ├── colReorder.jqueryui.js │ │ │ ├── colReorder.jqueryui.min.js │ │ │ ├── colReorder.semanticui.js │ │ │ ├── colReorder.semanticui.min.js │ │ │ ├── dataTables.colReorder.js │ │ │ └── dataTables.colReorder.min.js │ ├── DataTables-1.12.1 │ │ ├── css │ │ │ ├── dataTables.bootstrap.css │ │ │ ├── dataTables.bootstrap.min.css │ │ │ ├── dataTables.bootstrap4.css │ │ │ ├── dataTables.bootstrap4.min.css │ │ │ ├── dataTables.bootstrap5.css │ │ │ ├── dataTables.bootstrap5.min.css │ │ │ ├── dataTables.bulma.css │ │ │ ├── dataTables.bulma.min.css │ │ │ ├── dataTables.dataTables.css │ │ │ ├── dataTables.dataTables.min.css │ │ │ ├── dataTables.foundation.css │ │ │ ├── dataTables.foundation.min.css │ │ │ ├── dataTables.jqueryui.css │ │ │ ├── dataTables.jqueryui.min.css │ │ │ ├── dataTables.semanticui.css │ │ │ ├── dataTables.semanticui.min.css │ │ │ ├── jquery.dataTables.css │ │ │ └── jquery.dataTables.min.css │ │ ├── images │ │ │ ├── sort_asc.png │ │ │ ├── sort_asc_disabled.png │ │ │ ├── sort_both.png │ │ │ ├── sort_desc.png │ │ │ └── sort_desc_disabled.png │ │ └── js │ │ │ ├── dataTables.bootstrap.js │ │ │ ├── dataTables.bootstrap.min.js │ │ │ ├── dataTables.bootstrap4.js │ │ │ ├── dataTables.bootstrap4.min.js │ │ │ ├── dataTables.bootstrap5.js │ │ │ ├── dataTables.bootstrap5.min.js │ │ │ ├── dataTables.bulma.js │ │ │ ├── dataTables.bulma.min.js │ │ │ ├── dataTables.dataTables.js │ │ │ ├── dataTables.dataTables.min.js │ │ │ ├── dataTables.foundation.js │ │ │ ├── dataTables.foundation.min.js │ │ │ ├── dataTables.jqueryui.js │ │ │ ├── dataTables.jqueryui.min.js │ │ │ ├── dataTables.semanticui.js │ │ │ ├── dataTables.semanticui.min.js │ │ │ ├── jquery.dataTables.js │ │ │ └── jquery.dataTables.min.js │ ├── KeyTable-2.7.0 │ │ ├── css │ │ │ ├── keyTable.bootstrap.css │ │ │ ├── keyTable.bootstrap.min.css │ │ │ ├── keyTable.bootstrap4.css │ │ │ ├── keyTable.bootstrap4.min.css │ │ │ ├── keyTable.bootstrap5.css │ │ │ ├── keyTable.bootstrap5.min.css │ │ │ ├── keyTable.bulma.css │ │ │ ├── keyTable.bulma.min.css │ │ │ ├── keyTable.dataTables.css │ │ │ ├── keyTable.dataTables.min.css │ │ │ ├── keyTable.foundation.css │ │ │ ├── keyTable.foundation.min.css │ │ │ ├── keyTable.jqueryui.css │ │ │ ├── keyTable.jqueryui.min.css │ │ │ ├── keyTable.semanticui.css │ │ │ └── keyTable.semanticui.min.css │ │ └── js │ │ │ ├── dataTables.keyTable.js │ │ │ ├── dataTables.keyTable.min.js │ │ │ ├── keyTable.bootstrap.js │ │ │ ├── keyTable.bootstrap.min.js │ │ │ ├── keyTable.bootstrap4.js │ │ │ ├── keyTable.bootstrap4.min.js │ │ │ ├── keyTable.bootstrap5.js │ │ │ ├── keyTable.bootstrap5.min.js │ │ │ ├── keyTable.bulma.js │ │ │ ├── keyTable.bulma.min.js │ │ │ ├── keyTable.dataTables.js │ │ │ ├── keyTable.dataTables.min.js │ │ │ ├── keyTable.foundation.js │ │ │ ├── keyTable.foundation.min.js │ │ │ ├── keyTable.jqueryui.js │ │ │ ├── keyTable.jqueryui.min.js │ │ │ ├── keyTable.semanticui.js │ │ │ └── keyTable.semanticui.min.js │ ├── Responsive-2.3.0 │ │ ├── css │ │ │ ├── responsive.bootstrap.css │ │ │ ├── responsive.bootstrap.min.css │ │ │ ├── responsive.bootstrap4.css │ │ │ ├── responsive.bootstrap4.min.css │ │ │ ├── responsive.bootstrap5.css │ │ │ ├── responsive.bootstrap5.min.css │ │ │ ├── responsive.bulma.css │ │ │ ├── responsive.bulma.min.css │ │ │ ├── responsive.dataTables.css │ │ │ ├── responsive.dataTables.min.css │ │ │ ├── responsive.foundation.css │ │ │ ├── responsive.foundation.min.css │ │ │ ├── responsive.jqueryui.css │ │ │ ├── responsive.jqueryui.min.css │ │ │ ├── responsive.semanticui.css │ │ │ └── responsive.semanticui.min.css │ │ └── js │ │ │ ├── dataTables.responsive.js │ │ │ ├── dataTables.responsive.min.js │ │ │ ├── responsive.bootstrap.js │ │ │ ├── responsive.bootstrap.min.js │ │ │ ├── responsive.bootstrap4.js │ │ │ ├── responsive.bootstrap4.min.js │ │ │ ├── responsive.bootstrap5.js │ │ │ ├── responsive.bootstrap5.min.js │ │ │ ├── responsive.bulma.js │ │ │ ├── responsive.bulma.min.js │ │ │ ├── responsive.dataTables.js │ │ │ ├── responsive.dataTables.min.js │ │ │ ├── responsive.foundation.js │ │ │ ├── responsive.foundation.min.js │ │ │ ├── responsive.jqueryui.js │ │ │ ├── responsive.jqueryui.min.js │ │ │ ├── responsive.semanticui.js │ │ │ └── responsive.semanticui.min.js │ ├── RowReorder-1.2.8 │ │ ├── css │ │ │ ├── rowReorder.bootstrap.css │ │ │ ├── rowReorder.bootstrap.min.css │ │ │ ├── rowReorder.bootstrap4.css │ │ │ ├── rowReorder.bootstrap4.min.css │ │ │ ├── rowReorder.bootstrap5.css │ │ │ ├── rowReorder.bootstrap5.min.css │ │ │ ├── rowReorder.bulma.css │ │ │ ├── rowReorder.bulma.min.css │ │ │ ├── rowReorder.dataTables.css │ │ │ ├── rowReorder.dataTables.min.css │ │ │ ├── rowReorder.foundation.css │ │ │ ├── rowReorder.foundation.min.css │ │ │ ├── rowReorder.jqueryui.css │ │ │ ├── rowReorder.jqueryui.min.css │ │ │ ├── rowReorder.semanticui.css │ │ │ └── rowReorder.semanticui.min.css │ │ └── js │ │ │ ├── dataTables.rowReorder.js │ │ │ ├── dataTables.rowReorder.min.js │ │ │ ├── rowReorder.bootstrap.js │ │ │ ├── rowReorder.bootstrap.min.js │ │ │ ├── rowReorder.bootstrap4.js │ │ │ ├── rowReorder.bootstrap4.min.js │ │ │ ├── rowReorder.bootstrap5.js │ │ │ ├── rowReorder.bootstrap5.min.js │ │ │ ├── rowReorder.bulma.js │ │ │ ├── rowReorder.bulma.min.js │ │ │ ├── rowReorder.dataTables.js │ │ │ ├── rowReorder.dataTables.min.js │ │ │ ├── rowReorder.foundation.js │ │ │ ├── rowReorder.foundation.min.js │ │ │ ├── rowReorder.jqueryui.js │ │ │ ├── rowReorder.jqueryui.min.js │ │ │ ├── rowReorder.semanticui.js │ │ │ └── rowReorder.semanticui.min.js │ ├── datatables.css │ ├── datatables.js │ ├── datatables.min.css │ ├── datatables.min.js │ └── jQuery-3.6.0 │ │ ├── jquery-3.6.0.js │ │ └── jquery-3.6.0.min.js │ ├── JQuery │ └── jquery-3.6.4.min.js │ ├── JointJS │ └── dist │ │ ├── geometry.js │ │ ├── geometry.min.js │ │ ├── joint.core.css │ │ ├── joint.core.js │ │ ├── joint.core.min.css │ │ ├── joint.core.min.js │ │ ├── joint.css │ │ ├── joint.d.ts │ │ ├── joint.js │ │ ├── joint.layout.DirectedGraph.js │ │ ├── joint.layout.DirectedGraph.min.js │ │ ├── joint.min.css │ │ ├── joint.min.js │ │ ├── joint.nowrap.js │ │ ├── joint.nowrap.min.js │ │ ├── joint.shapes.chess.js │ │ ├── joint.shapes.chess.min.js │ │ ├── joint.shapes.devs.js │ │ ├── joint.shapes.devs.min.js │ │ ├── joint.shapes.erd.js │ │ ├── joint.shapes.erd.min.js │ │ ├── joint.shapes.fsa.js │ │ ├── joint.shapes.fsa.min.js │ │ ├── joint.shapes.logic.js │ │ ├── joint.shapes.logic.min.js │ │ ├── joint.shapes.org.js │ │ ├── joint.shapes.org.min.js │ │ ├── joint.shapes.pn.js │ │ ├── joint.shapes.pn.min.js │ │ ├── joint.shapes.uml.js │ │ ├── joint.shapes.uml.min.js │ │ ├── vectorizer.js │ │ ├── vectorizer.min.js │ │ └── version.mjs │ ├── Lodash │ └── lodash.min.js │ ├── bootstrap │ ├── css │ │ ├── bootstrap-grid.css │ │ ├── bootstrap-grid.css.map │ │ ├── bootstrap-grid.min.css │ │ ├── bootstrap-grid.min.css.map │ │ ├── bootstrap-grid.rtl.css │ │ ├── bootstrap-grid.rtl.css.map │ │ ├── bootstrap-grid.rtl.min.css │ │ ├── bootstrap-grid.rtl.min.css.map │ │ ├── bootstrap-reboot.css │ │ ├── bootstrap-reboot.css.map │ │ ├── bootstrap-reboot.min.css │ │ ├── bootstrap-reboot.min.css.map │ │ ├── bootstrap-reboot.rtl.css │ │ ├── bootstrap-reboot.rtl.css.map │ │ ├── bootstrap-reboot.rtl.min.css │ │ ├── bootstrap-reboot.rtl.min.css.map │ │ ├── bootstrap-utilities.css │ │ ├── bootstrap-utilities.css.map │ │ ├── bootstrap-utilities.min.css │ │ ├── bootstrap-utilities.min.css.map │ │ ├── bootstrap-utilities.rtl.css │ │ ├── bootstrap-utilities.rtl.css.map │ │ ├── bootstrap-utilities.rtl.min.css │ │ ├── bootstrap-utilities.rtl.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ ├── bootstrap.rtl.css │ │ ├── bootstrap.rtl.css.map │ │ ├── bootstrap.rtl.min.css │ │ └── bootstrap.rtl.min.css.map │ └── js │ │ ├── bootstrap.bundle.js │ │ ├── bootstrap.bundle.js.map │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.bundle.min.js.map │ │ ├── bootstrap.esm.js │ │ ├── bootstrap.esm.js.map │ │ ├── bootstrap.esm.min.js │ │ ├── bootstrap.esm.min.js.map │ │ ├── bootstrap.js │ │ ├── bootstrap.js.map │ │ ├── bootstrap.min.js │ │ └── bootstrap.min.js.map │ ├── copy.js │ ├── favicon.ico │ ├── fontawesome │ ├── LICENSE.txt │ ├── css │ │ ├── all.css │ │ ├── all.min.css │ │ ├── brands.css │ │ ├── brands.min.css │ │ ├── fontawesome.css │ │ ├── fontawesome.min.css │ │ ├── regular.css │ │ ├── regular.min.css │ │ ├── solid.css │ │ ├── solid.min.css │ │ ├── svg-with-js.css │ │ ├── svg-with-js.min.css │ │ ├── v4-font-face.css │ │ ├── v4-font-face.min.css │ │ ├── v4-shims.css │ │ ├── v4-shims.min.css │ │ ├── v5-font-face.css │ │ └── v5-font-face.min.css │ ├── js │ │ ├── all.js │ │ ├── all.min.js │ │ ├── brands.js │ │ ├── brands.min.js │ │ ├── conflict-detection.js │ │ ├── conflict-detection.min.js │ │ ├── fontawesome.js │ │ ├── fontawesome.min.js │ │ ├── regular.js │ │ ├── regular.min.js │ │ ├── solid.js │ │ ├── solid.min.js │ │ ├── v4-shims.js │ │ └── v4-shims.min.js │ ├── less │ │ ├── _animated.less │ │ ├── _bordered-pulled.less │ │ ├── _core.less │ │ ├── _fixed-width.less │ │ ├── _icons.less │ │ ├── _list.less │ │ ├── _mixins.less │ │ ├── _rotated-flipped.less │ │ ├── _screen-reader.less │ │ ├── _shims.less │ │ ├── _sizing.less │ │ ├── _stacked.less │ │ ├── _variables.less │ │ ├── brands.less │ │ ├── fontawesome.less │ │ ├── regular.less │ │ ├── solid.less │ │ └── v4-shims.less │ ├── metadata │ │ ├── categories.yml │ │ ├── icons.json │ │ ├── icons.yml │ │ ├── shims.json │ │ ├── shims.yml │ │ └── sponsors.yml │ ├── scss │ │ ├── _animated.scss │ │ ├── _bordered-pulled.scss │ │ ├── _core.scss │ │ ├── _fixed-width.scss │ │ ├── _functions.scss │ │ ├── _icons.scss │ │ ├── _list.scss │ │ ├── _mixins.scss │ │ ├── _rotated-flipped.scss │ │ ├── _screen-reader.scss │ │ ├── _shims.scss │ │ ├── _sizing.scss │ │ ├── _stacked.scss │ │ ├── _variables.scss │ │ ├── brands.scss │ │ ├── fontawesome.scss │ │ ├── regular.scss │ │ ├── solid.scss │ │ └── v4-shims.scss │ ├── sprites │ │ ├── brands.svg │ │ ├── regular.svg │ │ └── solid.svg │ ├── svgs │ │ ├── brands │ │ │ ├── 42-group.svg │ │ │ ├── 500px.svg │ │ │ ├── accessible-icon.svg │ │ │ ├── accusoft.svg │ │ │ ├── adn.svg │ │ │ ├── adversal.svg │ │ │ ├── affiliatetheme.svg │ │ │ ├── airbnb.svg │ │ │ ├── algolia.svg │ │ │ ├── alipay.svg │ │ │ ├── amazon-pay.svg │ │ │ ├── amazon.svg │ │ │ ├── amilia.svg │ │ │ ├── android.svg │ │ │ ├── angellist.svg │ │ │ ├── angrycreative.svg │ │ │ ├── angular.svg │ │ │ ├── app-store-ios.svg │ │ │ ├── app-store.svg │ │ │ ├── apper.svg │ │ │ ├── apple-pay.svg │ │ │ ├── apple.svg │ │ │ ├── artstation.svg │ │ │ ├── asymmetrik.svg │ │ │ ├── atlassian.svg │ │ │ ├── audible.svg │ │ │ ├── autoprefixer.svg │ │ │ ├── avianex.svg │ │ │ ├── aviato.svg │ │ │ ├── aws.svg │ │ │ ├── bandcamp.svg │ │ │ ├── battle-net.svg │ │ │ ├── behance-square.svg │ │ │ ├── behance.svg │ │ │ ├── bilibili.svg │ │ │ ├── bimobject.svg │ │ │ ├── bitbucket.svg │ │ │ ├── bitcoin.svg │ │ │ ├── bity.svg │ │ │ ├── black-tie.svg │ │ │ ├── blackberry.svg │ │ │ ├── blogger-b.svg │ │ │ ├── blogger.svg │ │ │ ├── bluetooth-b.svg │ │ │ ├── bluetooth.svg │ │ │ ├── bootstrap.svg │ │ │ ├── bots.svg │ │ │ ├── btc.svg │ │ │ ├── buffer.svg │ │ │ ├── buromobelexperte.svg │ │ │ ├── buy-n-large.svg │ │ │ ├── buysellads.svg │ │ │ ├── canadian-maple-leaf.svg │ │ │ ├── cc-amazon-pay.svg │ │ │ ├── cc-amex.svg │ │ │ ├── cc-apple-pay.svg │ │ │ ├── cc-diners-club.svg │ │ │ ├── cc-discover.svg │ │ │ ├── cc-jcb.svg │ │ │ ├── cc-mastercard.svg │ │ │ ├── cc-paypal.svg │ │ │ ├── cc-stripe.svg │ │ │ ├── cc-visa.svg │ │ │ ├── centercode.svg │ │ │ ├── centos.svg │ │ │ ├── chrome.svg │ │ │ ├── chromecast.svg │ │ │ ├── cloudflare.svg │ │ │ ├── cloudscale.svg │ │ │ ├── cloudsmith.svg │ │ │ ├── cloudversify.svg │ │ │ ├── cmplid.svg │ │ │ ├── codepen.svg │ │ │ ├── codiepie.svg │ │ │ ├── confluence.svg │ │ │ ├── connectdevelop.svg │ │ │ ├── contao.svg │ │ │ ├── cotton-bureau.svg │ │ │ ├── cpanel.svg │ │ │ ├── creative-commons-by.svg │ │ │ ├── creative-commons-nc-eu.svg │ │ │ ├── creative-commons-nc-jp.svg │ │ │ ├── creative-commons-nc.svg │ │ │ ├── creative-commons-nd.svg │ │ │ ├── creative-commons-pd-alt.svg │ │ │ ├── creative-commons-pd.svg │ │ │ ├── creative-commons-remix.svg │ │ │ ├── creative-commons-sa.svg │ │ │ ├── creative-commons-sampling-plus.svg │ │ │ ├── creative-commons-sampling.svg │ │ │ ├── creative-commons-share.svg │ │ │ ├── creative-commons-zero.svg │ │ │ ├── creative-commons.svg │ │ │ ├── critical-role.svg │ │ │ ├── css3-alt.svg │ │ │ ├── css3.svg │ │ │ ├── cuttlefish.svg │ │ │ ├── d-and-d-beyond.svg │ │ │ ├── d-and-d.svg │ │ │ ├── dailymotion.svg │ │ │ ├── dashcube.svg │ │ │ ├── deezer.svg │ │ │ ├── delicious.svg │ │ │ ├── deploydog.svg │ │ │ ├── deskpro.svg │ │ │ ├── dev.svg │ │ │ ├── deviantart.svg │ │ │ ├── dhl.svg │ │ │ ├── diaspora.svg │ │ │ ├── digg.svg │ │ │ ├── digital-ocean.svg │ │ │ ├── discord.svg │ │ │ ├── discourse.svg │ │ │ ├── dochub.svg │ │ │ ├── docker.svg │ │ │ ├── draft2digital.svg │ │ │ ├── dribbble-square.svg │ │ │ ├── dribbble.svg │ │ │ ├── dropbox.svg │ │ │ ├── drupal.svg │ │ │ ├── dyalog.svg │ │ │ ├── earlybirds.svg │ │ │ ├── ebay.svg │ │ │ ├── edge-legacy.svg │ │ │ ├── edge.svg │ │ │ ├── elementor.svg │ │ │ ├── ello.svg │ │ │ ├── ember.svg │ │ │ ├── empire.svg │ │ │ ├── envira.svg │ │ │ ├── erlang.svg │ │ │ ├── ethereum.svg │ │ │ ├── etsy.svg │ │ │ ├── evernote.svg │ │ │ ├── expeditedssl.svg │ │ │ ├── facebook-f.svg │ │ │ ├── facebook-messenger.svg │ │ │ ├── facebook-square.svg │ │ │ ├── facebook.svg │ │ │ ├── fantasy-flight-games.svg │ │ │ ├── fedex.svg │ │ │ ├── fedora.svg │ │ │ ├── figma.svg │ │ │ ├── firefox-browser.svg │ │ │ ├── firefox.svg │ │ │ ├── first-order-alt.svg │ │ │ ├── first-order.svg │ │ │ ├── firstdraft.svg │ │ │ ├── flickr.svg │ │ │ ├── flipboard.svg │ │ │ ├── fly.svg │ │ │ ├── font-awesome.svg │ │ │ ├── fonticons-fi.svg │ │ │ ├── fonticons.svg │ │ │ ├── fort-awesome-alt.svg │ │ │ ├── fort-awesome.svg │ │ │ ├── forumbee.svg │ │ │ ├── foursquare.svg │ │ │ ├── free-code-camp.svg │ │ │ ├── freebsd.svg │ │ │ ├── fulcrum.svg │ │ │ ├── galactic-republic.svg │ │ │ ├── galactic-senate.svg │ │ │ ├── get-pocket.svg │ │ │ ├── gg-circle.svg │ │ │ ├── gg.svg │ │ │ ├── git-alt.svg │ │ │ ├── git-square.svg │ │ │ ├── git.svg │ │ │ ├── github-alt.svg │ │ │ ├── github-square.svg │ │ │ ├── github.svg │ │ │ ├── gitkraken.svg │ │ │ ├── gitlab.svg │ │ │ ├── gitter.svg │ │ │ ├── glide-g.svg │ │ │ ├── glide.svg │ │ │ ├── gofore.svg │ │ │ ├── golang.svg │ │ │ ├── goodreads-g.svg │ │ │ ├── goodreads.svg │ │ │ ├── google-drive.svg │ │ │ ├── google-pay.svg │ │ │ ├── google-play.svg │ │ │ ├── google-plus-g.svg │ │ │ ├── google-plus-square.svg │ │ │ ├── google-plus.svg │ │ │ ├── google-wallet.svg │ │ │ ├── google.svg │ │ │ ├── gratipay.svg │ │ │ ├── grav.svg │ │ │ ├── gripfire.svg │ │ │ ├── grunt.svg │ │ │ ├── guilded.svg │ │ │ ├── gulp.svg │ │ │ ├── hacker-news-square.svg │ │ │ ├── hacker-news.svg │ │ │ ├── hackerrank.svg │ │ │ ├── hashnode.svg │ │ │ ├── hips.svg │ │ │ ├── hire-a-helper.svg │ │ │ ├── hive.svg │ │ │ ├── hooli.svg │ │ │ ├── hornbill.svg │ │ │ ├── hotjar.svg │ │ │ ├── houzz.svg │ │ │ ├── html5.svg │ │ │ ├── hubspot.svg │ │ │ ├── ideal.svg │ │ │ ├── imdb.svg │ │ │ ├── instagram-square.svg │ │ │ ├── instagram.svg │ │ │ ├── instalod.svg │ │ │ ├── intercom.svg │ │ │ ├── internet-explorer.svg │ │ │ ├── invision.svg │ │ │ ├── ioxhost.svg │ │ │ ├── itch-io.svg │ │ │ ├── itunes-note.svg │ │ │ ├── itunes.svg │ │ │ ├── java.svg │ │ │ ├── jedi-order.svg │ │ │ ├── jenkins.svg │ │ │ ├── jira.svg │ │ │ ├── joget.svg │ │ │ ├── joomla.svg │ │ │ ├── js-square.svg │ │ │ ├── js.svg │ │ │ ├── jsfiddle.svg │ │ │ ├── kaggle.svg │ │ │ ├── keybase.svg │ │ │ ├── keycdn.svg │ │ │ ├── kickstarter-k.svg │ │ │ ├── kickstarter.svg │ │ │ ├── korvue.svg │ │ │ ├── laravel.svg │ │ │ ├── lastfm-square.svg │ │ │ ├── lastfm.svg │ │ │ ├── leanpub.svg │ │ │ ├── less.svg │ │ │ ├── line.svg │ │ │ ├── linkedin-in.svg │ │ │ ├── linkedin.svg │ │ │ ├── linode.svg │ │ │ ├── linux.svg │ │ │ ├── lyft.svg │ │ │ ├── magento.svg │ │ │ ├── mailchimp.svg │ │ │ ├── mandalorian.svg │ │ │ ├── markdown.svg │ │ │ ├── mastodon.svg │ │ │ ├── maxcdn.svg │ │ │ ├── mdb.svg │ │ │ ├── medapps.svg │ │ │ ├── medium.svg │ │ │ ├── medrt.svg │ │ │ ├── meetup.svg │ │ │ ├── megaport.svg │ │ │ ├── mendeley.svg │ │ │ ├── microblog.svg │ │ │ ├── microsoft.svg │ │ │ ├── mix.svg │ │ │ ├── mixcloud.svg │ │ │ ├── mixer.svg │ │ │ ├── mizuni.svg │ │ │ ├── modx.svg │ │ │ ├── monero.svg │ │ │ ├── napster.svg │ │ │ ├── neos.svg │ │ │ ├── nfc-directional.svg │ │ │ ├── nfc-symbol.svg │ │ │ ├── nimblr.svg │ │ │ ├── node-js.svg │ │ │ ├── node.svg │ │ │ ├── npm.svg │ │ │ ├── ns8.svg │ │ │ ├── nutritionix.svg │ │ │ ├── octopus-deploy.svg │ │ │ ├── odnoklassniki-square.svg │ │ │ ├── odnoklassniki.svg │ │ │ ├── old-republic.svg │ │ │ ├── opencart.svg │ │ │ ├── openid.svg │ │ │ ├── opera.svg │ │ │ ├── optin-monster.svg │ │ │ ├── orcid.svg │ │ │ ├── osi.svg │ │ │ ├── padlet.svg │ │ │ ├── page4.svg │ │ │ ├── pagelines.svg │ │ │ ├── palfed.svg │ │ │ ├── patreon.svg │ │ │ ├── paypal.svg │ │ │ ├── perbyte.svg │ │ │ ├── periscope.svg │ │ │ ├── phabricator.svg │ │ │ ├── phoenix-framework.svg │ │ │ ├── phoenix-squadron.svg │ │ │ ├── php.svg │ │ │ ├── pied-piper-alt.svg │ │ │ ├── pied-piper-hat.svg │ │ │ ├── pied-piper-pp.svg │ │ │ ├── pied-piper-square.svg │ │ │ ├── pied-piper.svg │ │ │ ├── pinterest-p.svg │ │ │ ├── pinterest-square.svg │ │ │ ├── pinterest.svg │ │ │ ├── pix.svg │ │ │ ├── playstation.svg │ │ │ ├── product-hunt.svg │ │ │ ├── pushed.svg │ │ │ ├── python.svg │ │ │ ├── qq.svg │ │ │ ├── quinscape.svg │ │ │ ├── quora.svg │ │ │ ├── r-project.svg │ │ │ ├── raspberry-pi.svg │ │ │ ├── ravelry.svg │ │ │ ├── react.svg │ │ │ ├── reacteurope.svg │ │ │ ├── readme.svg │ │ │ ├── rebel.svg │ │ │ ├── red-river.svg │ │ │ ├── reddit-alien.svg │ │ │ ├── reddit-square.svg │ │ │ ├── reddit.svg │ │ │ ├── redhat.svg │ │ │ ├── renren.svg │ │ │ ├── replyd.svg │ │ │ ├── researchgate.svg │ │ │ ├── resolving.svg │ │ │ ├── rev.svg │ │ │ ├── rocketchat.svg │ │ │ ├── rockrms.svg │ │ │ ├── rust.svg │ │ │ ├── safari.svg │ │ │ ├── salesforce.svg │ │ │ ├── sass.svg │ │ │ ├── schlix.svg │ │ │ ├── screenpal.svg │ │ │ ├── scribd.svg │ │ │ ├── searchengin.svg │ │ │ ├── sellcast.svg │ │ │ ├── sellsy.svg │ │ │ ├── servicestack.svg │ │ │ ├── shirtsinbulk.svg │ │ │ ├── shopify.svg │ │ │ ├── shopware.svg │ │ │ ├── simplybuilt.svg │ │ │ ├── sistrix.svg │ │ │ ├── sith.svg │ │ │ ├── sitrox.svg │ │ │ ├── sketch.svg │ │ │ ├── skyatlas.svg │ │ │ ├── skype.svg │ │ │ ├── slack.svg │ │ │ ├── slideshare.svg │ │ │ ├── snapchat-square.svg │ │ │ ├── snapchat.svg │ │ │ ├── soundcloud.svg │ │ │ ├── sourcetree.svg │ │ │ ├── speakap.svg │ │ │ ├── speaker-deck.svg │ │ │ ├── spotify.svg │ │ │ ├── square-font-awesome-stroke.svg │ │ │ ├── square-font-awesome.svg │ │ │ ├── squarespace.svg │ │ │ ├── stack-exchange.svg │ │ │ ├── stack-overflow.svg │ │ │ ├── stackpath.svg │ │ │ ├── staylinked.svg │ │ │ ├── steam-square.svg │ │ │ ├── steam-symbol.svg │ │ │ ├── steam.svg │ │ │ ├── sticker-mule.svg │ │ │ ├── strava.svg │ │ │ ├── stripe-s.svg │ │ │ ├── stripe.svg │ │ │ ├── studiovinari.svg │ │ │ ├── stumbleupon-circle.svg │ │ │ ├── stumbleupon.svg │ │ │ ├── superpowers.svg │ │ │ ├── supple.svg │ │ │ ├── suse.svg │ │ │ ├── swift.svg │ │ │ ├── symfony.svg │ │ │ ├── teamspeak.svg │ │ │ ├── telegram.svg │ │ │ ├── tencent-weibo.svg │ │ │ ├── the-red-yeti.svg │ │ │ ├── themeco.svg │ │ │ ├── themeisle.svg │ │ │ ├── think-peaks.svg │ │ │ ├── tiktok.svg │ │ │ ├── trade-federation.svg │ │ │ ├── trello.svg │ │ │ ├── tumblr-square.svg │ │ │ ├── tumblr.svg │ │ │ ├── twitch.svg │ │ │ ├── twitter-square.svg │ │ │ ├── twitter.svg │ │ │ ├── typo3.svg │ │ │ ├── uber.svg │ │ │ ├── ubuntu.svg │ │ │ ├── uikit.svg │ │ │ ├── umbraco.svg │ │ │ ├── uncharted.svg │ │ │ ├── uniregistry.svg │ │ │ ├── unity.svg │ │ │ ├── unsplash.svg │ │ │ ├── untappd.svg │ │ │ ├── ups.svg │ │ │ ├── usb.svg │ │ │ ├── usps.svg │ │ │ ├── ussunnah.svg │ │ │ ├── vaadin.svg │ │ │ ├── viacoin.svg │ │ │ ├── viadeo-square.svg │ │ │ ├── viadeo.svg │ │ │ ├── viber.svg │ │ │ ├── vimeo-square.svg │ │ │ ├── vimeo-v.svg │ │ │ ├── vimeo.svg │ │ │ ├── vine.svg │ │ │ ├── vk.svg │ │ │ ├── vnv.svg │ │ │ ├── vuejs.svg │ │ │ ├── watchman-monitoring.svg │ │ │ ├── waze.svg │ │ │ ├── weebly.svg │ │ │ ├── weibo.svg │ │ │ ├── weixin.svg │ │ │ ├── whatsapp-square.svg │ │ │ ├── whatsapp.svg │ │ │ ├── whmcs.svg │ │ │ ├── wikipedia-w.svg │ │ │ ├── windows.svg │ │ │ ├── wirsindhandwerk.svg │ │ │ ├── wix.svg │ │ │ ├── wizards-of-the-coast.svg │ │ │ ├── wodu.svg │ │ │ ├── wolf-pack-battalion.svg │ │ │ ├── wordpress-simple.svg │ │ │ ├── wordpress.svg │ │ │ ├── wpbeginner.svg │ │ │ ├── wpexplorer.svg │ │ │ ├── wpforms.svg │ │ │ ├── wpressr.svg │ │ │ ├── xbox.svg │ │ │ ├── xing-square.svg │ │ │ ├── xing.svg │ │ │ ├── y-combinator.svg │ │ │ ├── yahoo.svg │ │ │ ├── yammer.svg │ │ │ ├── yandex-international.svg │ │ │ ├── yandex.svg │ │ │ ├── yarn.svg │ │ │ ├── yelp.svg │ │ │ ├── yoast.svg │ │ │ ├── youtube-square.svg │ │ │ ├── youtube.svg │ │ │ └── zhihu.svg │ │ ├── regular │ │ │ ├── address-book.svg │ │ │ ├── address-card.svg │ │ │ ├── bell-slash.svg │ │ │ ├── bell.svg │ │ │ ├── bookmark.svg │ │ │ ├── building.svg │ │ │ ├── calendar-check.svg │ │ │ ├── calendar-days.svg │ │ │ ├── calendar-minus.svg │ │ │ ├── calendar-plus.svg │ │ │ ├── calendar-xmark.svg │ │ │ ├── calendar.svg │ │ │ ├── chart-bar.svg │ │ │ ├── chess-bishop.svg │ │ │ ├── chess-king.svg │ │ │ ├── chess-knight.svg │ │ │ ├── chess-pawn.svg │ │ │ ├── chess-queen.svg │ │ │ ├── chess-rook.svg │ │ │ ├── circle-check.svg │ │ │ ├── circle-dot.svg │ │ │ ├── circle-down.svg │ │ │ ├── circle-left.svg │ │ │ ├── circle-pause.svg │ │ │ ├── circle-play.svg │ │ │ ├── circle-question.svg │ │ │ ├── circle-right.svg │ │ │ ├── circle-stop.svg │ │ │ ├── circle-up.svg │ │ │ ├── circle-user.svg │ │ │ ├── circle-xmark.svg │ │ │ ├── circle.svg │ │ │ ├── clipboard.svg │ │ │ ├── clock.svg │ │ │ ├── clone.svg │ │ │ ├── closed-captioning.svg │ │ │ ├── comment-dots.svg │ │ │ ├── comment.svg │ │ │ ├── comments.svg │ │ │ ├── compass.svg │ │ │ ├── copy.svg │ │ │ ├── copyright.svg │ │ │ ├── credit-card.svg │ │ │ ├── envelope-open.svg │ │ │ ├── envelope.svg │ │ │ ├── eye-slash.svg │ │ │ ├── eye.svg │ │ │ ├── face-angry.svg │ │ │ ├── face-dizzy.svg │ │ │ ├── face-flushed.svg │ │ │ ├── face-frown-open.svg │ │ │ ├── face-frown.svg │ │ │ ├── face-grimace.svg │ │ │ ├── face-grin-beam-sweat.svg │ │ │ ├── face-grin-beam.svg │ │ │ ├── face-grin-hearts.svg │ │ │ ├── face-grin-squint-tears.svg │ │ │ ├── face-grin-squint.svg │ │ │ ├── face-grin-stars.svg │ │ │ ├── face-grin-tears.svg │ │ │ ├── face-grin-tongue-squint.svg │ │ │ ├── face-grin-tongue-wink.svg │ │ │ ├── face-grin-tongue.svg │ │ │ ├── face-grin-wide.svg │ │ │ ├── face-grin-wink.svg │ │ │ ├── face-grin.svg │ │ │ ├── face-kiss-beam.svg │ │ │ ├── face-kiss-wink-heart.svg │ │ │ ├── face-kiss.svg │ │ │ ├── face-laugh-beam.svg │ │ │ ├── face-laugh-squint.svg │ │ │ ├── face-laugh-wink.svg │ │ │ ├── face-laugh.svg │ │ │ ├── face-meh-blank.svg │ │ │ ├── face-meh.svg │ │ │ ├── face-rolling-eyes.svg │ │ │ ├── face-sad-cry.svg │ │ │ ├── face-sad-tear.svg │ │ │ ├── face-smile-beam.svg │ │ │ ├── face-smile-wink.svg │ │ │ ├── face-smile.svg │ │ │ ├── face-surprise.svg │ │ │ ├── face-tired.svg │ │ │ ├── file-audio.svg │ │ │ ├── file-code.svg │ │ │ ├── file-excel.svg │ │ │ ├── file-image.svg │ │ │ ├── file-lines.svg │ │ │ ├── file-pdf.svg │ │ │ ├── file-powerpoint.svg │ │ │ ├── file-video.svg │ │ │ ├── file-word.svg │ │ │ ├── file-zipper.svg │ │ │ ├── file.svg │ │ │ ├── flag.svg │ │ │ ├── floppy-disk.svg │ │ │ ├── folder-closed.svg │ │ │ ├── folder-open.svg │ │ │ ├── folder.svg │ │ │ ├── font-awesome.svg │ │ │ ├── futbol.svg │ │ │ ├── gem.svg │ │ │ ├── hand-back-fist.svg │ │ │ ├── hand-lizard.svg │ │ │ ├── hand-peace.svg │ │ │ ├── hand-point-down.svg │ │ │ ├── hand-point-left.svg │ │ │ ├── hand-point-right.svg │ │ │ ├── hand-point-up.svg │ │ │ ├── hand-pointer.svg │ │ │ ├── hand-scissors.svg │ │ │ ├── hand-spock.svg │ │ │ ├── hand.svg │ │ │ ├── handshake.svg │ │ │ ├── hard-drive.svg │ │ │ ├── heart.svg │ │ │ ├── hospital.svg │ │ │ ├── hourglass.svg │ │ │ ├── id-badge.svg │ │ │ ├── id-card.svg │ │ │ ├── image.svg │ │ │ ├── images.svg │ │ │ ├── keyboard.svg │ │ │ ├── lemon.svg │ │ │ ├── life-ring.svg │ │ │ ├── lightbulb.svg │ │ │ ├── map.svg │ │ │ ├── message.svg │ │ │ ├── money-bill-1.svg │ │ │ ├── moon.svg │ │ │ ├── newspaper.svg │ │ │ ├── note-sticky.svg │ │ │ ├── object-group.svg │ │ │ ├── object-ungroup.svg │ │ │ ├── paper-plane.svg │ │ │ ├── paste.svg │ │ │ ├── pen-to-square.svg │ │ │ ├── rectangle-list.svg │ │ │ ├── rectangle-xmark.svg │ │ │ ├── registered.svg │ │ │ ├── share-from-square.svg │ │ │ ├── snowflake.svg │ │ │ ├── square-caret-down.svg │ │ │ ├── square-caret-left.svg │ │ │ ├── square-caret-right.svg │ │ │ ├── square-caret-up.svg │ │ │ ├── square-check.svg │ │ │ ├── square-full.svg │ │ │ ├── square-minus.svg │ │ │ ├── square-plus.svg │ │ │ ├── square.svg │ │ │ ├── star-half-stroke.svg │ │ │ ├── star-half.svg │ │ │ ├── star.svg │ │ │ ├── sun.svg │ │ │ ├── thumbs-down.svg │ │ │ ├── thumbs-up.svg │ │ │ ├── trash-can.svg │ │ │ ├── user.svg │ │ │ ├── window-maximize.svg │ │ │ ├── window-minimize.svg │ │ │ └── window-restore.svg │ │ └── solid │ │ │ ├── 0.svg │ │ │ ├── 1.svg │ │ │ ├── 2.svg │ │ │ ├── 3.svg │ │ │ ├── 4.svg │ │ │ ├── 5.svg │ │ │ ├── 6.svg │ │ │ ├── 7.svg │ │ │ ├── 8.svg │ │ │ ├── 9.svg │ │ │ ├── a.svg │ │ │ ├── address-book.svg │ │ │ ├── address-card.svg │ │ │ ├── align-center.svg │ │ │ ├── align-justify.svg │ │ │ ├── align-left.svg │ │ │ ├── align-right.svg │ │ │ ├── anchor-circle-check.svg │ │ │ ├── anchor-circle-exclamation.svg │ │ │ ├── anchor-circle-xmark.svg │ │ │ ├── anchor-lock.svg │ │ │ ├── anchor.svg │ │ │ ├── angle-down.svg │ │ │ ├── angle-left.svg │ │ │ ├── angle-right.svg │ │ │ ├── angle-up.svg │ │ │ ├── angles-down.svg │ │ │ ├── angles-left.svg │ │ │ ├── angles-right.svg │ │ │ ├── angles-up.svg │ │ │ ├── ankh.svg │ │ │ ├── apple-whole.svg │ │ │ ├── archway.svg │ │ │ ├── arrow-down-1-9.svg │ │ │ ├── arrow-down-9-1.svg │ │ │ ├── arrow-down-a-z.svg │ │ │ ├── arrow-down-long.svg │ │ │ ├── arrow-down-short-wide.svg │ │ │ ├── arrow-down-up-across-line.svg │ │ │ ├── arrow-down-up-lock.svg │ │ │ ├── arrow-down-wide-short.svg │ │ │ ├── arrow-down-z-a.svg │ │ │ ├── arrow-down.svg │ │ │ ├── arrow-left-long.svg │ │ │ ├── arrow-left.svg │ │ │ ├── arrow-pointer.svg │ │ │ ├── arrow-right-arrow-left.svg │ │ │ ├── arrow-right-from-bracket.svg │ │ │ ├── arrow-right-long.svg │ │ │ ├── arrow-right-to-bracket.svg │ │ │ ├── arrow-right-to-city.svg │ │ │ ├── arrow-right.svg │ │ │ ├── arrow-rotate-left.svg │ │ │ ├── arrow-rotate-right.svg │ │ │ ├── arrow-trend-down.svg │ │ │ ├── arrow-trend-up.svg │ │ │ ├── arrow-turn-down.svg │ │ │ ├── arrow-turn-up.svg │ │ │ ├── arrow-up-1-9.svg │ │ │ ├── arrow-up-9-1.svg │ │ │ ├── arrow-up-a-z.svg │ │ │ ├── arrow-up-from-bracket.svg │ │ │ ├── arrow-up-from-ground-water.svg │ │ │ ├── arrow-up-from-water-pump.svg │ │ │ ├── arrow-up-long.svg │ │ │ ├── arrow-up-right-dots.svg │ │ │ ├── arrow-up-right-from-square.svg │ │ │ ├── arrow-up-short-wide.svg │ │ │ ├── arrow-up-wide-short.svg │ │ │ ├── arrow-up-z-a.svg │ │ │ ├── arrow-up.svg │ │ │ ├── arrows-down-to-line.svg │ │ │ ├── arrows-down-to-people.svg │ │ │ ├── arrows-left-right-to-line.svg │ │ │ ├── arrows-left-right.svg │ │ │ ├── arrows-rotate.svg │ │ │ ├── arrows-spin.svg │ │ │ ├── arrows-split-up-and-left.svg │ │ │ ├── arrows-to-circle.svg │ │ │ ├── arrows-to-dot.svg │ │ │ ├── arrows-to-eye.svg │ │ │ ├── arrows-turn-right.svg │ │ │ ├── arrows-turn-to-dots.svg │ │ │ ├── arrows-up-down-left-right.svg │ │ │ ├── arrows-up-down.svg │ │ │ ├── arrows-up-to-line.svg │ │ │ ├── asterisk.svg │ │ │ ├── at.svg │ │ │ ├── atom.svg │ │ │ ├── audio-description.svg │ │ │ ├── austral-sign.svg │ │ │ ├── award.svg │ │ │ ├── b.svg │ │ │ ├── baby-carriage.svg │ │ │ ├── baby.svg │ │ │ ├── backward-fast.svg │ │ │ ├── backward-step.svg │ │ │ ├── backward.svg │ │ │ ├── bacon.svg │ │ │ ├── bacteria.svg │ │ │ ├── bacterium.svg │ │ │ ├── bag-shopping.svg │ │ │ ├── bahai.svg │ │ │ ├── baht-sign.svg │ │ │ ├── ban-smoking.svg │ │ │ ├── ban.svg │ │ │ ├── bandage.svg │ │ │ ├── barcode.svg │ │ │ ├── bars-progress.svg │ │ │ ├── bars-staggered.svg │ │ │ ├── bars.svg │ │ │ ├── baseball-bat-ball.svg │ │ │ ├── baseball.svg │ │ │ ├── basket-shopping.svg │ │ │ ├── basketball.svg │ │ │ ├── bath.svg │ │ │ ├── battery-empty.svg │ │ │ ├── battery-full.svg │ │ │ ├── battery-half.svg │ │ │ ├── battery-quarter.svg │ │ │ ├── battery-three-quarters.svg │ │ │ ├── bed-pulse.svg │ │ │ ├── bed.svg │ │ │ ├── beer-mug-empty.svg │ │ │ ├── bell-concierge.svg │ │ │ ├── bell-slash.svg │ │ │ ├── bell.svg │ │ │ ├── bezier-curve.svg │ │ │ ├── bicycle.svg │ │ │ ├── binoculars.svg │ │ │ ├── biohazard.svg │ │ │ ├── bitcoin-sign.svg │ │ │ ├── blender-phone.svg │ │ │ ├── blender.svg │ │ │ ├── blog.svg │ │ │ ├── bold.svg │ │ │ ├── bolt-lightning.svg │ │ │ ├── bolt.svg │ │ │ ├── bomb.svg │ │ │ ├── bone.svg │ │ │ ├── bong.svg │ │ │ ├── book-atlas.svg │ │ │ ├── book-bible.svg │ │ │ ├── book-bookmark.svg │ │ │ ├── book-journal-whills.svg │ │ │ ├── book-medical.svg │ │ │ ├── book-open-reader.svg │ │ │ ├── book-open.svg │ │ │ ├── book-quran.svg │ │ │ ├── book-skull.svg │ │ │ ├── book.svg │ │ │ ├── bookmark.svg │ │ │ ├── border-all.svg │ │ │ ├── border-none.svg │ │ │ ├── border-top-left.svg │ │ │ ├── bore-hole.svg │ │ │ ├── bottle-droplet.svg │ │ │ ├── bottle-water.svg │ │ │ ├── bowl-food.svg │ │ │ ├── bowl-rice.svg │ │ │ ├── bowling-ball.svg │ │ │ ├── box-archive.svg │ │ │ ├── box-open.svg │ │ │ ├── box-tissue.svg │ │ │ ├── box.svg │ │ │ ├── boxes-packing.svg │ │ │ ├── boxes-stacked.svg │ │ │ ├── braille.svg │ │ │ ├── brain.svg │ │ │ ├── brazilian-real-sign.svg │ │ │ ├── bread-slice.svg │ │ │ ├── bridge-circle-check.svg │ │ │ ├── bridge-circle-exclamation.svg │ │ │ ├── bridge-circle-xmark.svg │ │ │ ├── bridge-lock.svg │ │ │ ├── bridge-water.svg │ │ │ ├── bridge.svg │ │ │ ├── briefcase-medical.svg │ │ │ ├── briefcase.svg │ │ │ ├── broom-ball.svg │ │ │ ├── broom.svg │ │ │ ├── brush.svg │ │ │ ├── bucket.svg │ │ │ ├── bug-slash.svg │ │ │ ├── bug.svg │ │ │ ├── bugs.svg │ │ │ ├── building-circle-arrow-right.svg │ │ │ ├── building-circle-check.svg │ │ │ ├── building-circle-exclamation.svg │ │ │ ├── building-circle-xmark.svg │ │ │ ├── building-columns.svg │ │ │ ├── building-flag.svg │ │ │ ├── building-lock.svg │ │ │ ├── building-ngo.svg │ │ │ ├── building-shield.svg │ │ │ ├── building-un.svg │ │ │ ├── building-user.svg │ │ │ ├── building-wheat.svg │ │ │ ├── building.svg │ │ │ ├── bullhorn.svg │ │ │ ├── bullseye.svg │ │ │ ├── burger.svg │ │ │ ├── burst.svg │ │ │ ├── bus-simple.svg │ │ │ ├── bus.svg │ │ │ ├── business-time.svg │ │ │ ├── c.svg │ │ │ ├── cake-candles.svg │ │ │ ├── calculator.svg │ │ │ ├── calendar-check.svg │ │ │ ├── calendar-day.svg │ │ │ ├── calendar-days.svg │ │ │ ├── calendar-minus.svg │ │ │ ├── calendar-plus.svg │ │ │ ├── calendar-week.svg │ │ │ ├── calendar-xmark.svg │ │ │ ├── calendar.svg │ │ │ ├── camera-retro.svg │ │ │ ├── camera-rotate.svg │ │ │ ├── camera.svg │ │ │ ├── campground.svg │ │ │ ├── candy-cane.svg │ │ │ ├── cannabis.svg │ │ │ ├── capsules.svg │ │ │ ├── car-battery.svg │ │ │ ├── car-burst.svg │ │ │ ├── car-on.svg │ │ │ ├── car-rear.svg │ │ │ ├── car-side.svg │ │ │ ├── car-tunnel.svg │ │ │ ├── car.svg │ │ │ ├── caravan.svg │ │ │ ├── caret-down.svg │ │ │ ├── caret-left.svg │ │ │ ├── caret-right.svg │ │ │ ├── caret-up.svg │ │ │ ├── carrot.svg │ │ │ ├── cart-arrow-down.svg │ │ │ ├── cart-flatbed-suitcase.svg │ │ │ ├── cart-flatbed.svg │ │ │ ├── cart-plus.svg │ │ │ ├── cart-shopping.svg │ │ │ ├── cash-register.svg │ │ │ ├── cat.svg │ │ │ ├── cedi-sign.svg │ │ │ ├── cent-sign.svg │ │ │ ├── certificate.svg │ │ │ ├── chair.svg │ │ │ ├── chalkboard-user.svg │ │ │ ├── chalkboard.svg │ │ │ ├── champagne-glasses.svg │ │ │ ├── charging-station.svg │ │ │ ├── chart-area.svg │ │ │ ├── chart-bar.svg │ │ │ ├── chart-column.svg │ │ │ ├── chart-gantt.svg │ │ │ ├── chart-line.svg │ │ │ ├── chart-pie.svg │ │ │ ├── chart-simple.svg │ │ │ ├── check-double.svg │ │ │ ├── check-to-slot.svg │ │ │ ├── check.svg │ │ │ ├── cheese.svg │ │ │ ├── chess-bishop.svg │ │ │ ├── chess-board.svg │ │ │ ├── chess-king.svg │ │ │ ├── chess-knight.svg │ │ │ ├── chess-pawn.svg │ │ │ ├── chess-queen.svg │ │ │ ├── chess-rook.svg │ │ │ ├── chess.svg │ │ │ ├── chevron-down.svg │ │ │ ├── chevron-left.svg │ │ │ ├── chevron-right.svg │ │ │ ├── chevron-up.svg │ │ │ ├── child-dress.svg │ │ │ ├── child-reaching.svg │ │ │ ├── child-rifle.svg │ │ │ ├── child.svg │ │ │ ├── children.svg │ │ │ ├── church.svg │ │ │ ├── circle-arrow-down.svg │ │ │ ├── circle-arrow-left.svg │ │ │ ├── circle-arrow-right.svg │ │ │ ├── circle-arrow-up.svg │ │ │ ├── circle-check.svg │ │ │ ├── circle-chevron-down.svg │ │ │ ├── circle-chevron-left.svg │ │ │ ├── circle-chevron-right.svg │ │ │ ├── circle-chevron-up.svg │ │ │ ├── circle-dollar-to-slot.svg │ │ │ ├── circle-dot.svg │ │ │ ├── circle-down.svg │ │ │ ├── circle-exclamation.svg │ │ │ ├── circle-h.svg │ │ │ ├── circle-half-stroke.svg │ │ │ ├── circle-info.svg │ │ │ ├── circle-left.svg │ │ │ ├── circle-minus.svg │ │ │ ├── circle-nodes.svg │ │ │ ├── circle-notch.svg │ │ │ ├── circle-pause.svg │ │ │ ├── circle-play.svg │ │ │ ├── circle-plus.svg │ │ │ ├── circle-question.svg │ │ │ ├── circle-radiation.svg │ │ │ ├── circle-right.svg │ │ │ ├── circle-stop.svg │ │ │ ├── circle-up.svg │ │ │ ├── circle-user.svg │ │ │ ├── circle-xmark.svg │ │ │ ├── circle.svg │ │ │ ├── city.svg │ │ │ ├── clapperboard.svg │ │ │ ├── clipboard-check.svg │ │ │ ├── clipboard-list.svg │ │ │ ├── clipboard-question.svg │ │ │ ├── clipboard-user.svg │ │ │ ├── clipboard.svg │ │ │ ├── clock-rotate-left.svg │ │ │ ├── clock.svg │ │ │ ├── clone.svg │ │ │ ├── closed-captioning.svg │ │ │ ├── cloud-arrow-down.svg │ │ │ ├── cloud-arrow-up.svg │ │ │ ├── cloud-bolt.svg │ │ │ ├── cloud-meatball.svg │ │ │ ├── cloud-moon-rain.svg │ │ │ ├── cloud-moon.svg │ │ │ ├── cloud-rain.svg │ │ │ ├── cloud-showers-heavy.svg │ │ │ ├── cloud-showers-water.svg │ │ │ ├── cloud-sun-rain.svg │ │ │ ├── cloud-sun.svg │ │ │ ├── cloud.svg │ │ │ ├── clover.svg │ │ │ ├── code-branch.svg │ │ │ ├── code-commit.svg │ │ │ ├── code-compare.svg │ │ │ ├── code-fork.svg │ │ │ ├── code-merge.svg │ │ │ ├── code-pull-request.svg │ │ │ ├── code.svg │ │ │ ├── coins.svg │ │ │ ├── colon-sign.svg │ │ │ ├── comment-dollar.svg │ │ │ ├── comment-dots.svg │ │ │ ├── comment-medical.svg │ │ │ ├── comment-slash.svg │ │ │ ├── comment-sms.svg │ │ │ ├── comment.svg │ │ │ ├── comments-dollar.svg │ │ │ ├── comments.svg │ │ │ ├── compact-disc.svg │ │ │ ├── compass-drafting.svg │ │ │ ├── compass.svg │ │ │ ├── compress.svg │ │ │ ├── computer-mouse.svg │ │ │ ├── computer.svg │ │ │ ├── cookie-bite.svg │ │ │ ├── cookie.svg │ │ │ ├── copy.svg │ │ │ ├── copyright.svg │ │ │ ├── couch.svg │ │ │ ├── cow.svg │ │ │ ├── credit-card.svg │ │ │ ├── crop-simple.svg │ │ │ ├── crop.svg │ │ │ ├── cross.svg │ │ │ ├── crosshairs.svg │ │ │ ├── crow.svg │ │ │ ├── crown.svg │ │ │ ├── crutch.svg │ │ │ ├── cruzeiro-sign.svg │ │ │ ├── cube.svg │ │ │ ├── cubes-stacked.svg │ │ │ ├── cubes.svg │ │ │ ├── d.svg │ │ │ ├── database.svg │ │ │ ├── delete-left.svg │ │ │ ├── democrat.svg │ │ │ ├── desktop.svg │ │ │ ├── dharmachakra.svg │ │ │ ├── diagram-next.svg │ │ │ ├── diagram-predecessor.svg │ │ │ ├── diagram-project.svg │ │ │ ├── diagram-successor.svg │ │ │ ├── diamond-turn-right.svg │ │ │ ├── diamond.svg │ │ │ ├── dice-d20.svg │ │ │ ├── dice-d6.svg │ │ │ ├── dice-five.svg │ │ │ ├── dice-four.svg │ │ │ ├── dice-one.svg │ │ │ ├── dice-six.svg │ │ │ ├── dice-three.svg │ │ │ ├── dice-two.svg │ │ │ ├── dice.svg │ │ │ ├── disease.svg │ │ │ ├── display.svg │ │ │ ├── divide.svg │ │ │ ├── dna.svg │ │ │ ├── dog.svg │ │ │ ├── dollar-sign.svg │ │ │ ├── dolly.svg │ │ │ ├── dong-sign.svg │ │ │ ├── door-closed.svg │ │ │ ├── door-open.svg │ │ │ ├── dove.svg │ │ │ ├── down-left-and-up-right-to-center.svg │ │ │ ├── down-long.svg │ │ │ ├── download.svg │ │ │ ├── dragon.svg │ │ │ ├── draw-polygon.svg │ │ │ ├── droplet-slash.svg │ │ │ ├── droplet.svg │ │ │ ├── drum-steelpan.svg │ │ │ ├── drum.svg │ │ │ ├── drumstick-bite.svg │ │ │ ├── dumbbell.svg │ │ │ ├── dumpster-fire.svg │ │ │ ├── dumpster.svg │ │ │ ├── dungeon.svg │ │ │ ├── e.svg │ │ │ ├── ear-deaf.svg │ │ │ ├── ear-listen.svg │ │ │ ├── earth-africa.svg │ │ │ ├── earth-americas.svg │ │ │ ├── earth-asia.svg │ │ │ ├── earth-europe.svg │ │ │ ├── earth-oceania.svg │ │ │ ├── egg.svg │ │ │ ├── eject.svg │ │ │ ├── elevator.svg │ │ │ ├── ellipsis-vertical.svg │ │ │ ├── ellipsis.svg │ │ │ ├── envelope-circle-check.svg │ │ │ ├── envelope-open-text.svg │ │ │ ├── envelope-open.svg │ │ │ ├── envelope.svg │ │ │ ├── envelopes-bulk.svg │ │ │ ├── equals.svg │ │ │ ├── eraser.svg │ │ │ ├── ethernet.svg │ │ │ ├── euro-sign.svg │ │ │ ├── exclamation.svg │ │ │ ├── expand.svg │ │ │ ├── explosion.svg │ │ │ ├── eye-dropper.svg │ │ │ ├── eye-low-vision.svg │ │ │ ├── eye-slash.svg │ │ │ ├── eye.svg │ │ │ ├── f.svg │ │ │ ├── face-angry.svg │ │ │ ├── face-dizzy.svg │ │ │ ├── face-flushed.svg │ │ │ ├── face-frown-open.svg │ │ │ ├── face-frown.svg │ │ │ ├── face-grimace.svg │ │ │ ├── face-grin-beam-sweat.svg │ │ │ ├── face-grin-beam.svg │ │ │ ├── face-grin-hearts.svg │ │ │ ├── face-grin-squint-tears.svg │ │ │ ├── face-grin-squint.svg │ │ │ ├── face-grin-stars.svg │ │ │ ├── face-grin-tears.svg │ │ │ ├── face-grin-tongue-squint.svg │ │ │ ├── face-grin-tongue-wink.svg │ │ │ ├── face-grin-tongue.svg │ │ │ ├── face-grin-wide.svg │ │ │ ├── face-grin-wink.svg │ │ │ ├── face-grin.svg │ │ │ ├── face-kiss-beam.svg │ │ │ ├── face-kiss-wink-heart.svg │ │ │ ├── face-kiss.svg │ │ │ ├── face-laugh-beam.svg │ │ │ ├── face-laugh-squint.svg │ │ │ ├── face-laugh-wink.svg │ │ │ ├── face-laugh.svg │ │ │ ├── face-meh-blank.svg │ │ │ ├── face-meh.svg │ │ │ ├── face-rolling-eyes.svg │ │ │ ├── face-sad-cry.svg │ │ │ ├── face-sad-tear.svg │ │ │ ├── face-smile-beam.svg │ │ │ ├── face-smile-wink.svg │ │ │ ├── face-smile.svg │ │ │ ├── face-surprise.svg │ │ │ ├── face-tired.svg │ │ │ ├── fan.svg │ │ │ ├── faucet-drip.svg │ │ │ ├── faucet.svg │ │ │ ├── fax.svg │ │ │ ├── feather-pointed.svg │ │ │ ├── feather.svg │ │ │ ├── ferry.svg │ │ │ ├── file-arrow-down.svg │ │ │ ├── file-arrow-up.svg │ │ │ ├── file-audio.svg │ │ │ ├── file-circle-check.svg │ │ │ ├── file-circle-exclamation.svg │ │ │ ├── file-circle-minus.svg │ │ │ ├── file-circle-plus.svg │ │ │ ├── file-circle-question.svg │ │ │ ├── file-circle-xmark.svg │ │ │ ├── file-code.svg │ │ │ ├── file-contract.svg │ │ │ ├── file-csv.svg │ │ │ ├── file-excel.svg │ │ │ ├── file-export.svg │ │ │ ├── file-image.svg │ │ │ ├── file-import.svg │ │ │ ├── file-invoice-dollar.svg │ │ │ ├── file-invoice.svg │ │ │ ├── file-lines.svg │ │ │ ├── file-medical.svg │ │ │ ├── file-pdf.svg │ │ │ ├── file-pen.svg │ │ │ ├── file-powerpoint.svg │ │ │ ├── file-prescription.svg │ │ │ ├── file-shield.svg │ │ │ ├── file-signature.svg │ │ │ ├── file-video.svg │ │ │ ├── file-waveform.svg │ │ │ ├── file-word.svg │ │ │ ├── file-zipper.svg │ │ │ ├── file.svg │ │ │ ├── fill-drip.svg │ │ │ ├── fill.svg │ │ │ ├── film.svg │ │ │ ├── filter-circle-dollar.svg │ │ │ ├── filter-circle-xmark.svg │ │ │ ├── filter.svg │ │ │ ├── fingerprint.svg │ │ │ ├── fire-burner.svg │ │ │ ├── fire-extinguisher.svg │ │ │ ├── fire-flame-curved.svg │ │ │ ├── fire-flame-simple.svg │ │ │ ├── fire.svg │ │ │ ├── fish-fins.svg │ │ │ ├── fish.svg │ │ │ ├── flag-checkered.svg │ │ │ ├── flag-usa.svg │ │ │ ├── flag.svg │ │ │ ├── flask-vial.svg │ │ │ ├── flask.svg │ │ │ ├── floppy-disk.svg │ │ │ ├── florin-sign.svg │ │ │ ├── folder-closed.svg │ │ │ ├── folder-minus.svg │ │ │ ├── folder-open.svg │ │ │ ├── folder-plus.svg │ │ │ ├── folder-tree.svg │ │ │ ├── folder.svg │ │ │ ├── font-awesome.svg │ │ │ ├── font.svg │ │ │ ├── football.svg │ │ │ ├── forward-fast.svg │ │ │ ├── forward-step.svg │ │ │ ├── forward.svg │ │ │ ├── franc-sign.svg │ │ │ ├── frog.svg │ │ │ ├── futbol.svg │ │ │ ├── g.svg │ │ │ ├── gamepad.svg │ │ │ ├── gas-pump.svg │ │ │ ├── gauge-high.svg │ │ │ ├── gauge-simple-high.svg │ │ │ ├── gauge-simple.svg │ │ │ ├── gauge.svg │ │ │ ├── gavel.svg │ │ │ ├── gear.svg │ │ │ ├── gears.svg │ │ │ ├── gem.svg │ │ │ ├── genderless.svg │ │ │ ├── ghost.svg │ │ │ ├── gift.svg │ │ │ ├── gifts.svg │ │ │ ├── glass-water-droplet.svg │ │ │ ├── glass-water.svg │ │ │ ├── glasses.svg │ │ │ ├── globe.svg │ │ │ ├── golf-ball-tee.svg │ │ │ ├── gopuram.svg │ │ │ ├── graduation-cap.svg │ │ │ ├── greater-than-equal.svg │ │ │ ├── greater-than.svg │ │ │ ├── grip-lines-vertical.svg │ │ │ ├── grip-lines.svg │ │ │ ├── grip-vertical.svg │ │ │ ├── grip.svg │ │ │ ├── group-arrows-rotate.svg │ │ │ ├── guarani-sign.svg │ │ │ ├── guitar.svg │ │ │ ├── gun.svg │ │ │ ├── h.svg │ │ │ ├── hammer.svg │ │ │ ├── hamsa.svg │ │ │ ├── hand-back-fist.svg │ │ │ ├── hand-dots.svg │ │ │ ├── hand-fist.svg │ │ │ ├── hand-holding-dollar.svg │ │ │ ├── hand-holding-droplet.svg │ │ │ ├── hand-holding-hand.svg │ │ │ ├── hand-holding-heart.svg │ │ │ ├── hand-holding-medical.svg │ │ │ ├── hand-holding.svg │ │ │ ├── hand-lizard.svg │ │ │ ├── hand-middle-finger.svg │ │ │ ├── hand-peace.svg │ │ │ ├── hand-point-down.svg │ │ │ ├── hand-point-left.svg │ │ │ ├── hand-point-right.svg │ │ │ ├── hand-point-up.svg │ │ │ ├── hand-pointer.svg │ │ │ ├── hand-scissors.svg │ │ │ ├── hand-sparkles.svg │ │ │ ├── hand-spock.svg │ │ │ ├── hand.svg │ │ │ ├── handcuffs.svg │ │ │ ├── hands-asl-interpreting.svg │ │ │ ├── hands-bound.svg │ │ │ ├── hands-bubbles.svg │ │ │ ├── hands-clapping.svg │ │ │ ├── hands-holding-child.svg │ │ │ ├── hands-holding-circle.svg │ │ │ ├── hands-holding.svg │ │ │ ├── hands-praying.svg │ │ │ ├── hands.svg │ │ │ ├── handshake-angle.svg │ │ │ ├── handshake-simple-slash.svg │ │ │ ├── handshake-simple.svg │ │ │ ├── handshake-slash.svg │ │ │ ├── handshake.svg │ │ │ ├── hanukiah.svg │ │ │ ├── hard-drive.svg │ │ │ ├── hashtag.svg │ │ │ ├── hat-cowboy-side.svg │ │ │ ├── hat-cowboy.svg │ │ │ ├── hat-wizard.svg │ │ │ ├── head-side-cough-slash.svg │ │ │ ├── head-side-cough.svg │ │ │ ├── head-side-mask.svg │ │ │ ├── head-side-virus.svg │ │ │ ├── heading.svg │ │ │ ├── headphones-simple.svg │ │ │ ├── headphones.svg │ │ │ ├── headset.svg │ │ │ ├── heart-circle-bolt.svg │ │ │ ├── heart-circle-check.svg │ │ │ ├── heart-circle-exclamation.svg │ │ │ ├── heart-circle-minus.svg │ │ │ ├── heart-circle-plus.svg │ │ │ ├── heart-circle-xmark.svg │ │ │ ├── heart-crack.svg │ │ │ ├── heart-pulse.svg │ │ │ ├── heart.svg │ │ │ ├── helicopter-symbol.svg │ │ │ ├── helicopter.svg │ │ │ ├── helmet-safety.svg │ │ │ ├── helmet-un.svg │ │ │ ├── highlighter.svg │ │ │ ├── hill-avalanche.svg │ │ │ ├── hill-rockslide.svg │ │ │ ├── hippo.svg │ │ │ ├── hockey-puck.svg │ │ │ ├── holly-berry.svg │ │ │ ├── horse-head.svg │ │ │ ├── horse.svg │ │ │ ├── hospital-user.svg │ │ │ ├── hospital.svg │ │ │ ├── hot-tub-person.svg │ │ │ ├── hotdog.svg │ │ │ ├── hotel.svg │ │ │ ├── hourglass-empty.svg │ │ │ ├── hourglass-end.svg │ │ │ ├── hourglass-start.svg │ │ │ ├── hourglass.svg │ │ │ ├── house-chimney-crack.svg │ │ │ ├── house-chimney-medical.svg │ │ │ ├── house-chimney-user.svg │ │ │ ├── house-chimney-window.svg │ │ │ ├── house-chimney.svg │ │ │ ├── house-circle-check.svg │ │ │ ├── house-circle-exclamation.svg │ │ │ ├── house-circle-xmark.svg │ │ │ ├── house-crack.svg │ │ │ ├── house-fire.svg │ │ │ ├── house-flag.svg │ │ │ ├── house-flood-water-circle-arrow-right.svg │ │ │ ├── house-flood-water.svg │ │ │ ├── house-laptop.svg │ │ │ ├── house-lock.svg │ │ │ ├── house-medical-circle-check.svg │ │ │ ├── house-medical-circle-exclamation.svg │ │ │ ├── house-medical-circle-xmark.svg │ │ │ ├── house-medical-flag.svg │ │ │ ├── house-medical.svg │ │ │ ├── house-signal.svg │ │ │ ├── house-tsunami.svg │ │ │ ├── house-user.svg │ │ │ ├── house.svg │ │ │ ├── hryvnia-sign.svg │ │ │ ├── hurricane.svg │ │ │ ├── i-cursor.svg │ │ │ ├── i.svg │ │ │ ├── ice-cream.svg │ │ │ ├── icicles.svg │ │ │ ├── icons.svg │ │ │ ├── id-badge.svg │ │ │ ├── id-card-clip.svg │ │ │ ├── id-card.svg │ │ │ ├── igloo.svg │ │ │ ├── image-portrait.svg │ │ │ ├── image.svg │ │ │ ├── images.svg │ │ │ ├── inbox.svg │ │ │ ├── indent.svg │ │ │ ├── indian-rupee-sign.svg │ │ │ ├── industry.svg │ │ │ ├── infinity.svg │ │ │ ├── info.svg │ │ │ ├── italic.svg │ │ │ ├── j.svg │ │ │ ├── jar-wheat.svg │ │ │ ├── jar.svg │ │ │ ├── jedi.svg │ │ │ ├── jet-fighter-up.svg │ │ │ ├── jet-fighter.svg │ │ │ ├── joint.svg │ │ │ ├── jug-detergent.svg │ │ │ ├── k.svg │ │ │ ├── kaaba.svg │ │ │ ├── key.svg │ │ │ ├── keyboard.svg │ │ │ ├── khanda.svg │ │ │ ├── kip-sign.svg │ │ │ ├── kit-medical.svg │ │ │ ├── kitchen-set.svg │ │ │ ├── kiwi-bird.svg │ │ │ ├── l.svg │ │ │ ├── land-mine-on.svg │ │ │ ├── landmark-dome.svg │ │ │ ├── landmark-flag.svg │ │ │ ├── landmark.svg │ │ │ ├── language.svg │ │ │ ├── laptop-code.svg │ │ │ ├── laptop-file.svg │ │ │ ├── laptop-medical.svg │ │ │ ├── laptop.svg │ │ │ ├── lari-sign.svg │ │ │ ├── layer-group.svg │ │ │ ├── leaf.svg │ │ │ ├── left-long.svg │ │ │ ├── left-right.svg │ │ │ ├── lemon.svg │ │ │ ├── less-than-equal.svg │ │ │ ├── less-than.svg │ │ │ ├── life-ring.svg │ │ │ ├── lightbulb.svg │ │ │ ├── lines-leaning.svg │ │ │ ├── link-slash.svg │ │ │ ├── link.svg │ │ │ ├── lira-sign.svg │ │ │ ├── list-check.svg │ │ │ ├── list-ol.svg │ │ │ ├── list-ul.svg │ │ │ ├── list.svg │ │ │ ├── litecoin-sign.svg │ │ │ ├── location-arrow.svg │ │ │ ├── location-crosshairs.svg │ │ │ ├── location-dot.svg │ │ │ ├── location-pin-lock.svg │ │ │ ├── location-pin.svg │ │ │ ├── lock-open.svg │ │ │ ├── lock.svg │ │ │ ├── locust.svg │ │ │ ├── lungs-virus.svg │ │ │ ├── lungs.svg │ │ │ ├── m.svg │ │ │ ├── magnet.svg │ │ │ ├── magnifying-glass-arrow-right.svg │ │ │ ├── magnifying-glass-chart.svg │ │ │ ├── magnifying-glass-dollar.svg │ │ │ ├── magnifying-glass-location.svg │ │ │ ├── magnifying-glass-minus.svg │ │ │ ├── magnifying-glass-plus.svg │ │ │ ├── magnifying-glass.svg │ │ │ ├── manat-sign.svg │ │ │ ├── map-location-dot.svg │ │ │ ├── map-location.svg │ │ │ ├── map-pin.svg │ │ │ ├── map.svg │ │ │ ├── marker.svg │ │ │ ├── mars-and-venus-burst.svg │ │ │ ├── mars-and-venus.svg │ │ │ ├── mars-double.svg │ │ │ ├── mars-stroke-right.svg │ │ │ ├── mars-stroke-up.svg │ │ │ ├── mars-stroke.svg │ │ │ ├── mars.svg │ │ │ ├── martini-glass-citrus.svg │ │ │ ├── martini-glass-empty.svg │ │ │ ├── martini-glass.svg │ │ │ ├── mask-face.svg │ │ │ ├── mask-ventilator.svg │ │ │ ├── mask.svg │ │ │ ├── masks-theater.svg │ │ │ ├── mattress-pillow.svg │ │ │ ├── maximize.svg │ │ │ ├── medal.svg │ │ │ ├── memory.svg │ │ │ ├── menorah.svg │ │ │ ├── mercury.svg │ │ │ ├── message.svg │ │ │ ├── meteor.svg │ │ │ ├── microchip.svg │ │ │ ├── microphone-lines-slash.svg │ │ │ ├── microphone-lines.svg │ │ │ ├── microphone-slash.svg │ │ │ ├── microphone.svg │ │ │ ├── microscope.svg │ │ │ ├── mill-sign.svg │ │ │ ├── minimize.svg │ │ │ ├── minus.svg │ │ │ ├── mitten.svg │ │ │ ├── mobile-button.svg │ │ │ ├── mobile-retro.svg │ │ │ ├── mobile-screen-button.svg │ │ │ ├── mobile-screen.svg │ │ │ ├── mobile.svg │ │ │ ├── money-bill-1-wave.svg │ │ │ ├── money-bill-1.svg │ │ │ ├── money-bill-transfer.svg │ │ │ ├── money-bill-trend-up.svg │ │ │ ├── money-bill-wave.svg │ │ │ ├── money-bill-wheat.svg │ │ │ ├── money-bill.svg │ │ │ ├── money-bills.svg │ │ │ ├── money-check-dollar.svg │ │ │ ├── money-check.svg │ │ │ ├── monument.svg │ │ │ ├── moon.svg │ │ │ ├── mortar-pestle.svg │ │ │ ├── mosque.svg │ │ │ ├── mosquito-net.svg │ │ │ ├── mosquito.svg │ │ │ ├── motorcycle.svg │ │ │ ├── mound.svg │ │ │ ├── mountain-city.svg │ │ │ ├── mountain-sun.svg │ │ │ ├── mountain.svg │ │ │ ├── mug-hot.svg │ │ │ ├── mug-saucer.svg │ │ │ ├── music.svg │ │ │ ├── n.svg │ │ │ ├── naira-sign.svg │ │ │ ├── network-wired.svg │ │ │ ├── neuter.svg │ │ │ ├── newspaper.svg │ │ │ ├── not-equal.svg │ │ │ ├── note-sticky.svg │ │ │ ├── notes-medical.svg │ │ │ ├── o.svg │ │ │ ├── object-group.svg │ │ │ ├── object-ungroup.svg │ │ │ ├── oil-can.svg │ │ │ ├── oil-well.svg │ │ │ ├── om.svg │ │ │ ├── otter.svg │ │ │ ├── outdent.svg │ │ │ ├── p.svg │ │ │ ├── pager.svg │ │ │ ├── paint-roller.svg │ │ │ ├── paintbrush.svg │ │ │ ├── palette.svg │ │ │ ├── pallet.svg │ │ │ ├── panorama.svg │ │ │ ├── paper-plane.svg │ │ │ ├── paperclip.svg │ │ │ ├── parachute-box.svg │ │ │ ├── paragraph.svg │ │ │ ├── passport.svg │ │ │ ├── paste.svg │ │ │ ├── pause.svg │ │ │ ├── paw.svg │ │ │ ├── peace.svg │ │ │ ├── pen-clip.svg │ │ │ ├── pen-fancy.svg │ │ │ ├── pen-nib.svg │ │ │ ├── pen-ruler.svg │ │ │ ├── pen-to-square.svg │ │ │ ├── pen.svg │ │ │ ├── pencil.svg │ │ │ ├── people-arrows-left-right.svg │ │ │ ├── people-carry-box.svg │ │ │ ├── people-group.svg │ │ │ ├── people-line.svg │ │ │ ├── people-pulling.svg │ │ │ ├── people-robbery.svg │ │ │ ├── people-roof.svg │ │ │ ├── pepper-hot.svg │ │ │ ├── percent.svg │ │ │ ├── person-arrow-down-to-line.svg │ │ │ ├── person-arrow-up-from-line.svg │ │ │ ├── person-biking.svg │ │ │ ├── person-booth.svg │ │ │ ├── person-breastfeeding.svg │ │ │ ├── person-burst.svg │ │ │ ├── person-cane.svg │ │ │ ├── person-chalkboard.svg │ │ │ ├── person-circle-check.svg │ │ │ ├── person-circle-exclamation.svg │ │ │ ├── person-circle-minus.svg │ │ │ ├── person-circle-plus.svg │ │ │ ├── person-circle-question.svg │ │ │ ├── person-circle-xmark.svg │ │ │ ├── person-digging.svg │ │ │ ├── person-dots-from-line.svg │ │ │ ├── person-dress-burst.svg │ │ │ ├── person-dress.svg │ │ │ ├── person-drowning.svg │ │ │ ├── person-falling-burst.svg │ │ │ ├── person-falling.svg │ │ │ ├── person-half-dress.svg │ │ │ ├── person-harassing.svg │ │ │ ├── person-hiking.svg │ │ │ ├── person-military-pointing.svg │ │ │ ├── person-military-rifle.svg │ │ │ ├── person-military-to-person.svg │ │ │ ├── person-praying.svg │ │ │ ├── person-pregnant.svg │ │ │ ├── person-rays.svg │ │ │ ├── person-rifle.svg │ │ │ ├── person-running.svg │ │ │ ├── person-shelter.svg │ │ │ ├── person-skating.svg │ │ │ ├── person-skiing-nordic.svg │ │ │ ├── person-skiing.svg │ │ │ ├── person-snowboarding.svg │ │ │ ├── person-swimming.svg │ │ │ ├── person-through-window.svg │ │ │ ├── person-walking-arrow-loop-left.svg │ │ │ ├── person-walking-arrow-right.svg │ │ │ ├── person-walking-dashed-line-arrow-right.svg │ │ │ ├── person-walking-luggage.svg │ │ │ ├── person-walking-with-cane.svg │ │ │ ├── person-walking.svg │ │ │ ├── person.svg │ │ │ ├── peseta-sign.svg │ │ │ ├── peso-sign.svg │ │ │ ├── phone-flip.svg │ │ │ ├── phone-slash.svg │ │ │ ├── phone-volume.svg │ │ │ ├── phone.svg │ │ │ ├── photo-film.svg │ │ │ ├── piggy-bank.svg │ │ │ ├── pills.svg │ │ │ ├── pizza-slice.svg │ │ │ ├── place-of-worship.svg │ │ │ ├── plane-arrival.svg │ │ │ ├── plane-circle-check.svg │ │ │ ├── plane-circle-exclamation.svg │ │ │ ├── plane-circle-xmark.svg │ │ │ ├── plane-departure.svg │ │ │ ├── plane-lock.svg │ │ │ ├── plane-slash.svg │ │ │ ├── plane-up.svg │ │ │ ├── plane.svg │ │ │ ├── plant-wilt.svg │ │ │ ├── plate-wheat.svg │ │ │ ├── play.svg │ │ │ ├── plug-circle-bolt.svg │ │ │ ├── plug-circle-check.svg │ │ │ ├── plug-circle-exclamation.svg │ │ │ ├── plug-circle-minus.svg │ │ │ ├── plug-circle-plus.svg │ │ │ ├── plug-circle-xmark.svg │ │ │ ├── plug.svg │ │ │ ├── plus-minus.svg │ │ │ ├── plus.svg │ │ │ ├── podcast.svg │ │ │ ├── poo-storm.svg │ │ │ ├── poo.svg │ │ │ ├── poop.svg │ │ │ ├── power-off.svg │ │ │ ├── prescription-bottle-medical.svg │ │ │ ├── prescription-bottle.svg │ │ │ ├── prescription.svg │ │ │ ├── print.svg │ │ │ ├── pump-medical.svg │ │ │ ├── pump-soap.svg │ │ │ ├── puzzle-piece.svg │ │ │ ├── q.svg │ │ │ ├── qrcode.svg │ │ │ ├── question.svg │ │ │ ├── quote-left.svg │ │ │ ├── quote-right.svg │ │ │ ├── r.svg │ │ │ ├── radiation.svg │ │ │ ├── radio.svg │ │ │ ├── rainbow.svg │ │ │ ├── ranking-star.svg │ │ │ ├── receipt.svg │ │ │ ├── record-vinyl.svg │ │ │ ├── rectangle-ad.svg │ │ │ ├── rectangle-list.svg │ │ │ ├── rectangle-xmark.svg │ │ │ ├── recycle.svg │ │ │ ├── registered.svg │ │ │ ├── repeat.svg │ │ │ ├── reply-all.svg │ │ │ ├── reply.svg │ │ │ ├── republican.svg │ │ │ ├── restroom.svg │ │ │ ├── retweet.svg │ │ │ ├── ribbon.svg │ │ │ ├── right-from-bracket.svg │ │ │ ├── right-left.svg │ │ │ ├── right-long.svg │ │ │ ├── right-to-bracket.svg │ │ │ ├── ring.svg │ │ │ ├── road-barrier.svg │ │ │ ├── road-bridge.svg │ │ │ ├── road-circle-check.svg │ │ │ ├── road-circle-exclamation.svg │ │ │ ├── road-circle-xmark.svg │ │ │ ├── road-lock.svg │ │ │ ├── road-spikes.svg │ │ │ ├── road.svg │ │ │ ├── robot.svg │ │ │ ├── rocket.svg │ │ │ ├── rotate-left.svg │ │ │ ├── rotate-right.svg │ │ │ ├── rotate.svg │ │ │ ├── route.svg │ │ │ ├── rss.svg │ │ │ ├── ruble-sign.svg │ │ │ ├── rug.svg │ │ │ ├── ruler-combined.svg │ │ │ ├── ruler-horizontal.svg │ │ │ ├── ruler-vertical.svg │ │ │ ├── ruler.svg │ │ │ ├── rupee-sign.svg │ │ │ ├── rupiah-sign.svg │ │ │ ├── s.svg │ │ │ ├── sack-dollar.svg │ │ │ ├── sack-xmark.svg │ │ │ ├── sailboat.svg │ │ │ ├── satellite-dish.svg │ │ │ ├── satellite.svg │ │ │ ├── scale-balanced.svg │ │ │ ├── scale-unbalanced-flip.svg │ │ │ ├── scale-unbalanced.svg │ │ │ ├── school-circle-check.svg │ │ │ ├── school-circle-exclamation.svg │ │ │ ├── school-circle-xmark.svg │ │ │ ├── school-flag.svg │ │ │ ├── school-lock.svg │ │ │ ├── school.svg │ │ │ ├── scissors.svg │ │ │ ├── screwdriver-wrench.svg │ │ │ ├── screwdriver.svg │ │ │ ├── scroll-torah.svg │ │ │ ├── scroll.svg │ │ │ ├── sd-card.svg │ │ │ ├── section.svg │ │ │ ├── seedling.svg │ │ │ ├── server.svg │ │ │ ├── shapes.svg │ │ │ ├── share-from-square.svg │ │ │ ├── share-nodes.svg │ │ │ ├── share.svg │ │ │ ├── sheet-plastic.svg │ │ │ ├── shekel-sign.svg │ │ │ ├── shield-cat.svg │ │ │ ├── shield-dog.svg │ │ │ ├── shield-halved.svg │ │ │ ├── shield-heart.svg │ │ │ ├── shield-virus.svg │ │ │ ├── shield.svg │ │ │ ├── ship.svg │ │ │ ├── shirt.svg │ │ │ ├── shoe-prints.svg │ │ │ ├── shop-lock.svg │ │ │ ├── shop-slash.svg │ │ │ ├── shop.svg │ │ │ ├── shower.svg │ │ │ ├── shrimp.svg │ │ │ ├── shuffle.svg │ │ │ ├── shuttle-space.svg │ │ │ ├── sign-hanging.svg │ │ │ ├── signal.svg │ │ │ ├── signature.svg │ │ │ ├── signs-post.svg │ │ │ ├── sim-card.svg │ │ │ ├── sink.svg │ │ │ ├── sitemap.svg │ │ │ ├── skull-crossbones.svg │ │ │ ├── skull.svg │ │ │ ├── slash.svg │ │ │ ├── sleigh.svg │ │ │ ├── sliders.svg │ │ │ ├── smog.svg │ │ │ ├── smoking.svg │ │ │ ├── snowflake.svg │ │ │ ├── snowman.svg │ │ │ ├── snowplow.svg │ │ │ ├── soap.svg │ │ │ ├── socks.svg │ │ │ ├── solar-panel.svg │ │ │ ├── sort-down.svg │ │ │ ├── sort-up.svg │ │ │ ├── sort.svg │ │ │ ├── spa.svg │ │ │ ├── spaghetti-monster-flying.svg │ │ │ ├── spell-check.svg │ │ │ ├── spider.svg │ │ │ ├── spinner.svg │ │ │ ├── splotch.svg │ │ │ ├── spoon.svg │ │ │ ├── spray-can-sparkles.svg │ │ │ ├── spray-can.svg │ │ │ ├── square-arrow-up-right.svg │ │ │ ├── square-caret-down.svg │ │ │ ├── square-caret-left.svg │ │ │ ├── square-caret-right.svg │ │ │ ├── square-caret-up.svg │ │ │ ├── square-check.svg │ │ │ ├── square-envelope.svg │ │ │ ├── square-full.svg │ │ │ ├── square-h.svg │ │ │ ├── square-minus.svg │ │ │ ├── square-nfi.svg │ │ │ ├── square-parking.svg │ │ │ ├── square-pen.svg │ │ │ ├── square-person-confined.svg │ │ │ ├── square-phone-flip.svg │ │ │ ├── square-phone.svg │ │ │ ├── square-plus.svg │ │ │ ├── square-poll-horizontal.svg │ │ │ ├── square-poll-vertical.svg │ │ │ ├── square-root-variable.svg │ │ │ ├── square-rss.svg │ │ │ ├── square-share-nodes.svg │ │ │ ├── square-up-right.svg │ │ │ ├── square-virus.svg │ │ │ ├── square-xmark.svg │ │ │ ├── square.svg │ │ │ ├── staff-aesculapius.svg │ │ │ ├── stairs.svg │ │ │ ├── stamp.svg │ │ │ ├── star-and-crescent.svg │ │ │ ├── star-half-stroke.svg │ │ │ ├── star-half.svg │ │ │ ├── star-of-david.svg │ │ │ ├── star-of-life.svg │ │ │ ├── star.svg │ │ │ ├── sterling-sign.svg │ │ │ ├── stethoscope.svg │ │ │ ├── stop.svg │ │ │ ├── stopwatch-20.svg │ │ │ ├── stopwatch.svg │ │ │ ├── store-slash.svg │ │ │ ├── store.svg │ │ │ ├── street-view.svg │ │ │ ├── strikethrough.svg │ │ │ ├── stroopwafel.svg │ │ │ ├── subscript.svg │ │ │ ├── suitcase-medical.svg │ │ │ ├── suitcase-rolling.svg │ │ │ ├── suitcase.svg │ │ │ ├── sun-plant-wilt.svg │ │ │ ├── sun.svg │ │ │ ├── superscript.svg │ │ │ ├── swatchbook.svg │ │ │ ├── synagogue.svg │ │ │ ├── syringe.svg │ │ │ ├── t.svg │ │ │ ├── table-cells-large.svg │ │ │ ├── table-cells.svg │ │ │ ├── table-columns.svg │ │ │ ├── table-list.svg │ │ │ ├── table-tennis-paddle-ball.svg │ │ │ ├── table.svg │ │ │ ├── tablet-button.svg │ │ │ ├── tablet-screen-button.svg │ │ │ ├── tablet.svg │ │ │ ├── tablets.svg │ │ │ ├── tachograph-digital.svg │ │ │ ├── tag.svg │ │ │ ├── tags.svg │ │ │ ├── tape.svg │ │ │ ├── tarp-droplet.svg │ │ │ ├── tarp.svg │ │ │ ├── taxi.svg │ │ │ ├── teeth-open.svg │ │ │ ├── teeth.svg │ │ │ ├── temperature-arrow-down.svg │ │ │ ├── temperature-arrow-up.svg │ │ │ ├── temperature-empty.svg │ │ │ ├── temperature-full.svg │ │ │ ├── temperature-half.svg │ │ │ ├── temperature-high.svg │ │ │ ├── temperature-low.svg │ │ │ ├── temperature-quarter.svg │ │ │ ├── temperature-three-quarters.svg │ │ │ ├── tenge-sign.svg │ │ │ ├── tent-arrow-down-to-line.svg │ │ │ ├── tent-arrow-left-right.svg │ │ │ ├── tent-arrow-turn-left.svg │ │ │ ├── tent-arrows-down.svg │ │ │ ├── tent.svg │ │ │ ├── tents.svg │ │ │ ├── terminal.svg │ │ │ ├── text-height.svg │ │ │ ├── text-slash.svg │ │ │ ├── text-width.svg │ │ │ ├── thermometer.svg │ │ │ ├── thumbs-down.svg │ │ │ ├── thumbs-up.svg │ │ │ ├── thumbtack.svg │ │ │ ├── ticket-simple.svg │ │ │ ├── ticket.svg │ │ │ ├── timeline.svg │ │ │ ├── toggle-off.svg │ │ │ ├── toggle-on.svg │ │ │ ├── toilet-paper-slash.svg │ │ │ ├── toilet-paper.svg │ │ │ ├── toilet-portable.svg │ │ │ ├── toilet.svg │ │ │ ├── toilets-portable.svg │ │ │ ├── toolbox.svg │ │ │ ├── tooth.svg │ │ │ ├── torii-gate.svg │ │ │ ├── tornado.svg │ │ │ ├── tower-broadcast.svg │ │ │ ├── tower-cell.svg │ │ │ ├── tower-observation.svg │ │ │ ├── tractor.svg │ │ │ ├── trademark.svg │ │ │ ├── traffic-light.svg │ │ │ ├── trailer.svg │ │ │ ├── train-subway.svg │ │ │ ├── train-tram.svg │ │ │ ├── train.svg │ │ │ ├── transgender.svg │ │ │ ├── trash-arrow-up.svg │ │ │ ├── trash-can-arrow-up.svg │ │ │ ├── trash-can.svg │ │ │ ├── trash.svg │ │ │ ├── tree-city.svg │ │ │ ├── tree.svg │ │ │ ├── triangle-exclamation.svg │ │ │ ├── trophy.svg │ │ │ ├── trowel-bricks.svg │ │ │ ├── trowel.svg │ │ │ ├── truck-arrow-right.svg │ │ │ ├── truck-droplet.svg │ │ │ ├── truck-fast.svg │ │ │ ├── truck-field-un.svg │ │ │ ├── truck-field.svg │ │ │ ├── truck-front.svg │ │ │ ├── truck-medical.svg │ │ │ ├── truck-monster.svg │ │ │ ├── truck-moving.svg │ │ │ ├── truck-pickup.svg │ │ │ ├── truck-plane.svg │ │ │ ├── truck-ramp-box.svg │ │ │ ├── truck.svg │ │ │ ├── tty.svg │ │ │ ├── turkish-lira-sign.svg │ │ │ ├── turn-down.svg │ │ │ ├── turn-up.svg │ │ │ ├── tv.svg │ │ │ ├── u.svg │ │ │ ├── umbrella-beach.svg │ │ │ ├── umbrella.svg │ │ │ ├── underline.svg │ │ │ ├── universal-access.svg │ │ │ ├── unlock-keyhole.svg │ │ │ ├── unlock.svg │ │ │ ├── up-down-left-right.svg │ │ │ ├── up-down.svg │ │ │ ├── up-long.svg │ │ │ ├── up-right-and-down-left-from-center.svg │ │ │ ├── up-right-from-square.svg │ │ │ ├── upload.svg │ │ │ ├── user-astronaut.svg │ │ │ ├── user-check.svg │ │ │ ├── user-clock.svg │ │ │ ├── user-doctor.svg │ │ │ ├── user-gear.svg │ │ │ ├── user-graduate.svg │ │ │ ├── user-group.svg │ │ │ ├── user-injured.svg │ │ │ ├── user-large-slash.svg │ │ │ ├── user-large.svg │ │ │ ├── user-lock.svg │ │ │ ├── user-minus.svg │ │ │ ├── user-ninja.svg │ │ │ ├── user-nurse.svg │ │ │ ├── user-pen.svg │ │ │ ├── user-plus.svg │ │ │ ├── user-secret.svg │ │ │ ├── user-shield.svg │ │ │ ├── user-slash.svg │ │ │ ├── user-tag.svg │ │ │ ├── user-tie.svg │ │ │ ├── user-xmark.svg │ │ │ ├── user.svg │ │ │ ├── users-between-lines.svg │ │ │ ├── users-gear.svg │ │ │ ├── users-line.svg │ │ │ ├── users-rays.svg │ │ │ ├── users-rectangle.svg │ │ │ ├── users-slash.svg │ │ │ ├── users-viewfinder.svg │ │ │ ├── users.svg │ │ │ ├── utensils.svg │ │ │ ├── v.svg │ │ │ ├── van-shuttle.svg │ │ │ ├── vault.svg │ │ │ ├── vector-square.svg │ │ │ ├── venus-double.svg │ │ │ ├── venus-mars.svg │ │ │ ├── venus.svg │ │ │ ├── vest-patches.svg │ │ │ ├── vest.svg │ │ │ ├── vial-circle-check.svg │ │ │ ├── vial-virus.svg │ │ │ ├── vial.svg │ │ │ ├── vials.svg │ │ │ ├── video-slash.svg │ │ │ ├── video.svg │ │ │ ├── vihara.svg │ │ │ ├── virus-covid-slash.svg │ │ │ ├── virus-covid.svg │ │ │ ├── virus-slash.svg │ │ │ ├── virus.svg │ │ │ ├── viruses.svg │ │ │ ├── voicemail.svg │ │ │ ├── volcano.svg │ │ │ ├── volleyball.svg │ │ │ ├── volume-high.svg │ │ │ ├── volume-low.svg │ │ │ ├── volume-off.svg │ │ │ ├── volume-xmark.svg │ │ │ ├── vr-cardboard.svg │ │ │ ├── w.svg │ │ │ ├── walkie-talkie.svg │ │ │ ├── wallet.svg │ │ │ ├── wand-magic-sparkles.svg │ │ │ ├── wand-magic.svg │ │ │ ├── wand-sparkles.svg │ │ │ ├── warehouse.svg │ │ │ ├── water-ladder.svg │ │ │ ├── water.svg │ │ │ ├── wave-square.svg │ │ │ ├── weight-hanging.svg │ │ │ ├── weight-scale.svg │ │ │ ├── wheat-awn-circle-exclamation.svg │ │ │ ├── wheat-awn.svg │ │ │ ├── wheelchair-move.svg │ │ │ ├── wheelchair.svg │ │ │ ├── whiskey-glass.svg │ │ │ ├── wifi.svg │ │ │ ├── wind.svg │ │ │ ├── window-maximize.svg │ │ │ ├── window-minimize.svg │ │ │ ├── window-restore.svg │ │ │ ├── wine-bottle.svg │ │ │ ├── wine-glass-empty.svg │ │ │ ├── wine-glass.svg │ │ │ ├── won-sign.svg │ │ │ ├── worm.svg │ │ │ ├── wrench.svg │ │ │ ├── x-ray.svg │ │ │ ├── x.svg │ │ │ ├── xmark.svg │ │ │ ├── xmarks-lines.svg │ │ │ ├── y.svg │ │ │ ├── yen-sign.svg │ │ │ ├── yin-yang.svg │ │ │ └── z.svg │ └── webfonts │ │ ├── fa-brands-400.ttf │ │ ├── fa-brands-400.woff2 │ │ ├── fa-regular-400.ttf │ │ ├── fa-regular-400.woff2 │ │ ├── fa-solid-900.ttf │ │ ├── fa-solid-900.woff2 │ │ ├── fa-v4compatibility.ttf │ │ └── fa-v4compatibility.woff2 │ ├── jquery-ui-1.13.2 │ ├── AUTHORS.txt │ ├── LICENSE.txt │ ├── external │ │ └── jquery │ │ │ └── jquery.js │ ├── images │ │ ├── ui-icons_444444_256x240.png │ │ ├── ui-icons_555555_256x240.png │ │ ├── ui-icons_777620_256x240.png │ │ ├── ui-icons_777777_256x240.png │ │ ├── ui-icons_cc0000_256x240.png │ │ └── ui-icons_ffffff_256x240.png │ ├── index.html │ ├── jquery-ui.css │ ├── jquery-ui.js │ ├── jquery-ui.min.css │ ├── jquery-ui.min.js │ ├── jquery-ui.structure.css │ ├── jquery-ui.structure.min.css │ ├── jquery-ui.theme.css │ ├── jquery-ui.theme.min.css │ └── package.json │ ├── jquery-ui-touch-punch │ └── jquery.ui.touch-punch.min.js │ ├── logo.png │ ├── popper │ ├── popper.min.js │ └── popper.min.js.map │ ├── style.css │ ├── table.js │ └── tooltips.js ├── package.json ├── src ├── attribs.js ├── default_neighbors.js ├── diagram.js ├── index.js ├── multiple-links.js ├── neighbors.js ├── short_attribs.js ├── split_detect.js └── tests │ ├── cdp_addresses_dedup.test.js │ ├── cdp_attribs_ios_wap.test.js │ ├── cdp_attribs_iosxr.test.js │ ├── cdp_attribs_nxos_ios.test.js │ ├── cdp_detect_ios_wap.test.js │ ├── cdp_detect_nxos_ios.test.js │ ├── cdp_no_addresses.test.js │ ├── cdp_split_and_detect_ios.test.js │ ├── cdp_split_ios.test.js │ ├── cdp_split_nxos.test.js │ ├── get_neighbors.test.js │ ├── lldp_attribs_ios_wap.test.js │ ├── lldp_attribs_nxos_linux.test.js │ ├── lldp_detect_ios_wap.test.js │ ├── lldp_detect_nxos_linux.test.js │ ├── lldp_not_address.test.js │ ├── lldp_split_and_detect_ios.test.js │ ├── lldp_split_nxos.test.js │ ├── mixed_split_and_detect_ios.test.js │ ├── mixeddetailshort_split_and_detect.test.js │ ├── mixedshort_detect.test.js │ ├── mixedshort_split.test.js │ ├── samples │ ├── cdp_ios_empty_blocks.js │ ├── cdp_ios_multiple_various.js │ ├── cdp_ios_wap.js │ ├── cdp_iosxr.js │ ├── cdp_nxos_empty_blocks.js │ ├── cdp_nxos_switch.js │ ├── cdp_vmware_no_addresses.js │ ├── cdpshort_ios.js │ ├── cdpshort_ios_no_bottom.js │ ├── cdpshort_iosxe.js │ ├── cdpshort_mixed.js │ ├── cdpshort_nxos.js │ ├── lldp_ios_multiple_various.js │ ├── lldp_ios_wap.js │ ├── lldp_nxos_empty_blocks.js │ ├── lldp_nxos_linux.js │ ├── lldp_nxos_not_address.js │ ├── lldpshort_ios.js │ ├── lldpshort_iosxe.js │ ├── lldpshort_mixed.js │ ├── lldpshort_nxos.js │ ├── lldpshort_nxos_whitespace.js │ ├── mixed_ios_multiple.js │ └── template.js │ ├── short_attribs.test.js │ └── shorten.test.js └── webpack.config.js /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | env: { 4 | browser: true, 5 | commonjs: true 6 | }, 7 | extends: [ 8 | 'standard' 9 | ], 10 | parserOptions: { 11 | ecmaVersion: 'latest' 12 | }, 13 | rules: { 14 | strict: 2, 15 | 'no-multiple-empty-lines': [ 16 | 'error', { 17 | max: 1 18 | } 19 | ] 20 | }, 21 | overrides: [ 22 | { 23 | files: [ 24 | '**/*.js' 25 | ], 26 | env: { 27 | jest: true 28 | } 29 | } 30 | ] 31 | } 32 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | dist/static/bootstrap/** linguist-vendored 2 | dist/static/DataTables/** linguist-vendored 3 | dist/static/fontawesome/** linguist-vendored 4 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us improve 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Describe The Bug** 11 | A clear and concise description of the buggy behavior you experience. 12 | 13 | **Sanitized Neighbor Output** 14 | 15 | ``` 16 | SW1#show cdp neighbors 17 | ... Replace output with yours ... 18 | ``` 19 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea for this project 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Is your feature request related to a problem? Please describe.** 11 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] 12 | 13 | **Describe the solution you'd like** 14 | A clear and concise description of what you want to happen. 15 | 16 | **Additional context** 17 | Add any other context or screenshots about the feature request here. 18 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | package-lock.json 3 | coverage/ 4 | -------------------------------------------------------------------------------- /dist/static/DataTables/Buttons-2.2.3/js/buttons.dataTables.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | DataTables styling wrapper for Buttons 3 | ©2018 SpryMedia Ltd - datatables.net/license 4 | */ 5 | (function(c){"function"===typeof define&&define.amd?define(["jquery","datatables.net-dt","datatables.net-buttons"],function(a){return c(a,window,document)}):"object"===typeof exports?module.exports=function(a,b){a||(a=window);b&&b.fn.dataTable||(b=require("datatables.net-dt")(a,b).$);b.fn.dataTable.Buttons||require("datatables.net-buttons")(a,b);return c(b,a,a.document)}:c(jQuery,window,document)})(function(c,a,b,d){return c.fn.dataTable}); 6 | -------------------------------------------------------------------------------- /dist/static/DataTables/ColReorder-1.5.6/css/colReorder.bootstrap.css: -------------------------------------------------------------------------------- 1 | table.DTCR_clonedTable.dataTable { 2 | position: absolute !important; 3 | background-color: rgba(255, 255, 255, 0.7); 4 | z-index: 202; 5 | } 6 | 7 | div.DTCR_pointer { 8 | width: 1px; 9 | background-color: #337ab7; 10 | z-index: 201; 11 | } 12 | -------------------------------------------------------------------------------- /dist/static/DataTables/ColReorder-1.5.6/css/colReorder.bootstrap.min.css: -------------------------------------------------------------------------------- 1 | table.DTCR_clonedTable.dataTable{position:absolute !important;background-color:rgba(255, 255, 255, 0.7);z-index:202}div.DTCR_pointer{width:1px;background-color:#337ab7;z-index:201} 2 | -------------------------------------------------------------------------------- /dist/static/DataTables/ColReorder-1.5.6/css/colReorder.bootstrap4.css: -------------------------------------------------------------------------------- 1 | table.DTCR_clonedTable.dataTable { 2 | position: absolute !important; 3 | background-color: rgba(255, 255, 255, 0.7); 4 | z-index: 202; 5 | } 6 | 7 | div.DTCR_pointer { 8 | width: 1px; 9 | background-color: #0275d8; 10 | z-index: 201; 11 | } 12 | -------------------------------------------------------------------------------- /dist/static/DataTables/ColReorder-1.5.6/css/colReorder.bootstrap4.min.css: -------------------------------------------------------------------------------- 1 | table.DTCR_clonedTable.dataTable{position:absolute !important;background-color:rgba(255, 255, 255, 0.7);z-index:202}div.DTCR_pointer{width:1px;background-color:#0275d8;z-index:201} 2 | -------------------------------------------------------------------------------- /dist/static/DataTables/ColReorder-1.5.6/css/colReorder.bootstrap5.css: -------------------------------------------------------------------------------- 1 | table.DTCR_clonedTable.dataTable { 2 | position: absolute !important; 3 | background-color: rgba(255, 255, 255, 0.7); 4 | z-index: 202; 5 | } 6 | 7 | div.DTCR_pointer { 8 | width: 1px; 9 | background-color: #0d6efd; 10 | z-index: 201; 11 | } 12 | -------------------------------------------------------------------------------- /dist/static/DataTables/ColReorder-1.5.6/css/colReorder.bootstrap5.min.css: -------------------------------------------------------------------------------- 1 | table.DTCR_clonedTable.dataTable{position:absolute !important;background-color:rgba(255, 255, 255, 0.7);z-index:202}div.DTCR_pointer{width:1px;background-color:#0d6efd;z-index:201} 2 | -------------------------------------------------------------------------------- /dist/static/DataTables/ColReorder-1.5.6/css/colReorder.bulma.css: -------------------------------------------------------------------------------- 1 | table.DTCR_clonedTable.dataTable { 2 | position: absolute !important; 3 | background-color: rgba(255, 255, 255, 0.7); 4 | z-index: 202; 5 | } 6 | 7 | div.DTCR_pointer { 8 | width: 1px; 9 | background-color: #00D1B2; 10 | z-index: 201; 11 | } 12 | -------------------------------------------------------------------------------- /dist/static/DataTables/ColReorder-1.5.6/css/colReorder.bulma.min.css: -------------------------------------------------------------------------------- 1 | table.DTCR_clonedTable.dataTable{position:absolute !important;background-color:rgba(255, 255, 255, 0.7);z-index:202}div.DTCR_pointer{width:1px;background-color:#00d1b2;z-index:201} 2 | -------------------------------------------------------------------------------- /dist/static/DataTables/ColReorder-1.5.6/css/colReorder.dataTables.css: -------------------------------------------------------------------------------- 1 | table.DTCR_clonedTable.dataTable { 2 | position: absolute !important; 3 | background-color: rgba(255, 255, 255, 0.7); 4 | z-index: 202; 5 | } 6 | 7 | div.DTCR_pointer { 8 | width: 1px; 9 | background-color: #0259C4; 10 | z-index: 201; 11 | } 12 | -------------------------------------------------------------------------------- /dist/static/DataTables/ColReorder-1.5.6/css/colReorder.dataTables.min.css: -------------------------------------------------------------------------------- 1 | table.DTCR_clonedTable.dataTable{position:absolute !important;background-color:rgba(255, 255, 255, 0.7);z-index:202}div.DTCR_pointer{width:1px;background-color:#0259c4;z-index:201} 2 | -------------------------------------------------------------------------------- /dist/static/DataTables/ColReorder-1.5.6/css/colReorder.foundation.css: -------------------------------------------------------------------------------- 1 | table.DTCR_clonedTable.dataTable { 2 | position: absolute !important; 3 | background-color: rgba(255, 255, 255, 0.7); 4 | z-index: 202; 5 | } 6 | 7 | div.DTCR_pointer { 8 | width: 1px; 9 | background-color: #008CBA; 10 | z-index: 201; 11 | } 12 | -------------------------------------------------------------------------------- /dist/static/DataTables/ColReorder-1.5.6/css/colReorder.foundation.min.css: -------------------------------------------------------------------------------- 1 | table.DTCR_clonedTable.dataTable{position:absolute !important;background-color:rgba(255, 255, 255, 0.7);z-index:202}div.DTCR_pointer{width:1px;background-color:#008cba;z-index:201} 2 | -------------------------------------------------------------------------------- /dist/static/DataTables/ColReorder-1.5.6/css/colReorder.jqueryui.css: -------------------------------------------------------------------------------- 1 | table.DTCR_clonedTable.dataTable { 2 | position: absolute !important; 3 | background-color: rgba(255, 255, 255, 0.7); 4 | z-index: 202; 5 | } 6 | 7 | div.DTCR_pointer { 8 | width: 1px; 9 | background-color: #0259C4; 10 | z-index: 201; 11 | } 12 | -------------------------------------------------------------------------------- /dist/static/DataTables/ColReorder-1.5.6/css/colReorder.jqueryui.min.css: -------------------------------------------------------------------------------- 1 | table.DTCR_clonedTable.dataTable{position:absolute !important;background-color:rgba(255, 255, 255, 0.7);z-index:202}div.DTCR_pointer{width:1px;background-color:#0259c4;z-index:201} 2 | -------------------------------------------------------------------------------- /dist/static/DataTables/ColReorder-1.5.6/css/colReorder.semanticui.css: -------------------------------------------------------------------------------- 1 | table.DTCR_clonedTable.dataTable { 2 | position: absolute !important; 3 | background-color: rgba(255, 255, 255, 0.7); 4 | z-index: 202; 5 | } 6 | 7 | div.DTCR_pointer { 8 | width: 1px; 9 | background-color: #888; 10 | z-index: 201; 11 | } 12 | -------------------------------------------------------------------------------- /dist/static/DataTables/ColReorder-1.5.6/css/colReorder.semanticui.min.css: -------------------------------------------------------------------------------- 1 | table.DTCR_clonedTable.dataTable{position:absolute !important;background-color:rgba(255, 255, 255, 0.7);z-index:202}div.DTCR_pointer{width:1px;background-color:#888;z-index:201} 2 | -------------------------------------------------------------------------------- /dist/static/DataTables/ColReorder-1.5.6/js/colReorder.bootstrap.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Bootstrap 3 styling wrapper for ColReorder 3 | ©2018 SpryMedia Ltd - datatables.net/license 4 | */ 5 | (function(c){"function"===typeof define&&define.amd?define(["jquery","datatables.net-bs","datatables.net-colreorder"],function(a){return c(a,window,document)}):"object"===typeof exports?module.exports=function(a,b){a||(a=window);b&&b.fn.dataTable||(b=require("datatables.net-bs")(a,b).$);b.fn.dataTable.ColReorder||require("datatables.net-colreorder")(a,b);return c(b,a,a.document)}:c(jQuery,window,document)})(function(c,a,b,d){return c.fn.dataTable}); 6 | -------------------------------------------------------------------------------- /dist/static/DataTables/ColReorder-1.5.6/js/colReorder.bulma.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Bulma styling wrapper for ColReorder 3 | ©2018 SpryMedia Ltd - datatables.net/license 4 | */ 5 | (function(c){"function"===typeof define&&define.amd?define(["jquery","datatables.net-bm","datatables.net-colreorder"],function(a){return c(a,window,document)}):"object"===typeof exports?module.exports=function(a,b){a||(a=window);b&&b.fn.dataTable||(b=require("datatables.net-bm")(a,b).$);b.fn.dataTable.ColReorder||require("datatables.net-colreorder")(a,b);return c(b,a,a.document)}:c(jQuery,window,document)})(function(c,a,b,d){return c.fn.dataTable}); 6 | -------------------------------------------------------------------------------- /dist/static/DataTables/ColReorder-1.5.6/js/colReorder.dataTables.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | DataTables styling wrapper for ColReorder 3 | ©2018 SpryMedia Ltd - datatables.net/license 4 | */ 5 | (function(c){"function"===typeof define&&define.amd?define(["jquery","datatables.net-dt","datatables.net-colreorder"],function(a){return c(a,window,document)}):"object"===typeof exports?module.exports=function(a,b){a||(a=window);b&&b.fn.dataTable||(b=require("datatables.net-dt")(a,b).$);b.fn.dataTable.ColReorder||require("datatables.net-colreorder")(a,b);return c(b,a,a.document)}:c(jQuery,window,document)})(function(c,a,b,d){return c.fn.dataTable}); 6 | -------------------------------------------------------------------------------- /dist/static/DataTables/ColReorder-1.5.6/js/colReorder.foundation.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Foundation styling wrapper for ColReorder 3 | ©2018 SpryMedia Ltd - datatables.net/license 4 | */ 5 | (function(c){"function"===typeof define&&define.amd?define(["jquery","datatables.net-zf","datatables.net-colreorder"],function(a){return c(a,window,document)}):"object"===typeof exports?module.exports=function(a,b){a||(a=window);b&&b.fn.dataTable||(b=require("datatables.net-zf")(a,b).$);b.fn.dataTable.ColReorder||require("datatables.net-colreorder")(a,b);return c(b,a,a.document)}:c(jQuery,window,document)})(function(c,a,b,d){return c.fn.dataTable}); 6 | -------------------------------------------------------------------------------- /dist/static/DataTables/ColReorder-1.5.6/js/colReorder.jqueryui.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | jQuery UI styling wrapper for ColReorder 3 | ©2018 SpryMedia Ltd - datatables.net/license 4 | */ 5 | (function(c){"function"===typeof define&&define.amd?define(["jquery","datatables.net-jqui","datatables.net-colreorder"],function(a){return c(a,window,document)}):"object"===typeof exports?module.exports=function(a,b){a||(a=window);b&&b.fn.dataTable||(b=require("datatables.net-jqui")(a,b).$);b.fn.dataTable.ColReorder||require("datatables.net-colreorder")(a,b);return c(b,a,a.document)}:c(jQuery,window,document)})(function(c,a,b,d){return c.fn.dataTable}); 6 | -------------------------------------------------------------------------------- /dist/static/DataTables/ColReorder-1.5.6/js/colReorder.semanticui.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Semanic UI styling wrapper for ColReorder 3 | ©2018 SpryMedia Ltd - datatables.net/license 4 | */ 5 | (function(c){"function"===typeof define&&define.amd?define(["jquery","datatables.net-se","datatables.net-colreorder"],function(a){return c(a,window,document)}):"object"===typeof exports?module.exports=function(a,b){a||(a=window);b&&b.fn.dataTable||(b=require("datatables.net-se")(a,b).$);b.fn.dataTable.ColReorder||require("datatables.net-colreorder")(a,b);return c(b,a,a.document)}:c(jQuery,window,document)})(function(c,a,b,d){return c.fn.dataTable}); 6 | -------------------------------------------------------------------------------- /dist/static/DataTables/DataTables-1.12.1/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PackeTsar/neighbor-parser/c13927f6e9b6507246983bf0a823fbddbfb5dbf4/dist/static/DataTables/DataTables-1.12.1/images/sort_asc.png -------------------------------------------------------------------------------- /dist/static/DataTables/DataTables-1.12.1/images/sort_asc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PackeTsar/neighbor-parser/c13927f6e9b6507246983bf0a823fbddbfb5dbf4/dist/static/DataTables/DataTables-1.12.1/images/sort_asc_disabled.png -------------------------------------------------------------------------------- /dist/static/DataTables/DataTables-1.12.1/images/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PackeTsar/neighbor-parser/c13927f6e9b6507246983bf0a823fbddbfb5dbf4/dist/static/DataTables/DataTables-1.12.1/images/sort_both.png -------------------------------------------------------------------------------- /dist/static/DataTables/DataTables-1.12.1/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PackeTsar/neighbor-parser/c13927f6e9b6507246983bf0a823fbddbfb5dbf4/dist/static/DataTables/DataTables-1.12.1/images/sort_desc.png -------------------------------------------------------------------------------- /dist/static/DataTables/DataTables-1.12.1/images/sort_desc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PackeTsar/neighbor-parser/c13927f6e9b6507246983bf0a823fbddbfb5dbf4/dist/static/DataTables/DataTables-1.12.1/images/sort_desc_disabled.png -------------------------------------------------------------------------------- /dist/static/DataTables/DataTables-1.12.1/js/dataTables.dataTables.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | DataTables styling integration 3 | ©2018 SpryMedia Ltd - datatables.net/license 4 | */ 5 | (function(c){"function"===typeof define&&define.amd?define(["jquery","datatables.net"],function(a){return c(a,window,document)}):"object"===typeof exports?module.exports=function(a,b){a||(a=window);b&&b.fn.dataTable||(b=require("datatables.net")(a,b).$);return c(b,a,a.document)}:c(jQuery,window,document)})(function(c,a,b,d){return c.fn.dataTable}); 6 | -------------------------------------------------------------------------------- /dist/static/DataTables/KeyTable-2.7.0/css/keyTable.bootstrap.css: -------------------------------------------------------------------------------- 1 | table.dataTable tbody th.focus, 2 | table.dataTable tbody td.focus { 3 | outline: 2px solid #337ab7; 4 | outline-offset: -2px; 5 | } 6 | 7 | div.dtk-focus-alt table.dataTable tbody th.focus, 8 | div.dtk-focus-alt table.dataTable tbody td.focus { 9 | outline: 2px solid #ff8b33; 10 | outline-offset: -2px; 11 | } 12 | -------------------------------------------------------------------------------- /dist/static/DataTables/KeyTable-2.7.0/css/keyTable.bootstrap.min.css: -------------------------------------------------------------------------------- 1 | table.dataTable tbody th.focus,table.dataTable tbody td.focus{outline:2px solid #337ab7;outline-offset:-2px}div.dtk-focus-alt table.dataTable tbody th.focus,div.dtk-focus-alt table.dataTable tbody td.focus{outline:2px solid #ff8b33;outline-offset:-2px} 2 | -------------------------------------------------------------------------------- /dist/static/DataTables/KeyTable-2.7.0/css/keyTable.bootstrap4.css: -------------------------------------------------------------------------------- 1 | table.dataTable tbody th.focus, 2 | table.dataTable tbody td.focus { 3 | outline: 2px solid #0275d8; 4 | outline-offset: -2px; 5 | } 6 | 7 | div.dtk-focus-alt table.dataTable tbody th.focus, 8 | div.dtk-focus-alt table.dataTable tbody td.focus { 9 | outline: 2px solid #ff8b33; 10 | outline-offset: -2px; 11 | } 12 | -------------------------------------------------------------------------------- /dist/static/DataTables/KeyTable-2.7.0/css/keyTable.bootstrap4.min.css: -------------------------------------------------------------------------------- 1 | table.dataTable tbody th.focus,table.dataTable tbody td.focus{outline:2px solid #0275d8;outline-offset:-2px}div.dtk-focus-alt table.dataTable tbody th.focus,div.dtk-focus-alt table.dataTable tbody td.focus{outline:2px solid #ff8b33;outline-offset:-2px} 2 | -------------------------------------------------------------------------------- /dist/static/DataTables/KeyTable-2.7.0/css/keyTable.bootstrap5.css: -------------------------------------------------------------------------------- 1 | table.dataTable tbody th.focus, 2 | table.dataTable tbody td.focus { 3 | outline: 2px solid #0d6efd; 4 | outline-offset: -2px; 5 | } 6 | 7 | div.dtk-focus-alt table.dataTable tbody th.focus, 8 | div.dtk-focus-alt table.dataTable tbody td.focus { 9 | outline: 2px solid #ff8b33; 10 | outline-offset: -2px; 11 | } 12 | -------------------------------------------------------------------------------- /dist/static/DataTables/KeyTable-2.7.0/css/keyTable.bootstrap5.min.css: -------------------------------------------------------------------------------- 1 | table.dataTable tbody th.focus,table.dataTable tbody td.focus{outline:2px solid #0d6efd;outline-offset:-2px}div.dtk-focus-alt table.dataTable tbody th.focus,div.dtk-focus-alt table.dataTable tbody td.focus{outline:2px solid #ff8b33;outline-offset:-2px} 2 | -------------------------------------------------------------------------------- /dist/static/DataTables/KeyTable-2.7.0/css/keyTable.bulma.css: -------------------------------------------------------------------------------- 1 | table.dataTable tbody th.focus, 2 | table.dataTable tbody td.focus { 3 | outline: 2px solid #00D1B2; 4 | outline-offset: -2px; 5 | } 6 | 7 | div.dtk-focus-alt table.dataTable tbody th.focus, 8 | div.dtk-focus-alt table.dataTable tbody td.focus { 9 | outline: 2px solid #ff8b33; 10 | outline-offset: -2px; 11 | } 12 | -------------------------------------------------------------------------------- /dist/static/DataTables/KeyTable-2.7.0/css/keyTable.bulma.min.css: -------------------------------------------------------------------------------- 1 | table.dataTable tbody th.focus,table.dataTable tbody td.focus{outline:2px solid #00d1b2;outline-offset:-2px}div.dtk-focus-alt table.dataTable tbody th.focus,div.dtk-focus-alt table.dataTable tbody td.focus{outline:2px solid #ff8b33;outline-offset:-2px} 2 | -------------------------------------------------------------------------------- /dist/static/DataTables/KeyTable-2.7.0/css/keyTable.dataTables.css: -------------------------------------------------------------------------------- 1 | table.dataTable tbody th.focus, 2 | table.dataTable tbody td.focus { 3 | outline: 2px solid #3366ff; 4 | outline-offset: -2px; 5 | } 6 | 7 | div.dtk-focus-alt table.dataTable tbody th.focus, 8 | div.dtk-focus-alt table.dataTable tbody td.focus { 9 | outline: 2px solid #ff8b33; 10 | outline-offset: -2px; 11 | } 12 | -------------------------------------------------------------------------------- /dist/static/DataTables/KeyTable-2.7.0/css/keyTable.dataTables.min.css: -------------------------------------------------------------------------------- 1 | table.dataTable tbody th.focus,table.dataTable tbody td.focus{outline:2px solid #36f;outline-offset:-2px}div.dtk-focus-alt table.dataTable tbody th.focus,div.dtk-focus-alt table.dataTable tbody td.focus{outline:2px solid #ff8b33;outline-offset:-2px} 2 | -------------------------------------------------------------------------------- /dist/static/DataTables/KeyTable-2.7.0/css/keyTable.foundation.css: -------------------------------------------------------------------------------- 1 | table.dataTable tbody th.focus, 2 | table.dataTable tbody td.focus { 3 | outline: 2px solid #008CBA; 4 | outline-offset: -2px; 5 | } 6 | 7 | div.dtk-focus-alt table.dataTable tbody th.focus, 8 | div.dtk-focus-alt table.dataTable tbody td.focus { 9 | outline: 2px solid #ff8b33; 10 | outline-offset: -2px; 11 | } 12 | -------------------------------------------------------------------------------- /dist/static/DataTables/KeyTable-2.7.0/css/keyTable.foundation.min.css: -------------------------------------------------------------------------------- 1 | table.dataTable tbody th.focus,table.dataTable tbody td.focus{outline:2px solid #008cba;outline-offset:-2px}div.dtk-focus-alt table.dataTable tbody th.focus,div.dtk-focus-alt table.dataTable tbody td.focus{outline:2px solid #ff8b33;outline-offset:-2px} 2 | -------------------------------------------------------------------------------- /dist/static/DataTables/KeyTable-2.7.0/css/keyTable.jqueryui.css: -------------------------------------------------------------------------------- 1 | table.dataTable tbody th.focus, 2 | table.dataTable tbody td.focus { 3 | outline: 2px solid #3366ff; 4 | outline-offset: -2px; 5 | } 6 | 7 | div.dtk-focus-alt table.dataTable tbody th.focus, 8 | div.dtk-focus-alt table.dataTable tbody td.focus { 9 | outline: 2px solid #ff8b33; 10 | outline-offset: -2px; 11 | } 12 | -------------------------------------------------------------------------------- /dist/static/DataTables/KeyTable-2.7.0/css/keyTable.jqueryui.min.css: -------------------------------------------------------------------------------- 1 | table.dataTable tbody th.focus,table.dataTable tbody td.focus{outline:2px solid #36f;outline-offset:-2px}div.dtk-focus-alt table.dataTable tbody th.focus,div.dtk-focus-alt table.dataTable tbody td.focus{outline:2px solid #ff8b33;outline-offset:-2px} 2 | -------------------------------------------------------------------------------- /dist/static/DataTables/KeyTable-2.7.0/css/keyTable.semanticui.css: -------------------------------------------------------------------------------- 1 | table.dataTable tbody th.focus, 2 | table.dataTable tbody td.focus { 3 | outline: 2px solid #888; 4 | outline-offset: -2px; 5 | } 6 | 7 | div.dtk-focus-alt table.dataTable tbody th.focus, 8 | div.dtk-focus-alt table.dataTable tbody td.focus { 9 | outline: 2px solid #ff8b33; 10 | outline-offset: -2px; 11 | } 12 | -------------------------------------------------------------------------------- /dist/static/DataTables/KeyTable-2.7.0/css/keyTable.semanticui.min.css: -------------------------------------------------------------------------------- 1 | table.dataTable tbody th.focus,table.dataTable tbody td.focus{outline:2px solid #888;outline-offset:-2px}div.dtk-focus-alt table.dataTable tbody th.focus,div.dtk-focus-alt table.dataTable tbody td.focus{outline:2px solid #ff8b33;outline-offset:-2px} 2 | -------------------------------------------------------------------------------- /dist/static/DataTables/KeyTable-2.7.0/js/keyTable.bootstrap.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Bootstrap 3 styling wrapper for KeyTable 3 | ©2018 SpryMedia Ltd - datatables.net/license 4 | */ 5 | (function(c){"function"===typeof define&&define.amd?define(["jquery","datatables.net-bs","datatables.net-keytable"],function(a){return c(a,window,document)}):"object"===typeof exports?module.exports=function(a,b){a||(a=window);b&&b.fn.dataTable||(b=require("datatables.net-bs")(a,b).$);b.fn.dataTable.KeyTable||require("datatables.net-keytable")(a,b);return c(b,a,a.document)}:c(jQuery,window,document)})(function(c,a,b,d){return c.fn.dataTable}); 6 | -------------------------------------------------------------------------------- /dist/static/DataTables/KeyTable-2.7.0/js/keyTable.bootstrap4.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Bootstrap 4 styling wrapper for KeyTable 3 | ©2018 SpryMedia Ltd - datatables.net/license 4 | */ 5 | (function(c){"function"===typeof define&&define.amd?define(["jquery","datatables.net-bs4","datatables.net-keytable"],function(a){return c(a,window,document)}):"object"===typeof exports?module.exports=function(a,b){a||(a=window);b&&b.fn.dataTable||(b=require("datatables.net-bs4")(a,b).$);b.fn.dataTable.KeyTable||require("datatables.net-keytable")(a,b);return c(b,a,a.document)}:c(jQuery,window,document)})(function(c,a,b,d){return c.fn.dataTable}); 6 | -------------------------------------------------------------------------------- /dist/static/DataTables/KeyTable-2.7.0/js/keyTable.bootstrap5.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Bootstrap 5 styling wrapper for KeyTable 3 | ©2018 SpryMedia Ltd - datatables.net/license 4 | */ 5 | (function(c){"function"===typeof define&&define.amd?define(["jquery","datatables.net-bs5","datatables.net-keytable"],function(a){return c(a,window,document)}):"object"===typeof exports?module.exports=function(a,b){a||(a=window);b&&b.fn.dataTable||(b=require("datatables.net-bs5")(a,b).$);b.fn.dataTable.KeyTable||require("datatables.net-keytable")(a,b);return c(b,a,a.document)}:c(jQuery,window,document)})(function(c,a,b,d){return c.fn.dataTable}); 6 | -------------------------------------------------------------------------------- /dist/static/DataTables/KeyTable-2.7.0/js/keyTable.bulma.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Bulma styling wrapper for KeyTable 3 | ©2018 SpryMedia Ltd - datatables.net/license 4 | */ 5 | (function(c){"function"===typeof define&&define.amd?define(["jquery","datatables.net-bm","datatables.net-keytable"],function(a){return c(a,window,document)}):"object"===typeof exports?module.exports=function(a,b){a||(a=window);b&&b.fn.dataTable||(b=require("datatables.net-bm")(a,b).$);b.fn.dataTable.KeyTable||require("datatables.net-keytable")(a,b);return c(b,a,a.document)}:c(jQuery,window,document)})(function(c,a,b,d){return c.fn.dataTable}); 6 | -------------------------------------------------------------------------------- /dist/static/DataTables/KeyTable-2.7.0/js/keyTable.dataTables.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | DataTables styling wrapper for KeyTable 3 | ©2018 SpryMedia Ltd - datatables.net/license 4 | */ 5 | (function(c){"function"===typeof define&&define.amd?define(["jquery","datatables.net-dt","datatables.net-keytable"],function(a){return c(a,window,document)}):"object"===typeof exports?module.exports=function(a,b){a||(a=window);b&&b.fn.dataTable||(b=require("datatables.net-dt")(a,b).$);b.fn.dataTable.KeyTable||require("datatables.net-keytable")(a,b);return c(b,a,a.document)}:c(jQuery,window,document)})(function(c,a,b,d){return c.fn.dataTable}); 6 | -------------------------------------------------------------------------------- /dist/static/DataTables/KeyTable-2.7.0/js/keyTable.foundation.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Foundation styling wrapper for KeyTable 3 | ©2018 SpryMedia Ltd - datatables.net/license 4 | */ 5 | (function(c){"function"===typeof define&&define.amd?define(["jquery","datatables.net-zf","datatables.net-keytable"],function(a){return c(a,window,document)}):"object"===typeof exports?module.exports=function(a,b){a||(a=window);b&&b.fn.dataTable||(b=require("datatables.net-zf")(a,b).$);b.fn.dataTable.KeyTable||require("datatables.net-keytable")(a,b);return c(b,a,a.document)}:c(jQuery,window,document)})(function(c,a,b,d){return c.fn.dataTable}); 6 | -------------------------------------------------------------------------------- /dist/static/DataTables/KeyTable-2.7.0/js/keyTable.jqueryui.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | jQuery UI styling wrapper for KeyTable 3 | ©2018 SpryMedia Ltd - datatables.net/license 4 | */ 5 | (function(c){"function"===typeof define&&define.amd?define(["jquery","datatables.net-jqui","datatables.net-keytable"],function(a){return c(a,window,document)}):"object"===typeof exports?module.exports=function(a,b){a||(a=window);b&&b.fn.dataTable||(b=require("datatables.net-jqui")(a,b).$);b.fn.dataTable.KeyTable||require("datatables.net-keytable")(a,b);return c(b,a,a.document)}:c(jQuery,window,document)})(function(c,a,b,d){return c.fn.dataTable}); 6 | -------------------------------------------------------------------------------- /dist/static/DataTables/KeyTable-2.7.0/js/keyTable.semanticui.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Semanic UI styling wrapper for KeyTable 3 | ©2018 SpryMedia Ltd - datatables.net/license 4 | */ 5 | (function(c){"function"===typeof define&&define.amd?define(["jquery","datatables.net-se","datatables.net-keytable"],function(a){return c(a,window,document)}):"object"===typeof exports?module.exports=function(a,b){a||(a=window);b&&b.fn.dataTable||(b=require("datatables.net-se")(a,b).$);b.fn.dataTable.KeyTable||require("datatables.net-keytable")(a,b);return c(b,a,a.document)}:c(jQuery,window,document)})(function(c,a,b,d){return c.fn.dataTable}); 6 | -------------------------------------------------------------------------------- /dist/static/DataTables/Responsive-2.3.0/js/responsive.dataTables.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | DataTables styling wrapper for Responsive 3 | ©2018 SpryMedia Ltd - datatables.net/license 4 | */ 5 | (function(c){"function"===typeof define&&define.amd?define(["jquery","datatables.net-dt","datatables.net-responsive"],function(a){return c(a,window,document)}):"object"===typeof exports?module.exports=function(a,b){a||(a=window);b&&b.fn.dataTable||(b=require("datatables.net-dt")(a,b).$);b.fn.dataTable.Responsive||require("datatables.net-responsive")(a,b);return c(b,a,a.document)}:c(jQuery,window,document)})(function(c,a,b,d){return c.fn.dataTable}); 6 | -------------------------------------------------------------------------------- /dist/static/DataTables/RowReorder-1.2.8/css/rowReorder.bootstrap.css: -------------------------------------------------------------------------------- 1 | table.dt-rowReorder-float { 2 | position: absolute !important; 3 | opacity: 0.8; 4 | table-layout: fixed; 5 | outline: 2px solid #337ab7; 6 | outline-offset: -2px; 7 | z-index: 2001; 8 | } 9 | 10 | tr.dt-rowReorder-moving { 11 | outline: 2px solid #888; 12 | outline-offset: -2px; 13 | } 14 | 15 | body.dt-rowReorder-noOverflow { 16 | overflow-x: hidden; 17 | } 18 | 19 | table.dataTable td.reorder { 20 | text-align: center; 21 | cursor: move; 22 | } 23 | -------------------------------------------------------------------------------- /dist/static/DataTables/RowReorder-1.2.8/css/rowReorder.bootstrap.min.css: -------------------------------------------------------------------------------- 1 | table.dt-rowReorder-float{position:absolute !important;opacity:.8;table-layout:fixed;outline:2px solid #337ab7;outline-offset:-2px;z-index:2001}tr.dt-rowReorder-moving{outline:2px solid #888;outline-offset:-2px}body.dt-rowReorder-noOverflow{overflow-x:hidden}table.dataTable td.reorder{text-align:center;cursor:move} 2 | -------------------------------------------------------------------------------- /dist/static/DataTables/RowReorder-1.2.8/css/rowReorder.bootstrap4.css: -------------------------------------------------------------------------------- 1 | table.dt-rowReorder-float { 2 | position: absolute !important; 3 | opacity: 0.8; 4 | table-layout: fixed; 5 | outline: 2px solid #0275d8; 6 | outline-offset: -2px; 7 | z-index: 2001; 8 | } 9 | 10 | tr.dt-rowReorder-moving { 11 | outline: 2px solid #888; 12 | outline-offset: -2px; 13 | } 14 | 15 | body.dt-rowReorder-noOverflow { 16 | overflow-x: hidden; 17 | } 18 | 19 | table.dataTable td.reorder { 20 | text-align: center; 21 | cursor: move; 22 | } 23 | -------------------------------------------------------------------------------- /dist/static/DataTables/RowReorder-1.2.8/css/rowReorder.bootstrap4.min.css: -------------------------------------------------------------------------------- 1 | table.dt-rowReorder-float{position:absolute !important;opacity:.8;table-layout:fixed;outline:2px solid #0275d8;outline-offset:-2px;z-index:2001}tr.dt-rowReorder-moving{outline:2px solid #888;outline-offset:-2px}body.dt-rowReorder-noOverflow{overflow-x:hidden}table.dataTable td.reorder{text-align:center;cursor:move} 2 | -------------------------------------------------------------------------------- /dist/static/DataTables/RowReorder-1.2.8/css/rowReorder.bootstrap5.css: -------------------------------------------------------------------------------- 1 | table.dt-rowReorder-float { 2 | position: absolute !important; 3 | opacity: 0.8; 4 | table-layout: fixed; 5 | outline: 2px solid #0d6efd; 6 | outline-offset: -2px; 7 | z-index: 2001; 8 | } 9 | 10 | tr.dt-rowReorder-moving { 11 | outline: 2px solid #888; 12 | outline-offset: -2px; 13 | } 14 | 15 | body.dt-rowReorder-noOverflow { 16 | overflow-x: hidden; 17 | } 18 | 19 | table.dataTable td.reorder { 20 | text-align: center; 21 | cursor: move; 22 | } 23 | -------------------------------------------------------------------------------- /dist/static/DataTables/RowReorder-1.2.8/css/rowReorder.bootstrap5.min.css: -------------------------------------------------------------------------------- 1 | table.dt-rowReorder-float{position:absolute !important;opacity:.8;table-layout:fixed;outline:2px solid #0d6efd;outline-offset:-2px;z-index:2001}tr.dt-rowReorder-moving{outline:2px solid #888;outline-offset:-2px}body.dt-rowReorder-noOverflow{overflow-x:hidden}table.dataTable td.reorder{text-align:center;cursor:move} 2 | -------------------------------------------------------------------------------- /dist/static/DataTables/RowReorder-1.2.8/css/rowReorder.bulma.css: -------------------------------------------------------------------------------- 1 | table.dt-rowReorder-float { 2 | position: absolute !important; 3 | opacity: 0.8; 4 | table-layout: fixed; 5 | outline: 2px solid #00d1b2; 6 | outline-offset: -2px; 7 | z-index: 2001; 8 | } 9 | 10 | tr.dt-rowReorder-moving { 11 | outline: 2px solid #888; 12 | outline-offset: -2px; 13 | } 14 | 15 | body.dt-rowReorder-noOverflow { 16 | overflow-x: hidden; 17 | } 18 | 19 | table.dataTable td.reorder { 20 | text-align: center; 21 | cursor: move; 22 | } 23 | -------------------------------------------------------------------------------- /dist/static/DataTables/RowReorder-1.2.8/css/rowReorder.bulma.min.css: -------------------------------------------------------------------------------- 1 | table.dt-rowReorder-float{position:absolute !important;opacity:.8;table-layout:fixed;outline:2px solid #00d1b2;outline-offset:-2px;z-index:2001}tr.dt-rowReorder-moving{outline:2px solid #888;outline-offset:-2px}body.dt-rowReorder-noOverflow{overflow-x:hidden}table.dataTable td.reorder{text-align:center;cursor:move} 2 | -------------------------------------------------------------------------------- /dist/static/DataTables/RowReorder-1.2.8/css/rowReorder.dataTables.css: -------------------------------------------------------------------------------- 1 | table.dt-rowReorder-float { 2 | position: absolute !important; 3 | opacity: 0.8; 4 | table-layout: fixed; 5 | outline: 2px solid #888; 6 | outline-offset: -2px; 7 | z-index: 2001; 8 | } 9 | 10 | tr.dt-rowReorder-moving { 11 | outline: 2px solid #555; 12 | outline-offset: -2px; 13 | } 14 | 15 | body.dt-rowReorder-noOverflow { 16 | overflow-x: hidden; 17 | } 18 | 19 | table.dataTable td.reorder { 20 | text-align: center; 21 | cursor: move; 22 | } 23 | -------------------------------------------------------------------------------- /dist/static/DataTables/RowReorder-1.2.8/css/rowReorder.dataTables.min.css: -------------------------------------------------------------------------------- 1 | table.dt-rowReorder-float{position:absolute !important;opacity:.8;table-layout:fixed;outline:2px solid #888;outline-offset:-2px;z-index:2001}tr.dt-rowReorder-moving{outline:2px solid #555;outline-offset:-2px}body.dt-rowReorder-noOverflow{overflow-x:hidden}table.dataTable td.reorder{text-align:center;cursor:move} 2 | -------------------------------------------------------------------------------- /dist/static/DataTables/RowReorder-1.2.8/css/rowReorder.foundation.css: -------------------------------------------------------------------------------- 1 | table.dt-rowReorder-float { 2 | position: absolute !important; 3 | opacity: 0.8; 4 | table-layout: fixed; 5 | outline: 2px solid #337ab7; 6 | outline-offset: -2px; 7 | z-index: 2001; 8 | } 9 | 10 | tr.dt-rowReorder-moving { 11 | outline: 2px solid #888; 12 | outline-offset: -2px; 13 | } 14 | 15 | body.dt-rowReorder-noOverflow { 16 | overflow-x: hidden; 17 | } 18 | 19 | table.dataTable td.reorder { 20 | text-align: center; 21 | cursor: move; 22 | } 23 | -------------------------------------------------------------------------------- /dist/static/DataTables/RowReorder-1.2.8/css/rowReorder.foundation.min.css: -------------------------------------------------------------------------------- 1 | table.dt-rowReorder-float{position:absolute !important;opacity:.8;table-layout:fixed;outline:2px solid #337ab7;outline-offset:-2px;z-index:2001}tr.dt-rowReorder-moving{outline:2px solid #888;outline-offset:-2px}body.dt-rowReorder-noOverflow{overflow-x:hidden}table.dataTable td.reorder{text-align:center;cursor:move} 2 | -------------------------------------------------------------------------------- /dist/static/DataTables/RowReorder-1.2.8/css/rowReorder.jqueryui.css: -------------------------------------------------------------------------------- 1 | table.dt-rowReorder-float { 2 | position: absolute !important; 3 | opacity: 0.8; 4 | table-layout: fixed; 5 | outline: 2px solid #888; 6 | outline-offset: -2px; 7 | z-index: 2001; 8 | } 9 | 10 | tr.dt-rowReorder-moving { 11 | outline: 2px solid #555; 12 | outline-offset: -2px; 13 | } 14 | 15 | body.dt-rowReorder-noOverflow { 16 | overflow-x: hidden; 17 | } 18 | 19 | table.dataTable td.reorder { 20 | text-align: center; 21 | cursor: move; 22 | } 23 | -------------------------------------------------------------------------------- /dist/static/DataTables/RowReorder-1.2.8/css/rowReorder.jqueryui.min.css: -------------------------------------------------------------------------------- 1 | table.dt-rowReorder-float{position:absolute !important;opacity:.8;table-layout:fixed;outline:2px solid #888;outline-offset:-2px;z-index:2001}tr.dt-rowReorder-moving{outline:2px solid #555;outline-offset:-2px}body.dt-rowReorder-noOverflow{overflow-x:hidden}table.dataTable td.reorder{text-align:center;cursor:move} 2 | -------------------------------------------------------------------------------- /dist/static/DataTables/RowReorder-1.2.8/css/rowReorder.semanticui.css: -------------------------------------------------------------------------------- 1 | table.dt-rowReorder-float { 2 | position: absolute !important; 3 | opacity: 0.8; 4 | table-layout: fixed; 5 | outline: 2px solid rgba(0, 0, 0, 0.05); 6 | outline-offset: -2px; 7 | z-index: 2001; 8 | } 9 | 10 | tr.dt-rowReorder-moving { 11 | outline: 2px solid #888; 12 | outline-offset: -2px; 13 | } 14 | 15 | body.dt-rowReorder-noOverflow { 16 | overflow-x: hidden; 17 | } 18 | 19 | table.dataTable td.reorder { 20 | text-align: center; 21 | cursor: move; 22 | } 23 | -------------------------------------------------------------------------------- /dist/static/DataTables/RowReorder-1.2.8/css/rowReorder.semanticui.min.css: -------------------------------------------------------------------------------- 1 | table.dt-rowReorder-float{position:absolute !important;opacity:.8;table-layout:fixed;outline:2px solid rgba(0, 0, 0, 0.05);outline-offset:-2px;z-index:2001}tr.dt-rowReorder-moving{outline:2px solid #888;outline-offset:-2px}body.dt-rowReorder-noOverflow{overflow-x:hidden}table.dataTable td.reorder{text-align:center;cursor:move} 2 | -------------------------------------------------------------------------------- /dist/static/DataTables/RowReorder-1.2.8/js/rowReorder.bootstrap.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Bootstrap 3 styling wrapper for RowReorder 3 | ©2018 SpryMedia Ltd - datatables.net/license 4 | */ 5 | (function(c){"function"===typeof define&&define.amd?define(["jquery","datatables.net-bs","datatables.net-rowreorder"],function(a){return c(a,window,document)}):"object"===typeof exports?module.exports=function(a,b){a||(a=window);b&&b.fn.dataTable||(b=require("datatables.net-bs")(a,b).$);b.fn.dataTable.RowReorder||require("datatables.net-rowreorder")(a,b);return c(b,a,a.document)}:c(jQuery,window,document)})(function(c,a,b,d){return c.fn.dataTable}); 6 | -------------------------------------------------------------------------------- /dist/static/DataTables/RowReorder-1.2.8/js/rowReorder.bulma.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Bulma styling wrapper for RowReorder 3 | ©2018 SpryMedia Ltd - datatables.net/license 4 | */ 5 | (function(c){"function"===typeof define&&define.amd?define(["jquery","datatables.net-bm","datatables.net-rowreorder"],function(a){return c(a,window,document)}):"object"===typeof exports?module.exports=function(a,b){a||(a=window);b&&b.fn.dataTable||(b=require("datatables.net-bm")(a,b).$);b.fn.dataTable.RowReorder||require("datatables.net-rowreorder")(a,b);return c(b,a,a.document)}:c(jQuery,window,document)})(function(c,a,b,d){return c.fn.dataTable}); 6 | -------------------------------------------------------------------------------- /dist/static/DataTables/RowReorder-1.2.8/js/rowReorder.dataTables.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | DataTables styling wrapper for RowReorder 3 | ©2018 SpryMedia Ltd - datatables.net/license 4 | */ 5 | (function(c){"function"===typeof define&&define.amd?define(["jquery","datatables.net-dt","datatables.net-rowreorder"],function(a){return c(a,window,document)}):"object"===typeof exports?module.exports=function(a,b){a||(a=window);b&&b.fn.dataTable||(b=require("datatables.net-dt")(a,b).$);b.fn.dataTable.RowReorder||require("datatables.net-rowreorder")(a,b);return c(b,a,a.document)}:c(jQuery,window,document)})(function(c,a,b,d){return c.fn.dataTable}); 6 | -------------------------------------------------------------------------------- /dist/static/JointJS/dist/version.mjs: -------------------------------------------------------------------------------- 1 | var version = "3.7.1"; 2 | 3 | export { version }; 4 | -------------------------------------------------------------------------------- /dist/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PackeTsar/neighbor-parser/c13927f6e9b6507246983bf0a823fbddbfb5dbf4/dist/static/favicon.ico -------------------------------------------------------------------------------- /dist/static/fontawesome/css/regular.min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 6.1.1 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 | * Copyright 2022 Fonticons, Inc. 5 | */ 6 | :host,:root{--fa-font-regular:normal 400 1em/1 "Font Awesome 6 Free"}@font-face{font-family:"Font Awesome 6 Free";font-style:normal;font-weight:400;font-display:block;src:url(../webfonts/fa-regular-400.woff2) format("woff2"),url(../webfonts/fa-regular-400.ttf) format("truetype")}.fa-regular,.far{font-family:"Font Awesome 6 Free";font-weight:400} -------------------------------------------------------------------------------- /dist/static/fontawesome/css/solid.min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 6.1.1 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 | * Copyright 2022 Fonticons, Inc. 5 | */ 6 | :host,:root{--fa-font-solid:normal 900 1em/1 "Font Awesome 6 Free"}@font-face{font-family:"Font Awesome 6 Free";font-style:normal;font-weight:900;font-display:block;src:url(../webfonts/fa-solid-900.woff2) format("woff2"),url(../webfonts/fa-solid-900.ttf) format("truetype")}.fa-solid,.fas{font-family:"Font Awesome 6 Free";font-weight:900} -------------------------------------------------------------------------------- /dist/static/fontawesome/less/_fixed-width.less: -------------------------------------------------------------------------------- 1 | // fixed-width icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-fw { 5 | text-align: center; 6 | width: @fa-fw-width; 7 | } 8 | -------------------------------------------------------------------------------- /dist/static/fontawesome/less/_icons.less: -------------------------------------------------------------------------------- 1 | // specific icon class definition 2 | // ------------------------- 3 | 4 | /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen 5 | readers do not read off random characters that represent icons */ 6 | 7 | each(.fa-icons(), { 8 | .@{fa-css-prefix}-@{key}::before { content: @value; } 9 | }); 10 | -------------------------------------------------------------------------------- /dist/static/fontawesome/less/_list.less: -------------------------------------------------------------------------------- 1 | // icons in a list 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-ul { 5 | list-style-type: none; 6 | margin-left: ~'var(--@{fa-css-prefix}-li-margin, @{fa-li-margin})'; 7 | padding-left: 0; 8 | 9 | > li { position: relative; } 10 | } 11 | 12 | .@{fa-css-prefix}-li { 13 | left: calc(~'var(--@{fa-css-prefix}-li-width, @{fa-li-width})' * -1); 14 | position: absolute; 15 | text-align: center; 16 | width: ~'var(--@{fa-css-prefix}-li-width, @{fa-li-width})'; 17 | line-height: inherit; 18 | } 19 | -------------------------------------------------------------------------------- /dist/static/fontawesome/less/_screen-reader.less: -------------------------------------------------------------------------------- 1 | // screen-reader utilities 2 | // ------------------------- 3 | 4 | // only display content to screen readers 5 | .sr-only, 6 | .@{fa-css-prefix}-sr-only { 7 | .fa-sr-only(); 8 | } 9 | 10 | // use in conjunction with .sr-only to only display content when it's focused 11 | .sr-only-focusable, 12 | .@{fa-css-prefix}-sr-only-focusable { 13 | .fa-sr-only-focusable(); 14 | } 15 | -------------------------------------------------------------------------------- /dist/static/fontawesome/less/_sizing.less: -------------------------------------------------------------------------------- 1 | // sizing icons 2 | // ------------------------- 3 | 4 | // literal magnification scale 5 | .sizes-literal(@factor) when (@factor > 0) { 6 | .sizes-literal((@factor - 1)); 7 | 8 | .@{fa-css-prefix}-@{factor}x { 9 | font-size: (@factor * 1em); 10 | } 11 | } 12 | .sizes-literal(10); 13 | 14 | // step-based scale (with alignment) 15 | each(.fa-sizes(), { 16 | .@{fa-css-prefix}-@{key} { 17 | .fa-size(@value); 18 | } 19 | }); 20 | -------------------------------------------------------------------------------- /dist/static/fontawesome/less/v4-shims.less: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 6.1.1 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 | * Copyright 2022 Fonticons, Inc. 5 | */ 6 | // V4 shims compile (Web Fonts-based) 7 | // ------------------------- 8 | 9 | @import '_variables.less'; 10 | @import '_shims.less'; 11 | -------------------------------------------------------------------------------- /dist/static/fontawesome/scss/_fixed-width.scss: -------------------------------------------------------------------------------- 1 | // fixed-width icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-fw { 5 | text-align: center; 6 | width: $fa-fw-width; 7 | } 8 | -------------------------------------------------------------------------------- /dist/static/fontawesome/scss/_icons.scss: -------------------------------------------------------------------------------- 1 | // specific icon class definition 2 | // ------------------------- 3 | 4 | /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen 5 | readers do not read off random characters that represent icons */ 6 | 7 | @each $name, $icon in $fa-icons { 8 | .#{$fa-css-prefix}-#{$name}::before { content: unquote("\"#{ $icon }\""); } 9 | } 10 | -------------------------------------------------------------------------------- /dist/static/fontawesome/scss/_list.scss: -------------------------------------------------------------------------------- 1 | // icons in a list 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-ul { 5 | list-style-type: none; 6 | margin-left: var(--#{$fa-css-prefix}-li-margin, #{$fa-li-margin}); 7 | padding-left: 0; 8 | 9 | > li { position: relative; } 10 | } 11 | 12 | .#{$fa-css-prefix}-li { 13 | left: calc(var(--#{$fa-css-prefix}-li-width, #{$fa-li-width}) * -1); 14 | position: absolute; 15 | text-align: center; 16 | width: var(--#{$fa-css-prefix}-li-width, #{$fa-li-width}); 17 | line-height: inherit; 18 | } 19 | -------------------------------------------------------------------------------- /dist/static/fontawesome/scss/_screen-reader.scss: -------------------------------------------------------------------------------- 1 | // screen-reader utilities 2 | // ------------------------- 3 | 4 | // only display content to screen readers 5 | .sr-only, 6 | .#{$fa-css-prefix}-sr-only { 7 | @include fa-sr-only; 8 | } 9 | 10 | // use in conjunction with .sr-only to only display content when it's focused 11 | .sr-only-focusable, 12 | .#{$fa-css-prefix}-sr-only-focusable { 13 | @include fa-sr-only-focusable; 14 | } 15 | -------------------------------------------------------------------------------- /dist/static/fontawesome/scss/_sizing.scss: -------------------------------------------------------------------------------- 1 | // sizing icons 2 | // ------------------------- 3 | 4 | // literal magnification scale 5 | @for $i from 1 through 10 { 6 | .#{$fa-css-prefix}-#{$i}x { 7 | font-size: $i * 1em; 8 | } 9 | } 10 | 11 | // step-based scale (with alignment) 12 | @each $size, $value in $fa-sizes { 13 | .#{$fa-css-prefix}-#{$size} { 14 | @include fa-size($value); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /dist/static/fontawesome/scss/v4-shims.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 6.1.1 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 | * Copyright 2022 Fonticons, Inc. 5 | */ 6 | // V4 shims compile (Web Fonts-based) 7 | // ------------------------- 8 | 9 | @import 'functions'; 10 | @import 'variables'; 11 | @import 'shims'; 12 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/brands/adn.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/brands/angular.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/brands/artstation.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/brands/atlassian.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/brands/autoprefixer.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/brands/bandcamp.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/brands/bitbucket.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/brands/black-tie.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/brands/bluetooth-b.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/brands/bluetooth.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/brands/buysellads.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/brands/cloudsmith.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/brands/css3-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/brands/css3.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/brands/cuttlefish.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/brands/dashcube.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/brands/deezer.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/brands/deviantart.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/brands/discourse.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/brands/dochub.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/brands/dropbox.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/brands/dyalog.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/brands/elementor.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/brands/envira.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/brands/ethereum.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/brands/facebook-f.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/brands/facebook-square.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/brands/facebook.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/brands/firstdraft.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/brands/flickr.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/brands/flipboard.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/brands/fulcrum.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/brands/gg.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/brands/gitter.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/brands/google-drive.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/brands/google-play.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/brands/google.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/brands/gratipay.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/brands/hacker-news-square.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/brands/hacker-news.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/brands/hotjar.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/brands/houzz.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/brands/html5.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/brands/instalod.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/brands/jira.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/brands/kaggle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/brands/kickstarter-k.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/brands/korvue.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/brands/magento.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/brands/markdown.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/brands/maxcdn.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/brands/microsoft.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/brands/mix.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/brands/modx.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/brands/monero.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/brands/npm.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/brands/openid.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/brands/patreon.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/brands/pied-piper-square.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/brands/product-hunt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/brands/rockrms.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/brands/servicestack.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/brands/sistrix.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/brands/sitrox.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/brands/sourcetree.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/brands/stack-exchange.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/brands/stack-overflow.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/brands/strava.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/brands/think-peaks.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/brands/tiktok.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/brands/twitch.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/brands/uikit.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/brands/unsplash.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/brands/viacoin.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/brands/vuejs.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/brands/windows.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/brands/wirsindhandwerk.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/brands/y-combinator.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/brands/yahoo.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/brands/yandex-international.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/brands/yandex.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/regular/bookmark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/regular/circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/regular/square-full.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/regular/square.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/regular/window-minimize.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/0.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/1.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/7.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/angle-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/angle-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/angle-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/angle-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/apple-whole.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/arrow-down-long.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/arrow-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/arrow-left-long.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/arrow-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/arrow-right-long.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/arrow-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/arrow-up-long.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/arrow-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/backward.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/bookmark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/border-all.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/box.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/bread-slice.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/briefcase.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/calendar.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/caret-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/caret-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/caret-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/caret-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/chalkboard.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/check.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/cheese.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/chevron-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/chevron-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/chevron-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/chevron-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/circle-dot.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/circle-h.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/circle-half-stroke.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/circle-minus.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/circle-stop.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/clone.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/cloud.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/comment.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/computer-mouse.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/copy.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/cross.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/d.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/desktop.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/diamond.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/dice-one.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/dice-two.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/display.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/divide.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/door-closed.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/down-long.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/e.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/egg.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/eject.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/equals.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/exclamation.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/f.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/file.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/filter.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/fire-flame-curved.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/folder-closed.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/folder-minus.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/folder-open.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/folder.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/forward.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/gem.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/genderless.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/greater-than.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/grip-lines-vertical.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/grip-lines.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/h.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/hockey-puck.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/i.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/inbox.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/industry.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/info.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/italic.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/j.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/jar.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/l.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/laptop.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/left-long.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/less-than.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/location-arrow.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/location-dot.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/location-pin.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/lock.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/magnet.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/map.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/martini-glass-empty.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/martini-glass.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/mattress-pillow.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/message.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/minus.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/mobile-button.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/mobile-screen-button.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/mobile-screen.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/mobile.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/moon.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/mound.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/mountain.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/n.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/neuter.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/note-sticky.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/o.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/p.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/pallet.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/paragraph.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/pause.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/play.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/plus.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/reply.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/right-long.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/screwdriver.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/sd-card.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/seedling.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/share.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/shield.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/slash.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/sort-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/sort-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/square-full.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/square-minus.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/square.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/stairs.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/stop.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/suitcase.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/t.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/table-cells-large.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/table-columns.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/table-list.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/table.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/tablet-button.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/tablet-screen-button.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/tablet.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/tarp.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/tenge-sign.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/ticket-simple.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/toggle-on.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/turn-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/tv.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/u.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/up-long.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/user-large.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/user.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/v.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/video.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/volume-off.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/wand-magic.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/whiskey-glass.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/window-maximize.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/window-minimize.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/y.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/svgs/solid/z.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static/fontawesome/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PackeTsar/neighbor-parser/c13927f6e9b6507246983bf0a823fbddbfb5dbf4/dist/static/fontawesome/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /dist/static/fontawesome/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PackeTsar/neighbor-parser/c13927f6e9b6507246983bf0a823fbddbfb5dbf4/dist/static/fontawesome/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /dist/static/fontawesome/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PackeTsar/neighbor-parser/c13927f6e9b6507246983bf0a823fbddbfb5dbf4/dist/static/fontawesome/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /dist/static/fontawesome/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PackeTsar/neighbor-parser/c13927f6e9b6507246983bf0a823fbddbfb5dbf4/dist/static/fontawesome/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /dist/static/fontawesome/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PackeTsar/neighbor-parser/c13927f6e9b6507246983bf0a823fbddbfb5dbf4/dist/static/fontawesome/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /dist/static/fontawesome/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PackeTsar/neighbor-parser/c13927f6e9b6507246983bf0a823fbddbfb5dbf4/dist/static/fontawesome/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /dist/static/fontawesome/webfonts/fa-v4compatibility.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PackeTsar/neighbor-parser/c13927f6e9b6507246983bf0a823fbddbfb5dbf4/dist/static/fontawesome/webfonts/fa-v4compatibility.ttf -------------------------------------------------------------------------------- /dist/static/fontawesome/webfonts/fa-v4compatibility.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PackeTsar/neighbor-parser/c13927f6e9b6507246983bf0a823fbddbfb5dbf4/dist/static/fontawesome/webfonts/fa-v4compatibility.woff2 -------------------------------------------------------------------------------- /dist/static/jquery-ui-1.13.2/images/ui-icons_444444_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PackeTsar/neighbor-parser/c13927f6e9b6507246983bf0a823fbddbfb5dbf4/dist/static/jquery-ui-1.13.2/images/ui-icons_444444_256x240.png -------------------------------------------------------------------------------- /dist/static/jquery-ui-1.13.2/images/ui-icons_555555_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PackeTsar/neighbor-parser/c13927f6e9b6507246983bf0a823fbddbfb5dbf4/dist/static/jquery-ui-1.13.2/images/ui-icons_555555_256x240.png -------------------------------------------------------------------------------- /dist/static/jquery-ui-1.13.2/images/ui-icons_777620_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PackeTsar/neighbor-parser/c13927f6e9b6507246983bf0a823fbddbfb5dbf4/dist/static/jquery-ui-1.13.2/images/ui-icons_777620_256x240.png -------------------------------------------------------------------------------- /dist/static/jquery-ui-1.13.2/images/ui-icons_777777_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PackeTsar/neighbor-parser/c13927f6e9b6507246983bf0a823fbddbfb5dbf4/dist/static/jquery-ui-1.13.2/images/ui-icons_777777_256x240.png -------------------------------------------------------------------------------- /dist/static/jquery-ui-1.13.2/images/ui-icons_cc0000_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PackeTsar/neighbor-parser/c13927f6e9b6507246983bf0a823fbddbfb5dbf4/dist/static/jquery-ui-1.13.2/images/ui-icons_cc0000_256x240.png -------------------------------------------------------------------------------- /dist/static/jquery-ui-1.13.2/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PackeTsar/neighbor-parser/c13927f6e9b6507246983bf0a823fbddbfb5dbf4/dist/static/jquery-ui-1.13.2/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /dist/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PackeTsar/neighbor-parser/c13927f6e9b6507246983bf0a823fbddbfb5dbf4/dist/static/logo.png -------------------------------------------------------------------------------- /src/tests/cdp_addresses_dedup.test.js: -------------------------------------------------------------------------------- 1 | const getAttrib = require('../attribs') 2 | const sample = require('./samples/cdp_ios_wap') 3 | 4 | test('Get addresses from WAP block', () => { 5 | expect(getAttrib.cdpAddresses(sample.sample)).toStrictEqual([ 6 | '10.10.10.10', 7 | '2001::1', 8 | 'FE80::42D2' 9 | ]) 10 | }) 11 | -------------------------------------------------------------------------------- /src/tests/cdp_detect_ios_wap.test.js: -------------------------------------------------------------------------------- 1 | const split = require('../split_detect') 2 | const sample = require('./samples/cdp_ios_wap') 3 | 4 | test('Detect CDP WAP block', () => { 5 | expect(split.detect(sample.sample)).toBe('CDP') 6 | }) 7 | -------------------------------------------------------------------------------- /src/tests/cdp_detect_nxos_ios.test.js: -------------------------------------------------------------------------------- 1 | const split = require('../split_detect') 2 | const sample = require('./samples/cdp_nxos_switch') 3 | 4 | test('Detect CDP switch block', () => { 5 | expect(split.detect(sample.sample)).toBe('CDP') 6 | }) 7 | -------------------------------------------------------------------------------- /src/tests/cdp_no_addresses.test.js: -------------------------------------------------------------------------------- 1 | const getAttrib = require('../attribs') 2 | const sample = require('./samples/cdp_vmware_no_addresses') 3 | 4 | test('Get addresses from block', () => { 5 | expect(getAttrib.cdpAddresses(sample.sample)).toStrictEqual([]) 6 | }) 7 | -------------------------------------------------------------------------------- /src/tests/cdp_split_ios.test.js: -------------------------------------------------------------------------------- 1 | const split = require('../split_detect') 2 | const sample = require('./samples/cdp_ios_empty_blocks') 3 | 4 | test('Split four CDP blocks and count', () => { 5 | expect(split.split(sample.fourBlocks).length).toBe(4) 6 | }) 7 | 8 | test('Split six CDP blocks and count', () => { 9 | expect(split.split(sample.sixBlocks).length).toBe(6) 10 | }) 11 | -------------------------------------------------------------------------------- /src/tests/cdp_split_nxos.test.js: -------------------------------------------------------------------------------- 1 | const split = require('../split_detect') 2 | const sample = require('./samples/cdp_nxos_empty_blocks') 3 | 4 | test('Split thirteen CDP blocks and count', () => { 5 | expect(split.split(sample.thirteenBlocks).length).toBe(13) 6 | }) 7 | 8 | test('Check split block content', () => { 9 | expect(split.split(sample.thirteenBlocks)[3]).toBe('\n...content... (block 4)\n') 10 | }) 11 | -------------------------------------------------------------------------------- /src/tests/lldp_detect_ios_wap.test.js: -------------------------------------------------------------------------------- 1 | const split = require('../split_detect') 2 | const sample = require('./samples/lldp_ios_wap') 3 | 4 | test('Detect CDP WAP block', () => { 5 | expect(split.detect(sample.sample)).toBe('LLDP') 6 | }) 7 | -------------------------------------------------------------------------------- /src/tests/lldp_detect_nxos_linux.test.js: -------------------------------------------------------------------------------- 1 | const split = require('../split_detect') 2 | const sample = require('./samples/lldp_nxos_linux') 3 | 4 | test('Detect CDP Linux block', () => { 5 | expect(split.detect(sample.sample)).toBe('LLDP') 6 | }) 7 | -------------------------------------------------------------------------------- /src/tests/lldp_not_address.test.js: -------------------------------------------------------------------------------- 1 | const getAttrib = require('../attribs') 2 | const sample = require('./samples/lldp_nxos_not_address') 3 | 4 | test('Get addresses from block', () => { 5 | expect(getAttrib.lldpAddresses(sample.sample)).toStrictEqual(['10.0.0.1']) 6 | }) 7 | -------------------------------------------------------------------------------- /src/tests/lldp_split_nxos.test.js: -------------------------------------------------------------------------------- 1 | const split = require('../split_detect') 2 | const sample = require('./samples/lldp_nxos_empty_blocks') 3 | 4 | test('Split fourteen LLDP blocks and count', () => { 5 | // Should be 15 instead of 14 because of the delineator insertion above the 6 | // useless header. 7 | expect(split.split(sample.sample).length).toBe(15) 8 | }) 9 | 10 | test('Check split block content', () => { 11 | // Offset by 1 beacuse of the extra delineator inserted 12 | expect(split.split(sample.sample)[3]).toBe('...content... (block 3)') 13 | }) 14 | -------------------------------------------------------------------------------- /src/tests/samples/cdp_vmware_no_addresses.js: -------------------------------------------------------------------------------- 1 | const sample = ` 2 | Device ID: ESX1.example.com 3 | Entry address(es): 4 | Platform: VMware ESXi, Capabilities: Switch 5 | Interface: GigabitEthernet2/0/13, Port ID (outgoing port): vmnic1 6 | Holdtime : 171 sec 7 | 8 | Version : 9 | Releasebuild-19482537 10 | 11 | advertisement version: 2 12 | VTP Management Domain: '' 13 | Duplex: full 14 | ` 15 | 16 | module.exports = { sample } 17 | -------------------------------------------------------------------------------- /src/tests/samples/cdpshort_mixed.js: -------------------------------------------------------------------------------- 1 | const iosSample = require('./cdpshort_ios') 2 | const iosxeSample = require('./cdpshort_iosxe') 3 | const nxosSample = require('./cdpshort_nxos') 4 | 5 | // Combine the CDP and LLDP samples 6 | const appendedSample = iosSample.sample + iosxeSample.sample + nxosSample.sample 7 | 8 | module.exports = { appendedSample } 9 | -------------------------------------------------------------------------------- /src/tests/samples/lldp_nxos_linux.js: -------------------------------------------------------------------------------- 1 | const sample = ` 2 | Chassis id: 0000.0000.0001 3 | Port id: swp1 4 | Local Port id: Eth1/1 5 | Port Description: swp1 6 | System Name: CUMULUSBOX 7 | System Description: Cumulus Linux version 4.3.0 running on DELL S4048ON 8 | Time remaining: 110 seconds 9 | System Capabilities: B, R 10 | Enabled Capabilities: B, R 11 | Management Address: 10.0.0.1 12 | Management Address IPV6: fe80::1 13 | Vlan ID: 1 14 | ` 15 | 16 | module.exports = { sample } 17 | -------------------------------------------------------------------------------- /src/tests/samples/lldpshort_mixed.js: -------------------------------------------------------------------------------- 1 | const iosSample = require('./lldpshort_ios') 2 | const iosxeSample = require('./lldpshort_iosxe') 3 | const nxosSample = require('./lldpshort_nxos') 4 | 5 | // Combine the CDP and LLDP samples 6 | const appendedSample = iosSample.sample + iosxeSample.sample + nxosSample.sample 7 | 8 | module.exports = { appendedSample } 9 | -------------------------------------------------------------------------------- /src/tests/samples/template.js: -------------------------------------------------------------------------------- 1 | const sample = ` 2 | ...content... 3 | ` 4 | 5 | module.exports = { sample } 6 | -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- 1 | const path = require('path') 2 | 3 | const config = { 4 | entry: './src/index.js', 5 | mode: 'production', 6 | output: { 7 | path: path.resolve(__dirname, 'dist/'), 8 | filename: 'bundle.js' 9 | }, 10 | devServer: { 11 | static: { 12 | directory: path.join(__dirname, 'dist/') 13 | }, 14 | watchFiles: ['*'], 15 | hot: true 16 | } 17 | } 18 | 19 | module.exports = config 20 | --------------------------------------------------------------------------------