├── .babelrc ├── .devcontainer └── devcontainer.json ├── .dockerignore ├── .eslintrc.js ├── .github ├── ISSUE_TEMPLATE.md └── workflows │ ├── auto-import.yml │ ├── backup.yml │ ├── codeql-analysis.yml │ ├── deploy-staging.yml │ ├── deploy.yml │ ├── e2e.yml │ ├── linter.yml │ ├── publish.yml │ └── test.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .python-version ├── .slugignore ├── Dockerfile ├── Dockerfile-dev ├── LICENSE ├── Makefile ├── Procfile ├── README.md ├── application ├── __init__.py ├── cmd │ ├── __init__.py │ └── cre_main.py ├── config.py ├── database │ ├── __init__.py │ ├── db.py │ └── inmemory_graph.py ├── defs │ ├── __init__.py │ ├── cre_defs.py │ ├── cre_exceptions.py │ └── osib_defs.py ├── frontend │ ├── src │ │ ├── App.tsx │ │ ├── app.scss │ │ ├── components │ │ │ ├── DocumentNode │ │ │ │ ├── DocumentNode.tsx │ │ │ │ ├── documentNode.scss │ │ │ │ └── index.ts │ │ │ ├── FilterButton │ │ │ │ └── FilterButton.tsx │ │ │ └── LoadingAndErrorIndicator │ │ │ │ ├── LoadingAndErrorIndicator.tsx │ │ │ │ └── index.ts │ │ ├── const.ts │ │ ├── hooks │ │ │ ├── applyFilters.tsx │ │ │ ├── index.ts │ │ │ ├── useEnvironment.ts │ │ │ ├── useLocationFromOutsideRoute.tsx │ │ │ └── useWindowDimensions.tsx │ │ ├── index.html │ │ ├── main.tsx │ │ ├── pages │ │ │ ├── BrowseRootCres │ │ │ │ ├── browseRootCres.scss │ │ │ │ └── browseRootCres.tsx │ │ │ ├── CommonRequirementEnumeration │ │ │ │ ├── CommonRequirementEnumeration.tsx │ │ │ │ └── commonRequirementEnumeration.scss │ │ │ ├── Explorer │ │ │ │ ├── LinkedStandards.scss │ │ │ │ ├── LinkedStandards.tsx │ │ │ │ ├── explorer.scss │ │ │ │ ├── explorer.tsx │ │ │ │ └── visuals │ │ │ │ │ ├── circles │ │ │ │ │ ├── circles.scss │ │ │ │ │ └── circles.tsx │ │ │ │ │ └── force-graph │ │ │ │ │ ├── forceGraph.scss │ │ │ │ │ └── forceGraph.tsx │ │ │ ├── GapAnalysis │ │ │ │ ├── GapAnalysis.scss │ │ │ │ └── GapAnalysis.tsx │ │ │ ├── Graph │ │ │ │ └── Graph.tsx │ │ │ ├── MembershipRequired │ │ │ │ ├── MembershipRequired.scss │ │ │ │ └── MembershipRequired.tsx │ │ │ ├── Search │ │ │ │ ├── Search.tsx │ │ │ │ ├── SearchName.tsx │ │ │ │ ├── components │ │ │ │ │ ├── BodyText.scss │ │ │ │ │ ├── BodyText.tsx │ │ │ │ │ ├── SearchBar.scss │ │ │ │ │ ├── SearchBar.tsx │ │ │ │ │ └── SearchResults.tsx │ │ │ │ └── search.scss │ │ │ ├── Standard │ │ │ │ ├── Standard.tsx │ │ │ │ ├── StandardSection.tsx │ │ │ │ └── standard.scss │ │ │ ├── chatbot │ │ │ │ ├── chatbot.scss │ │ │ │ └── chatbot.tsx │ │ │ └── index.ts │ │ ├── providers │ │ │ └── DataProvider.tsx │ │ ├── routes.tsx │ │ ├── scaffolding │ │ │ ├── Header │ │ │ │ ├── Header.tsx │ │ │ │ └── header.scss │ │ │ ├── MainContentArea │ │ │ │ └── MainContentArea.tsx │ │ │ ├── NoRoute │ │ │ │ ├── NoRoute.tsx │ │ │ │ └── noRoute.scss │ │ │ ├── Router │ │ │ │ └── Router.tsx │ │ │ └── index.ts │ │ ├── test │ │ │ └── basic-e2e.test.ts │ │ ├── types.ts │ │ └── utils │ │ │ ├── document.ts │ │ │ └── index.ts │ └── www │ │ ├── PRIVACY_POLICY.txt │ │ ├── logo2.svg │ │ ├── logo_dark_nobyline.svg │ │ ├── opencregraphic2.png │ │ └── tn_opencregraphic2.jpg ├── prompt_client │ ├── openai_prompt_client.py │ ├── prompt_client.py │ └── vertex_prompt_client.py ├── static │ └── assets │ │ ├── PRIVACY_POLICY.txt │ │ ├── css │ │ └── pixel.css │ │ ├── js │ │ ├── pixel.js │ │ ├── routing.js │ │ └── yaml.min.js │ │ ├── scss │ │ ├── bootstrap │ │ │ ├── _alert.scss │ │ │ ├── _badge.scss │ │ │ ├── _breadcrumb.scss │ │ │ ├── _button-group.scss │ │ │ ├── _buttons.scss │ │ │ ├── _card.scss │ │ │ ├── _carousel.scss │ │ │ ├── _close.scss │ │ │ ├── _code.scss │ │ │ ├── _custom-forms.scss │ │ │ ├── _dropdown.scss │ │ │ ├── _forms.scss │ │ │ ├── _functions.scss │ │ │ ├── _grid.scss │ │ │ ├── _images.scss │ │ │ ├── _input-group.scss │ │ │ ├── _jumbotron.scss │ │ │ ├── _list-group.scss │ │ │ ├── _media.scss │ │ │ ├── _mixins.scss │ │ │ ├── _modal.scss │ │ │ ├── _nav.scss │ │ │ ├── _navbar.scss │ │ │ ├── _pagination.scss │ │ │ ├── _popover.scss │ │ │ ├── _print.scss │ │ │ ├── _progress.scss │ │ │ ├── _reboot.scss │ │ │ ├── _root.scss │ │ │ ├── _spinners.scss │ │ │ ├── _tables.scss │ │ │ ├── _toasts.scss │ │ │ ├── _tooltip.scss │ │ │ ├── _transitions.scss │ │ │ ├── _type.scss │ │ │ ├── _utilities.scss │ │ │ ├── _variables.scss │ │ │ ├── bootstrap-grid.scss │ │ │ ├── bootstrap-reboot.scss │ │ │ ├── bootstrap.scss │ │ │ ├── mixins │ │ │ │ ├── _alert.scss │ │ │ │ ├── _background-variant.scss │ │ │ │ ├── _badge.scss │ │ │ │ ├── _border-radius.scss │ │ │ │ ├── _box-shadow.scss │ │ │ │ ├── _breakpoints.scss │ │ │ │ ├── _buttons.scss │ │ │ │ ├── _caret.scss │ │ │ │ ├── _clearfix.scss │ │ │ │ ├── _deprecate.scss │ │ │ │ ├── _float.scss │ │ │ │ ├── _forms.scss │ │ │ │ ├── _gradients.scss │ │ │ │ ├── _grid-framework.scss │ │ │ │ ├── _grid.scss │ │ │ │ ├── _hover.scss │ │ │ │ ├── _image.scss │ │ │ │ ├── _list-group.scss │ │ │ │ ├── _lists.scss │ │ │ │ ├── _nav-divider.scss │ │ │ │ ├── _pagination.scss │ │ │ │ ├── _reset-text.scss │ │ │ │ ├── _resize.scss │ │ │ │ ├── _screen-reader.scss │ │ │ │ ├── _size.scss │ │ │ │ ├── _table-row.scss │ │ │ │ ├── _text-emphasis.scss │ │ │ │ ├── _text-hide.scss │ │ │ │ ├── _text-truncate.scss │ │ │ │ ├── _transition.scss │ │ │ │ └── _visibility.scss │ │ │ ├── utilities │ │ │ │ ├── _align.scss │ │ │ │ ├── _background.scss │ │ │ │ ├── _borders.scss │ │ │ │ ├── _clearfix.scss │ │ │ │ ├── _display.scss │ │ │ │ ├── _embed.scss │ │ │ │ ├── _flex.scss │ │ │ │ ├── _float.scss │ │ │ │ ├── _overflow.scss │ │ │ │ ├── _position.scss │ │ │ │ ├── _screenreaders.scss │ │ │ │ ├── _shadows.scss │ │ │ │ ├── _sizing.scss │ │ │ │ ├── _spacing.scss │ │ │ │ ├── _stretched-link.scss │ │ │ │ ├── _text.scss │ │ │ │ └── _visibility.scss │ │ │ └── vendor │ │ │ │ └── _rfs.scss │ │ ├── pixel.scss │ │ └── pixel │ │ │ ├── _components.scss │ │ │ ├── _functions.scss │ │ │ ├── _layout.scss │ │ │ ├── _mixins.scss │ │ │ ├── _reboot.scss │ │ │ ├── _utilities.scss │ │ │ ├── _variables.scss │ │ │ ├── _vendor.scss │ │ │ ├── components │ │ │ ├── _accordions.scss │ │ │ ├── _alerts.scss │ │ │ ├── _avatars.scss │ │ │ ├── _badge.scss │ │ │ ├── _breadcrumb.scss │ │ │ ├── _buttons.scss │ │ │ ├── _card.scss │ │ │ ├── _carousel.scss │ │ │ ├── _close.scss │ │ │ ├── _components.scss │ │ │ ├── _counters.scss │ │ │ ├── _custom-forms.scss │ │ │ ├── _datepicker.scss │ │ │ ├── _dropdown.scss │ │ │ ├── _forms.scss │ │ │ ├── _icons.scss │ │ │ ├── _images.scss │ │ │ ├── _input-group.scss │ │ │ ├── _list-group.scss │ │ │ ├── _maps.scss │ │ │ ├── _modal.scss │ │ │ ├── _nav.scss │ │ │ ├── _pagination.scss │ │ │ ├── _popover.scss │ │ │ ├── _preloader.scss │ │ │ ├── _progress.scss │ │ │ ├── _shapes.scss │ │ │ ├── _tooltip.scss │ │ │ └── _type.scss │ │ │ ├── layout │ │ │ ├── _footer.scss │ │ │ ├── _navbar.scss │ │ │ ├── _section.scss │ │ │ └── _sidebar.scss │ │ │ ├── mixins │ │ │ ├── _alert.scss │ │ │ ├── _animations.scss │ │ │ ├── _background-variant.scss │ │ │ ├── _buttons.scss │ │ │ ├── _forms.scss │ │ │ ├── _icon.scss │ │ │ ├── _modals.scss │ │ │ ├── _popover.scss │ │ │ ├── _transform.scss │ │ │ └── _utilities.scss │ │ │ ├── utilities │ │ │ ├── _animations.scss │ │ │ ├── _backgrounds.scss │ │ │ ├── _floating.scss │ │ │ ├── _helper.scss │ │ │ ├── _position.scss │ │ │ ├── _shadows.scss │ │ │ ├── _sizing.scss │ │ │ ├── _spacing.scss │ │ │ ├── _text.scss │ │ │ └── _transform.scss │ │ │ └── vendor │ │ │ ├── _bootstrap-datepicker.scss │ │ │ ├── _bootstrap-tagsinput.scss │ │ │ ├── _headroom.scss │ │ │ └── _nouislider.scss │ │ └── vendor │ │ ├── @fortawesome │ │ └── fontawesome-free │ │ │ ├── LICENSE.txt │ │ │ ├── css │ │ │ ├── all.min.css │ │ │ ├── brands.min.css │ │ │ ├── fontawesome.min.css │ │ │ ├── regular.min.css │ │ │ ├── solid.min.css │ │ │ ├── svg-with-js.min.css │ │ │ └── v4-shims.min.css │ │ │ ├── js │ │ │ ├── all.min.js │ │ │ ├── brands.min.js │ │ │ ├── conflict-detection.min.js │ │ │ ├── fontawesome.min.js │ │ │ ├── regular.min.js │ │ │ ├── solid.min.js │ │ │ └── v4-shims.min.js │ │ │ ├── sprites │ │ │ ├── brands.svg │ │ │ ├── regular.svg │ │ │ └── solid.svg │ │ │ ├── svgs │ │ │ ├── brands │ │ │ │ ├── 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 │ │ │ │ ├── bimobject.svg │ │ │ │ ├── bitbucket.svg │ │ │ │ ├── bitcoin.svg │ │ │ │ ├── bity.svg │ │ │ │ ├── black-tie.svg │ │ │ │ ├── blackberry.svg │ │ │ │ ├── blogger-b.svg │ │ │ │ ├── blogger.svg │ │ │ │ ├── bluetooth-b.svg │ │ │ │ ├── bluetooth.svg │ │ │ │ ├── bootstrap.svg │ │ │ │ ├── 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 │ │ │ │ ├── cloudscale.svg │ │ │ │ ├── cloudsmith.svg │ │ │ │ ├── cloudversify.svg │ │ │ │ ├── codepen.svg │ │ │ │ ├── codiepie.svg │ │ │ │ ├── confluence.svg │ │ │ │ ├── connectdevelop.svg │ │ │ │ ├── contao.svg │ │ │ │ ├── cotton-bureau.svg │ │ │ │ ├── cpanel.svg │ │ │ │ ├── creative-commons-by.svg │ │ │ │ ├── creative-commons-nc-eu.svg │ │ │ │ ├── creative-commons-nc-jp.svg │ │ │ │ ├── creative-commons-nc.svg │ │ │ │ ├── creative-commons-nd.svg │ │ │ │ ├── creative-commons-pd-alt.svg │ │ │ │ ├── creative-commons-pd.svg │ │ │ │ ├── creative-commons-remix.svg │ │ │ │ ├── creative-commons-sa.svg │ │ │ │ ├── creative-commons-sampling-plus.svg │ │ │ │ ├── creative-commons-sampling.svg │ │ │ │ ├── creative-commons-share.svg │ │ │ │ ├── creative-commons-zero.svg │ │ │ │ ├── creative-commons.svg │ │ │ │ ├── critical-role.svg │ │ │ │ ├── css3-alt.svg │ │ │ │ ├── css3.svg │ │ │ │ ├── cuttlefish.svg │ │ │ │ ├── d-and-d-beyond.svg │ │ │ │ ├── d-and-d.svg │ │ │ │ ├── dashcube.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.svg │ │ │ │ ├── elementor.svg │ │ │ │ ├── ello.svg │ │ │ │ ├── ember.svg │ │ │ │ ├── empire.svg │ │ │ │ ├── envira.svg │ │ │ │ ├── erlang.svg │ │ │ │ ├── ethereum.svg │ │ │ │ ├── etsy.svg │ │ │ │ ├── evernote.svg │ │ │ │ ├── expeditedssl.svg │ │ │ │ ├── facebook-f.svg │ │ │ │ ├── facebook-messenger.svg │ │ │ │ ├── facebook-square.svg │ │ │ │ ├── facebook.svg │ │ │ │ ├── fantasy-flight-games.svg │ │ │ │ ├── fedex.svg │ │ │ │ ├── fedora.svg │ │ │ │ ├── figma.svg │ │ │ │ ├── firefox.svg │ │ │ │ ├── first-order-alt.svg │ │ │ │ ├── first-order.svg │ │ │ │ ├── firstdraft.svg │ │ │ │ ├── flickr.svg │ │ │ │ ├── flipboard.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 │ │ │ │ ├── goodreads-g.svg │ │ │ │ ├── goodreads.svg │ │ │ │ ├── google-drive.svg │ │ │ │ ├── google-play.svg │ │ │ │ ├── google-plus-g.svg │ │ │ │ ├── google-plus-square.svg │ │ │ │ ├── google-plus.svg │ │ │ │ ├── google-wallet.svg │ │ │ │ ├── google.svg │ │ │ │ ├── gratipay.svg │ │ │ │ ├── grav.svg │ │ │ │ ├── gripfire.svg │ │ │ │ ├── grunt.svg │ │ │ │ ├── gulp.svg │ │ │ │ ├── hacker-news-square.svg │ │ │ │ ├── hacker-news.svg │ │ │ │ ├── hackerrank.svg │ │ │ │ ├── hips.svg │ │ │ │ ├── hire-a-helper.svg │ │ │ │ ├── hooli.svg │ │ │ │ ├── hornbill.svg │ │ │ │ ├── hotjar.svg │ │ │ │ ├── houzz.svg │ │ │ │ ├── html5.svg │ │ │ │ ├── hubspot.svg │ │ │ │ ├── imdb.svg │ │ │ │ ├── instagram.svg │ │ │ │ ├── intercom.svg │ │ │ │ ├── internet-explorer.svg │ │ │ │ ├── invision.svg │ │ │ │ ├── ioxhost.svg │ │ │ │ ├── itch-io.svg │ │ │ │ ├── itunes-note.svg │ │ │ │ ├── itunes.svg │ │ │ │ ├── java.svg │ │ │ │ ├── jedi-order.svg │ │ │ │ ├── jenkins.svg │ │ │ │ ├── jira.svg │ │ │ │ ├── joget.svg │ │ │ │ ├── joomla.svg │ │ │ │ ├── js-square.svg │ │ │ │ ├── js.svg │ │ │ │ ├── jsfiddle.svg │ │ │ │ ├── kaggle.svg │ │ │ │ ├── keybase.svg │ │ │ │ ├── keycdn.svg │ │ │ │ ├── kickstarter-k.svg │ │ │ │ ├── kickstarter.svg │ │ │ │ ├── korvue.svg │ │ │ │ ├── laravel.svg │ │ │ │ ├── lastfm-square.svg │ │ │ │ ├── lastfm.svg │ │ │ │ ├── leanpub.svg │ │ │ │ ├── less.svg │ │ │ │ ├── line.svg │ │ │ │ ├── linkedin-in.svg │ │ │ │ ├── linkedin.svg │ │ │ │ ├── linode.svg │ │ │ │ ├── linux.svg │ │ │ │ ├── lyft.svg │ │ │ │ ├── magento.svg │ │ │ │ ├── mailchimp.svg │ │ │ │ ├── mandalorian.svg │ │ │ │ ├── markdown.svg │ │ │ │ ├── mastodon.svg │ │ │ │ ├── maxcdn.svg │ │ │ │ ├── mdb.svg │ │ │ │ ├── medapps.svg │ │ │ │ ├── medium-m.svg │ │ │ │ ├── medium.svg │ │ │ │ ├── medrt.svg │ │ │ │ ├── meetup.svg │ │ │ │ ├── megaport.svg │ │ │ │ ├── mendeley.svg │ │ │ │ ├── microsoft.svg │ │ │ │ ├── mix.svg │ │ │ │ ├── mixcloud.svg │ │ │ │ ├── mizuni.svg │ │ │ │ ├── modx.svg │ │ │ │ ├── monero.svg │ │ │ │ ├── napster.svg │ │ │ │ ├── neos.svg │ │ │ │ ├── nimblr.svg │ │ │ │ ├── node-js.svg │ │ │ │ ├── node.svg │ │ │ │ ├── npm.svg │ │ │ │ ├── ns8.svg │ │ │ │ ├── nutritionix.svg │ │ │ │ ├── odnoklassniki-square.svg │ │ │ │ ├── odnoklassniki.svg │ │ │ │ ├── old-republic.svg │ │ │ │ ├── opencart.svg │ │ │ │ ├── openid.svg │ │ │ │ ├── opera.svg │ │ │ │ ├── optin-monster.svg │ │ │ │ ├── orcid.svg │ │ │ │ ├── osi.svg │ │ │ │ ├── page4.svg │ │ │ │ ├── pagelines.svg │ │ │ │ ├── palfed.svg │ │ │ │ ├── patreon.svg │ │ │ │ ├── paypal.svg │ │ │ │ ├── penny-arcade.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.svg │ │ │ │ ├── pinterest-p.svg │ │ │ │ ├── pinterest-square.svg │ │ │ │ ├── pinterest.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 │ │ │ │ ├── safari.svg │ │ │ │ ├── salesforce.svg │ │ │ │ ├── sass.svg │ │ │ │ ├── schlix.svg │ │ │ │ ├── scribd.svg │ │ │ │ ├── searchengin.svg │ │ │ │ ├── sellcast.svg │ │ │ │ ├── sellsy.svg │ │ │ │ ├── servicestack.svg │ │ │ │ ├── shirtsinbulk.svg │ │ │ │ ├── shopware.svg │ │ │ │ ├── simplybuilt.svg │ │ │ │ ├── sistrix.svg │ │ │ │ ├── sith.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 │ │ │ │ ├── speakap.svg │ │ │ │ ├── speaker-deck.svg │ │ │ │ ├── spotify.svg │ │ │ │ ├── squarespace.svg │ │ │ │ ├── stack-exchange.svg │ │ │ │ ├── stack-overflow.svg │ │ │ │ ├── stackpath.svg │ │ │ │ ├── staylinked.svg │ │ │ │ ├── steam-square.svg │ │ │ │ ├── steam-symbol.svg │ │ │ │ ├── steam.svg │ │ │ │ ├── sticker-mule.svg │ │ │ │ ├── strava.svg │ │ │ │ ├── stripe-s.svg │ │ │ │ ├── stripe.svg │ │ │ │ ├── studiovinari.svg │ │ │ │ ├── stumbleupon-circle.svg │ │ │ │ ├── stumbleupon.svg │ │ │ │ ├── superpowers.svg │ │ │ │ ├── supple.svg │ │ │ │ ├── suse.svg │ │ │ │ ├── swift.svg │ │ │ │ ├── symfony.svg │ │ │ │ ├── teamspeak.svg │ │ │ │ ├── telegram-plane.svg │ │ │ │ ├── telegram.svg │ │ │ │ ├── tencent-weibo.svg │ │ │ │ ├── the-red-yeti.svg │ │ │ │ ├── themeco.svg │ │ │ │ ├── themeisle.svg │ │ │ │ ├── think-peaks.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 │ │ │ │ ├── uniregistry.svg │ │ │ │ ├── untappd.svg │ │ │ │ ├── ups.svg │ │ │ │ ├── usb.svg │ │ │ │ ├── usps.svg │ │ │ │ ├── ussunnah.svg │ │ │ │ ├── vaadin.svg │ │ │ │ ├── viacoin.svg │ │ │ │ ├── viadeo-square.svg │ │ │ │ ├── viadeo.svg │ │ │ │ ├── viber.svg │ │ │ │ ├── vimeo-square.svg │ │ │ │ ├── vimeo-v.svg │ │ │ │ ├── vimeo.svg │ │ │ │ ├── vine.svg │ │ │ │ ├── vk.svg │ │ │ │ ├── vnv.svg │ │ │ │ ├── vuejs.svg │ │ │ │ ├── waze.svg │ │ │ │ ├── weebly.svg │ │ │ │ ├── weibo.svg │ │ │ │ ├── weixin.svg │ │ │ │ ├── whatsapp-square.svg │ │ │ │ ├── whatsapp.svg │ │ │ │ ├── whmcs.svg │ │ │ │ ├── wikipedia-w.svg │ │ │ │ ├── windows.svg │ │ │ │ ├── wix.svg │ │ │ │ ├── wizards-of-the-coast.svg │ │ │ │ ├── wolf-pack-battalion.svg │ │ │ │ ├── wordpress-simple.svg │ │ │ │ ├── wordpress.svg │ │ │ │ ├── wpbeginner.svg │ │ │ │ ├── wpexplorer.svg │ │ │ │ ├── wpforms.svg │ │ │ │ ├── wpressr.svg │ │ │ │ ├── xbox.svg │ │ │ │ ├── xing-square.svg │ │ │ │ ├── xing.svg │ │ │ │ ├── y-combinator.svg │ │ │ │ ├── yahoo.svg │ │ │ │ ├── yammer.svg │ │ │ │ ├── yandex-international.svg │ │ │ │ ├── yandex.svg │ │ │ │ ├── yarn.svg │ │ │ │ ├── yelp.svg │ │ │ │ ├── yoast.svg │ │ │ │ ├── youtube-square.svg │ │ │ │ ├── youtube.svg │ │ │ │ └── zhihu.svg │ │ │ ├── regular │ │ │ │ ├── address-book.svg │ │ │ │ ├── address-card.svg │ │ │ │ ├── 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-minus.svg │ │ │ │ ├── calendar-plus.svg │ │ │ │ ├── calendar-times.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 │ │ │ │ ├── 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 │ │ │ │ ├── file-alt.svg │ │ │ │ ├── file-archive.svg │ │ │ │ ├── file-audio.svg │ │ │ │ ├── file-code.svg │ │ │ │ ├── file-excel.svg │ │ │ │ ├── file-image.svg │ │ │ │ ├── file-pdf.svg │ │ │ │ ├── file-powerpoint.svg │ │ │ │ ├── file-video.svg │ │ │ │ ├── file-word.svg │ │ │ │ ├── file.svg │ │ │ │ ├── flag.svg │ │ │ │ ├── flushed.svg │ │ │ │ ├── folder-open.svg │ │ │ │ ├── folder.svg │ │ │ │ ├── font-awesome-logo-full.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-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 │ │ │ │ ├── handshake.svg │ │ │ │ ├── hdd.svg │ │ │ │ ├── heart.svg │ │ │ │ ├── hospital.svg │ │ │ │ ├── hourglass.svg │ │ │ │ ├── id-badge.svg │ │ │ │ ├── id-card.svg │ │ │ │ ├── image.svg │ │ │ │ ├── images.svg │ │ │ │ ├── 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 │ │ │ │ ├── minus-square.svg │ │ │ │ ├── money-bill-alt.svg │ │ │ │ ├── moon.svg │ │ │ │ ├── newspaper.svg │ │ │ │ ├── object-group.svg │ │ │ │ ├── object-ungroup.svg │ │ │ │ ├── paper-plane.svg │ │ │ │ ├── pause-circle.svg │ │ │ │ ├── play-circle.svg │ │ │ │ ├── plus-square.svg │ │ │ │ ├── question-circle.svg │ │ │ │ ├── registered.svg │ │ │ │ ├── sad-cry.svg │ │ │ │ ├── sad-tear.svg │ │ │ │ ├── save.svg │ │ │ │ ├── share-square.svg │ │ │ │ ├── smile-beam.svg │ │ │ │ ├── smile-wink.svg │ │ │ │ ├── smile.svg │ │ │ │ ├── snowflake.svg │ │ │ │ ├── square.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 │ │ │ │ ├── user-circle.svg │ │ │ │ ├── user.svg │ │ │ │ ├── window-close.svg │ │ │ │ ├── window-maximize.svg │ │ │ │ ├── window-minimize.svg │ │ │ │ └── window-restore.svg │ │ │ └── solid │ │ │ │ ├── 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.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 │ │ │ │ ├── angry.svg │ │ │ │ ├── ankh.svg │ │ │ │ ├── apple-alt.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.svg │ │ │ │ ├── arrow-left.svg │ │ │ │ ├── arrow-right.svg │ │ │ │ ├── arrow-up.svg │ │ │ │ ├── arrows-alt-h.svg │ │ │ │ ├── arrows-alt-v.svg │ │ │ │ ├── arrows-alt.svg │ │ │ │ ├── assistive-listening-systems.svg │ │ │ │ ├── asterisk.svg │ │ │ │ ├── at.svg │ │ │ │ ├── atlas.svg │ │ │ │ ├── atom.svg │ │ │ │ ├── audio-description.svg │ │ │ │ ├── award.svg │ │ │ │ ├── baby-carriage.svg │ │ │ │ ├── baby.svg │ │ │ │ ├── backspace.svg │ │ │ │ ├── backward.svg │ │ │ │ ├── bacon.svg │ │ │ │ ├── balance-scale-left.svg │ │ │ │ ├── balance-scale-right.svg │ │ │ │ ├── balance-scale.svg │ │ │ │ ├── ban.svg │ │ │ │ ├── band-aid.svg │ │ │ │ ├── barcode.svg │ │ │ │ ├── bars.svg │ │ │ │ ├── baseball-ball.svg │ │ │ │ ├── basketball-ball.svg │ │ │ │ ├── bath.svg │ │ │ │ ├── battery-empty.svg │ │ │ │ ├── battery-full.svg │ │ │ │ ├── battery-half.svg │ │ │ │ ├── battery-quarter.svg │ │ │ │ ├── battery-three-quarters.svg │ │ │ │ ├── bed.svg │ │ │ │ ├── beer.svg │ │ │ │ ├── bell-slash.svg │ │ │ │ ├── bell.svg │ │ │ │ ├── bezier-curve.svg │ │ │ │ ├── bible.svg │ │ │ │ ├── bicycle.svg │ │ │ │ ├── biking.svg │ │ │ │ ├── binoculars.svg │ │ │ │ ├── biohazard.svg │ │ │ │ ├── birthday-cake.svg │ │ │ │ ├── blender-phone.svg │ │ │ │ ├── blender.svg │ │ │ │ ├── blind.svg │ │ │ │ ├── blog.svg │ │ │ │ ├── bold.svg │ │ │ │ ├── bolt.svg │ │ │ │ ├── bomb.svg │ │ │ │ ├── bone.svg │ │ │ │ ├── bong.svg │ │ │ │ ├── book-dead.svg │ │ │ │ ├── book-medical.svg │ │ │ │ ├── book-open.svg │ │ │ │ ├── book-reader.svg │ │ │ │ ├── book.svg │ │ │ │ ├── bookmark.svg │ │ │ │ ├── border-all.svg │ │ │ │ ├── border-none.svg │ │ │ │ ├── border-style.svg │ │ │ │ ├── bowling-ball.svg │ │ │ │ ├── box-open.svg │ │ │ │ ├── box.svg │ │ │ │ ├── boxes.svg │ │ │ │ ├── braille.svg │ │ │ │ ├── brain.svg │ │ │ │ ├── bread-slice.svg │ │ │ │ ├── briefcase-medical.svg │ │ │ │ ├── briefcase.svg │ │ │ │ ├── broadcast-tower.svg │ │ │ │ ├── broom.svg │ │ │ │ ├── brush.svg │ │ │ │ ├── bug.svg │ │ │ │ ├── building.svg │ │ │ │ ├── bullhorn.svg │ │ │ │ ├── bullseye.svg │ │ │ │ ├── burn.svg │ │ │ │ ├── bus-alt.svg │ │ │ │ ├── bus.svg │ │ │ │ ├── business-time.svg │ │ │ │ ├── calculator.svg │ │ │ │ ├── calendar-alt.svg │ │ │ │ ├── calendar-check.svg │ │ │ │ ├── calendar-day.svg │ │ │ │ ├── calendar-minus.svg │ │ │ │ ├── calendar-plus.svg │ │ │ │ ├── calendar-times.svg │ │ │ │ ├── calendar-week.svg │ │ │ │ ├── calendar.svg │ │ │ │ ├── camera-retro.svg │ │ │ │ ├── camera.svg │ │ │ │ ├── campground.svg │ │ │ │ ├── candy-cane.svg │ │ │ │ ├── cannabis.svg │ │ │ │ ├── capsules.svg │ │ │ │ ├── car-alt.svg │ │ │ │ ├── car-battery.svg │ │ │ │ ├── car-crash.svg │ │ │ │ ├── car-side.svg │ │ │ │ ├── car.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-plus.svg │ │ │ │ ├── cash-register.svg │ │ │ │ ├── cat.svg │ │ │ │ ├── certificate.svg │ │ │ │ ├── chair.svg │ │ │ │ ├── chalkboard-teacher.svg │ │ │ │ ├── chalkboard.svg │ │ │ │ ├── charging-station.svg │ │ │ │ ├── chart-area.svg │ │ │ │ ├── chart-bar.svg │ │ │ │ ├── chart-line.svg │ │ │ │ ├── chart-pie.svg │ │ │ │ ├── check-circle.svg │ │ │ │ ├── check-double.svg │ │ │ │ ├── check-square.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.svg │ │ │ │ ├── church.svg │ │ │ │ ├── circle-notch.svg │ │ │ │ ├── circle.svg │ │ │ │ ├── city.svg │ │ │ │ ├── clinic-medical.svg │ │ │ │ ├── clipboard-check.svg │ │ │ │ ├── clipboard-list.svg │ │ │ │ ├── clipboard.svg │ │ │ │ ├── clock.svg │ │ │ │ ├── clone.svg │ │ │ │ ├── closed-captioning.svg │ │ │ │ ├── cloud-download-alt.svg │ │ │ │ ├── cloud-meatball.svg │ │ │ │ ├── cloud-moon-rain.svg │ │ │ │ ├── cloud-moon.svg │ │ │ │ ├── cloud-rain.svg │ │ │ │ ├── cloud-showers-heavy.svg │ │ │ │ ├── cloud-sun-rain.svg │ │ │ │ ├── cloud-sun.svg │ │ │ │ ├── cloud-upload-alt.svg │ │ │ │ ├── cloud.svg │ │ │ │ ├── cocktail.svg │ │ │ │ ├── code-branch.svg │ │ │ │ ├── code.svg │ │ │ │ ├── coffee.svg │ │ │ │ ├── cog.svg │ │ │ │ ├── cogs.svg │ │ │ │ ├── coins.svg │ │ │ │ ├── columns.svg │ │ │ │ ├── comment-alt.svg │ │ │ │ ├── comment-dollar.svg │ │ │ │ ├── comment-dots.svg │ │ │ │ ├── comment-medical.svg │ │ │ │ ├── comment-slash.svg │ │ │ │ ├── comment.svg │ │ │ │ ├── comments-dollar.svg │ │ │ │ ├── comments.svg │ │ │ │ ├── compact-disc.svg │ │ │ │ ├── compass.svg │ │ │ │ ├── compress-arrows-alt.svg │ │ │ │ ├── compress.svg │ │ │ │ ├── concierge-bell.svg │ │ │ │ ├── cookie-bite.svg │ │ │ │ ├── cookie.svg │ │ │ │ ├── copy.svg │ │ │ │ ├── copyright.svg │ │ │ │ ├── couch.svg │ │ │ │ ├── credit-card.svg │ │ │ │ ├── crop-alt.svg │ │ │ │ ├── crop.svg │ │ │ │ ├── cross.svg │ │ │ │ ├── crosshairs.svg │ │ │ │ ├── crow.svg │ │ │ │ ├── crown.svg │ │ │ │ ├── crutch.svg │ │ │ │ ├── cube.svg │ │ │ │ ├── cubes.svg │ │ │ │ ├── cut.svg │ │ │ │ ├── database.svg │ │ │ │ ├── deaf.svg │ │ │ │ ├── democrat.svg │ │ │ │ ├── desktop.svg │ │ │ │ ├── dharmachakra.svg │ │ │ │ ├── diagnoses.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 │ │ │ │ ├── divide.svg │ │ │ │ ├── dizzy.svg │ │ │ │ ├── dna.svg │ │ │ │ ├── dog.svg │ │ │ │ ├── dollar-sign.svg │ │ │ │ ├── dolly-flatbed.svg │ │ │ │ ├── dolly.svg │ │ │ │ ├── donate.svg │ │ │ │ ├── door-closed.svg │ │ │ │ ├── door-open.svg │ │ │ │ ├── dot-circle.svg │ │ │ │ ├── dove.svg │ │ │ │ ├── download.svg │ │ │ │ ├── drafting-compass.svg │ │ │ │ ├── dragon.svg │ │ │ │ ├── draw-polygon.svg │ │ │ │ ├── drum-steelpan.svg │ │ │ │ ├── drum.svg │ │ │ │ ├── drumstick-bite.svg │ │ │ │ ├── dumbbell.svg │ │ │ │ ├── dumpster-fire.svg │ │ │ │ ├── dumpster.svg │ │ │ │ ├── dungeon.svg │ │ │ │ ├── edit.svg │ │ │ │ ├── egg.svg │ │ │ │ ├── eject.svg │ │ │ │ ├── ellipsis-h.svg │ │ │ │ ├── ellipsis-v.svg │ │ │ │ ├── envelope-open-text.svg │ │ │ │ ├── envelope-open.svg │ │ │ │ ├── envelope-square.svg │ │ │ │ ├── envelope.svg │ │ │ │ ├── equals.svg │ │ │ │ ├── eraser.svg │ │ │ │ ├── ethernet.svg │ │ │ │ ├── euro-sign.svg │ │ │ │ ├── exchange-alt.svg │ │ │ │ ├── exclamation-circle.svg │ │ │ │ ├── exclamation-triangle.svg │ │ │ │ ├── exclamation.svg │ │ │ │ ├── expand-arrows-alt.svg │ │ │ │ ├── expand.svg │ │ │ │ ├── external-link-alt.svg │ │ │ │ ├── external-link-square-alt.svg │ │ │ │ ├── eye-dropper.svg │ │ │ │ ├── eye-slash.svg │ │ │ │ ├── eye.svg │ │ │ │ ├── fan.svg │ │ │ │ ├── fast-backward.svg │ │ │ │ ├── fast-forward.svg │ │ │ │ ├── fax.svg │ │ │ │ ├── feather-alt.svg │ │ │ │ ├── feather.svg │ │ │ │ ├── female.svg │ │ │ │ ├── fighter-jet.svg │ │ │ │ ├── file-alt.svg │ │ │ │ ├── file-archive.svg │ │ │ │ ├── file-audio.svg │ │ │ │ ├── file-code.svg │ │ │ │ ├── file-contract.svg │ │ │ │ ├── file-csv.svg │ │ │ │ ├── file-download.svg │ │ │ │ ├── file-excel.svg │ │ │ │ ├── file-export.svg │ │ │ │ ├── file-image.svg │ │ │ │ ├── file-import.svg │ │ │ │ ├── file-invoice-dollar.svg │ │ │ │ ├── file-invoice.svg │ │ │ │ ├── file-medical-alt.svg │ │ │ │ ├── file-medical.svg │ │ │ │ ├── file-pdf.svg │ │ │ │ ├── file-powerpoint.svg │ │ │ │ ├── file-prescription.svg │ │ │ │ ├── file-signature.svg │ │ │ │ ├── file-upload.svg │ │ │ │ ├── file-video.svg │ │ │ │ ├── file-word.svg │ │ │ │ ├── file.svg │ │ │ │ ├── fill-drip.svg │ │ │ │ ├── fill.svg │ │ │ │ ├── film.svg │ │ │ │ ├── filter.svg │ │ │ │ ├── fingerprint.svg │ │ │ │ ├── fire-alt.svg │ │ │ │ ├── fire-extinguisher.svg │ │ │ │ ├── fire.svg │ │ │ │ ├── first-aid.svg │ │ │ │ ├── fish.svg │ │ │ │ ├── fist-raised.svg │ │ │ │ ├── flag-checkered.svg │ │ │ │ ├── flag-usa.svg │ │ │ │ ├── flag.svg │ │ │ │ ├── flask.svg │ │ │ │ ├── flushed.svg │ │ │ │ ├── folder-minus.svg │ │ │ │ ├── folder-open.svg │ │ │ │ ├── folder-plus.svg │ │ │ │ ├── folder.svg │ │ │ │ ├── font-awesome-logo-full.svg │ │ │ │ ├── font.svg │ │ │ │ ├── football-ball.svg │ │ │ │ ├── forward.svg │ │ │ │ ├── frog.svg │ │ │ │ ├── frown-open.svg │ │ │ │ ├── frown.svg │ │ │ │ ├── funnel-dollar.svg │ │ │ │ ├── futbol.svg │ │ │ │ ├── gamepad.svg │ │ │ │ ├── gas-pump.svg │ │ │ │ ├── gavel.svg │ │ │ │ ├── gem.svg │ │ │ │ ├── genderless.svg │ │ │ │ ├── ghost.svg │ │ │ │ ├── gift.svg │ │ │ │ ├── gifts.svg │ │ │ │ ├── glass-cheers.svg │ │ │ │ ├── glass-martini-alt.svg │ │ │ │ ├── glass-martini.svg │ │ │ │ ├── glass-whiskey.svg │ │ │ │ ├── glasses.svg │ │ │ │ ├── globe-africa.svg │ │ │ │ ├── globe-americas.svg │ │ │ │ ├── globe-asia.svg │ │ │ │ ├── globe-europe.svg │ │ │ │ ├── globe.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 │ │ │ │ ├── guitar.svg │ │ │ │ ├── h-square.svg │ │ │ │ ├── hamburger.svg │ │ │ │ ├── hammer.svg │ │ │ │ ├── hamsa.svg │ │ │ │ ├── hand-holding-heart.svg │ │ │ │ ├── hand-holding-usd.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-spock.svg │ │ │ │ ├── hands-helping.svg │ │ │ │ ├── hands.svg │ │ │ │ ├── handshake.svg │ │ │ │ ├── hanukiah.svg │ │ │ │ ├── hard-hat.svg │ │ │ │ ├── hashtag.svg │ │ │ │ ├── hat-cowboy-side.svg │ │ │ │ ├── hat-cowboy.svg │ │ │ │ ├── hat-wizard.svg │ │ │ │ ├── haykal.svg │ │ │ │ ├── hdd.svg │ │ │ │ ├── heading.svg │ │ │ │ ├── headphones-alt.svg │ │ │ │ ├── headphones.svg │ │ │ │ ├── headset.svg │ │ │ │ ├── heart-broken.svg │ │ │ │ ├── heart.svg │ │ │ │ ├── heartbeat.svg │ │ │ │ ├── helicopter.svg │ │ │ │ ├── highlighter.svg │ │ │ │ ├── hiking.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.svg │ │ │ │ ├── hot-tub.svg │ │ │ │ ├── hotdog.svg │ │ │ │ ├── hotel.svg │ │ │ │ ├── hourglass-end.svg │ │ │ │ ├── hourglass-half.svg │ │ │ │ ├── hourglass-start.svg │ │ │ │ ├── hourglass.svg │ │ │ │ ├── house-damage.svg │ │ │ │ ├── hryvnia.svg │ │ │ │ ├── i-cursor.svg │ │ │ │ ├── ice-cream.svg │ │ │ │ ├── icicles.svg │ │ │ │ ├── icons.svg │ │ │ │ ├── id-badge.svg │ │ │ │ ├── id-card-alt.svg │ │ │ │ ├── id-card.svg │ │ │ │ ├── igloo.svg │ │ │ │ ├── image.svg │ │ │ │ ├── images.svg │ │ │ │ ├── inbox.svg │ │ │ │ ├── indent.svg │ │ │ │ ├── industry.svg │ │ │ │ ├── infinity.svg │ │ │ │ ├── info-circle.svg │ │ │ │ ├── info.svg │ │ │ │ ├── italic.svg │ │ │ │ ├── jedi.svg │ │ │ │ ├── joint.svg │ │ │ │ ├── journal-whills.svg │ │ │ │ ├── kaaba.svg │ │ │ │ ├── key.svg │ │ │ │ ├── keyboard.svg │ │ │ │ ├── khanda.svg │ │ │ │ ├── kiss-beam.svg │ │ │ │ ├── kiss-wink-heart.svg │ │ │ │ ├── kiss.svg │ │ │ │ ├── kiwi-bird.svg │ │ │ │ ├── landmark.svg │ │ │ │ ├── language.svg │ │ │ │ ├── laptop-code.svg │ │ │ │ ├── laptop-medical.svg │ │ │ │ ├── laptop.svg │ │ │ │ ├── laugh-beam.svg │ │ │ │ ├── laugh-squint.svg │ │ │ │ ├── laugh-wink.svg │ │ │ │ ├── laugh.svg │ │ │ │ ├── layer-group.svg │ │ │ │ ├── leaf.svg │ │ │ │ ├── lemon.svg │ │ │ │ ├── less-than-equal.svg │ │ │ │ ├── less-than.svg │ │ │ │ ├── level-down-alt.svg │ │ │ │ ├── level-up-alt.svg │ │ │ │ ├── life-ring.svg │ │ │ │ ├── lightbulb.svg │ │ │ │ ├── link.svg │ │ │ │ ├── lira-sign.svg │ │ │ │ ├── list-alt.svg │ │ │ │ ├── list-ol.svg │ │ │ │ ├── list-ul.svg │ │ │ │ ├── list.svg │ │ │ │ ├── location-arrow.svg │ │ │ │ ├── lock-open.svg │ │ │ │ ├── lock.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 │ │ │ │ ├── magic.svg │ │ │ │ ├── magnet.svg │ │ │ │ ├── mail-bulk.svg │ │ │ │ ├── male.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-double.svg │ │ │ │ ├── mars-stroke-h.svg │ │ │ │ ├── mars-stroke-v.svg │ │ │ │ ├── mars-stroke.svg │ │ │ │ ├── mars.svg │ │ │ │ ├── mask.svg │ │ │ │ ├── medal.svg │ │ │ │ ├── medkit.svg │ │ │ │ ├── meh-blank.svg │ │ │ │ ├── meh-rolling-eyes.svg │ │ │ │ ├── meh.svg │ │ │ │ ├── memory.svg │ │ │ │ ├── menorah.svg │ │ │ │ ├── mercury.svg │ │ │ │ ├── meteor.svg │ │ │ │ ├── microchip.svg │ │ │ │ ├── microphone-alt-slash.svg │ │ │ │ ├── microphone-alt.svg │ │ │ │ ├── microphone-slash.svg │ │ │ │ ├── microphone.svg │ │ │ │ ├── microscope.svg │ │ │ │ ├── minus-circle.svg │ │ │ │ ├── minus-square.svg │ │ │ │ ├── minus.svg │ │ │ │ ├── mitten.svg │ │ │ │ ├── mobile-alt.svg │ │ │ │ ├── mobile.svg │ │ │ │ ├── money-bill-alt.svg │ │ │ │ ├── money-bill-wave-alt.svg │ │ │ │ ├── money-bill-wave.svg │ │ │ │ ├── money-bill.svg │ │ │ │ ├── money-check-alt.svg │ │ │ │ ├── money-check.svg │ │ │ │ ├── monument.svg │ │ │ │ ├── moon.svg │ │ │ │ ├── mortar-pestle.svg │ │ │ │ ├── mosque.svg │ │ │ │ ├── motorcycle.svg │ │ │ │ ├── mountain.svg │ │ │ │ ├── mouse-pointer.svg │ │ │ │ ├── mouse.svg │ │ │ │ ├── mug-hot.svg │ │ │ │ ├── music.svg │ │ │ │ ├── network-wired.svg │ │ │ │ ├── neuter.svg │ │ │ │ ├── newspaper.svg │ │ │ │ ├── not-equal.svg │ │ │ │ ├── notes-medical.svg │ │ │ │ ├── object-group.svg │ │ │ │ ├── object-ungroup.svg │ │ │ │ ├── oil-can.svg │ │ │ │ ├── om.svg │ │ │ │ ├── otter.svg │ │ │ │ ├── outdent.svg │ │ │ │ ├── pager.svg │ │ │ │ ├── paint-brush.svg │ │ │ │ ├── paint-roller.svg │ │ │ │ ├── palette.svg │ │ │ │ ├── pallet.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-fancy.svg │ │ │ │ ├── pen-nib.svg │ │ │ │ ├── pen-square.svg │ │ │ │ ├── pen.svg │ │ │ │ ├── pencil-alt.svg │ │ │ │ ├── pencil-ruler.svg │ │ │ │ ├── people-carry.svg │ │ │ │ ├── pepper-hot.svg │ │ │ │ ├── percent.svg │ │ │ │ ├── percentage.svg │ │ │ │ ├── person-booth.svg │ │ │ │ ├── phone-alt.svg │ │ │ │ ├── phone-slash.svg │ │ │ │ ├── phone-square-alt.svg │ │ │ │ ├── phone-square.svg │ │ │ │ ├── phone-volume.svg │ │ │ │ ├── phone.svg │ │ │ │ ├── photo-video.svg │ │ │ │ ├── piggy-bank.svg │ │ │ │ ├── pills.svg │ │ │ │ ├── pizza-slice.svg │ │ │ │ ├── place-of-worship.svg │ │ │ │ ├── plane-arrival.svg │ │ │ │ ├── plane-departure.svg │ │ │ │ ├── plane.svg │ │ │ │ ├── play-circle.svg │ │ │ │ ├── play.svg │ │ │ │ ├── plug.svg │ │ │ │ ├── plus-circle.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.svg │ │ │ │ ├── prescription.svg │ │ │ │ ├── print.svg │ │ │ │ ├── procedures.svg │ │ │ │ ├── project-diagram.svg │ │ │ │ ├── puzzle-piece.svg │ │ │ │ ├── qrcode.svg │ │ │ │ ├── question-circle.svg │ │ │ │ ├── question.svg │ │ │ │ ├── quidditch.svg │ │ │ │ ├── quote-left.svg │ │ │ │ ├── quote-right.svg │ │ │ │ ├── quran.svg │ │ │ │ ├── radiation-alt.svg │ │ │ │ ├── radiation.svg │ │ │ │ ├── rainbow.svg │ │ │ │ ├── random.svg │ │ │ │ ├── receipt.svg │ │ │ │ ├── record-vinyl.svg │ │ │ │ ├── recycle.svg │ │ │ │ ├── redo-alt.svg │ │ │ │ ├── redo.svg │ │ │ │ ├── registered.svg │ │ │ │ ├── remove-format.svg │ │ │ │ ├── reply-all.svg │ │ │ │ ├── reply.svg │ │ │ │ ├── republican.svg │ │ │ │ ├── restroom.svg │ │ │ │ ├── retweet.svg │ │ │ │ ├── ribbon.svg │ │ │ │ ├── ring.svg │ │ │ │ ├── road.svg │ │ │ │ ├── robot.svg │ │ │ │ ├── rocket.svg │ │ │ │ ├── route.svg │ │ │ │ ├── rss-square.svg │ │ │ │ ├── rss.svg │ │ │ │ ├── ruble-sign.svg │ │ │ │ ├── ruler-combined.svg │ │ │ │ ├── ruler-horizontal.svg │ │ │ │ ├── ruler-vertical.svg │ │ │ │ ├── ruler.svg │ │ │ │ ├── running.svg │ │ │ │ ├── rupee-sign.svg │ │ │ │ ├── sad-cry.svg │ │ │ │ ├── sad-tear.svg │ │ │ │ ├── satellite-dish.svg │ │ │ │ ├── satellite.svg │ │ │ │ ├── save.svg │ │ │ │ ├── school.svg │ │ │ │ ├── screwdriver.svg │ │ │ │ ├── scroll.svg │ │ │ │ ├── sd-card.svg │ │ │ │ ├── search-dollar.svg │ │ │ │ ├── search-location.svg │ │ │ │ ├── search-minus.svg │ │ │ │ ├── search-plus.svg │ │ │ │ ├── search.svg │ │ │ │ ├── seedling.svg │ │ │ │ ├── server.svg │ │ │ │ ├── shapes.svg │ │ │ │ ├── share-alt-square.svg │ │ │ │ ├── share-alt.svg │ │ │ │ ├── share-square.svg │ │ │ │ ├── share.svg │ │ │ │ ├── shekel-sign.svg │ │ │ │ ├── shield-alt.svg │ │ │ │ ├── ship.svg │ │ │ │ ├── shipping-fast.svg │ │ │ │ ├── shoe-prints.svg │ │ │ │ ├── shopping-bag.svg │ │ │ │ ├── shopping-basket.svg │ │ │ │ ├── shopping-cart.svg │ │ │ │ ├── shower.svg │ │ │ │ ├── shuttle-van.svg │ │ │ │ ├── sign-in-alt.svg │ │ │ │ ├── sign-language.svg │ │ │ │ ├── sign-out-alt.svg │ │ │ │ ├── sign.svg │ │ │ │ ├── signal.svg │ │ │ │ ├── signature.svg │ │ │ │ ├── sim-card.svg │ │ │ │ ├── sitemap.svg │ │ │ │ ├── skating.svg │ │ │ │ ├── skiing-nordic.svg │ │ │ │ ├── skiing.svg │ │ │ │ ├── skull-crossbones.svg │ │ │ │ ├── skull.svg │ │ │ │ ├── slash.svg │ │ │ │ ├── sleigh.svg │ │ │ │ ├── sliders-h.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 │ │ │ │ ├── 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 │ │ │ │ ├── spell-check.svg │ │ │ │ ├── spider.svg │ │ │ │ ├── spinner.svg │ │ │ │ ├── splotch.svg │ │ │ │ ├── spray-can.svg │ │ │ │ ├── square-full.svg │ │ │ │ ├── square-root-alt.svg │ │ │ │ ├── square.svg │ │ │ │ ├── stamp.svg │ │ │ │ ├── star-and-crescent.svg │ │ │ │ ├── star-half-alt.svg │ │ │ │ ├── star-half.svg │ │ │ │ ├── star-of-david.svg │ │ │ │ ├── star-of-life.svg │ │ │ │ ├── star.svg │ │ │ │ ├── step-backward.svg │ │ │ │ ├── step-forward.svg │ │ │ │ ├── stethoscope.svg │ │ │ │ ├── sticky-note.svg │ │ │ │ ├── stop-circle.svg │ │ │ │ ├── stop.svg │ │ │ │ ├── stopwatch.svg │ │ │ │ ├── store-alt.svg │ │ │ │ ├── store.svg │ │ │ │ ├── stream.svg │ │ │ │ ├── street-view.svg │ │ │ │ ├── strikethrough.svg │ │ │ │ ├── stroopwafel.svg │ │ │ │ ├── subscript.svg │ │ │ │ ├── subway.svg │ │ │ │ ├── suitcase-rolling.svg │ │ │ │ ├── suitcase.svg │ │ │ │ ├── sun.svg │ │ │ │ ├── superscript.svg │ │ │ │ ├── surprise.svg │ │ │ │ ├── swatchbook.svg │ │ │ │ ├── swimmer.svg │ │ │ │ ├── swimming-pool.svg │ │ │ │ ├── synagogue.svg │ │ │ │ ├── sync-alt.svg │ │ │ │ ├── sync.svg │ │ │ │ ├── syringe.svg │ │ │ │ ├── table-tennis.svg │ │ │ │ ├── table.svg │ │ │ │ ├── tablet-alt.svg │ │ │ │ ├── tablet.svg │ │ │ │ ├── tablets.svg │ │ │ │ ├── tachometer-alt.svg │ │ │ │ ├── tag.svg │ │ │ │ ├── tags.svg │ │ │ │ ├── tape.svg │ │ │ │ ├── tasks.svg │ │ │ │ ├── taxi.svg │ │ │ │ ├── teeth-open.svg │ │ │ │ ├── teeth.svg │ │ │ │ ├── temperature-high.svg │ │ │ │ ├── temperature-low.svg │ │ │ │ ├── tenge.svg │ │ │ │ ├── terminal.svg │ │ │ │ ├── text-height.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.svg │ │ │ │ ├── ticket-alt.svg │ │ │ │ ├── times-circle.svg │ │ │ │ ├── times.svg │ │ │ │ ├── tint-slash.svg │ │ │ │ ├── tint.svg │ │ │ │ ├── tired.svg │ │ │ │ ├── toggle-off.svg │ │ │ │ ├── toggle-on.svg │ │ │ │ ├── toilet-paper.svg │ │ │ │ ├── toilet.svg │ │ │ │ ├── toolbox.svg │ │ │ │ ├── tools.svg │ │ │ │ ├── tooth.svg │ │ │ │ ├── torah.svg │ │ │ │ ├── torii-gate.svg │ │ │ │ ├── tractor.svg │ │ │ │ ├── trademark.svg │ │ │ │ ├── traffic-light.svg │ │ │ │ ├── train.svg │ │ │ │ ├── tram.svg │ │ │ │ ├── transgender-alt.svg │ │ │ │ ├── transgender.svg │ │ │ │ ├── trash-alt.svg │ │ │ │ ├── trash-restore-alt.svg │ │ │ │ ├── trash-restore.svg │ │ │ │ ├── trash.svg │ │ │ │ ├── tree.svg │ │ │ │ ├── trophy.svg │ │ │ │ ├── truck-loading.svg │ │ │ │ ├── truck-monster.svg │ │ │ │ ├── truck-moving.svg │ │ │ │ ├── truck-pickup.svg │ │ │ │ ├── truck.svg │ │ │ │ ├── tshirt.svg │ │ │ │ ├── tty.svg │ │ │ │ ├── tv.svg │ │ │ │ ├── umbrella-beach.svg │ │ │ │ ├── umbrella.svg │ │ │ │ ├── underline.svg │ │ │ │ ├── undo-alt.svg │ │ │ │ ├── undo.svg │ │ │ │ ├── universal-access.svg │ │ │ │ ├── university.svg │ │ │ │ ├── unlink.svg │ │ │ │ ├── unlock-alt.svg │ │ │ │ ├── unlock.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-edit.svg │ │ │ │ ├── user-friends.svg │ │ │ │ ├── user-graduate.svg │ │ │ │ ├── user-injured.svg │ │ │ │ ├── user-lock.svg │ │ │ │ ├── user-md.svg │ │ │ │ ├── user-minus.svg │ │ │ │ ├── user-ninja.svg │ │ │ │ ├── user-nurse.svg │ │ │ │ ├── user-plus.svg │ │ │ │ ├── user-secret.svg │ │ │ │ ├── user-shield.svg │ │ │ │ ├── user-slash.svg │ │ │ │ ├── user-tag.svg │ │ │ │ ├── user-tie.svg │ │ │ │ ├── user-times.svg │ │ │ │ ├── user.svg │ │ │ │ ├── users-cog.svg │ │ │ │ ├── users.svg │ │ │ │ ├── utensil-spoon.svg │ │ │ │ ├── utensils.svg │ │ │ │ ├── vector-square.svg │ │ │ │ ├── venus-double.svg │ │ │ │ ├── venus-mars.svg │ │ │ │ ├── venus.svg │ │ │ │ ├── vial.svg │ │ │ │ ├── vials.svg │ │ │ │ ├── video-slash.svg │ │ │ │ ├── video.svg │ │ │ │ ├── vihara.svg │ │ │ │ ├── voicemail.svg │ │ │ │ ├── volleyball-ball.svg │ │ │ │ ├── volume-down.svg │ │ │ │ ├── volume-mute.svg │ │ │ │ ├── volume-off.svg │ │ │ │ ├── volume-up.svg │ │ │ │ ├── vote-yea.svg │ │ │ │ ├── vr-cardboard.svg │ │ │ │ ├── walking.svg │ │ │ │ ├── wallet.svg │ │ │ │ ├── warehouse.svg │ │ │ │ ├── water.svg │ │ │ │ ├── wave-square.svg │ │ │ │ ├── weight-hanging.svg │ │ │ │ ├── weight.svg │ │ │ │ ├── wheelchair.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.svg │ │ │ │ ├── won-sign.svg │ │ │ │ ├── wrench.svg │ │ │ │ ├── x-ray.svg │ │ │ │ ├── yen-sign.svg │ │ │ │ └── yin-yang.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 │ │ ├── bootstrap-datepicker │ │ └── dist │ │ │ ├── css │ │ │ ├── bootstrap-datepicker.min.css │ │ │ ├── bootstrap-datepicker.standalone.min.css │ │ │ ├── bootstrap-datepicker3.min.css │ │ │ └── bootstrap-datepicker3.standalone.min.css │ │ │ ├── js │ │ │ └── bootstrap-datepicker.min.js │ │ │ └── locales │ │ │ ├── bootstrap-datepicker-en-CA.min.js │ │ │ ├── bootstrap-datepicker.ar-tn.min.js │ │ │ ├── bootstrap-datepicker.ar.min.js │ │ │ ├── bootstrap-datepicker.az.min.js │ │ │ ├── bootstrap-datepicker.bg.min.js │ │ │ ├── bootstrap-datepicker.bm.min.js │ │ │ ├── bootstrap-datepicker.bn.min.js │ │ │ ├── bootstrap-datepicker.br.min.js │ │ │ ├── bootstrap-datepicker.bs.min.js │ │ │ ├── bootstrap-datepicker.ca.min.js │ │ │ ├── bootstrap-datepicker.cs.min.js │ │ │ ├── bootstrap-datepicker.cy.min.js │ │ │ ├── bootstrap-datepicker.da.min.js │ │ │ ├── bootstrap-datepicker.de.min.js │ │ │ ├── bootstrap-datepicker.el.min.js │ │ │ ├── bootstrap-datepicker.en-AU.min.js │ │ │ ├── bootstrap-datepicker.en-CA.min.js │ │ │ ├── bootstrap-datepicker.en-GB.min.js │ │ │ ├── bootstrap-datepicker.en-IE.min.js │ │ │ ├── bootstrap-datepicker.en-NZ.min.js │ │ │ ├── bootstrap-datepicker.en-ZA.min.js │ │ │ ├── bootstrap-datepicker.eo.min.js │ │ │ ├── bootstrap-datepicker.es.min.js │ │ │ ├── bootstrap-datepicker.et.min.js │ │ │ ├── bootstrap-datepicker.eu.min.js │ │ │ ├── bootstrap-datepicker.fa.min.js │ │ │ ├── bootstrap-datepicker.fi.min.js │ │ │ ├── bootstrap-datepicker.fo.min.js │ │ │ ├── bootstrap-datepicker.fr-CH.min.js │ │ │ ├── bootstrap-datepicker.fr.min.js │ │ │ ├── bootstrap-datepicker.gl.min.js │ │ │ ├── bootstrap-datepicker.he.min.js │ │ │ ├── bootstrap-datepicker.hi.min.js │ │ │ ├── bootstrap-datepicker.hr.min.js │ │ │ ├── bootstrap-datepicker.hu.min.js │ │ │ ├── bootstrap-datepicker.hy.min.js │ │ │ ├── bootstrap-datepicker.id.min.js │ │ │ ├── bootstrap-datepicker.is.min.js │ │ │ ├── bootstrap-datepicker.it-CH.min.js │ │ │ ├── bootstrap-datepicker.it.min.js │ │ │ ├── bootstrap-datepicker.ja.min.js │ │ │ ├── bootstrap-datepicker.ka.min.js │ │ │ ├── bootstrap-datepicker.kh.min.js │ │ │ ├── bootstrap-datepicker.kk.min.js │ │ │ ├── bootstrap-datepicker.km.min.js │ │ │ ├── bootstrap-datepicker.ko.min.js │ │ │ ├── bootstrap-datepicker.kr.min.js │ │ │ ├── bootstrap-datepicker.lt.min.js │ │ │ ├── bootstrap-datepicker.lv.min.js │ │ │ ├── bootstrap-datepicker.me.min.js │ │ │ ├── bootstrap-datepicker.mk.min.js │ │ │ ├── bootstrap-datepicker.mn.min.js │ │ │ ├── bootstrap-datepicker.ms.min.js │ │ │ ├── bootstrap-datepicker.nl-BE.min.js │ │ │ ├── bootstrap-datepicker.nl.min.js │ │ │ ├── bootstrap-datepicker.no.min.js │ │ │ ├── bootstrap-datepicker.oc.min.js │ │ │ ├── bootstrap-datepicker.pl.min.js │ │ │ ├── bootstrap-datepicker.pt-BR.min.js │ │ │ ├── bootstrap-datepicker.pt.min.js │ │ │ ├── bootstrap-datepicker.ro.min.js │ │ │ ├── bootstrap-datepicker.rs-latin.min.js │ │ │ ├── bootstrap-datepicker.rs.min.js │ │ │ ├── bootstrap-datepicker.ru.min.js │ │ │ ├── bootstrap-datepicker.si.min.js │ │ │ ├── bootstrap-datepicker.sk.min.js │ │ │ ├── bootstrap-datepicker.sl.min.js │ │ │ ├── bootstrap-datepicker.sq.min.js │ │ │ ├── bootstrap-datepicker.sr-latin.min.js │ │ │ ├── bootstrap-datepicker.sr.min.js │ │ │ ├── bootstrap-datepicker.sv.min.js │ │ │ ├── bootstrap-datepicker.sw.min.js │ │ │ ├── bootstrap-datepicker.ta.min.js │ │ │ ├── bootstrap-datepicker.tg.min.js │ │ │ ├── bootstrap-datepicker.th.min.js │ │ │ ├── bootstrap-datepicker.tk.min.js │ │ │ ├── bootstrap-datepicker.tr.min.js │ │ │ ├── bootstrap-datepicker.uk.min.js │ │ │ ├── bootstrap-datepicker.uz-cyrl.min.js │ │ │ ├── bootstrap-datepicker.uz-latn.min.js │ │ │ ├── bootstrap-datepicker.vi.min.js │ │ │ ├── bootstrap-datepicker.zh-CN.min.js │ │ │ └── bootstrap-datepicker.zh-TW.min.js │ │ ├── bootstrap-tagsinput │ │ └── dist │ │ │ ├── bootstrap-tagsinput-angular.min.js │ │ │ ├── bootstrap-tagsinput-typeahead.css │ │ │ ├── bootstrap-tagsinput.css │ │ │ ├── bootstrap-tagsinput.min.js │ │ │ └── bootstrap-tagsinput.zip │ │ ├── bootstrap │ │ └── dist │ │ │ ├── css │ │ │ ├── bootstrap-grid.min.css │ │ │ ├── bootstrap-reboot.min.css │ │ │ └── bootstrap.min.css │ │ │ └── js │ │ │ ├── bootstrap.bundle.min.js │ │ │ └── bootstrap.min.js │ │ ├── headroom.js │ │ └── dist │ │ │ ├── angular.headroom.min.js │ │ │ ├── headroom.min.js │ │ │ └── jQuery.headroom.min.js │ │ ├── jarallax │ │ └── dist │ │ │ ├── jarallax-element.min.js │ │ │ ├── jarallax-video.min.js │ │ │ ├── jarallax.css │ │ │ └── jarallax.min.js │ │ ├── jquery-validation │ │ └── dist │ │ │ ├── additional-methods.min.js │ │ │ ├── jquery.validate.min.js │ │ │ └── localization │ │ │ ├── messages_ar.min.js │ │ │ ├── messages_az.min.js │ │ │ ├── messages_bg.min.js │ │ │ ├── messages_bn_BD.min.js │ │ │ ├── messages_ca.min.js │ │ │ ├── messages_cs.min.js │ │ │ ├── messages_da.min.js │ │ │ ├── messages_de.min.js │ │ │ ├── messages_el.min.js │ │ │ ├── messages_es.min.js │ │ │ ├── messages_es_AR.min.js │ │ │ ├── messages_es_PE.min.js │ │ │ ├── messages_et.min.js │ │ │ ├── messages_eu.min.js │ │ │ ├── messages_fa.min.js │ │ │ ├── messages_fi.min.js │ │ │ ├── messages_fr.min.js │ │ │ ├── messages_ge.min.js │ │ │ ├── messages_gl.min.js │ │ │ ├── messages_he.min.js │ │ │ ├── messages_hr.min.js │ │ │ ├── messages_hu.min.js │ │ │ ├── messages_hy_AM.min.js │ │ │ ├── messages_id.min.js │ │ │ ├── messages_is.min.js │ │ │ ├── messages_it.min.js │ │ │ ├── messages_ja.min.js │ │ │ ├── messages_ka.min.js │ │ │ ├── messages_kk.min.js │ │ │ ├── messages_ko.min.js │ │ │ ├── messages_lt.min.js │ │ │ ├── messages_lv.min.js │ │ │ ├── messages_mk.min.js │ │ │ ├── messages_my.min.js │ │ │ ├── messages_nl.min.js │ │ │ ├── messages_no.min.js │ │ │ ├── messages_pl.min.js │ │ │ ├── messages_pt_BR.min.js │ │ │ ├── messages_pt_PT.min.js │ │ │ ├── messages_ro.min.js │ │ │ ├── messages_ru.min.js │ │ │ ├── messages_sd.min.js │ │ │ ├── messages_si.min.js │ │ │ ├── messages_sk.min.js │ │ │ ├── messages_sl.min.js │ │ │ ├── messages_sr.min.js │ │ │ ├── messages_sr_lat.min.js │ │ │ ├── messages_sv.min.js │ │ │ ├── messages_th.min.js │ │ │ ├── messages_tj.min.js │ │ │ ├── messages_tr.min.js │ │ │ ├── messages_uk.min.js │ │ │ ├── messages_ur.min.js │ │ │ ├── messages_vi.min.js │ │ │ ├── messages_zh.min.js │ │ │ ├── messages_zh_TW.min.js │ │ │ ├── methods_de.min.js │ │ │ ├── methods_es_CL.min.js │ │ │ ├── methods_fi.min.js │ │ │ ├── methods_it.min.js │ │ │ ├── methods_nl.min.js │ │ │ └── methods_pt.min.js │ │ ├── jquery.counterup │ │ ├── counterup.jquery.json │ │ └── jquery.counterup.min.js │ │ ├── jquery │ │ └── dist │ │ │ ├── core.js │ │ │ ├── jquery.min.js │ │ │ └── jquery.slim.min.js │ │ ├── nouislider │ │ └── distribute │ │ │ ├── nouislider.min.css │ │ │ └── nouislider.min.js │ │ ├── onscreen │ │ └── dist │ │ │ ├── on-screen.es6.js │ │ │ └── on-screen.umd.min.js │ │ ├── popper.js │ │ └── dist │ │ │ ├── esm │ │ │ ├── popper-utils.min.js │ │ │ └── popper.min.js │ │ │ ├── popper-utils.min.js │ │ │ ├── popper.min.js │ │ │ └── umd │ │ │ ├── popper-utils.min.js │ │ │ ├── popper.js.flow │ │ │ └── popper.min.js │ │ ├── smooth-scroll │ │ └── dist │ │ │ ├── smooth-scroll.min.js │ │ │ └── smooth-scroll.polyfills.min.js │ │ ├── sticky-sidebar │ │ └── dist │ │ │ ├── jquery.sticky-sidebar.min.js │ │ │ └── sticky-sidebar.min.js │ │ ├── vivus │ │ └── dist │ │ │ └── vivus.min.js │ │ └── waypoints │ │ ├── lib │ │ ├── jquery.waypoints.min.js │ │ ├── noframework.waypoints.min.js │ │ ├── shortcuts │ │ │ ├── infinite.min.js │ │ │ ├── inview.min.js │ │ │ └── sticky.min.js │ │ ├── waypoints.debug.js │ │ └── zepto.waypoints.min.js │ │ ├── licenses.txt │ │ └── testem.json ├── templates │ ├── includes │ │ ├── footer.html │ │ ├── navigation.html │ │ ├── preloader.html │ │ └── scripts.html │ ├── index.html │ ├── layouts │ │ └── base-fullscreen.html │ ├── page-404.html │ ├── page-500.html │ └── page-blank.html ├── tests │ ├── .coveragerc │ ├── __init__.py │ ├── capec_parser_test.py │ ├── ccmv4_parser_test.py │ ├── cheatsheets_parser_test.py │ ├── cloud_native_security_controls_parser_test.py │ ├── cre_main_test.py │ ├── cwe_parser_test.py │ ├── data │ │ ├── osib_example.yml │ │ └── osib_example.yml.bak │ ├── db_test.py │ ├── defs_test.py │ ├── dsomm_parser_test.py │ ├── gap_analysis_test.py │ ├── inmemory_graph_test.py │ ├── juiceshop_test.py │ ├── mdutils_test.py │ ├── misc_tools_parser_test.py │ ├── oscal_utils_test.py │ ├── osib_defs_test.py │ ├── secure_headers_parser_test.py │ ├── spreadsheet_parsers_test.py │ ├── spreadsheet_test.py │ ├── utils │ │ └── data_gen.py │ ├── web_main_test.py │ └── zap_alerts_parser_test.py ├── utils │ ├── external_project_parsers │ │ ├── README.md │ │ ├── __init__.py │ │ ├── base_parser.py │ │ ├── base_parser_defs.py │ │ └── parsers │ │ │ ├── __init__.py │ │ │ ├── capec_parser.py │ │ │ ├── ccmv4.py │ │ │ ├── cheatsheets_parser.py │ │ │ ├── cloud_native_security_controls.py │ │ │ ├── cwe.py │ │ │ ├── dsomm.py │ │ │ ├── iso27001.py │ │ │ ├── juiceshop.py │ │ │ ├── misc_tools_parser.py │ │ │ ├── pci_dss.py │ │ │ ├── secure_headers.py │ │ │ └── zap_alerts_parser.py │ ├── file.py │ ├── gap_analysis.py │ ├── git.py │ ├── hash.py │ ├── mdutils.py │ ├── oscal_utils.py │ ├── redirectors.py │ ├── redis.py │ ├── spreadsheet.py │ └── spreadsheet_parsers.py ├── web │ ├── __init__.py │ ├── visualise.py │ └── web_main.py └── worker.py ├── cre.py ├── cypress.json ├── docs ├── CONTRIBUTING.md ├── CREmappingtemplate.xls ├── Frontend.md ├── GenerativeAIBestPractices.md ├── README.md ├── designs │ ├── cre-links.md │ ├── importing-v2.md │ └── my-opencre.md ├── developmentSetup.md ├── implementation.md ├── importing-a-single-standard.md ├── my-opencre-user-guide.md └── requirements.md ├── enzyme-setup.js ├── migrations ├── README ├── alembic.ini ├── env.py ├── script.py.mako └── versions │ ├── 0d267ae11945_make_database_ids_be_uuid.py │ ├── 3c65127871a6_change_standards_table_to_nodes.py │ ├── 455f052a44ea_add_cascades_for_foreign_keys.py │ ├── 5029c02946f9_cache_gap_analysis_results_in_db.py │ ├── 7a17989aa1e3_first_migration.py │ ├── 7bf4eac76958_add_rule_id_column.py │ ├── 7f27babf58e1_drop_description_from_uq_node_constraint.py │ └── fffdc0652e27_embeddings.py ├── package.json ├── requirements.txt ├── scripts ├── import-all.sh ├── preload_gap_analysis.sh └── prod-docker-entrypoint.sh ├── tsconfig.json ├── webpack.config.js ├── webpack.prod.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["@babel/env", "@babel/react", "@babel/preset-typescript"] 3 | } 4 | 5 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | extends: ['airbnb', 'prettier'], 3 | env: { 4 | jest: true, 5 | browser: true, 6 | }, 7 | plugins: ['prettier'], 8 | rules: { 9 | 'prettier/prettier': ['error'], 10 | 'import/no-named-as-default': ['off'], 11 | }, 12 | }; 13 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: New Issue Template 3 | about: 'Please use this template for all new issues. ' 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | ## Issue 10 | 11 | ### **What is the issue?** 12 | 13 | < answer here > 14 | 15 | ### Expected Behaviour 16 | 17 | What should have happened? 18 | 19 | ### Actual Behaviour 20 | 21 | What actually happened? 22 | 23 | ### Steps to reproduce 24 | 25 | How can we reproduce the error? -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | www/ 3 | .DS_Store 4 | yarn.lock 5 | yarn-error.log 6 | cypress/videos 7 | cypress/screenshots 8 | venv/ 9 | static/ 10 | vendor/ -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true, 3 | "trailingComma": "es5", 4 | "printWidth": 110 5 | } -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.11 2 | -------------------------------------------------------------------------------- /.slugignore: -------------------------------------------------------------------------------- 1 | cres/ 2 | .devcontainer/ 3 | docs/ 4 | application/tests 5 | application/frontend/src/test/basic-e2e.test.ts 6 | .github 7 | README.md 8 | LICENSE 9 | .gitignore 10 | .dockerignore 11 | Dockerfile-dev 12 | docker-entrypoint.sh 13 | -------------------------------------------------------------------------------- /Dockerfile-dev: -------------------------------------------------------------------------------- 1 | FROM node:lts as build 2 | 3 | WORKDIR /code 4 | COPY . /code 5 | 6 | RUN make install-deps-typescript && make install-typescript && make frontend 7 | 8 | FROM python:3.11.0 as run 9 | 10 | COPY --from=build /code /code 11 | WORKDIR /code 12 | RUN apt update &&\ 13 | apt install -y python3-numpy &&\ 14 | pip install virtualenv &&\ 15 | make install-deps-python &&\ 16 | make install-python 17 | 18 | ENTRYPOINT make dev-flask 19 | -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn cre:app 2 | worker: FLASK_APP=`pwd`/cre.py python cre.py --start_worker 3 | -------------------------------------------------------------------------------- /application/cmd/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/OpenCRE/834c8bc59106251741808ec3200ab602cea90bc5/application/cmd/__init__.py -------------------------------------------------------------------------------- /application/database/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/OpenCRE/834c8bc59106251741808ec3200ab602cea90bc5/application/database/__init__.py -------------------------------------------------------------------------------- /application/defs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/OpenCRE/834c8bc59106251741808ec3200ab602cea90bc5/application/defs/__init__.py -------------------------------------------------------------------------------- /application/frontend/src/app.scss: -------------------------------------------------------------------------------- 1 | 2 | * { 3 | box-sizing: border-box; 4 | } 5 | 6 | html, 7 | body { 8 | height: 100%; 9 | width: 100%; 10 | margin: 0; 11 | padding: 0; 12 | } 13 | 14 | html { 15 | text-size-adjust: 100%; 16 | } 17 | 18 | body { 19 | background-color: white; 20 | } 21 | 22 | #mount { 23 | height: 100vh; 24 | width: 100vw; 25 | } 26 | 27 | .app { 28 | height: 100%; 29 | } 30 | -------------------------------------------------------------------------------- /application/frontend/src/components/DocumentNode/index.ts: -------------------------------------------------------------------------------- 1 | export { DocumentNode } from './DocumentNode'; 2 | -------------------------------------------------------------------------------- /application/frontend/src/components/LoadingAndErrorIndicator/index.ts: -------------------------------------------------------------------------------- 1 | export { LoadingAndErrorIndicator } from './LoadingAndErrorIndicator'; 2 | -------------------------------------------------------------------------------- /application/frontend/src/hooks/index.ts: -------------------------------------------------------------------------------- 1 | export { useEnvironment } from './useEnvironment'; 2 | export { useLocationFromOutsideRoute } from './useLocationFromOutsideRoute'; 3 | -------------------------------------------------------------------------------- /application/frontend/src/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 7 | Open CRE 8 | 9 | 10 | 11 | 12 |
13 | -------------------------------------------------------------------------------- /application/frontend/src/main.tsx: -------------------------------------------------------------------------------- 1 | /* eslint-env browser */ 2 | 3 | import React from 'react'; 4 | import ReactDOM from 'react-dom'; 5 | 6 | import App from './App'; 7 | 8 | document.addEventListener('DOMContentLoaded', () => { 9 | ReactDOM.render(, document.getElementById('mount')); 10 | }); 11 | -------------------------------------------------------------------------------- /application/frontend/src/pages/Explorer/LinkedStandards.scss: -------------------------------------------------------------------------------- 1 | main#explorer-content { 2 | .tags { 3 | display: flex; 4 | gap: 4px; 5 | height: 100%; 6 | justify-content: center; 7 | align-items: center; 8 | 9 | .ui.label { 10 | border: 1px solid #2185d0; 11 | text-shadow: none; 12 | } 13 | 14 | a:hover .label { 15 | background: #4183c4; 16 | color: white; 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /application/frontend/src/pages/Explorer/visuals/force-graph/forceGraph.scss: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 0; 3 | } -------------------------------------------------------------------------------- /application/frontend/src/pages/GapAnalysis/GapAnalysis.scss: -------------------------------------------------------------------------------- 1 | main#gap-analysis { 2 | padding: 30px; 3 | 4 | span.name { 5 | padding: 0 10px; 6 | } 7 | } 8 | 9 | @media (min-width: 0px) and (max-width: 500px) { 10 | main#gap-analysis { 11 | span.name { 12 | width: 85px; 13 | display: inline-block; 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /application/frontend/src/pages/MembershipRequired/MembershipRequired.scss: -------------------------------------------------------------------------------- 1 | .membership-required { 2 | margin-top: 20vh; 3 | text-align: center; 4 | 5 | p { 6 | font-weight: bold; 7 | } 8 | } -------------------------------------------------------------------------------- /application/frontend/src/pages/Search/components/BodyText.scss: -------------------------------------------------------------------------------- 1 | .index-text { 2 | margin-top: 2rem; 3 | padding: 15px; 4 | width: 70%; 5 | background: white; 6 | } 7 | 8 | // mobile 9 | @media (min-width: 0px) and (max-width: 599px) { 10 | .index-text { 11 | width: 90%; 12 | } 13 | } 14 | 15 | -------------------------------------------------------------------------------- /application/frontend/src/pages/Search/components/SearchBar.scss: -------------------------------------------------------------------------------- 1 | #SearchBar { 2 | margin: auto; 3 | padding: 0; 4 | } 5 | 6 | #SearchButton { 7 | margin: auto; 8 | padding: 0; 9 | } 10 | -------------------------------------------------------------------------------- /application/frontend/src/pages/index.ts: -------------------------------------------------------------------------------- 1 | export { Search } from './Search/Search'; 2 | export { Graph } from './Graph/Graph'; 3 | export { Standard } from './Standard/Standard'; 4 | export { CommonRequirementEnumeration } from './CommonRequirementEnumeration/CommonRequirementEnumeration'; 5 | -------------------------------------------------------------------------------- /application/frontend/src/scaffolding/MainContentArea/MainContentArea.tsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | 3 | import { Header, Router } from '../index'; 4 | 5 | export const MainContentArea = () => { 6 | return ( 7 | <> 8 |
9 | 10 | 11 | ); 12 | }; 13 | -------------------------------------------------------------------------------- /application/frontend/src/scaffolding/NoRoute/noRoute.scss: -------------------------------------------------------------------------------- 1 | .no-route__container { 2 | display: flex !important; 3 | align-items: center; 4 | justify-content: center; 5 | align-self: center; 6 | height: 100vh; 7 | } 8 | -------------------------------------------------------------------------------- /application/frontend/src/scaffolding/Router/Router.tsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import { Route, Switch } from 'react-router-dom'; 3 | 4 | import { ROUTES } from '../../routes'; 5 | import { NoRoute } from '../index'; 6 | 7 | export const Router = () => ( 8 | 9 | {ROUTES.map(({ path, component }) => ( 10 | 11 | ))} 12 | 13 | 14 | ); 15 | -------------------------------------------------------------------------------- /application/frontend/src/scaffolding/index.ts: -------------------------------------------------------------------------------- 1 | export { Router } from './Router/Router'; 2 | export { MainContentArea } from './MainContentArea/MainContentArea'; 3 | export { NoRoute } from './NoRoute/NoRoute'; 4 | export { Header } from './Header/Header'; 5 | -------------------------------------------------------------------------------- /application/frontend/www/opencregraphic2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/OpenCRE/834c8bc59106251741808ec3200ab602cea90bc5/application/frontend/www/opencregraphic2.png -------------------------------------------------------------------------------- /application/frontend/www/tn_opencregraphic2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/OpenCRE/834c8bc59106251741808ec3200ab602cea90bc5/application/frontend/www/tn_opencregraphic2.jpg -------------------------------------------------------------------------------- /application/static/assets/scss/bootstrap/_media.scss: -------------------------------------------------------------------------------- 1 | .media { 2 | display: flex; 3 | align-items: flex-start; 4 | } 5 | 6 | .media-body { 7 | flex: 1; 8 | } 9 | -------------------------------------------------------------------------------- /application/static/assets/scss/bootstrap/_transitions.scss: -------------------------------------------------------------------------------- 1 | .fade { 2 | @include transition($transition-fade); 3 | 4 | &:not(.show) { 5 | opacity: 0; 6 | } 7 | } 8 | 9 | .collapse { 10 | &:not(.show) { 11 | display: none; 12 | } 13 | } 14 | 15 | .collapsing { 16 | position: relative; 17 | height: 0; 18 | overflow: hidden; 19 | @include transition($transition-collapse); 20 | } 21 | -------------------------------------------------------------------------------- /application/static/assets/scss/bootstrap/mixins/_alert.scss: -------------------------------------------------------------------------------- 1 | @mixin alert-variant($background, $border, $color) { 2 | color: $color; 3 | @include gradient-bg($background); 4 | border-color: $border; 5 | 6 | hr { 7 | border-top-color: darken($border, 5%); 8 | } 9 | 10 | .alert-link { 11 | color: darken($color, 10%); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /application/static/assets/scss/bootstrap/mixins/_badge.scss: -------------------------------------------------------------------------------- 1 | @mixin badge-variant($bg) { 2 | color: color-yiq($bg); 3 | background-color: $bg; 4 | 5 | @at-root a#{&} { 6 | @include hover-focus() { 7 | color: color-yiq($bg); 8 | background-color: darken($bg, 10%); 9 | } 10 | 11 | &:focus, 12 | &.focus { 13 | outline: 0; 14 | box-shadow: 0 0 0 $badge-focus-width rgba($bg, .5); 15 | } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /application/static/assets/scss/bootstrap/mixins/_clearfix.scss: -------------------------------------------------------------------------------- 1 | @mixin clearfix() { 2 | &::after { 3 | display: block; 4 | clear: both; 5 | content: ""; 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /application/static/assets/scss/bootstrap/mixins/_lists.scss: -------------------------------------------------------------------------------- 1 | // Lists 2 | 3 | // Unstyled keeps list items block level, just removes default browser padding and list-style 4 | @mixin list-unstyled() { 5 | padding-left: 0; 6 | list-style: none; 7 | } 8 | -------------------------------------------------------------------------------- /application/static/assets/scss/bootstrap/mixins/_nav-divider.scss: -------------------------------------------------------------------------------- 1 | // Horizontal dividers 2 | // 3 | // Dividers (basically an hr) within dropdowns and nav lists 4 | 5 | @mixin nav-divider($color: $nav-divider-color, $margin-y: $nav-divider-margin-y, $ignore-warning: false) { 6 | height: 0; 7 | margin: $margin-y 0; 8 | overflow: hidden; 9 | border-top: 1px solid $color; 10 | @include deprecate("The `nav-divider()` mixin", "v4.4.0", "v5", $ignore-warning); 11 | } 12 | -------------------------------------------------------------------------------- /application/static/assets/scss/bootstrap/mixins/_resize.scss: -------------------------------------------------------------------------------- 1 | // Resize anything 2 | 3 | @mixin resizable($direction) { 4 | overflow: auto; // Per CSS3 UI, `resize` only applies when `overflow` isn't `visible` 5 | resize: $direction; // Options: horizontal, vertical, both 6 | } 7 | -------------------------------------------------------------------------------- /application/static/assets/scss/bootstrap/mixins/_size.scss: -------------------------------------------------------------------------------- 1 | // Sizing shortcuts 2 | 3 | @mixin size($width, $height: $width) { 4 | width: $width; 5 | height: $height; 6 | @include deprecate("`size()`", "v4.3.0", "v5"); 7 | } 8 | -------------------------------------------------------------------------------- /application/static/assets/scss/bootstrap/mixins/_text-hide.scss: -------------------------------------------------------------------------------- 1 | // CSS image replacement 2 | @mixin text-hide($ignore-warning: false) { 3 | // stylelint-disable-next-line font-family-no-missing-generic-family-keyword 4 | font: 0/0 a; 5 | color: transparent; 6 | text-shadow: none; 7 | background-color: transparent; 8 | border: 0; 9 | 10 | @include deprecate("`text-hide()`", "v4.1.0", "v5", $ignore-warning); 11 | } 12 | -------------------------------------------------------------------------------- /application/static/assets/scss/bootstrap/mixins/_text-truncate.scss: -------------------------------------------------------------------------------- 1 | // Text truncate 2 | // Requires inline-block or block for proper styling 3 | 4 | @mixin text-truncate() { 5 | overflow: hidden; 6 | text-overflow: ellipsis; 7 | white-space: nowrap; 8 | } 9 | -------------------------------------------------------------------------------- /application/static/assets/scss/bootstrap/mixins/_visibility.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | // Visibility 4 | 5 | @mixin invisible($visibility) { 6 | visibility: $visibility !important; 7 | @include deprecate("`invisible()`", "v4.3.0", "v5"); 8 | } 9 | -------------------------------------------------------------------------------- /application/static/assets/scss/bootstrap/utilities/_clearfix.scss: -------------------------------------------------------------------------------- 1 | .clearfix { 2 | @include clearfix(); 3 | } 4 | -------------------------------------------------------------------------------- /application/static/assets/scss/bootstrap/utilities/_float.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | @each $breakpoint in map-keys($grid-breakpoints) { 4 | @include media-breakpoint-up($breakpoint) { 5 | $infix: breakpoint-infix($breakpoint, $grid-breakpoints); 6 | 7 | .float#{$infix}-left { float: left !important; } 8 | .float#{$infix}-right { float: right !important; } 9 | .float#{$infix}-none { float: none !important; } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /application/static/assets/scss/bootstrap/utilities/_overflow.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | @each $value in $overflows { 4 | .overflow-#{$value} { overflow: $value !important; } 5 | } 6 | -------------------------------------------------------------------------------- /application/static/assets/scss/bootstrap/utilities/_screenreaders.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Screenreaders 3 | // 4 | 5 | .sr-only { 6 | @include sr-only(); 7 | } 8 | 9 | .sr-only-focusable { 10 | @include sr-only-focusable(); 11 | } 12 | -------------------------------------------------------------------------------- /application/static/assets/scss/bootstrap/utilities/_shadows.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | .shadow-sm { box-shadow: $box-shadow-sm !important; } 4 | .shadow { box-shadow: $box-shadow !important; } 5 | .shadow-lg { box-shadow: $box-shadow-lg !important; } 6 | .shadow-none { box-shadow: none !important; } 7 | -------------------------------------------------------------------------------- /application/static/assets/scss/bootstrap/utilities/_visibility.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | // 4 | // Visibility utilities 5 | // 6 | 7 | .visible { 8 | visibility: visible !important; 9 | } 10 | 11 | .invisible { 12 | visibility: hidden !important; 13 | } 14 | -------------------------------------------------------------------------------- /application/static/assets/scss/pixel/_layout.scss: -------------------------------------------------------------------------------- 1 | @import "layout/navbar"; 2 | @import "layout/section"; 3 | @import "layout/footer"; 4 | @import "layout/sidebar"; 5 | -------------------------------------------------------------------------------- /application/static/assets/scss/pixel/_mixins.scss: -------------------------------------------------------------------------------- 1 | @import "mixins/animations"; 2 | @import "mixins/alert"; 3 | @import "mixins/background-variant"; 4 | @import "mixins/buttons"; 5 | @import "mixins/forms"; 6 | @import "mixins/icon"; 7 | @import "mixins/modals"; 8 | @import "mixins/popover"; 9 | @import "mixins/transform"; 10 | @import "mixins/utilities"; 11 | -------------------------------------------------------------------------------- /application/static/assets/scss/pixel/_reboot.scss: -------------------------------------------------------------------------------- 1 | iframe { 2 | border: 0; 3 | } 4 | 5 | figcaption, 6 | figure, 7 | main { 8 | display: block; 9 | margin: 0; 10 | } 11 | 12 | main { 13 | overflow: hidden; 14 | } 15 | 16 | img { 17 | max-width: 100%; 18 | } 19 | 20 | strong{ 21 | font-weight: $font-weight-bold; 22 | } 23 | 24 | button:focus { 25 | outline: 0; 26 | } -------------------------------------------------------------------------------- /application/static/assets/scss/pixel/_utilities.scss: -------------------------------------------------------------------------------- 1 | @import "pixel/utilities/backgrounds"; 2 | @import "pixel/utilities/floating"; 3 | @import "pixel/utilities/helper"; 4 | @import "pixel/utilities/position"; 5 | @import "pixel/utilities/sizing"; 6 | @import "pixel/utilities/spacing"; 7 | @import "pixel/utilities/shadows"; 8 | @import "pixel/utilities/text"; 9 | @import "pixel/utilities/transform"; 10 | @import "pixel/utilities/animations"; 11 | -------------------------------------------------------------------------------- /application/static/assets/scss/pixel/_vendor.scss: -------------------------------------------------------------------------------- 1 | // Vendor 2 | @import "pixel/vendor/bootstrap-datepicker"; 3 | @import "pixel/vendor/bootstrap-tagsinput"; 4 | @import "pixel/vendor/headroom"; 5 | @import "pixel/vendor/nouislider"; -------------------------------------------------------------------------------- /application/static/assets/scss/pixel/components/_counters.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * = Counters 3 | */ 4 | 5 | .counter-alternate{ 6 | &::after{ 7 | content: '\f067'; 8 | font-family: $font-awesome-5; 9 | position: absolute; 10 | font-size: 2.25rem; 11 | color:$dark; 12 | font-weight: 900; 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /application/static/assets/scss/pixel/components/_maps.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * = Maps 3 | */ 4 | 5 | 6 | .map { 7 | height: 500px; 8 | width: 100%; 9 | @include filter(grayscale(100%)) 10 | } 11 | -------------------------------------------------------------------------------- /application/static/assets/scss/pixel/components/_pagination.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * = Paginations 3 | */ 4 | 5 | 6 | 7 | .circle-pagination{ 8 | .page-link, 9 | span{ 10 | @include display-flex(); 11 | align-items: center; 12 | justify-content: center; 13 | width: 34px; 14 | height: 34px; 15 | padding: 0; 16 | @include border-radius($circle-radius); 17 | } 18 | } 19 | 20 | -------------------------------------------------------------------------------- /application/static/assets/scss/pixel/components/_popover.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * = Popovers 3 | */ 4 | 5 | .popover { 6 | border: 0; 7 | } 8 | 9 | .popover-header { 10 | font-weight: $font-weight-bold; 11 | } 12 | 13 | // Alternative colors 14 | @each $color, $value in $theme-colors { 15 | .popover-#{$color} { 16 | @include popover-variant($value); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /application/static/assets/scss/pixel/components/_preloader.scss: -------------------------------------------------------------------------------- 1 | .preloader { 2 | display: flex; 3 | align-items: center; 4 | height: 100vh; 5 | left: 0; 6 | position: fixed; 7 | top: 0; 8 | transition: opacity .2s linear; 9 | width: 100%; 10 | z-index: 9999; 11 | 12 | img { 13 | width: 30px; 14 | height: 30px; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /application/static/assets/scss/pixel/components/_tooltip.scss: -------------------------------------------------------------------------------- 1 | // Wrapper for the tooltip content 2 | .tooltip-inner { 3 | @include box-shadow($box-shadow); 4 | } -------------------------------------------------------------------------------- /application/static/assets/scss/pixel/mixins/_alert.scss: -------------------------------------------------------------------------------- 1 | @mixin alert-variant($background, $border, $color) { 2 | color: color-yiq($color); 3 | @include gradient-bg($background); 4 | border-color: $border; 5 | 6 | hr { 7 | border-top-color: darken($border, 5%); 8 | } 9 | 10 | .alert-link { 11 | color: lighten($color, 95%); 12 | } 13 | } -------------------------------------------------------------------------------- /application/static/assets/scss/pixel/mixins/_transform.scss: -------------------------------------------------------------------------------- 1 | 2 | @mixin transform($transforms) { 3 | -moz-transform: $transforms; 4 | -o-transform: $transforms; 5 | -ms-transform: $transforms; 6 | -webkit-transform: $transforms; 7 | transform: $transforms; 8 | } 9 | 10 | 11 | // translate 12 | @mixin translate ($x, $y) { 13 | @include transform(translate($x, $y)); 14 | } 15 | 16 | // rotate 17 | @mixin rotate ($deg) { 18 | @include transform(rotate(#{$deg}deg)); 19 | } -------------------------------------------------------------------------------- /application/static/assets/scss/pixel/utilities/_transform.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * = Transform 3 | */ 4 | 5 | @include media-breakpoint-up(lg) { 6 | .transform-perspective-right { 7 | transform: scale(1) perspective(1040px) rotateY(-11deg) rotateX(2deg) rotate(2deg); 8 | } 9 | .transform-perspective-left{ 10 | transform: scale(1) perspective(900px) rotateY(27deg) rotateX(2deg) rotate(-2deg); 11 | } 12 | } 13 | 14 | .t-none{ 15 | transform: none !important; 16 | } 17 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/adn.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/adobe.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/affiliatetheme.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/angular.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/artstation.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/atlassian.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/autoprefixer.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/bandcamp.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/bitbucket.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/black-tie.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/bluetooth-b.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/bluetooth.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/buysellads.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/cloudsmith.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/creative-commons-nd.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/css3-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/css3.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/cuttlefish.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/dashcube.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/deviantart.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/digg.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/digital-ocean.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/discourse.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/dochub.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/dropbox.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/dyalog.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/elementor.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/envira.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/ethereum.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/facebook-f.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/facebook-square.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/facebook.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/figma.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/firstdraft.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/flickr.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/flipboard.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/fulcrum.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/gg-circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/gg.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/gitlab.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/gitter.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/google-drive.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/google-play.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/google.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/gratipay.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/hacker-news-square.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/hacker-news.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/hotjar.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/houzz.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/html5.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/jira.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/kaggle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/kickstarter-k.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/korvue.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/linkedin-in.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/magento.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/markdown.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/maxcdn.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/medium-m.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/medium.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/microsoft.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/mix.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/modx.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/monero.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/npm.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/openid.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/patreon.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/pied-piper.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/product-hunt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/quinscape.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/renren.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/rockrms.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/servicestack.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/sistrix.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/sketch.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/sourcetree.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/stack-exchange.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/stack-overflow.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/strava.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/stripe-s.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/superpowers.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/telegram-plane.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/telegram.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/think-peaks.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/twitch.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/typo3.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/uikit.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/viacoin.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/vuejs.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/windows.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/y-combinator.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/yahoo.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/yandex-international.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/yandex.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/arrow-alt-circle-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/arrow-alt-circle-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/arrow-alt-circle-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/arrow-alt-circle-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/bookmark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/calendar.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/caret-square-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/caret-square-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/caret-square-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/caret-square-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/clock.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/comment-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/dot-circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/file.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/folder-open.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/folder.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/meh-blank.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/minus-square.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/play-circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/square.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/star-half.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/sticky-note.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/stop-circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/window-maximize.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/window-minimize.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/window-restore.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/adjust.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/angle-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/angle-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/angle-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/angle-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/archive.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/archway.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/arrow-alt-circle-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/arrow-alt-circle-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/arrow-alt-circle-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/arrow-alt-circle-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/arrow-circle-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/arrow-circle-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/arrow-circle-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/arrow-circle-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/arrow-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/arrow-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/arrow-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/arrow-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/arrows-alt-v.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/backward.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/ban.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/bars.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/battery-empty.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/battery-full.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/battery-half.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/battery-quarter.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/battery-three-quarters.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/bed.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/bold.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/bolt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/bookmark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/border-all.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/bowling-ball.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/box.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/bread-slice.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/briefcase.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/brush.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/burn.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/calendar-day.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/calendar-week.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/calendar.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/caret-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/caret-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/caret-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/caret-square-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/caret-square-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/caret-square-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/caret-square-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/caret-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/chalkboard.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/chart-area.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/check.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/cheese.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/chess-king.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/chevron-circle-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/chevron-circle-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/chevron-circle-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/chevron-circle-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/chevron-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/chevron-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/chevron-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/chevron-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/clipboard.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/clock.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/clone.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/cloud.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/coffee.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/columns.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/comment-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/comment.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/compact-disc.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/concierge-bell.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/credit-card.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/crop-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/cross.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/cube.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/desktop.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/dice-one.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/dice-two.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/divide.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/door-closed.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/dot-circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/egg.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/eject.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/ellipsis-h.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/ellipsis-v.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/equals.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/eraser.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/ethernet.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/exclamation.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/eye.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/fast-backward.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/fast-forward.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/file.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/filter.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/fire.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/first-aid.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/flask.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/folder-minus.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/folder-open.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/folder.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/font.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/forward.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/gem.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/genderless.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/glass-martini-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/glass-martini.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/glass-whiskey.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/greater-than.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/grip-lines-vertical.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/grip-lines.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/hand-holding.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/hard-hat.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/heart-broken.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/heart.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/hockey-puck.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/hospital-symbol.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/ice-cream.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/icicles.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/image.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/inbox.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/industry.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/info.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/italic.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/laptop.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/laugh.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/less-than.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/level-down-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/level-up-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/location-arrow.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/lock-open.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/lock.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/long-arrow-alt-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/long-arrow-alt-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/long-arrow-alt-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/long-arrow-alt-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/male.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/map-marker-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/map-marker.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/map-pin.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/map.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/mars.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/meh-blank.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/meh.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/minus-circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/minus-square.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/minus.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/mitten.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/mobile-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/mobile.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/moon.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/mountain.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/mouse-pointer.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/mouse.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/music.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/neuter.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/pager.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/paper-plane.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/paragraph.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/parking.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/pause-circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/pause.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/pen.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/phone-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/phone.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/play-circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/play.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/plug.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/plus-circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/plus-square.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/plus.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/prescription-bottle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/qrcode.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/record-vinyl.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/reply.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/ruler-vertical.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/screwdriver.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/scroll.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/sd-card.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/seedling.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/shapes.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/share.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/shield-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/sign.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/sim-card.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/slash.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/sort-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/sort-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/sort.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/square-full.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/square.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/star-half.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/star.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/step-backward.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/step-forward.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/sticky-note.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/stop-circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/stop.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/store-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/stream.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/suitcase.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/surprise.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/table.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/tablet-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/tablet.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/tag.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/tape.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/tenge.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/tint.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/toggle-on.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/trash.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/tshirt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/tv.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/unlock.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/user-alt-slash.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/user-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/user-slash.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/user-tie.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/user.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/utensil-spoon.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/venus.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/vial.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/video.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/voicemail.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/volume-off.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/wallet.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/wave-square.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/window-maximize.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/window-minimize.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/window-restore.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/wine-glass-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/wine-glass.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/OpenCRE/834c8bc59106251741808ec3200ab602cea90bc5/application/static/assets/vendor/@fortawesome/fontawesome-free/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/OpenCRE/834c8bc59106251741808ec3200ab602cea90bc5/application/static/assets/vendor/@fortawesome/fontawesome-free/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/OpenCRE/834c8bc59106251741808ec3200ab602cea90bc5/application/static/assets/vendor/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/OpenCRE/834c8bc59106251741808ec3200ab602cea90bc5/application/static/assets/vendor/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/OpenCRE/834c8bc59106251741808ec3200ab602cea90bc5/application/static/assets/vendor/@fortawesome/fontawesome-free/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/OpenCRE/834c8bc59106251741808ec3200ab602cea90bc5/application/static/assets/vendor/@fortawesome/fontawesome-free/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/OpenCRE/834c8bc59106251741808ec3200ab602cea90bc5/application/static/assets/vendor/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/OpenCRE/834c8bc59106251741808ec3200ab602cea90bc5/application/static/assets/vendor/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/OpenCRE/834c8bc59106251741808ec3200ab602cea90bc5/application/static/assets/vendor/@fortawesome/fontawesome-free/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/OpenCRE/834c8bc59106251741808ec3200ab602cea90bc5/application/static/assets/vendor/@fortawesome/fontawesome-free/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/OpenCRE/834c8bc59106251741808ec3200ab602cea90bc5/application/static/assets/vendor/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /application/static/assets/vendor/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/OpenCRE/834c8bc59106251741808ec3200ab602cea90bc5/application/static/assets/vendor/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /application/static/assets/vendor/bootstrap-datepicker/dist/locales/bootstrap-datepicker.ja.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.ja={days:["日曜","月曜","火曜","水曜","木曜","金曜","土曜"],daysShort:["日","月","火","水","木","金","土"],daysMin:["日","月","火","水","木","金","土"],months:["1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月"],monthsShort:["1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月"],today:"今日",format:"yyyy/mm/dd",titleFormat:"yyyy年mm月",clear:"クリア"}}(jQuery); -------------------------------------------------------------------------------- /application/static/assets/vendor/bootstrap-datepicker/dist/locales/bootstrap-datepicker.ko.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.ko={days:["일요일","월요일","화요일","수요일","목요일","금요일","토요일"],daysShort:["일","월","화","수","목","금","토"],daysMin:["일","월","화","수","목","금","토"],months:["1월","2월","3월","4월","5월","6월","7월","8월","9월","10월","11월","12월"],monthsShort:["1월","2월","3월","4월","5월","6월","7월","8월","9월","10월","11월","12월"],today:"오늘",clear:"삭제",format:"yyyy-mm-dd",titleFormat:"yyyy년mm월",weekStart:0}}(jQuery); -------------------------------------------------------------------------------- /application/static/assets/vendor/bootstrap-datepicker/dist/locales/bootstrap-datepicker.zh-TW.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates["zh-TW"]={days:["星期日","星期一","星期二","星期三","星期四","星期五","星期六"],daysShort:["週日","週一","週二","週三","週四","週五","週六"],daysMin:["日","一","二","三","四","五","六"],months:["一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"],monthsShort:["1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月"],today:"今天",format:"yyyy年mm月dd日",weekStart:1,clear:"清除"}}(jQuery); -------------------------------------------------------------------------------- /application/static/assets/vendor/bootstrap-tagsinput/dist/bootstrap-tagsinput.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/OpenCRE/834c8bc59106251741808ec3200ab602cea90bc5/application/static/assets/vendor/bootstrap-tagsinput/dist/bootstrap-tagsinput.zip -------------------------------------------------------------------------------- /application/static/assets/vendor/jarallax/dist/jarallax.css: -------------------------------------------------------------------------------- 1 | .jarallax { 2 | position: relative; 3 | z-index: 0; 4 | } 5 | .jarallax > .jarallax-img { 6 | position: absolute; 7 | object-fit: cover; 8 | /* support for plugin https://github.com/bfred-it/object-fit-images */ 9 | font-family: 'object-fit: cover;'; 10 | top: 0; 11 | left: 0; 12 | width: 100%; 13 | height: 100%; 14 | z-index: -1; 15 | } -------------------------------------------------------------------------------- /application/templates/includes/footer.html: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 |
5 |
6 | 7 |
8 | 9 | 10 | 11 |
12 |
13 | 14 |
15 | 16 | 17 |
18 | -------------------------------------------------------------------------------- /application/templates/includes/preloader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/OpenCRE/834c8bc59106251741808ec3200ab602cea90bc5/application/templates/includes/preloader.html -------------------------------------------------------------------------------- /application/templates/page-blank.html: -------------------------------------------------------------------------------- 1 | {% extends "layouts/base.html" %} 2 | 3 | {% block title %} Blank {% endblock %} 4 | 5 | 6 | {% block stylesheets %}{% endblock stylesheets %} 7 | 8 | {% block content %} 9 | 10 | 11 | 12 | {% endblock content %} 13 | 14 | 15 | {% block javascripts %}{% endblock javascripts %} 16 | -------------------------------------------------------------------------------- /application/tests/.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | branch=True 3 | omit = */tests/* 4 | 5 | [report] 6 | exclude_lines = 7 | # Don't complain if non-runnable code isn't run: 8 | if __name__ == .__main__.: 9 | import * 10 | 11 | ignore_errors = False 12 | -------------------------------------------------------------------------------- /application/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/OpenCRE/834c8bc59106251741808ec3200ab602cea90bc5/application/tests/__init__.py -------------------------------------------------------------------------------- /application/utils/external_project_parsers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/OpenCRE/834c8bc59106251741808ec3200ab602cea90bc5/application/utils/external_project_parsers/__init__.py -------------------------------------------------------------------------------- /application/utils/external_project_parsers/parsers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/OpenCRE/834c8bc59106251741808ec3200ab602cea90bc5/application/utils/external_project_parsers/parsers/__init__.py -------------------------------------------------------------------------------- /application/utils/file.py: -------------------------------------------------------------------------------- 1 | import os 2 | from typing import Dict 3 | 4 | 5 | def writeToDisk(file_title: str, cres_loc: str, file_content: str) -> Dict[str, str]: 6 | with open(os.path.join(cres_loc, file_title), "w+", encoding="utf8") as fp: 7 | fp.write(file_content) 8 | return {file_title: file_content} 9 | -------------------------------------------------------------------------------- /application/utils/hash.py: -------------------------------------------------------------------------------- 1 | import hashlib 2 | from typing import List 3 | 4 | 5 | def make_subresources_key(standards: List[str], key: str) -> str: 6 | return str(make_resources_key(standards)) + "->" + key 7 | 8 | 9 | def make_resources_key(array: List[str]): 10 | return " >> ".join(array) 11 | -------------------------------------------------------------------------------- /application/web/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/OpenCRE/834c8bc59106251741808ec3200ab602cea90bc5/application/web/__init__.py -------------------------------------------------------------------------------- /application/worker.py: -------------------------------------------------------------------------------- 1 | from rq import Worker, Queue 2 | import logging 3 | from application.utils import redis 4 | 5 | logging.basicConfig() 6 | logger = logging.getLogger(__name__) 7 | logger.setLevel(logging.INFO) 8 | 9 | listen = ["high", "default", "low"] 10 | 11 | 12 | def start_worker(): 13 | logger.info(f"Worker Starting") 14 | worker = Worker(listen, connection=redis.connect()) 15 | worker.work() 16 | -------------------------------------------------------------------------------- /cypress.json: -------------------------------------------------------------------------------- 1 | { 2 | "video": false 3 | } 4 | -------------------------------------------------------------------------------- /docs/CREmappingtemplate.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/OpenCRE/834c8bc59106251741808ec3200ab602cea90bc5/docs/CREmappingtemplate.xls -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- 1 | For an overview, see this project’s [readme in the main folder](https://github.com/OWASP/OpenCRE/blob/main/README.md). -------------------------------------------------------------------------------- /enzyme-setup.js: -------------------------------------------------------------------------------- 1 | import Adapter from '@wojtekmaj/enzyme-adapter-react-17'; 2 | import { configure } from 'enzyme'; 3 | 4 | configure({ adapter: new Adapter() }); 5 | -------------------------------------------------------------------------------- /migrations/README: -------------------------------------------------------------------------------- 1 | Single-database configuration for Flask. 2 | -------------------------------------------------------------------------------- /scripts/prod-docker-entrypoint.sh: -------------------------------------------------------------------------------- 1 | #! /bin/bash 2 | 3 | export INSECURE_REQUESTS=1 4 | export FLASK_CONFIG="production" 5 | export FLASK_APP=`pwd`/cre.py 6 | flask db upgrade 7 | python /code/cre.py --upstream_sync 8 | gunicorn cre:app -b :5000 --timeout 90 9 | --------------------------------------------------------------------------------