├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── copilot-instructions.md └── workflows │ ├── oldissues.yml │ └── syntax.yml ├── .gitignore ├── .php-cs-fixer.php ├── .phplint.yml ├── .phpstan-bootstrap.php ├── .phpstan.neon ├── CHANGELOG ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── SECURITY.md ├── about.php ├── aggregate_graphs.php ├── aggregate_templates.php ├── api ├── README.md ├── composer.json ├── include │ ├── arrays.php │ └── db_functions.php ├── index.php └── public │ └── index.php ├── auth_2fa.php ├── auth_changepassword.php ├── auth_login.php ├── auth_profile.php ├── auth_resetpassword.php ├── automation_devices.php ├── automation_graph_rules.php ├── automation_networks.php ├── automation_snmp.php ├── automation_templates.php ├── automation_tree_rules.php ├── cache ├── boost │ ├── .htaccess │ └── index.php ├── index.php ├── mibcache │ ├── .htaccess │ └── index.php ├── realtime │ ├── .htaccess │ └── index.php └── spikekill │ ├── .htaccess │ └── index.php ├── cacti.sql ├── cactid.php ├── cdef.php ├── changelog.php ├── cli ├── .htaccess ├── add_data_query.php ├── add_datasource.php ├── add_device.php ├── add_graph_template.php ├── add_graphs.php ├── add_group.php ├── add_group_perms.php ├── add_perms.php ├── add_site.php ├── add_tree.php ├── analyze_database.php ├── apply_automation_rules.php ├── audit_database.php ├── batchgapfix.php ├── change_device.php ├── clone_device_template.php ├── convert_tables.php ├── copy_user.php ├── fetch_plugins.php ├── fix_mediumint.php ├── float_rrdfiles.php ├── genkey.php ├── genmanifest.php ├── host_update_template.php ├── import_package.php ├── import_template.php ├── index.php ├── input_whitelist.php ├── install_cacti.php ├── md5sum.php ├── migrate_poller.php ├── plugin_manage.php ├── poller_data_sources_reapply_names.php ├── poller_graphs_reapply_names.php ├── poller_output_empty.php ├── poller_reindex_hosts.php ├── poller_replicate.php ├── push_out_hosts.php ├── rebuild_poller_cache.php ├── refresh_csrf.php ├── remove_broken_graphs.php ├── remove_device.php ├── remove_graphs.php ├── removespikes.php ├── reorder_data_query.php ├── repair_database.php ├── repair_graphs.php ├── repair_templates.php ├── rrdresize.php ├── show_perms.php ├── splice_rrd.php ├── sqltable_to_php.php ├── structure_rra_paths.php ├── update_heartbeat.php ├── upgrade_database.php └── version.php ├── clog.php ├── clog_user.php ├── cmd.php ├── cmd_realtime.php ├── color.php ├── color_templates.php ├── composer.json ├── composer.lock ├── contrib ├── .htaccess ├── cactigetOIDs └── index.php ├── data_debug.php ├── data_input.php ├── data_queries.php ├── data_source_profiles.php ├── data_sources.php ├── data_templates.php ├── docs ├── README.md ├── audit_schema.sql └── index.php ├── formats ├── cacti_group.format ├── cacti_group_dark.format ├── cacti_monitor.format ├── default.format └── index.php ├── gprint_presets.php ├── graph.php ├── graph_image.php ├── graph_json.php ├── graph_realtime.php ├── graph_templates.php ├── graph_view.php ├── graph_xport.php ├── graphs.php ├── graphs_new.php ├── help.php ├── host.php ├── host_templates.php ├── images ├── accept.png ├── application_edit.png ├── arrow.gif ├── bullet_arrow_down.png ├── bullet_arrow_up.png ├── cacti_about_logo.gif ├── cacti_backdrop2.gif ├── cacti_error_image.png ├── cacti_logo.gif ├── cacti_logo.svg ├── calendar.gif ├── chart_curve_go.png ├── cog.png ├── cog_add.png ├── device_template.png ├── favicon.ico ├── graph_properties.gif ├── index.php ├── location.png ├── menuarrow.gif ├── server.png ├── server_chart.png ├── server_chart_curve.png ├── server_dataquery.png ├── server_device_template.png ├── server_edit.png ├── server_graph_template.png ├── server_table.png ├── shadow.gif ├── shadow_gray.gif ├── site.png ├── spikekill.gif ├── stop.png ├── tab_console.gif ├── tab_list.gif ├── tab_preview.gif ├── tab_template_blue.gif ├── tab_template_red.gif ├── tab_tree.gif ├── table.png ├── table_go.png ├── template_edit.png ├── timeview.png ├── transparent_line.gif ├── tree.png ├── view_aggregate_children.png ├── view_none.gif └── view_page.png ├── include ├── auth.php ├── bottom_footer.php ├── cacti_version ├── cli_check.php ├── config.php.dist ├── content │ ├── README │ ├── basic-example.html │ ├── iframe-example.html │ ├── index.php │ └── php-example.html ├── csrf.php ├── css │ ├── billboard.css │ └── jquery.toast.css ├── fa │ ├── LICENSE.txt │ ├── css │ │ ├── all.css │ │ ├── all.min.css │ │ ├── brands.css │ │ ├── brands.min.css │ │ ├── fontawesome.css │ │ ├── fontawesome.min.css │ │ ├── index.php │ │ ├── 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 │ ├── index.php │ ├── js │ │ ├── all.js │ │ ├── all.min.js │ │ ├── brands.js │ │ ├── brands.min.js │ │ ├── conflict-detection.js │ │ ├── conflict-detection.min.js │ │ ├── fontawesome.js │ │ ├── fontawesome.min.js │ │ ├── index.php │ │ ├── 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 │ │ ├── _larger.less │ │ ├── _list.less │ │ ├── _mixins.less │ │ ├── _rotated-flipped.less │ │ ├── _screen-reader.less │ │ ├── _shims.less │ │ ├── _sizing.less │ │ ├── _stacked.less │ │ ├── _variables.less │ │ ├── brands.less │ │ ├── fa-brands.less │ │ ├── fa-regular.less │ │ ├── fa-solid.less │ │ ├── fontawesome.less │ │ ├── index.php │ │ ├── regular.less │ │ ├── solid.less │ │ └── v4-shims.less │ ├── metadata │ │ ├── categories.yml │ │ ├── icon-families.json │ │ ├── icon-families.yml │ │ ├── icons.json │ │ ├── icons.yml │ │ ├── index.php │ │ ├── shims.json │ │ ├── shims.yml │ │ └── sponsors.yml │ ├── scss │ │ ├── _animated.scss │ │ ├── _bordered-pulled.scss │ │ ├── _core.scss │ │ ├── _fixed-width.scss │ │ ├── _functions.scss │ │ ├── _icons.scss │ │ ├── _larger.scss │ │ ├── _list.scss │ │ ├── _mixins.scss │ │ ├── _rotated-flipped.scss │ │ ├── _screen-reader.scss │ │ ├── _shims.scss │ │ ├── _sizing.scss │ │ ├── _stacked.scss │ │ ├── _variables.scss │ │ ├── brands.scss │ │ ├── fa-brands.scss │ │ ├── fa-regular.scss │ │ ├── fa-solid.scss │ │ ├── fontawesome.scss │ │ ├── index.php │ │ ├── regular.scss │ │ ├── solid.scss │ │ └── v4-shims.scss │ ├── sprites │ │ ├── brands.svg │ │ ├── index.php │ │ ├── regular.svg │ │ └── solid.svg │ ├── svgs │ │ ├── brands │ │ │ ├── 42-group.svg │ │ │ ├── 500px.svg │ │ │ ├── accessible-icon.svg │ │ │ ├── accusoft.svg │ │ │ ├── acquisitions-incorporated.svg │ │ │ ├── adn.svg │ │ │ ├── adobe.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 │ │ │ ├── bluesky.svg │ │ │ ├── bluetooth-b.svg │ │ │ ├── bluetooth.svg │ │ │ ├── bootstrap.svg │ │ │ ├── bots.svg │ │ │ ├── brave-reverse.svg │ │ │ ├── brave.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 │ │ │ ├── css.svg │ │ │ ├── css3-alt.svg │ │ │ ├── css3.svg │ │ │ ├── cuttlefish.svg │ │ │ ├── d-and-d-beyond.svg │ │ │ ├── d-and-d.svg │ │ │ ├── dailymotion.svg │ │ │ ├── dart-lang.svg │ │ │ ├── dashcube.svg │ │ │ ├── debian.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 │ │ │ ├── files-pinwheel.svg │ │ │ ├── firefox-browser.svg │ │ │ ├── firefox.svg │ │ │ ├── first-order-alt.svg │ │ │ ├── first-order.svg │ │ │ ├── firstdraft.svg │ │ │ ├── flickr.svg │ │ │ ├── flipboard.svg │ │ │ ├── flutter.svg │ │ │ ├── fly.svg │ │ │ ├── font-awesome-alt.svg │ │ │ ├── font-awesome-flag.svg │ │ │ ├── font-awesome-logo-full.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-scholar.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 │ │ │ ├── index.php │ │ │ ├── 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 │ │ │ ├── jxl.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 │ │ │ ├── letterboxd.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-m.svg │ │ │ ├── medium.svg │ │ │ ├── medrt.svg │ │ │ ├── meetup.svg │ │ │ ├── megaport.svg │ │ │ ├── mendeley.svg │ │ │ ├── meta.svg │ │ │ ├── microblog.svg │ │ │ ├── microsoft.svg │ │ │ ├── mintbit.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 │ │ │ ├── odysee.svg │ │ │ ├── old-republic.svg │ │ │ ├── opencart.svg │ │ │ ├── openid.svg │ │ │ ├── opensuse.svg │ │ │ ├── opera.svg │ │ │ ├── optin-monster.svg │ │ │ ├── orcid.svg │ │ │ ├── osi.svg │ │ │ ├── padlet.svg │ │ │ ├── page4.svg │ │ │ ├── pagelines.svg │ │ │ ├── palfed.svg │ │ │ ├── patreon.svg │ │ │ ├── paypal.svg │ │ │ ├── penny-arcade.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 │ │ │ ├── pixiv.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 │ │ │ ├── shoelace.svg │ │ │ ├── shopify.svg │ │ │ ├── shopware.svg │ │ │ ├── signal-messenger.svg │ │ │ ├── simplybuilt.svg │ │ │ ├── sistrix.svg │ │ │ ├── sith.svg │ │ │ ├── sitrox.svg │ │ │ ├── sketch.svg │ │ │ ├── skyatlas.svg │ │ │ ├── skype.svg │ │ │ ├── slack-hash.svg │ │ │ ├── slack.svg │ │ │ ├── slideshare.svg │ │ │ ├── snapchat-ghost.svg │ │ │ ├── snapchat-square.svg │ │ │ ├── snapchat.svg │ │ │ ├── soundcloud.svg │ │ │ ├── sourcetree.svg │ │ │ ├── space-awesome.svg │ │ │ ├── speakap.svg │ │ │ ├── speaker-deck.svg │ │ │ ├── spotify.svg │ │ │ ├── square-behance.svg │ │ │ ├── square-bluesky.svg │ │ │ ├── square-dribbble.svg │ │ │ ├── square-facebook.svg │ │ │ ├── square-font-awesome-stroke.svg │ │ │ ├── square-font-awesome.svg │ │ │ ├── square-git.svg │ │ │ ├── square-github.svg │ │ │ ├── square-gitlab.svg │ │ │ ├── square-google-plus.svg │ │ │ ├── square-hacker-news.svg │ │ │ ├── square-instagram.svg │ │ │ ├── square-js.svg │ │ │ ├── square-lastfm.svg │ │ │ ├── square-letterboxd.svg │ │ │ ├── square-odnoklassniki.svg │ │ │ ├── square-pied-piper.svg │ │ │ ├── square-pinterest.svg │ │ │ ├── square-reddit.svg │ │ │ ├── square-snapchat.svg │ │ │ ├── square-steam.svg │ │ │ ├── square-threads.svg │ │ │ ├── square-tumblr.svg │ │ │ ├── square-twitter.svg │ │ │ ├── square-upwork.svg │ │ │ ├── square-viadeo.svg │ │ │ ├── square-vimeo.svg │ │ │ ├── square-web-awesome-stroke.svg │ │ │ ├── square-web-awesome.svg │ │ │ ├── square-whatsapp.svg │ │ │ ├── square-x-twitter.svg │ │ │ ├── square-xing.svg │ │ │ ├── square-youtube.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 │ │ │ ├── stubber.svg │ │ │ ├── studiovinari.svg │ │ │ ├── stumbleupon-circle.svg │ │ │ ├── stumbleupon.svg │ │ │ ├── superpowers.svg │ │ │ ├── supple.svg │ │ │ ├── suse.svg │ │ │ ├── swift.svg │ │ │ ├── symfony.svg │ │ │ ├── teamspeak.svg │ │ │ ├── telegram-plane.svg │ │ │ ├── telegram.svg │ │ │ ├── tencent-weibo.svg │ │ │ ├── the-red-yeti.svg │ │ │ ├── themeco.svg │ │ │ ├── themeisle.svg │ │ │ ├── think-peaks.svg │ │ │ ├── threads.svg │ │ │ ├── tiktok.svg │ │ │ ├── trade-federation.svg │ │ │ ├── trello.svg │ │ │ ├── tripadvisor.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 │ │ │ ├── upwork.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 │ │ │ ├── web-awesome.svg │ │ │ ├── webflow.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 │ │ │ ├── x-twitter.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 │ │ ├── index.php │ │ ├── regular │ │ │ ├── address-book.svg │ │ │ ├── address-card.svg │ │ │ ├── angry.svg │ │ │ ├── arrow-alt-circle-down.svg │ │ │ ├── arrow-alt-circle-left.svg │ │ │ ├── arrow-alt-circle-right.svg │ │ │ ├── arrow-alt-circle-up.svg │ │ │ ├── bell-slash.svg │ │ │ ├── bell.svg │ │ │ ├── bookmark.svg │ │ │ ├── building.svg │ │ │ ├── calendar-alt.svg │ │ │ ├── calendar-check.svg │ │ │ ├── calendar-days.svg │ │ │ ├── calendar-minus.svg │ │ │ ├── calendar-plus.svg │ │ │ ├── calendar-times.svg │ │ │ ├── calendar-xmark.svg │ │ │ ├── calendar.svg │ │ │ ├── caret-square-down.svg │ │ │ ├── caret-square-left.svg │ │ │ ├── caret-square-right.svg │ │ │ ├── caret-square-up.svg │ │ │ ├── chart-bar.svg │ │ │ ├── check-circle.svg │ │ │ ├── check-square.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-alt.svg │ │ │ ├── comment-dots.svg │ │ │ ├── comment.svg │ │ │ ├── comments.svg │ │ │ ├── compass.svg │ │ │ ├── copy.svg │ │ │ ├── copyright.svg │ │ │ ├── credit-card.svg │ │ │ ├── dizzy.svg │ │ │ ├── dot-circle.svg │ │ │ ├── edit.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-alt.svg │ │ │ ├── file-archive.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 │ │ │ ├── flushed.svg │ │ │ ├── folder-closed.svg │ │ │ ├── folder-open.svg │ │ │ ├── folder.svg │ │ │ ├── font-awesome-logo-full.svg │ │ │ ├── font-awesome.svg │ │ │ ├── frown-open.svg │ │ │ ├── frown.svg │ │ │ ├── futbol.svg │ │ │ ├── gem.svg │ │ │ ├── grimace.svg │ │ │ ├── grin-alt.svg │ │ │ ├── grin-beam-sweat.svg │ │ │ ├── grin-beam.svg │ │ │ ├── grin-hearts.svg │ │ │ ├── grin-squint-tears.svg │ │ │ ├── grin-squint.svg │ │ │ ├── grin-stars.svg │ │ │ ├── grin-tears.svg │ │ │ ├── grin-tongue-squint.svg │ │ │ ├── grin-tongue-wink.svg │ │ │ ├── grin-tongue.svg │ │ │ ├── grin-wink.svg │ │ │ ├── grin.svg │ │ │ ├── hand-back-fist.svg │ │ │ ├── hand-lizard.svg │ │ │ ├── hand-paper.svg │ │ │ ├── hand-peace.svg │ │ │ ├── hand-point-down.svg │ │ │ ├── hand-point-left.svg │ │ │ ├── hand-point-right.svg │ │ │ ├── hand-point-up.svg │ │ │ ├── hand-pointer.svg │ │ │ ├── hand-rock.svg │ │ │ ├── hand-scissors.svg │ │ │ ├── hand-spock.svg │ │ │ ├── hand.svg │ │ │ ├── handshake.svg │ │ │ ├── hard-drive.svg │ │ │ ├── hdd.svg │ │ │ ├── heart.svg │ │ │ ├── hospital.svg │ │ │ ├── hourglass-half.svg │ │ │ ├── hourglass.svg │ │ │ ├── id-badge.svg │ │ │ ├── id-card.svg │ │ │ ├── image.svg │ │ │ ├── images.svg │ │ │ ├── index.php │ │ │ ├── keyboard.svg │ │ │ ├── kiss-beam.svg │ │ │ ├── kiss-wink-heart.svg │ │ │ ├── kiss.svg │ │ │ ├── laugh-beam.svg │ │ │ ├── laugh-squint.svg │ │ │ ├── laugh-wink.svg │ │ │ ├── laugh.svg │ │ │ ├── lemon.svg │ │ │ ├── life-ring.svg │ │ │ ├── lightbulb.svg │ │ │ ├── list-alt.svg │ │ │ ├── map.svg │ │ │ ├── meh-blank.svg │ │ │ ├── meh-rolling-eyes.svg │ │ │ ├── meh.svg │ │ │ ├── message.svg │ │ │ ├── minus-square.svg │ │ │ ├── money-bill-1.svg │ │ │ ├── money-bill-alt.svg │ │ │ ├── moon.svg │ │ │ ├── newspaper.svg │ │ │ ├── note-sticky.svg │ │ │ ├── object-group.svg │ │ │ ├── object-ungroup.svg │ │ │ ├── paper-plane.svg │ │ │ ├── paste.svg │ │ │ ├── pause-circle.svg │ │ │ ├── pen-to-square.svg │ │ │ ├── play-circle.svg │ │ │ ├── plus-square.svg │ │ │ ├── question-circle.svg │ │ │ ├── rectangle-list.svg │ │ │ ├── rectangle-xmark.svg │ │ │ ├── registered.svg │ │ │ ├── sad-cry.svg │ │ │ ├── sad-tear.svg │ │ │ ├── save.svg │ │ │ ├── share-from-square.svg │ │ │ ├── share-square.svg │ │ │ ├── smile-beam.svg │ │ │ ├── smile-wink.svg │ │ │ ├── smile.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 │ │ │ ├── sticky-note.svg │ │ │ ├── stop-circle.svg │ │ │ ├── sun.svg │ │ │ ├── surprise.svg │ │ │ ├── thumbs-down.svg │ │ │ ├── thumbs-up.svg │ │ │ ├── times-circle.svg │ │ │ ├── tired.svg │ │ │ ├── trash-alt.svg │ │ │ ├── trash-can.svg │ │ │ ├── user-circle.svg │ │ │ ├── user.svg │ │ │ ├── window-close.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 │ │ │ ├── ad.svg │ │ │ ├── address-book.svg │ │ │ ├── address-card.svg │ │ │ ├── adjust.svg │ │ │ ├── air-freshener.svg │ │ │ ├── align-center.svg │ │ │ ├── align-justify.svg │ │ │ ├── align-left.svg │ │ │ ├── align-right.svg │ │ │ ├── allergies.svg │ │ │ ├── ambulance.svg │ │ │ ├── american-sign-language-interpreting.svg │ │ │ ├── anchor-circle-check.svg │ │ │ ├── anchor-circle-exclamation.svg │ │ │ ├── anchor-circle-xmark.svg │ │ │ ├── anchor-lock.svg │ │ │ ├── anchor.svg │ │ │ ├── angle-double-down.svg │ │ │ ├── angle-double-left.svg │ │ │ ├── angle-double-right.svg │ │ │ ├── angle-double-up.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 │ │ │ ├── angry.svg │ │ │ ├── ankh.svg │ │ │ ├── apple-alt.svg │ │ │ ├── apple-whole.svg │ │ │ ├── archive.svg │ │ │ ├── archway.svg │ │ │ ├── arrow-alt-circle-down.svg │ │ │ ├── arrow-alt-circle-left.svg │ │ │ ├── arrow-alt-circle-right.svg │ │ │ ├── arrow-alt-circle-up.svg │ │ │ ├── arrow-circle-down.svg │ │ │ ├── arrow-circle-left.svg │ │ │ ├── arrow-circle-right.svg │ │ │ ├── arrow-circle-up.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-alt-h.svg │ │ │ ├── arrows-alt-v.svg │ │ │ ├── arrows-alt.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 │ │ │ ├── assistive-listening-systems.svg │ │ │ ├── asterisk.svg │ │ │ ├── at.svg │ │ │ ├── atlas.svg │ │ │ ├── atom.svg │ │ │ ├── audio-description.svg │ │ │ ├── austral-sign.svg │ │ │ ├── award.svg │ │ │ ├── b.svg │ │ │ ├── baby-carriage.svg │ │ │ ├── baby.svg │ │ │ ├── backspace.svg │ │ │ ├── backward-fast.svg │ │ │ ├── backward-step.svg │ │ │ ├── backward.svg │ │ │ ├── bacon.svg │ │ │ ├── bacteria.svg │ │ │ ├── bacterium.svg │ │ │ ├── bag-shopping.svg │ │ │ ├── bahai.svg │ │ │ ├── baht-sign.svg │ │ │ ├── balance-scale-left.svg │ │ │ ├── balance-scale-right.svg │ │ │ ├── balance-scale.svg │ │ │ ├── ban-smoking.svg │ │ │ ├── ban.svg │ │ │ ├── band-aid.svg │ │ │ ├── bandage.svg │ │ │ ├── bangladeshi-taka-sign.svg │ │ │ ├── barcode.svg │ │ │ ├── bars-progress.svg │ │ │ ├── bars-staggered.svg │ │ │ ├── bars.svg │ │ │ ├── baseball-ball.svg │ │ │ ├── baseball-bat-ball.svg │ │ │ ├── baseball.svg │ │ │ ├── basket-shopping.svg │ │ │ ├── basketball-ball.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 │ │ │ ├── beer.svg │ │ │ ├── bell-concierge.svg │ │ │ ├── bell-slash.svg │ │ │ ├── bell.svg │ │ │ ├── bezier-curve.svg │ │ │ ├── bible.svg │ │ │ ├── bicycle.svg │ │ │ ├── biking.svg │ │ │ ├── binoculars.svg │ │ │ ├── biohazard.svg │ │ │ ├── birthday-cake.svg │ │ │ ├── bitcoin-sign.svg │ │ │ ├── blender-phone.svg │ │ │ ├── blender.svg │ │ │ ├── blind.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-dead.svg │ │ │ ├── book-journal-whills.svg │ │ │ ├── book-medical.svg │ │ │ ├── book-open-reader.svg │ │ │ ├── book-open.svg │ │ │ ├── book-quran.svg │ │ │ ├── book-reader.svg │ │ │ ├── book-skull.svg │ │ │ ├── book-tanakh.svg │ │ │ ├── book.svg │ │ │ ├── bookmark.svg │ │ │ ├── border-all.svg │ │ │ ├── border-none.svg │ │ │ ├── border-style.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 │ │ │ ├── boxes.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 │ │ │ ├── broadcast-tower.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 │ │ │ ├── burn.svg │ │ │ ├── burst.svg │ │ │ ├── bus-alt.svg │ │ │ ├── bus-simple.svg │ │ │ ├── bus.svg │ │ │ ├── business-time.svg │ │ │ ├── c.svg │ │ │ ├── cable-car.svg │ │ │ ├── cake-candles.svg │ │ │ ├── calculator.svg │ │ │ ├── calendar-alt.svg │ │ │ ├── calendar-check.svg │ │ │ ├── calendar-day.svg │ │ │ ├── calendar-days.svg │ │ │ ├── calendar-minus.svg │ │ │ ├── calendar-plus.svg │ │ │ ├── calendar-times.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-alt.svg │ │ │ ├── car-battery.svg │ │ │ ├── car-burst.svg │ │ │ ├── car-crash.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-square-down.svg │ │ │ ├── caret-square-left.svg │ │ │ ├── caret-square-right.svg │ │ │ ├── caret-square-up.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-teacher.svg │ │ │ ├── chalkboard-user.svg │ │ │ ├── chalkboard.svg │ │ │ ├── champagne-glasses.svg │ │ │ ├── charging-station.svg │ │ │ ├── chart-area.svg │ │ │ ├── chart-bar.svg │ │ │ ├── chart-column.svg │ │ │ ├── chart-diagram.svg │ │ │ ├── chart-gantt.svg │ │ │ ├── chart-line.svg │ │ │ ├── chart-pie.svg │ │ │ ├── chart-simple.svg │ │ │ ├── check-circle.svg │ │ │ ├── check-double.svg │ │ │ ├── check-square.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-circle-down.svg │ │ │ ├── chevron-circle-left.svg │ │ │ ├── chevron-circle-right.svg │ │ │ ├── chevron-circle-up.svg │ │ │ ├── chevron-down.svg │ │ │ ├── chevron-left.svg │ │ │ ├── chevron-right.svg │ │ │ ├── chevron-up.svg │ │ │ ├── child-combatant.svg │ │ │ ├── child-dress.svg │ │ │ ├── child-reaching.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 │ │ │ ├── clinic-medical.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-download-alt.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-upload-alt.svg │ │ │ ├── cloud.svg │ │ │ ├── clover.svg │ │ │ ├── cocktail.svg │ │ │ ├── code-branch.svg │ │ │ ├── code-commit.svg │ │ │ ├── code-compare.svg │ │ │ ├── code-fork.svg │ │ │ ├── code-merge.svg │ │ │ ├── code-pull-request.svg │ │ │ ├── code.svg │ │ │ ├── coffee.svg │ │ │ ├── cog.svg │ │ │ ├── cogs.svg │ │ │ ├── coins.svg │ │ │ ├── colon-sign.svg │ │ │ ├── columns.svg │ │ │ ├── comment-alt.svg │ │ │ ├── comment-dollar.svg │ │ │ ├── comment-dots.svg │ │ │ ├── comment-medical.svg │ │ │ ├── comment-nodes.svg │ │ │ ├── comment-slash.svg │ │ │ ├── comment-sms.svg │ │ │ ├── comment.svg │ │ │ ├── comments-dollar.svg │ │ │ ├── comments.svg │ │ │ ├── compact-disc.svg │ │ │ ├── compass-drafting.svg │ │ │ ├── compass.svg │ │ │ ├── compress-alt.svg │ │ │ ├── compress-arrows-alt.svg │ │ │ ├── compress.svg │ │ │ ├── computer-mouse.svg │ │ │ ├── computer.svg │ │ │ ├── concierge-bell.svg │ │ │ ├── cookie-bite.svg │ │ │ ├── cookie.svg │ │ │ ├── copy.svg │ │ │ ├── copyright.svg │ │ │ ├── couch.svg │ │ │ ├── cow.svg │ │ │ ├── credit-card.svg │ │ │ ├── crop-alt.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 │ │ │ ├── cut.svg │ │ │ ├── d.svg │ │ │ ├── database.svg │ │ │ ├── deaf.svg │ │ │ ├── delete-left.svg │ │ │ ├── democrat.svg │ │ │ ├── desktop.svg │ │ │ ├── dharmachakra.svg │ │ │ ├── diagnoses.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 │ │ │ ├── digital-tachograph.svg │ │ │ ├── directions.svg │ │ │ ├── disease.svg │ │ │ ├── display.svg │ │ │ ├── divide.svg │ │ │ ├── dizzy.svg │ │ │ ├── dna.svg │ │ │ ├── dog.svg │ │ │ ├── dollar-sign.svg │ │ │ ├── dolly-flatbed.svg │ │ │ ├── dolly.svg │ │ │ ├── donate.svg │ │ │ ├── dong-sign.svg │ │ │ ├── door-closed.svg │ │ │ ├── door-open.svg │ │ │ ├── dot-circle.svg │ │ │ ├── dove.svg │ │ │ ├── down-left-and-up-right-to-center.svg │ │ │ ├── down-long.svg │ │ │ ├── download.svg │ │ │ ├── drafting-compass.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 │ │ │ ├── edit.svg │ │ │ ├── egg.svg │ │ │ ├── eject.svg │ │ │ ├── elevator.svg │ │ │ ├── ellipsis-h.svg │ │ │ ├── ellipsis-v.svg │ │ │ ├── ellipsis-vertical.svg │ │ │ ├── ellipsis.svg │ │ │ ├── envelope-circle-check.svg │ │ │ ├── envelope-open-text.svg │ │ │ ├── envelope-open.svg │ │ │ ├── envelope-square.svg │ │ │ ├── envelope.svg │ │ │ ├── envelopes-bulk.svg │ │ │ ├── equals.svg │ │ │ ├── eraser.svg │ │ │ ├── ethernet.svg │ │ │ ├── euro-sign.svg │ │ │ ├── exchange-alt.svg │ │ │ ├── exclamation-circle.svg │ │ │ ├── exclamation-triangle.svg │ │ │ ├── exclamation.svg │ │ │ ├── expand-alt.svg │ │ │ ├── expand-arrows-alt.svg │ │ │ ├── expand.svg │ │ │ ├── explosion.svg │ │ │ ├── external-link-alt.svg │ │ │ ├── external-link-square-alt.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 │ │ │ ├── fast-backward.svg │ │ │ ├── fast-forward.svg │ │ │ ├── faucet-drip.svg │ │ │ ├── faucet.svg │ │ │ ├── fax.svg │ │ │ ├── feather-alt.svg │ │ │ ├── feather-pointed.svg │ │ │ ├── feather.svg │ │ │ ├── female.svg │ │ │ ├── ferry.svg │ │ │ ├── fighter-jet.svg │ │ │ ├── file-alt.svg │ │ │ ├── file-archive.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-download.svg │ │ │ ├── file-excel.svg │ │ │ ├── file-export.svg │ │ │ ├── file-fragment.svg │ │ │ ├── file-half-dashed.svg │ │ │ ├── file-image.svg │ │ │ ├── file-import.svg │ │ │ ├── file-invoice-dollar.svg │ │ │ ├── file-invoice.svg │ │ │ ├── file-lines.svg │ │ │ ├── file-medical-alt.svg │ │ │ ├── file-medical.svg │ │ │ ├── file-pdf.svg │ │ │ ├── file-pen.svg │ │ │ ├── file-powerpoint.svg │ │ │ ├── file-prescription.svg │ │ │ ├── file-shield.svg │ │ │ ├── file-signature.svg │ │ │ ├── file-upload.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-alt.svg │ │ │ ├── fire-burner.svg │ │ │ ├── fire-extinguisher.svg │ │ │ ├── fire-flame-curved.svg │ │ │ ├── fire-flame-simple.svg │ │ │ ├── fire.svg │ │ │ ├── first-aid.svg │ │ │ ├── fish-fins.svg │ │ │ ├── fish.svg │ │ │ ├── fist-raised.svg │ │ │ ├── flag-checkered.svg │ │ │ ├── flag-usa.svg │ │ │ ├── flag.svg │ │ │ ├── flask-vial.svg │ │ │ ├── flask.svg │ │ │ ├── floppy-disk.svg │ │ │ ├── florin-sign.svg │ │ │ ├── flushed.svg │ │ │ ├── folder-closed.svg │ │ │ ├── folder-minus.svg │ │ │ ├── folder-open.svg │ │ │ ├── folder-plus.svg │ │ │ ├── folder-tree.svg │ │ │ ├── folder.svg │ │ │ ├── font-awesome-logo-full.svg │ │ │ ├── font-awesome.svg │ │ │ ├── font.svg │ │ │ ├── football-ball.svg │ │ │ ├── football.svg │ │ │ ├── forward-fast.svg │ │ │ ├── forward-step.svg │ │ │ ├── forward.svg │ │ │ ├── franc-sign.svg │ │ │ ├── frog.svg │ │ │ ├── frown-open.svg │ │ │ ├── frown.svg │ │ │ ├── funnel-dollar.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-cheers.svg │ │ │ ├── glass-martini-alt.svg │ │ │ ├── glass-martini.svg │ │ │ ├── glass-water-droplet.svg │ │ │ ├── glass-water.svg │ │ │ ├── glass-whiskey.svg │ │ │ ├── glasses.svg │ │ │ ├── globe-africa.svg │ │ │ ├── globe-americas.svg │ │ │ ├── globe-asia.svg │ │ │ ├── globe-europe.svg │ │ │ ├── globe.svg │ │ │ ├── golf-ball-tee.svg │ │ │ ├── golf-ball.svg │ │ │ ├── gopuram.svg │ │ │ ├── graduation-cap.svg │ │ │ ├── greater-than-equal.svg │ │ │ ├── greater-than.svg │ │ │ ├── grimace.svg │ │ │ ├── grin-alt.svg │ │ │ ├── grin-beam-sweat.svg │ │ │ ├── grin-beam.svg │ │ │ ├── grin-hearts.svg │ │ │ ├── grin-squint-tears.svg │ │ │ ├── grin-squint.svg │ │ │ ├── grin-stars.svg │ │ │ ├── grin-tears.svg │ │ │ ├── grin-tongue-squint.svg │ │ │ ├── grin-tongue-wink.svg │ │ │ ├── grin-tongue.svg │ │ │ ├── grin-wink.svg │ │ │ ├── grin.svg │ │ │ ├── grip-horizontal.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-square.svg │ │ │ ├── h.svg │ │ │ ├── hamburger.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-usd.svg │ │ │ ├── hand-holding-water.svg │ │ │ ├── hand-holding.svg │ │ │ ├── hand-lizard.svg │ │ │ ├── hand-middle-finger.svg │ │ │ ├── hand-paper.svg │ │ │ ├── hand-peace.svg │ │ │ ├── hand-point-down.svg │ │ │ ├── hand-point-left.svg │ │ │ ├── hand-point-right.svg │ │ │ ├── hand-point-up.svg │ │ │ ├── hand-pointer.svg │ │ │ ├── hand-rock.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-helping.svg │ │ │ ├── hands-holding-child.svg │ │ │ ├── hands-holding-circle.svg │ │ │ ├── hands-holding.svg │ │ │ ├── hands-praying.svg │ │ │ ├── hands-wash.svg │ │ │ ├── hands.svg │ │ │ ├── handshake-alt-slash.svg │ │ │ ├── handshake-angle.svg │ │ │ ├── handshake-simple-slash.svg │ │ │ ├── handshake-simple.svg │ │ │ ├── handshake-slash.svg │ │ │ ├── handshake.svg │ │ │ ├── hanukiah.svg │ │ │ ├── hard-drive.svg │ │ │ ├── hard-hat.svg │ │ │ ├── hashtag.svg │ │ │ ├── hat-cowboy-side.svg │ │ │ ├── hat-cowboy.svg │ │ │ ├── hat-wizard.svg │ │ │ ├── hdd.svg │ │ │ ├── head-side-cough-slash.svg │ │ │ ├── head-side-cough.svg │ │ │ ├── head-side-mask.svg │ │ │ ├── head-side-virus.svg │ │ │ ├── heading.svg │ │ │ ├── headphones-alt.svg │ │ │ ├── headphones-simple.svg │ │ │ ├── headphones.svg │ │ │ ├── headset.svg │ │ │ ├── heart-broken.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 │ │ │ ├── heartbeat.svg │ │ │ ├── helicopter-symbol.svg │ │ │ ├── helicopter.svg │ │ │ ├── helmet-safety.svg │ │ │ ├── helmet-un.svg │ │ │ ├── hexagon-nodes-bolt.svg │ │ │ ├── hexagon-nodes.svg │ │ │ ├── highlighter.svg │ │ │ ├── hiking.svg │ │ │ ├── hill-avalanche.svg │ │ │ ├── hill-rockslide.svg │ │ │ ├── hippo.svg │ │ │ ├── history.svg │ │ │ ├── hockey-puck.svg │ │ │ ├── holly-berry.svg │ │ │ ├── home.svg │ │ │ ├── horse-head.svg │ │ │ ├── horse.svg │ │ │ ├── hospital-alt.svg │ │ │ ├── hospital-symbol.svg │ │ │ ├── hospital-user.svg │ │ │ ├── hospital.svg │ │ │ ├── hot-tub-person.svg │ │ │ ├── hot-tub.svg │ │ │ ├── hotdog.svg │ │ │ ├── hotel.svg │ │ │ ├── hourglass-end.svg │ │ │ ├── hourglass-half.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-damage.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 │ │ │ ├── hryvnia.svg │ │ │ ├── hurricane.svg │ │ │ ├── i-cursor.svg │ │ │ ├── i.svg │ │ │ ├── ice-cream.svg │ │ │ ├── icicles.svg │ │ │ ├── icons.svg │ │ │ ├── id-badge.svg │ │ │ ├── id-card-alt.svg │ │ │ ├── id-card-clip.svg │ │ │ ├── id-card.svg │ │ │ ├── igloo.svg │ │ │ ├── image-portrait.svg │ │ │ ├── image.svg │ │ │ ├── images.svg │ │ │ ├── inbox.svg │ │ │ ├── indent.svg │ │ │ ├── index.php │ │ │ ├── indian-rupee-sign.svg │ │ │ ├── industry.svg │ │ │ ├── infinity.svg │ │ │ ├── info-circle.svg │ │ │ ├── info.svg │ │ │ ├── italic.svg │ │ │ ├── j.svg │ │ │ ├── jar-wheat.svg │ │ │ ├── jar.svg │ │ │ ├── jedi.svg │ │ │ ├── jet-fighter-up.svg │ │ │ ├── jet-fighter.svg │ │ │ ├── joint.svg │ │ │ ├── journal-whills.svg │ │ │ ├── jug-detergent.svg │ │ │ ├── k.svg │ │ │ ├── kaaba.svg │ │ │ ├── key.svg │ │ │ ├── keyboard.svg │ │ │ ├── khanda.svg │ │ │ ├── kip-sign.svg │ │ │ ├── kiss-beam.svg │ │ │ ├── kiss-wink-heart.svg │ │ │ ├── kiss.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-house.svg │ │ │ ├── laptop-medical.svg │ │ │ ├── laptop.svg │ │ │ ├── lari-sign.svg │ │ │ ├── laugh-beam.svg │ │ │ ├── laugh-squint.svg │ │ │ ├── laugh-wink.svg │ │ │ ├── laugh.svg │ │ │ ├── layer-group.svg │ │ │ ├── leaf.svg │ │ │ ├── left-long.svg │ │ │ ├── left-right.svg │ │ │ ├── lemon.svg │ │ │ ├── less-than-equal.svg │ │ │ ├── less-than.svg │ │ │ ├── level-down-alt.svg │ │ │ ├── level-up-alt.svg │ │ │ ├── life-ring.svg │ │ │ ├── lightbulb.svg │ │ │ ├── lines-leaning.svg │ │ │ ├── link-slash.svg │ │ │ ├── link.svg │ │ │ ├── lira-sign.svg │ │ │ ├── list-alt.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 │ │ │ ├── long-arrow-alt-down.svg │ │ │ ├── long-arrow-alt-left.svg │ │ │ ├── long-arrow-alt-right.svg │ │ │ ├── long-arrow-alt-up.svg │ │ │ ├── low-vision.svg │ │ │ ├── luggage-cart.svg │ │ │ ├── lungs-virus.svg │ │ │ ├── lungs.svg │ │ │ ├── m.svg │ │ │ ├── magic.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 │ │ │ ├── mail-bulk.svg │ │ │ ├── male.svg │ │ │ ├── manat-sign.svg │ │ │ ├── map-location-dot.svg │ │ │ ├── map-location.svg │ │ │ ├── map-marked-alt.svg │ │ │ ├── map-marked.svg │ │ │ ├── map-marker-alt.svg │ │ │ ├── map-marker.svg │ │ │ ├── map-pin.svg │ │ │ ├── map-signs.svg │ │ │ ├── map.svg │ │ │ ├── marker.svg │ │ │ ├── mars-and-venus-burst.svg │ │ │ ├── mars-and-venus.svg │ │ │ ├── mars-double.svg │ │ │ ├── mars-stroke-h.svg │ │ │ ├── mars-stroke-right.svg │ │ │ ├── mars-stroke-up.svg │ │ │ ├── mars-stroke-v.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 │ │ │ ├── medkit.svg │ │ │ ├── meh-blank.svg │ │ │ ├── meh-rolling-eyes.svg │ │ │ ├── meh.svg │ │ │ ├── memory.svg │ │ │ ├── menorah.svg │ │ │ ├── mercury.svg │ │ │ ├── message.svg │ │ │ ├── meteor.svg │ │ │ ├── microchip.svg │ │ │ ├── microphone-alt-slash.svg │ │ │ ├── microphone-alt.svg │ │ │ ├── microphone-lines-slash.svg │ │ │ ├── microphone-lines.svg │ │ │ ├── microphone-slash.svg │ │ │ ├── microphone.svg │ │ │ ├── microscope.svg │ │ │ ├── mill-sign.svg │ │ │ ├── minimize.svg │ │ │ ├── minus-circle.svg │ │ │ ├── minus-square.svg │ │ │ ├── minus.svg │ │ │ ├── mitten.svg │ │ │ ├── mobile-alt.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-alt.svg │ │ │ ├── money-bill-transfer.svg │ │ │ ├── money-bill-trend-up.svg │ │ │ ├── money-bill-wave-alt.svg │ │ │ ├── money-bill-wave.svg │ │ │ ├── money-bill-wheat.svg │ │ │ ├── money-bill.svg │ │ │ ├── money-bills.svg │ │ │ ├── money-check-alt.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 │ │ │ ├── mouse-pointer.svg │ │ │ ├── mouse.svg │ │ │ ├── mug-hot.svg │ │ │ ├── mug-saucer.svg │ │ │ ├── music.svg │ │ │ ├── n.svg │ │ │ ├── naira-sign.svg │ │ │ ├── network-wired.svg │ │ │ ├── neuter.svg │ │ │ ├── newspaper.svg │ │ │ ├── not-equal.svg │ │ │ ├── notdef.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-brush.svg │ │ │ ├── paint-roller.svg │ │ │ ├── paintbrush.svg │ │ │ ├── palette.svg │ │ │ ├── pallet.svg │ │ │ ├── panorama.svg │ │ │ ├── paper-plane.svg │ │ │ ├── paperclip.svg │ │ │ ├── parachute-box.svg │ │ │ ├── paragraph.svg │ │ │ ├── parking.svg │ │ │ ├── passport.svg │ │ │ ├── pastafarianism.svg │ │ │ ├── paste.svg │ │ │ ├── pause-circle.svg │ │ │ ├── pause.svg │ │ │ ├── paw.svg │ │ │ ├── peace.svg │ │ │ ├── pen-alt.svg │ │ │ ├── pen-clip.svg │ │ │ ├── pen-fancy.svg │ │ │ ├── pen-nib.svg │ │ │ ├── pen-ruler.svg │ │ │ ├── pen-square.svg │ │ │ ├── pen-to-square.svg │ │ │ ├── pen.svg │ │ │ ├── pencil-alt.svg │ │ │ ├── pencil-ruler.svg │ │ │ ├── pencil.svg │ │ │ ├── people-arrows.svg │ │ │ ├── people-carry-box.svg │ │ │ ├── people-carry.svg │ │ │ ├── people-group.svg │ │ │ ├── people-line.svg │ │ │ ├── people-pulling.svg │ │ │ ├── people-robbery.svg │ │ │ ├── people-roof.svg │ │ │ ├── pepper-hot.svg │ │ │ ├── percent.svg │ │ │ ├── percentage.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-alt.svg │ │ │ ├── phone-flip.svg │ │ │ ├── phone-slash.svg │ │ │ ├── phone-square-alt.svg │ │ │ ├── phone-square.svg │ │ │ ├── phone-volume.svg │ │ │ ├── phone.svg │ │ │ ├── photo-film.svg │ │ │ ├── photo-video.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-circle.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-circle.svg │ │ │ ├── plus-minus.svg │ │ │ ├── plus-square.svg │ │ │ ├── plus.svg │ │ │ ├── podcast.svg │ │ │ ├── poll-h.svg │ │ │ ├── poll.svg │ │ │ ├── poo-storm.svg │ │ │ ├── poo.svg │ │ │ ├── poop.svg │ │ │ ├── portrait.svg │ │ │ ├── pound-sign.svg │ │ │ ├── power-off.svg │ │ │ ├── pray.svg │ │ │ ├── praying-hands.svg │ │ │ ├── prescription-bottle-alt.svg │ │ │ ├── prescription-bottle-medical.svg │ │ │ ├── prescription-bottle.svg │ │ │ ├── prescription.svg │ │ │ ├── print.svg │ │ │ ├── procedures.svg │ │ │ ├── project-diagram.svg │ │ │ ├── pump-medical.svg │ │ │ ├── pump-soap.svg │ │ │ ├── puzzle-piece.svg │ │ │ ├── q.svg │ │ │ ├── qrcode.svg │ │ │ ├── question-circle.svg │ │ │ ├── question.svg │ │ │ ├── quidditch.svg │ │ │ ├── quote-left.svg │ │ │ ├── quote-right.svg │ │ │ ├── quran.svg │ │ │ ├── r.svg │ │ │ ├── radiation-alt.svg │ │ │ ├── radiation.svg │ │ │ ├── radio.svg │ │ │ ├── rainbow.svg │ │ │ ├── random.svg │ │ │ ├── ranking-star.svg │ │ │ ├── receipt.svg │ │ │ ├── record-vinyl.svg │ │ │ ├── rectangle-ad.svg │ │ │ ├── rectangle-list.svg │ │ │ ├── rectangle-xmark.svg │ │ │ ├── recycle.svg │ │ │ ├── redo-alt.svg │ │ │ ├── redo.svg │ │ │ ├── registered.svg │ │ │ ├── remove-format.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-square.svg │ │ │ ├── rss.svg │ │ │ ├── ruble-sign.svg │ │ │ ├── rug.svg │ │ │ ├── ruler-combined.svg │ │ │ ├── ruler-horizontal.svg │ │ │ ├── ruler-vertical.svg │ │ │ ├── ruler.svg │ │ │ ├── running.svg │ │ │ ├── rupee-sign.svg │ │ │ ├── rupiah-sign.svg │ │ │ ├── s.svg │ │ │ ├── sack-dollar.svg │ │ │ ├── sack-xmark.svg │ │ │ ├── sad-cry.svg │ │ │ ├── sad-tear.svg │ │ │ ├── sailboat.svg │ │ │ ├── satellite-dish.svg │ │ │ ├── satellite.svg │ │ │ ├── save.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 │ │ │ ├── search-dollar.svg │ │ │ ├── search-location.svg │ │ │ ├── search-minus.svg │ │ │ ├── search-plus.svg │ │ │ ├── search.svg │ │ │ ├── section.svg │ │ │ ├── seedling.svg │ │ │ ├── server.svg │ │ │ ├── shapes.svg │ │ │ ├── share-alt-square.svg │ │ │ ├── share-alt.svg │ │ │ ├── share-from-square.svg │ │ │ ├── share-nodes.svg │ │ │ ├── share-square.svg │ │ │ ├── share.svg │ │ │ ├── sheet-plastic.svg │ │ │ ├── shekel-sign.svg │ │ │ ├── shield-alt.svg │ │ │ ├── shield-cat.svg │ │ │ ├── shield-dog.svg │ │ │ ├── shield-halved.svg │ │ │ ├── shield-heart.svg │ │ │ ├── shield-virus.svg │ │ │ ├── shield.svg │ │ │ ├── ship.svg │ │ │ ├── shipping-fast.svg │ │ │ ├── shirt.svg │ │ │ ├── shoe-prints.svg │ │ │ ├── shop-lock.svg │ │ │ ├── shop-slash.svg │ │ │ ├── shop.svg │ │ │ ├── shopping-bag.svg │ │ │ ├── shopping-basket.svg │ │ │ ├── shopping-cart.svg │ │ │ ├── shower.svg │ │ │ ├── shrimp.svg │ │ │ ├── shuffle.svg │ │ │ ├── shuttle-space.svg │ │ │ ├── shuttle-van.svg │ │ │ ├── sign-hanging.svg │ │ │ ├── sign-in-alt.svg │ │ │ ├── sign-language.svg │ │ │ ├── sign-out-alt.svg │ │ │ ├── sign.svg │ │ │ ├── signal.svg │ │ │ ├── signature.svg │ │ │ ├── signs-post.svg │ │ │ ├── sim-card.svg │ │ │ ├── sink.svg │ │ │ ├── sitemap.svg │ │ │ ├── skating.svg │ │ │ ├── skiing-nordic.svg │ │ │ ├── skiing.svg │ │ │ ├── skull-crossbones.svg │ │ │ ├── skull.svg │ │ │ ├── slash.svg │ │ │ ├── sleigh.svg │ │ │ ├── sliders-h.svg │ │ │ ├── sliders.svg │ │ │ ├── smile-beam.svg │ │ │ ├── smile-wink.svg │ │ │ ├── smile.svg │ │ │ ├── smog.svg │ │ │ ├── smoking-ban.svg │ │ │ ├── smoking.svg │ │ │ ├── sms.svg │ │ │ ├── snowboarding.svg │ │ │ ├── snowflake.svg │ │ │ ├── snowman.svg │ │ │ ├── snowplow.svg │ │ │ ├── soap.svg │ │ │ ├── socks.svg │ │ │ ├── solar-panel.svg │ │ │ ├── sort-alpha-down-alt.svg │ │ │ ├── sort-alpha-down.svg │ │ │ ├── sort-alpha-up-alt.svg │ │ │ ├── sort-alpha-up.svg │ │ │ ├── sort-amount-down-alt.svg │ │ │ ├── sort-amount-down.svg │ │ │ ├── sort-amount-up-alt.svg │ │ │ ├── sort-amount-up.svg │ │ │ ├── sort-down.svg │ │ │ ├── sort-numeric-down-alt.svg │ │ │ ├── sort-numeric-down.svg │ │ │ ├── sort-numeric-up-alt.svg │ │ │ ├── sort-numeric-up.svg │ │ │ ├── sort-up.svg │ │ │ ├── sort.svg │ │ │ ├── spa.svg │ │ │ ├── space-shuttle.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-binary.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-alt.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-snake.svg │ │ │ ├── stairs.svg │ │ │ ├── stamp.svg │ │ │ ├── stapler.svg │ │ │ ├── star-and-crescent.svg │ │ │ ├── star-half-alt.svg │ │ │ ├── star-half-stroke.svg │ │ │ ├── star-half.svg │ │ │ ├── star-of-david.svg │ │ │ ├── star-of-life.svg │ │ │ ├── star.svg │ │ │ ├── step-backward.svg │ │ │ ├── step-forward.svg │ │ │ ├── sterling-sign.svg │ │ │ ├── stethoscope.svg │ │ │ ├── sticky-note.svg │ │ │ ├── stop-circle.svg │ │ │ ├── stop.svg │ │ │ ├── stopwatch-20.svg │ │ │ ├── stopwatch.svg │ │ │ ├── store-alt-slash.svg │ │ │ ├── store-alt.svg │ │ │ ├── store-slash.svg │ │ │ ├── store.svg │ │ │ ├── stream.svg │ │ │ ├── street-view.svg │ │ │ ├── strikethrough.svg │ │ │ ├── stroopwafel.svg │ │ │ ├── subscript.svg │ │ │ ├── subway.svg │ │ │ ├── suitcase-medical.svg │ │ │ ├── suitcase-rolling.svg │ │ │ ├── suitcase.svg │ │ │ ├── sun-plant-wilt.svg │ │ │ ├── sun.svg │ │ │ ├── superscript.svg │ │ │ ├── surprise.svg │ │ │ ├── swatchbook.svg │ │ │ ├── swimmer.svg │ │ │ ├── swimming-pool.svg │ │ │ ├── synagogue.svg │ │ │ ├── sync-alt.svg │ │ │ ├── sync.svg │ │ │ ├── syringe.svg │ │ │ ├── t.svg │ │ │ ├── table-cells-column-lock.svg │ │ │ ├── table-cells-large.svg │ │ │ ├── table-cells-row-lock.svg │ │ │ ├── table-cells-row-unlock.svg │ │ │ ├── table-cells.svg │ │ │ ├── table-columns.svg │ │ │ ├── table-list.svg │ │ │ ├── table-tennis-paddle-ball.svg │ │ │ ├── table-tennis.svg │ │ │ ├── table.svg │ │ │ ├── tablet-alt.svg │ │ │ ├── tablet-button.svg │ │ │ ├── tablet-screen-button.svg │ │ │ ├── tablet.svg │ │ │ ├── tablets.svg │ │ │ ├── tachograph-digital.svg │ │ │ ├── tachometer-alt.svg │ │ │ ├── tag.svg │ │ │ ├── tags.svg │ │ │ ├── tape.svg │ │ │ ├── tarp-droplet.svg │ │ │ ├── tarp.svg │ │ │ ├── tasks.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 │ │ │ ├── tenge.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 │ │ │ ├── th-large.svg │ │ │ ├── th-list.svg │ │ │ ├── th.svg │ │ │ ├── theater-masks.svg │ │ │ ├── thermometer-empty.svg │ │ │ ├── thermometer-full.svg │ │ │ ├── thermometer-half.svg │ │ │ ├── thermometer-quarter.svg │ │ │ ├── thermometer-three-quarters.svg │ │ │ ├── thermometer.svg │ │ │ ├── thumbs-down.svg │ │ │ ├── thumbs-up.svg │ │ │ ├── thumbtack-slash.svg │ │ │ ├── thumbtack.svg │ │ │ ├── ticket-alt.svg │ │ │ ├── ticket-simple.svg │ │ │ ├── ticket.svg │ │ │ ├── timeline.svg │ │ │ ├── times-circle.svg │ │ │ ├── times.svg │ │ │ ├── tint-slash.svg │ │ │ ├── tint.svg │ │ │ ├── tired.svg │ │ │ ├── toggle-off.svg │ │ │ ├── toggle-on.svg │ │ │ ├── toilet-paper-slash.svg │ │ │ ├── toilet-paper.svg │ │ │ ├── toilet-portable.svg │ │ │ ├── toilet.svg │ │ │ ├── toilets-portable.svg │ │ │ ├── toolbox.svg │ │ │ ├── tools.svg │ │ │ ├── tooth.svg │ │ │ ├── torah.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 │ │ │ ├── tram.svg │ │ │ ├── transgender-alt.svg │ │ │ ├── transgender.svg │ │ │ ├── trash-alt.svg │ │ │ ├── trash-arrow-up.svg │ │ │ ├── trash-can-arrow-up.svg │ │ │ ├── trash-can.svg │ │ │ ├── trash-restore-alt.svg │ │ │ ├── trash-restore.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-loading.svg │ │ │ ├── truck-medical.svg │ │ │ ├── truck-monster.svg │ │ │ ├── truck-moving.svg │ │ │ ├── truck-pickup.svg │ │ │ ├── truck-plane.svg │ │ │ ├── truck-ramp-box.svg │ │ │ ├── truck.svg │ │ │ ├── tshirt.svg │ │ │ ├── tty.svg │ │ │ ├── turkish-lira-sign.svg │ │ │ ├── turn-down.svg │ │ │ ├── turn-up.svg │ │ │ ├── tv.svg │ │ │ ├── u.svg │ │ │ ├── umbrella-beach.svg │ │ │ ├── umbrella.svg │ │ │ ├── underline.svg │ │ │ ├── undo-alt.svg │ │ │ ├── undo.svg │ │ │ ├── universal-access.svg │ │ │ ├── university.svg │ │ │ ├── unlink.svg │ │ │ ├── unlock-alt.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-alt-slash.svg │ │ │ ├── user-alt.svg │ │ │ ├── user-astronaut.svg │ │ │ ├── user-check.svg │ │ │ ├── user-circle.svg │ │ │ ├── user-clock.svg │ │ │ ├── user-cog.svg │ │ │ ├── user-doctor.svg │ │ │ ├── user-edit.svg │ │ │ ├── user-friends.svg │ │ │ ├── user-gear.svg │ │ │ ├── user-graduate.svg │ │ │ ├── user-group.svg │ │ │ ├── user-injured.svg │ │ │ ├── user-large-slash.svg │ │ │ ├── user-large.svg │ │ │ ├── user-lock.svg │ │ │ ├── user-md.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-times.svg │ │ │ ├── user-xmark.svg │ │ │ ├── user.svg │ │ │ ├── users-between-lines.svg │ │ │ ├── users-cog.svg │ │ │ ├── users-gear.svg │ │ │ ├── users-line.svg │ │ │ ├── users-rays.svg │ │ │ ├── users-rectangle.svg │ │ │ ├── users-slash.svg │ │ │ ├── users-viewfinder.svg │ │ │ ├── users.svg │ │ │ ├── utensil-spoon.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-ball.svg │ │ │ ├── volleyball.svg │ │ │ ├── volume-down.svg │ │ │ ├── volume-high.svg │ │ │ ├── volume-low.svg │ │ │ ├── volume-mute.svg │ │ │ ├── volume-off.svg │ │ │ ├── volume-up.svg │ │ │ ├── volume-xmark.svg │ │ │ ├── vote-yea.svg │ │ │ ├── vr-cardboard.svg │ │ │ ├── w.svg │ │ │ ├── walkie-talkie.svg │ │ │ ├── walking.svg │ │ │ ├── wallet.svg │ │ │ ├── wand-magic-sparkles.svg │ │ │ ├── wand-magic.svg │ │ │ ├── wand-sparkles.svg │ │ │ ├── warehouse.svg │ │ │ ├── water-ladder.svg │ │ │ ├── water.svg │ │ │ ├── wave-square.svg │ │ │ ├── web-awesome.svg │ │ │ ├── weight-hanging.svg │ │ │ ├── weight-scale.svg │ │ │ ├── weight.svg │ │ │ ├── wheat-awn-circle-exclamation.svg │ │ │ ├── wheat-awn.svg │ │ │ ├── wheelchair-move.svg │ │ │ ├── wheelchair.svg │ │ │ ├── whiskey-glass.svg │ │ │ ├── wifi.svg │ │ │ ├── wind.svg │ │ │ ├── window-close.svg │ │ │ ├── window-maximize.svg │ │ │ ├── window-minimize.svg │ │ │ ├── window-restore.svg │ │ │ ├── wine-bottle.svg │ │ │ ├── wine-glass-alt.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.eot │ │ ├── fa-brands-400.svg │ │ ├── fa-brands-400.ttf │ │ ├── fa-brands-400.woff │ │ ├── fa-brands-400.woff2 │ │ ├── fa-regular-400.eot │ │ ├── fa-regular-400.svg │ │ ├── fa-regular-400.ttf │ │ ├── fa-regular-400.woff │ │ ├── fa-regular-400.woff2 │ │ ├── fa-solid-900.eot │ │ ├── fa-solid-900.svg │ │ ├── fa-solid-900.ttf │ │ ├── fa-solid-900.woff │ │ ├── fa-solid-900.woff2 │ │ ├── fa-v4compatibility.ttf │ │ ├── fa-v4compatibility.woff2 │ │ └── index.php ├── fonts │ ├── DejaVuSans-Bold.ttf │ └── DejaVuSansCondensed-Bold.ttf ├── global.php ├── global_arrays.php ├── global_constants.php ├── global_form.php ├── global_languages.php ├── global_path.php ├── global_session.php ├── global_settings.php ├── index.php ├── js │ ├── Chart.js │ ├── LC_MESSAGES │ │ ├── index.php │ │ ├── jquery-ui-datepicker-af.js │ │ ├── jquery-ui-datepicker-ar-DZ.js │ │ ├── jquery-ui-datepicker-ar.js │ │ ├── jquery-ui-datepicker-az.js │ │ ├── jquery-ui-datepicker-be.js │ │ ├── jquery-ui-datepicker-bg.js │ │ ├── jquery-ui-datepicker-bs.js │ │ ├── jquery-ui-datepicker-ca.js │ │ ├── jquery-ui-datepicker-cs.js │ │ ├── jquery-ui-datepicker-cy-GB.js │ │ ├── jquery-ui-datepicker-da.js │ │ ├── jquery-ui-datepicker-de.js │ │ ├── jquery-ui-datepicker-el.js │ │ ├── jquery-ui-datepicker-en-AU.js │ │ ├── jquery-ui-datepicker-en-GB.js │ │ ├── jquery-ui-datepicker-en-NZ.js │ │ ├── jquery-ui-datepicker-eo.js │ │ ├── jquery-ui-datepicker-es.js │ │ ├── jquery-ui-datepicker-et.js │ │ ├── jquery-ui-datepicker-eu.js │ │ ├── jquery-ui-datepicker-fa.js │ │ ├── jquery-ui-datepicker-fi.js │ │ ├── jquery-ui-datepicker-fo.js │ │ ├── jquery-ui-datepicker-fr-CA.js │ │ ├── jquery-ui-datepicker-fr-CH.js │ │ ├── jquery-ui-datepicker-fr.js │ │ ├── jquery-ui-datepicker-gl.js │ │ ├── jquery-ui-datepicker-he.js │ │ ├── jquery-ui-datepicker-hi.js │ │ ├── jquery-ui-datepicker-hr.js │ │ ├── jquery-ui-datepicker-hu.js │ │ ├── jquery-ui-datepicker-hy.js │ │ ├── jquery-ui-datepicker-id.js │ │ ├── jquery-ui-datepicker-is.js │ │ ├── jquery-ui-datepicker-it-CH.js │ │ ├── jquery-ui-datepicker-it.js │ │ ├── jquery-ui-datepicker-ja.js │ │ ├── jquery-ui-datepicker-ka.js │ │ ├── jquery-ui-datepicker-kk.js │ │ ├── jquery-ui-datepicker-km.js │ │ ├── jquery-ui-datepicker-ko.js │ │ ├── jquery-ui-datepicker-ky.js │ │ ├── jquery-ui-datepicker-lb.js │ │ ├── jquery-ui-datepicker-lt.js │ │ ├── jquery-ui-datepicker-lv.js │ │ ├── jquery-ui-datepicker-mk.js │ │ ├── jquery-ui-datepicker-ml.js │ │ ├── jquery-ui-datepicker-ms.js │ │ ├── jquery-ui-datepicker-nb.js │ │ ├── jquery-ui-datepicker-nl-BE.js │ │ ├── jquery-ui-datepicker-nl.js │ │ ├── jquery-ui-datepicker-nn.js │ │ ├── jquery-ui-datepicker-no.js │ │ ├── jquery-ui-datepicker-pl.js │ │ ├── jquery-ui-datepicker-pt-BR.js │ │ ├── jquery-ui-datepicker-pt.js │ │ ├── jquery-ui-datepicker-rm.js │ │ ├── jquery-ui-datepicker-ro.js │ │ ├── jquery-ui-datepicker-ru.js │ │ ├── jquery-ui-datepicker-sk.js │ │ ├── jquery-ui-datepicker-sl.js │ │ ├── jquery-ui-datepicker-sq.js │ │ ├── jquery-ui-datepicker-sr-SR.js │ │ ├── jquery-ui-datepicker-sr.js │ │ ├── jquery-ui-datepicker-sv.js │ │ ├── jquery-ui-datepicker-ta.js │ │ ├── jquery-ui-datepicker-th.js │ │ ├── jquery-ui-datepicker-tj.js │ │ ├── jquery-ui-datepicker-tr.js │ │ ├── jquery-ui-datepicker-uk.js │ │ ├── jquery-ui-datepicker-vi.js │ │ ├── jquery-ui-datepicker-zh-CN.js │ │ ├── jquery-ui-datepicker-zh-HK.js │ │ ├── jquery-ui-datepicker-zh-TW.js │ │ ├── jquery-ui-timepicker-af.js │ │ ├── jquery-ui-timepicker-am.js │ │ ├── jquery-ui-timepicker-bg.js │ │ ├── jquery-ui-timepicker-ca.js │ │ ├── jquery-ui-timepicker-cs.js │ │ ├── jquery-ui-timepicker-da.js │ │ ├── jquery-ui-timepicker-de.js │ │ ├── jquery-ui-timepicker-el.js │ │ ├── jquery-ui-timepicker-es.js │ │ ├── jquery-ui-timepicker-et.js │ │ ├── jquery-ui-timepicker-eu.js │ │ ├── jquery-ui-timepicker-fa.js │ │ ├── jquery-ui-timepicker-fi.js │ │ ├── jquery-ui-timepicker-fr.js │ │ ├── jquery-ui-timepicker-gl.js │ │ ├── jquery-ui-timepicker-he.js │ │ ├── jquery-ui-timepicker-hr.js │ │ ├── jquery-ui-timepicker-hu.js │ │ ├── jquery-ui-timepicker-id.js │ │ ├── jquery-ui-timepicker-it.js │ │ ├── jquery-ui-timepicker-ja.js │ │ ├── jquery-ui-timepicker-ko.js │ │ ├── jquery-ui-timepicker-lt.js │ │ ├── jquery-ui-timepicker-lv.js │ │ ├── jquery-ui-timepicker-mk.js │ │ ├── jquery-ui-timepicker-nl.js │ │ ├── jquery-ui-timepicker-no.js │ │ ├── jquery-ui-timepicker-pl.js │ │ ├── jquery-ui-timepicker-pt-BR.js │ │ ├── jquery-ui-timepicker-pt.js │ │ ├── jquery-ui-timepicker-ro.js │ │ ├── jquery-ui-timepicker-ru.js │ │ ├── jquery-ui-timepicker-sk.js │ │ ├── jquery-ui-timepicker-sl.js │ │ ├── jquery-ui-timepicker-sq.js │ │ ├── jquery-ui-timepicker-sr-RS.js │ │ ├── jquery-ui-timepicker-sr-YU.js │ │ ├── jquery-ui-timepicker-sv.js │ │ ├── jquery-ui-timepicker-th.js │ │ ├── jquery-ui-timepicker-tr.js │ │ ├── jquery-ui-timepicker-uk.js │ │ ├── jquery-ui-timepicker-vi.js │ │ ├── jquery-ui-timepicker-zh-CN.js │ │ ├── jquery-ui-timepicker-zh-TW.js │ │ ├── jquery.multiselect.br.js │ │ ├── jquery.multiselect.cs.js │ │ ├── jquery.multiselect.de.js │ │ ├── jquery.multiselect.es.js │ │ ├── jquery.multiselect.filter.br.js │ │ ├── jquery.multiselect.filter.cs.js │ │ ├── jquery.multiselect.filter.de.js │ │ ├── jquery.multiselect.filter.es.js │ │ ├── jquery.multiselect.filter.fr.js │ │ ├── jquery.multiselect.filter.hu.js │ │ ├── jquery.multiselect.filter.it.js │ │ ├── jquery.multiselect.filter.ja.js │ │ ├── jquery.multiselect.filter.pl.js │ │ ├── jquery.multiselect.filter.ru.js │ │ ├── jquery.multiselect.filter.tr.js │ │ ├── jquery.multiselect.filter.zh-cn.js │ │ ├── jquery.multiselect.filter.zh-tw.js │ │ ├── jquery.multiselect.fr.js │ │ ├── jquery.multiselect.hu.js │ │ ├── jquery.multiselect.it.js │ │ ├── jquery.multiselect.ja.js │ │ ├── jquery.multiselect.pl.js │ │ ├── jquery.multiselect.ru.js │ │ ├── jquery.multiselect.tr.js │ │ ├── jquery.multiselect.zh-cn.js │ │ ├── jquery.multiselect.zh-tw.js │ │ └── jquery.ui.datepicker-af.js │ ├── big.js │ ├── billboard.js │ ├── d3.js │ ├── index.php │ ├── jquery-ui.js │ ├── jquery.colorpicker.js │ ├── jquery.cookie.js │ ├── jquery.dropdown.js │ ├── jquery.hotkeys.js │ ├── jquery.js │ ├── jquery.multiselect.filter.js │ ├── jquery.multiselect.js │ ├── jquery.tablednd.js │ ├── jquery.tablesorter.js │ ├── jquery.tablesorter.pager.js │ ├── jquery.tablesorter.widgets.js │ ├── jquery.timepicker.js │ ├── jquery.toast.js │ ├── jquery.ui.touch.punch.js │ ├── jquery.validate │ │ ├── additional-methods.js │ │ ├── additional-methods.min.js │ │ ├── jquery.validate.js │ │ ├── jquery.validate.min.js │ │ └── localization │ │ │ ├── messages_ar.js │ │ │ ├── messages_ar.min.js │ │ │ ├── messages_az.js │ │ │ ├── messages_az.min.js │ │ │ ├── messages_bg.js │ │ │ ├── messages_bg.min.js │ │ │ ├── messages_bn_BD.js │ │ │ ├── messages_bn_BD.min.js │ │ │ ├── messages_ca.js │ │ │ ├── messages_ca.min.js │ │ │ ├── messages_cs.js │ │ │ ├── messages_cs.min.js │ │ │ ├── messages_da.js │ │ │ ├── messages_da.min.js │ │ │ ├── messages_de.js │ │ │ ├── messages_de.min.js │ │ │ ├── messages_el.js │ │ │ ├── messages_el.min.js │ │ │ ├── messages_es.js │ │ │ ├── messages_es.min.js │ │ │ ├── messages_es_AR.js │ │ │ ├── messages_es_AR.min.js │ │ │ ├── messages_es_PE.js │ │ │ ├── messages_es_PE.min.js │ │ │ ├── messages_et.js │ │ │ ├── messages_et.min.js │ │ │ ├── messages_eu.js │ │ │ ├── messages_eu.min.js │ │ │ ├── messages_fa.js │ │ │ ├── messages_fa.min.js │ │ │ ├── messages_fi.js │ │ │ ├── messages_fi.min.js │ │ │ ├── messages_fr.js │ │ │ ├── messages_fr.min.js │ │ │ ├── messages_ge.js │ │ │ ├── messages_ge.min.js │ │ │ ├── messages_gl.js │ │ │ ├── messages_gl.min.js │ │ │ ├── messages_he.js │ │ │ ├── messages_he.min.js │ │ │ ├── messages_hr.js │ │ │ ├── messages_hr.min.js │ │ │ ├── messages_hu.js │ │ │ ├── messages_hu.min.js │ │ │ ├── messages_hy_AM.js │ │ │ ├── messages_hy_AM.min.js │ │ │ ├── messages_id.js │ │ │ ├── messages_id.min.js │ │ │ ├── messages_is.js │ │ │ ├── messages_is.min.js │ │ │ ├── messages_it.js │ │ │ ├── messages_it.min.js │ │ │ ├── messages_ja.js │ │ │ ├── messages_ja.min.js │ │ │ ├── messages_ka.js │ │ │ ├── messages_ka.min.js │ │ │ ├── messages_kk.js │ │ │ ├── messages_kk.min.js │ │ │ ├── messages_ko.js │ │ │ ├── messages_ko.min.js │ │ │ ├── messages_lt.js │ │ │ ├── messages_lt.min.js │ │ │ ├── messages_lv.js │ │ │ ├── messages_lv.min.js │ │ │ ├── messages_mk.js │ │ │ ├── messages_mk.min.js │ │ │ ├── messages_my.js │ │ │ ├── messages_my.min.js │ │ │ ├── messages_nl.js │ │ │ ├── messages_nl.min.js │ │ │ ├── messages_no.js │ │ │ ├── messages_no.min.js │ │ │ ├── messages_pl.js │ │ │ ├── messages_pl.min.js │ │ │ ├── messages_pt_BR.js │ │ │ ├── messages_pt_BR.min.js │ │ │ ├── messages_pt_PT.js │ │ │ ├── messages_pt_PT.min.js │ │ │ ├── messages_ro.js │ │ │ ├── messages_ro.min.js │ │ │ ├── messages_ru.js │ │ │ ├── messages_ru.min.js │ │ │ ├── messages_sd.js │ │ │ ├── messages_sd.min.js │ │ │ ├── messages_si.js │ │ │ ├── messages_si.min.js │ │ │ ├── messages_sk.js │ │ │ ├── messages_sk.min.js │ │ │ ├── messages_sl.js │ │ │ ├── messages_sl.min.js │ │ │ ├── messages_sr.js │ │ │ ├── messages_sr.min.js │ │ │ ├── messages_sr_lat.js │ │ │ ├── messages_sr_lat.min.js │ │ │ ├── messages_sv.js │ │ │ ├── messages_sv.min.js │ │ │ ├── messages_th.js │ │ │ ├── messages_th.min.js │ │ │ ├── messages_tj.js │ │ │ ├── messages_tj.min.js │ │ │ ├── messages_tr.js │ │ │ ├── messages_tr.min.js │ │ │ ├── messages_uk.js │ │ │ ├── messages_uk.min.js │ │ │ ├── messages_ur.js │ │ │ ├── messages_ur.min.js │ │ │ ├── messages_vi.js │ │ │ ├── messages_vi.min.js │ │ │ ├── messages_zh.js │ │ │ ├── messages_zh.min.js │ │ │ ├── messages_zh_TW.js │ │ │ ├── messages_zh_TW.min.js │ │ │ ├── methods_de.js │ │ │ ├── methods_de.min.js │ │ │ ├── methods_es_CL.js │ │ │ ├── methods_es_CL.min.js │ │ │ ├── methods_fi.js │ │ │ ├── methods_fi.min.js │ │ │ ├── methods_it.js │ │ │ ├── methods_it.min.js │ │ │ ├── methods_nl.js │ │ │ ├── methods_nl.min.js │ │ │ ├── methods_pt.js │ │ │ └── methods_pt.min.js │ ├── jquery.zoom.js │ ├── js.storage.js │ ├── jstree.js │ ├── lzjs.js │ ├── navigationBox.js │ ├── navigationTree.jstree.js │ ├── pace.js │ ├── purify.js │ ├── purify.js.map │ ├── screenfull.js │ ├── ui-notices.js │ └── vendor │ │ ├── daterangepicker │ │ └── daterangepicker.js │ │ ├── hotkeys │ │ ├── LICENSE │ │ ├── hotkeys.js │ │ └── hotkeys.min.js │ │ ├── mark │ │ └── jquery.mark.js │ │ └── moment │ │ ├── LICENSE │ │ └── moment.min.js ├── layout.js ├── plugins.php ├── realtime.js ├── session.php ├── themes │ ├── cacti │ │ ├── Diff.css │ │ ├── default │ │ │ ├── 32px.png │ │ │ ├── 40px.png │ │ │ ├── index.php │ │ │ ├── style.css │ │ │ ├── style.min.css │ │ │ └── throbber.gif │ │ ├── images │ │ │ ├── 128 │ │ │ │ ├── bar-alpha.png │ │ │ │ ├── bar.png │ │ │ │ └── map.png │ │ │ ├── bar-alpha.png │ │ │ ├── bar-opacity.png │ │ │ ├── bar-pointer.png │ │ │ ├── bar.png │ │ │ ├── cacti-logo-black.svg │ │ │ ├── cacti-logo-white.svg │ │ │ ├── cacti_logo.gif │ │ │ ├── cacti_logo.svg │ │ │ ├── favicon.ico │ │ │ ├── favicon.png │ │ │ ├── index.php │ │ │ ├── logotype-a.png │ │ │ ├── logotype-b.png │ │ │ ├── map-opacity.png │ │ │ ├── map-pointer.png │ │ │ ├── map.png │ │ │ ├── preview-opacity.png │ │ │ ├── tab_list.gif │ │ │ ├── tab_preview.gif │ │ │ ├── tab_tree.gif │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ ├── ui-colorpicker.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ ├── ui-icons_888888_256x240.png │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ ├── index.php │ │ ├── jquery-ui.css │ │ ├── jquery.colorpicker.css │ │ ├── jquery.multiselect.css │ │ ├── jquery.multiselect.filter.css │ │ ├── jquery.timepicker.css │ │ ├── jquery.zoom.css │ │ ├── main.css │ │ ├── main.js │ │ ├── pace.css │ │ └── rrdtheme.php │ ├── carrot │ │ ├── Diff.css │ │ ├── default │ │ │ ├── 32px.png │ │ │ ├── 40px.png │ │ │ ├── index.php │ │ │ ├── style.css │ │ │ ├── style.min.css │ │ │ └── throbber.gif │ │ ├── images │ │ │ ├── 128 │ │ │ │ ├── bar-alpha.png │ │ │ │ ├── bar.png │ │ │ │ └── map.png │ │ │ ├── bar-alpha.png │ │ │ ├── bar-opacity.png │ │ │ ├── bar-pointer.png │ │ │ ├── bar.png │ │ │ ├── cacti-logo-black.svg │ │ │ ├── cacti-logo-white.svg │ │ │ ├── cacti_logo.gif │ │ │ ├── cacti_logo.svg │ │ │ ├── favicon.ico │ │ │ ├── favicon.png │ │ │ ├── index.php │ │ │ ├── logotype-a.png │ │ │ ├── logotype-b.png │ │ │ ├── map-opacity.png │ │ │ ├── map-pointer.png │ │ │ ├── map.png │ │ │ ├── preview-opacity.png │ │ │ ├── tab_list.gif │ │ │ ├── tab_preview.gif │ │ │ ├── tab_tree.gif │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ ├── ui-colorpicker.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ ├── ui-icons_888888_256x240.png │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ ├── index.php │ │ ├── jquery-ui.css │ │ ├── jquery.colorpicker.css │ │ ├── jquery.multiselect.css │ │ ├── jquery.multiselect.filter.css │ │ ├── jquery.timepicker.css │ │ ├── jquery.zoom.css │ │ ├── main.css │ │ ├── main.js │ │ ├── pace.css │ │ └── rrdtheme.php │ ├── dark │ │ ├── Diff.css │ │ ├── default │ │ │ ├── 32px.png │ │ │ ├── 40px.png │ │ │ ├── index.php │ │ │ ├── style.css │ │ │ └── throbber.gif │ │ ├── images │ │ │ ├── 128 │ │ │ │ ├── bar-alpha.png │ │ │ │ ├── bar.png │ │ │ │ └── map.png │ │ │ ├── bar-alpha.png │ │ │ ├── bar-opacity.png │ │ │ ├── bar-pointer.png │ │ │ ├── bar.png │ │ │ ├── cacti_backdrop.gif │ │ │ ├── cacti_backdrop2.gif │ │ │ ├── cacti_logo.gif │ │ │ ├── cacti_logo.svg │ │ │ ├── favicon.ico │ │ │ ├── favicon.png │ │ │ ├── index.php │ │ │ ├── logotype-a.png │ │ │ ├── logotype-b.png │ │ │ ├── map-opacity.png │ │ │ ├── map-pointer.png │ │ │ ├── map.png │ │ │ ├── preview-opacity.png │ │ │ ├── tab_list.gif │ │ │ ├── tab_preview.gif │ │ │ ├── tab_tree.gif │ │ │ ├── ui-bg_glass_40_ffc73d_1x400.png │ │ │ ├── ui-bg_highlight-hard_20_31442b_1x100.png │ │ │ ├── ui-bg_highlight-soft_33_155413_1x100.png │ │ │ ├── ui-bg_highlight-soft_35_222222_1x100.png │ │ │ ├── ui-bg_highlight-soft_44_444444_1x100.png │ │ │ ├── ui-bg_highlight-soft_80_eeeeee_1x100.png │ │ │ ├── ui-bg_loop_25_000000_21x21.png │ │ │ ├── ui-colorpicker.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_4b8e0b_256x240.png │ │ │ ├── ui-icons_a83300_256x240.png │ │ │ ├── ui-icons_cccccc_256x240.png │ │ │ └── ui-icons_ffffff_256x240.png │ │ ├── index.php │ │ ├── jquery-ui.css │ │ ├── jquery.colorpicker.css │ │ ├── jquery.multiselect.css │ │ ├── jquery.multiselect.filter.css │ │ ├── jquery.timepicker.css │ │ ├── jquery.zoom.css │ │ ├── main.css │ │ ├── main.js │ │ ├── pace.css │ │ └── rrdtheme.php │ ├── hollyberry │ │ ├── Diff.css │ │ ├── default │ │ │ ├── 32px.png │ │ │ ├── 40px.png │ │ │ ├── index.php │ │ │ ├── style.css │ │ │ ├── style.min.css │ │ │ └── throbber.gif │ │ ├── images │ │ │ ├── 128 │ │ │ │ ├── bar-alpha.png │ │ │ │ ├── bar.png │ │ │ │ └── map.png │ │ │ ├── bar-alpha.png │ │ │ ├── bar-opacity.png │ │ │ ├── bar-pointer.png │ │ │ ├── bar.png │ │ │ ├── cacti-logo-black.svg │ │ │ ├── cacti-logo-white.svg │ │ │ ├── cacti_logo.gif │ │ │ ├── cacti_logo.svg │ │ │ ├── favicon.ico │ │ │ ├── favicon.png │ │ │ ├── index.php │ │ │ ├── logotype-a.png │ │ │ ├── logotype-b.png │ │ │ ├── map-opacity.png │ │ │ ├── map-pointer.png │ │ │ ├── map.png │ │ │ ├── preview-opacity.png │ │ │ ├── tab_list.gif │ │ │ ├── tab_preview.gif │ │ │ ├── tab_tree.gif │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ ├── ui-colorpicker.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ ├── ui-icons_888888_256x240.png │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ ├── index.php │ │ ├── jquery-ui.css │ │ ├── jquery.colorpicker.css │ │ ├── jquery.multiselect.css │ │ ├── jquery.multiselect.filter.css │ │ ├── jquery.timepicker.css │ │ ├── jquery.zoom.css │ │ ├── main.css │ │ ├── main.js │ │ ├── pace.css │ │ └── rrdtheme.php │ ├── index.php │ ├── midwinter │ │ ├── Diff.css │ │ ├── billboard.midwinter.css │ │ ├── css │ │ │ ├── media │ │ │ │ ├── compact-landscape.css │ │ │ │ ├── compact.css │ │ │ │ ├── core.css │ │ │ │ ├── daterangepicker.css │ │ │ │ └── print.css │ │ │ └── pre │ │ │ │ ├── colors.css │ │ │ │ ├── fonts.css │ │ │ │ ├── helper.css │ │ │ │ ├── keyframes.css │ │ │ │ └── reset.css │ │ ├── default │ │ │ ├── 32px.png │ │ │ ├── 40px.png │ │ │ ├── index.php │ │ │ ├── style.css │ │ │ ├── style.min.css │ │ │ └── throbber.gif │ │ ├── images │ │ │ ├── 128 │ │ │ │ ├── bar-alpha.png │ │ │ │ ├── bar.png │ │ │ │ └── map.png │ │ │ ├── bar-alpha.png │ │ │ ├── bar-opacity.png │ │ │ ├── bar-pointer.png │ │ │ ├── bar.png │ │ │ ├── cacti_logo.gif │ │ │ ├── cacti_logo.svg │ │ │ ├── favicon.ico │ │ │ ├── favicon.png │ │ │ ├── index.php │ │ │ ├── logotype-a.png │ │ │ ├── logotype-b.png │ │ │ ├── map-opacity.png │ │ │ ├── map-pointer.png │ │ │ ├── map.png │ │ │ ├── preview-opacity.png │ │ │ ├── tab_list.gif │ │ │ ├── tab_preview.gif │ │ │ ├── tab_tree.gif │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ ├── ui-colorpicker.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ ├── ui-icons_888888_256x240.png │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ └── wallpapers │ │ │ │ ├── LICENSE │ │ │ │ ├── cacti_monitoring_wall.jpg │ │ │ │ ├── kapsodasos.jpg │ │ │ │ └── kapsodasos_768.jpg │ │ ├── index.php │ │ ├── jquery-ui.css │ │ ├── jquery-ui.midwinter.css │ │ ├── jquery.colorpicker.css │ │ ├── jquery.multiselect.css │ │ ├── jquery.multiselect.filter.css │ │ ├── jquery.timepicker.css │ │ ├── jquery.zoom.css │ │ ├── main.css │ │ ├── main.js │ │ ├── pace.css │ │ ├── rrdtheme.php │ │ └── update_hash.php │ ├── modern │ │ ├── Diff.css │ │ ├── default │ │ │ ├── 32px.png │ │ │ ├── 40px.png │ │ │ ├── index.php │ │ │ ├── style.css │ │ │ ├── style.min.css │ │ │ └── throbber.gif │ │ ├── images │ │ │ ├── 128 │ │ │ │ ├── bar-alpha.png │ │ │ │ ├── bar.png │ │ │ │ └── map.png │ │ │ ├── bar-alpha.png │ │ │ ├── bar-opacity.png │ │ │ ├── bar-pointer.png │ │ │ ├── bar.png │ │ │ ├── cacti_logo.gif │ │ │ ├── cacti_logo.svg │ │ │ ├── favicon.ico │ │ │ ├── favicon.png │ │ │ ├── index.php │ │ │ ├── logotype-a.png │ │ │ ├── logotype-b.png │ │ │ ├── map-opacity.png │ │ │ ├── map-pointer.png │ │ │ ├── map.png │ │ │ ├── preview-opacity.png │ │ │ ├── tab_list.gif │ │ │ ├── tab_preview.gif │ │ │ ├── tab_tree.gif │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ ├── ui-colorpicker.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ ├── ui-icons_888888_256x240.png │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ ├── index.php │ │ ├── jquery-ui.css │ │ ├── jquery.colorpicker.css │ │ ├── jquery.multiselect.css │ │ ├── jquery.multiselect.filter.css │ │ ├── jquery.timepicker.css │ │ ├── jquery.zoom.css │ │ ├── main.css │ │ ├── main.js │ │ ├── pace.css │ │ └── rrdtheme.php │ ├── paper-plane │ │ ├── Diff.css │ │ ├── default │ │ │ ├── 32px.png │ │ │ ├── 40px.png │ │ │ ├── index.php │ │ │ ├── style.css │ │ │ ├── style.min.css │ │ │ └── throbber.gif │ │ ├── images │ │ │ ├── 128 │ │ │ │ ├── bar-alpha.png │ │ │ │ ├── bar.png │ │ │ │ └── map.png │ │ │ ├── bar-alpha.png │ │ │ ├── bar-opacity.png │ │ │ ├── bar-pointer.png │ │ │ ├── bar.png │ │ │ ├── cacti_logo.gif │ │ │ ├── cacti_logo.svg │ │ │ ├── favicon.ico │ │ │ ├── favicon.png │ │ │ ├── index.php │ │ │ ├── logotype-a.png │ │ │ ├── logotype-b.png │ │ │ ├── map-opacity.png │ │ │ ├── map-pointer.png │ │ │ ├── map.png │ │ │ ├── preview-opacity.png │ │ │ ├── tab_list.gif │ │ │ ├── tab_preview.gif │ │ │ ├── tab_tree.gif │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ ├── ui-colorpicker.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ ├── ui-icons_888888_256x240.png │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ ├── index.php │ │ ├── jquery-ui.css │ │ ├── jquery.colorpicker.css │ │ ├── jquery.multiselect.css │ │ ├── jquery.multiselect.filter.css │ │ ├── jquery.timepicker.css │ │ ├── jquery.zoom.css │ │ ├── main.css │ │ ├── main.js │ │ ├── pace.css │ │ └── rrdtheme.php │ ├── paw │ │ ├── Diff.css │ │ ├── default │ │ │ ├── 32px.png │ │ │ ├── 40px.png │ │ │ ├── index.php │ │ │ ├── style.css │ │ │ ├── style.min.css │ │ │ └── throbber.gif │ │ ├── images │ │ │ ├── 128 │ │ │ │ ├── bar-alpha.png │ │ │ │ ├── bar.png │ │ │ │ └── map.png │ │ │ ├── bar-alpha.png │ │ │ ├── bar-opacity.png │ │ │ ├── bar-pointer.png │ │ │ ├── bar.png │ │ │ ├── cacti_logo.gif │ │ │ ├── cacti_logo.svg │ │ │ ├── favicon.ico │ │ │ ├── favicon.png │ │ │ ├── index.php │ │ │ ├── logotype-a.png │ │ │ ├── logotype-b.png │ │ │ ├── map-opacity.png │ │ │ ├── map-pointer.png │ │ │ ├── map.png │ │ │ ├── preview-opacity.png │ │ │ ├── tab_list.gif │ │ │ ├── tab_preview.gif │ │ │ ├── tab_tree.gif │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ ├── ui-colorpicker.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ ├── ui-icons_888888_256x240.png │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ ├── index.php │ │ ├── jquery-ui.css │ │ ├── jquery.colorpicker.css │ │ ├── jquery.multiselect.css │ │ ├── jquery.multiselect.filter.css │ │ ├── jquery.timepicker.css │ │ ├── jquery.zoom.css │ │ ├── main.css │ │ ├── main.js │ │ ├── pace.css │ │ └── rrdtheme.php │ ├── raspberry │ │ ├── Diff.css │ │ ├── default │ │ │ ├── 32px.png │ │ │ ├── 40px.png │ │ │ ├── index.php │ │ │ ├── style.css │ │ │ ├── style.min.css │ │ │ └── throbber.gif │ │ ├── images │ │ │ ├── 128 │ │ │ │ ├── bar-alpha.png │ │ │ │ ├── bar.png │ │ │ │ └── map.png │ │ │ ├── bar-alpha.png │ │ │ ├── bar-opacity.png │ │ │ ├── bar-pointer.png │ │ │ ├── bar.png │ │ │ ├── berry.svg │ │ │ ├── cacti-logo-black.svg │ │ │ ├── cacti-logo-white.svg │ │ │ ├── cacti_logo.gif │ │ │ ├── cacti_logo.svg │ │ │ ├── favicon.ico │ │ │ ├── favicon.png │ │ │ ├── index.php │ │ │ ├── logotype-a.png │ │ │ ├── logotype-b.png │ │ │ ├── map-opacity.png │ │ │ ├── map-pointer.png │ │ │ ├── map.png │ │ │ ├── preview-opacity.png │ │ │ ├── tab_list.gif │ │ │ ├── tab_preview.gif │ │ │ ├── tab_tree.gif │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ ├── ui-colorpicker.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ ├── ui-icons_888888_256x240.png │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ ├── index.php │ │ ├── jquery-ui.css │ │ ├── jquery.colorpicker.css │ │ ├── jquery.multiselect.css │ │ ├── jquery.multiselect.filter.css │ │ ├── jquery.timepicker.css │ │ ├── jquery.zoom.css │ │ ├── main.css │ │ ├── main.js │ │ ├── pace.css │ │ └── rrdtheme.php │ └── sunrise │ │ ├── Diff.css │ │ ├── default │ │ ├── 32px.png │ │ ├── 40px.png │ │ ├── index.php │ │ ├── style.css │ │ ├── style.min.css │ │ └── throbber.gif │ │ ├── images │ │ ├── 128 │ │ │ ├── bar-alpha.png │ │ │ ├── bar.png │ │ │ └── map.png │ │ ├── bar-alpha.png │ │ ├── bar-opacity.png │ │ ├── bar-pointer.png │ │ ├── bar.png │ │ ├── cacti_logo.gif │ │ ├── cacti_logo.svg │ │ ├── favicon.ico │ │ ├── favicon.png │ │ ├── index.php │ │ ├── logotype-a.png │ │ ├── logotype-b.png │ │ ├── map-opacity.png │ │ ├── map-pointer.png │ │ ├── map.png │ │ ├── preview-opacity.png │ │ ├── tab_list.gif │ │ ├── tab_preview.gif │ │ ├── tab_tree.gif │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ ├── ui-colorpicker.png │ │ ├── ui-icons_222222_256x240.png │ │ ├── ui-icons_2e83ff_256x240.png │ │ ├── ui-icons_454545_256x240.png │ │ ├── ui-icons_888888_256x240.png │ │ └── ui-icons_cd0a0a_256x240.png │ │ ├── index.php │ │ ├── jquery-ui.css │ │ ├── jquery.colorpicker.css │ │ ├── jquery.multiselect.css │ │ ├── jquery.multiselect.filter.css │ │ ├── jquery.timepicker.css │ │ ├── jquery.zoom.css │ │ ├── main.css │ │ ├── main.js │ │ ├── pace.css │ │ └── rrdtheme.php ├── top_general_header.php ├── top_graph_header.php ├── top_header.php └── vendor │ ├── GoogleAuthenticator │ ├── CHANGELOG.md │ ├── FixedBitNotation.php │ ├── GoogleAuthenticator.php │ ├── GoogleAuthenticatorInterface.php │ ├── GoogleQrUrl.php │ ├── LICENSE │ └── RuntimeException.php │ ├── autoload.php │ ├── composer │ ├── ClassLoader.php │ ├── InstalledVersions.php │ ├── LICENSE │ ├── autoload_classmap.php │ ├── autoload_files.php │ ├── autoload_namespaces.php │ ├── autoload_psr4.php │ ├── autoload_real.php │ ├── autoload_static.php │ ├── index.php │ ├── installed.json │ ├── installed.php │ ├── pcre │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── extension.neon │ │ └── src │ │ │ ├── MatchAllResult.php │ │ │ ├── MatchAllStrictGroupsResult.php │ │ │ ├── MatchAllWithOffsetsResult.php │ │ │ ├── MatchResult.php │ │ │ ├── MatchStrictGroupsResult.php │ │ │ ├── MatchWithOffsetsResult.php │ │ │ ├── PHPStan │ │ │ ├── InvalidRegexPatternRule.php │ │ │ ├── PregMatchFlags.php │ │ │ ├── PregMatchParameterOutTypeExtension.php │ │ │ ├── PregMatchTypeSpecifyingExtension.php │ │ │ ├── PregReplaceCallbackClosureTypeExtension.php │ │ │ └── UnsafeStrictGroupsCallRule.php │ │ │ ├── PcreException.php │ │ │ ├── Preg.php │ │ │ ├── Regex.php │ │ │ ├── ReplaceResult.php │ │ │ └── UnexpectedNullMatchException.php │ ├── platform_check.php │ ├── semver │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Comparator.php │ │ │ ├── CompilingMatcher.php │ │ │ ├── Constraint │ │ │ ├── Bound.php │ │ │ ├── Constraint.php │ │ │ ├── ConstraintInterface.php │ │ │ ├── MatchAllConstraint.php │ │ │ ├── MatchNoneConstraint.php │ │ │ └── MultiConstraint.php │ │ │ ├── Interval.php │ │ │ ├── Intervals.php │ │ │ ├── Semver.php │ │ │ └── VersionParser.php │ └── xdebug-handler │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── PhpConfig.php │ │ ├── Process.php │ │ ├── Status.php │ │ └── XdebugHandler.php │ ├── csrf │ ├── LICENSE.txt │ ├── NEWS.md │ ├── README.md │ ├── csrf-conf.php │ ├── csrf-magic.js │ ├── csrf-magic.php │ └── index.php │ ├── firebase │ └── php-jwt │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── BeforeValidException.php │ │ ├── CachedKeySet.php │ │ ├── ExpiredException.php │ │ ├── JWK.php │ │ ├── JWT.php │ │ ├── JWTExceptionWithPayloadInterface.php │ │ ├── Key.php │ │ └── SignatureInvalidException.php │ ├── greew │ └── oauth2-azure-provider │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── phpunit.xml │ │ └── src │ │ └── Provider │ │ ├── Azure.php │ │ └── AzureResourceOwner.php │ ├── guzzlehttp │ ├── guzzle │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── UPGRADING.md │ │ ├── composer.json │ │ └── src │ │ │ ├── BodySummarizer.php │ │ │ ├── BodySummarizerInterface.php │ │ │ ├── Client.php │ │ │ ├── ClientInterface.php │ │ │ ├── ClientTrait.php │ │ │ ├── Cookie │ │ │ ├── CookieJar.php │ │ │ ├── CookieJarInterface.php │ │ │ ├── FileCookieJar.php │ │ │ ├── SessionCookieJar.php │ │ │ └── SetCookie.php │ │ │ ├── Exception │ │ │ ├── BadResponseException.php │ │ │ ├── ClientException.php │ │ │ ├── ConnectException.php │ │ │ ├── GuzzleException.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── RequestException.php │ │ │ ├── ServerException.php │ │ │ ├── TooManyRedirectsException.php │ │ │ └── TransferException.php │ │ │ ├── Handler │ │ │ ├── CurlFactory.php │ │ │ ├── CurlFactoryInterface.php │ │ │ ├── CurlHandler.php │ │ │ ├── CurlMultiHandler.php │ │ │ ├── EasyHandle.php │ │ │ ├── HeaderProcessor.php │ │ │ ├── MockHandler.php │ │ │ ├── Proxy.php │ │ │ └── StreamHandler.php │ │ │ ├── HandlerStack.php │ │ │ ├── MessageFormatter.php │ │ │ ├── MessageFormatterInterface.php │ │ │ ├── Middleware.php │ │ │ ├── Pool.php │ │ │ ├── PrepareBodyMiddleware.php │ │ │ ├── RedirectMiddleware.php │ │ │ ├── RequestOptions.php │ │ │ ├── RetryMiddleware.php │ │ │ ├── TransferStats.php │ │ │ ├── Utils.php │ │ │ ├── functions.php │ │ │ └── functions_include.php │ ├── promises │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── AggregateException.php │ │ │ ├── CancellationException.php │ │ │ ├── Coroutine.php │ │ │ ├── Create.php │ │ │ ├── Each.php │ │ │ ├── EachPromise.php │ │ │ ├── FulfilledPromise.php │ │ │ ├── Is.php │ │ │ ├── Promise.php │ │ │ ├── PromiseInterface.php │ │ │ ├── PromisorInterface.php │ │ │ ├── RejectedPromise.php │ │ │ ├── RejectionException.php │ │ │ ├── TaskQueue.php │ │ │ ├── TaskQueueInterface.php │ │ │ └── Utils.php │ └── psr7 │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── AppendStream.php │ │ ├── BufferStream.php │ │ ├── CachingStream.php │ │ ├── DroppingStream.php │ │ ├── Exception │ │ └── MalformedUriException.php │ │ ├── FnStream.php │ │ ├── Header.php │ │ ├── HttpFactory.php │ │ ├── InflateStream.php │ │ ├── LazyOpenStream.php │ │ ├── LimitStream.php │ │ ├── Message.php │ │ ├── MessageTrait.php │ │ ├── MimeType.php │ │ ├── MultipartStream.php │ │ ├── NoSeekStream.php │ │ ├── PumpStream.php │ │ ├── Query.php │ │ ├── Request.php │ │ ├── Response.php │ │ ├── Rfc7230.php │ │ ├── ServerRequest.php │ │ ├── Stream.php │ │ ├── StreamDecoratorTrait.php │ │ ├── StreamWrapper.php │ │ ├── UploadedFile.php │ │ ├── Uri.php │ │ ├── UriComparator.php │ │ ├── UriNormalizer.php │ │ ├── UriResolver.php │ │ └── Utils.php │ ├── hayageek │ └── oauth2-yahoo │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── phpunit.xml.dist │ │ └── src │ │ └── Provider │ │ ├── Yahoo.php │ │ └── YahooUser.php │ ├── index.php │ ├── league │ ├── oauth2-client │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── phpunit.xml.dist │ │ └── src │ │ │ ├── Grant │ │ │ ├── AbstractGrant.php │ │ │ ├── AuthorizationCode.php │ │ │ ├── ClientCredentials.php │ │ │ ├── Exception │ │ │ │ └── InvalidGrantException.php │ │ │ ├── GrantFactory.php │ │ │ ├── Password.php │ │ │ └── RefreshToken.php │ │ │ ├── OptionProvider │ │ │ ├── HttpBasicAuthOptionProvider.php │ │ │ ├── OptionProviderInterface.php │ │ │ └── PostAuthOptionProvider.php │ │ │ ├── Provider │ │ │ ├── AbstractProvider.php │ │ │ ├── Exception │ │ │ │ └── IdentityProviderException.php │ │ │ ├── GenericProvider.php │ │ │ ├── GenericResourceOwner.php │ │ │ └── ResourceOwnerInterface.php │ │ │ ├── Token │ │ │ ├── AccessToken.php │ │ │ ├── AccessTokenInterface.php │ │ │ ├── ResourceOwnerAccessTokenInterface.php │ │ │ └── SettableRefreshTokenInterface.php │ │ │ └── Tool │ │ │ ├── ArrayAccessorTrait.php │ │ │ ├── BearerAuthorizationTrait.php │ │ │ ├── GuardedPropertyTrait.php │ │ │ ├── MacAuthorizationTrait.php │ │ │ ├── ProviderRedirectTrait.php │ │ │ ├── QueryBuilderTrait.php │ │ │ ├── RequestFactory.php │ │ │ └── RequiredParameterTrait.php │ └── oauth2-google │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── Exception │ │ └── HostedDomainException.php │ │ └── Provider │ │ ├── Google.php │ │ └── GoogleUser.php │ ├── lipis │ └── flag-icons │ │ ├── 404.html │ │ ├── CHANGELOG.md │ │ ├── CNAME │ │ ├── LICENSE │ │ ├── README.md │ │ ├── assets │ │ ├── docs.css │ │ ├── docs.js │ │ └── og.png │ │ ├── composer.json │ │ ├── country.json │ │ ├── css │ │ ├── flag-icons.css │ │ └── flag-icons.min.css │ │ ├── favicon.ico │ │ ├── flag-ids.py │ │ ├── flags.py │ │ ├── flags │ │ ├── 1x1 │ │ │ ├── ac.svg │ │ │ ├── ad.svg │ │ │ ├── ae.svg │ │ │ ├── af.svg │ │ │ ├── ag.svg │ │ │ ├── ai.svg │ │ │ ├── al.svg │ │ │ ├── am.svg │ │ │ ├── ao.svg │ │ │ ├── aq.svg │ │ │ ├── ar.svg │ │ │ ├── arab.svg │ │ │ ├── as.svg │ │ │ ├── at.svg │ │ │ ├── au.svg │ │ │ ├── aw.svg │ │ │ ├── ax.svg │ │ │ ├── az.svg │ │ │ ├── ba.svg │ │ │ ├── bb.svg │ │ │ ├── bd.svg │ │ │ ├── be.svg │ │ │ ├── bf.svg │ │ │ ├── bg.svg │ │ │ ├── bh.svg │ │ │ ├── bi.svg │ │ │ ├── bj.svg │ │ │ ├── bl.svg │ │ │ ├── bm.svg │ │ │ ├── bn.svg │ │ │ ├── bo.svg │ │ │ ├── bq.svg │ │ │ ├── br.svg │ │ │ ├── bs.svg │ │ │ ├── bt.svg │ │ │ ├── bv.svg │ │ │ ├── bw.svg │ │ │ ├── by.svg │ │ │ ├── bz.svg │ │ │ ├── ca.svg │ │ │ ├── cc.svg │ │ │ ├── cd.svg │ │ │ ├── cefta.svg │ │ │ ├── cf.svg │ │ │ ├── cg.svg │ │ │ ├── ch.svg │ │ │ ├── ci.svg │ │ │ ├── ck.svg │ │ │ ├── cl.svg │ │ │ ├── cm.svg │ │ │ ├── cn.svg │ │ │ ├── co.svg │ │ │ ├── cp.svg │ │ │ ├── cr.svg │ │ │ ├── cu.svg │ │ │ ├── cv.svg │ │ │ ├── cw.svg │ │ │ ├── cx.svg │ │ │ ├── cy.svg │ │ │ ├── cz.svg │ │ │ ├── de.svg │ │ │ ├── dg.svg │ │ │ ├── dj.svg │ │ │ ├── dk.svg │ │ │ ├── dm.svg │ │ │ ├── do.svg │ │ │ ├── dz.svg │ │ │ ├── eac.svg │ │ │ ├── ec.svg │ │ │ ├── ee.svg │ │ │ ├── eg.svg │ │ │ ├── eh.svg │ │ │ ├── er.svg │ │ │ ├── es-ct.svg │ │ │ ├── es-ga.svg │ │ │ ├── es-pv.svg │ │ │ ├── es.svg │ │ │ ├── et.svg │ │ │ ├── eu.svg │ │ │ ├── fi.svg │ │ │ ├── fj.svg │ │ │ ├── fk.svg │ │ │ ├── fm.svg │ │ │ ├── fo.svg │ │ │ ├── fr.svg │ │ │ ├── ga.svg │ │ │ ├── gb-eng.svg │ │ │ ├── gb-nir.svg │ │ │ ├── gb-sct.svg │ │ │ ├── gb-wls.svg │ │ │ ├── gb.svg │ │ │ ├── gd.svg │ │ │ ├── ge.svg │ │ │ ├── gf.svg │ │ │ ├── gg.svg │ │ │ ├── gh.svg │ │ │ ├── gi.svg │ │ │ ├── gl.svg │ │ │ ├── gm.svg │ │ │ ├── gn.svg │ │ │ ├── gp.svg │ │ │ ├── gq.svg │ │ │ ├── gr.svg │ │ │ ├── gs.svg │ │ │ ├── gt.svg │ │ │ ├── gu.svg │ │ │ ├── gw.svg │ │ │ ├── gy.svg │ │ │ ├── hk.svg │ │ │ ├── hm.svg │ │ │ ├── hn.svg │ │ │ ├── hr.svg │ │ │ ├── ht.svg │ │ │ ├── hu.svg │ │ │ ├── ic.svg │ │ │ ├── id.svg │ │ │ ├── ie.svg │ │ │ ├── il.svg │ │ │ ├── im.svg │ │ │ ├── in.svg │ │ │ ├── io.svg │ │ │ ├── iq.svg │ │ │ ├── ir.svg │ │ │ ├── is.svg │ │ │ ├── it.svg │ │ │ ├── je.svg │ │ │ ├── jm.svg │ │ │ ├── jo.svg │ │ │ ├── jp.svg │ │ │ ├── ke.svg │ │ │ ├── kg.svg │ │ │ ├── kh.svg │ │ │ ├── ki.svg │ │ │ ├── km.svg │ │ │ ├── kn.svg │ │ │ ├── kp.svg │ │ │ ├── kr.svg │ │ │ ├── kw.svg │ │ │ ├── ky.svg │ │ │ ├── kz.svg │ │ │ ├── la.svg │ │ │ ├── lb.svg │ │ │ ├── lc.svg │ │ │ ├── li.svg │ │ │ ├── lk.svg │ │ │ ├── lr.svg │ │ │ ├── ls.svg │ │ │ ├── lt.svg │ │ │ ├── lu.svg │ │ │ ├── lv.svg │ │ │ ├── ly.svg │ │ │ ├── ma.svg │ │ │ ├── mc.svg │ │ │ ├── md.svg │ │ │ ├── me.svg │ │ │ ├── mf.svg │ │ │ ├── mg.svg │ │ │ ├── mh.svg │ │ │ ├── mk.svg │ │ │ ├── ml.svg │ │ │ ├── mm.svg │ │ │ ├── mn.svg │ │ │ ├── mo.svg │ │ │ ├── mp.svg │ │ │ ├── mq.svg │ │ │ ├── mr.svg │ │ │ ├── ms.svg │ │ │ ├── mt.svg │ │ │ ├── mu.svg │ │ │ ├── mv.svg │ │ │ ├── mw.svg │ │ │ ├── mx.svg │ │ │ ├── my.svg │ │ │ ├── mz.svg │ │ │ ├── na.svg │ │ │ ├── nc.svg │ │ │ ├── ne.svg │ │ │ ├── nf.svg │ │ │ ├── ng.svg │ │ │ ├── ni.svg │ │ │ ├── nl.svg │ │ │ ├── no.svg │ │ │ ├── np.svg │ │ │ ├── nr.svg │ │ │ ├── nu.svg │ │ │ ├── nz.svg │ │ │ ├── om.svg │ │ │ ├── pa.svg │ │ │ ├── pe.svg │ │ │ ├── pf.svg │ │ │ ├── pg.svg │ │ │ ├── ph.svg │ │ │ ├── pk.svg │ │ │ ├── pl.svg │ │ │ ├── pm.svg │ │ │ ├── pn.svg │ │ │ ├── pr.svg │ │ │ ├── ps.svg │ │ │ ├── pt.svg │ │ │ ├── pw.svg │ │ │ ├── py.svg │ │ │ ├── qa.svg │ │ │ ├── re.svg │ │ │ ├── ro.svg │ │ │ ├── rs.svg │ │ │ ├── ru.svg │ │ │ ├── rw.svg │ │ │ ├── sa.svg │ │ │ ├── sb.svg │ │ │ ├── sc.svg │ │ │ ├── sd.svg │ │ │ ├── se.svg │ │ │ ├── sg.svg │ │ │ ├── sh.svg │ │ │ ├── si.svg │ │ │ ├── sj.svg │ │ │ ├── sk.svg │ │ │ ├── sl.svg │ │ │ ├── sm.svg │ │ │ ├── sn.svg │ │ │ ├── so.svg │ │ │ ├── sr.svg │ │ │ ├── ss.svg │ │ │ ├── st.svg │ │ │ ├── sv.svg │ │ │ ├── sx.svg │ │ │ ├── sy.svg │ │ │ ├── sz.svg │ │ │ ├── ta.svg │ │ │ ├── tc.svg │ │ │ ├── td.svg │ │ │ ├── tf.svg │ │ │ ├── tg.svg │ │ │ ├── th.svg │ │ │ ├── tj.svg │ │ │ ├── tk.svg │ │ │ ├── tl.svg │ │ │ ├── tm.svg │ │ │ ├── tn.svg │ │ │ ├── to.svg │ │ │ ├── tr.svg │ │ │ ├── tt.svg │ │ │ ├── tv.svg │ │ │ ├── tw.svg │ │ │ ├── tz.svg │ │ │ ├── ua.svg │ │ │ ├── ug.svg │ │ │ ├── um.svg │ │ │ ├── un.svg │ │ │ ├── us.svg │ │ │ ├── uy.svg │ │ │ ├── uz.svg │ │ │ ├── va.svg │ │ │ ├── vc.svg │ │ │ ├── ve.svg │ │ │ ├── vg.svg │ │ │ ├── vi.svg │ │ │ ├── vn.svg │ │ │ ├── vu.svg │ │ │ ├── wf.svg │ │ │ ├── ws.svg │ │ │ ├── xk.svg │ │ │ ├── xx.svg │ │ │ ├── ye.svg │ │ │ ├── yt.svg │ │ │ ├── za.svg │ │ │ ├── zm.svg │ │ │ └── zw.svg │ │ └── 4x3 │ │ │ ├── ac.svg │ │ │ ├── ad.svg │ │ │ ├── ae.svg │ │ │ ├── af.svg │ │ │ ├── ag.svg │ │ │ ├── ai.svg │ │ │ ├── al.svg │ │ │ ├── am.svg │ │ │ ├── ao.svg │ │ │ ├── aq.svg │ │ │ ├── ar.svg │ │ │ ├── arab.svg │ │ │ ├── as.svg │ │ │ ├── at.svg │ │ │ ├── au.svg │ │ │ ├── aw.svg │ │ │ ├── ax.svg │ │ │ ├── az.svg │ │ │ ├── ba.svg │ │ │ ├── bb.svg │ │ │ ├── bd.svg │ │ │ ├── be.svg │ │ │ ├── bf.svg │ │ │ ├── bg.svg │ │ │ ├── bh.svg │ │ │ ├── bi.svg │ │ │ ├── bj.svg │ │ │ ├── bl.svg │ │ │ ├── bm.svg │ │ │ ├── bn.svg │ │ │ ├── bo.svg │ │ │ ├── bq.svg │ │ │ ├── br.svg │ │ │ ├── bs.svg │ │ │ ├── bt.svg │ │ │ ├── bv.svg │ │ │ ├── bw.svg │ │ │ ├── by.svg │ │ │ ├── bz.svg │ │ │ ├── ca.svg │ │ │ ├── cc.svg │ │ │ ├── cd.svg │ │ │ ├── cefta.svg │ │ │ ├── cf.svg │ │ │ ├── cg.svg │ │ │ ├── ch.svg │ │ │ ├── ci.svg │ │ │ ├── ck.svg │ │ │ ├── cl.svg │ │ │ ├── cm.svg │ │ │ ├── cn.svg │ │ │ ├── co.svg │ │ │ ├── cp.svg │ │ │ ├── cr.svg │ │ │ ├── cu.svg │ │ │ ├── cv.svg │ │ │ ├── cw.svg │ │ │ ├── cx.svg │ │ │ ├── cy.svg │ │ │ ├── cz.svg │ │ │ ├── de.svg │ │ │ ├── dg.svg │ │ │ ├── dj.svg │ │ │ ├── dk.svg │ │ │ ├── dm.svg │ │ │ ├── do.svg │ │ │ ├── dz.svg │ │ │ ├── eac.svg │ │ │ ├── ec.svg │ │ │ ├── ee.svg │ │ │ ├── eg.svg │ │ │ ├── eh.svg │ │ │ ├── er.svg │ │ │ ├── es-ct.svg │ │ │ ├── es-ga.svg │ │ │ ├── es-pv.svg │ │ │ ├── es.svg │ │ │ ├── et.svg │ │ │ ├── eu.svg │ │ │ ├── fi.svg │ │ │ ├── fj.svg │ │ │ ├── fk.svg │ │ │ ├── fm.svg │ │ │ ├── fo.svg │ │ │ ├── fr.svg │ │ │ ├── ga.svg │ │ │ ├── gb-eng.svg │ │ │ ├── gb-nir.svg │ │ │ ├── gb-sct.svg │ │ │ ├── gb-wls.svg │ │ │ ├── gb.svg │ │ │ ├── gd.svg │ │ │ ├── ge.svg │ │ │ ├── gf.svg │ │ │ ├── gg.svg │ │ │ ├── gh.svg │ │ │ ├── gi.svg │ │ │ ├── gl.svg │ │ │ ├── gm.svg │ │ │ ├── gn.svg │ │ │ ├── gp.svg │ │ │ ├── gq.svg │ │ │ ├── gr.svg │ │ │ ├── gs.svg │ │ │ ├── gt.svg │ │ │ ├── gu.svg │ │ │ ├── gw.svg │ │ │ ├── gy.svg │ │ │ ├── hk.svg │ │ │ ├── hm.svg │ │ │ ├── hn.svg │ │ │ ├── hr.svg │ │ │ ├── ht.svg │ │ │ ├── hu.svg │ │ │ ├── ic.svg │ │ │ ├── id.svg │ │ │ ├── ie.svg │ │ │ ├── il.svg │ │ │ ├── im.svg │ │ │ ├── in.svg │ │ │ ├── io.svg │ │ │ ├── iq.svg │ │ │ ├── ir.svg │ │ │ ├── is.svg │ │ │ ├── it.svg │ │ │ ├── je.svg │ │ │ ├── jm.svg │ │ │ ├── jo.svg │ │ │ ├── jp.svg │ │ │ ├── ke.svg │ │ │ ├── kg.svg │ │ │ ├── kh.svg │ │ │ ├── ki.svg │ │ │ ├── km.svg │ │ │ ├── kn.svg │ │ │ ├── kp.svg │ │ │ ├── kr.svg │ │ │ ├── kw.svg │ │ │ ├── ky.svg │ │ │ ├── kz.svg │ │ │ ├── la.svg │ │ │ ├── lb.svg │ │ │ ├── lc.svg │ │ │ ├── li.svg │ │ │ ├── lk.svg │ │ │ ├── lr.svg │ │ │ ├── ls.svg │ │ │ ├── lt.svg │ │ │ ├── lu.svg │ │ │ ├── lv.svg │ │ │ ├── ly.svg │ │ │ ├── ma.svg │ │ │ ├── mc.svg │ │ │ ├── md.svg │ │ │ ├── me.svg │ │ │ ├── mf.svg │ │ │ ├── mg.svg │ │ │ ├── mh.svg │ │ │ ├── mk.svg │ │ │ ├── ml.svg │ │ │ ├── mm.svg │ │ │ ├── mn.svg │ │ │ ├── mo.svg │ │ │ ├── mp.svg │ │ │ ├── mq.svg │ │ │ ├── mr.svg │ │ │ ├── ms.svg │ │ │ ├── mt.svg │ │ │ ├── mu.svg │ │ │ ├── mv.svg │ │ │ ├── mw.svg │ │ │ ├── mx.svg │ │ │ ├── my.svg │ │ │ ├── mz.svg │ │ │ ├── na.svg │ │ │ ├── nc.svg │ │ │ ├── ne.svg │ │ │ ├── nf.svg │ │ │ ├── ng.svg │ │ │ ├── ni.svg │ │ │ ├── nl.svg │ │ │ ├── no.svg │ │ │ ├── np.svg │ │ │ ├── nr.svg │ │ │ ├── nu.svg │ │ │ ├── nz.svg │ │ │ ├── om.svg │ │ │ ├── pa.svg │ │ │ ├── pe.svg │ │ │ ├── pf.svg │ │ │ ├── pg.svg │ │ │ ├── ph.svg │ │ │ ├── pk.svg │ │ │ ├── pl.svg │ │ │ ├── pm.svg │ │ │ ├── pn.svg │ │ │ ├── pr.svg │ │ │ ├── ps.svg │ │ │ ├── pt.svg │ │ │ ├── pw.svg │ │ │ ├── py.svg │ │ │ ├── qa.svg │ │ │ ├── re.svg │ │ │ ├── ro.svg │ │ │ ├── rs.svg │ │ │ ├── ru.svg │ │ │ ├── rw.svg │ │ │ ├── sa.svg │ │ │ ├── sb.svg │ │ │ ├── sc.svg │ │ │ ├── sd.svg │ │ │ ├── se.svg │ │ │ ├── sg.svg │ │ │ ├── sh.svg │ │ │ ├── si.svg │ │ │ ├── sj.svg │ │ │ ├── sk.svg │ │ │ ├── sl.svg │ │ │ ├── sm.svg │ │ │ ├── sn.svg │ │ │ ├── so.svg │ │ │ ├── sr.svg │ │ │ ├── ss.svg │ │ │ ├── st.svg │ │ │ ├── sv.svg │ │ │ ├── sx.svg │ │ │ ├── sy.svg │ │ │ ├── sz.svg │ │ │ ├── ta.svg │ │ │ ├── tc.svg │ │ │ ├── td.svg │ │ │ ├── tf.svg │ │ │ ├── tg.svg │ │ │ ├── th.svg │ │ │ ├── tj.svg │ │ │ ├── tk.svg │ │ │ ├── tl.svg │ │ │ ├── tm.svg │ │ │ ├── tn.svg │ │ │ ├── to.svg │ │ │ ├── tr.svg │ │ │ ├── tt.svg │ │ │ ├── tv.svg │ │ │ ├── tw.svg │ │ │ ├── tz.svg │ │ │ ├── ua.svg │ │ │ ├── ug.svg │ │ │ ├── um.svg │ │ │ ├── un.svg │ │ │ ├── us.svg │ │ │ ├── uy.svg │ │ │ ├── uz.svg │ │ │ ├── va.svg │ │ │ ├── vc.svg │ │ │ ├── ve.svg │ │ │ ├── vg.svg │ │ │ ├── vi.svg │ │ │ ├── vn.svg │ │ │ ├── vu.svg │ │ │ ├── wf.svg │ │ │ ├── ws.svg │ │ │ ├── xk.svg │ │ │ ├── xx.svg │ │ │ ├── ye.svg │ │ │ ├── yt.svg │ │ │ ├── za.svg │ │ │ ├── zm.svg │ │ │ └── zw.svg │ │ ├── index.html │ │ ├── less │ │ ├── flag-icons-base.less │ │ ├── flag-icons-list.less │ │ ├── flag-icons-more.less │ │ ├── flag-icons.less │ │ └── variables.less │ │ ├── package.json │ │ ├── robots.txt │ │ ├── sass │ │ ├── _flag-icons-base.scss │ │ ├── _flag-icons-list.scss │ │ ├── _variables.scss │ │ └── flag-icons.scss │ │ ├── svgo.config.js │ │ └── yarn.lock │ ├── myclabs │ └── php-enum │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ ├── src │ │ ├── Enum.php │ │ └── PHPUnit │ │ │ └── Comparator.php │ │ └── stubs │ │ └── Stringable.php │ ├── parsedown │ ├── LICENSE.txt │ ├── Parsedown.php │ ├── README.md │ └── index.php │ ├── php-mqtt │ └── client │ │ ├── .ci │ │ ├── emqx.conf │ │ ├── hivemq.xml │ │ ├── mosquitto.conf │ │ ├── mosquitto.passwd │ │ ├── rabbitmq.conf │ │ └── tls │ │ │ └── .gitignore │ │ ├── .github │ │ ├── dependabot.yml │ │ ├── release.yml │ │ └── workflows │ │ │ ├── dependency-review.yml │ │ │ └── tests.yml │ │ ├── .gitignore │ │ ├── .phpcs.xml │ │ ├── CHANGELOG.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ ├── create-certificates.sh │ │ ├── phpunit.xml │ │ ├── sonar-project.properties │ │ └── src │ │ ├── Concerns │ │ ├── GeneratesRandomClientIds.php │ │ ├── OffersHooks.php │ │ ├── TranscodesData.php │ │ ├── ValidatesConfiguration.php │ │ └── WorksWithBuffers.php │ │ ├── ConnectionSettings.php │ │ ├── Contracts │ │ ├── MessageProcessor.php │ │ ├── MqttClient.php │ │ └── Repository.php │ │ ├── Exceptions │ │ ├── ClientNotConnectedToBrokerException.php │ │ ├── ConfigurationInvalidException.php │ │ ├── ConnectingToBrokerFailedException.php │ │ ├── DataTransferException.php │ │ ├── InvalidMessageException.php │ │ ├── MqttClientException.php │ │ ├── PendingMessageAlreadyExistsException.php │ │ ├── PendingMessageNotFoundException.php │ │ ├── ProtocolNotSupportedException.php │ │ ├── ProtocolViolationException.php │ │ └── RepositoryException.php │ │ ├── Logger.php │ │ ├── Message.php │ │ ├── MessageProcessors │ │ ├── BaseMessageProcessor.php │ │ ├── Mqtt311MessageProcessor.php │ │ └── Mqtt31MessageProcessor.php │ │ ├── MessageType.php │ │ ├── MqttClient.php │ │ ├── PendingMessage.php │ │ ├── PublishedMessage.php │ │ ├── Repositories │ │ └── MemoryRepository.php │ │ ├── SubscribeRequest.php │ │ ├── Subscription.php │ │ └── UnsubscribeRequest.php │ ├── phpdiff │ ├── Diff.php │ ├── README.md │ ├── Renderer │ │ ├── Abstract.php │ │ ├── Html │ │ │ ├── Array.php │ │ │ ├── Inline.php │ │ │ └── SideBySide.php │ │ └── Text │ │ │ ├── Context.php │ │ │ └── Unified.php │ ├── SequenceMatcher.php │ └── example │ │ ├── a.txt │ │ ├── b.txt │ │ ├── example.php │ │ └── styles.css │ ├── phpgettext │ ├── gettext.php │ ├── index.php │ └── streams.php │ ├── phpmailer │ ├── index.php │ └── phpmailer │ │ ├── COMMITMENT │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── VERSION │ │ ├── composer.json │ │ ├── get_oauth_token.php │ │ ├── language │ │ ├── index.php │ │ ├── phpmailer.lang-af.php │ │ ├── phpmailer.lang-am.php │ │ ├── phpmailer.lang-ar.php │ │ ├── phpmailer.lang-as.php │ │ ├── phpmailer.lang-az.php │ │ ├── phpmailer.lang-ba.php │ │ ├── phpmailer.lang-be.php │ │ ├── phpmailer.lang-bg.php │ │ ├── phpmailer.lang-bn.php │ │ ├── phpmailer.lang-ca.php │ │ ├── phpmailer.lang-ch.php │ │ ├── phpmailer.lang-cs.php │ │ ├── phpmailer.lang-da.php │ │ ├── phpmailer.lang-de.php │ │ ├── phpmailer.lang-el.php │ │ ├── phpmailer.lang-eo.php │ │ ├── phpmailer.lang-es.php │ │ ├── phpmailer.lang-et.php │ │ ├── phpmailer.lang-fa.php │ │ ├── phpmailer.lang-fi.php │ │ ├── phpmailer.lang-fo.php │ │ ├── phpmailer.lang-fr.php │ │ ├── phpmailer.lang-gl.php │ │ ├── phpmailer.lang-he.php │ │ ├── phpmailer.lang-hi.php │ │ ├── phpmailer.lang-hr.php │ │ ├── phpmailer.lang-hu.php │ │ ├── phpmailer.lang-hy.php │ │ ├── phpmailer.lang-id.php │ │ ├── phpmailer.lang-it.php │ │ ├── phpmailer.lang-ja.php │ │ ├── phpmailer.lang-ka.php │ │ ├── phpmailer.lang-ko.php │ │ ├── phpmailer.lang-ku.php │ │ ├── phpmailer.lang-lt.php │ │ ├── phpmailer.lang-lv.php │ │ ├── phpmailer.lang-mg.php │ │ ├── phpmailer.lang-mn.php │ │ ├── phpmailer.lang-ms.php │ │ ├── phpmailer.lang-nb.php │ │ ├── phpmailer.lang-nl.php │ │ ├── phpmailer.lang-pl.php │ │ ├── phpmailer.lang-pt.php │ │ ├── phpmailer.lang-pt_br.php │ │ ├── phpmailer.lang-ro.php │ │ ├── phpmailer.lang-ru.php │ │ ├── phpmailer.lang-si.php │ │ ├── phpmailer.lang-sk.php │ │ ├── phpmailer.lang-sl.php │ │ ├── phpmailer.lang-sr.php │ │ ├── phpmailer.lang-sr_latn.php │ │ ├── phpmailer.lang-sv.php │ │ ├── phpmailer.lang-tl.php │ │ ├── phpmailer.lang-tr.php │ │ ├── phpmailer.lang-uk.php │ │ ├── phpmailer.lang-ur.php │ │ ├── phpmailer.lang-vi.php │ │ ├── phpmailer.lang-zh.php │ │ └── phpmailer.lang-zh_cn.php │ │ └── src │ │ ├── DSNConfigurator.php │ │ ├── Exception.php │ │ ├── OAuth.php │ │ ├── OAuthTokenProvider.php │ │ ├── PHPMailer.php │ │ ├── POP3.php │ │ ├── SMTP.php │ │ └── index.php │ ├── phpseclib │ └── phpseclib │ │ ├── AUTHORS │ │ ├── BACKERS.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── phpseclib │ │ ├── Common │ │ └── Functions │ │ │ └── Strings.php │ │ ├── Crypt │ │ ├── AES.php │ │ ├── Blowfish.php │ │ ├── ChaCha20.php │ │ ├── Common │ │ │ ├── AsymmetricKey.php │ │ │ ├── BlockCipher.php │ │ │ ├── Formats │ │ │ │ ├── Keys │ │ │ │ │ ├── JWK.php │ │ │ │ │ ├── OpenSSH.php │ │ │ │ │ ├── PKCS.php │ │ │ │ │ ├── PKCS1.php │ │ │ │ │ ├── PKCS8.php │ │ │ │ │ └── PuTTY.php │ │ │ │ └── Signature │ │ │ │ │ └── Raw.php │ │ │ ├── PrivateKey.php │ │ │ ├── PublicKey.php │ │ │ ├── StreamCipher.php │ │ │ ├── SymmetricKey.php │ │ │ └── Traits │ │ │ │ ├── Fingerprint.php │ │ │ │ └── PasswordProtected.php │ │ ├── DES.php │ │ ├── DH.php │ │ ├── DH │ │ │ ├── Formats │ │ │ │ └── Keys │ │ │ │ │ ├── PKCS1.php │ │ │ │ │ └── PKCS8.php │ │ │ ├── Parameters.php │ │ │ ├── PrivateKey.php │ │ │ └── PublicKey.php │ │ ├── DSA.php │ │ ├── DSA │ │ │ ├── Formats │ │ │ │ ├── Keys │ │ │ │ │ ├── OpenSSH.php │ │ │ │ │ ├── PKCS1.php │ │ │ │ │ ├── PKCS8.php │ │ │ │ │ ├── PuTTY.php │ │ │ │ │ ├── Raw.php │ │ │ │ │ └── XML.php │ │ │ │ └── Signature │ │ │ │ │ ├── ASN1.php │ │ │ │ │ ├── Raw.php │ │ │ │ │ └── SSH2.php │ │ │ ├── Parameters.php │ │ │ ├── PrivateKey.php │ │ │ └── PublicKey.php │ │ ├── EC.php │ │ ├── EC │ │ │ ├── BaseCurves │ │ │ │ ├── Base.php │ │ │ │ ├── Binary.php │ │ │ │ ├── KoblitzPrime.php │ │ │ │ ├── Montgomery.php │ │ │ │ ├── Prime.php │ │ │ │ └── TwistedEdwards.php │ │ │ ├── Curves │ │ │ │ ├── Curve25519.php │ │ │ │ ├── Curve448.php │ │ │ │ ├── Ed25519.php │ │ │ │ ├── Ed448.php │ │ │ │ ├── brainpoolP160r1.php │ │ │ │ ├── brainpoolP160t1.php │ │ │ │ ├── brainpoolP192r1.php │ │ │ │ ├── brainpoolP192t1.php │ │ │ │ ├── brainpoolP224r1.php │ │ │ │ ├── brainpoolP224t1.php │ │ │ │ ├── brainpoolP256r1.php │ │ │ │ ├── brainpoolP256t1.php │ │ │ │ ├── brainpoolP320r1.php │ │ │ │ ├── brainpoolP320t1.php │ │ │ │ ├── brainpoolP384r1.php │ │ │ │ ├── brainpoolP384t1.php │ │ │ │ ├── brainpoolP512r1.php │ │ │ │ ├── brainpoolP512t1.php │ │ │ │ ├── nistb233.php │ │ │ │ ├── nistb409.php │ │ │ │ ├── nistk163.php │ │ │ │ ├── nistk233.php │ │ │ │ ├── nistk283.php │ │ │ │ ├── nistk409.php │ │ │ │ ├── nistp192.php │ │ │ │ ├── nistp224.php │ │ │ │ ├── nistp256.php │ │ │ │ ├── nistp384.php │ │ │ │ ├── nistp521.php │ │ │ │ ├── nistt571.php │ │ │ │ ├── prime192v1.php │ │ │ │ ├── prime192v2.php │ │ │ │ ├── prime192v3.php │ │ │ │ ├── prime239v1.php │ │ │ │ ├── prime239v2.php │ │ │ │ ├── prime239v3.php │ │ │ │ ├── prime256v1.php │ │ │ │ ├── secp112r1.php │ │ │ │ ├── secp112r2.php │ │ │ │ ├── secp128r1.php │ │ │ │ ├── secp128r2.php │ │ │ │ ├── secp160k1.php │ │ │ │ ├── secp160r1.php │ │ │ │ ├── secp160r2.php │ │ │ │ ├── secp192k1.php │ │ │ │ ├── secp192r1.php │ │ │ │ ├── secp224k1.php │ │ │ │ ├── secp224r1.php │ │ │ │ ├── secp256k1.php │ │ │ │ ├── secp256r1.php │ │ │ │ ├── secp384r1.php │ │ │ │ ├── secp521r1.php │ │ │ │ ├── sect113r1.php │ │ │ │ ├── sect113r2.php │ │ │ │ ├── sect131r1.php │ │ │ │ ├── sect131r2.php │ │ │ │ ├── sect163k1.php │ │ │ │ ├── sect163r1.php │ │ │ │ ├── sect163r2.php │ │ │ │ ├── sect193r1.php │ │ │ │ ├── sect193r2.php │ │ │ │ ├── sect233k1.php │ │ │ │ ├── sect233r1.php │ │ │ │ ├── sect239k1.php │ │ │ │ ├── sect283k1.php │ │ │ │ ├── sect283r1.php │ │ │ │ ├── sect409k1.php │ │ │ │ ├── sect409r1.php │ │ │ │ ├── sect571k1.php │ │ │ │ └── sect571r1.php │ │ │ ├── Formats │ │ │ │ ├── Keys │ │ │ │ │ ├── Common.php │ │ │ │ │ ├── JWK.php │ │ │ │ │ ├── MontgomeryPrivate.php │ │ │ │ │ ├── MontgomeryPublic.php │ │ │ │ │ ├── OpenSSH.php │ │ │ │ │ ├── PKCS1.php │ │ │ │ │ ├── PKCS8.php │ │ │ │ │ ├── PuTTY.php │ │ │ │ │ ├── XML.php │ │ │ │ │ └── libsodium.php │ │ │ │ └── Signature │ │ │ │ │ ├── ASN1.php │ │ │ │ │ ├── IEEE.php │ │ │ │ │ ├── Raw.php │ │ │ │ │ └── SSH2.php │ │ │ ├── Parameters.php │ │ │ ├── PrivateKey.php │ │ │ └── PublicKey.php │ │ ├── Hash.php │ │ ├── PublicKeyLoader.php │ │ ├── RC2.php │ │ ├── RC4.php │ │ ├── RSA.php │ │ ├── RSA │ │ │ ├── Formats │ │ │ │ └── Keys │ │ │ │ │ ├── JWK.php │ │ │ │ │ ├── MSBLOB.php │ │ │ │ │ ├── OpenSSH.php │ │ │ │ │ ├── PKCS1.php │ │ │ │ │ ├── PKCS8.php │ │ │ │ │ ├── PSS.php │ │ │ │ │ ├── PuTTY.php │ │ │ │ │ ├── Raw.php │ │ │ │ │ └── XML.php │ │ │ ├── PrivateKey.php │ │ │ └── PublicKey.php │ │ ├── Random.php │ │ ├── Rijndael.php │ │ ├── Salsa20.php │ │ ├── TripleDES.php │ │ └── Twofish.php │ │ ├── Exception │ │ ├── BadConfigurationException.php │ │ ├── BadDecryptionException.php │ │ ├── BadModeException.php │ │ ├── ConnectionClosedException.php │ │ ├── FileNotFoundException.php │ │ ├── InconsistentSetupException.php │ │ ├── InsufficientSetupException.php │ │ ├── InvalidPacketLengthException.php │ │ ├── NoKeyLoadedException.php │ │ ├── NoSupportedAlgorithmsException.php │ │ ├── TimeoutException.php │ │ ├── UnableToConnectException.php │ │ ├── UnsupportedAlgorithmException.php │ │ ├── UnsupportedCurveException.php │ │ ├── UnsupportedFormatException.php │ │ └── UnsupportedOperationException.php │ │ ├── File │ │ ├── ANSI.php │ │ ├── ASN1.php │ │ ├── ASN1 │ │ │ ├── Element.php │ │ │ └── Maps │ │ │ │ ├── AccessDescription.php │ │ │ │ ├── AdministrationDomainName.php │ │ │ │ ├── AlgorithmIdentifier.php │ │ │ │ ├── AnotherName.php │ │ │ │ ├── Attribute.php │ │ │ │ ├── AttributeType.php │ │ │ │ ├── AttributeTypeAndValue.php │ │ │ │ ├── AttributeValue.php │ │ │ │ ├── Attributes.php │ │ │ │ ├── AuthorityInfoAccessSyntax.php │ │ │ │ ├── AuthorityKeyIdentifier.php │ │ │ │ ├── BaseDistance.php │ │ │ │ ├── BasicConstraints.php │ │ │ │ ├── BuiltInDomainDefinedAttribute.php │ │ │ │ ├── BuiltInDomainDefinedAttributes.php │ │ │ │ ├── BuiltInStandardAttributes.php │ │ │ │ ├── CPSuri.php │ │ │ │ ├── CRLDistributionPoints.php │ │ │ │ ├── CRLNumber.php │ │ │ │ ├── CRLReason.php │ │ │ │ ├── CertPolicyId.php │ │ │ │ ├── Certificate.php │ │ │ │ ├── CertificateIssuer.php │ │ │ │ ├── CertificateList.php │ │ │ │ ├── CertificatePolicies.php │ │ │ │ ├── CertificateSerialNumber.php │ │ │ │ ├── CertificationRequest.php │ │ │ │ ├── CertificationRequestInfo.php │ │ │ │ ├── Characteristic_two.php │ │ │ │ ├── CountryName.php │ │ │ │ ├── Curve.php │ │ │ │ ├── DHParameter.php │ │ │ │ ├── DSAParams.php │ │ │ │ ├── DSAPrivateKey.php │ │ │ │ ├── DSAPublicKey.php │ │ │ │ ├── DigestInfo.php │ │ │ │ ├── DirectoryString.php │ │ │ │ ├── DisplayText.php │ │ │ │ ├── DistributionPoint.php │ │ │ │ ├── DistributionPointName.php │ │ │ │ ├── DssSigValue.php │ │ │ │ ├── ECParameters.php │ │ │ │ ├── ECPoint.php │ │ │ │ ├── ECPrivateKey.php │ │ │ │ ├── EDIPartyName.php │ │ │ │ ├── EcdsaSigValue.php │ │ │ │ ├── EncryptedData.php │ │ │ │ ├── EncryptedPrivateKeyInfo.php │ │ │ │ ├── ExtKeyUsageSyntax.php │ │ │ │ ├── Extension.php │ │ │ │ ├── ExtensionAttribute.php │ │ │ │ ├── ExtensionAttributes.php │ │ │ │ ├── Extensions.php │ │ │ │ ├── FieldElement.php │ │ │ │ ├── FieldID.php │ │ │ │ ├── GeneralName.php │ │ │ │ ├── GeneralNames.php │ │ │ │ ├── GeneralSubtree.php │ │ │ │ ├── GeneralSubtrees.php │ │ │ │ ├── HashAlgorithm.php │ │ │ │ ├── HoldInstructionCode.php │ │ │ │ ├── InvalidityDate.php │ │ │ │ ├── IssuerAltName.php │ │ │ │ ├── IssuingDistributionPoint.php │ │ │ │ ├── KeyIdentifier.php │ │ │ │ ├── KeyPurposeId.php │ │ │ │ ├── KeyUsage.php │ │ │ │ ├── MaskGenAlgorithm.php │ │ │ │ ├── Name.php │ │ │ │ ├── NameConstraints.php │ │ │ │ ├── NetworkAddress.php │ │ │ │ ├── NoticeReference.php │ │ │ │ ├── NumericUserIdentifier.php │ │ │ │ ├── ORAddress.php │ │ │ │ ├── OneAsymmetricKey.php │ │ │ │ ├── OrganizationName.php │ │ │ │ ├── OrganizationalUnitNames.php │ │ │ │ ├── OtherPrimeInfo.php │ │ │ │ ├── OtherPrimeInfos.php │ │ │ │ ├── PBEParameter.php │ │ │ │ ├── PBES2params.php │ │ │ │ ├── PBKDF2params.php │ │ │ │ ├── PBMAC1params.php │ │ │ │ ├── PKCS9String.php │ │ │ │ ├── Pentanomial.php │ │ │ │ ├── PersonalName.php │ │ │ │ ├── PolicyInformation.php │ │ │ │ ├── PolicyMappings.php │ │ │ │ ├── PolicyQualifierId.php │ │ │ │ ├── PolicyQualifierInfo.php │ │ │ │ ├── PostalAddress.php │ │ │ │ ├── Prime_p.php │ │ │ │ ├── PrivateDomainName.php │ │ │ │ ├── PrivateKey.php │ │ │ │ ├── PrivateKeyInfo.php │ │ │ │ ├── PrivateKeyUsagePeriod.php │ │ │ │ ├── PublicKey.php │ │ │ │ ├── PublicKeyAndChallenge.php │ │ │ │ ├── PublicKeyInfo.php │ │ │ │ ├── RC2CBCParameter.php │ │ │ │ ├── RDNSequence.php │ │ │ │ ├── RSAPrivateKey.php │ │ │ │ ├── RSAPublicKey.php │ │ │ │ ├── RSASSA_PSS_params.php │ │ │ │ ├── ReasonFlags.php │ │ │ │ ├── RelativeDistinguishedName.php │ │ │ │ ├── RevokedCertificate.php │ │ │ │ ├── SignedPublicKeyAndChallenge.php │ │ │ │ ├── SpecifiedECDomain.php │ │ │ │ ├── SubjectAltName.php │ │ │ │ ├── SubjectDirectoryAttributes.php │ │ │ │ ├── SubjectInfoAccessSyntax.php │ │ │ │ ├── SubjectPublicKeyInfo.php │ │ │ │ ├── TBSCertList.php │ │ │ │ ├── TBSCertificate.php │ │ │ │ ├── TerminalIdentifier.php │ │ │ │ ├── Time.php │ │ │ │ ├── Trinomial.php │ │ │ │ ├── UniqueIdentifier.php │ │ │ │ ├── UserNotice.php │ │ │ │ ├── Validity.php │ │ │ │ ├── netscape_ca_policy_url.php │ │ │ │ ├── netscape_cert_type.php │ │ │ │ └── netscape_comment.php │ │ └── X509.php │ │ ├── Math │ │ ├── BigInteger.php │ │ ├── BigInteger │ │ │ └── Engines │ │ │ │ ├── BCMath.php │ │ │ │ ├── BCMath │ │ │ │ ├── Base.php │ │ │ │ ├── BuiltIn.php │ │ │ │ ├── DefaultEngine.php │ │ │ │ ├── OpenSSL.php │ │ │ │ └── Reductions │ │ │ │ │ ├── Barrett.php │ │ │ │ │ └── EvalBarrett.php │ │ │ │ ├── Engine.php │ │ │ │ ├── GMP.php │ │ │ │ ├── GMP │ │ │ │ └── DefaultEngine.php │ │ │ │ ├── OpenSSL.php │ │ │ │ ├── PHP.php │ │ │ │ ├── PHP │ │ │ │ ├── Base.php │ │ │ │ ├── DefaultEngine.php │ │ │ │ ├── Montgomery.php │ │ │ │ ├── OpenSSL.php │ │ │ │ └── Reductions │ │ │ │ │ ├── Barrett.php │ │ │ │ │ ├── Classic.php │ │ │ │ │ ├── EvalBarrett.php │ │ │ │ │ ├── Montgomery.php │ │ │ │ │ ├── MontgomeryMult.php │ │ │ │ │ └── PowerOfTwo.php │ │ │ │ ├── PHP32.php │ │ │ │ └── PHP64.php │ │ ├── BinaryField.php │ │ ├── BinaryField │ │ │ └── Integer.php │ │ ├── Common │ │ │ ├── FiniteField.php │ │ │ └── FiniteField │ │ │ │ └── Integer.php │ │ ├── PrimeField.php │ │ └── PrimeField │ │ │ └── Integer.php │ │ ├── Net │ │ ├── SFTP.php │ │ ├── SFTP │ │ │ └── Stream.php │ │ └── SSH2.php │ │ ├── System │ │ └── SSH │ │ │ ├── Agent.php │ │ │ ├── Agent │ │ │ └── Identity.php │ │ │ └── Common │ │ │ └── Traits │ │ │ └── ReadBytes.php │ │ ├── bootstrap.php │ │ └── openssl.cnf │ ├── phpsnmp │ ├── classSNMP.php │ ├── extension.php │ ├── index.php │ └── mib_parser.php │ ├── psr │ ├── http-client │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── ClientExceptionInterface.php │ │ │ ├── ClientInterface.php │ │ │ ├── NetworkExceptionInterface.php │ │ │ └── RequestExceptionInterface.php │ ├── http-factory │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── RequestFactoryInterface.php │ │ │ ├── ResponseFactoryInterface.php │ │ │ ├── ServerRequestFactoryInterface.php │ │ │ ├── StreamFactoryInterface.php │ │ │ ├── UploadedFileFactoryInterface.php │ │ │ └── UriFactoryInterface.php │ ├── http-message │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── docs │ │ │ ├── PSR7-Interfaces.md │ │ │ └── PSR7-Usage.md │ │ └── src │ │ │ ├── MessageInterface.php │ │ │ ├── RequestInterface.php │ │ │ ├── ResponseInterface.php │ │ │ ├── ServerRequestInterface.php │ │ │ ├── StreamInterface.php │ │ │ ├── UploadedFileInterface.php │ │ │ └── UriInterface.php │ └── log │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── AbstractLogger.php │ │ ├── InvalidArgumentException.php │ │ ├── LogLevel.php │ │ ├── LoggerAwareInterface.php │ │ ├── LoggerAwareTrait.php │ │ ├── LoggerInterface.php │ │ ├── LoggerTrait.php │ │ └── NullLogger.php │ ├── ralouphie │ └── getallheaders │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ └── getallheaders.php │ ├── stevenmaguire │ ├── oauth2-keycloak │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── phpunit.xml.dist │ │ └── src │ │ │ └── Provider │ │ │ ├── Exception │ │ │ └── EncryptionConfigurationException.php │ │ │ ├── Keycloak.php │ │ │ └── KeycloakResourceOwner.php │ └── oauth2-microsoft │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── phpunit.xml │ │ └── src │ │ └── Provider │ │ ├── Microsoft.php │ │ └── MicrosoftResourceOwner.php │ └── symfony │ └── deprecation-contracts │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── function.php ├── index.php ├── install ├── automation │ ├── automation_device_rules_multiple.json │ └── automation_network_test_network.json ├── background.php ├── cli_check.php ├── cli_test.php ├── colors.csv ├── functions.php ├── index.php ├── install.css ├── install.js ├── install.php ├── step_json.php ├── templates │ ├── ACME.xml.gz │ ├── AKCP_Device.xml.gz │ ├── APC_InfraStruXure_InRow_CRAC.xml.gz │ ├── APC_InfraStruXure_PDU.xml.gz │ ├── Apache_Webserver.xml.gz │ ├── ArubaOS_switch.xml.gz │ ├── Aruba_Instant_AP_Cluster.xml.gz │ ├── Aruba_OSCX_switch_6x00.xml.gz │ ├── Aruba_Wireless_Controller.xml.gz │ ├── BayTech_PDU.xml.gz │ ├── Cacti_Stats.xml.gz │ ├── Cisco_Router.xml.gz │ ├── Citrix_NetScaler_VPX.xml.gz │ ├── Clearpass_policy_manager.xml.gz │ ├── Dell_iDrac.xml.gz │ ├── ESXi_Device.xml.gz │ ├── Fortigate.xml.gz │ ├── Generic_SNMP_Device.xml.gz │ ├── HPE_NimbleAlletra_storage.xml.gz │ ├── HPE_iLO.xml.gz │ ├── Local_Linux_Machine.xml.gz │ ├── MikroTik_Device.xml.gz │ ├── MikroTik_Switch_SWOS.xml.gz │ ├── Motorola_SB6141.xml.gz │ ├── NetSNMP_Device.xml.gz │ ├── PING_Advanced_Ping.xml.gz │ ├── SNMP_Printer.xml.gz │ ├── SNMP_UPS.xml.gz │ ├── Synology_NAS.xml.gz │ ├── Windows_Device.xml.gz │ └── package.manifest └── upgrades │ ├── 0_8_7.php │ ├── 0_8_7a.php │ ├── 0_8_7b.php │ ├── 0_8_7c.php │ ├── 0_8_7h.php │ ├── 0_8_8.php │ ├── 1_0_0.php │ ├── 1_0_4.php │ ├── 1_0_5.php │ ├── 1_1_11.php │ ├── 1_1_14.php │ ├── 1_1_17.php │ ├── 1_1_2.php │ ├── 1_1_20.php │ ├── 1_1_26.php │ ├── 1_1_28.php │ ├── 1_1_31.php │ ├── 1_1_34.php │ ├── 1_1_35.php │ ├── 1_1_36.php │ ├── 1_1_37.php │ ├── 1_1_4.php │ ├── 1_1_6.php │ ├── 1_1_7.php │ ├── 1_1_8.php │ ├── 1_2_0.php │ ├── 1_2_1.php │ ├── 1_2_11.php │ ├── 1_2_14.php │ ├── 1_2_15.php │ ├── 1_2_17.php │ ├── 1_2_19.php │ ├── 1_2_2.php │ ├── 1_2_20.php │ ├── 1_2_21.php │ ├── 1_2_22.php │ ├── 1_2_23.php │ ├── 1_2_25.php │ ├── 1_2_26.php │ ├── 1_2_27.php │ ├── 1_2_3.php │ ├── 1_2_31.php │ ├── 1_2_5.php │ ├── 1_2_7.php │ ├── 1_2_8.php │ ├── 1_3_0.php │ └── index.php ├── lib ├── aggregate.php ├── api_aggregate.php ├── api_automation.php ├── api_automation_tools.php ├── api_data_source.php ├── api_device.php ├── api_graph.php ├── api_poller.php ├── api_scheduler.php ├── api_tree.php ├── auth.php ├── boost.php ├── cdef.php ├── clog_webapi.php ├── data_query.php ├── database.php ├── dbparallel.php ├── dsdebug.php ├── dsstats.php ├── export.php ├── functions.php ├── graph_variables.php ├── graphs.php ├── html.php ├── html_filter.php ├── html_form.php ├── html_form_template.php ├── html_graph.php ├── html_reports.php ├── html_tree.php ├── html_utility.php ├── html_validate.php ├── import.php ├── index.php ├── installer.php ├── ldap.php ├── mib_cache.php ├── package.php ├── ping.php ├── plugins.php ├── poller.php ├── reports.php ├── rrd.php ├── rrdcheck.php ├── snmp.php ├── snmpagent.php ├── sort.php ├── spikekill.php ├── template.php ├── time.php ├── timespan_settings.php ├── utility.php ├── variables.php ├── vdef.php └── xml.php ├── link.php ├── links.php ├── locales ├── LC_MESSAGES │ ├── ar-SA.mo │ ├── bg-BG.mo │ ├── de-DE.mo │ ├── el-GR.mo │ ├── es-ES.mo │ ├── fr-FR.mo │ ├── he-IL.mo │ ├── hi-IN.mo │ ├── index.php │ ├── it-IT.mo │ ├── ja-JP.mo │ ├── ka-GE.mo │ ├── ko-KR.mo │ ├── lv-LV.mo │ ├── nl-NL.mo │ ├── pl-PL.mo │ ├── pt-BR.mo │ ├── pt-PT.mo │ ├── ru-RU.mo │ ├── sv-SE.mo │ ├── tr-TR.mo │ ├── uk-UA.mo │ ├── vi-VN.mo │ ├── zh-CN.mo │ └── zh-TW.mo ├── README.md ├── build_gettext.sh ├── build_mo.sh ├── index.php ├── po │ ├── ar-SA.po │ ├── bg-BG.po │ ├── cacti.pot │ ├── de-DE.po │ ├── el-GR.po │ ├── es-ES.po │ ├── fr-FR.po │ ├── he-IL.po │ ├── hi-IN.po │ ├── index.php │ ├── it-IT.po │ ├── ja-JP.po │ ├── ka-GE.po │ ├── ko-KR.po │ ├── lv-LV.po │ ├── nl-NL.po │ ├── pl-PL.po │ ├── pt-BR.po │ ├── pt-PT.po │ ├── ru-RU.po │ ├── sv-SE.po │ ├── tr-TR.po │ ├── uk-UA.po │ ├── vi-VN.po │ ├── zh-CN.po │ └── zh-TW.po └── update-pot.sh ├── log ├── .htaccess └── index.php ├── logout.php ├── managers.php ├── mibs ├── .htaccess ├── CACTI-BOOST-MIB ├── CACTI-MIB ├── CACTI-SNMPAGENT-MIB └── index.php ├── oauth2.php ├── package.php ├── package_import.php ├── package_keys.php ├── package_repos.php ├── permission_denied.php ├── plugins.php ├── plugins └── index.php ├── poller.php ├── poller_automation.php ├── poller_boost.php ├── poller_commands.php ├── poller_dsstats.php ├── poller_maintenance.php ├── poller_realtime.php ├── poller_recovery.php ├── poller_reports.php ├── poller_rrdcheck.php ├── poller_spikekill.php ├── pollers.php ├── rector.php ├── remote_agent.php ├── reports.php ├── resource ├── index.php ├── script_queries │ ├── cisco_bgp.xml │ ├── host_cpu.xml │ ├── host_disk.xml │ ├── index.php │ └── unix_disk.xml ├── script_server │ ├── cpoller.xml │ ├── gexport.xml │ ├── host_cpu.xml │ ├── host_disk.xml │ ├── index.php │ └── webseer.xml └── snmp_queries │ ├── host_disk.xml │ ├── index.php │ ├── interface.xml │ ├── net-snmp_devio.xml │ └── net-snmp_disk.xml ├── rra └── .htaccess ├── rrdcheck.php ├── rrdcleaner.php ├── script_server.php ├── scripts ├── .htaccess ├── 3com_cable_modem.pl ├── aruba_instant_wlan_client.php ├── cacti_user_stats.php ├── diskfree.pl ├── diskfree.sh ├── index.php ├── linux_memory.pl ├── loadavg.pl ├── loadavg_multi.pl ├── ping.pl ├── query_baytech_circuits.php ├── query_host_cpu.php ├── query_host_partitions.php ├── query_unix_partitions.pl ├── sql.php ├── ss_count_oids.php ├── ss_cpoller.php ├── ss_fping.php ├── ss_gexport.php ├── ss_host_cpu.php ├── ss_host_disk.php ├── ss_hstats.php ├── ss_mikrotik_interfaces.php ├── ss_mikrotik_qtrees.php ├── ss_mikrotik_queues.php ├── ss_mikrotik_qusers.php ├── ss_net_snmp_disk_bytes.php ├── ss_net_snmp_disk_io.php ├── ss_netsnmp_lmsensors.php ├── ss_nimble_alletra_volumes.php ├── ss_poller.php ├── ss_sql.php ├── ss_webseer.php ├── unix_processes.pl ├── unix_tcp_connections.pl ├── unix_users.pl ├── weatherbug.pl └── webhits.pl ├── service ├── README.md ├── cactid.service └── index.php ├── service_check.php ├── settings.php ├── sites.php ├── snmpagent_mibcache.php ├── snmpagent_mibcachechild.php ├── snmpagent_persist.php ├── spikekill.php ├── src-check ├── src-fixer ├── src-lint ├── support.php ├── templates_export.php ├── templates_import.php ├── tests ├── mocdata │ └── cacti.mocdb.sql ├── standards │ └── ruleset.xml └── tools │ ├── cacti.conf │ ├── cactid.service │ ├── check_all_pages.sh │ ├── check_cli_version.sh │ ├── check_install_code.php │ ├── copyright_year.sh │ └── install_packages.sh ├── tree.php ├── user_admin.php ├── user_domains.php ├── user_group_admin.php ├── user_log.php ├── utilities.php └── vdef.php /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cacti/cacti/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cacti/cacti/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/workflows/oldissues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cacti/cacti/HEAD/.github/workflows/oldissues.yml -------------------------------------------------------------------------------- /.github/workflows/syntax.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cacti/cacti/HEAD/.github/workflows/syntax.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cacti/cacti/HEAD/.gitignore -------------------------------------------------------------------------------- /.php-cs-fixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cacti/cacti/HEAD/.php-cs-fixer.php -------------------------------------------------------------------------------- /.phplint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cacti/cacti/HEAD/.phplint.yml -------------------------------------------------------------------------------- /.phpstan-bootstrap.php: -------------------------------------------------------------------------------- 1 |