├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.md │ ├── enhancement.md │ └── new-feature.md ├── PULL_REQUEST_TEMPLATE.md ├── labeler.yaml └── workflows │ ├── build.yaml │ ├── build_tool.yaml │ ├── cherry_pick.yaml │ ├── code-butler.yaml │ ├── codeql-analysis.yaml │ ├── gen.yaml │ ├── labeler.yaml │ ├── lint.yaml │ ├── plugin_release.yaml │ ├── prerelease.yaml │ ├── publish_binary.yaml │ ├── publish_image_chart.yaml │ ├── publish_pipedv1_exp.yaml │ ├── publish_site.yaml │ ├── publish_tool.yaml │ ├── release.yaml │ ├── stale.yaml │ └── test.yaml ├── .gitignore ├── .golangci.yml ├── ADOPTERS.md ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── MAINTAINERS.md ├── Makefile ├── NOTICE.txt ├── README.md ├── RELEASE ├── RELEASES.md ├── SECURITY.md ├── cmd ├── helloworld │ ├── Dockerfile │ └── main.go ├── launcher │ ├── Dockerfile │ ├── Dockerfile-okd │ ├── README.md │ └── main.go ├── pipecd │ ├── Dockerfile │ ├── README.md │ ├── main.go │ ├── ops.go │ └── server.go ├── pipectl │ ├── Dockerfile │ ├── README.md │ └── main.go ├── piped │ ├── Dockerfile │ ├── Dockerfile-okd │ ├── README.md │ └── main.go └── pipedv1 │ ├── Dockerfile │ ├── README-usage-alpha.md │ ├── README.md │ └── main.go ├── codecov.yml ├── docs ├── .gitignore ├── Dockerfile ├── README.md ├── assets │ ├── icons │ │ ├── logo.svg │ │ └── logo1.svg │ ├── images │ │ ├── automation.png │ │ ├── lp-logo.png │ │ ├── multi-provider.png │ │ ├── secure.png │ │ └── visibility.png │ ├── js │ │ ├── medium-zoom.js │ │ ├── navbar-version-selector.js │ │ └── offline-search.js │ └── scss │ │ ├── _nav.scss │ │ ├── _styles_project.scss │ │ └── _variables_project.scss ├── config.toml ├── content │ └── en │ │ ├── _index.html │ │ ├── blog │ │ ├── _index.md │ │ ├── announcing-pipecd.md │ │ ├── before-deployment.md │ │ ├── ci-cd-gap-fulfill-with-pipecd.md │ │ ├── cncf-sandbox-admission.md │ │ ├── control-plane-local-docker-compose.md │ │ ├── control-plane-on-ecs.md │ │ ├── eventwatcher-intro.md │ │ ├── february-2022-update.md │ │ ├── git-operation-performance-improvement.md │ │ ├── january-2022-update.md │ │ ├── may-2022-update.md │ │ ├── mcp-server-intro.md │ │ ├── migrate-control-plane-datastore-to-mysql.md │ │ ├── november-2021-update.md │ │ ├── pipecd-at-kubecon-eu-2024.md │ │ ├── pipecd-at-kubecon-hongkong-2024.md │ │ ├── pipecd-best-practice-01.md │ │ ├── play-environment.md │ │ ├── plugin-arch-piped-alpha.md │ │ ├── plugin-intro.md │ │ ├── terraform-provider-pipecd.md │ │ └── what-new-in-pipedv1.md │ │ ├── community │ │ └── _index.md │ │ ├── docs-dev │ │ ├── _index.md │ │ ├── concepts │ │ │ └── _index.md │ │ ├── contribution-guidelines │ │ │ ├── _index.md │ │ │ ├── architectural-overview.md │ │ │ ├── contributing-documentation.md │ │ │ └── contributing.md │ │ ├── examples │ │ │ └── _index.md │ │ ├── faq │ │ │ └── _index.md │ │ ├── feature-status │ │ │ └── _index.md │ │ ├── installation │ │ │ ├── _index.md │ │ │ ├── install-control-plane │ │ │ │ ├── _index.md │ │ │ │ ├── installing-controlplane-on-ECS.md │ │ │ │ └── installing-controlplane-on-k8s.md │ │ │ └── install-piped │ │ │ │ ├── _index.md │ │ │ │ ├── installing-on-cloudrun.md │ │ │ │ ├── installing-on-fargate.md │ │ │ │ ├── installing-on-google-cloud-vm.md │ │ │ │ ├── installing-on-kubernetes.md │ │ │ │ ├── installing-on-single-machine.md │ │ │ │ └── required-permissions.md │ │ ├── migrating-from-v0-to-v1 │ │ │ └── _index.md │ │ ├── overview │ │ │ └── _index.md │ │ ├── quickstart │ │ │ └── _index.md │ │ ├── releases │ │ │ └── _index.md │ │ └── user-guide │ │ │ ├── _index.md │ │ │ ├── command-line-tool.md │ │ │ ├── configuration-reference.md │ │ │ ├── deployment-trace.md │ │ │ ├── event-watcher.md │ │ │ ├── examples │ │ │ ├── _index.md │ │ │ ├── k8s-app-bluegreen-with-istio.md │ │ │ ├── k8s-app-bluegreen-with-pod-selector.md │ │ │ ├── k8s-app-canary-with-istio.md │ │ │ └── k8s-app-canary-with-pod-selector.md │ │ │ ├── insights.md │ │ │ ├── managing-application │ │ │ ├── _index.md │ │ │ ├── adding-an-application.md │ │ │ ├── application-live-state.md │ │ │ ├── cancelling-a-deployment.md │ │ │ ├── configuration-drift-detection.md │ │ │ ├── customizing-deployment │ │ │ │ ├── _index.md │ │ │ │ ├── adding-a-manual-approval.md │ │ │ │ ├── adding-a-wait-stage.md │ │ │ │ ├── automated-deployment-analysis.md │ │ │ │ ├── custom-sync.md │ │ │ │ └── script-run.md │ │ │ ├── defining-app-configuration │ │ │ │ ├── _index.md │ │ │ │ ├── cloudrun.md │ │ │ │ ├── ecs.md │ │ │ │ ├── kubernetes.md │ │ │ │ ├── lambda.md │ │ │ │ └── terraform.md │ │ │ ├── deployment-chain.md │ │ │ ├── manifest-attachment.md │ │ │ ├── rolling-back-a-deployment.md │ │ │ ├── secret-management.md │ │ │ └── triggering-a-deployment.md │ │ │ ├── managing-controlplane │ │ │ ├── _index.md │ │ │ ├── adding-a-project.md │ │ │ ├── architecture-overview.md │ │ │ ├── auth.md │ │ │ ├── configuration-reference.md │ │ │ └── registering-a-piped.md │ │ │ ├── managing-piped │ │ │ ├── _index.md │ │ │ ├── adding-a-git-repository.md │ │ │ ├── adding-a-platform-provider.md │ │ │ ├── adding-an-analysis-provider.md │ │ │ ├── adding-helm-chart-repository-or-registry.md │ │ │ ├── configuration-reference.md │ │ │ ├── configuring-event-watcher.md │ │ │ ├── configuring-notifications.md │ │ │ ├── remote-upgrade-remote-config.md │ │ │ ├── runtime-options.md │ │ │ └── using-pprof-in-piped.md │ │ │ ├── metrics.md │ │ │ ├── plan-preview.md │ │ │ └── terraform-provider-pipecd.md │ │ ├── docs-v0.39.x │ │ ├── _index.md │ │ ├── concepts │ │ │ └── _index.md │ │ ├── contribution-guidelines │ │ │ ├── _index.md │ │ │ ├── architectural-overview.md │ │ │ ├── contributing.md │ │ │ └── development.md │ │ ├── examples │ │ │ └── _index.md │ │ ├── faq │ │ │ └── _index.md │ │ ├── feature-status │ │ │ └── _index.md │ │ ├── installation │ │ │ ├── _index.md │ │ │ ├── install-controlplane.md │ │ │ └── install-piped │ │ │ │ ├── _index.md │ │ │ │ ├── installing-on-cloudrun.md │ │ │ │ ├── installing-on-fargate.md │ │ │ │ ├── installing-on-google-cloud-vm.md │ │ │ │ ├── installing-on-kubernetes.md │ │ │ │ └── installing-on-single-machine.md │ │ ├── overview │ │ │ └── _index.md │ │ ├── quickstart │ │ │ └── _index.md │ │ ├── releases │ │ │ └── _index.md │ │ └── user-guide │ │ │ ├── _index.md │ │ │ ├── command-line-tool.md │ │ │ ├── configuration-reference.md │ │ │ ├── event-watcher.md │ │ │ ├── examples │ │ │ ├── _index.md │ │ │ ├── k8s-app-bluegreen-with-istio.md │ │ │ ├── k8s-app-bluegreen-with-pod-selector.md │ │ │ ├── k8s-app-canary-with-istio.md │ │ │ └── k8s-app-canary-with-pod-selector.md │ │ │ ├── insights.md │ │ │ ├── managing-application │ │ │ ├── _index.md │ │ │ ├── adding-an-application.md │ │ │ ├── application-live-state.md │ │ │ ├── cancelling-a-deployment.md │ │ │ ├── configuration-drift-detection.md │ │ │ ├── customizing-deployment │ │ │ │ ├── _index.md │ │ │ │ ├── adding-a-manual-approval.md │ │ │ │ ├── adding-a-wait-stage.md │ │ │ │ └── automated-deployment-analysis.md │ │ │ ├── defining-app-configuration │ │ │ │ ├── _index.md │ │ │ │ ├── cloudrun.md │ │ │ │ ├── ecs.md │ │ │ │ ├── kubernetes.md │ │ │ │ ├── lambda.md │ │ │ │ └── terraform.md │ │ │ ├── deployment-chain.md │ │ │ ├── rolling-back-a-deployment.md │ │ │ ├── secret-management.md │ │ │ └── triggering-a-deployment.md │ │ │ ├── managing-controlplane │ │ │ ├── _index.md │ │ │ ├── adding-a-project.md │ │ │ ├── architecture-overview.md │ │ │ ├── auth.md │ │ │ ├── configuration-reference.md │ │ │ ├── metrics.md │ │ │ └── registering-a-piped.md │ │ │ ├── managing-piped │ │ │ ├── _index.md │ │ │ ├── adding-a-cloud-provider.md │ │ │ ├── adding-a-git-repository.md │ │ │ ├── adding-a-platform-provider.md │ │ │ ├── adding-an-analysis-provider.md │ │ │ ├── adding-helm-chart-repository-or-registry.md │ │ │ ├── configuration-reference.md │ │ │ ├── configuring-event-watcher.md │ │ │ ├── configuring-notifications.md │ │ │ └── remote-upgrade-remote-config.md │ │ │ └── plan-preview.md │ │ ├── docs-v0.40.x │ │ ├── _index.md │ │ ├── concepts │ │ │ └── _index.md │ │ ├── contribution-guidelines │ │ │ ├── _index.md │ │ │ ├── architectural-overview.md │ │ │ ├── contributing.md │ │ │ └── development.md │ │ ├── examples │ │ │ └── _index.md │ │ ├── faq │ │ │ └── _index.md │ │ ├── feature-status │ │ │ └── _index.md │ │ ├── installation │ │ │ ├── _index.md │ │ │ ├── install-controlplane.md │ │ │ └── install-piped │ │ │ │ ├── _index.md │ │ │ │ ├── installing-on-cloudrun.md │ │ │ │ ├── installing-on-fargate.md │ │ │ │ ├── installing-on-google-cloud-vm.md │ │ │ │ ├── installing-on-kubernetes.md │ │ │ │ └── installing-on-single-machine.md │ │ ├── overview │ │ │ └── _index.md │ │ ├── quickstart │ │ │ └── _index.md │ │ ├── releases │ │ │ └── _index.md │ │ └── user-guide │ │ │ ├── _index.md │ │ │ ├── command-line-tool.md │ │ │ ├── configuration-reference.md │ │ │ ├── event-watcher.md │ │ │ ├── examples │ │ │ ├── _index.md │ │ │ ├── k8s-app-bluegreen-with-istio.md │ │ │ ├── k8s-app-bluegreen-with-pod-selector.md │ │ │ ├── k8s-app-canary-with-istio.md │ │ │ └── k8s-app-canary-with-pod-selector.md │ │ │ ├── insights.md │ │ │ ├── managing-application │ │ │ ├── _index.md │ │ │ ├── adding-an-application.md │ │ │ ├── application-live-state.md │ │ │ ├── cancelling-a-deployment.md │ │ │ ├── configuration-drift-detection.md │ │ │ ├── customizing-deployment │ │ │ │ ├── _index.md │ │ │ │ ├── adding-a-manual-approval.md │ │ │ │ ├── adding-a-wait-stage.md │ │ │ │ └── automated-deployment-analysis.md │ │ │ ├── defining-app-configuration │ │ │ │ ├── _index.md │ │ │ │ ├── cloudrun.md │ │ │ │ ├── ecs.md │ │ │ │ ├── kubernetes.md │ │ │ │ ├── lambda.md │ │ │ │ └── terraform.md │ │ │ ├── deployment-chain.md │ │ │ ├── rolling-back-a-deployment.md │ │ │ ├── secret-management.md │ │ │ └── triggering-a-deployment.md │ │ │ ├── managing-controlplane │ │ │ ├── _index.md │ │ │ ├── adding-a-project.md │ │ │ ├── architecture-overview.md │ │ │ ├── auth.md │ │ │ ├── configuration-reference.md │ │ │ ├── metrics.md │ │ │ └── registering-a-piped.md │ │ │ ├── managing-piped │ │ │ ├── _index.md │ │ │ ├── adding-a-cloud-provider.md │ │ │ ├── adding-a-git-repository.md │ │ │ ├── adding-a-platform-provider.md │ │ │ ├── adding-an-analysis-provider.md │ │ │ ├── adding-helm-chart-repository-or-registry.md │ │ │ ├── configuration-reference.md │ │ │ ├── configuring-event-watcher.md │ │ │ ├── configuring-notifications.md │ │ │ └── remote-upgrade-remote-config.md │ │ │ └── plan-preview.md │ │ ├── docs-v0.41.x │ │ ├── _index.md │ │ ├── concepts │ │ │ └── _index.md │ │ ├── contribution-guidelines │ │ │ ├── _index.md │ │ │ ├── architectural-overview.md │ │ │ ├── contributing.md │ │ │ └── development.md │ │ ├── examples │ │ │ └── _index.md │ │ ├── faq │ │ │ └── _index.md │ │ ├── feature-status │ │ │ └── _index.md │ │ ├── installation │ │ │ ├── _index.md │ │ │ ├── install-controlplane.md │ │ │ └── install-piped │ │ │ │ ├── _index.md │ │ │ │ ├── installing-on-cloudrun.md │ │ │ │ ├── installing-on-fargate.md │ │ │ │ ├── installing-on-google-cloud-vm.md │ │ │ │ ├── installing-on-kubernetes.md │ │ │ │ └── installing-on-single-machine.md │ │ ├── overview │ │ │ └── _index.md │ │ ├── quickstart │ │ │ └── _index.md │ │ ├── releases │ │ │ └── _index.md │ │ └── user-guide │ │ │ ├── _index.md │ │ │ ├── command-line-tool.md │ │ │ ├── configuration-reference.md │ │ │ ├── event-watcher.md │ │ │ ├── examples │ │ │ ├── _index.md │ │ │ ├── k8s-app-bluegreen-with-istio.md │ │ │ ├── k8s-app-bluegreen-with-pod-selector.md │ │ │ ├── k8s-app-canary-with-istio.md │ │ │ └── k8s-app-canary-with-pod-selector.md │ │ │ ├── insights.md │ │ │ ├── managing-application │ │ │ ├── _index.md │ │ │ ├── adding-an-application.md │ │ │ ├── application-live-state.md │ │ │ ├── cancelling-a-deployment.md │ │ │ ├── configuration-drift-detection.md │ │ │ ├── customizing-deployment │ │ │ │ ├── _index.md │ │ │ │ ├── adding-a-manual-approval.md │ │ │ │ ├── adding-a-wait-stage.md │ │ │ │ └── automated-deployment-analysis.md │ │ │ ├── defining-app-configuration │ │ │ │ ├── _index.md │ │ │ │ ├── cloudrun.md │ │ │ │ ├── ecs.md │ │ │ │ ├── kubernetes.md │ │ │ │ ├── lambda.md │ │ │ │ └── terraform.md │ │ │ ├── deployment-chain.md │ │ │ ├── rolling-back-a-deployment.md │ │ │ ├── secret-management.md │ │ │ └── triggering-a-deployment.md │ │ │ ├── managing-controlplane │ │ │ ├── _index.md │ │ │ ├── adding-a-project.md │ │ │ ├── architecture-overview.md │ │ │ ├── auth.md │ │ │ ├── configuration-reference.md │ │ │ ├── metrics.md │ │ │ └── registering-a-piped.md │ │ │ ├── managing-piped │ │ │ ├── _index.md │ │ │ ├── adding-a-cloud-provider.md │ │ │ ├── adding-a-git-repository.md │ │ │ ├── adding-a-platform-provider.md │ │ │ ├── adding-an-analysis-provider.md │ │ │ ├── adding-helm-chart-repository-or-registry.md │ │ │ ├── configuration-reference.md │ │ │ ├── configuring-event-watcher.md │ │ │ ├── configuring-notifications.md │ │ │ └── remote-upgrade-remote-config.md │ │ │ └── plan-preview.md │ │ ├── docs-v0.42.x │ │ ├── _index.md │ │ ├── concepts │ │ │ └── _index.md │ │ ├── contribution-guidelines │ │ │ ├── _index.md │ │ │ ├── architectural-overview.md │ │ │ ├── contributing.md │ │ │ └── development.md │ │ ├── examples │ │ │ └── _index.md │ │ ├── faq │ │ │ └── _index.md │ │ ├── feature-status │ │ │ └── _index.md │ │ ├── installation │ │ │ ├── _index.md │ │ │ ├── install-controlplane.md │ │ │ └── install-piped │ │ │ │ ├── _index.md │ │ │ │ ├── installing-on-cloudrun.md │ │ │ │ ├── installing-on-fargate.md │ │ │ │ ├── installing-on-google-cloud-vm.md │ │ │ │ ├── installing-on-kubernetes.md │ │ │ │ └── installing-on-single-machine.md │ │ ├── overview │ │ │ └── _index.md │ │ ├── quickstart │ │ │ └── _index.md │ │ ├── releases │ │ │ └── _index.md │ │ └── user-guide │ │ │ ├── _index.md │ │ │ ├── command-line-tool.md │ │ │ ├── configuration-reference.md │ │ │ ├── event-watcher.md │ │ │ ├── examples │ │ │ ├── _index.md │ │ │ ├── k8s-app-bluegreen-with-istio.md │ │ │ ├── k8s-app-bluegreen-with-pod-selector.md │ │ │ ├── k8s-app-canary-with-istio.md │ │ │ └── k8s-app-canary-with-pod-selector.md │ │ │ ├── insights.md │ │ │ ├── managing-application │ │ │ ├── _index.md │ │ │ ├── adding-an-application.md │ │ │ ├── application-live-state.md │ │ │ ├── cancelling-a-deployment.md │ │ │ ├── configuration-drift-detection.md │ │ │ ├── customizing-deployment │ │ │ │ ├── _index.md │ │ │ │ ├── adding-a-manual-approval.md │ │ │ │ ├── adding-a-wait-stage.md │ │ │ │ └── automated-deployment-analysis.md │ │ │ ├── defining-app-configuration │ │ │ │ ├── _index.md │ │ │ │ ├── cloudrun.md │ │ │ │ ├── ecs.md │ │ │ │ ├── kubernetes.md │ │ │ │ ├── lambda.md │ │ │ │ └── terraform.md │ │ │ ├── deployment-chain.md │ │ │ ├── rolling-back-a-deployment.md │ │ │ ├── secret-management.md │ │ │ └── triggering-a-deployment.md │ │ │ ├── managing-controlplane │ │ │ ├── _index.md │ │ │ ├── adding-a-project.md │ │ │ ├── architecture-overview.md │ │ │ ├── auth.md │ │ │ ├── configuration-reference.md │ │ │ ├── metrics.md │ │ │ └── registering-a-piped.md │ │ │ ├── managing-piped │ │ │ ├── _index.md │ │ │ ├── adding-a-cloud-provider.md │ │ │ ├── adding-a-git-repository.md │ │ │ ├── adding-a-platform-provider.md │ │ │ ├── adding-an-analysis-provider.md │ │ │ ├── adding-helm-chart-repository-or-registry.md │ │ │ ├── configuration-reference.md │ │ │ ├── configuring-event-watcher.md │ │ │ ├── configuring-notifications.md │ │ │ └── remote-upgrade-remote-config.md │ │ │ └── plan-preview.md │ │ ├── docs-v0.43.x │ │ ├── _index.md │ │ ├── concepts │ │ │ └── _index.md │ │ ├── contribution-guidelines │ │ │ ├── _index.md │ │ │ ├── architectural-overview.md │ │ │ ├── contributing.md │ │ │ └── development.md │ │ ├── examples │ │ │ └── _index.md │ │ ├── faq │ │ │ └── _index.md │ │ ├── feature-status │ │ │ └── _index.md │ │ ├── installation │ │ │ ├── _index.md │ │ │ ├── install-controlplane.md │ │ │ └── install-piped │ │ │ │ ├── _index.md │ │ │ │ ├── installing-on-cloudrun.md │ │ │ │ ├── installing-on-fargate.md │ │ │ │ ├── installing-on-google-cloud-vm.md │ │ │ │ ├── installing-on-kubernetes.md │ │ │ │ └── installing-on-single-machine.md │ │ ├── overview │ │ │ └── _index.md │ │ ├── quickstart │ │ │ └── _index.md │ │ ├── releases │ │ │ └── _index.md │ │ └── user-guide │ │ │ ├── _index.md │ │ │ ├── command-line-tool.md │ │ │ ├── configuration-reference.md │ │ │ ├── event-watcher.md │ │ │ ├── examples │ │ │ ├── _index.md │ │ │ ├── k8s-app-bluegreen-with-istio.md │ │ │ ├── k8s-app-bluegreen-with-pod-selector.md │ │ │ ├── k8s-app-canary-with-istio.md │ │ │ └── k8s-app-canary-with-pod-selector.md │ │ │ ├── insights.md │ │ │ ├── managing-application │ │ │ ├── _index.md │ │ │ ├── adding-an-application.md │ │ │ ├── application-live-state.md │ │ │ ├── cancelling-a-deployment.md │ │ │ ├── configuration-drift-detection.md │ │ │ ├── customizing-deployment │ │ │ │ ├── _index.md │ │ │ │ ├── adding-a-manual-approval.md │ │ │ │ ├── adding-a-wait-stage.md │ │ │ │ └── automated-deployment-analysis.md │ │ │ ├── defining-app-configuration │ │ │ │ ├── _index.md │ │ │ │ ├── cloudrun.md │ │ │ │ ├── ecs.md │ │ │ │ ├── kubernetes.md │ │ │ │ ├── lambda.md │ │ │ │ └── terraform.md │ │ │ ├── deployment-chain.md │ │ │ ├── rolling-back-a-deployment.md │ │ │ ├── secret-management.md │ │ │ └── triggering-a-deployment.md │ │ │ ├── managing-controlplane │ │ │ ├── _index.md │ │ │ ├── adding-a-project.md │ │ │ ├── architecture-overview.md │ │ │ ├── auth.md │ │ │ ├── configuration-reference.md │ │ │ ├── metrics.md │ │ │ └── registering-a-piped.md │ │ │ ├── managing-piped │ │ │ ├── _index.md │ │ │ ├── adding-a-cloud-provider.md │ │ │ ├── adding-a-git-repository.md │ │ │ ├── adding-a-platform-provider.md │ │ │ ├── adding-an-analysis-provider.md │ │ │ ├── adding-helm-chart-repository-or-registry.md │ │ │ ├── configuration-reference.md │ │ │ ├── configuring-event-watcher.md │ │ │ ├── configuring-notifications.md │ │ │ └── remote-upgrade-remote-config.md │ │ │ └── plan-preview.md │ │ ├── docs-v0.44.x │ │ ├── _index.md │ │ ├── concepts │ │ │ └── _index.md │ │ ├── contribution-guidelines │ │ │ ├── _index.md │ │ │ ├── architectural-overview.md │ │ │ └── contributing.md │ │ ├── examples │ │ │ └── _index.md │ │ ├── faq │ │ │ └── _index.md │ │ ├── feature-status │ │ │ └── _index.md │ │ ├── installation │ │ │ ├── _index.md │ │ │ ├── install-controlplane.md │ │ │ └── install-piped │ │ │ │ ├── _index.md │ │ │ │ ├── installing-on-cloudrun.md │ │ │ │ ├── installing-on-fargate.md │ │ │ │ ├── installing-on-google-cloud-vm.md │ │ │ │ ├── installing-on-kubernetes.md │ │ │ │ └── installing-on-single-machine.md │ │ ├── overview │ │ │ └── _index.md │ │ ├── quickstart │ │ │ └── _index.md │ │ ├── releases │ │ │ └── _index.md │ │ └── user-guide │ │ │ ├── _index.md │ │ │ ├── command-line-tool.md │ │ │ ├── configuration-reference.md │ │ │ ├── event-watcher.md │ │ │ ├── examples │ │ │ ├── _index.md │ │ │ ├── k8s-app-bluegreen-with-istio.md │ │ │ ├── k8s-app-bluegreen-with-pod-selector.md │ │ │ ├── k8s-app-canary-with-istio.md │ │ │ └── k8s-app-canary-with-pod-selector.md │ │ │ ├── insights.md │ │ │ ├── managing-application │ │ │ ├── _index.md │ │ │ ├── adding-an-application.md │ │ │ ├── application-live-state.md │ │ │ ├── cancelling-a-deployment.md │ │ │ ├── configuration-drift-detection.md │ │ │ ├── customizing-deployment │ │ │ │ ├── _index.md │ │ │ │ ├── adding-a-manual-approval.md │ │ │ │ ├── adding-a-wait-stage.md │ │ │ │ ├── automated-deployment-analysis.md │ │ │ │ └── custom-sync.md │ │ │ ├── defining-app-configuration │ │ │ │ ├── _index.md │ │ │ │ ├── cloudrun.md │ │ │ │ ├── ecs.md │ │ │ │ ├── kubernetes.md │ │ │ │ ├── lambda.md │ │ │ │ └── terraform.md │ │ │ ├── deployment-chain.md │ │ │ ├── manifest-attachment.md │ │ │ ├── rolling-back-a-deployment.md │ │ │ ├── secret-management.md │ │ │ └── triggering-a-deployment.md │ │ │ ├── managing-controlplane │ │ │ ├── _index.md │ │ │ ├── adding-a-project.md │ │ │ ├── architecture-overview.md │ │ │ ├── auth.md │ │ │ ├── configuration-reference.md │ │ │ └── registering-a-piped.md │ │ │ ├── managing-piped │ │ │ ├── _index.md │ │ │ ├── adding-a-cloud-provider.md │ │ │ ├── adding-a-git-repository.md │ │ │ ├── adding-a-platform-provider.md │ │ │ ├── adding-an-analysis-provider.md │ │ │ ├── adding-helm-chart-repository-or-registry.md │ │ │ ├── configuration-reference.md │ │ │ ├── configuring-event-watcher.md │ │ │ ├── configuring-notifications.md │ │ │ └── remote-upgrade-remote-config.md │ │ │ ├── metrics.md │ │ │ ├── plan-preview.md │ │ │ └── terraform-provider-pipecd.md │ │ ├── docs-v0.45.x │ │ ├── _index.md │ │ ├── concepts │ │ │ └── _index.md │ │ ├── contribution-guidelines │ │ │ ├── _index.md │ │ │ ├── architectural-overview.md │ │ │ └── contributing.md │ │ ├── examples │ │ │ └── _index.md │ │ ├── faq │ │ │ └── _index.md │ │ ├── feature-status │ │ │ └── _index.md │ │ ├── installation │ │ │ ├── _index.md │ │ │ ├── install-control-plane │ │ │ │ ├── _index.md │ │ │ │ ├── installing-controlplane-on-ECS.md │ │ │ │ └── installing-controlplane-on-k8s.md │ │ │ └── install-piped │ │ │ │ ├── _index.md │ │ │ │ ├── installing-on-cloudrun.md │ │ │ │ ├── installing-on-fargate.md │ │ │ │ ├── installing-on-google-cloud-vm.md │ │ │ │ ├── installing-on-kubernetes.md │ │ │ │ └── installing-on-single-machine.md │ │ ├── overview │ │ │ └── _index.md │ │ ├── quickstart │ │ │ └── _index.md │ │ ├── releases │ │ │ └── _index.md │ │ └── user-guide │ │ │ ├── _index.md │ │ │ ├── command-line-tool.md │ │ │ ├── configuration-reference.md │ │ │ ├── event-watcher.md │ │ │ ├── examples │ │ │ ├── _index.md │ │ │ ├── k8s-app-bluegreen-with-istio.md │ │ │ ├── k8s-app-bluegreen-with-pod-selector.md │ │ │ ├── k8s-app-canary-with-istio.md │ │ │ └── k8s-app-canary-with-pod-selector.md │ │ │ ├── insights.md │ │ │ ├── managing-application │ │ │ ├── _index.md │ │ │ ├── adding-an-application.md │ │ │ ├── application-live-state.md │ │ │ ├── cancelling-a-deployment.md │ │ │ ├── configuration-drift-detection.md │ │ │ ├── customizing-deployment │ │ │ │ ├── _index.md │ │ │ │ ├── adding-a-manual-approval.md │ │ │ │ ├── adding-a-wait-stage.md │ │ │ │ ├── automated-deployment-analysis.md │ │ │ │ └── custom-sync.md │ │ │ ├── defining-app-configuration │ │ │ │ ├── _index.md │ │ │ │ ├── cloudrun.md │ │ │ │ ├── ecs.md │ │ │ │ ├── kubernetes.md │ │ │ │ ├── lambda.md │ │ │ │ └── terraform.md │ │ │ ├── deployment-chain.md │ │ │ ├── manifest-attachment.md │ │ │ ├── rolling-back-a-deployment.md │ │ │ ├── secret-management.md │ │ │ └── triggering-a-deployment.md │ │ │ ├── managing-controlplane │ │ │ ├── _index.md │ │ │ ├── adding-a-project.md │ │ │ ├── architecture-overview.md │ │ │ ├── auth.md │ │ │ ├── configuration-reference.md │ │ │ └── registering-a-piped.md │ │ │ ├── managing-piped │ │ │ ├── _index.md │ │ │ ├── adding-a-cloud-provider.md │ │ │ ├── adding-a-git-repository.md │ │ │ ├── adding-a-platform-provider.md │ │ │ ├── adding-an-analysis-provider.md │ │ │ ├── adding-helm-chart-repository-or-registry.md │ │ │ ├── configuration-reference.md │ │ │ ├── configuring-event-watcher.md │ │ │ ├── configuring-notifications.md │ │ │ ├── remote-upgrade-remote-config.md │ │ │ └── using-pprof-in-piped.md │ │ │ ├── metrics.md │ │ │ ├── plan-preview.md │ │ │ └── terraform-provider-pipecd.md │ │ ├── docs-v0.46.x │ │ ├── _index.md │ │ ├── concepts │ │ │ └── _index.md │ │ ├── contribution-guidelines │ │ │ ├── _index.md │ │ │ ├── architectural-overview.md │ │ │ └── contributing.md │ │ ├── examples │ │ │ └── _index.md │ │ ├── faq │ │ │ └── _index.md │ │ ├── feature-status │ │ │ └── _index.md │ │ ├── installation │ │ │ ├── _index.md │ │ │ ├── install-control-plane │ │ │ │ ├── _index.md │ │ │ │ ├── installing-controlplane-on-ECS.md │ │ │ │ └── installing-controlplane-on-k8s.md │ │ │ └── install-piped │ │ │ │ ├── _index.md │ │ │ │ ├── installing-on-cloudrun.md │ │ │ │ ├── installing-on-fargate.md │ │ │ │ ├── installing-on-google-cloud-vm.md │ │ │ │ ├── installing-on-kubernetes.md │ │ │ │ └── installing-on-single-machine.md │ │ ├── overview │ │ │ └── _index.md │ │ ├── quickstart │ │ │ └── _index.md │ │ ├── releases │ │ │ └── _index.md │ │ └── user-guide │ │ │ ├── _index.md │ │ │ ├── command-line-tool.md │ │ │ ├── configuration-reference.md │ │ │ ├── event-watcher.md │ │ │ ├── examples │ │ │ ├── _index.md │ │ │ ├── k8s-app-bluegreen-with-istio.md │ │ │ ├── k8s-app-bluegreen-with-pod-selector.md │ │ │ ├── k8s-app-canary-with-istio.md │ │ │ └── k8s-app-canary-with-pod-selector.md │ │ │ ├── insights.md │ │ │ ├── managing-application │ │ │ ├── _index.md │ │ │ ├── adding-an-application.md │ │ │ ├── application-live-state.md │ │ │ ├── cancelling-a-deployment.md │ │ │ ├── configuration-drift-detection.md │ │ │ ├── customizing-deployment │ │ │ │ ├── _index.md │ │ │ │ ├── adding-a-manual-approval.md │ │ │ │ ├── adding-a-wait-stage.md │ │ │ │ ├── automated-deployment-analysis.md │ │ │ │ ├── custom-sync.md │ │ │ │ └── script-run.md │ │ │ ├── defining-app-configuration │ │ │ │ ├── _index.md │ │ │ │ ├── cloudrun.md │ │ │ │ ├── ecs.md │ │ │ │ ├── kubernetes.md │ │ │ │ ├── lambda.md │ │ │ │ └── terraform.md │ │ │ ├── deployment-chain.md │ │ │ ├── manifest-attachment.md │ │ │ ├── rolling-back-a-deployment.md │ │ │ ├── secret-management.md │ │ │ └── triggering-a-deployment.md │ │ │ ├── managing-controlplane │ │ │ ├── _index.md │ │ │ ├── adding-a-project.md │ │ │ ├── architecture-overview.md │ │ │ ├── auth.md │ │ │ ├── configuration-reference.md │ │ │ └── registering-a-piped.md │ │ │ ├── managing-piped │ │ │ ├── _index.md │ │ │ ├── adding-a-cloud-provider.md │ │ │ ├── adding-a-git-repository.md │ │ │ ├── adding-a-platform-provider.md │ │ │ ├── adding-an-analysis-provider.md │ │ │ ├── adding-helm-chart-repository-or-registry.md │ │ │ ├── configuration-reference.md │ │ │ ├── configuring-event-watcher.md │ │ │ ├── configuring-notifications.md │ │ │ ├── remote-upgrade-remote-config.md │ │ │ ├── runtime-options.md │ │ │ └── using-pprof-in-piped.md │ │ │ ├── metrics.md │ │ │ ├── plan-preview.md │ │ │ └── terraform-provider-pipecd.md │ │ ├── docs-v0.47.x │ │ ├── _index.md │ │ ├── concepts │ │ │ └── _index.md │ │ ├── contribution-guidelines │ │ │ ├── _index.md │ │ │ ├── architectural-overview.md │ │ │ └── contributing.md │ │ ├── examples │ │ │ └── _index.md │ │ ├── faq │ │ │ └── _index.md │ │ ├── feature-status │ │ │ └── _index.md │ │ ├── installation │ │ │ ├── _index.md │ │ │ ├── install-control-plane │ │ │ │ ├── _index.md │ │ │ │ ├── installing-controlplane-on-ECS.md │ │ │ │ └── installing-controlplane-on-k8s.md │ │ │ └── install-piped │ │ │ │ ├── _index.md │ │ │ │ ├── installing-on-cloudrun.md │ │ │ │ ├── installing-on-fargate.md │ │ │ │ ├── installing-on-google-cloud-vm.md │ │ │ │ ├── installing-on-kubernetes.md │ │ │ │ ├── installing-on-single-machine.md │ │ │ │ └── required-permissions.md │ │ ├── overview │ │ │ └── _index.md │ │ ├── quickstart │ │ │ └── _index.md │ │ ├── releases │ │ │ └── _index.md │ │ └── user-guide │ │ │ ├── _index.md │ │ │ ├── command-line-tool.md │ │ │ ├── configuration-reference.md │ │ │ ├── event-watcher.md │ │ │ ├── examples │ │ │ ├── _index.md │ │ │ ├── k8s-app-bluegreen-with-istio.md │ │ │ ├── k8s-app-bluegreen-with-pod-selector.md │ │ │ ├── k8s-app-canary-with-istio.md │ │ │ └── k8s-app-canary-with-pod-selector.md │ │ │ ├── insights.md │ │ │ ├── managing-application │ │ │ ├── _index.md │ │ │ ├── adding-an-application.md │ │ │ ├── application-live-state.md │ │ │ ├── cancelling-a-deployment.md │ │ │ ├── configuration-drift-detection.md │ │ │ ├── customizing-deployment │ │ │ │ ├── _index.md │ │ │ │ ├── adding-a-manual-approval.md │ │ │ │ ├── adding-a-wait-stage.md │ │ │ │ ├── automated-deployment-analysis.md │ │ │ │ ├── custom-sync.md │ │ │ │ └── script-run.md │ │ │ ├── defining-app-configuration │ │ │ │ ├── _index.md │ │ │ │ ├── cloudrun.md │ │ │ │ ├── ecs.md │ │ │ │ ├── kubernetes.md │ │ │ │ ├── lambda.md │ │ │ │ └── terraform.md │ │ │ ├── deployment-chain.md │ │ │ ├── manifest-attachment.md │ │ │ ├── rolling-back-a-deployment.md │ │ │ ├── secret-management.md │ │ │ └── triggering-a-deployment.md │ │ │ ├── managing-controlplane │ │ │ ├── _index.md │ │ │ ├── adding-a-project.md │ │ │ ├── architecture-overview.md │ │ │ ├── auth.md │ │ │ ├── configuration-reference.md │ │ │ └── registering-a-piped.md │ │ │ ├── managing-piped │ │ │ ├── _index.md │ │ │ ├── adding-a-cloud-provider.md │ │ │ ├── adding-a-git-repository.md │ │ │ ├── adding-a-platform-provider.md │ │ │ ├── adding-an-analysis-provider.md │ │ │ ├── adding-helm-chart-repository-or-registry.md │ │ │ ├── configuration-reference.md │ │ │ ├── configuring-event-watcher.md │ │ │ ├── configuring-notifications.md │ │ │ ├── remote-upgrade-remote-config.md │ │ │ ├── runtime-options.md │ │ │ └── using-pprof-in-piped.md │ │ │ ├── metrics.md │ │ │ ├── plan-preview.md │ │ │ └── terraform-provider-pipecd.md │ │ ├── docs-v0.48.x │ │ ├── _index.md │ │ ├── concepts │ │ │ └── _index.md │ │ ├── contribution-guidelines │ │ │ ├── _index.md │ │ │ ├── architectural-overview.md │ │ │ └── contributing.md │ │ ├── examples │ │ │ └── _index.md │ │ ├── faq │ │ │ └── _index.md │ │ ├── feature-status │ │ │ └── _index.md │ │ ├── installation │ │ │ ├── _index.md │ │ │ ├── install-control-plane │ │ │ │ ├── _index.md │ │ │ │ ├── installing-controlplane-on-ECS.md │ │ │ │ └── installing-controlplane-on-k8s.md │ │ │ └── install-piped │ │ │ │ ├── _index.md │ │ │ │ ├── installing-on-cloudrun.md │ │ │ │ ├── installing-on-fargate.md │ │ │ │ ├── installing-on-google-cloud-vm.md │ │ │ │ ├── installing-on-kubernetes.md │ │ │ │ ├── installing-on-single-machine.md │ │ │ │ └── required-permissions.md │ │ ├── overview │ │ │ └── _index.md │ │ ├── quickstart │ │ │ └── _index.md │ │ ├── releases │ │ │ └── _index.md │ │ └── user-guide │ │ │ ├── _index.md │ │ │ ├── command-line-tool.md │ │ │ ├── configuration-reference.md │ │ │ ├── event-watcher.md │ │ │ ├── examples │ │ │ ├── _index.md │ │ │ ├── k8s-app-bluegreen-with-istio.md │ │ │ ├── k8s-app-bluegreen-with-pod-selector.md │ │ │ ├── k8s-app-canary-with-istio.md │ │ │ └── k8s-app-canary-with-pod-selector.md │ │ │ ├── insights.md │ │ │ ├── managing-application │ │ │ ├── _index.md │ │ │ ├── adding-an-application.md │ │ │ ├── application-live-state.md │ │ │ ├── cancelling-a-deployment.md │ │ │ ├── configuration-drift-detection.md │ │ │ ├── customizing-deployment │ │ │ │ ├── _index.md │ │ │ │ ├── adding-a-manual-approval.md │ │ │ │ ├── adding-a-wait-stage.md │ │ │ │ ├── automated-deployment-analysis.md │ │ │ │ ├── custom-sync.md │ │ │ │ └── script-run.md │ │ │ ├── defining-app-configuration │ │ │ │ ├── _index.md │ │ │ │ ├── cloudrun.md │ │ │ │ ├── ecs.md │ │ │ │ ├── kubernetes.md │ │ │ │ ├── lambda.md │ │ │ │ └── terraform.md │ │ │ ├── deployment-chain.md │ │ │ ├── manifest-attachment.md │ │ │ ├── rolling-back-a-deployment.md │ │ │ ├── secret-management.md │ │ │ └── triggering-a-deployment.md │ │ │ ├── managing-controlplane │ │ │ ├── _index.md │ │ │ ├── adding-a-project.md │ │ │ ├── architecture-overview.md │ │ │ ├── auth.md │ │ │ ├── configuration-reference.md │ │ │ └── registering-a-piped.md │ │ │ ├── managing-piped │ │ │ ├── _index.md │ │ │ ├── adding-a-cloud-provider.md │ │ │ ├── adding-a-git-repository.md │ │ │ ├── adding-a-platform-provider.md │ │ │ ├── adding-an-analysis-provider.md │ │ │ ├── adding-helm-chart-repository-or-registry.md │ │ │ ├── configuration-reference.md │ │ │ ├── configuring-event-watcher.md │ │ │ ├── configuring-notifications.md │ │ │ ├── remote-upgrade-remote-config.md │ │ │ ├── runtime-options.md │ │ │ └── using-pprof-in-piped.md │ │ │ ├── metrics.md │ │ │ ├── plan-preview.md │ │ │ └── terraform-provider-pipecd.md │ │ ├── docs-v0.49.x │ │ ├── _index.md │ │ ├── concepts │ │ │ └── _index.md │ │ ├── contribution-guidelines │ │ │ ├── _index.md │ │ │ ├── architectural-overview.md │ │ │ └── contributing.md │ │ ├── examples │ │ │ └── _index.md │ │ ├── faq │ │ │ └── _index.md │ │ ├── feature-status │ │ │ └── _index.md │ │ ├── installation │ │ │ ├── _index.md │ │ │ ├── install-control-plane │ │ │ │ ├── _index.md │ │ │ │ ├── installing-controlplane-on-ECS.md │ │ │ │ └── installing-controlplane-on-k8s.md │ │ │ └── install-piped │ │ │ │ ├── _index.md │ │ │ │ ├── installing-on-cloudrun.md │ │ │ │ ├── installing-on-fargate.md │ │ │ │ ├── installing-on-google-cloud-vm.md │ │ │ │ ├── installing-on-kubernetes.md │ │ │ │ ├── installing-on-single-machine.md │ │ │ │ └── required-permissions.md │ │ ├── overview │ │ │ └── _index.md │ │ ├── quickstart │ │ │ └── _index.md │ │ ├── releases │ │ │ └── _index.md │ │ └── user-guide │ │ │ ├── _index.md │ │ │ ├── command-line-tool.md │ │ │ ├── configuration-reference.md │ │ │ ├── event-watcher.md │ │ │ ├── examples │ │ │ ├── _index.md │ │ │ ├── k8s-app-bluegreen-with-istio.md │ │ │ ├── k8s-app-bluegreen-with-pod-selector.md │ │ │ ├── k8s-app-canary-with-istio.md │ │ │ └── k8s-app-canary-with-pod-selector.md │ │ │ ├── insights.md │ │ │ ├── managing-application │ │ │ ├── _index.md │ │ │ ├── adding-an-application.md │ │ │ ├── application-live-state.md │ │ │ ├── cancelling-a-deployment.md │ │ │ ├── configuration-drift-detection.md │ │ │ ├── customizing-deployment │ │ │ │ ├── _index.md │ │ │ │ ├── adding-a-manual-approval.md │ │ │ │ ├── adding-a-wait-stage.md │ │ │ │ ├── automated-deployment-analysis.md │ │ │ │ ├── custom-sync.md │ │ │ │ └── script-run.md │ │ │ ├── defining-app-configuration │ │ │ │ ├── _index.md │ │ │ │ ├── cloudrun.md │ │ │ │ ├── ecs.md │ │ │ │ ├── kubernetes.md │ │ │ │ ├── lambda.md │ │ │ │ └── terraform.md │ │ │ ├── deployment-chain.md │ │ │ ├── manifest-attachment.md │ │ │ ├── rolling-back-a-deployment.md │ │ │ ├── secret-management.md │ │ │ └── triggering-a-deployment.md │ │ │ ├── managing-controlplane │ │ │ ├── _index.md │ │ │ ├── adding-a-project.md │ │ │ ├── architecture-overview.md │ │ │ ├── auth.md │ │ │ ├── configuration-reference.md │ │ │ └── registering-a-piped.md │ │ │ ├── managing-piped │ │ │ ├── _index.md │ │ │ ├── adding-a-git-repository.md │ │ │ ├── adding-a-platform-provider.md │ │ │ ├── adding-an-analysis-provider.md │ │ │ ├── adding-helm-chart-repository-or-registry.md │ │ │ ├── configuration-reference.md │ │ │ ├── configuring-event-watcher.md │ │ │ ├── configuring-notifications.md │ │ │ ├── remote-upgrade-remote-config.md │ │ │ ├── runtime-options.md │ │ │ └── using-pprof-in-piped.md │ │ │ ├── metrics.md │ │ │ ├── plan-preview.md │ │ │ └── terraform-provider-pipecd.md │ │ ├── docs-v0.50.x │ │ ├── _index.md │ │ ├── concepts │ │ │ └── _index.md │ │ ├── contribution-guidelines │ │ │ ├── _index.md │ │ │ ├── architectural-overview.md │ │ │ └── contributing.md │ │ ├── examples │ │ │ └── _index.md │ │ ├── faq │ │ │ └── _index.md │ │ ├── feature-status │ │ │ └── _index.md │ │ ├── installation │ │ │ ├── _index.md │ │ │ ├── install-control-plane │ │ │ │ ├── _index.md │ │ │ │ ├── installing-controlplane-on-ECS.md │ │ │ │ └── installing-controlplane-on-k8s.md │ │ │ └── install-piped │ │ │ │ ├── _index.md │ │ │ │ ├── installing-on-cloudrun.md │ │ │ │ ├── installing-on-fargate.md │ │ │ │ ├── installing-on-google-cloud-vm.md │ │ │ │ ├── installing-on-kubernetes.md │ │ │ │ ├── installing-on-single-machine.md │ │ │ │ └── required-permissions.md │ │ ├── overview │ │ │ └── _index.md │ │ ├── quickstart │ │ │ └── _index.md │ │ ├── releases │ │ │ └── _index.md │ │ └── user-guide │ │ │ ├── _index.md │ │ │ ├── command-line-tool.md │ │ │ ├── configuration-reference.md │ │ │ ├── event-watcher.md │ │ │ ├── examples │ │ │ ├── _index.md │ │ │ ├── k8s-app-bluegreen-with-istio.md │ │ │ ├── k8s-app-bluegreen-with-pod-selector.md │ │ │ ├── k8s-app-canary-with-istio.md │ │ │ └── k8s-app-canary-with-pod-selector.md │ │ │ ├── insights.md │ │ │ ├── managing-application │ │ │ ├── _index.md │ │ │ ├── adding-an-application.md │ │ │ ├── application-live-state.md │ │ │ ├── cancelling-a-deployment.md │ │ │ ├── configuration-drift-detection.md │ │ │ ├── customizing-deployment │ │ │ │ ├── _index.md │ │ │ │ ├── adding-a-manual-approval.md │ │ │ │ ├── adding-a-wait-stage.md │ │ │ │ ├── automated-deployment-analysis.md │ │ │ │ ├── custom-sync.md │ │ │ │ └── script-run.md │ │ │ ├── defining-app-configuration │ │ │ │ ├── _index.md │ │ │ │ ├── cloudrun.md │ │ │ │ ├── ecs.md │ │ │ │ ├── kubernetes.md │ │ │ │ ├── lambda.md │ │ │ │ └── terraform.md │ │ │ ├── deployment-chain.md │ │ │ ├── manifest-attachment.md │ │ │ ├── rolling-back-a-deployment.md │ │ │ ├── secret-management.md │ │ │ └── triggering-a-deployment.md │ │ │ ├── managing-controlplane │ │ │ ├── _index.md │ │ │ ├── adding-a-project.md │ │ │ ├── architecture-overview.md │ │ │ ├── auth.md │ │ │ ├── configuration-reference.md │ │ │ └── registering-a-piped.md │ │ │ ├── managing-piped │ │ │ ├── _index.md │ │ │ ├── adding-a-git-repository.md │ │ │ ├── adding-a-platform-provider.md │ │ │ ├── adding-an-analysis-provider.md │ │ │ ├── adding-helm-chart-repository-or-registry.md │ │ │ ├── configuration-reference.md │ │ │ ├── configuring-event-watcher.md │ │ │ ├── configuring-notifications.md │ │ │ ├── remote-upgrade-remote-config.md │ │ │ ├── runtime-options.md │ │ │ └── using-pprof-in-piped.md │ │ │ ├── metrics.md │ │ │ ├── plan-preview.md │ │ │ └── terraform-provider-pipecd.md │ │ ├── docs-v0.51.x │ │ ├── _index.md │ │ ├── concepts │ │ │ └── _index.md │ │ ├── contribution-guidelines │ │ │ ├── _index.md │ │ │ ├── architectural-overview.md │ │ │ └── contributing.md │ │ ├── examples │ │ │ └── _index.md │ │ ├── faq │ │ │ └── _index.md │ │ ├── feature-status │ │ │ └── _index.md │ │ ├── installation │ │ │ ├── _index.md │ │ │ ├── install-control-plane │ │ │ │ ├── _index.md │ │ │ │ ├── installing-controlplane-on-ECS.md │ │ │ │ └── installing-controlplane-on-k8s.md │ │ │ └── install-piped │ │ │ │ ├── _index.md │ │ │ │ ├── installing-on-cloudrun.md │ │ │ │ ├── installing-on-fargate.md │ │ │ │ ├── installing-on-google-cloud-vm.md │ │ │ │ ├── installing-on-kubernetes.md │ │ │ │ ├── installing-on-single-machine.md │ │ │ │ └── required-permissions.md │ │ ├── overview │ │ │ └── _index.md │ │ ├── quickstart │ │ │ └── _index.md │ │ ├── releases │ │ │ └── _index.md │ │ └── user-guide │ │ │ ├── _index.md │ │ │ ├── command-line-tool.md │ │ │ ├── configuration-reference.md │ │ │ ├── deployment-trace.md │ │ │ ├── event-watcher.md │ │ │ ├── examples │ │ │ ├── _index.md │ │ │ ├── k8s-app-bluegreen-with-istio.md │ │ │ ├── k8s-app-bluegreen-with-pod-selector.md │ │ │ ├── k8s-app-canary-with-istio.md │ │ │ └── k8s-app-canary-with-pod-selector.md │ │ │ ├── insights.md │ │ │ ├── managing-application │ │ │ ├── _index.md │ │ │ ├── adding-an-application.md │ │ │ ├── application-live-state.md │ │ │ ├── cancelling-a-deployment.md │ │ │ ├── configuration-drift-detection.md │ │ │ ├── customizing-deployment │ │ │ │ ├── _index.md │ │ │ │ ├── adding-a-manual-approval.md │ │ │ │ ├── adding-a-wait-stage.md │ │ │ │ ├── automated-deployment-analysis.md │ │ │ │ ├── custom-sync.md │ │ │ │ └── script-run.md │ │ │ ├── defining-app-configuration │ │ │ │ ├── _index.md │ │ │ │ ├── cloudrun.md │ │ │ │ ├── ecs.md │ │ │ │ ├── kubernetes.md │ │ │ │ ├── lambda.md │ │ │ │ └── terraform.md │ │ │ ├── deployment-chain.md │ │ │ ├── manifest-attachment.md │ │ │ ├── rolling-back-a-deployment.md │ │ │ ├── secret-management.md │ │ │ └── triggering-a-deployment.md │ │ │ ├── managing-controlplane │ │ │ ├── _index.md │ │ │ ├── adding-a-project.md │ │ │ ├── architecture-overview.md │ │ │ ├── auth.md │ │ │ ├── configuration-reference.md │ │ │ └── registering-a-piped.md │ │ │ ├── managing-piped │ │ │ ├── _index.md │ │ │ ├── adding-a-git-repository.md │ │ │ ├── adding-a-platform-provider.md │ │ │ ├── adding-an-analysis-provider.md │ │ │ ├── adding-helm-chart-repository-or-registry.md │ │ │ ├── configuration-reference.md │ │ │ ├── configuring-event-watcher.md │ │ │ ├── configuring-notifications.md │ │ │ ├── remote-upgrade-remote-config.md │ │ │ ├── runtime-options.md │ │ │ └── using-pprof-in-piped.md │ │ │ ├── metrics.md │ │ │ ├── plan-preview.md │ │ │ └── terraform-provider-pipecd.md │ │ ├── docs-v0.52.x │ │ ├── _index.md │ │ ├── concepts │ │ │ └── _index.md │ │ ├── contribution-guidelines │ │ │ ├── _index.md │ │ │ ├── architectural-overview.md │ │ │ └── contributing.md │ │ ├── examples │ │ │ └── _index.md │ │ ├── faq │ │ │ └── _index.md │ │ ├── feature-status │ │ │ └── _index.md │ │ ├── installation │ │ │ ├── _index.md │ │ │ ├── install-control-plane │ │ │ │ ├── _index.md │ │ │ │ ├── installing-controlplane-on-ECS.md │ │ │ │ └── installing-controlplane-on-k8s.md │ │ │ └── install-piped │ │ │ │ ├── _index.md │ │ │ │ ├── installing-on-cloudrun.md │ │ │ │ ├── installing-on-fargate.md │ │ │ │ ├── installing-on-google-cloud-vm.md │ │ │ │ ├── installing-on-kubernetes.md │ │ │ │ ├── installing-on-single-machine.md │ │ │ │ └── required-permissions.md │ │ ├── overview │ │ │ └── _index.md │ │ ├── quickstart │ │ │ └── _index.md │ │ ├── releases │ │ │ └── _index.md │ │ └── user-guide │ │ │ ├── _index.md │ │ │ ├── command-line-tool.md │ │ │ ├── configuration-reference.md │ │ │ ├── deployment-trace.md │ │ │ ├── event-watcher.md │ │ │ ├── examples │ │ │ ├── _index.md │ │ │ ├── k8s-app-bluegreen-with-istio.md │ │ │ ├── k8s-app-bluegreen-with-pod-selector.md │ │ │ ├── k8s-app-canary-with-istio.md │ │ │ └── k8s-app-canary-with-pod-selector.md │ │ │ ├── insights.md │ │ │ ├── managing-application │ │ │ ├── _index.md │ │ │ ├── adding-an-application.md │ │ │ ├── application-live-state.md │ │ │ ├── cancelling-a-deployment.md │ │ │ ├── configuration-drift-detection.md │ │ │ ├── customizing-deployment │ │ │ │ ├── _index.md │ │ │ │ ├── adding-a-manual-approval.md │ │ │ │ ├── adding-a-wait-stage.md │ │ │ │ ├── automated-deployment-analysis.md │ │ │ │ ├── custom-sync.md │ │ │ │ └── script-run.md │ │ │ ├── defining-app-configuration │ │ │ │ ├── _index.md │ │ │ │ ├── cloudrun.md │ │ │ │ ├── ecs.md │ │ │ │ ├── kubernetes.md │ │ │ │ ├── lambda.md │ │ │ │ └── terraform.md │ │ │ ├── deployment-chain.md │ │ │ ├── manifest-attachment.md │ │ │ ├── rolling-back-a-deployment.md │ │ │ ├── secret-management.md │ │ │ └── triggering-a-deployment.md │ │ │ ├── managing-controlplane │ │ │ ├── _index.md │ │ │ ├── adding-a-project.md │ │ │ ├── architecture-overview.md │ │ │ ├── auth.md │ │ │ ├── configuration-reference.md │ │ │ └── registering-a-piped.md │ │ │ ├── managing-piped │ │ │ ├── _index.md │ │ │ ├── adding-a-git-repository.md │ │ │ ├── adding-a-platform-provider.md │ │ │ ├── adding-an-analysis-provider.md │ │ │ ├── adding-helm-chart-repository-or-registry.md │ │ │ ├── configuration-reference.md │ │ │ ├── configuring-event-watcher.md │ │ │ ├── configuring-notifications.md │ │ │ ├── remote-upgrade-remote-config.md │ │ │ ├── runtime-options.md │ │ │ └── using-pprof-in-piped.md │ │ │ ├── metrics.md │ │ │ ├── plan-preview.md │ │ │ └── terraform-provider-pipecd.md │ │ ├── docs-v0.53.x │ │ ├── _index.md │ │ ├── concepts │ │ │ └── _index.md │ │ ├── contribution-guidelines │ │ │ ├── _index.md │ │ │ ├── architectural-overview.md │ │ │ └── contributing.md │ │ ├── examples │ │ │ └── _index.md │ │ ├── faq │ │ │ └── _index.md │ │ ├── feature-status │ │ │ └── _index.md │ │ ├── installation │ │ │ ├── _index.md │ │ │ ├── install-control-plane │ │ │ │ ├── _index.md │ │ │ │ ├── installing-controlplane-on-ECS.md │ │ │ │ └── installing-controlplane-on-k8s.md │ │ │ └── install-piped │ │ │ │ ├── _index.md │ │ │ │ ├── installing-on-cloudrun.md │ │ │ │ ├── installing-on-fargate.md │ │ │ │ ├── installing-on-google-cloud-vm.md │ │ │ │ ├── installing-on-kubernetes.md │ │ │ │ ├── installing-on-single-machine.md │ │ │ │ └── required-permissions.md │ │ ├── overview │ │ │ └── _index.md │ │ ├── quickstart │ │ │ └── _index.md │ │ ├── releases │ │ │ └── _index.md │ │ └── user-guide │ │ │ ├── _index.md │ │ │ ├── command-line-tool.md │ │ │ ├── configuration-reference.md │ │ │ ├── deployment-trace.md │ │ │ ├── event-watcher.md │ │ │ ├── examples │ │ │ ├── _index.md │ │ │ ├── k8s-app-bluegreen-with-istio.md │ │ │ ├── k8s-app-bluegreen-with-pod-selector.md │ │ │ ├── k8s-app-canary-with-istio.md │ │ │ └── k8s-app-canary-with-pod-selector.md │ │ │ ├── insights.md │ │ │ ├── managing-application │ │ │ ├── _index.md │ │ │ ├── adding-an-application.md │ │ │ ├── application-live-state.md │ │ │ ├── cancelling-a-deployment.md │ │ │ ├── configuration-drift-detection.md │ │ │ ├── customizing-deployment │ │ │ │ ├── _index.md │ │ │ │ ├── adding-a-manual-approval.md │ │ │ │ ├── adding-a-wait-stage.md │ │ │ │ ├── automated-deployment-analysis.md │ │ │ │ ├── custom-sync.md │ │ │ │ └── script-run.md │ │ │ ├── defining-app-configuration │ │ │ │ ├── _index.md │ │ │ │ ├── cloudrun.md │ │ │ │ ├── ecs.md │ │ │ │ ├── kubernetes.md │ │ │ │ ├── lambda.md │ │ │ │ └── terraform.md │ │ │ ├── deployment-chain.md │ │ │ ├── manifest-attachment.md │ │ │ ├── rolling-back-a-deployment.md │ │ │ ├── secret-management.md │ │ │ └── triggering-a-deployment.md │ │ │ ├── managing-controlplane │ │ │ ├── _index.md │ │ │ ├── adding-a-project.md │ │ │ ├── architecture-overview.md │ │ │ ├── auth.md │ │ │ ├── configuration-reference.md │ │ │ └── registering-a-piped.md │ │ │ ├── managing-piped │ │ │ ├── _index.md │ │ │ ├── adding-a-git-repository.md │ │ │ ├── adding-a-platform-provider.md │ │ │ ├── adding-an-analysis-provider.md │ │ │ ├── adding-helm-chart-repository-or-registry.md │ │ │ ├── configuration-reference.md │ │ │ ├── configuring-event-watcher.md │ │ │ ├── configuring-notifications.md │ │ │ ├── remote-upgrade-remote-config.md │ │ │ ├── runtime-options.md │ │ │ └── using-pprof-in-piped.md │ │ │ ├── metrics.md │ │ │ ├── plan-preview.md │ │ │ └── terraform-provider-pipecd.md │ │ ├── docs-v0.54.x │ │ ├── _index.md │ │ ├── concepts │ │ │ └── _index.md │ │ ├── contribution-guidelines │ │ │ ├── _index.md │ │ │ ├── architectural-overview.md │ │ │ └── contributing.md │ │ ├── examples │ │ │ └── _index.md │ │ ├── faq │ │ │ └── _index.md │ │ ├── feature-status │ │ │ └── _index.md │ │ ├── installation │ │ │ ├── _index.md │ │ │ ├── install-control-plane │ │ │ │ ├── _index.md │ │ │ │ ├── installing-controlplane-on-ECS.md │ │ │ │ └── installing-controlplane-on-k8s.md │ │ │ └── install-piped │ │ │ │ ├── _index.md │ │ │ │ ├── installing-on-cloudrun.md │ │ │ │ ├── installing-on-fargate.md │ │ │ │ ├── installing-on-google-cloud-vm.md │ │ │ │ ├── installing-on-kubernetes.md │ │ │ │ ├── installing-on-single-machine.md │ │ │ │ └── required-permissions.md │ │ ├── overview │ │ │ └── _index.md │ │ ├── quickstart │ │ │ └── _index.md │ │ ├── releases │ │ │ └── _index.md │ │ └── user-guide │ │ │ ├── _index.md │ │ │ ├── command-line-tool.md │ │ │ ├── configuration-reference.md │ │ │ ├── deployment-trace.md │ │ │ ├── event-watcher.md │ │ │ ├── examples │ │ │ ├── _index.md │ │ │ ├── k8s-app-bluegreen-with-istio.md │ │ │ ├── k8s-app-bluegreen-with-pod-selector.md │ │ │ ├── k8s-app-canary-with-istio.md │ │ │ └── k8s-app-canary-with-pod-selector.md │ │ │ ├── insights.md │ │ │ ├── managing-application │ │ │ ├── _index.md │ │ │ ├── adding-an-application.md │ │ │ ├── application-live-state.md │ │ │ ├── cancelling-a-deployment.md │ │ │ ├── configuration-drift-detection.md │ │ │ ├── customizing-deployment │ │ │ │ ├── _index.md │ │ │ │ ├── adding-a-manual-approval.md │ │ │ │ ├── adding-a-wait-stage.md │ │ │ │ ├── automated-deployment-analysis.md │ │ │ │ ├── custom-sync.md │ │ │ │ └── script-run.md │ │ │ ├── defining-app-configuration │ │ │ │ ├── _index.md │ │ │ │ ├── cloudrun.md │ │ │ │ ├── ecs.md │ │ │ │ ├── kubernetes.md │ │ │ │ ├── lambda.md │ │ │ │ └── terraform.md │ │ │ ├── deployment-chain.md │ │ │ ├── manifest-attachment.md │ │ │ ├── rolling-back-a-deployment.md │ │ │ ├── secret-management.md │ │ │ └── triggering-a-deployment.md │ │ │ ├── managing-controlplane │ │ │ ├── _index.md │ │ │ ├── adding-a-project.md │ │ │ ├── architecture-overview.md │ │ │ ├── auth.md │ │ │ ├── configuration-reference.md │ │ │ └── registering-a-piped.md │ │ │ ├── managing-piped │ │ │ ├── _index.md │ │ │ ├── adding-a-git-repository.md │ │ │ ├── adding-a-platform-provider.md │ │ │ ├── adding-an-analysis-provider.md │ │ │ ├── adding-helm-chart-repository-or-registry.md │ │ │ ├── configuration-reference.md │ │ │ ├── configuring-event-watcher.md │ │ │ ├── configuring-notifications.md │ │ │ ├── remote-upgrade-remote-config.md │ │ │ ├── runtime-options.md │ │ │ └── using-pprof-in-piped.md │ │ │ ├── metrics.md │ │ │ ├── plan-preview.md │ │ │ └── terraform-provider-pipecd.md │ │ ├── docs-v0.55.x │ │ ├── _index.md │ │ ├── concepts │ │ │ └── _index.md │ │ ├── contribution-guidelines │ │ │ ├── _index.md │ │ │ ├── architectural-overview.md │ │ │ └── contributing.md │ │ ├── examples │ │ │ └── _index.md │ │ ├── faq │ │ │ └── _index.md │ │ ├── feature-status │ │ │ └── _index.md │ │ ├── installation │ │ │ ├── _index.md │ │ │ ├── install-control-plane │ │ │ │ ├── _index.md │ │ │ │ ├── installing-controlplane-on-ECS.md │ │ │ │ └── installing-controlplane-on-k8s.md │ │ │ └── install-piped │ │ │ │ ├── _index.md │ │ │ │ ├── installing-on-cloudrun.md │ │ │ │ ├── installing-on-fargate.md │ │ │ │ ├── installing-on-google-cloud-vm.md │ │ │ │ ├── installing-on-kubernetes.md │ │ │ │ ├── installing-on-single-machine.md │ │ │ │ └── required-permissions.md │ │ ├── overview │ │ │ └── _index.md │ │ ├── quickstart │ │ │ └── _index.md │ │ ├── releases │ │ │ └── _index.md │ │ └── user-guide │ │ │ ├── _index.md │ │ │ ├── command-line-tool.md │ │ │ ├── configuration-reference.md │ │ │ ├── deployment-trace.md │ │ │ ├── event-watcher.md │ │ │ ├── examples │ │ │ ├── _index.md │ │ │ ├── k8s-app-bluegreen-with-istio.md │ │ │ ├── k8s-app-bluegreen-with-pod-selector.md │ │ │ ├── k8s-app-canary-with-istio.md │ │ │ └── k8s-app-canary-with-pod-selector.md │ │ │ ├── insights.md │ │ │ ├── managing-application │ │ │ ├── _index.md │ │ │ ├── adding-an-application.md │ │ │ ├── application-live-state.md │ │ │ ├── cancelling-a-deployment.md │ │ │ ├── configuration-drift-detection.md │ │ │ ├── customizing-deployment │ │ │ │ ├── _index.md │ │ │ │ ├── adding-a-manual-approval.md │ │ │ │ ├── adding-a-wait-stage.md │ │ │ │ ├── automated-deployment-analysis.md │ │ │ │ ├── custom-sync.md │ │ │ │ └── script-run.md │ │ │ ├── defining-app-configuration │ │ │ │ ├── _index.md │ │ │ │ ├── cloudrun.md │ │ │ │ ├── ecs.md │ │ │ │ ├── kubernetes.md │ │ │ │ ├── lambda.md │ │ │ │ └── terraform.md │ │ │ ├── deployment-chain.md │ │ │ ├── manifest-attachment.md │ │ │ ├── rolling-back-a-deployment.md │ │ │ ├── secret-management.md │ │ │ └── triggering-a-deployment.md │ │ │ ├── managing-controlplane │ │ │ ├── _index.md │ │ │ ├── adding-a-project.md │ │ │ ├── architecture-overview.md │ │ │ ├── auth.md │ │ │ ├── configuration-reference.md │ │ │ └── registering-a-piped.md │ │ │ ├── managing-piped │ │ │ ├── _index.md │ │ │ ├── adding-a-git-repository.md │ │ │ ├── adding-a-platform-provider.md │ │ │ ├── adding-an-analysis-provider.md │ │ │ ├── adding-helm-chart-repository-or-registry.md │ │ │ ├── configuration-reference.md │ │ │ ├── configuring-event-watcher.md │ │ │ ├── configuring-notifications.md │ │ │ ├── remote-upgrade-remote-config.md │ │ │ ├── runtime-options.md │ │ │ └── using-pprof-in-piped.md │ │ │ ├── metrics.md │ │ │ ├── plan-preview.md │ │ │ └── terraform-provider-pipecd.md │ │ ├── docs-v1.0.x │ │ ├── _index.md │ │ ├── concepts │ │ │ └── _index.md │ │ ├── contribution-guidelines │ │ │ ├── _index.md │ │ │ ├── architectural-overview.md │ │ │ ├── contributing-documentation.md │ │ │ └── contributing.md │ │ ├── faq │ │ │ └── _index.md │ │ ├── installation │ │ │ ├── _index.md │ │ │ ├── install-control-plane │ │ │ │ ├── _index.md │ │ │ │ ├── installing-controlplane-on-ECS.md │ │ │ │ └── installing-controlplane-on-k8s.md │ │ │ └── install-piped │ │ │ │ ├── _index.md │ │ │ │ ├── installing-on-kubernetes.md │ │ │ │ └── installing-on-single-machine.md │ │ ├── migrating-from-v0-to-v1 │ │ │ └── _index.md │ │ ├── overview │ │ │ └── _index.md │ │ ├── quickstart │ │ │ └── _index.md │ │ ├── releases │ │ │ └── _index.md │ │ └── user-guide │ │ │ ├── _index.md │ │ │ └── managing-controlplane │ │ │ ├── _index.md │ │ │ ├── adding-a-project.md │ │ │ ├── architecture-overview.md │ │ │ ├── auth.md │ │ │ ├── configuration-reference.md │ │ │ └── registering-a-piped.md │ │ ├── docs │ │ └── _index.md │ │ └── search.md ├── layouts │ ├── 404.html │ ├── _default │ │ └── _markup │ │ │ └── render-codeblock-mermaid.html │ ├── docs-dev │ │ ├── baseof.html │ │ ├── baseof.print.html │ │ ├── list.html │ │ ├── list.print.html │ │ └── single.html │ ├── docs-v0.39.x │ │ ├── baseof.html │ │ ├── baseof.print.html │ │ ├── list.html │ │ ├── list.print.html │ │ └── single.html │ ├── docs-v0.40.x │ │ ├── baseof.html │ │ ├── baseof.print.html │ │ ├── list.html │ │ ├── list.print.html │ │ └── single.html │ ├── docs-v0.41.x │ │ ├── baseof.html │ │ ├── baseof.print.html │ │ ├── list.html │ │ ├── list.print.html │ │ └── single.html │ ├── docs-v0.42.x │ │ ├── baseof.html │ │ ├── baseof.print.html │ │ ├── list.html │ │ ├── list.print.html │ │ └── single.html │ ├── docs-v0.43.x │ │ ├── baseof.html │ │ ├── baseof.print.html │ │ ├── list.html │ │ ├── list.print.html │ │ └── single.html │ ├── docs-v0.44.x │ │ ├── baseof.html │ │ ├── baseof.print.html │ │ ├── list.html │ │ ├── list.print.html │ │ └── single.html │ ├── docs-v0.45.x │ │ ├── baseof.html │ │ ├── baseof.print.html │ │ ├── list.html │ │ ├── list.print.html │ │ └── single.html │ ├── docs-v0.46.x │ │ ├── baseof.html │ │ ├── baseof.print.html │ │ ├── list.html │ │ ├── list.print.html │ │ └── single.html │ ├── docs-v0.47.x │ │ ├── baseof.html │ │ ├── baseof.print.html │ │ ├── list.html │ │ ├── list.print.html │ │ └── single.html │ ├── docs-v0.48.x │ │ ├── baseof.html │ │ ├── baseof.print.html │ │ ├── docs │ │ │ ├── baseof.html │ │ │ ├── baseof.print.html │ │ │ ├── list.html │ │ │ ├── list.print.html │ │ │ └── single.html │ │ ├── list.html │ │ ├── list.print.html │ │ └── single.html │ ├── docs-v0.49.x │ │ ├── baseof.html │ │ ├── baseof.print.html │ │ ├── list.html │ │ ├── list.print.html │ │ └── single.html │ ├── docs-v0.50.x │ │ ├── baseof.html │ │ ├── baseof.print.html │ │ ├── list.html │ │ ├── list.print.html │ │ └── single.html │ ├── docs-v0.51.x │ │ ├── baseof.html │ │ ├── baseof.print.html │ │ ├── list.html │ │ ├── list.print.html │ │ └── single.html │ ├── docs-v0.52.x │ │ ├── baseof.html │ │ ├── baseof.print.html │ │ ├── list.html │ │ ├── list.print.html │ │ └── single.html │ ├── docs-v0.53.x │ │ ├── baseof.html │ │ ├── baseof.print.html │ │ ├── list.html │ │ ├── list.print.html │ │ └── single.html │ ├── docs-v0.54.x │ │ ├── baseof.html │ │ ├── baseof.print.html │ │ ├── list.html │ │ ├── list.print.html │ │ └── single.html │ ├── docs-v0.55.x │ │ ├── baseof.html │ │ ├── baseof.print.html │ │ ├── list.html │ │ ├── list.print.html │ │ └── single.html │ ├── docs-v1.0.x │ │ ├── baseof.html │ │ ├── baseof.print.html │ │ ├── list.html │ │ ├── list.print.html │ │ └── single.html │ ├── partials │ │ ├── footer.html │ │ ├── head.html │ │ ├── navbar-version-selector.html │ │ ├── navbar.html │ │ ├── page-meta-links.html │ │ └── scripts.html │ └── shortcodes │ │ └── blocks │ │ ├── cover.html │ │ ├── feature.html │ │ ├── latest_version.html │ │ └── value.html ├── main.go ├── package-lock.json ├── package.json ├── rfcs │ ├── 0000-template.md │ ├── 0001-image-watcher.md │ ├── 0002-lambda-deployment.md │ ├── 0003-sql-datastore.md │ ├── 0004-ecs-deployment.md │ ├── 0005-plan-preview.md │ ├── 0006-ada-dynamic.md │ ├── 0007-deployment-chain.md │ ├── 0008-simplify-datastore.md │ ├── 0009-control-plane-without-k8s.md │ ├── 0010-custom-stage.md │ ├── 0011-pipectrl-init.md │ ├── 0011-script-run-stage.md │ ├── 0012-ecs-not-under-elb.md │ ├── 0013-export-deployment-traces-with-otlp.md │ ├── 0014-multi-cluster-deployment-for-k8s.md │ ├── 0015-pipecd-plugin-arch-meta.md │ ├── 0016-livestate-feature-for-plugin-architecture.md │ ├── 0017-deployment-trace.md │ ├── 0018-material-ui-upgrade-v7.md │ ├── 0019-redux-replacement.md │ ├── 0020-cancel-plan-preview.md │ └── assets │ │ ├── 0006-canary-analysis.jpeg │ │ ├── 0006-previous-analysis.jpeg │ │ ├── 0013-jaeger-trace-detail.png │ │ ├── 0013-jaeger-trace-timeview.png │ │ ├── 0014-choose-multiple-providers.png │ │ ├── 0014-piped-list.png │ │ ├── 0014-pipeline-already-implemented.png │ │ ├── 0014-pipeline-image.png │ │ ├── 0014-pipeline-paralell-stage.png │ │ ├── 0014-pipeline-sync-app-stage-01.png │ │ ├── 0014-pipeline-sync-app-stage-02.png │ │ ├── 0014-stage-log.png │ │ ├── 0015-config-context.png │ │ ├── 0015-piped-protocol.png │ │ ├── 0017-deployment-trace-UI.png │ │ ├── control-plane-on-aws.jpg │ │ ├── control-plane-on-docker-compose.jpg │ │ ├── deployment-chain-commit-diff.png │ │ ├── deployment-chain-configuration.png │ │ ├── deployment-chain-detail.png │ │ ├── deployment-chain-env.png │ │ ├── deployment-chain-idea.png │ │ ├── deployment-chain-kind.png │ │ ├── deployment-chain-post-sync.png │ │ ├── deployment-chain-region.png │ │ ├── event-watcher-flow.png │ │ ├── image-watcher.jpg │ │ ├── simplify-datastore-base-idea.png │ │ ├── simplify-datastore-cold-storage.png │ │ ├── simplify-datastore-idea.png │ │ └── single-ambassador.png ├── static │ ├── favicons │ │ ├── android-144x144.png │ │ ├── android-192x192.png │ │ ├── android-36x36.png │ │ ├── android-48x48.png │ │ ├── android-72x72.png │ │ ├── android-96x96.png │ │ ├── apple-touch-icon-180x180.png │ │ ├── apple-touch-icon.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ └── favicon.ico │ └── images │ │ ├── analysis-skippable.png │ │ ├── application-details.png │ │ ├── application-out-of-sync-details.png │ │ ├── application-out-of-sync.png │ │ ├── application-synced.png │ │ ├── architecture-overview-with-roles.png │ │ ├── architecture-overview.png │ │ ├── before-deploy-components.drawio.png │ │ ├── before-deploy-pending.png │ │ ├── cancel-deployment.png │ │ ├── cicd-flow.png │ │ ├── cloud-run-out-of-sync.png │ │ ├── cloudrun-live-state.png │ │ ├── code-manifest-repo-separation.png │ │ ├── control-plane-alb.png │ │ ├── control-plane-components.png │ │ ├── control-plane-local-console.png │ │ ├── control-plane-on-ecs.png │ │ ├── custom-sync-rollback.png │ │ ├── custom-sync.png │ │ ├── deployment-analysis-stage.png │ │ ├── deployment-chain-console.png │ │ ├── deployment-chain-figure.png │ │ ├── deployment-details.png │ │ ├── deployment-trace-ui.png │ │ ├── deployment-wait-approval-stage.png │ │ ├── deployment-wait-stage.png │ │ ├── diff-by-eventwatcher.png │ │ ├── event-list-page.png │ │ ├── event-watcher-contexts.png │ │ ├── eventwatcher-only-cd.drawio.png │ │ ├── eventwatcher-overview.drawio.png │ │ ├── eventwatcher-problem.drawio.png │ │ ├── eventwatcher-trigger-multi-deployments.png │ │ ├── example-bluegreen-kubernetes-istio-stage-1.png │ │ ├── example-bluegreen-kubernetes-istio-stage-2.png │ │ ├── example-bluegreen-kubernetes-istio-stage-4.png │ │ ├── example-bluegreen-kubernetes-istio-stage-5.png │ │ ├── example-bluegreen-kubernetes-istio-stage-6.png │ │ ├── example-bluegreen-kubernetes-istio.png │ │ ├── example-canary-kubernetes-istio-stage-1.png │ │ ├── example-canary-kubernetes-istio-stage-2.png │ │ ├── example-canary-kubernetes-istio-stage-4.png │ │ ├── example-canary-kubernetes-istio-stage-5.png │ │ ├── example-canary-kubernetes-istio-stage-6.png │ │ ├── example-canary-kubernetes-istio.png │ │ ├── example-canary-kubernetes-stage-0.png │ │ ├── example-canary-kubernetes-stage-1.png │ │ ├── example-canary-kubernetes-stage-3.png │ │ ├── example-canary-kubernetes-stage-4.png │ │ ├── example-canary-kubernetes.png │ │ ├── image-watcher-flow.png │ │ ├── insights.png │ │ ├── january-2022-contributor-list.png │ │ ├── january-2022-piped-connection-status.png │ │ ├── legacy-registering-an-application-from-git.png │ │ ├── legacy-registering-an-application-from-web.png │ │ ├── logo.png │ │ ├── mcp-server-intro-example1.png │ │ ├── metrics-architecture.png │ │ ├── ogp-logo.png │ │ ├── pipecd-cncf-sandbox.png │ │ ├── pipecd-commit-context-github-ui.png │ │ ├── pipecd-control-plane-mainpage.png │ │ ├── pipecd-event-watcher-flow.png │ │ ├── pipecd-explanation.png │ │ ├── pipecdv1-architecture.png │ │ ├── piped-list-page.png │ │ ├── plan-preview-comment.png │ │ ├── play-environment-application.png │ │ ├── play-environment-deployment.png │ │ ├── play-environment-get-me.png │ │ ├── play-environment-github-login.png │ │ ├── play-environment-login.png │ │ ├── play-environment-overview.png │ │ ├── play-plan-preview.png │ │ ├── plugin-intro-mechanism-cur.drawio.png │ │ ├── plugin-intro-mechanism-new.drawio.png │ │ ├── plugin-intro-running.drawio.png │ │ ├── plugin-intro-schedule.drawio.png │ │ ├── problematic-deployment-list-ui.jpg │ │ ├── quickstart-adding-application-from-git.png │ │ ├── quickstart-adding-application-from-suggestions-v1.png │ │ ├── quickstart-adding-application-from-suggestions.png │ │ ├── quickstart-adding-application.png │ │ ├── quickstart-adding-environment.png │ │ ├── quickstart-adding-piped.png │ │ ├── quickstart-deploying.png │ │ ├── quickstart-first-deployment.png │ │ ├── quickstart-login-form.png │ │ ├── quickstart-login.png │ │ ├── quickstart-piped-registered.png │ │ ├── quickstart-update-image-tag.png │ │ ├── registering-an-application-from-suggestions-new.png │ │ ├── registering-an-application-from-suggestions.png │ │ ├── registering-an-application-manually-new.png │ │ ├── registering-an-application-manually.png │ │ ├── rfc-plan-preview-architecture.png │ │ ├── rolled-back-deployment.png │ │ ├── script-run-onRollback.png │ │ ├── script-run.png │ │ ├── sealed-secret-application-list.png │ │ ├── sealed-secret-button.png │ │ ├── sealed-secret-encrypting-drawer-form.png │ │ ├── sealed-secret-encrypting-form.png │ │ ├── settings-add-environment.png │ │ ├── settings-add-piped.png │ │ ├── settings-add-user-group.png │ │ ├── settings-api-key.png │ │ ├── settings-project-v0.38.x.png │ │ ├── settings-project.png │ │ ├── settings-remote-upgrade.png │ │ ├── settings-update-rbac.png │ │ ├── settings-update-sso.png │ │ ├── slack-notification-deployment.png │ │ └── slack-notification-piped-started.png └── themes │ └── docsy │ ├── .editorconfig │ ├── .gitignore │ ├── .gitmodules │ ├── .prettierrc.json │ ├── .s3deploy.yml │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── assets │ ├── icons │ │ ├── logo.png │ │ └── logo.svg │ ├── js │ │ ├── anchor.js │ │ ├── base.js │ │ ├── markmap.js │ │ ├── mermaid.js │ │ ├── offline-search.js │ │ ├── plantuml.js │ │ └── search.js │ ├── json │ │ └── offline-search-index.json │ ├── scss │ │ ├── _alerts.scss │ │ ├── _blog.scss │ │ ├── _boxes.scss │ │ ├── _breadcrumb.scss │ │ ├── _buttons.scss │ │ ├── _code.scss │ │ ├── _colors.scss │ │ ├── _content.scss │ │ ├── _main-container.scss │ │ ├── _nav.scss │ │ ├── _pageinfo.scss │ │ ├── _search.scss │ │ ├── _sidebar-toc.scss │ │ ├── _sidebar-tree.scss │ │ ├── _styles_project.scss │ │ ├── _taxonomy.scss │ │ ├── _variables.scss │ │ ├── _variables_project.scss │ │ ├── blocks │ │ │ ├── _blocks.scss │ │ │ └── _cover.scss │ │ ├── main.scss │ │ ├── rtl │ │ │ ├── _main.scss │ │ │ └── _spacing.scss │ │ ├── section-index.scss │ │ └── support │ │ │ ├── _functions.scss │ │ │ ├── _mixins.scss │ │ │ └── _utilities.scss │ ├── stubs │ │ └── new-page-template.md │ └── vendor │ │ ├── Font-Awesome │ │ ├── .github │ │ │ ├── ISSUE_TEMPLATE │ │ │ │ ├── bug_report.md │ │ │ │ ├── feature_request.md │ │ │ │ └── icon-request.md │ │ │ └── PULL_REQUEST_TEMPLATE.md │ │ ├── CHANGELOG.md │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── UPGRADING.md │ │ ├── composer.json │ │ ├── css │ │ │ ├── all.css │ │ │ ├── all.min.css │ │ │ ├── brands.css │ │ │ ├── brands.min.css │ │ │ ├── fontawesome.css │ │ │ ├── fontawesome.min.css │ │ │ ├── regular.css │ │ │ ├── regular.min.css │ │ │ ├── solid.css │ │ │ ├── solid.min.css │ │ │ ├── svg-with-js.css │ │ │ ├── svg-with-js.min.css │ │ │ ├── v4-shims.css │ │ │ └── v4-shims.min.css │ │ ├── js-packages │ │ │ └── @fortawesome │ │ │ │ ├── fontawesome-common-types │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── attribution.js │ │ │ │ ├── index.d.ts │ │ │ │ └── package.json │ │ │ │ ├── fontawesome-free │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── attribution.js │ │ │ │ ├── css │ │ │ │ │ ├── all.css │ │ │ │ │ ├── all.min.css │ │ │ │ │ ├── brands.css │ │ │ │ │ ├── brands.min.css │ │ │ │ │ ├── fontawesome.css │ │ │ │ │ ├── fontawesome.min.css │ │ │ │ │ ├── regular.css │ │ │ │ │ ├── regular.min.css │ │ │ │ │ ├── solid.css │ │ │ │ │ ├── solid.min.css │ │ │ │ │ ├── svg-with-js.css │ │ │ │ │ ├── svg-with-js.min.css │ │ │ │ │ ├── v4-shims.css │ │ │ │ │ └── v4-shims.min.css │ │ │ │ ├── js │ │ │ │ │ ├── all.js │ │ │ │ │ ├── all.min.js │ │ │ │ │ ├── brands.js │ │ │ │ │ ├── brands.min.js │ │ │ │ │ ├── conflict-detection.js │ │ │ │ │ ├── conflict-detection.min.js │ │ │ │ │ ├── fontawesome.js │ │ │ │ │ ├── fontawesome.min.js │ │ │ │ │ ├── regular.js │ │ │ │ │ ├── regular.min.js │ │ │ │ │ ├── solid.js │ │ │ │ │ ├── solid.min.js │ │ │ │ │ ├── v4-shims.js │ │ │ │ │ └── v4-shims.min.js │ │ │ │ ├── less │ │ │ │ │ ├── _animated.less │ │ │ │ │ ├── _bordered-pulled.less │ │ │ │ │ ├── _core.less │ │ │ │ │ ├── _fixed-width.less │ │ │ │ │ ├── _icons.less │ │ │ │ │ ├── _larger.less │ │ │ │ │ ├── _list.less │ │ │ │ │ ├── _mixins.less │ │ │ │ │ ├── _rotated-flipped.less │ │ │ │ │ ├── _screen-reader.less │ │ │ │ │ ├── _shims.less │ │ │ │ │ ├── _stacked.less │ │ │ │ │ ├── _variables.less │ │ │ │ │ ├── brands.less │ │ │ │ │ ├── fontawesome.less │ │ │ │ │ ├── regular.less │ │ │ │ │ ├── solid.less │ │ │ │ │ └── v4-shims.less │ │ │ │ ├── metadata │ │ │ │ │ ├── categories.yml │ │ │ │ │ ├── icons.yml │ │ │ │ │ ├── shims.yml │ │ │ │ │ └── sponsors.yml │ │ │ │ ├── package.json │ │ │ │ ├── scss │ │ │ │ │ ├── _animated.scss │ │ │ │ │ ├── _bordered-pulled.scss │ │ │ │ │ ├── _core.scss │ │ │ │ │ ├── _fixed-width.scss │ │ │ │ │ ├── _icons.scss │ │ │ │ │ ├── _larger.scss │ │ │ │ │ ├── _list.scss │ │ │ │ │ ├── _mixins.scss │ │ │ │ │ ├── _rotated-flipped.scss │ │ │ │ │ ├── _screen-reader.scss │ │ │ │ │ ├── _shims.scss │ │ │ │ │ ├── _stacked.scss │ │ │ │ │ ├── _variables.scss │ │ │ │ │ ├── brands.scss │ │ │ │ │ ├── fontawesome.scss │ │ │ │ │ ├── regular.scss │ │ │ │ │ ├── solid.scss │ │ │ │ │ └── v4-shims.scss │ │ │ │ ├── sprites │ │ │ │ │ ├── brands.svg │ │ │ │ │ ├── regular.svg │ │ │ │ │ └── solid.svg │ │ │ │ ├── svgs │ │ │ │ │ ├── brands │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── cloudflare.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 │ │ │ │ │ │ ├── dailymotion.svg │ │ │ │ │ │ ├── dashcube.svg │ │ │ │ │ │ ├── deezer.svg │ │ │ │ │ │ ├── delicious.svg │ │ │ │ │ │ ├── deploydog.svg │ │ │ │ │ │ ├── deskpro.svg │ │ │ │ │ │ ├── dev.svg │ │ │ │ │ │ ├── deviantart.svg │ │ │ │ │ │ ├── dhl.svg │ │ │ │ │ │ ├── diaspora.svg │ │ │ │ │ │ ├── digg.svg │ │ │ │ │ │ ├── digital-ocean.svg │ │ │ │ │ │ ├── discord.svg │ │ │ │ │ │ ├── discourse.svg │ │ │ │ │ │ ├── dochub.svg │ │ │ │ │ │ ├── docker.svg │ │ │ │ │ │ ├── draft2digital.svg │ │ │ │ │ │ ├── dribbble-square.svg │ │ │ │ │ │ ├── dribbble.svg │ │ │ │ │ │ ├── dropbox.svg │ │ │ │ │ │ ├── drupal.svg │ │ │ │ │ │ ├── dyalog.svg │ │ │ │ │ │ ├── earlybirds.svg │ │ │ │ │ │ ├── ebay.svg │ │ │ │ │ │ ├── edge-legacy.svg │ │ │ │ │ │ ├── edge.svg │ │ │ │ │ │ ├── elementor.svg │ │ │ │ │ │ ├── ello.svg │ │ │ │ │ │ ├── ember.svg │ │ │ │ │ │ ├── empire.svg │ │ │ │ │ │ ├── envira.svg │ │ │ │ │ │ ├── erlang.svg │ │ │ │ │ │ ├── ethereum.svg │ │ │ │ │ │ ├── etsy.svg │ │ │ │ │ │ ├── evernote.svg │ │ │ │ │ │ ├── expeditedssl.svg │ │ │ │ │ │ ├── facebook-f.svg │ │ │ │ │ │ ├── facebook-messenger.svg │ │ │ │ │ │ ├── facebook-square.svg │ │ │ │ │ │ ├── facebook.svg │ │ │ │ │ │ ├── fantasy-flight-games.svg │ │ │ │ │ │ ├── fedex.svg │ │ │ │ │ │ ├── fedora.svg │ │ │ │ │ │ ├── figma.svg │ │ │ │ │ │ ├── firefox-browser.svg │ │ │ │ │ │ ├── firefox.svg │ │ │ │ │ │ ├── first-order-alt.svg │ │ │ │ │ │ ├── first-order.svg │ │ │ │ │ │ ├── firstdraft.svg │ │ │ │ │ │ ├── flickr.svg │ │ │ │ │ │ ├── flipboard.svg │ │ │ │ │ │ ├── fly.svg │ │ │ │ │ │ ├── font-awesome-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-pay.svg │ │ │ │ │ │ ├── google-play.svg │ │ │ │ │ │ ├── google-plus-g.svg │ │ │ │ │ │ ├── google-plus-square.svg │ │ │ │ │ │ ├── google-plus.svg │ │ │ │ │ │ ├── google-wallet.svg │ │ │ │ │ │ ├── google.svg │ │ │ │ │ │ ├── gratipay.svg │ │ │ │ │ │ ├── grav.svg │ │ │ │ │ │ ├── gripfire.svg │ │ │ │ │ │ ├── grunt.svg │ │ │ │ │ │ ├── guilded.svg │ │ │ │ │ │ ├── gulp.svg │ │ │ │ │ │ ├── hacker-news-square.svg │ │ │ │ │ │ ├── hacker-news.svg │ │ │ │ │ │ ├── hackerrank.svg │ │ │ │ │ │ ├── hips.svg │ │ │ │ │ │ ├── hire-a-helper.svg │ │ │ │ │ │ ├── hive.svg │ │ │ │ │ │ ├── hooli.svg │ │ │ │ │ │ ├── hornbill.svg │ │ │ │ │ │ ├── hotjar.svg │ │ │ │ │ │ ├── houzz.svg │ │ │ │ │ │ ├── html5.svg │ │ │ │ │ │ ├── hubspot.svg │ │ │ │ │ │ ├── ideal.svg │ │ │ │ │ │ ├── imdb.svg │ │ │ │ │ │ ├── innosoft.svg │ │ │ │ │ │ ├── instagram-square.svg │ │ │ │ │ │ ├── instagram.svg │ │ │ │ │ │ ├── instalod.svg │ │ │ │ │ │ ├── intercom.svg │ │ │ │ │ │ ├── internet-explorer.svg │ │ │ │ │ │ ├── invision.svg │ │ │ │ │ │ ├── ioxhost.svg │ │ │ │ │ │ ├── itch-io.svg │ │ │ │ │ │ ├── itunes-note.svg │ │ │ │ │ │ ├── itunes.svg │ │ │ │ │ │ ├── java.svg │ │ │ │ │ │ ├── jedi-order.svg │ │ │ │ │ │ ├── jenkins.svg │ │ │ │ │ │ ├── jira.svg │ │ │ │ │ │ ├── joget.svg │ │ │ │ │ │ ├── joomla.svg │ │ │ │ │ │ ├── js-square.svg │ │ │ │ │ │ ├── js.svg │ │ │ │ │ │ ├── jsfiddle.svg │ │ │ │ │ │ ├── kaggle.svg │ │ │ │ │ │ ├── keybase.svg │ │ │ │ │ │ ├── keycdn.svg │ │ │ │ │ │ ├── kickstarter-k.svg │ │ │ │ │ │ ├── kickstarter.svg │ │ │ │ │ │ ├── korvue.svg │ │ │ │ │ │ ├── laravel.svg │ │ │ │ │ │ ├── lastfm-square.svg │ │ │ │ │ │ ├── lastfm.svg │ │ │ │ │ │ ├── leanpub.svg │ │ │ │ │ │ ├── less.svg │ │ │ │ │ │ ├── line.svg │ │ │ │ │ │ ├── linkedin-in.svg │ │ │ │ │ │ ├── linkedin.svg │ │ │ │ │ │ ├── linode.svg │ │ │ │ │ │ ├── linux.svg │ │ │ │ │ │ ├── lyft.svg │ │ │ │ │ │ ├── magento.svg │ │ │ │ │ │ ├── mailchimp.svg │ │ │ │ │ │ ├── mandalorian.svg │ │ │ │ │ │ ├── markdown.svg │ │ │ │ │ │ ├── mastodon.svg │ │ │ │ │ │ ├── maxcdn.svg │ │ │ │ │ │ ├── mdb.svg │ │ │ │ │ │ ├── medapps.svg │ │ │ │ │ │ ├── medium-m.svg │ │ │ │ │ │ ├── medium.svg │ │ │ │ │ │ ├── medrt.svg │ │ │ │ │ │ ├── meetup.svg │ │ │ │ │ │ ├── megaport.svg │ │ │ │ │ │ ├── mendeley.svg │ │ │ │ │ │ ├── microblog.svg │ │ │ │ │ │ ├── microsoft.svg │ │ │ │ │ │ ├── mix.svg │ │ │ │ │ │ ├── mixcloud.svg │ │ │ │ │ │ ├── mixer.svg │ │ │ │ │ │ ├── mizuni.svg │ │ │ │ │ │ ├── modx.svg │ │ │ │ │ │ ├── monero.svg │ │ │ │ │ │ ├── napster.svg │ │ │ │ │ │ ├── neos.svg │ │ │ │ │ │ ├── nimblr.svg │ │ │ │ │ │ ├── nintendo-switch.svg │ │ │ │ │ │ ├── node-js.svg │ │ │ │ │ │ ├── node.svg │ │ │ │ │ │ ├── npm.svg │ │ │ │ │ │ ├── ns8.svg │ │ │ │ │ │ ├── nutritionix.svg │ │ │ │ │ │ ├── octopus-deploy.svg │ │ │ │ │ │ ├── odnoklassniki-square.svg │ │ │ │ │ │ ├── odnoklassniki.svg │ │ │ │ │ │ ├── old-republic.svg │ │ │ │ │ │ ├── opencart.svg │ │ │ │ │ │ ├── openid.svg │ │ │ │ │ │ ├── opera.svg │ │ │ │ │ │ ├── optin-monster.svg │ │ │ │ │ │ ├── orcid.svg │ │ │ │ │ │ ├── osi.svg │ │ │ │ │ │ ├── page4.svg │ │ │ │ │ │ ├── pagelines.svg │ │ │ │ │ │ ├── palfed.svg │ │ │ │ │ │ ├── patreon.svg │ │ │ │ │ │ ├── paypal.svg │ │ │ │ │ │ ├── penny-arcade.svg │ │ │ │ │ │ ├── perbyte.svg │ │ │ │ │ │ ├── periscope.svg │ │ │ │ │ │ ├── phabricator.svg │ │ │ │ │ │ ├── phoenix-framework.svg │ │ │ │ │ │ ├── phoenix-squadron.svg │ │ │ │ │ │ ├── php.svg │ │ │ │ │ │ ├── pied-piper-alt.svg │ │ │ │ │ │ ├── pied-piper-hat.svg │ │ │ │ │ │ ├── pied-piper-pp.svg │ │ │ │ │ │ ├── pied-piper-square.svg │ │ │ │ │ │ ├── pied-piper.svg │ │ │ │ │ │ ├── pinterest-p.svg │ │ │ │ │ │ ├── pinterest-square.svg │ │ │ │ │ │ ├── pinterest.svg │ │ │ │ │ │ ├── playstation.svg │ │ │ │ │ │ ├── product-hunt.svg │ │ │ │ │ │ ├── pushed.svg │ │ │ │ │ │ ├── python.svg │ │ │ │ │ │ ├── qq.svg │ │ │ │ │ │ ├── quinscape.svg │ │ │ │ │ │ ├── quora.svg │ │ │ │ │ │ ├── r-project.svg │ │ │ │ │ │ ├── raspberry-pi.svg │ │ │ │ │ │ ├── ravelry.svg │ │ │ │ │ │ ├── react.svg │ │ │ │ │ │ ├── reacteurope.svg │ │ │ │ │ │ ├── readme.svg │ │ │ │ │ │ ├── rebel.svg │ │ │ │ │ │ ├── red-river.svg │ │ │ │ │ │ ├── reddit-alien.svg │ │ │ │ │ │ ├── reddit-square.svg │ │ │ │ │ │ ├── reddit.svg │ │ │ │ │ │ ├── redhat.svg │ │ │ │ │ │ ├── renren.svg │ │ │ │ │ │ ├── replyd.svg │ │ │ │ │ │ ├── researchgate.svg │ │ │ │ │ │ ├── resolving.svg │ │ │ │ │ │ ├── rev.svg │ │ │ │ │ │ ├── rocketchat.svg │ │ │ │ │ │ ├── rockrms.svg │ │ │ │ │ │ ├── rust.svg │ │ │ │ │ │ ├── safari.svg │ │ │ │ │ │ ├── salesforce.svg │ │ │ │ │ │ ├── sass.svg │ │ │ │ │ │ ├── schlix.svg │ │ │ │ │ │ ├── scribd.svg │ │ │ │ │ │ ├── searchengin.svg │ │ │ │ │ │ ├── sellcast.svg │ │ │ │ │ │ ├── sellsy.svg │ │ │ │ │ │ ├── servicestack.svg │ │ │ │ │ │ ├── shirtsinbulk.svg │ │ │ │ │ │ ├── shopify.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 │ │ │ │ │ │ ├── tiktok.svg │ │ │ │ │ │ ├── trade-federation.svg │ │ │ │ │ │ ├── trello.svg │ │ │ │ │ │ ├── tripadvisor.svg │ │ │ │ │ │ ├── tumblr-square.svg │ │ │ │ │ │ ├── tumblr.svg │ │ │ │ │ │ ├── twitch.svg │ │ │ │ │ │ ├── twitter-square.svg │ │ │ │ │ │ ├── twitter.svg │ │ │ │ │ │ ├── typo3.svg │ │ │ │ │ │ ├── uber.svg │ │ │ │ │ │ ├── ubuntu.svg │ │ │ │ │ │ ├── uikit.svg │ │ │ │ │ │ ├── umbraco.svg │ │ │ │ │ │ ├── uncharted.svg │ │ │ │ │ │ ├── uniregistry.svg │ │ │ │ │ │ ├── unity.svg │ │ │ │ │ │ ├── unsplash.svg │ │ │ │ │ │ ├── untappd.svg │ │ │ │ │ │ ├── ups.svg │ │ │ │ │ │ ├── usb.svg │ │ │ │ │ │ ├── usps.svg │ │ │ │ │ │ ├── ussunnah.svg │ │ │ │ │ │ ├── vaadin.svg │ │ │ │ │ │ ├── viacoin.svg │ │ │ │ │ │ ├── viadeo-square.svg │ │ │ │ │ │ ├── viadeo.svg │ │ │ │ │ │ ├── viber.svg │ │ │ │ │ │ ├── vimeo-square.svg │ │ │ │ │ │ ├── vimeo-v.svg │ │ │ │ │ │ ├── vimeo.svg │ │ │ │ │ │ ├── vine.svg │ │ │ │ │ │ ├── vk.svg │ │ │ │ │ │ ├── vnv.svg │ │ │ │ │ │ ├── vuejs.svg │ │ │ │ │ │ ├── watchman-monitoring.svg │ │ │ │ │ │ ├── waze.svg │ │ │ │ │ │ ├── weebly.svg │ │ │ │ │ │ ├── weibo.svg │ │ │ │ │ │ ├── weixin.svg │ │ │ │ │ │ ├── whatsapp-square.svg │ │ │ │ │ │ ├── whatsapp.svg │ │ │ │ │ │ ├── whmcs.svg │ │ │ │ │ │ ├── wikipedia-w.svg │ │ │ │ │ │ ├── windows.svg │ │ │ │ │ │ ├── wix.svg │ │ │ │ │ │ ├── wizards-of-the-coast.svg │ │ │ │ │ │ ├── wodu.svg │ │ │ │ │ │ ├── wolf-pack-battalion.svg │ │ │ │ │ │ ├── wordpress-simple.svg │ │ │ │ │ │ ├── wordpress.svg │ │ │ │ │ │ ├── wpbeginner.svg │ │ │ │ │ │ ├── wpexplorer.svg │ │ │ │ │ │ ├── wpforms.svg │ │ │ │ │ │ ├── wpressr.svg │ │ │ │ │ │ ├── xbox.svg │ │ │ │ │ │ ├── xing-square.svg │ │ │ │ │ │ ├── xing.svg │ │ │ │ │ │ ├── y-combinator.svg │ │ │ │ │ │ ├── yahoo.svg │ │ │ │ │ │ ├── yammer.svg │ │ │ │ │ │ ├── yandex-international.svg │ │ │ │ │ │ ├── yandex.svg │ │ │ │ │ │ ├── yarn.svg │ │ │ │ │ │ ├── yelp.svg │ │ │ │ │ │ ├── yoast.svg │ │ │ │ │ │ ├── youtube-square.svg │ │ │ │ │ │ ├── youtube.svg │ │ │ │ │ │ └── zhihu.svg │ │ │ │ │ ├── regular │ │ │ │ │ │ ├── address-book.svg │ │ │ │ │ │ ├── address-card.svg │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── bacteria.svg │ │ │ │ │ │ ├── bacterium.svg │ │ │ │ │ │ ├── bahai.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-tissue.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 │ │ │ │ │ │ ├── caravan.svg │ │ │ │ │ │ ├── caret-down.svg │ │ │ │ │ │ ├── caret-left.svg │ │ │ │ │ │ ├── caret-right.svg │ │ │ │ │ │ ├── caret-square-down.svg │ │ │ │ │ │ ├── caret-square-left.svg │ │ │ │ │ │ ├── caret-square-right.svg │ │ │ │ │ │ ├── caret-square-up.svg │ │ │ │ │ │ ├── caret-up.svg │ │ │ │ │ │ ├── carrot.svg │ │ │ │ │ │ ├── cart-arrow-down.svg │ │ │ │ │ │ ├── cart-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-alt.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 │ │ │ │ │ │ ├── disease.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-alt.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 │ │ │ │ │ │ ├── faucet.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-medical.svg │ │ │ │ │ │ ├── hand-holding-usd.svg │ │ │ │ │ │ ├── hand-holding-water.svg │ │ │ │ │ │ ├── hand-holding.svg │ │ │ │ │ │ ├── hand-lizard.svg │ │ │ │ │ │ ├── hand-middle-finger.svg │ │ │ │ │ │ ├── hand-paper.svg │ │ │ │ │ │ ├── hand-peace.svg │ │ │ │ │ │ ├── hand-point-down.svg │ │ │ │ │ │ ├── hand-point-left.svg │ │ │ │ │ │ ├── hand-point-right.svg │ │ │ │ │ │ ├── hand-point-up.svg │ │ │ │ │ │ ├── hand-pointer.svg │ │ │ │ │ │ ├── hand-rock.svg │ │ │ │ │ │ ├── hand-scissors.svg │ │ │ │ │ │ ├── hand-sparkles.svg │ │ │ │ │ │ ├── hand-spock.svg │ │ │ │ │ │ ├── hands-helping.svg │ │ │ │ │ │ ├── hands-wash.svg │ │ │ │ │ │ ├── hands.svg │ │ │ │ │ │ ├── handshake-alt-slash.svg │ │ │ │ │ │ ├── handshake-slash.svg │ │ │ │ │ │ ├── handshake.svg │ │ │ │ │ │ ├── hanukiah.svg │ │ │ │ │ │ ├── hard-hat.svg │ │ │ │ │ │ ├── hashtag.svg │ │ │ │ │ │ ├── hat-cowboy-side.svg │ │ │ │ │ │ ├── hat-cowboy.svg │ │ │ │ │ │ ├── hat-wizard.svg │ │ │ │ │ │ ├── haykal.svg │ │ │ │ │ │ ├── hdd.svg │ │ │ │ │ │ ├── head-side-cough-slash.svg │ │ │ │ │ │ ├── head-side-cough.svg │ │ │ │ │ │ ├── head-side-mask.svg │ │ │ │ │ │ ├── head-side-virus.svg │ │ │ │ │ │ ├── heading.svg │ │ │ │ │ │ ├── headphones-alt.svg │ │ │ │ │ │ ├── headphones.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-user.svg │ │ │ │ │ │ ├── hospital.svg │ │ │ │ │ │ ├── hot-tub.svg │ │ │ │ │ │ ├── hotdog.svg │ │ │ │ │ │ ├── hotel.svg │ │ │ │ │ │ ├── hourglass-end.svg │ │ │ │ │ │ ├── hourglass-half.svg │ │ │ │ │ │ ├── hourglass-start.svg │ │ │ │ │ │ ├── hourglass.svg │ │ │ │ │ │ ├── house-damage.svg │ │ │ │ │ │ ├── house-user.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-house.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 │ │ │ │ │ │ ├── lungs-virus.svg │ │ │ │ │ │ ├── lungs.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-arrows.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-slash.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 │ │ │ │ │ │ ├── pump-medical.svg │ │ │ │ │ │ ├── pump-soap.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 │ │ │ │ │ │ ├── shield-virus.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 │ │ │ │ │ │ ├── sink.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 │ │ │ │ │ │ ├── soap.svg │ │ │ │ │ │ ├── socks.svg │ │ │ │ │ │ ├── solar-panel.svg │ │ │ │ │ │ ├── sort-alpha-down-alt.svg │ │ │ │ │ │ ├── sort-alpha-down.svg │ │ │ │ │ │ ├── sort-alpha-up-alt.svg │ │ │ │ │ │ ├── sort-alpha-up.svg │ │ │ │ │ │ ├── sort-amount-down-alt.svg │ │ │ │ │ │ ├── sort-amount-down.svg │ │ │ │ │ │ ├── sort-amount-up-alt.svg │ │ │ │ │ │ ├── sort-amount-up.svg │ │ │ │ │ │ ├── sort-down.svg │ │ │ │ │ │ ├── sort-numeric-down-alt.svg │ │ │ │ │ │ ├── sort-numeric-down.svg │ │ │ │ │ │ ├── sort-numeric-up-alt.svg │ │ │ │ │ │ ├── sort-numeric-up.svg │ │ │ │ │ │ ├── sort-up.svg │ │ │ │ │ │ ├── sort.svg │ │ │ │ │ │ ├── spa.svg │ │ │ │ │ │ ├── space-shuttle.svg │ │ │ │ │ │ ├── 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-20.svg │ │ │ │ │ │ ├── stopwatch.svg │ │ │ │ │ │ ├── store-alt-slash.svg │ │ │ │ │ │ ├── store-alt.svg │ │ │ │ │ │ ├── store-slash.svg │ │ │ │ │ │ ├── store.svg │ │ │ │ │ │ ├── stream.svg │ │ │ │ │ │ ├── street-view.svg │ │ │ │ │ │ ├── strikethrough.svg │ │ │ │ │ │ ├── stroopwafel.svg │ │ │ │ │ │ ├── subscript.svg │ │ │ │ │ │ ├── subway.svg │ │ │ │ │ │ ├── suitcase-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-slash.svg │ │ │ │ │ │ ├── toilet-paper.svg │ │ │ │ │ │ ├── toilet.svg │ │ │ │ │ │ ├── toolbox.svg │ │ │ │ │ │ ├── tools.svg │ │ │ │ │ │ ├── tooth.svg │ │ │ │ │ │ ├── torah.svg │ │ │ │ │ │ ├── torii-gate.svg │ │ │ │ │ │ ├── tractor.svg │ │ │ │ │ │ ├── trademark.svg │ │ │ │ │ │ ├── traffic-light.svg │ │ │ │ │ │ ├── trailer.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-slash.svg │ │ │ │ │ │ ├── users.svg │ │ │ │ │ │ ├── utensil-spoon.svg │ │ │ │ │ │ ├── utensils.svg │ │ │ │ │ │ ├── vector-square.svg │ │ │ │ │ │ ├── venus-double.svg │ │ │ │ │ │ ├── venus-mars.svg │ │ │ │ │ │ ├── venus.svg │ │ │ │ │ │ ├── vest-patches.svg │ │ │ │ │ │ ├── vest.svg │ │ │ │ │ │ ├── vial.svg │ │ │ │ │ │ ├── vials.svg │ │ │ │ │ │ ├── video-slash.svg │ │ │ │ │ │ ├── video.svg │ │ │ │ │ │ ├── vihara.svg │ │ │ │ │ │ ├── virus-slash.svg │ │ │ │ │ │ ├── virus.svg │ │ │ │ │ │ ├── viruses.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 │ │ │ │ ├── fontawesome-svg-core │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── attribution.js │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.es.js │ │ │ │ ├── index.js │ │ │ │ ├── package.json │ │ │ │ └── styles.css │ │ │ │ ├── free-brands-svg-icons │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── attribution.js │ │ │ │ ├── fa500px.d.ts │ │ │ │ ├── fa500px.js │ │ │ │ ├── faAccessibleIcon.d.ts │ │ │ │ ├── faAccessibleIcon.js │ │ │ │ ├── faAccusoft.d.ts │ │ │ │ ├── faAccusoft.js │ │ │ │ ├── faAcquisitionsIncorporated.d.ts │ │ │ │ ├── faAcquisitionsIncorporated.js │ │ │ │ ├── faAdn.d.ts │ │ │ │ ├── faAdn.js │ │ │ │ ├── faAdobe.d.ts │ │ │ │ ├── faAdobe.js │ │ │ │ ├── faAdversal.d.ts │ │ │ │ ├── faAdversal.js │ │ │ │ ├── faAffiliatetheme.d.ts │ │ │ │ ├── faAffiliatetheme.js │ │ │ │ ├── faAirbnb.d.ts │ │ │ │ ├── faAirbnb.js │ │ │ │ ├── faAlgolia.d.ts │ │ │ │ ├── faAlgolia.js │ │ │ │ ├── faAlipay.d.ts │ │ │ │ ├── faAlipay.js │ │ │ │ ├── faAmazon.d.ts │ │ │ │ ├── faAmazon.js │ │ │ │ ├── faAmazonPay.d.ts │ │ │ │ ├── faAmazonPay.js │ │ │ │ ├── faAmilia.d.ts │ │ │ │ ├── faAmilia.js │ │ │ │ ├── faAndroid.d.ts │ │ │ │ ├── faAndroid.js │ │ │ │ ├── faAngellist.d.ts │ │ │ │ ├── faAngellist.js │ │ │ │ ├── faAngrycreative.d.ts │ │ │ │ ├── faAngrycreative.js │ │ │ │ ├── faAngular.d.ts │ │ │ │ ├── faAngular.js │ │ │ │ ├── faAppStore.d.ts │ │ │ │ ├── faAppStore.js │ │ │ │ ├── faAppStoreIos.d.ts │ │ │ │ ├── faAppStoreIos.js │ │ │ │ ├── faApper.d.ts │ │ │ │ ├── faApper.js │ │ │ │ ├── faApple.d.ts │ │ │ │ ├── faApple.js │ │ │ │ ├── faApplePay.d.ts │ │ │ │ ├── faApplePay.js │ │ │ │ ├── faArtstation.d.ts │ │ │ │ ├── faArtstation.js │ │ │ │ ├── faAsymmetrik.d.ts │ │ │ │ ├── faAsymmetrik.js │ │ │ │ ├── faAtlassian.d.ts │ │ │ │ ├── faAtlassian.js │ │ │ │ ├── faAudible.d.ts │ │ │ │ ├── faAudible.js │ │ │ │ ├── faAutoprefixer.d.ts │ │ │ │ ├── faAutoprefixer.js │ │ │ │ ├── faAvianex.d.ts │ │ │ │ ├── faAvianex.js │ │ │ │ ├── faAviato.d.ts │ │ │ │ ├── faAviato.js │ │ │ │ ├── faAws.d.ts │ │ │ │ ├── faAws.js │ │ │ │ ├── faBandcamp.d.ts │ │ │ │ ├── faBandcamp.js │ │ │ │ ├── faBattleNet.d.ts │ │ │ │ ├── faBattleNet.js │ │ │ │ ├── faBehance.d.ts │ │ │ │ ├── faBehance.js │ │ │ │ ├── faBehanceSquare.d.ts │ │ │ │ ├── faBehanceSquare.js │ │ │ │ ├── faBimobject.d.ts │ │ │ │ ├── faBimobject.js │ │ │ │ ├── faBitbucket.d.ts │ │ │ │ ├── faBitbucket.js │ │ │ │ ├── faBitcoin.d.ts │ │ │ │ ├── faBitcoin.js │ │ │ │ ├── faBity.d.ts │ │ │ │ ├── faBity.js │ │ │ │ ├── faBlackTie.d.ts │ │ │ │ ├── faBlackTie.js │ │ │ │ ├── faBlackberry.d.ts │ │ │ │ ├── faBlackberry.js │ │ │ │ ├── faBlogger.d.ts │ │ │ │ ├── faBlogger.js │ │ │ │ ├── faBloggerB.d.ts │ │ │ │ ├── faBloggerB.js │ │ │ │ ├── faBluetooth.d.ts │ │ │ │ ├── faBluetooth.js │ │ │ │ ├── faBluetoothB.d.ts │ │ │ │ ├── faBluetoothB.js │ │ │ │ ├── faBootstrap.d.ts │ │ │ │ ├── faBootstrap.js │ │ │ │ ├── faBtc.d.ts │ │ │ │ ├── faBtc.js │ │ │ │ ├── faBuffer.d.ts │ │ │ │ ├── faBuffer.js │ │ │ │ ├── faBuromobelexperte.d.ts │ │ │ │ ├── faBuromobelexperte.js │ │ │ │ ├── faBuyNLarge.d.ts │ │ │ │ ├── faBuyNLarge.js │ │ │ │ ├── faBuysellads.d.ts │ │ │ │ ├── faBuysellads.js │ │ │ │ ├── faCanadianMapleLeaf.d.ts │ │ │ │ ├── faCanadianMapleLeaf.js │ │ │ │ ├── faCcAmazonPay.d.ts │ │ │ │ ├── faCcAmazonPay.js │ │ │ │ ├── faCcAmex.d.ts │ │ │ │ ├── faCcAmex.js │ │ │ │ ├── faCcApplePay.d.ts │ │ │ │ ├── faCcApplePay.js │ │ │ │ ├── faCcDinersClub.d.ts │ │ │ │ ├── faCcDinersClub.js │ │ │ │ ├── faCcDiscover.d.ts │ │ │ │ ├── faCcDiscover.js │ │ │ │ ├── faCcJcb.d.ts │ │ │ │ ├── faCcJcb.js │ │ │ │ ├── faCcMastercard.d.ts │ │ │ │ ├── faCcMastercard.js │ │ │ │ ├── faCcPaypal.d.ts │ │ │ │ ├── faCcPaypal.js │ │ │ │ ├── faCcStripe.d.ts │ │ │ │ ├── faCcStripe.js │ │ │ │ ├── faCcVisa.d.ts │ │ │ │ ├── faCcVisa.js │ │ │ │ ├── faCentercode.d.ts │ │ │ │ ├── faCentercode.js │ │ │ │ ├── faCentos.d.ts │ │ │ │ ├── faCentos.js │ │ │ │ ├── faChrome.d.ts │ │ │ │ ├── faChrome.js │ │ │ │ ├── faChromecast.d.ts │ │ │ │ ├── faChromecast.js │ │ │ │ ├── faCloudflare.d.ts │ │ │ │ ├── faCloudflare.js │ │ │ │ ├── faCloudscale.d.ts │ │ │ │ ├── faCloudscale.js │ │ │ │ ├── faCloudsmith.d.ts │ │ │ │ ├── faCloudsmith.js │ │ │ │ ├── faCloudversify.d.ts │ │ │ │ ├── faCloudversify.js │ │ │ │ ├── faCodepen.d.ts │ │ │ │ ├── faCodepen.js │ │ │ │ ├── faCodiepie.d.ts │ │ │ │ ├── faCodiepie.js │ │ │ │ ├── faConfluence.d.ts │ │ │ │ ├── faConfluence.js │ │ │ │ ├── faConnectdevelop.d.ts │ │ │ │ ├── faConnectdevelop.js │ │ │ │ ├── faContao.d.ts │ │ │ │ ├── faContao.js │ │ │ │ ├── faCottonBureau.d.ts │ │ │ │ ├── faCottonBureau.js │ │ │ │ ├── faCpanel.d.ts │ │ │ │ ├── faCpanel.js │ │ │ │ ├── faCreativeCommons.d.ts │ │ │ │ ├── faCreativeCommons.js │ │ │ │ ├── faCreativeCommonsBy.d.ts │ │ │ │ ├── faCreativeCommonsBy.js │ │ │ │ ├── faCreativeCommonsNc.d.ts │ │ │ │ ├── faCreativeCommonsNc.js │ │ │ │ ├── faCreativeCommonsNcEu.d.ts │ │ │ │ ├── faCreativeCommonsNcEu.js │ │ │ │ ├── faCreativeCommonsNcJp.d.ts │ │ │ │ ├── faCreativeCommonsNcJp.js │ │ │ │ ├── faCreativeCommonsNd.d.ts │ │ │ │ ├── faCreativeCommonsNd.js │ │ │ │ ├── faCreativeCommonsPd.d.ts │ │ │ │ ├── faCreativeCommonsPd.js │ │ │ │ ├── faCreativeCommonsPdAlt.d.ts │ │ │ │ ├── faCreativeCommonsPdAlt.js │ │ │ │ ├── faCreativeCommonsRemix.d.ts │ │ │ │ ├── faCreativeCommonsRemix.js │ │ │ │ ├── faCreativeCommonsSa.d.ts │ │ │ │ ├── faCreativeCommonsSa.js │ │ │ │ ├── faCreativeCommonsSampling.d.ts │ │ │ │ ├── faCreativeCommonsSampling.js │ │ │ │ ├── faCreativeCommonsSamplingPlus.d.ts │ │ │ │ ├── faCreativeCommonsSamplingPlus.js │ │ │ │ ├── faCreativeCommonsShare.d.ts │ │ │ │ ├── faCreativeCommonsShare.js │ │ │ │ ├── faCreativeCommonsZero.d.ts │ │ │ │ ├── faCreativeCommonsZero.js │ │ │ │ ├── faCriticalRole.d.ts │ │ │ │ ├── faCriticalRole.js │ │ │ │ ├── faCss3.d.ts │ │ │ │ ├── faCss3.js │ │ │ │ ├── faCss3Alt.d.ts │ │ │ │ ├── faCss3Alt.js │ │ │ │ ├── faCuttlefish.d.ts │ │ │ │ ├── faCuttlefish.js │ │ │ │ ├── faDAndD.d.ts │ │ │ │ ├── faDAndD.js │ │ │ │ ├── faDAndDBeyond.d.ts │ │ │ │ ├── faDAndDBeyond.js │ │ │ │ ├── faDailymotion.d.ts │ │ │ │ ├── faDailymotion.js │ │ │ │ ├── faDashcube.d.ts │ │ │ │ ├── faDashcube.js │ │ │ │ ├── faDeezer.d.ts │ │ │ │ ├── faDeezer.js │ │ │ │ ├── faDelicious.d.ts │ │ │ │ ├── faDelicious.js │ │ │ │ ├── faDeploydog.d.ts │ │ │ │ ├── faDeploydog.js │ │ │ │ ├── faDeskpro.d.ts │ │ │ │ ├── faDeskpro.js │ │ │ │ ├── faDev.d.ts │ │ │ │ ├── faDev.js │ │ │ │ ├── faDeviantart.d.ts │ │ │ │ ├── faDeviantart.js │ │ │ │ ├── faDhl.d.ts │ │ │ │ ├── faDhl.js │ │ │ │ ├── faDiaspora.d.ts │ │ │ │ ├── faDiaspora.js │ │ │ │ ├── faDigg.d.ts │ │ │ │ ├── faDigg.js │ │ │ │ ├── faDigitalOcean.d.ts │ │ │ │ ├── faDigitalOcean.js │ │ │ │ ├── faDiscord.d.ts │ │ │ │ ├── faDiscord.js │ │ │ │ ├── faDiscourse.d.ts │ │ │ │ ├── faDiscourse.js │ │ │ │ ├── faDochub.d.ts │ │ │ │ ├── faDochub.js │ │ │ │ ├── faDocker.d.ts │ │ │ │ ├── faDocker.js │ │ │ │ ├── faDraft2digital.d.ts │ │ │ │ ├── faDraft2digital.js │ │ │ │ ├── faDribbble.d.ts │ │ │ │ ├── faDribbble.js │ │ │ │ ├── faDribbbleSquare.d.ts │ │ │ │ ├── faDribbbleSquare.js │ │ │ │ ├── faDropbox.d.ts │ │ │ │ ├── faDropbox.js │ │ │ │ ├── faDrupal.d.ts │ │ │ │ ├── faDrupal.js │ │ │ │ ├── faDyalog.d.ts │ │ │ │ ├── faDyalog.js │ │ │ │ ├── faEarlybirds.d.ts │ │ │ │ ├── faEarlybirds.js │ │ │ │ ├── faEbay.d.ts │ │ │ │ ├── faEbay.js │ │ │ │ ├── faEdge.d.ts │ │ │ │ ├── faEdge.js │ │ │ │ ├── faEdgeLegacy.d.ts │ │ │ │ ├── faEdgeLegacy.js │ │ │ │ ├── faElementor.d.ts │ │ │ │ ├── faElementor.js │ │ │ │ ├── faEllo.d.ts │ │ │ │ ├── faEllo.js │ │ │ │ ├── faEmber.d.ts │ │ │ │ ├── faEmber.js │ │ │ │ ├── faEmpire.d.ts │ │ │ │ ├── faEmpire.js │ │ │ │ ├── faEnvira.d.ts │ │ │ │ ├── faEnvira.js │ │ │ │ ├── faErlang.d.ts │ │ │ │ ├── faErlang.js │ │ │ │ ├── faEthereum.d.ts │ │ │ │ ├── faEthereum.js │ │ │ │ ├── faEtsy.d.ts │ │ │ │ ├── faEtsy.js │ │ │ │ ├── faEvernote.d.ts │ │ │ │ ├── faEvernote.js │ │ │ │ ├── faExpeditedssl.d.ts │ │ │ │ ├── faExpeditedssl.js │ │ │ │ ├── faFacebook.d.ts │ │ │ │ ├── faFacebook.js │ │ │ │ ├── faFacebookF.d.ts │ │ │ │ ├── faFacebookF.js │ │ │ │ ├── faFacebookMessenger.d.ts │ │ │ │ ├── faFacebookMessenger.js │ │ │ │ ├── faFacebookSquare.d.ts │ │ │ │ ├── faFacebookSquare.js │ │ │ │ ├── faFantasyFlightGames.d.ts │ │ │ │ ├── faFantasyFlightGames.js │ │ │ │ ├── faFedex.d.ts │ │ │ │ ├── faFedex.js │ │ │ │ ├── faFedora.d.ts │ │ │ │ ├── faFedora.js │ │ │ │ ├── faFigma.d.ts │ │ │ │ ├── faFigma.js │ │ │ │ ├── faFirefox.d.ts │ │ │ │ ├── faFirefox.js │ │ │ │ ├── faFirefoxBrowser.d.ts │ │ │ │ ├── faFirefoxBrowser.js │ │ │ │ ├── faFirstOrder.d.ts │ │ │ │ ├── faFirstOrder.js │ │ │ │ ├── faFirstOrderAlt.d.ts │ │ │ │ ├── faFirstOrderAlt.js │ │ │ │ ├── faFirstdraft.d.ts │ │ │ │ ├── faFirstdraft.js │ │ │ │ ├── faFlickr.d.ts │ │ │ │ ├── faFlickr.js │ │ │ │ ├── faFlipboard.d.ts │ │ │ │ ├── faFlipboard.js │ │ │ │ ├── faFly.d.ts │ │ │ │ ├── faFly.js │ │ │ │ ├── faFontAwesome.d.ts │ │ │ │ ├── faFontAwesome.js │ │ │ │ ├── faFontAwesomeAlt.d.ts │ │ │ │ ├── faFontAwesomeAlt.js │ │ │ │ ├── faFontAwesomeFlag.d.ts │ │ │ │ ├── faFontAwesomeFlag.js │ │ │ │ ├── faFontAwesomeLogoFull.d.ts │ │ │ │ ├── faFontAwesomeLogoFull.js │ │ │ │ ├── faFonticons.d.ts │ │ │ │ ├── faFonticons.js │ │ │ │ ├── faFonticonsFi.d.ts │ │ │ │ ├── faFonticonsFi.js │ │ │ │ ├── faFortAwesome.d.ts │ │ │ │ ├── faFortAwesome.js │ │ │ │ ├── faFortAwesomeAlt.d.ts │ │ │ │ ├── faFortAwesomeAlt.js │ │ │ │ ├── faForumbee.d.ts │ │ │ │ ├── faForumbee.js │ │ │ │ ├── faFoursquare.d.ts │ │ │ │ ├── faFoursquare.js │ │ │ │ ├── faFreeCodeCamp.d.ts │ │ │ │ ├── faFreeCodeCamp.js │ │ │ │ ├── faFreebsd.d.ts │ │ │ │ ├── faFreebsd.js │ │ │ │ ├── faFulcrum.d.ts │ │ │ │ ├── faFulcrum.js │ │ │ │ ├── faGalacticRepublic.d.ts │ │ │ │ ├── faGalacticRepublic.js │ │ │ │ ├── faGalacticSenate.d.ts │ │ │ │ ├── faGalacticSenate.js │ │ │ │ ├── faGetPocket.d.ts │ │ │ │ ├── faGetPocket.js │ │ │ │ ├── faGg.d.ts │ │ │ │ ├── faGg.js │ │ │ │ ├── faGgCircle.d.ts │ │ │ │ ├── faGgCircle.js │ │ │ │ ├── faGit.d.ts │ │ │ │ ├── faGit.js │ │ │ │ ├── faGitAlt.d.ts │ │ │ │ ├── faGitAlt.js │ │ │ │ ├── faGitSquare.d.ts │ │ │ │ ├── faGitSquare.js │ │ │ │ ├── faGithub.d.ts │ │ │ │ ├── faGithub.js │ │ │ │ ├── faGithubAlt.d.ts │ │ │ │ ├── faGithubAlt.js │ │ │ │ ├── faGithubSquare.d.ts │ │ │ │ ├── faGithubSquare.js │ │ │ │ ├── faGitkraken.d.ts │ │ │ │ ├── faGitkraken.js │ │ │ │ ├── faGitlab.d.ts │ │ │ │ ├── faGitlab.js │ │ │ │ ├── faGitter.d.ts │ │ │ │ ├── faGitter.js │ │ │ │ ├── faGlide.d.ts │ │ │ │ ├── faGlide.js │ │ │ │ ├── faGlideG.d.ts │ │ │ │ ├── faGlideG.js │ │ │ │ ├── faGofore.d.ts │ │ │ │ ├── faGofore.js │ │ │ │ ├── faGoodreads.d.ts │ │ │ │ ├── faGoodreads.js │ │ │ │ ├── faGoodreadsG.d.ts │ │ │ │ ├── faGoodreadsG.js │ │ │ │ ├── faGoogle.d.ts │ │ │ │ ├── faGoogle.js │ │ │ │ ├── faGoogleDrive.d.ts │ │ │ │ ├── faGoogleDrive.js │ │ │ │ ├── faGooglePay.d.ts │ │ │ │ ├── faGooglePay.js │ │ │ │ ├── faGooglePlay.d.ts │ │ │ │ ├── faGooglePlay.js │ │ │ │ ├── faGooglePlus.d.ts │ │ │ │ ├── faGooglePlus.js │ │ │ │ ├── faGooglePlusG.d.ts │ │ │ │ ├── faGooglePlusG.js │ │ │ │ ├── faGooglePlusSquare.d.ts │ │ │ │ ├── faGooglePlusSquare.js │ │ │ │ ├── faGoogleWallet.d.ts │ │ │ │ ├── faGoogleWallet.js │ │ │ │ ├── faGratipay.d.ts │ │ │ │ ├── faGratipay.js │ │ │ │ ├── faGrav.d.ts │ │ │ │ ├── faGrav.js │ │ │ │ ├── faGripfire.d.ts │ │ │ │ ├── faGripfire.js │ │ │ │ ├── faGrunt.d.ts │ │ │ │ ├── faGrunt.js │ │ │ │ ├── faGuilded.d.ts │ │ │ │ ├── faGuilded.js │ │ │ │ ├── faGulp.d.ts │ │ │ │ ├── faGulp.js │ │ │ │ ├── faHackerNews.d.ts │ │ │ │ ├── faHackerNews.js │ │ │ │ ├── faHackerNewsSquare.d.ts │ │ │ │ ├── faHackerNewsSquare.js │ │ │ │ ├── faHackerrank.d.ts │ │ │ │ ├── faHackerrank.js │ │ │ │ ├── faHips.d.ts │ │ │ │ ├── faHips.js │ │ │ │ ├── faHireAHelper.d.ts │ │ │ │ ├── faHireAHelper.js │ │ │ │ ├── faHive.d.ts │ │ │ │ ├── faHive.js │ │ │ │ ├── faHooli.d.ts │ │ │ │ ├── faHooli.js │ │ │ │ ├── faHornbill.d.ts │ │ │ │ ├── faHornbill.js │ │ │ │ ├── faHotjar.d.ts │ │ │ │ ├── faHotjar.js │ │ │ │ ├── faHouzz.d.ts │ │ │ │ ├── faHouzz.js │ │ │ │ ├── faHtml5.d.ts │ │ │ │ ├── faHtml5.js │ │ │ │ ├── faHubspot.d.ts │ │ │ │ ├── faHubspot.js │ │ │ │ ├── faIdeal.d.ts │ │ │ │ ├── faIdeal.js │ │ │ │ ├── faImdb.d.ts │ │ │ │ ├── faImdb.js │ │ │ │ ├── faInnosoft.d.ts │ │ │ │ ├── faInnosoft.js │ │ │ │ ├── faInstagram.d.ts │ │ │ │ ├── faInstagram.js │ │ │ │ ├── faInstagramSquare.d.ts │ │ │ │ ├── faInstagramSquare.js │ │ │ │ ├── faInstalod.d.ts │ │ │ │ ├── faInstalod.js │ │ │ │ ├── faIntercom.d.ts │ │ │ │ ├── faIntercom.js │ │ │ │ ├── faInternetExplorer.d.ts │ │ │ │ ├── faInternetExplorer.js │ │ │ │ ├── faInvision.d.ts │ │ │ │ ├── faInvision.js │ │ │ │ ├── faIoxhost.d.ts │ │ │ │ ├── faIoxhost.js │ │ │ │ ├── faItchIo.d.ts │ │ │ │ ├── faItchIo.js │ │ │ │ ├── faItunes.d.ts │ │ │ │ ├── faItunes.js │ │ │ │ ├── faItunesNote.d.ts │ │ │ │ ├── faItunesNote.js │ │ │ │ ├── faJava.d.ts │ │ │ │ ├── faJava.js │ │ │ │ ├── faJediOrder.d.ts │ │ │ │ ├── faJediOrder.js │ │ │ │ ├── faJenkins.d.ts │ │ │ │ ├── faJenkins.js │ │ │ │ ├── faJira.d.ts │ │ │ │ ├── faJira.js │ │ │ │ ├── faJoget.d.ts │ │ │ │ ├── faJoget.js │ │ │ │ ├── faJoomla.d.ts │ │ │ │ ├── faJoomla.js │ │ │ │ ├── faJs.d.ts │ │ │ │ ├── faJs.js │ │ │ │ ├── faJsSquare.d.ts │ │ │ │ ├── faJsSquare.js │ │ │ │ ├── faJsfiddle.d.ts │ │ │ │ ├── faJsfiddle.js │ │ │ │ ├── faKaggle.d.ts │ │ │ │ ├── faKaggle.js │ │ │ │ ├── faKeybase.d.ts │ │ │ │ ├── faKeybase.js │ │ │ │ ├── faKeycdn.d.ts │ │ │ │ ├── faKeycdn.js │ │ │ │ ├── faKickstarter.d.ts │ │ │ │ ├── faKickstarter.js │ │ │ │ ├── faKickstarterK.d.ts │ │ │ │ ├── faKickstarterK.js │ │ │ │ ├── faKorvue.d.ts │ │ │ │ ├── faKorvue.js │ │ │ │ ├── faLaravel.d.ts │ │ │ │ ├── faLaravel.js │ │ │ │ ├── faLastfm.d.ts │ │ │ │ ├── faLastfm.js │ │ │ │ ├── faLastfmSquare.d.ts │ │ │ │ ├── faLastfmSquare.js │ │ │ │ ├── faLeanpub.d.ts │ │ │ │ ├── faLeanpub.js │ │ │ │ ├── faLess.d.ts │ │ │ │ ├── faLess.js │ │ │ │ ├── faLine.d.ts │ │ │ │ ├── faLine.js │ │ │ │ ├── faLinkedin.d.ts │ │ │ │ ├── faLinkedin.js │ │ │ │ ├── faLinkedinIn.d.ts │ │ │ │ ├── faLinkedinIn.js │ │ │ │ ├── faLinode.d.ts │ │ │ │ ├── faLinode.js │ │ │ │ ├── faLinux.d.ts │ │ │ │ ├── faLinux.js │ │ │ │ ├── faLyft.d.ts │ │ │ │ ├── faLyft.js │ │ │ │ ├── faMagento.d.ts │ │ │ │ ├── faMagento.js │ │ │ │ ├── faMailchimp.d.ts │ │ │ │ ├── faMailchimp.js │ │ │ │ ├── faMandalorian.d.ts │ │ │ │ ├── faMandalorian.js │ │ │ │ ├── faMarkdown.d.ts │ │ │ │ ├── faMarkdown.js │ │ │ │ ├── faMastodon.d.ts │ │ │ │ ├── faMastodon.js │ │ │ │ ├── faMaxcdn.d.ts │ │ │ │ ├── faMaxcdn.js │ │ │ │ ├── faMdb.d.ts │ │ │ │ ├── faMdb.js │ │ │ │ ├── faMedapps.d.ts │ │ │ │ ├── faMedapps.js │ │ │ │ ├── faMedium.d.ts │ │ │ │ ├── faMedium.js │ │ │ │ ├── faMediumM.d.ts │ │ │ │ ├── faMediumM.js │ │ │ │ ├── faMedrt.d.ts │ │ │ │ ├── faMedrt.js │ │ │ │ ├── faMeetup.d.ts │ │ │ │ ├── faMeetup.js │ │ │ │ ├── faMegaport.d.ts │ │ │ │ ├── faMegaport.js │ │ │ │ ├── faMendeley.d.ts │ │ │ │ ├── faMendeley.js │ │ │ │ ├── faMicroblog.d.ts │ │ │ │ ├── faMicroblog.js │ │ │ │ ├── faMicrosoft.d.ts │ │ │ │ ├── faMicrosoft.js │ │ │ │ ├── faMix.d.ts │ │ │ │ ├── faMix.js │ │ │ │ ├── faMixcloud.d.ts │ │ │ │ ├── faMixcloud.js │ │ │ │ ├── faMixer.d.ts │ │ │ │ ├── faMixer.js │ │ │ │ ├── faMizuni.d.ts │ │ │ │ ├── faMizuni.js │ │ │ │ ├── faModx.d.ts │ │ │ │ ├── faModx.js │ │ │ │ ├── faMonero.d.ts │ │ │ │ ├── faMonero.js │ │ │ │ ├── faNapster.d.ts │ │ │ │ ├── faNapster.js │ │ │ │ ├── faNeos.d.ts │ │ │ │ ├── faNeos.js │ │ │ │ ├── faNimblr.d.ts │ │ │ │ ├── faNimblr.js │ │ │ │ ├── faNintendoSwitch.d.ts │ │ │ │ ├── faNintendoSwitch.js │ │ │ │ ├── faNode.d.ts │ │ │ │ ├── faNode.js │ │ │ │ ├── faNodeJs.d.ts │ │ │ │ ├── faNodeJs.js │ │ │ │ ├── faNpm.d.ts │ │ │ │ ├── faNpm.js │ │ │ │ ├── faNs8.d.ts │ │ │ │ ├── faNs8.js │ │ │ │ ├── faNutritionix.d.ts │ │ │ │ ├── faNutritionix.js │ │ │ │ ├── faOctopusDeploy.d.ts │ │ │ │ ├── faOctopusDeploy.js │ │ │ │ ├── faOdnoklassniki.d.ts │ │ │ │ ├── faOdnoklassniki.js │ │ │ │ ├── faOdnoklassnikiSquare.d.ts │ │ │ │ ├── faOdnoklassnikiSquare.js │ │ │ │ ├── faOldRepublic.d.ts │ │ │ │ ├── faOldRepublic.js │ │ │ │ ├── faOpencart.d.ts │ │ │ │ ├── faOpencart.js │ │ │ │ ├── faOpenid.d.ts │ │ │ │ ├── faOpenid.js │ │ │ │ ├── faOpera.d.ts │ │ │ │ ├── faOpera.js │ │ │ │ ├── faOptinMonster.d.ts │ │ │ │ ├── faOptinMonster.js │ │ │ │ ├── faOrcid.d.ts │ │ │ │ ├── faOrcid.js │ │ │ │ ├── faOsi.d.ts │ │ │ │ ├── faOsi.js │ │ │ │ ├── faPage4.d.ts │ │ │ │ ├── faPage4.js │ │ │ │ ├── faPagelines.d.ts │ │ │ │ ├── faPagelines.js │ │ │ │ ├── faPalfed.d.ts │ │ │ │ ├── faPalfed.js │ │ │ │ ├── faPatreon.d.ts │ │ │ │ ├── faPatreon.js │ │ │ │ ├── faPaypal.d.ts │ │ │ │ ├── faPaypal.js │ │ │ │ ├── faPennyArcade.d.ts │ │ │ │ ├── faPennyArcade.js │ │ │ │ ├── faPerbyte.d.ts │ │ │ │ ├── faPerbyte.js │ │ │ │ ├── faPeriscope.d.ts │ │ │ │ ├── faPeriscope.js │ │ │ │ ├── faPhabricator.d.ts │ │ │ │ ├── faPhabricator.js │ │ │ │ ├── faPhoenixFramework.d.ts │ │ │ │ ├── faPhoenixFramework.js │ │ │ │ ├── faPhoenixSquadron.d.ts │ │ │ │ ├── faPhoenixSquadron.js │ │ │ │ ├── faPhp.d.ts │ │ │ │ ├── faPhp.js │ │ │ │ ├── faPiedPiper.d.ts │ │ │ │ ├── faPiedPiper.js │ │ │ │ ├── faPiedPiperAlt.d.ts │ │ │ │ ├── faPiedPiperAlt.js │ │ │ │ ├── faPiedPiperHat.d.ts │ │ │ │ ├── faPiedPiperHat.js │ │ │ │ ├── faPiedPiperPp.d.ts │ │ │ │ ├── faPiedPiperPp.js │ │ │ │ ├── faPiedPiperSquare.d.ts │ │ │ │ ├── faPiedPiperSquare.js │ │ │ │ ├── faPinterest.d.ts │ │ │ │ ├── faPinterest.js │ │ │ │ ├── faPinterestP.d.ts │ │ │ │ ├── faPinterestP.js │ │ │ │ ├── faPinterestSquare.d.ts │ │ │ │ ├── faPinterestSquare.js │ │ │ │ ├── faPlaystation.d.ts │ │ │ │ ├── faPlaystation.js │ │ │ │ ├── faProductHunt.d.ts │ │ │ │ ├── faProductHunt.js │ │ │ │ ├── faPushed.d.ts │ │ │ │ ├── faPushed.js │ │ │ │ ├── faPython.d.ts │ │ │ │ ├── faPython.js │ │ │ │ ├── faQq.d.ts │ │ │ │ ├── faQq.js │ │ │ │ ├── faQuinscape.d.ts │ │ │ │ ├── faQuinscape.js │ │ │ │ ├── faQuora.d.ts │ │ │ │ ├── faQuora.js │ │ │ │ ├── faRProject.d.ts │ │ │ │ ├── faRProject.js │ │ │ │ ├── faRaspberryPi.d.ts │ │ │ │ ├── faRaspberryPi.js │ │ │ │ ├── faRavelry.d.ts │ │ │ │ ├── faRavelry.js │ │ │ │ ├── faReact.d.ts │ │ │ │ ├── faReact.js │ │ │ │ ├── faReacteurope.d.ts │ │ │ │ ├── faReacteurope.js │ │ │ │ ├── faReadme.d.ts │ │ │ │ ├── faReadme.js │ │ │ │ ├── faRebel.d.ts │ │ │ │ ├── faRebel.js │ │ │ │ ├── faRedRiver.d.ts │ │ │ │ ├── faRedRiver.js │ │ │ │ ├── faReddit.d.ts │ │ │ │ ├── faReddit.js │ │ │ │ ├── faRedditAlien.d.ts │ │ │ │ ├── faRedditAlien.js │ │ │ │ ├── faRedditSquare.d.ts │ │ │ │ ├── faRedditSquare.js │ │ │ │ ├── faRedhat.d.ts │ │ │ │ ├── faRedhat.js │ │ │ │ ├── faRenren.d.ts │ │ │ │ ├── faRenren.js │ │ │ │ ├── faReplyd.d.ts │ │ │ │ ├── faReplyd.js │ │ │ │ ├── faResearchgate.d.ts │ │ │ │ ├── faResearchgate.js │ │ │ │ ├── faResolving.d.ts │ │ │ │ ├── faResolving.js │ │ │ │ ├── faRev.d.ts │ │ │ │ ├── faRev.js │ │ │ │ ├── faRocketchat.d.ts │ │ │ │ ├── faRocketchat.js │ │ │ │ ├── faRockrms.d.ts │ │ │ │ ├── faRockrms.js │ │ │ │ ├── faRust.d.ts │ │ │ │ ├── faRust.js │ │ │ │ ├── faSafari.d.ts │ │ │ │ ├── faSafari.js │ │ │ │ ├── faSalesforce.d.ts │ │ │ │ ├── faSalesforce.js │ │ │ │ ├── faSass.d.ts │ │ │ │ ├── faSass.js │ │ │ │ ├── faSchlix.d.ts │ │ │ │ ├── faSchlix.js │ │ │ │ ├── faScribd.d.ts │ │ │ │ ├── faScribd.js │ │ │ │ ├── faSearchengin.d.ts │ │ │ │ ├── faSearchengin.js │ │ │ │ ├── faSellcast.d.ts │ │ │ │ ├── faSellcast.js │ │ │ │ ├── faSellsy.d.ts │ │ │ │ ├── faSellsy.js │ │ │ │ ├── faServicestack.d.ts │ │ │ │ ├── faServicestack.js │ │ │ │ ├── faShirtsinbulk.d.ts │ │ │ │ ├── faShirtsinbulk.js │ │ │ │ ├── faShopify.d.ts │ │ │ │ ├── faShopify.js │ │ │ │ ├── faShopware.d.ts │ │ │ │ ├── faShopware.js │ │ │ │ ├── faSimplybuilt.d.ts │ │ │ │ ├── faSimplybuilt.js │ │ │ │ ├── faSistrix.d.ts │ │ │ │ ├── faSistrix.js │ │ │ │ ├── faSith.d.ts │ │ │ │ ├── faSith.js │ │ │ │ ├── faSketch.d.ts │ │ │ │ ├── faSketch.js │ │ │ │ ├── faSkyatlas.d.ts │ │ │ │ ├── faSkyatlas.js │ │ │ │ ├── faSkype.d.ts │ │ │ │ ├── faSkype.js │ │ │ │ ├── faSlack.d.ts │ │ │ │ ├── faSlack.js │ │ │ │ ├── faSlackHash.d.ts │ │ │ │ ├── faSlackHash.js │ │ │ │ ├── faSlideshare.d.ts │ │ │ │ ├── faSlideshare.js │ │ │ │ ├── faSnapchat.d.ts │ │ │ │ ├── faSnapchat.js │ │ │ │ ├── faSnapchatGhost.d.ts │ │ │ │ ├── faSnapchatGhost.js │ │ │ │ ├── faSnapchatSquare.d.ts │ │ │ │ ├── faSnapchatSquare.js │ │ │ │ ├── faSoundcloud.d.ts │ │ │ │ ├── faSoundcloud.js │ │ │ │ ├── faSourcetree.d.ts │ │ │ │ ├── faSourcetree.js │ │ │ │ ├── faSpeakap.d.ts │ │ │ │ ├── faSpeakap.js │ │ │ │ ├── faSpeakerDeck.d.ts │ │ │ │ ├── faSpeakerDeck.js │ │ │ │ ├── faSpotify.d.ts │ │ │ │ ├── faSpotify.js │ │ │ │ ├── faSquarespace.d.ts │ │ │ │ ├── faSquarespace.js │ │ │ │ ├── faStackExchange.d.ts │ │ │ │ ├── faStackExchange.js │ │ │ │ ├── faStackOverflow.d.ts │ │ │ │ ├── faStackOverflow.js │ │ │ │ ├── faStackpath.d.ts │ │ │ │ ├── faStackpath.js │ │ │ │ ├── faStaylinked.d.ts │ │ │ │ ├── faStaylinked.js │ │ │ │ ├── faSteam.d.ts │ │ │ │ ├── faSteam.js │ │ │ │ ├── faSteamSquare.d.ts │ │ │ │ ├── faSteamSquare.js │ │ │ │ ├── faSteamSymbol.d.ts │ │ │ │ ├── faSteamSymbol.js │ │ │ │ ├── faStickerMule.d.ts │ │ │ │ ├── faStickerMule.js │ │ │ │ ├── faStrava.d.ts │ │ │ │ ├── faStrava.js │ │ │ │ ├── faStripe.d.ts │ │ │ │ ├── faStripe.js │ │ │ │ ├── faStripeS.d.ts │ │ │ │ ├── faStripeS.js │ │ │ │ ├── faStudiovinari.d.ts │ │ │ │ ├── faStudiovinari.js │ │ │ │ ├── faStumbleupon.d.ts │ │ │ │ ├── faStumbleupon.js │ │ │ │ ├── faStumbleuponCircle.d.ts │ │ │ │ ├── faStumbleuponCircle.js │ │ │ │ ├── faSuperpowers.d.ts │ │ │ │ ├── faSuperpowers.js │ │ │ │ ├── faSupple.d.ts │ │ │ │ ├── faSupple.js │ │ │ │ ├── faSuse.d.ts │ │ │ │ ├── faSuse.js │ │ │ │ ├── faSwift.d.ts │ │ │ │ ├── faSwift.js │ │ │ │ ├── faSymfony.d.ts │ │ │ │ ├── faSymfony.js │ │ │ │ ├── faTeamspeak.d.ts │ │ │ │ ├── faTeamspeak.js │ │ │ │ ├── faTelegram.d.ts │ │ │ │ ├── faTelegram.js │ │ │ │ ├── faTelegramPlane.d.ts │ │ │ │ ├── faTelegramPlane.js │ │ │ │ ├── faTencentWeibo.d.ts │ │ │ │ ├── faTencentWeibo.js │ │ │ │ ├── faTheRedYeti.d.ts │ │ │ │ ├── faTheRedYeti.js │ │ │ │ ├── faThemeco.d.ts │ │ │ │ ├── faThemeco.js │ │ │ │ ├── faThemeisle.d.ts │ │ │ │ ├── faThemeisle.js │ │ │ │ ├── faThinkPeaks.d.ts │ │ │ │ ├── faThinkPeaks.js │ │ │ │ ├── faTiktok.d.ts │ │ │ │ ├── faTiktok.js │ │ │ │ ├── faTradeFederation.d.ts │ │ │ │ ├── faTradeFederation.js │ │ │ │ ├── faTrello.d.ts │ │ │ │ ├── faTrello.js │ │ │ │ ├── faTripadvisor.d.ts │ │ │ │ ├── faTripadvisor.js │ │ │ │ ├── faTumblr.d.ts │ │ │ │ ├── faTumblr.js │ │ │ │ ├── faTumblrSquare.d.ts │ │ │ │ ├── faTumblrSquare.js │ │ │ │ ├── faTwitch.d.ts │ │ │ │ ├── faTwitch.js │ │ │ │ ├── faTwitter.d.ts │ │ │ │ ├── faTwitter.js │ │ │ │ ├── faTwitterSquare.d.ts │ │ │ │ ├── faTwitterSquare.js │ │ │ │ ├── faTypo3.d.ts │ │ │ │ ├── faTypo3.js │ │ │ │ ├── faUber.d.ts │ │ │ │ ├── faUber.js │ │ │ │ ├── faUbuntu.d.ts │ │ │ │ ├── faUbuntu.js │ │ │ │ ├── faUikit.d.ts │ │ │ │ ├── faUikit.js │ │ │ │ ├── faUmbraco.d.ts │ │ │ │ ├── faUmbraco.js │ │ │ │ ├── faUncharted.d.ts │ │ │ │ ├── faUncharted.js │ │ │ │ ├── faUniregistry.d.ts │ │ │ │ ├── faUniregistry.js │ │ │ │ ├── faUnity.d.ts │ │ │ │ ├── faUnity.js │ │ │ │ ├── faUnsplash.d.ts │ │ │ │ ├── faUnsplash.js │ │ │ │ ├── faUntappd.d.ts │ │ │ │ ├── faUntappd.js │ │ │ │ ├── faUps.d.ts │ │ │ │ ├── faUps.js │ │ │ │ ├── faUsb.d.ts │ │ │ │ ├── faUsb.js │ │ │ │ ├── faUsps.d.ts │ │ │ │ ├── faUsps.js │ │ │ │ ├── faUssunnah.d.ts │ │ │ │ ├── faUssunnah.js │ │ │ │ ├── faVaadin.d.ts │ │ │ │ ├── faVaadin.js │ │ │ │ ├── faViacoin.d.ts │ │ │ │ ├── faViacoin.js │ │ │ │ ├── faViadeo.d.ts │ │ │ │ ├── faViadeo.js │ │ │ │ ├── faViadeoSquare.d.ts │ │ │ │ ├── faViadeoSquare.js │ │ │ │ ├── faViber.d.ts │ │ │ │ ├── faViber.js │ │ │ │ ├── faVimeo.d.ts │ │ │ │ ├── faVimeo.js │ │ │ │ ├── faVimeoSquare.d.ts │ │ │ │ ├── faVimeoSquare.js │ │ │ │ ├── faVimeoV.d.ts │ │ │ │ ├── faVimeoV.js │ │ │ │ ├── faVine.d.ts │ │ │ │ ├── faVine.js │ │ │ │ ├── faVk.d.ts │ │ │ │ ├── faVk.js │ │ │ │ ├── faVnv.d.ts │ │ │ │ ├── faVnv.js │ │ │ │ ├── faVuejs.d.ts │ │ │ │ ├── faVuejs.js │ │ │ │ ├── faWatchmanMonitoring.d.ts │ │ │ │ ├── faWatchmanMonitoring.js │ │ │ │ ├── faWaze.d.ts │ │ │ │ ├── faWaze.js │ │ │ │ ├── faWeebly.d.ts │ │ │ │ ├── faWeebly.js │ │ │ │ ├── faWeibo.d.ts │ │ │ │ ├── faWeibo.js │ │ │ │ ├── faWeixin.d.ts │ │ │ │ ├── faWeixin.js │ │ │ │ ├── faWhatsapp.d.ts │ │ │ │ ├── faWhatsapp.js │ │ │ │ ├── faWhatsappSquare.d.ts │ │ │ │ ├── faWhatsappSquare.js │ │ │ │ ├── faWhmcs.d.ts │ │ │ │ ├── faWhmcs.js │ │ │ │ ├── faWikipediaW.d.ts │ │ │ │ ├── faWikipediaW.js │ │ │ │ ├── faWindows.d.ts │ │ │ │ ├── faWindows.js │ │ │ │ ├── faWix.d.ts │ │ │ │ ├── faWix.js │ │ │ │ ├── faWizardsOfTheCoast.d.ts │ │ │ │ ├── faWizardsOfTheCoast.js │ │ │ │ ├── faWodu.d.ts │ │ │ │ ├── faWodu.js │ │ │ │ ├── faWolfPackBattalion.d.ts │ │ │ │ ├── faWolfPackBattalion.js │ │ │ │ ├── faWordpress.d.ts │ │ │ │ ├── faWordpress.js │ │ │ │ ├── faWordpressSimple.d.ts │ │ │ │ ├── faWordpressSimple.js │ │ │ │ ├── faWpbeginner.d.ts │ │ │ │ ├── faWpbeginner.js │ │ │ │ ├── faWpexplorer.d.ts │ │ │ │ ├── faWpexplorer.js │ │ │ │ ├── faWpforms.d.ts │ │ │ │ ├── faWpforms.js │ │ │ │ ├── faWpressr.d.ts │ │ │ │ ├── faWpressr.js │ │ │ │ ├── faXbox.d.ts │ │ │ │ ├── faXbox.js │ │ │ │ ├── faXing.d.ts │ │ │ │ ├── faXing.js │ │ │ │ ├── faXingSquare.d.ts │ │ │ │ ├── faXingSquare.js │ │ │ │ ├── faYCombinator.d.ts │ │ │ │ ├── faYCombinator.js │ │ │ │ ├── faYahoo.d.ts │ │ │ │ ├── faYahoo.js │ │ │ │ ├── faYammer.d.ts │ │ │ │ ├── faYammer.js │ │ │ │ ├── faYandex.d.ts │ │ │ │ ├── faYandex.js │ │ │ │ ├── faYandexInternational.d.ts │ │ │ │ ├── faYandexInternational.js │ │ │ │ ├── faYarn.d.ts │ │ │ │ ├── faYarn.js │ │ │ │ ├── faYelp.d.ts │ │ │ │ ├── faYelp.js │ │ │ │ ├── faYoast.d.ts │ │ │ │ ├── faYoast.js │ │ │ │ ├── faYoutube.d.ts │ │ │ │ ├── faYoutube.js │ │ │ │ ├── faYoutubeSquare.d.ts │ │ │ │ ├── faYoutubeSquare.js │ │ │ │ ├── faZhihu.d.ts │ │ │ │ ├── faZhihu.js │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.es.js │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ │ ├── free-regular-svg-icons │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── attribution.js │ │ │ │ ├── faAddressBook.d.ts │ │ │ │ ├── faAddressBook.js │ │ │ │ ├── faAddressCard.d.ts │ │ │ │ ├── faAddressCard.js │ │ │ │ ├── faAngry.d.ts │ │ │ │ ├── faAngry.js │ │ │ │ ├── faArrowAltCircleDown.d.ts │ │ │ │ ├── faArrowAltCircleDown.js │ │ │ │ ├── faArrowAltCircleLeft.d.ts │ │ │ │ ├── faArrowAltCircleLeft.js │ │ │ │ ├── faArrowAltCircleRight.d.ts │ │ │ │ ├── faArrowAltCircleRight.js │ │ │ │ ├── faArrowAltCircleUp.d.ts │ │ │ │ ├── faArrowAltCircleUp.js │ │ │ │ ├── faBell.d.ts │ │ │ │ ├── faBell.js │ │ │ │ ├── faBellSlash.d.ts │ │ │ │ ├── faBellSlash.js │ │ │ │ ├── faBookmark.d.ts │ │ │ │ ├── faBookmark.js │ │ │ │ ├── faBuilding.d.ts │ │ │ │ ├── faBuilding.js │ │ │ │ ├── faCalendar.d.ts │ │ │ │ ├── faCalendar.js │ │ │ │ ├── faCalendarAlt.d.ts │ │ │ │ ├── faCalendarAlt.js │ │ │ │ ├── faCalendarCheck.d.ts │ │ │ │ ├── faCalendarCheck.js │ │ │ │ ├── faCalendarMinus.d.ts │ │ │ │ ├── faCalendarMinus.js │ │ │ │ ├── faCalendarPlus.d.ts │ │ │ │ ├── faCalendarPlus.js │ │ │ │ ├── faCalendarTimes.d.ts │ │ │ │ ├── faCalendarTimes.js │ │ │ │ ├── faCaretSquareDown.d.ts │ │ │ │ ├── faCaretSquareDown.js │ │ │ │ ├── faCaretSquareLeft.d.ts │ │ │ │ ├── faCaretSquareLeft.js │ │ │ │ ├── faCaretSquareRight.d.ts │ │ │ │ ├── faCaretSquareRight.js │ │ │ │ ├── faCaretSquareUp.d.ts │ │ │ │ ├── faCaretSquareUp.js │ │ │ │ ├── faChartBar.d.ts │ │ │ │ ├── faChartBar.js │ │ │ │ ├── faCheckCircle.d.ts │ │ │ │ ├── faCheckCircle.js │ │ │ │ ├── faCheckSquare.d.ts │ │ │ │ ├── faCheckSquare.js │ │ │ │ ├── faCircle.d.ts │ │ │ │ ├── faCircle.js │ │ │ │ ├── faClipboard.d.ts │ │ │ │ ├── faClipboard.js │ │ │ │ ├── faClock.d.ts │ │ │ │ ├── faClock.js │ │ │ │ ├── faClone.d.ts │ │ │ │ ├── faClone.js │ │ │ │ ├── faClosedCaptioning.d.ts │ │ │ │ ├── faClosedCaptioning.js │ │ │ │ ├── faComment.d.ts │ │ │ │ ├── faComment.js │ │ │ │ ├── faCommentAlt.d.ts │ │ │ │ ├── faCommentAlt.js │ │ │ │ ├── faCommentDots.d.ts │ │ │ │ ├── faCommentDots.js │ │ │ │ ├── faComments.d.ts │ │ │ │ ├── faComments.js │ │ │ │ ├── faCompass.d.ts │ │ │ │ ├── faCompass.js │ │ │ │ ├── faCopy.d.ts │ │ │ │ ├── faCopy.js │ │ │ │ ├── faCopyright.d.ts │ │ │ │ ├── faCopyright.js │ │ │ │ ├── faCreditCard.d.ts │ │ │ │ ├── faCreditCard.js │ │ │ │ ├── faDizzy.d.ts │ │ │ │ ├── faDizzy.js │ │ │ │ ├── faDotCircle.d.ts │ │ │ │ ├── faDotCircle.js │ │ │ │ ├── faEdit.d.ts │ │ │ │ ├── faEdit.js │ │ │ │ ├── faEnvelope.d.ts │ │ │ │ ├── faEnvelope.js │ │ │ │ ├── faEnvelopeOpen.d.ts │ │ │ │ ├── faEnvelopeOpen.js │ │ │ │ ├── faEye.d.ts │ │ │ │ ├── faEye.js │ │ │ │ ├── faEyeSlash.d.ts │ │ │ │ ├── faEyeSlash.js │ │ │ │ ├── faFile.d.ts │ │ │ │ ├── faFile.js │ │ │ │ ├── faFileAlt.d.ts │ │ │ │ ├── faFileAlt.js │ │ │ │ ├── faFileArchive.d.ts │ │ │ │ ├── faFileArchive.js │ │ │ │ ├── faFileAudio.d.ts │ │ │ │ ├── faFileAudio.js │ │ │ │ ├── faFileCode.d.ts │ │ │ │ ├── faFileCode.js │ │ │ │ ├── faFileExcel.d.ts │ │ │ │ ├── faFileExcel.js │ │ │ │ ├── faFileImage.d.ts │ │ │ │ ├── faFileImage.js │ │ │ │ ├── faFilePdf.d.ts │ │ │ │ ├── faFilePdf.js │ │ │ │ ├── faFilePowerpoint.d.ts │ │ │ │ ├── faFilePowerpoint.js │ │ │ │ ├── faFileVideo.d.ts │ │ │ │ ├── faFileVideo.js │ │ │ │ ├── faFileWord.d.ts │ │ │ │ ├── faFileWord.js │ │ │ │ ├── faFlag.d.ts │ │ │ │ ├── faFlag.js │ │ │ │ ├── faFlushed.d.ts │ │ │ │ ├── faFlushed.js │ │ │ │ ├── faFolder.d.ts │ │ │ │ ├── faFolder.js │ │ │ │ ├── faFolderOpen.d.ts │ │ │ │ ├── faFolderOpen.js │ │ │ │ ├── faFontAwesomeLogoFull.d.ts │ │ │ │ ├── faFontAwesomeLogoFull.js │ │ │ │ ├── faFrown.d.ts │ │ │ │ ├── faFrown.js │ │ │ │ ├── faFrownOpen.d.ts │ │ │ │ ├── faFrownOpen.js │ │ │ │ ├── faFutbol.d.ts │ │ │ │ ├── faFutbol.js │ │ │ │ ├── faGem.d.ts │ │ │ │ ├── faGem.js │ │ │ │ ├── faGrimace.d.ts │ │ │ │ ├── faGrimace.js │ │ │ │ ├── faGrin.d.ts │ │ │ │ ├── faGrin.js │ │ │ │ ├── faGrinAlt.d.ts │ │ │ │ ├── faGrinAlt.js │ │ │ │ ├── faGrinBeam.d.ts │ │ │ │ ├── faGrinBeam.js │ │ │ │ ├── faGrinBeamSweat.d.ts │ │ │ │ ├── faGrinBeamSweat.js │ │ │ │ ├── faGrinHearts.d.ts │ │ │ │ ├── faGrinHearts.js │ │ │ │ ├── faGrinSquint.d.ts │ │ │ │ ├── faGrinSquint.js │ │ │ │ ├── faGrinSquintTears.d.ts │ │ │ │ ├── faGrinSquintTears.js │ │ │ │ ├── faGrinStars.d.ts │ │ │ │ ├── faGrinStars.js │ │ │ │ ├── faGrinTears.d.ts │ │ │ │ ├── faGrinTears.js │ │ │ │ ├── faGrinTongue.d.ts │ │ │ │ ├── faGrinTongue.js │ │ │ │ ├── faGrinTongueSquint.d.ts │ │ │ │ ├── faGrinTongueSquint.js │ │ │ │ ├── faGrinTongueWink.d.ts │ │ │ │ ├── faGrinTongueWink.js │ │ │ │ ├── faGrinWink.d.ts │ │ │ │ ├── faGrinWink.js │ │ │ │ ├── faHandLizard.d.ts │ │ │ │ ├── faHandLizard.js │ │ │ │ ├── faHandPaper.d.ts │ │ │ │ ├── faHandPaper.js │ │ │ │ ├── faHandPeace.d.ts │ │ │ │ ├── faHandPeace.js │ │ │ │ ├── faHandPointDown.d.ts │ │ │ │ ├── faHandPointDown.js │ │ │ │ ├── faHandPointLeft.d.ts │ │ │ │ ├── faHandPointLeft.js │ │ │ │ ├── faHandPointRight.d.ts │ │ │ │ ├── faHandPointRight.js │ │ │ │ ├── faHandPointUp.d.ts │ │ │ │ ├── faHandPointUp.js │ │ │ │ ├── faHandPointer.d.ts │ │ │ │ ├── faHandPointer.js │ │ │ │ ├── faHandRock.d.ts │ │ │ │ ├── faHandRock.js │ │ │ │ ├── faHandScissors.d.ts │ │ │ │ ├── faHandScissors.js │ │ │ │ ├── faHandSpock.d.ts │ │ │ │ ├── faHandSpock.js │ │ │ │ ├── faHandshake.d.ts │ │ │ │ ├── faHandshake.js │ │ │ │ ├── faHdd.d.ts │ │ │ │ ├── faHdd.js │ │ │ │ ├── faHeart.d.ts │ │ │ │ ├── faHeart.js │ │ │ │ ├── faHospital.d.ts │ │ │ │ ├── faHospital.js │ │ │ │ ├── faHourglass.d.ts │ │ │ │ ├── faHourglass.js │ │ │ │ ├── faIdBadge.d.ts │ │ │ │ ├── faIdBadge.js │ │ │ │ ├── faIdCard.d.ts │ │ │ │ ├── faIdCard.js │ │ │ │ ├── faImage.d.ts │ │ │ │ ├── faImage.js │ │ │ │ ├── faImages.d.ts │ │ │ │ ├── faImages.js │ │ │ │ ├── faKeyboard.d.ts │ │ │ │ ├── faKeyboard.js │ │ │ │ ├── faKiss.d.ts │ │ │ │ ├── faKiss.js │ │ │ │ ├── faKissBeam.d.ts │ │ │ │ ├── faKissBeam.js │ │ │ │ ├── faKissWinkHeart.d.ts │ │ │ │ ├── faKissWinkHeart.js │ │ │ │ ├── faLaugh.d.ts │ │ │ │ ├── faLaugh.js │ │ │ │ ├── faLaughBeam.d.ts │ │ │ │ ├── faLaughBeam.js │ │ │ │ ├── faLaughSquint.d.ts │ │ │ │ ├── faLaughSquint.js │ │ │ │ ├── faLaughWink.d.ts │ │ │ │ ├── faLaughWink.js │ │ │ │ ├── faLemon.d.ts │ │ │ │ ├── faLemon.js │ │ │ │ ├── faLifeRing.d.ts │ │ │ │ ├── faLifeRing.js │ │ │ │ ├── faLightbulb.d.ts │ │ │ │ ├── faLightbulb.js │ │ │ │ ├── faListAlt.d.ts │ │ │ │ ├── faListAlt.js │ │ │ │ ├── faMap.d.ts │ │ │ │ ├── faMap.js │ │ │ │ ├── faMeh.d.ts │ │ │ │ ├── faMeh.js │ │ │ │ ├── faMehBlank.d.ts │ │ │ │ ├── faMehBlank.js │ │ │ │ ├── faMehRollingEyes.d.ts │ │ │ │ ├── faMehRollingEyes.js │ │ │ │ ├── faMinusSquare.d.ts │ │ │ │ ├── faMinusSquare.js │ │ │ │ ├── faMoneyBillAlt.d.ts │ │ │ │ ├── faMoneyBillAlt.js │ │ │ │ ├── faMoon.d.ts │ │ │ │ ├── faMoon.js │ │ │ │ ├── faNewspaper.d.ts │ │ │ │ ├── faNewspaper.js │ │ │ │ ├── faObjectGroup.d.ts │ │ │ │ ├── faObjectGroup.js │ │ │ │ ├── faObjectUngroup.d.ts │ │ │ │ ├── faObjectUngroup.js │ │ │ │ ├── faPaperPlane.d.ts │ │ │ │ ├── faPaperPlane.js │ │ │ │ ├── faPauseCircle.d.ts │ │ │ │ ├── faPauseCircle.js │ │ │ │ ├── faPlayCircle.d.ts │ │ │ │ ├── faPlayCircle.js │ │ │ │ ├── faPlusSquare.d.ts │ │ │ │ ├── faPlusSquare.js │ │ │ │ ├── faQuestionCircle.d.ts │ │ │ │ ├── faQuestionCircle.js │ │ │ │ ├── faRegistered.d.ts │ │ │ │ ├── faRegistered.js │ │ │ │ ├── faSadCry.d.ts │ │ │ │ ├── faSadCry.js │ │ │ │ ├── faSadTear.d.ts │ │ │ │ ├── faSadTear.js │ │ │ │ ├── faSave.d.ts │ │ │ │ ├── faSave.js │ │ │ │ ├── faShareSquare.d.ts │ │ │ │ ├── faShareSquare.js │ │ │ │ ├── faSmile.d.ts │ │ │ │ ├── faSmile.js │ │ │ │ ├── faSmileBeam.d.ts │ │ │ │ ├── faSmileBeam.js │ │ │ │ ├── faSmileWink.d.ts │ │ │ │ ├── faSmileWink.js │ │ │ │ ├── faSnowflake.d.ts │ │ │ │ ├── faSnowflake.js │ │ │ │ ├── faSquare.d.ts │ │ │ │ ├── faSquare.js │ │ │ │ ├── faStar.d.ts │ │ │ │ ├── faStar.js │ │ │ │ ├── faStarHalf.d.ts │ │ │ │ ├── faStarHalf.js │ │ │ │ ├── faStickyNote.d.ts │ │ │ │ ├── faStickyNote.js │ │ │ │ ├── faStopCircle.d.ts │ │ │ │ ├── faStopCircle.js │ │ │ │ ├── faSun.d.ts │ │ │ │ ├── faSun.js │ │ │ │ ├── faSurprise.d.ts │ │ │ │ ├── faSurprise.js │ │ │ │ ├── faThumbsDown.d.ts │ │ │ │ ├── faThumbsDown.js │ │ │ │ ├── faThumbsUp.d.ts │ │ │ │ ├── faThumbsUp.js │ │ │ │ ├── faTimesCircle.d.ts │ │ │ │ ├── faTimesCircle.js │ │ │ │ ├── faTired.d.ts │ │ │ │ ├── faTired.js │ │ │ │ ├── faTrashAlt.d.ts │ │ │ │ ├── faTrashAlt.js │ │ │ │ ├── faUser.d.ts │ │ │ │ ├── faUser.js │ │ │ │ ├── faUserCircle.d.ts │ │ │ │ ├── faUserCircle.js │ │ │ │ ├── faWindowClose.d.ts │ │ │ │ ├── faWindowClose.js │ │ │ │ ├── faWindowMaximize.d.ts │ │ │ │ ├── faWindowMaximize.js │ │ │ │ ├── faWindowMinimize.d.ts │ │ │ │ ├── faWindowMinimize.js │ │ │ │ ├── faWindowRestore.d.ts │ │ │ │ ├── faWindowRestore.js │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.es.js │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ │ └── free-solid-svg-icons │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── attribution.js │ │ │ │ ├── faAd.d.ts │ │ │ │ ├── faAd.js │ │ │ │ ├── faAddressBook.d.ts │ │ │ │ ├── faAddressBook.js │ │ │ │ ├── faAddressCard.d.ts │ │ │ │ ├── faAddressCard.js │ │ │ │ ├── faAdjust.d.ts │ │ │ │ ├── faAdjust.js │ │ │ │ ├── faAirFreshener.d.ts │ │ │ │ ├── faAirFreshener.js │ │ │ │ ├── faAlignCenter.d.ts │ │ │ │ ├── faAlignCenter.js │ │ │ │ ├── faAlignJustify.d.ts │ │ │ │ ├── faAlignJustify.js │ │ │ │ ├── faAlignLeft.d.ts │ │ │ │ ├── faAlignLeft.js │ │ │ │ ├── faAlignRight.d.ts │ │ │ │ ├── faAlignRight.js │ │ │ │ ├── faAllergies.d.ts │ │ │ │ ├── faAllergies.js │ │ │ │ ├── faAmbulance.d.ts │ │ │ │ ├── faAmbulance.js │ │ │ │ ├── faAmericanSignLanguageInterpreting.d.ts │ │ │ │ ├── faAmericanSignLanguageInterpreting.js │ │ │ │ ├── faAnchor.d.ts │ │ │ │ ├── faAnchor.js │ │ │ │ ├── faAngleDoubleDown.d.ts │ │ │ │ ├── faAngleDoubleDown.js │ │ │ │ ├── faAngleDoubleLeft.d.ts │ │ │ │ ├── faAngleDoubleLeft.js │ │ │ │ ├── faAngleDoubleRight.d.ts │ │ │ │ ├── faAngleDoubleRight.js │ │ │ │ ├── faAngleDoubleUp.d.ts │ │ │ │ ├── faAngleDoubleUp.js │ │ │ │ ├── faAngleDown.d.ts │ │ │ │ ├── faAngleDown.js │ │ │ │ ├── faAngleLeft.d.ts │ │ │ │ ├── faAngleLeft.js │ │ │ │ ├── faAngleRight.d.ts │ │ │ │ ├── faAngleRight.js │ │ │ │ ├── faAngleUp.d.ts │ │ │ │ ├── faAngleUp.js │ │ │ │ ├── faAngry.d.ts │ │ │ │ ├── faAngry.js │ │ │ │ ├── faAnkh.d.ts │ │ │ │ ├── faAnkh.js │ │ │ │ ├── faAppleAlt.d.ts │ │ │ │ ├── faAppleAlt.js │ │ │ │ ├── faArchive.d.ts │ │ │ │ ├── faArchive.js │ │ │ │ ├── faArchway.d.ts │ │ │ │ ├── faArchway.js │ │ │ │ ├── faArrowAltCircleDown.d.ts │ │ │ │ ├── faArrowAltCircleDown.js │ │ │ │ ├── faArrowAltCircleLeft.d.ts │ │ │ │ ├── faArrowAltCircleLeft.js │ │ │ │ ├── faArrowAltCircleRight.d.ts │ │ │ │ ├── faArrowAltCircleRight.js │ │ │ │ ├── faArrowAltCircleUp.d.ts │ │ │ │ ├── faArrowAltCircleUp.js │ │ │ │ ├── faArrowCircleDown.d.ts │ │ │ │ ├── faArrowCircleDown.js │ │ │ │ ├── faArrowCircleLeft.d.ts │ │ │ │ ├── faArrowCircleLeft.js │ │ │ │ ├── faArrowCircleRight.d.ts │ │ │ │ ├── faArrowCircleRight.js │ │ │ │ ├── faArrowCircleUp.d.ts │ │ │ │ ├── faArrowCircleUp.js │ │ │ │ ├── faArrowDown.d.ts │ │ │ │ ├── faArrowDown.js │ │ │ │ ├── faArrowLeft.d.ts │ │ │ │ ├── faArrowLeft.js │ │ │ │ ├── faArrowRight.d.ts │ │ │ │ ├── faArrowRight.js │ │ │ │ ├── faArrowUp.d.ts │ │ │ │ ├── faArrowUp.js │ │ │ │ ├── faArrowsAlt.d.ts │ │ │ │ ├── faArrowsAlt.js │ │ │ │ ├── faArrowsAltH.d.ts │ │ │ │ ├── faArrowsAltH.js │ │ │ │ ├── faArrowsAltV.d.ts │ │ │ │ ├── faArrowsAltV.js │ │ │ │ ├── faAssistiveListeningSystems.d.ts │ │ │ │ ├── faAssistiveListeningSystems.js │ │ │ │ ├── faAsterisk.d.ts │ │ │ │ ├── faAsterisk.js │ │ │ │ ├── faAt.d.ts │ │ │ │ ├── faAt.js │ │ │ │ ├── faAtlas.d.ts │ │ │ │ ├── faAtlas.js │ │ │ │ ├── faAtom.d.ts │ │ │ │ ├── faAtom.js │ │ │ │ ├── faAudioDescription.d.ts │ │ │ │ ├── faAudioDescription.js │ │ │ │ ├── faAward.d.ts │ │ │ │ ├── faAward.js │ │ │ │ ├── faBaby.d.ts │ │ │ │ ├── faBaby.js │ │ │ │ ├── faBabyCarriage.d.ts │ │ │ │ ├── faBabyCarriage.js │ │ │ │ ├── faBackspace.d.ts │ │ │ │ ├── faBackspace.js │ │ │ │ ├── faBackward.d.ts │ │ │ │ ├── faBackward.js │ │ │ │ ├── faBacon.d.ts │ │ │ │ ├── faBacon.js │ │ │ │ ├── faBacteria.d.ts │ │ │ │ ├── faBacteria.js │ │ │ │ ├── faBacterium.d.ts │ │ │ │ ├── faBacterium.js │ │ │ │ ├── faBahai.d.ts │ │ │ │ ├── faBahai.js │ │ │ │ ├── faBalanceScale.d.ts │ │ │ │ ├── faBalanceScale.js │ │ │ │ ├── faBalanceScaleLeft.d.ts │ │ │ │ ├── faBalanceScaleLeft.js │ │ │ │ ├── faBalanceScaleRight.d.ts │ │ │ │ ├── faBalanceScaleRight.js │ │ │ │ ├── faBan.d.ts │ │ │ │ ├── faBan.js │ │ │ │ ├── faBandAid.d.ts │ │ │ │ ├── faBandAid.js │ │ │ │ ├── faBarcode.d.ts │ │ │ │ ├── faBarcode.js │ │ │ │ ├── faBars.d.ts │ │ │ │ ├── faBars.js │ │ │ │ ├── faBaseballBall.d.ts │ │ │ │ ├── faBaseballBall.js │ │ │ │ ├── faBasketballBall.d.ts │ │ │ │ ├── faBasketballBall.js │ │ │ │ ├── faBath.d.ts │ │ │ │ ├── faBath.js │ │ │ │ ├── faBatteryEmpty.d.ts │ │ │ │ ├── faBatteryEmpty.js │ │ │ │ ├── faBatteryFull.d.ts │ │ │ │ ├── faBatteryFull.js │ │ │ │ ├── faBatteryHalf.d.ts │ │ │ │ ├── faBatteryHalf.js │ │ │ │ ├── faBatteryQuarter.d.ts │ │ │ │ ├── faBatteryQuarter.js │ │ │ │ ├── faBatteryThreeQuarters.d.ts │ │ │ │ ├── faBatteryThreeQuarters.js │ │ │ │ ├── faBed.d.ts │ │ │ │ ├── faBed.js │ │ │ │ ├── faBeer.d.ts │ │ │ │ ├── faBeer.js │ │ │ │ ├── faBell.d.ts │ │ │ │ ├── faBell.js │ │ │ │ ├── faBellSlash.d.ts │ │ │ │ ├── faBellSlash.js │ │ │ │ ├── faBezierCurve.d.ts │ │ │ │ ├── faBezierCurve.js │ │ │ │ ├── faBible.d.ts │ │ │ │ ├── faBible.js │ │ │ │ ├── faBicycle.d.ts │ │ │ │ ├── faBicycle.js │ │ │ │ ├── faBiking.d.ts │ │ │ │ ├── faBiking.js │ │ │ │ ├── faBinoculars.d.ts │ │ │ │ ├── faBinoculars.js │ │ │ │ ├── faBiohazard.d.ts │ │ │ │ ├── faBiohazard.js │ │ │ │ ├── faBirthdayCake.d.ts │ │ │ │ ├── faBirthdayCake.js │ │ │ │ ├── faBlender.d.ts │ │ │ │ ├── faBlender.js │ │ │ │ ├── faBlenderPhone.d.ts │ │ │ │ ├── faBlenderPhone.js │ │ │ │ ├── faBlind.d.ts │ │ │ │ ├── faBlind.js │ │ │ │ ├── faBlog.d.ts │ │ │ │ ├── faBlog.js │ │ │ │ ├── faBold.d.ts │ │ │ │ ├── faBold.js │ │ │ │ ├── faBolt.d.ts │ │ │ │ ├── faBolt.js │ │ │ │ ├── faBomb.d.ts │ │ │ │ ├── faBomb.js │ │ │ │ ├── faBone.d.ts │ │ │ │ ├── faBone.js │ │ │ │ ├── faBong.d.ts │ │ │ │ ├── faBong.js │ │ │ │ ├── faBook.d.ts │ │ │ │ ├── faBook.js │ │ │ │ ├── faBookDead.d.ts │ │ │ │ ├── faBookDead.js │ │ │ │ ├── faBookMedical.d.ts │ │ │ │ ├── faBookMedical.js │ │ │ │ ├── faBookOpen.d.ts │ │ │ │ ├── faBookOpen.js │ │ │ │ ├── faBookReader.d.ts │ │ │ │ ├── faBookReader.js │ │ │ │ ├── faBookmark.d.ts │ │ │ │ ├── faBookmark.js │ │ │ │ ├── faBorderAll.d.ts │ │ │ │ ├── faBorderAll.js │ │ │ │ ├── faBorderNone.d.ts │ │ │ │ ├── faBorderNone.js │ │ │ │ ├── faBorderStyle.d.ts │ │ │ │ ├── faBorderStyle.js │ │ │ │ ├── faBowlingBall.d.ts │ │ │ │ ├── faBowlingBall.js │ │ │ │ ├── faBox.d.ts │ │ │ │ ├── faBox.js │ │ │ │ ├── faBoxOpen.d.ts │ │ │ │ ├── faBoxOpen.js │ │ │ │ ├── faBoxTissue.d.ts │ │ │ │ ├── faBoxTissue.js │ │ │ │ ├── faBoxes.d.ts │ │ │ │ ├── faBoxes.js │ │ │ │ ├── faBraille.d.ts │ │ │ │ ├── faBraille.js │ │ │ │ ├── faBrain.d.ts │ │ │ │ ├── faBrain.js │ │ │ │ ├── faBreadSlice.d.ts │ │ │ │ ├── faBreadSlice.js │ │ │ │ ├── faBriefcase.d.ts │ │ │ │ ├── faBriefcase.js │ │ │ │ ├── faBriefcaseMedical.d.ts │ │ │ │ ├── faBriefcaseMedical.js │ │ │ │ ├── faBroadcastTower.d.ts │ │ │ │ ├── faBroadcastTower.js │ │ │ │ ├── faBroom.d.ts │ │ │ │ ├── faBroom.js │ │ │ │ ├── faBrush.d.ts │ │ │ │ ├── faBrush.js │ │ │ │ ├── faBug.d.ts │ │ │ │ ├── faBug.js │ │ │ │ ├── faBuilding.d.ts │ │ │ │ ├── faBuilding.js │ │ │ │ ├── faBullhorn.d.ts │ │ │ │ ├── faBullhorn.js │ │ │ │ ├── faBullseye.d.ts │ │ │ │ ├── faBullseye.js │ │ │ │ ├── faBurn.d.ts │ │ │ │ ├── faBurn.js │ │ │ │ ├── faBus.d.ts │ │ │ │ ├── faBus.js │ │ │ │ ├── faBusAlt.d.ts │ │ │ │ ├── faBusAlt.js │ │ │ │ ├── faBusinessTime.d.ts │ │ │ │ ├── faBusinessTime.js │ │ │ │ ├── faCalculator.d.ts │ │ │ │ ├── faCalculator.js │ │ │ │ ├── faCalendar.d.ts │ │ │ │ ├── faCalendar.js │ │ │ │ ├── faCalendarAlt.d.ts │ │ │ │ ├── faCalendarAlt.js │ │ │ │ ├── faCalendarCheck.d.ts │ │ │ │ ├── faCalendarCheck.js │ │ │ │ ├── faCalendarDay.d.ts │ │ │ │ ├── faCalendarDay.js │ │ │ │ ├── faCalendarMinus.d.ts │ │ │ │ ├── faCalendarMinus.js │ │ │ │ ├── faCalendarPlus.d.ts │ │ │ │ ├── faCalendarPlus.js │ │ │ │ ├── faCalendarTimes.d.ts │ │ │ │ ├── faCalendarTimes.js │ │ │ │ ├── faCalendarWeek.d.ts │ │ │ │ ├── faCalendarWeek.js │ │ │ │ ├── faCamera.d.ts │ │ │ │ ├── faCamera.js │ │ │ │ ├── faCameraRetro.d.ts │ │ │ │ ├── faCameraRetro.js │ │ │ │ ├── faCampground.d.ts │ │ │ │ ├── faCampground.js │ │ │ │ ├── faCandyCane.d.ts │ │ │ │ ├── faCandyCane.js │ │ │ │ ├── faCannabis.d.ts │ │ │ │ ├── faCannabis.js │ │ │ │ ├── faCapsules.d.ts │ │ │ │ ├── faCapsules.js │ │ │ │ ├── faCar.d.ts │ │ │ │ ├── faCar.js │ │ │ │ ├── faCarAlt.d.ts │ │ │ │ ├── faCarAlt.js │ │ │ │ ├── faCarBattery.d.ts │ │ │ │ ├── faCarBattery.js │ │ │ │ ├── faCarCrash.d.ts │ │ │ │ ├── faCarCrash.js │ │ │ │ ├── faCarSide.d.ts │ │ │ │ ├── faCarSide.js │ │ │ │ ├── faCaravan.d.ts │ │ │ │ ├── faCaravan.js │ │ │ │ ├── faCaretDown.d.ts │ │ │ │ ├── faCaretDown.js │ │ │ │ ├── faCaretLeft.d.ts │ │ │ │ ├── faCaretLeft.js │ │ │ │ ├── faCaretRight.d.ts │ │ │ │ ├── faCaretRight.js │ │ │ │ ├── faCaretSquareDown.d.ts │ │ │ │ ├── faCaretSquareDown.js │ │ │ │ ├── faCaretSquareLeft.d.ts │ │ │ │ ├── faCaretSquareLeft.js │ │ │ │ ├── faCaretSquareRight.d.ts │ │ │ │ ├── faCaretSquareRight.js │ │ │ │ ├── faCaretSquareUp.d.ts │ │ │ │ ├── faCaretSquareUp.js │ │ │ │ ├── faCaretUp.d.ts │ │ │ │ ├── faCaretUp.js │ │ │ │ ├── faCarrot.d.ts │ │ │ │ ├── faCarrot.js │ │ │ │ ├── faCartArrowDown.d.ts │ │ │ │ ├── faCartArrowDown.js │ │ │ │ ├── faCartPlus.d.ts │ │ │ │ ├── faCartPlus.js │ │ │ │ ├── faCashRegister.d.ts │ │ │ │ ├── faCashRegister.js │ │ │ │ ├── faCat.d.ts │ │ │ │ ├── faCat.js │ │ │ │ ├── faCertificate.d.ts │ │ │ │ ├── faCertificate.js │ │ │ │ ├── faChair.d.ts │ │ │ │ ├── faChair.js │ │ │ │ ├── faChalkboard.d.ts │ │ │ │ ├── faChalkboard.js │ │ │ │ ├── faChalkboardTeacher.d.ts │ │ │ │ ├── faChalkboardTeacher.js │ │ │ │ ├── faChargingStation.d.ts │ │ │ │ ├── faChargingStation.js │ │ │ │ ├── faChartArea.d.ts │ │ │ │ ├── faChartArea.js │ │ │ │ ├── faChartBar.d.ts │ │ │ │ ├── faChartBar.js │ │ │ │ ├── faChartLine.d.ts │ │ │ │ ├── faChartLine.js │ │ │ │ ├── faChartPie.d.ts │ │ │ │ ├── faChartPie.js │ │ │ │ ├── faCheck.d.ts │ │ │ │ ├── faCheck.js │ │ │ │ ├── faCheckCircle.d.ts │ │ │ │ ├── faCheckCircle.js │ │ │ │ ├── faCheckDouble.d.ts │ │ │ │ ├── faCheckDouble.js │ │ │ │ ├── faCheckSquare.d.ts │ │ │ │ ├── faCheckSquare.js │ │ │ │ ├── faCheese.d.ts │ │ │ │ ├── faCheese.js │ │ │ │ ├── faChess.d.ts │ │ │ │ ├── faChess.js │ │ │ │ ├── faChessBishop.d.ts │ │ │ │ ├── faChessBishop.js │ │ │ │ ├── faChessBoard.d.ts │ │ │ │ ├── faChessBoard.js │ │ │ │ ├── faChessKing.d.ts │ │ │ │ ├── faChessKing.js │ │ │ │ ├── faChessKnight.d.ts │ │ │ │ ├── faChessKnight.js │ │ │ │ ├── faChessPawn.d.ts │ │ │ │ ├── faChessPawn.js │ │ │ │ ├── faChessQueen.d.ts │ │ │ │ ├── faChessQueen.js │ │ │ │ ├── faChessRook.d.ts │ │ │ │ ├── faChessRook.js │ │ │ │ ├── faChevronCircleDown.d.ts │ │ │ │ ├── faChevronCircleDown.js │ │ │ │ ├── faChevronCircleLeft.d.ts │ │ │ │ ├── faChevronCircleLeft.js │ │ │ │ ├── faChevronCircleRight.d.ts │ │ │ │ ├── faChevronCircleRight.js │ │ │ │ ├── faChevronCircleUp.d.ts │ │ │ │ ├── faChevronCircleUp.js │ │ │ │ ├── faChevronDown.d.ts │ │ │ │ ├── faChevronDown.js │ │ │ │ ├── faChevronLeft.d.ts │ │ │ │ ├── faChevronLeft.js │ │ │ │ ├── faChevronRight.d.ts │ │ │ │ ├── faChevronRight.js │ │ │ │ ├── faChevronUp.d.ts │ │ │ │ ├── faChevronUp.js │ │ │ │ ├── faChild.d.ts │ │ │ │ ├── faChild.js │ │ │ │ ├── faChurch.d.ts │ │ │ │ ├── faChurch.js │ │ │ │ ├── faCircle.d.ts │ │ │ │ ├── faCircle.js │ │ │ │ ├── faCircleNotch.d.ts │ │ │ │ ├── faCircleNotch.js │ │ │ │ ├── faCity.d.ts │ │ │ │ ├── faCity.js │ │ │ │ ├── faClinicMedical.d.ts │ │ │ │ ├── faClinicMedical.js │ │ │ │ ├── faClipboard.d.ts │ │ │ │ ├── faClipboard.js │ │ │ │ ├── faClipboardCheck.d.ts │ │ │ │ ├── faClipboardCheck.js │ │ │ │ ├── faClipboardList.d.ts │ │ │ │ ├── faClipboardList.js │ │ │ │ ├── faClock.d.ts │ │ │ │ ├── faClock.js │ │ │ │ ├── faClone.d.ts │ │ │ │ ├── faClone.js │ │ │ │ ├── faClosedCaptioning.d.ts │ │ │ │ ├── faClosedCaptioning.js │ │ │ │ ├── faCloud.d.ts │ │ │ │ ├── faCloud.js │ │ │ │ ├── faCloudDownloadAlt.d.ts │ │ │ │ ├── faCloudDownloadAlt.js │ │ │ │ ├── faCloudMeatball.d.ts │ │ │ │ ├── faCloudMeatball.js │ │ │ │ ├── faCloudMoon.d.ts │ │ │ │ ├── faCloudMoon.js │ │ │ │ ├── faCloudMoonRain.d.ts │ │ │ │ ├── faCloudMoonRain.js │ │ │ │ ├── faCloudRain.d.ts │ │ │ │ ├── faCloudRain.js │ │ │ │ ├── faCloudShowersHeavy.d.ts │ │ │ │ ├── faCloudShowersHeavy.js │ │ │ │ ├── faCloudSun.d.ts │ │ │ │ ├── faCloudSun.js │ │ │ │ ├── faCloudSunRain.d.ts │ │ │ │ ├── faCloudSunRain.js │ │ │ │ ├── faCloudUploadAlt.d.ts │ │ │ │ ├── faCloudUploadAlt.js │ │ │ │ ├── faCocktail.d.ts │ │ │ │ ├── faCocktail.js │ │ │ │ ├── faCode.d.ts │ │ │ │ ├── faCode.js │ │ │ │ ├── faCodeBranch.d.ts │ │ │ │ ├── faCodeBranch.js │ │ │ │ ├── faCoffee.d.ts │ │ │ │ ├── faCoffee.js │ │ │ │ ├── faCog.d.ts │ │ │ │ ├── faCog.js │ │ │ │ ├── faCogs.d.ts │ │ │ │ ├── faCogs.js │ │ │ │ ├── faCoins.d.ts │ │ │ │ ├── faCoins.js │ │ │ │ ├── faColumns.d.ts │ │ │ │ ├── faColumns.js │ │ │ │ ├── faComment.d.ts │ │ │ │ ├── faComment.js │ │ │ │ ├── faCommentAlt.d.ts │ │ │ │ ├── faCommentAlt.js │ │ │ │ ├── faCommentDollar.d.ts │ │ │ │ ├── faCommentDollar.js │ │ │ │ ├── faCommentDots.d.ts │ │ │ │ ├── faCommentDots.js │ │ │ │ ├── faCommentMedical.d.ts │ │ │ │ ├── faCommentMedical.js │ │ │ │ ├── faCommentSlash.d.ts │ │ │ │ ├── faCommentSlash.js │ │ │ │ ├── faComments.d.ts │ │ │ │ ├── faComments.js │ │ │ │ ├── faCommentsDollar.d.ts │ │ │ │ ├── faCommentsDollar.js │ │ │ │ ├── faCompactDisc.d.ts │ │ │ │ ├── faCompactDisc.js │ │ │ │ ├── faCompass.d.ts │ │ │ │ ├── faCompass.js │ │ │ │ ├── faCompress.d.ts │ │ │ │ ├── faCompress.js │ │ │ │ ├── faCompressAlt.d.ts │ │ │ │ ├── faCompressAlt.js │ │ │ │ ├── faCompressArrowsAlt.d.ts │ │ │ │ ├── faCompressArrowsAlt.js │ │ │ │ ├── faConciergeBell.d.ts │ │ │ │ ├── faConciergeBell.js │ │ │ │ ├── faCookie.d.ts │ │ │ │ ├── faCookie.js │ │ │ │ ├── faCookieBite.d.ts │ │ │ │ ├── faCookieBite.js │ │ │ │ ├── faCopy.d.ts │ │ │ │ ├── faCopy.js │ │ │ │ ├── faCopyright.d.ts │ │ │ │ ├── faCopyright.js │ │ │ │ ├── faCouch.d.ts │ │ │ │ ├── faCouch.js │ │ │ │ ├── faCreditCard.d.ts │ │ │ │ ├── faCreditCard.js │ │ │ │ ├── faCrop.d.ts │ │ │ │ ├── faCrop.js │ │ │ │ ├── faCropAlt.d.ts │ │ │ │ ├── faCropAlt.js │ │ │ │ ├── faCross.d.ts │ │ │ │ ├── faCross.js │ │ │ │ ├── faCrosshairs.d.ts │ │ │ │ ├── faCrosshairs.js │ │ │ │ ├── faCrow.d.ts │ │ │ │ ├── faCrow.js │ │ │ │ ├── faCrown.d.ts │ │ │ │ ├── faCrown.js │ │ │ │ ├── faCrutch.d.ts │ │ │ │ ├── faCrutch.js │ │ │ │ ├── faCube.d.ts │ │ │ │ ├── faCube.js │ │ │ │ ├── faCubes.d.ts │ │ │ │ ├── faCubes.js │ │ │ │ ├── faCut.d.ts │ │ │ │ ├── faCut.js │ │ │ │ ├── faDatabase.d.ts │ │ │ │ ├── faDatabase.js │ │ │ │ ├── faDeaf.d.ts │ │ │ │ ├── faDeaf.js │ │ │ │ ├── faDemocrat.d.ts │ │ │ │ ├── faDemocrat.js │ │ │ │ ├── faDesktop.d.ts │ │ │ │ ├── faDesktop.js │ │ │ │ ├── faDharmachakra.d.ts │ │ │ │ ├── faDharmachakra.js │ │ │ │ ├── faDiagnoses.d.ts │ │ │ │ ├── faDiagnoses.js │ │ │ │ ├── faDice.d.ts │ │ │ │ ├── faDice.js │ │ │ │ ├── faDiceD20.d.ts │ │ │ │ ├── faDiceD20.js │ │ │ │ ├── faDiceD6.d.ts │ │ │ │ ├── faDiceD6.js │ │ │ │ ├── faDiceFive.d.ts │ │ │ │ ├── faDiceFive.js │ │ │ │ ├── faDiceFour.d.ts │ │ │ │ ├── faDiceFour.js │ │ │ │ ├── faDiceOne.d.ts │ │ │ │ ├── faDiceOne.js │ │ │ │ ├── faDiceSix.d.ts │ │ │ │ ├── faDiceSix.js │ │ │ │ ├── faDiceThree.d.ts │ │ │ │ ├── faDiceThree.js │ │ │ │ ├── faDiceTwo.d.ts │ │ │ │ ├── faDiceTwo.js │ │ │ │ ├── faDigitalTachograph.d.ts │ │ │ │ ├── faDigitalTachograph.js │ │ │ │ ├── faDirections.d.ts │ │ │ │ ├── faDirections.js │ │ │ │ ├── faDisease.d.ts │ │ │ │ ├── faDisease.js │ │ │ │ ├── faDivide.d.ts │ │ │ │ ├── faDivide.js │ │ │ │ ├── faDizzy.d.ts │ │ │ │ ├── faDizzy.js │ │ │ │ ├── faDna.d.ts │ │ │ │ ├── faDna.js │ │ │ │ ├── faDog.d.ts │ │ │ │ ├── faDog.js │ │ │ │ ├── faDollarSign.d.ts │ │ │ │ ├── faDollarSign.js │ │ │ │ ├── faDolly.d.ts │ │ │ │ ├── faDolly.js │ │ │ │ ├── faDollyFlatbed.d.ts │ │ │ │ ├── faDollyFlatbed.js │ │ │ │ ├── faDonate.d.ts │ │ │ │ ├── faDonate.js │ │ │ │ ├── faDoorClosed.d.ts │ │ │ │ ├── faDoorClosed.js │ │ │ │ ├── faDoorOpen.d.ts │ │ │ │ ├── faDoorOpen.js │ │ │ │ ├── faDotCircle.d.ts │ │ │ │ ├── faDotCircle.js │ │ │ │ ├── faDove.d.ts │ │ │ │ ├── faDove.js │ │ │ │ ├── faDownload.d.ts │ │ │ │ ├── faDownload.js │ │ │ │ ├── faDraftingCompass.d.ts │ │ │ │ ├── faDraftingCompass.js │ │ │ │ ├── faDragon.d.ts │ │ │ │ ├── faDragon.js │ │ │ │ ├── faDrawPolygon.d.ts │ │ │ │ ├── faDrawPolygon.js │ │ │ │ ├── faDrum.d.ts │ │ │ │ ├── faDrum.js │ │ │ │ ├── faDrumSteelpan.d.ts │ │ │ │ ├── faDrumSteelpan.js │ │ │ │ ├── faDrumstickBite.d.ts │ │ │ │ ├── faDrumstickBite.js │ │ │ │ ├── faDumbbell.d.ts │ │ │ │ ├── faDumbbell.js │ │ │ │ ├── faDumpster.d.ts │ │ │ │ ├── faDumpster.js │ │ │ │ ├── faDumpsterFire.d.ts │ │ │ │ ├── faDumpsterFire.js │ │ │ │ ├── faDungeon.d.ts │ │ │ │ ├── faDungeon.js │ │ │ │ ├── faEdit.d.ts │ │ │ │ ├── faEdit.js │ │ │ │ ├── faEgg.d.ts │ │ │ │ ├── faEgg.js │ │ │ │ ├── faEject.d.ts │ │ │ │ ├── faEject.js │ │ │ │ ├── faEllipsisH.d.ts │ │ │ │ ├── faEllipsisH.js │ │ │ │ ├── faEllipsisV.d.ts │ │ │ │ ├── faEllipsisV.js │ │ │ │ ├── faEnvelope.d.ts │ │ │ │ ├── faEnvelope.js │ │ │ │ ├── faEnvelopeOpen.d.ts │ │ │ │ ├── faEnvelopeOpen.js │ │ │ │ ├── faEnvelopeOpenText.d.ts │ │ │ │ ├── faEnvelopeOpenText.js │ │ │ │ ├── faEnvelopeSquare.d.ts │ │ │ │ ├── faEnvelopeSquare.js │ │ │ │ ├── faEquals.d.ts │ │ │ │ ├── faEquals.js │ │ │ │ ├── faEraser.d.ts │ │ │ │ ├── faEraser.js │ │ │ │ ├── faEthernet.d.ts │ │ │ │ ├── faEthernet.js │ │ │ │ ├── faEuroSign.d.ts │ │ │ │ ├── faEuroSign.js │ │ │ │ ├── faExchangeAlt.d.ts │ │ │ │ ├── faExchangeAlt.js │ │ │ │ ├── faExclamation.d.ts │ │ │ │ ├── faExclamation.js │ │ │ │ ├── faExclamationCircle.d.ts │ │ │ │ ├── faExclamationCircle.js │ │ │ │ ├── faExclamationTriangle.d.ts │ │ │ │ ├── faExclamationTriangle.js │ │ │ │ ├── faExpand.d.ts │ │ │ │ ├── faExpand.js │ │ │ │ ├── faExpandAlt.d.ts │ │ │ │ ├── faExpandAlt.js │ │ │ │ ├── faExpandArrowsAlt.d.ts │ │ │ │ ├── faExpandArrowsAlt.js │ │ │ │ ├── faExternalLinkAlt.d.ts │ │ │ │ ├── faExternalLinkAlt.js │ │ │ │ ├── faExternalLinkSquareAlt.d.ts │ │ │ │ ├── faExternalLinkSquareAlt.js │ │ │ │ ├── faEye.d.ts │ │ │ │ ├── faEye.js │ │ │ │ ├── faEyeDropper.d.ts │ │ │ │ ├── faEyeDropper.js │ │ │ │ ├── faEyeSlash.d.ts │ │ │ │ ├── faEyeSlash.js │ │ │ │ ├── faFan.d.ts │ │ │ │ ├── faFan.js │ │ │ │ ├── faFastBackward.d.ts │ │ │ │ ├── faFastBackward.js │ │ │ │ ├── faFastForward.d.ts │ │ │ │ ├── faFastForward.js │ │ │ │ ├── faFaucet.d.ts │ │ │ │ ├── faFaucet.js │ │ │ │ ├── faFax.d.ts │ │ │ │ ├── faFax.js │ │ │ │ ├── faFeather.d.ts │ │ │ │ ├── faFeather.js │ │ │ │ ├── faFeatherAlt.d.ts │ │ │ │ ├── faFeatherAlt.js │ │ │ │ ├── faFemale.d.ts │ │ │ │ ├── faFemale.js │ │ │ │ ├── faFighterJet.d.ts │ │ │ │ ├── faFighterJet.js │ │ │ │ ├── faFile.d.ts │ │ │ │ ├── faFile.js │ │ │ │ ├── faFileAlt.d.ts │ │ │ │ ├── faFileAlt.js │ │ │ │ ├── faFileArchive.d.ts │ │ │ │ ├── faFileArchive.js │ │ │ │ ├── faFileAudio.d.ts │ │ │ │ ├── faFileAudio.js │ │ │ │ ├── faFileCode.d.ts │ │ │ │ ├── faFileCode.js │ │ │ │ ├── faFileContract.d.ts │ │ │ │ ├── faFileContract.js │ │ │ │ ├── faFileCsv.d.ts │ │ │ │ ├── faFileCsv.js │ │ │ │ ├── faFileDownload.d.ts │ │ │ │ ├── faFileDownload.js │ │ │ │ ├── faFileExcel.d.ts │ │ │ │ ├── faFileExcel.js │ │ │ │ ├── faFileExport.d.ts │ │ │ │ ├── faFileExport.js │ │ │ │ ├── faFileImage.d.ts │ │ │ │ ├── faFileImage.js │ │ │ │ ├── faFileImport.d.ts │ │ │ │ ├── faFileImport.js │ │ │ │ ├── faFileInvoice.d.ts │ │ │ │ ├── faFileInvoice.js │ │ │ │ ├── faFileInvoiceDollar.d.ts │ │ │ │ ├── faFileInvoiceDollar.js │ │ │ │ ├── faFileMedical.d.ts │ │ │ │ ├── faFileMedical.js │ │ │ │ ├── faFileMedicalAlt.d.ts │ │ │ │ ├── faFileMedicalAlt.js │ │ │ │ ├── faFilePdf.d.ts │ │ │ │ ├── faFilePdf.js │ │ │ │ ├── faFilePowerpoint.d.ts │ │ │ │ ├── faFilePowerpoint.js │ │ │ │ ├── faFilePrescription.d.ts │ │ │ │ ├── faFilePrescription.js │ │ │ │ ├── faFileSignature.d.ts │ │ │ │ ├── faFileSignature.js │ │ │ │ ├── faFileUpload.d.ts │ │ │ │ ├── faFileUpload.js │ │ │ │ ├── faFileVideo.d.ts │ │ │ │ ├── faFileVideo.js │ │ │ │ ├── faFileWord.d.ts │ │ │ │ ├── faFileWord.js │ │ │ │ ├── faFill.d.ts │ │ │ │ ├── faFill.js │ │ │ │ ├── faFillDrip.d.ts │ │ │ │ ├── faFillDrip.js │ │ │ │ ├── faFilm.d.ts │ │ │ │ ├── faFilm.js │ │ │ │ ├── faFilter.d.ts │ │ │ │ ├── faFilter.js │ │ │ │ ├── faFingerprint.d.ts │ │ │ │ ├── faFingerprint.js │ │ │ │ ├── faFire.d.ts │ │ │ │ ├── faFire.js │ │ │ │ ├── faFireAlt.d.ts │ │ │ │ ├── faFireAlt.js │ │ │ │ ├── faFireExtinguisher.d.ts │ │ │ │ ├── faFireExtinguisher.js │ │ │ │ ├── faFirstAid.d.ts │ │ │ │ ├── faFirstAid.js │ │ │ │ ├── faFish.d.ts │ │ │ │ ├── faFish.js │ │ │ │ ├── faFistRaised.d.ts │ │ │ │ ├── faFistRaised.js │ │ │ │ ├── faFlag.d.ts │ │ │ │ ├── faFlag.js │ │ │ │ ├── faFlagCheckered.d.ts │ │ │ │ ├── faFlagCheckered.js │ │ │ │ ├── faFlagUsa.d.ts │ │ │ │ ├── faFlagUsa.js │ │ │ │ ├── faFlask.d.ts │ │ │ │ ├── faFlask.js │ │ │ │ ├── faFlushed.d.ts │ │ │ │ ├── faFlushed.js │ │ │ │ ├── faFolder.d.ts │ │ │ │ ├── faFolder.js │ │ │ │ ├── faFolderMinus.d.ts │ │ │ │ ├── faFolderMinus.js │ │ │ │ ├── faFolderOpen.d.ts │ │ │ │ ├── faFolderOpen.js │ │ │ │ ├── faFolderPlus.d.ts │ │ │ │ ├── faFolderPlus.js │ │ │ │ ├── faFont.d.ts │ │ │ │ ├── faFont.js │ │ │ │ ├── faFontAwesomeLogoFull.d.ts │ │ │ │ ├── faFontAwesomeLogoFull.js │ │ │ │ ├── faFootballBall.d.ts │ │ │ │ ├── faFootballBall.js │ │ │ │ ├── faForward.d.ts │ │ │ │ ├── faForward.js │ │ │ │ ├── faFrog.d.ts │ │ │ │ ├── faFrog.js │ │ │ │ ├── faFrown.d.ts │ │ │ │ ├── faFrown.js │ │ │ │ ├── faFrownOpen.d.ts │ │ │ │ ├── faFrownOpen.js │ │ │ │ ├── faFunnelDollar.d.ts │ │ │ │ ├── faFunnelDollar.js │ │ │ │ ├── faFutbol.d.ts │ │ │ │ ├── faFutbol.js │ │ │ │ ├── faGamepad.d.ts │ │ │ │ ├── faGamepad.js │ │ │ │ ├── faGasPump.d.ts │ │ │ │ ├── faGasPump.js │ │ │ │ ├── faGavel.d.ts │ │ │ │ ├── faGavel.js │ │ │ │ ├── faGem.d.ts │ │ │ │ ├── faGem.js │ │ │ │ ├── faGenderless.d.ts │ │ │ │ ├── faGenderless.js │ │ │ │ ├── faGhost.d.ts │ │ │ │ ├── faGhost.js │ │ │ │ ├── faGift.d.ts │ │ │ │ ├── faGift.js │ │ │ │ ├── faGifts.d.ts │ │ │ │ ├── faGifts.js │ │ │ │ ├── faGlassCheers.d.ts │ │ │ │ ├── faGlassCheers.js │ │ │ │ ├── faGlassMartini.d.ts │ │ │ │ ├── faGlassMartini.js │ │ │ │ ├── faGlassMartiniAlt.d.ts │ │ │ │ ├── faGlassMartiniAlt.js │ │ │ │ ├── faGlassWhiskey.d.ts │ │ │ │ ├── faGlassWhiskey.js │ │ │ │ ├── faGlasses.d.ts │ │ │ │ ├── faGlasses.js │ │ │ │ ├── faGlobe.d.ts │ │ │ │ ├── faGlobe.js │ │ │ │ ├── faGlobeAfrica.d.ts │ │ │ │ ├── faGlobeAfrica.js │ │ │ │ ├── faGlobeAmericas.d.ts │ │ │ │ ├── faGlobeAmericas.js │ │ │ │ ├── faGlobeAsia.d.ts │ │ │ │ ├── faGlobeAsia.js │ │ │ │ ├── faGlobeEurope.d.ts │ │ │ │ ├── faGlobeEurope.js │ │ │ │ ├── faGolfBall.d.ts │ │ │ │ ├── faGolfBall.js │ │ │ │ ├── faGopuram.d.ts │ │ │ │ ├── faGopuram.js │ │ │ │ ├── faGraduationCap.d.ts │ │ │ │ ├── faGraduationCap.js │ │ │ │ ├── faGreaterThan.d.ts │ │ │ │ ├── faGreaterThan.js │ │ │ │ ├── faGreaterThanEqual.d.ts │ │ │ │ ├── faGreaterThanEqual.js │ │ │ │ ├── faGrimace.d.ts │ │ │ │ ├── faGrimace.js │ │ │ │ ├── faGrin.d.ts │ │ │ │ ├── faGrin.js │ │ │ │ ├── faGrinAlt.d.ts │ │ │ │ ├── faGrinAlt.js │ │ │ │ ├── faGrinBeam.d.ts │ │ │ │ ├── faGrinBeam.js │ │ │ │ ├── faGrinBeamSweat.d.ts │ │ │ │ ├── faGrinBeamSweat.js │ │ │ │ ├── faGrinHearts.d.ts │ │ │ │ ├── faGrinHearts.js │ │ │ │ ├── faGrinSquint.d.ts │ │ │ │ ├── faGrinSquint.js │ │ │ │ ├── faGrinSquintTears.d.ts │ │ │ │ ├── faGrinSquintTears.js │ │ │ │ ├── faGrinStars.d.ts │ │ │ │ ├── faGrinStars.js │ │ │ │ ├── faGrinTears.d.ts │ │ │ │ ├── faGrinTears.js │ │ │ │ ├── faGrinTongue.d.ts │ │ │ │ ├── faGrinTongue.js │ │ │ │ ├── faGrinTongueSquint.d.ts │ │ │ │ ├── faGrinTongueSquint.js │ │ │ │ ├── faGrinTongueWink.d.ts │ │ │ │ ├── faGrinTongueWink.js │ │ │ │ ├── faGrinWink.d.ts │ │ │ │ ├── faGrinWink.js │ │ │ │ ├── faGripHorizontal.d.ts │ │ │ │ ├── faGripHorizontal.js │ │ │ │ ├── faGripLines.d.ts │ │ │ │ ├── faGripLines.js │ │ │ │ ├── faGripLinesVertical.d.ts │ │ │ │ ├── faGripLinesVertical.js │ │ │ │ ├── faGripVertical.d.ts │ │ │ │ ├── faGripVertical.js │ │ │ │ ├── faGuitar.d.ts │ │ │ │ ├── faGuitar.js │ │ │ │ ├── faHSquare.d.ts │ │ │ │ ├── faHSquare.js │ │ │ │ ├── faHamburger.d.ts │ │ │ │ ├── faHamburger.js │ │ │ │ ├── faHammer.d.ts │ │ │ │ ├── faHammer.js │ │ │ │ ├── faHamsa.d.ts │ │ │ │ ├── faHamsa.js │ │ │ │ ├── faHandHolding.d.ts │ │ │ │ ├── faHandHolding.js │ │ │ │ ├── faHandHoldingHeart.d.ts │ │ │ │ ├── faHandHoldingHeart.js │ │ │ │ ├── faHandHoldingMedical.d.ts │ │ │ │ ├── faHandHoldingMedical.js │ │ │ │ ├── faHandHoldingUsd.d.ts │ │ │ │ ├── faHandHoldingUsd.js │ │ │ │ ├── faHandHoldingWater.d.ts │ │ │ │ ├── faHandHoldingWater.js │ │ │ │ ├── faHandLizard.d.ts │ │ │ │ ├── faHandLizard.js │ │ │ │ ├── faHandMiddleFinger.d.ts │ │ │ │ ├── faHandMiddleFinger.js │ │ │ │ ├── faHandPaper.d.ts │ │ │ │ ├── faHandPaper.js │ │ │ │ ├── faHandPeace.d.ts │ │ │ │ ├── faHandPeace.js │ │ │ │ ├── faHandPointDown.d.ts │ │ │ │ ├── faHandPointDown.js │ │ │ │ ├── faHandPointLeft.d.ts │ │ │ │ ├── faHandPointLeft.js │ │ │ │ ├── faHandPointRight.d.ts │ │ │ │ ├── faHandPointRight.js │ │ │ │ ├── faHandPointUp.d.ts │ │ │ │ ├── faHandPointUp.js │ │ │ │ ├── faHandPointer.d.ts │ │ │ │ ├── faHandPointer.js │ │ │ │ ├── faHandRock.d.ts │ │ │ │ ├── faHandRock.js │ │ │ │ ├── faHandScissors.d.ts │ │ │ │ ├── faHandScissors.js │ │ │ │ ├── faHandSparkles.d.ts │ │ │ │ ├── faHandSparkles.js │ │ │ │ ├── faHandSpock.d.ts │ │ │ │ ├── faHandSpock.js │ │ │ │ ├── faHands.d.ts │ │ │ │ ├── faHands.js │ │ │ │ ├── faHandsHelping.d.ts │ │ │ │ ├── faHandsHelping.js │ │ │ │ ├── faHandsWash.d.ts │ │ │ │ ├── faHandsWash.js │ │ │ │ ├── faHandshake.d.ts │ │ │ │ ├── faHandshake.js │ │ │ │ ├── faHandshakeAltSlash.d.ts │ │ │ │ ├── faHandshakeAltSlash.js │ │ │ │ ├── faHandshakeSlash.d.ts │ │ │ │ ├── faHandshakeSlash.js │ │ │ │ ├── faHanukiah.d.ts │ │ │ │ ├── faHanukiah.js │ │ │ │ ├── faHardHat.d.ts │ │ │ │ ├── faHardHat.js │ │ │ │ ├── faHashtag.d.ts │ │ │ │ ├── faHashtag.js │ │ │ │ ├── faHatCowboy.d.ts │ │ │ │ ├── faHatCowboy.js │ │ │ │ ├── faHatCowboySide.d.ts │ │ │ │ ├── faHatCowboySide.js │ │ │ │ ├── faHatWizard.d.ts │ │ │ │ ├── faHatWizard.js │ │ │ │ ├── faHaykal.d.ts │ │ │ │ ├── faHaykal.js │ │ │ │ ├── faHdd.d.ts │ │ │ │ ├── faHdd.js │ │ │ │ ├── faHeadSideCough.d.ts │ │ │ │ ├── faHeadSideCough.js │ │ │ │ ├── faHeadSideCoughSlash.d.ts │ │ │ │ ├── faHeadSideCoughSlash.js │ │ │ │ ├── faHeadSideMask.d.ts │ │ │ │ ├── faHeadSideMask.js │ │ │ │ ├── faHeadSideVirus.d.ts │ │ │ │ ├── faHeadSideVirus.js │ │ │ │ ├── faHeading.d.ts │ │ │ │ ├── faHeading.js │ │ │ │ ├── faHeadphones.d.ts │ │ │ │ ├── faHeadphones.js │ │ │ │ ├── faHeadphonesAlt.d.ts │ │ │ │ ├── faHeadphonesAlt.js │ │ │ │ ├── faHeadset.d.ts │ │ │ │ ├── faHeadset.js │ │ │ │ ├── faHeart.d.ts │ │ │ │ ├── faHeart.js │ │ │ │ ├── faHeartBroken.d.ts │ │ │ │ ├── faHeartBroken.js │ │ │ │ ├── faHeartbeat.d.ts │ │ │ │ ├── faHeartbeat.js │ │ │ │ ├── faHelicopter.d.ts │ │ │ │ ├── faHelicopter.js │ │ │ │ ├── faHighlighter.d.ts │ │ │ │ ├── faHighlighter.js │ │ │ │ ├── faHiking.d.ts │ │ │ │ ├── faHiking.js │ │ │ │ ├── faHippo.d.ts │ │ │ │ ├── faHippo.js │ │ │ │ ├── faHistory.d.ts │ │ │ │ ├── faHistory.js │ │ │ │ ├── faHockeyPuck.d.ts │ │ │ │ ├── faHockeyPuck.js │ │ │ │ ├── faHollyBerry.d.ts │ │ │ │ ├── faHollyBerry.js │ │ │ │ ├── faHome.d.ts │ │ │ │ ├── faHome.js │ │ │ │ ├── faHorse.d.ts │ │ │ │ ├── faHorse.js │ │ │ │ ├── faHorseHead.d.ts │ │ │ │ ├── faHorseHead.js │ │ │ │ ├── faHospital.d.ts │ │ │ │ ├── faHospital.js │ │ │ │ ├── faHospitalAlt.d.ts │ │ │ │ ├── faHospitalAlt.js │ │ │ │ ├── faHospitalSymbol.d.ts │ │ │ │ ├── faHospitalSymbol.js │ │ │ │ ├── faHospitalUser.d.ts │ │ │ │ ├── faHospitalUser.js │ │ │ │ ├── faHotTub.d.ts │ │ │ │ ├── faHotTub.js │ │ │ │ ├── faHotdog.d.ts │ │ │ │ ├── faHotdog.js │ │ │ │ ├── faHotel.d.ts │ │ │ │ ├── faHotel.js │ │ │ │ ├── faHourglass.d.ts │ │ │ │ ├── faHourglass.js │ │ │ │ ├── faHourglassEnd.d.ts │ │ │ │ ├── faHourglassEnd.js │ │ │ │ ├── faHourglassHalf.d.ts │ │ │ │ ├── faHourglassHalf.js │ │ │ │ ├── faHourglassStart.d.ts │ │ │ │ ├── faHourglassStart.js │ │ │ │ ├── faHouseDamage.d.ts │ │ │ │ ├── faHouseDamage.js │ │ │ │ ├── faHouseUser.d.ts │ │ │ │ ├── faHouseUser.js │ │ │ │ ├── faHryvnia.d.ts │ │ │ │ ├── faHryvnia.js │ │ │ │ ├── faICursor.d.ts │ │ │ │ ├── faICursor.js │ │ │ │ ├── faIceCream.d.ts │ │ │ │ ├── faIceCream.js │ │ │ │ ├── faIcicles.d.ts │ │ │ │ ├── faIcicles.js │ │ │ │ ├── faIcons.d.ts │ │ │ │ ├── faIcons.js │ │ │ │ ├── faIdBadge.d.ts │ │ │ │ ├── faIdBadge.js │ │ │ │ ├── faIdCard.d.ts │ │ │ │ ├── faIdCard.js │ │ │ │ ├── faIdCardAlt.d.ts │ │ │ │ ├── faIdCardAlt.js │ │ │ │ ├── faIgloo.d.ts │ │ │ │ ├── faIgloo.js │ │ │ │ ├── faImage.d.ts │ │ │ │ ├── faImage.js │ │ │ │ ├── faImages.d.ts │ │ │ │ ├── faImages.js │ │ │ │ ├── faInbox.d.ts │ │ │ │ ├── faInbox.js │ │ │ │ ├── faIndent.d.ts │ │ │ │ ├── faIndent.js │ │ │ │ ├── faIndustry.d.ts │ │ │ │ ├── faIndustry.js │ │ │ │ ├── faInfinity.d.ts │ │ │ │ ├── faInfinity.js │ │ │ │ ├── faInfo.d.ts │ │ │ │ ├── faInfo.js │ │ │ │ ├── faInfoCircle.d.ts │ │ │ │ ├── faInfoCircle.js │ │ │ │ ├── faItalic.d.ts │ │ │ │ ├── faItalic.js │ │ │ │ ├── faJedi.d.ts │ │ │ │ ├── faJedi.js │ │ │ │ ├── faJoint.d.ts │ │ │ │ ├── faJoint.js │ │ │ │ ├── faJournalWhills.d.ts │ │ │ │ ├── faJournalWhills.js │ │ │ │ ├── faKaaba.d.ts │ │ │ │ ├── faKaaba.js │ │ │ │ ├── faKey.d.ts │ │ │ │ ├── faKey.js │ │ │ │ ├── faKeyboard.d.ts │ │ │ │ ├── faKeyboard.js │ │ │ │ ├── faKhanda.d.ts │ │ │ │ ├── faKhanda.js │ │ │ │ ├── faKiss.d.ts │ │ │ │ ├── faKiss.js │ │ │ │ ├── faKissBeam.d.ts │ │ │ │ ├── faKissBeam.js │ │ │ │ ├── faKissWinkHeart.d.ts │ │ │ │ ├── faKissWinkHeart.js │ │ │ │ ├── faKiwiBird.d.ts │ │ │ │ ├── faKiwiBird.js │ │ │ │ ├── faLandmark.d.ts │ │ │ │ ├── faLandmark.js │ │ │ │ ├── faLanguage.d.ts │ │ │ │ ├── faLanguage.js │ │ │ │ ├── faLaptop.d.ts │ │ │ │ ├── faLaptop.js │ │ │ │ ├── faLaptopCode.d.ts │ │ │ │ ├── faLaptopCode.js │ │ │ │ ├── faLaptopHouse.d.ts │ │ │ │ ├── faLaptopHouse.js │ │ │ │ ├── faLaptopMedical.d.ts │ │ │ │ ├── faLaptopMedical.js │ │ │ │ ├── faLaugh.d.ts │ │ │ │ ├── faLaugh.js │ │ │ │ ├── faLaughBeam.d.ts │ │ │ │ ├── faLaughBeam.js │ │ │ │ ├── faLaughSquint.d.ts │ │ │ │ ├── faLaughSquint.js │ │ │ │ ├── faLaughWink.d.ts │ │ │ │ ├── faLaughWink.js │ │ │ │ ├── faLayerGroup.d.ts │ │ │ │ ├── faLayerGroup.js │ │ │ │ ├── faLeaf.d.ts │ │ │ │ ├── faLeaf.js │ │ │ │ ├── faLemon.d.ts │ │ │ │ ├── faLemon.js │ │ │ │ ├── faLessThan.d.ts │ │ │ │ ├── faLessThan.js │ │ │ │ ├── faLessThanEqual.d.ts │ │ │ │ ├── faLessThanEqual.js │ │ │ │ ├── faLevelDownAlt.d.ts │ │ │ │ ├── faLevelDownAlt.js │ │ │ │ ├── faLevelUpAlt.d.ts │ │ │ │ ├── faLevelUpAlt.js │ │ │ │ ├── faLifeRing.d.ts │ │ │ │ ├── faLifeRing.js │ │ │ │ ├── faLightbulb.d.ts │ │ │ │ ├── faLightbulb.js │ │ │ │ ├── faLink.d.ts │ │ │ │ ├── faLink.js │ │ │ │ ├── faLiraSign.d.ts │ │ │ │ ├── faLiraSign.js │ │ │ │ ├── faList.d.ts │ │ │ │ ├── faList.js │ │ │ │ ├── faListAlt.d.ts │ │ │ │ ├── faListAlt.js │ │ │ │ ├── faListOl.d.ts │ │ │ │ ├── faListOl.js │ │ │ │ ├── faListUl.d.ts │ │ │ │ ├── faListUl.js │ │ │ │ ├── faLocationArrow.d.ts │ │ │ │ ├── faLocationArrow.js │ │ │ │ ├── faLock.d.ts │ │ │ │ ├── faLock.js │ │ │ │ ├── faLockOpen.d.ts │ │ │ │ ├── faLockOpen.js │ │ │ │ ├── faLongArrowAltDown.d.ts │ │ │ │ ├── faLongArrowAltDown.js │ │ │ │ ├── faLongArrowAltLeft.d.ts │ │ │ │ ├── faLongArrowAltLeft.js │ │ │ │ ├── faLongArrowAltRight.d.ts │ │ │ │ ├── faLongArrowAltRight.js │ │ │ │ ├── faLongArrowAltUp.d.ts │ │ │ │ ├── faLongArrowAltUp.js │ │ │ │ ├── faLowVision.d.ts │ │ │ │ ├── faLowVision.js │ │ │ │ ├── faLuggageCart.d.ts │ │ │ │ ├── faLuggageCart.js │ │ │ │ ├── faLungs.d.ts │ │ │ │ ├── faLungs.js │ │ │ │ ├── faLungsVirus.d.ts │ │ │ │ ├── faLungsVirus.js │ │ │ │ ├── faMagic.d.ts │ │ │ │ ├── faMagic.js │ │ │ │ ├── faMagnet.d.ts │ │ │ │ ├── faMagnet.js │ │ │ │ ├── faMailBulk.d.ts │ │ │ │ ├── faMailBulk.js │ │ │ │ ├── faMale.d.ts │ │ │ │ ├── faMale.js │ │ │ │ ├── faMap.d.ts │ │ │ │ ├── faMap.js │ │ │ │ ├── faMapMarked.d.ts │ │ │ │ ├── faMapMarked.js │ │ │ │ ├── faMapMarkedAlt.d.ts │ │ │ │ ├── faMapMarkedAlt.js │ │ │ │ ├── faMapMarker.d.ts │ │ │ │ ├── faMapMarker.js │ │ │ │ ├── faMapMarkerAlt.d.ts │ │ │ │ ├── faMapMarkerAlt.js │ │ │ │ ├── faMapPin.d.ts │ │ │ │ ├── faMapPin.js │ │ │ │ ├── faMapSigns.d.ts │ │ │ │ ├── faMapSigns.js │ │ │ │ ├── faMarker.d.ts │ │ │ │ ├── faMarker.js │ │ │ │ ├── faMars.d.ts │ │ │ │ ├── faMars.js │ │ │ │ ├── faMarsDouble.d.ts │ │ │ │ ├── faMarsDouble.js │ │ │ │ ├── faMarsStroke.d.ts │ │ │ │ ├── faMarsStroke.js │ │ │ │ ├── faMarsStrokeH.d.ts │ │ │ │ ├── faMarsStrokeH.js │ │ │ │ ├── faMarsStrokeV.d.ts │ │ │ │ ├── faMarsStrokeV.js │ │ │ │ ├── faMask.d.ts │ │ │ │ ├── faMask.js │ │ │ │ ├── faMedal.d.ts │ │ │ │ ├── faMedal.js │ │ │ │ ├── faMedkit.d.ts │ │ │ │ ├── faMedkit.js │ │ │ │ ├── faMeh.d.ts │ │ │ │ ├── faMeh.js │ │ │ │ ├── faMehBlank.d.ts │ │ │ │ ├── faMehBlank.js │ │ │ │ ├── faMehRollingEyes.d.ts │ │ │ │ ├── faMehRollingEyes.js │ │ │ │ ├── faMemory.d.ts │ │ │ │ ├── faMemory.js │ │ │ │ ├── faMenorah.d.ts │ │ │ │ ├── faMenorah.js │ │ │ │ ├── faMercury.d.ts │ │ │ │ ├── faMercury.js │ │ │ │ ├── faMeteor.d.ts │ │ │ │ ├── faMeteor.js │ │ │ │ ├── faMicrochip.d.ts │ │ │ │ ├── faMicrochip.js │ │ │ │ ├── faMicrophone.d.ts │ │ │ │ ├── faMicrophone.js │ │ │ │ ├── faMicrophoneAlt.d.ts │ │ │ │ ├── faMicrophoneAlt.js │ │ │ │ ├── faMicrophoneAltSlash.d.ts │ │ │ │ ├── faMicrophoneAltSlash.js │ │ │ │ ├── faMicrophoneSlash.d.ts │ │ │ │ ├── faMicrophoneSlash.js │ │ │ │ ├── faMicroscope.d.ts │ │ │ │ ├── faMicroscope.js │ │ │ │ ├── faMinus.d.ts │ │ │ │ ├── faMinus.js │ │ │ │ ├── faMinusCircle.d.ts │ │ │ │ ├── faMinusCircle.js │ │ │ │ ├── faMinusSquare.d.ts │ │ │ │ ├── faMinusSquare.js │ │ │ │ ├── faMitten.d.ts │ │ │ │ ├── faMitten.js │ │ │ │ ├── faMobile.d.ts │ │ │ │ ├── faMobile.js │ │ │ │ ├── faMobileAlt.d.ts │ │ │ │ ├── faMobileAlt.js │ │ │ │ ├── faMoneyBill.d.ts │ │ │ │ ├── faMoneyBill.js │ │ │ │ ├── faMoneyBillAlt.d.ts │ │ │ │ ├── faMoneyBillAlt.js │ │ │ │ ├── faMoneyBillWave.d.ts │ │ │ │ ├── faMoneyBillWave.js │ │ │ │ ├── faMoneyBillWaveAlt.d.ts │ │ │ │ ├── faMoneyBillWaveAlt.js │ │ │ │ ├── faMoneyCheck.d.ts │ │ │ │ ├── faMoneyCheck.js │ │ │ │ ├── faMoneyCheckAlt.d.ts │ │ │ │ ├── faMoneyCheckAlt.js │ │ │ │ ├── faMonument.d.ts │ │ │ │ ├── faMonument.js │ │ │ │ ├── faMoon.d.ts │ │ │ │ ├── faMoon.js │ │ │ │ ├── faMortarPestle.d.ts │ │ │ │ ├── faMortarPestle.js │ │ │ │ ├── faMosque.d.ts │ │ │ │ ├── faMosque.js │ │ │ │ ├── faMotorcycle.d.ts │ │ │ │ ├── faMotorcycle.js │ │ │ │ ├── faMountain.d.ts │ │ │ │ ├── faMountain.js │ │ │ │ ├── faMouse.d.ts │ │ │ │ ├── faMouse.js │ │ │ │ ├── faMousePointer.d.ts │ │ │ │ ├── faMousePointer.js │ │ │ │ ├── faMugHot.d.ts │ │ │ │ ├── faMugHot.js │ │ │ │ ├── faMusic.d.ts │ │ │ │ ├── faMusic.js │ │ │ │ ├── faNetworkWired.d.ts │ │ │ │ ├── faNetworkWired.js │ │ │ │ ├── faNeuter.d.ts │ │ │ │ ├── faNeuter.js │ │ │ │ ├── faNewspaper.d.ts │ │ │ │ ├── faNewspaper.js │ │ │ │ ├── faNotEqual.d.ts │ │ │ │ ├── faNotEqual.js │ │ │ │ ├── faNotesMedical.d.ts │ │ │ │ ├── faNotesMedical.js │ │ │ │ ├── faObjectGroup.d.ts │ │ │ │ ├── faObjectGroup.js │ │ │ │ ├── faObjectUngroup.d.ts │ │ │ │ ├── faObjectUngroup.js │ │ │ │ ├── faOilCan.d.ts │ │ │ │ ├── faOilCan.js │ │ │ │ ├── faOm.d.ts │ │ │ │ ├── faOm.js │ │ │ │ ├── faOtter.d.ts │ │ │ │ ├── faOtter.js │ │ │ │ ├── faOutdent.d.ts │ │ │ │ ├── faOutdent.js │ │ │ │ ├── faPager.d.ts │ │ │ │ ├── faPager.js │ │ │ │ ├── faPaintBrush.d.ts │ │ │ │ ├── faPaintBrush.js │ │ │ │ ├── faPaintRoller.d.ts │ │ │ │ ├── faPaintRoller.js │ │ │ │ ├── faPalette.d.ts │ │ │ │ ├── faPalette.js │ │ │ │ ├── faPallet.d.ts │ │ │ │ ├── faPallet.js │ │ │ │ ├── faPaperPlane.d.ts │ │ │ │ ├── faPaperPlane.js │ │ │ │ ├── faPaperclip.d.ts │ │ │ │ ├── faPaperclip.js │ │ │ │ ├── faParachuteBox.d.ts │ │ │ │ ├── faParachuteBox.js │ │ │ │ ├── faParagraph.d.ts │ │ │ │ ├── faParagraph.js │ │ │ │ ├── faParking.d.ts │ │ │ │ ├── faParking.js │ │ │ │ ├── faPassport.d.ts │ │ │ │ ├── faPassport.js │ │ │ │ ├── faPastafarianism.d.ts │ │ │ │ ├── faPastafarianism.js │ │ │ │ ├── faPaste.d.ts │ │ │ │ ├── faPaste.js │ │ │ │ ├── faPause.d.ts │ │ │ │ ├── faPause.js │ │ │ │ ├── faPauseCircle.d.ts │ │ │ │ ├── faPauseCircle.js │ │ │ │ ├── faPaw.d.ts │ │ │ │ ├── faPaw.js │ │ │ │ ├── faPeace.d.ts │ │ │ │ ├── faPeace.js │ │ │ │ ├── faPen.d.ts │ │ │ │ ├── faPen.js │ │ │ │ ├── faPenAlt.d.ts │ │ │ │ ├── faPenAlt.js │ │ │ │ ├── faPenFancy.d.ts │ │ │ │ ├── faPenFancy.js │ │ │ │ ├── faPenNib.d.ts │ │ │ │ ├── faPenNib.js │ │ │ │ ├── faPenSquare.d.ts │ │ │ │ ├── faPenSquare.js │ │ │ │ ├── faPencilAlt.d.ts │ │ │ │ ├── faPencilAlt.js │ │ │ │ ├── faPencilRuler.d.ts │ │ │ │ ├── faPencilRuler.js │ │ │ │ ├── faPeopleArrows.d.ts │ │ │ │ ├── faPeopleArrows.js │ │ │ │ ├── faPeopleCarry.d.ts │ │ │ │ ├── faPeopleCarry.js │ │ │ │ ├── faPepperHot.d.ts │ │ │ │ ├── faPepperHot.js │ │ │ │ ├── faPercent.d.ts │ │ │ │ ├── faPercent.js │ │ │ │ ├── faPercentage.d.ts │ │ │ │ ├── faPercentage.js │ │ │ │ ├── faPersonBooth.d.ts │ │ │ │ ├── faPersonBooth.js │ │ │ │ ├── faPhone.d.ts │ │ │ │ ├── faPhone.js │ │ │ │ ├── faPhoneAlt.d.ts │ │ │ │ ├── faPhoneAlt.js │ │ │ │ ├── faPhoneSlash.d.ts │ │ │ │ ├── faPhoneSlash.js │ │ │ │ ├── faPhoneSquare.d.ts │ │ │ │ ├── faPhoneSquare.js │ │ │ │ ├── faPhoneSquareAlt.d.ts │ │ │ │ ├── faPhoneSquareAlt.js │ │ │ │ ├── faPhoneVolume.d.ts │ │ │ │ ├── faPhoneVolume.js │ │ │ │ ├── faPhotoVideo.d.ts │ │ │ │ ├── faPhotoVideo.js │ │ │ │ ├── faPiggyBank.d.ts │ │ │ │ ├── faPiggyBank.js │ │ │ │ ├── faPills.d.ts │ │ │ │ ├── faPills.js │ │ │ │ ├── faPizzaSlice.d.ts │ │ │ │ ├── faPizzaSlice.js │ │ │ │ ├── faPlaceOfWorship.d.ts │ │ │ │ ├── faPlaceOfWorship.js │ │ │ │ ├── faPlane.d.ts │ │ │ │ ├── faPlane.js │ │ │ │ ├── faPlaneArrival.d.ts │ │ │ │ ├── faPlaneArrival.js │ │ │ │ ├── faPlaneDeparture.d.ts │ │ │ │ ├── faPlaneDeparture.js │ │ │ │ ├── faPlaneSlash.d.ts │ │ │ │ ├── faPlaneSlash.js │ │ │ │ ├── faPlay.d.ts │ │ │ │ ├── faPlay.js │ │ │ │ ├── faPlayCircle.d.ts │ │ │ │ ├── faPlayCircle.js │ │ │ │ ├── faPlug.d.ts │ │ │ │ ├── faPlug.js │ │ │ │ ├── faPlus.d.ts │ │ │ │ ├── faPlus.js │ │ │ │ ├── faPlusCircle.d.ts │ │ │ │ ├── faPlusCircle.js │ │ │ │ ├── faPlusSquare.d.ts │ │ │ │ ├── faPlusSquare.js │ │ │ │ ├── faPodcast.d.ts │ │ │ │ ├── faPodcast.js │ │ │ │ ├── faPoll.d.ts │ │ │ │ ├── faPoll.js │ │ │ │ ├── faPollH.d.ts │ │ │ │ ├── faPollH.js │ │ │ │ ├── faPoo.d.ts │ │ │ │ ├── faPoo.js │ │ │ │ ├── faPooStorm.d.ts │ │ │ │ ├── faPooStorm.js │ │ │ │ ├── faPoop.d.ts │ │ │ │ ├── faPoop.js │ │ │ │ ├── faPortrait.d.ts │ │ │ │ ├── faPortrait.js │ │ │ │ ├── faPoundSign.d.ts │ │ │ │ ├── faPoundSign.js │ │ │ │ ├── faPowerOff.d.ts │ │ │ │ ├── faPowerOff.js │ │ │ │ ├── faPray.d.ts │ │ │ │ ├── faPray.js │ │ │ │ ├── faPrayingHands.d.ts │ │ │ │ ├── faPrayingHands.js │ │ │ │ ├── faPrescription.d.ts │ │ │ │ ├── faPrescription.js │ │ │ │ ├── faPrescriptionBottle.d.ts │ │ │ │ ├── faPrescriptionBottle.js │ │ │ │ ├── faPrescriptionBottleAlt.d.ts │ │ │ │ ├── faPrescriptionBottleAlt.js │ │ │ │ ├── faPrint.d.ts │ │ │ │ ├── faPrint.js │ │ │ │ ├── faProcedures.d.ts │ │ │ │ ├── faProcedures.js │ │ │ │ ├── faProjectDiagram.d.ts │ │ │ │ ├── faProjectDiagram.js │ │ │ │ ├── faPumpMedical.d.ts │ │ │ │ ├── faPumpMedical.js │ │ │ │ ├── faPumpSoap.d.ts │ │ │ │ ├── faPumpSoap.js │ │ │ │ ├── faPuzzlePiece.d.ts │ │ │ │ ├── faPuzzlePiece.js │ │ │ │ ├── faQrcode.d.ts │ │ │ │ ├── faQrcode.js │ │ │ │ ├── faQuestion.d.ts │ │ │ │ ├── faQuestion.js │ │ │ │ ├── faQuestionCircle.d.ts │ │ │ │ ├── faQuestionCircle.js │ │ │ │ ├── faQuidditch.d.ts │ │ │ │ ├── faQuidditch.js │ │ │ │ ├── faQuoteLeft.d.ts │ │ │ │ ├── faQuoteLeft.js │ │ │ │ ├── faQuoteRight.d.ts │ │ │ │ ├── faQuoteRight.js │ │ │ │ ├── faQuran.d.ts │ │ │ │ ├── faQuran.js │ │ │ │ ├── faRadiation.d.ts │ │ │ │ ├── faRadiation.js │ │ │ │ ├── faRadiationAlt.d.ts │ │ │ │ ├── faRadiationAlt.js │ │ │ │ ├── faRainbow.d.ts │ │ │ │ ├── faRainbow.js │ │ │ │ ├── faRandom.d.ts │ │ │ │ ├── faRandom.js │ │ │ │ ├── faReceipt.d.ts │ │ │ │ ├── faReceipt.js │ │ │ │ ├── faRecordVinyl.d.ts │ │ │ │ ├── faRecordVinyl.js │ │ │ │ ├── faRecycle.d.ts │ │ │ │ ├── faRecycle.js │ │ │ │ ├── faRedo.d.ts │ │ │ │ ├── faRedo.js │ │ │ │ ├── faRedoAlt.d.ts │ │ │ │ ├── faRedoAlt.js │ │ │ │ ├── faRegistered.d.ts │ │ │ │ ├── faRegistered.js │ │ │ │ ├── faRemoveFormat.d.ts │ │ │ │ ├── faRemoveFormat.js │ │ │ │ ├── faReply.d.ts │ │ │ │ ├── faReply.js │ │ │ │ ├── faReplyAll.d.ts │ │ │ │ ├── faReplyAll.js │ │ │ │ ├── faRepublican.d.ts │ │ │ │ ├── faRepublican.js │ │ │ │ ├── faRestroom.d.ts │ │ │ │ ├── faRestroom.js │ │ │ │ ├── faRetweet.d.ts │ │ │ │ ├── faRetweet.js │ │ │ │ ├── faRibbon.d.ts │ │ │ │ ├── faRibbon.js │ │ │ │ ├── faRing.d.ts │ │ │ │ ├── faRing.js │ │ │ │ ├── faRoad.d.ts │ │ │ │ ├── faRoad.js │ │ │ │ ├── faRobot.d.ts │ │ │ │ ├── faRobot.js │ │ │ │ ├── faRocket.d.ts │ │ │ │ ├── faRocket.js │ │ │ │ ├── faRoute.d.ts │ │ │ │ ├── faRoute.js │ │ │ │ ├── faRss.d.ts │ │ │ │ ├── faRss.js │ │ │ │ ├── faRssSquare.d.ts │ │ │ │ ├── faRssSquare.js │ │ │ │ ├── faRubleSign.d.ts │ │ │ │ ├── faRubleSign.js │ │ │ │ ├── faRuler.d.ts │ │ │ │ ├── faRuler.js │ │ │ │ ├── faRulerCombined.d.ts │ │ │ │ ├── faRulerCombined.js │ │ │ │ ├── faRulerHorizontal.d.ts │ │ │ │ ├── faRulerHorizontal.js │ │ │ │ ├── faRulerVertical.d.ts │ │ │ │ ├── faRulerVertical.js │ │ │ │ ├── faRunning.d.ts │ │ │ │ ├── faRunning.js │ │ │ │ ├── faRupeeSign.d.ts │ │ │ │ ├── faRupeeSign.js │ │ │ │ ├── faSadCry.d.ts │ │ │ │ ├── faSadCry.js │ │ │ │ ├── faSadTear.d.ts │ │ │ │ ├── faSadTear.js │ │ │ │ ├── faSatellite.d.ts │ │ │ │ ├── faSatellite.js │ │ │ │ ├── faSatelliteDish.d.ts │ │ │ │ ├── faSatelliteDish.js │ │ │ │ ├── faSave.d.ts │ │ │ │ ├── faSave.js │ │ │ │ ├── faSchool.d.ts │ │ │ │ ├── faSchool.js │ │ │ │ ├── faScrewdriver.d.ts │ │ │ │ ├── faScrewdriver.js │ │ │ │ ├── faScroll.d.ts │ │ │ │ ├── faScroll.js │ │ │ │ ├── faSdCard.d.ts │ │ │ │ ├── faSdCard.js │ │ │ │ ├── faSearch.d.ts │ │ │ │ ├── faSearch.js │ │ │ │ ├── faSearchDollar.d.ts │ │ │ │ ├── faSearchDollar.js │ │ │ │ ├── faSearchLocation.d.ts │ │ │ │ ├── faSearchLocation.js │ │ │ │ ├── faSearchMinus.d.ts │ │ │ │ ├── faSearchMinus.js │ │ │ │ ├── faSearchPlus.d.ts │ │ │ │ ├── faSearchPlus.js │ │ │ │ ├── faSeedling.d.ts │ │ │ │ ├── faSeedling.js │ │ │ │ ├── faServer.d.ts │ │ │ │ ├── faServer.js │ │ │ │ ├── faShapes.d.ts │ │ │ │ ├── faShapes.js │ │ │ │ ├── faShare.d.ts │ │ │ │ ├── faShare.js │ │ │ │ ├── faShareAlt.d.ts │ │ │ │ ├── faShareAlt.js │ │ │ │ ├── faShareAltSquare.d.ts │ │ │ │ ├── faShareAltSquare.js │ │ │ │ ├── faShareSquare.d.ts │ │ │ │ ├── faShareSquare.js │ │ │ │ ├── faShekelSign.d.ts │ │ │ │ ├── faShekelSign.js │ │ │ │ ├── faShieldAlt.d.ts │ │ │ │ ├── faShieldAlt.js │ │ │ │ ├── faShieldVirus.d.ts │ │ │ │ ├── faShieldVirus.js │ │ │ │ ├── faShip.d.ts │ │ │ │ ├── faShip.js │ │ │ │ ├── faShippingFast.d.ts │ │ │ │ ├── faShippingFast.js │ │ │ │ ├── faShoePrints.d.ts │ │ │ │ ├── faShoePrints.js │ │ │ │ ├── faShoppingBag.d.ts │ │ │ │ ├── faShoppingBag.js │ │ │ │ ├── faShoppingBasket.d.ts │ │ │ │ ├── faShoppingBasket.js │ │ │ │ ├── faShoppingCart.d.ts │ │ │ │ ├── faShoppingCart.js │ │ │ │ ├── faShower.d.ts │ │ │ │ ├── faShower.js │ │ │ │ ├── faShuttleVan.d.ts │ │ │ │ ├── faShuttleVan.js │ │ │ │ ├── faSign.d.ts │ │ │ │ ├── faSign.js │ │ │ │ ├── faSignInAlt.d.ts │ │ │ │ ├── faSignInAlt.js │ │ │ │ ├── faSignLanguage.d.ts │ │ │ │ ├── faSignLanguage.js │ │ │ │ ├── faSignOutAlt.d.ts │ │ │ │ ├── faSignOutAlt.js │ │ │ │ ├── faSignal.d.ts │ │ │ │ ├── faSignal.js │ │ │ │ ├── faSignature.d.ts │ │ │ │ ├── faSignature.js │ │ │ │ ├── faSimCard.d.ts │ │ │ │ ├── faSimCard.js │ │ │ │ ├── faSink.d.ts │ │ │ │ ├── faSink.js │ │ │ │ ├── faSitemap.d.ts │ │ │ │ ├── faSitemap.js │ │ │ │ ├── faSkating.d.ts │ │ │ │ ├── faSkating.js │ │ │ │ ├── faSkiing.d.ts │ │ │ │ ├── faSkiing.js │ │ │ │ ├── faSkiingNordic.d.ts │ │ │ │ ├── faSkiingNordic.js │ │ │ │ ├── faSkull.d.ts │ │ │ │ ├── faSkull.js │ │ │ │ ├── faSkullCrossbones.d.ts │ │ │ │ ├── faSkullCrossbones.js │ │ │ │ ├── faSlash.d.ts │ │ │ │ ├── faSlash.js │ │ │ │ ├── faSleigh.d.ts │ │ │ │ ├── faSleigh.js │ │ │ │ ├── faSlidersH.d.ts │ │ │ │ ├── faSlidersH.js │ │ │ │ ├── faSmile.d.ts │ │ │ │ ├── faSmile.js │ │ │ │ ├── faSmileBeam.d.ts │ │ │ │ ├── faSmileBeam.js │ │ │ │ ├── faSmileWink.d.ts │ │ │ │ ├── faSmileWink.js │ │ │ │ ├── faSmog.d.ts │ │ │ │ ├── faSmog.js │ │ │ │ ├── faSmoking.d.ts │ │ │ │ ├── faSmoking.js │ │ │ │ ├── faSmokingBan.d.ts │ │ │ │ ├── faSmokingBan.js │ │ │ │ ├── faSms.d.ts │ │ │ │ ├── faSms.js │ │ │ │ ├── faSnowboarding.d.ts │ │ │ │ ├── faSnowboarding.js │ │ │ │ ├── faSnowflake.d.ts │ │ │ │ ├── faSnowflake.js │ │ │ │ ├── faSnowman.d.ts │ │ │ │ ├── faSnowman.js │ │ │ │ ├── faSnowplow.d.ts │ │ │ │ ├── faSnowplow.js │ │ │ │ ├── faSoap.d.ts │ │ │ │ ├── faSoap.js │ │ │ │ ├── faSocks.d.ts │ │ │ │ ├── faSocks.js │ │ │ │ ├── faSolarPanel.d.ts │ │ │ │ ├── faSolarPanel.js │ │ │ │ ├── faSort.d.ts │ │ │ │ ├── faSort.js │ │ │ │ ├── faSortAlphaDown.d.ts │ │ │ │ ├── faSortAlphaDown.js │ │ │ │ ├── faSortAlphaDownAlt.d.ts │ │ │ │ ├── faSortAlphaDownAlt.js │ │ │ │ ├── faSortAlphaUp.d.ts │ │ │ │ ├── faSortAlphaUp.js │ │ │ │ ├── faSortAlphaUpAlt.d.ts │ │ │ │ ├── faSortAlphaUpAlt.js │ │ │ │ ├── faSortAmountDown.d.ts │ │ │ │ ├── faSortAmountDown.js │ │ │ │ ├── faSortAmountDownAlt.d.ts │ │ │ │ ├── faSortAmountDownAlt.js │ │ │ │ ├── faSortAmountUp.d.ts │ │ │ │ ├── faSortAmountUp.js │ │ │ │ ├── faSortAmountUpAlt.d.ts │ │ │ │ ├── faSortAmountUpAlt.js │ │ │ │ ├── faSortDown.d.ts │ │ │ │ ├── faSortDown.js │ │ │ │ ├── faSortNumericDown.d.ts │ │ │ │ ├── faSortNumericDown.js │ │ │ │ ├── faSortNumericDownAlt.d.ts │ │ │ │ ├── faSortNumericDownAlt.js │ │ │ │ ├── faSortNumericUp.d.ts │ │ │ │ ├── faSortNumericUp.js │ │ │ │ ├── faSortNumericUpAlt.d.ts │ │ │ │ ├── faSortNumericUpAlt.js │ │ │ │ ├── faSortUp.d.ts │ │ │ │ ├── faSortUp.js │ │ │ │ ├── faSpa.d.ts │ │ │ │ ├── faSpa.js │ │ │ │ ├── faSpaceShuttle.d.ts │ │ │ │ ├── faSpaceShuttle.js │ │ │ │ ├── faSpellCheck.d.ts │ │ │ │ ├── faSpellCheck.js │ │ │ │ ├── faSpider.d.ts │ │ │ │ ├── faSpider.js │ │ │ │ ├── faSpinner.d.ts │ │ │ │ ├── faSpinner.js │ │ │ │ ├── faSplotch.d.ts │ │ │ │ ├── faSplotch.js │ │ │ │ ├── faSprayCan.d.ts │ │ │ │ ├── faSprayCan.js │ │ │ │ ├── faSquare.d.ts │ │ │ │ ├── faSquare.js │ │ │ │ ├── faSquareFull.d.ts │ │ │ │ ├── faSquareFull.js │ │ │ │ ├── faSquareRootAlt.d.ts │ │ │ │ ├── faSquareRootAlt.js │ │ │ │ ├── faStamp.d.ts │ │ │ │ ├── faStamp.js │ │ │ │ ├── faStar.d.ts │ │ │ │ ├── faStar.js │ │ │ │ ├── faStarAndCrescent.d.ts │ │ │ │ ├── faStarAndCrescent.js │ │ │ │ ├── faStarHalf.d.ts │ │ │ │ ├── faStarHalf.js │ │ │ │ ├── faStarHalfAlt.d.ts │ │ │ │ ├── faStarHalfAlt.js │ │ │ │ ├── faStarOfDavid.d.ts │ │ │ │ ├── faStarOfDavid.js │ │ │ │ ├── faStarOfLife.d.ts │ │ │ │ ├── faStarOfLife.js │ │ │ │ ├── faStepBackward.d.ts │ │ │ │ ├── faStepBackward.js │ │ │ │ ├── faStepForward.d.ts │ │ │ │ ├── faStepForward.js │ │ │ │ ├── faStethoscope.d.ts │ │ │ │ ├── faStethoscope.js │ │ │ │ ├── faStickyNote.d.ts │ │ │ │ ├── faStickyNote.js │ │ │ │ ├── faStop.d.ts │ │ │ │ ├── faStop.js │ │ │ │ ├── faStopCircle.d.ts │ │ │ │ ├── faStopCircle.js │ │ │ │ ├── faStopwatch.d.ts │ │ │ │ ├── faStopwatch.js │ │ │ │ ├── faStopwatch20.d.ts │ │ │ │ ├── faStopwatch20.js │ │ │ │ ├── faStore.d.ts │ │ │ │ ├── faStore.js │ │ │ │ ├── faStoreAlt.d.ts │ │ │ │ ├── faStoreAlt.js │ │ │ │ ├── faStoreAltSlash.d.ts │ │ │ │ ├── faStoreAltSlash.js │ │ │ │ ├── faStoreSlash.d.ts │ │ │ │ ├── faStoreSlash.js │ │ │ │ ├── faStream.d.ts │ │ │ │ ├── faStream.js │ │ │ │ ├── faStreetView.d.ts │ │ │ │ ├── faStreetView.js │ │ │ │ ├── faStrikethrough.d.ts │ │ │ │ ├── faStrikethrough.js │ │ │ │ ├── faStroopwafel.d.ts │ │ │ │ ├── faStroopwafel.js │ │ │ │ ├── faSubscript.d.ts │ │ │ │ ├── faSubscript.js │ │ │ │ ├── faSubway.d.ts │ │ │ │ ├── faSubway.js │ │ │ │ ├── faSuitcase.d.ts │ │ │ │ ├── faSuitcase.js │ │ │ │ ├── faSuitcaseRolling.d.ts │ │ │ │ ├── faSuitcaseRolling.js │ │ │ │ ├── faSun.d.ts │ │ │ │ ├── faSun.js │ │ │ │ ├── faSuperscript.d.ts │ │ │ │ ├── faSuperscript.js │ │ │ │ ├── faSurprise.d.ts │ │ │ │ ├── faSurprise.js │ │ │ │ ├── faSwatchbook.d.ts │ │ │ │ ├── faSwatchbook.js │ │ │ │ ├── faSwimmer.d.ts │ │ │ │ ├── faSwimmer.js │ │ │ │ ├── faSwimmingPool.d.ts │ │ │ │ ├── faSwimmingPool.js │ │ │ │ ├── faSynagogue.d.ts │ │ │ │ ├── faSynagogue.js │ │ │ │ ├── faSync.d.ts │ │ │ │ ├── faSync.js │ │ │ │ ├── faSyncAlt.d.ts │ │ │ │ ├── faSyncAlt.js │ │ │ │ ├── faSyringe.d.ts │ │ │ │ ├── faSyringe.js │ │ │ │ ├── faTable.d.ts │ │ │ │ ├── faTable.js │ │ │ │ ├── faTableTennis.d.ts │ │ │ │ ├── faTableTennis.js │ │ │ │ ├── faTablet.d.ts │ │ │ │ ├── faTablet.js │ │ │ │ ├── faTabletAlt.d.ts │ │ │ │ ├── faTabletAlt.js │ │ │ │ ├── faTablets.d.ts │ │ │ │ ├── faTablets.js │ │ │ │ ├── faTachometerAlt.d.ts │ │ │ │ ├── faTachometerAlt.js │ │ │ │ ├── faTag.d.ts │ │ │ │ ├── faTag.js │ │ │ │ ├── faTags.d.ts │ │ │ │ ├── faTags.js │ │ │ │ ├── faTape.d.ts │ │ │ │ ├── faTape.js │ │ │ │ ├── faTasks.d.ts │ │ │ │ ├── faTasks.js │ │ │ │ ├── faTaxi.d.ts │ │ │ │ ├── faTaxi.js │ │ │ │ ├── faTeeth.d.ts │ │ │ │ ├── faTeeth.js │ │ │ │ ├── faTeethOpen.d.ts │ │ │ │ ├── faTeethOpen.js │ │ │ │ ├── faTemperatureHigh.d.ts │ │ │ │ ├── faTemperatureHigh.js │ │ │ │ ├── faTemperatureLow.d.ts │ │ │ │ ├── faTemperatureLow.js │ │ │ │ ├── faTenge.d.ts │ │ │ │ ├── faTenge.js │ │ │ │ ├── faTerminal.d.ts │ │ │ │ ├── faTerminal.js │ │ │ │ ├── faTextHeight.d.ts │ │ │ │ ├── faTextHeight.js │ │ │ │ ├── faTextWidth.d.ts │ │ │ │ ├── faTextWidth.js │ │ │ │ ├── faTh.d.ts │ │ │ │ ├── faTh.js │ │ │ │ ├── faThLarge.d.ts │ │ │ │ ├── faThLarge.js │ │ │ │ ├── faThList.d.ts │ │ │ │ ├── faThList.js │ │ │ │ ├── faTheaterMasks.d.ts │ │ │ │ ├── faTheaterMasks.js │ │ │ │ ├── faThermometer.d.ts │ │ │ │ ├── faThermometer.js │ │ │ │ ├── faThermometerEmpty.d.ts │ │ │ │ ├── faThermometerEmpty.js │ │ │ │ ├── faThermometerFull.d.ts │ │ │ │ ├── faThermometerFull.js │ │ │ │ ├── faThermometerHalf.d.ts │ │ │ │ ├── faThermometerHalf.js │ │ │ │ ├── faThermometerQuarter.d.ts │ │ │ │ ├── faThermometerQuarter.js │ │ │ │ ├── faThermometerThreeQuarters.d.ts │ │ │ │ ├── faThermometerThreeQuarters.js │ │ │ │ ├── faThumbsDown.d.ts │ │ │ │ ├── faThumbsDown.js │ │ │ │ ├── faThumbsUp.d.ts │ │ │ │ ├── faThumbsUp.js │ │ │ │ ├── faThumbtack.d.ts │ │ │ │ ├── faThumbtack.js │ │ │ │ ├── faTicketAlt.d.ts │ │ │ │ ├── faTicketAlt.js │ │ │ │ ├── faTimes.d.ts │ │ │ │ ├── faTimes.js │ │ │ │ ├── faTimesCircle.d.ts │ │ │ │ ├── faTimesCircle.js │ │ │ │ ├── faTint.d.ts │ │ │ │ ├── faTint.js │ │ │ │ ├── faTintSlash.d.ts │ │ │ │ ├── faTintSlash.js │ │ │ │ ├── faTired.d.ts │ │ │ │ ├── faTired.js │ │ │ │ ├── faToggleOff.d.ts │ │ │ │ ├── faToggleOff.js │ │ │ │ ├── faToggleOn.d.ts │ │ │ │ ├── faToggleOn.js │ │ │ │ ├── faToilet.d.ts │ │ │ │ ├── faToilet.js │ │ │ │ ├── faToiletPaper.d.ts │ │ │ │ ├── faToiletPaper.js │ │ │ │ ├── faToiletPaperSlash.d.ts │ │ │ │ ├── faToiletPaperSlash.js │ │ │ │ ├── faToolbox.d.ts │ │ │ │ ├── faToolbox.js │ │ │ │ ├── faTools.d.ts │ │ │ │ ├── faTools.js │ │ │ │ ├── faTooth.d.ts │ │ │ │ ├── faTooth.js │ │ │ │ ├── faTorah.d.ts │ │ │ │ ├── faTorah.js │ │ │ │ ├── faToriiGate.d.ts │ │ │ │ ├── faToriiGate.js │ │ │ │ ├── faTractor.d.ts │ │ │ │ ├── faTractor.js │ │ │ │ ├── faTrademark.d.ts │ │ │ │ ├── faTrademark.js │ │ │ │ ├── faTrafficLight.d.ts │ │ │ │ ├── faTrafficLight.js │ │ │ │ ├── faTrailer.d.ts │ │ │ │ ├── faTrailer.js │ │ │ │ ├── faTrain.d.ts │ │ │ │ ├── faTrain.js │ │ │ │ ├── faTram.d.ts │ │ │ │ ├── faTram.js │ │ │ │ ├── faTransgender.d.ts │ │ │ │ ├── faTransgender.js │ │ │ │ ├── faTransgenderAlt.d.ts │ │ │ │ ├── faTransgenderAlt.js │ │ │ │ ├── faTrash.d.ts │ │ │ │ ├── faTrash.js │ │ │ │ ├── faTrashAlt.d.ts │ │ │ │ ├── faTrashAlt.js │ │ │ │ ├── faTrashRestore.d.ts │ │ │ │ ├── faTrashRestore.js │ │ │ │ ├── faTrashRestoreAlt.d.ts │ │ │ │ ├── faTrashRestoreAlt.js │ │ │ │ ├── faTree.d.ts │ │ │ │ ├── faTree.js │ │ │ │ ├── faTrophy.d.ts │ │ │ │ ├── faTrophy.js │ │ │ │ ├── faTruck.d.ts │ │ │ │ ├── faTruck.js │ │ │ │ ├── faTruckLoading.d.ts │ │ │ │ ├── faTruckLoading.js │ │ │ │ ├── faTruckMonster.d.ts │ │ │ │ ├── faTruckMonster.js │ │ │ │ ├── faTruckMoving.d.ts │ │ │ │ ├── faTruckMoving.js │ │ │ │ ├── faTruckPickup.d.ts │ │ │ │ ├── faTruckPickup.js │ │ │ │ ├── faTshirt.d.ts │ │ │ │ ├── faTshirt.js │ │ │ │ ├── faTty.d.ts │ │ │ │ ├── faTty.js │ │ │ │ ├── faTv.d.ts │ │ │ │ ├── faTv.js │ │ │ │ ├── faUmbrella.d.ts │ │ │ │ ├── faUmbrella.js │ │ │ │ ├── faUmbrellaBeach.d.ts │ │ │ │ ├── faUmbrellaBeach.js │ │ │ │ ├── faUnderline.d.ts │ │ │ │ ├── faUnderline.js │ │ │ │ ├── faUndo.d.ts │ │ │ │ ├── faUndo.js │ │ │ │ ├── faUndoAlt.d.ts │ │ │ │ ├── faUndoAlt.js │ │ │ │ ├── faUniversalAccess.d.ts │ │ │ │ ├── faUniversalAccess.js │ │ │ │ ├── faUniversity.d.ts │ │ │ │ ├── faUniversity.js │ │ │ │ ├── faUnlink.d.ts │ │ │ │ ├── faUnlink.js │ │ │ │ ├── faUnlock.d.ts │ │ │ │ ├── faUnlock.js │ │ │ │ ├── faUnlockAlt.d.ts │ │ │ │ ├── faUnlockAlt.js │ │ │ │ ├── faUpload.d.ts │ │ │ │ ├── faUpload.js │ │ │ │ ├── faUser.d.ts │ │ │ │ ├── faUser.js │ │ │ │ ├── faUserAlt.d.ts │ │ │ │ ├── faUserAlt.js │ │ │ │ ├── faUserAltSlash.d.ts │ │ │ │ ├── faUserAltSlash.js │ │ │ │ ├── faUserAstronaut.d.ts │ │ │ │ ├── faUserAstronaut.js │ │ │ │ ├── faUserCheck.d.ts │ │ │ │ ├── faUserCheck.js │ │ │ │ ├── faUserCircle.d.ts │ │ │ │ ├── faUserCircle.js │ │ │ │ ├── faUserClock.d.ts │ │ │ │ ├── faUserClock.js │ │ │ │ ├── faUserCog.d.ts │ │ │ │ ├── faUserCog.js │ │ │ │ ├── faUserEdit.d.ts │ │ │ │ ├── faUserEdit.js │ │ │ │ ├── faUserFriends.d.ts │ │ │ │ ├── faUserFriends.js │ │ │ │ ├── faUserGraduate.d.ts │ │ │ │ ├── faUserGraduate.js │ │ │ │ ├── faUserInjured.d.ts │ │ │ │ ├── faUserInjured.js │ │ │ │ ├── faUserLock.d.ts │ │ │ │ ├── faUserLock.js │ │ │ │ ├── faUserMd.d.ts │ │ │ │ ├── faUserMd.js │ │ │ │ ├── faUserMinus.d.ts │ │ │ │ ├── faUserMinus.js │ │ │ │ ├── faUserNinja.d.ts │ │ │ │ ├── faUserNinja.js │ │ │ │ ├── faUserNurse.d.ts │ │ │ │ ├── faUserNurse.js │ │ │ │ ├── faUserPlus.d.ts │ │ │ │ ├── faUserPlus.js │ │ │ │ ├── faUserSecret.d.ts │ │ │ │ ├── faUserSecret.js │ │ │ │ ├── faUserShield.d.ts │ │ │ │ ├── faUserShield.js │ │ │ │ ├── faUserSlash.d.ts │ │ │ │ ├── faUserSlash.js │ │ │ │ ├── faUserTag.d.ts │ │ │ │ ├── faUserTag.js │ │ │ │ ├── faUserTie.d.ts │ │ │ │ ├── faUserTie.js │ │ │ │ ├── faUserTimes.d.ts │ │ │ │ ├── faUserTimes.js │ │ │ │ ├── faUsers.d.ts │ │ │ │ ├── faUsers.js │ │ │ │ ├── faUsersCog.d.ts │ │ │ │ ├── faUsersCog.js │ │ │ │ ├── faUsersSlash.d.ts │ │ │ │ ├── faUsersSlash.js │ │ │ │ ├── faUtensilSpoon.d.ts │ │ │ │ ├── faUtensilSpoon.js │ │ │ │ ├── faUtensils.d.ts │ │ │ │ ├── faUtensils.js │ │ │ │ ├── faVectorSquare.d.ts │ │ │ │ ├── faVectorSquare.js │ │ │ │ ├── faVenus.d.ts │ │ │ │ ├── faVenus.js │ │ │ │ ├── faVenusDouble.d.ts │ │ │ │ ├── faVenusDouble.js │ │ │ │ ├── faVenusMars.d.ts │ │ │ │ ├── faVenusMars.js │ │ │ │ ├── faVest.d.ts │ │ │ │ ├── faVest.js │ │ │ │ ├── faVestPatches.d.ts │ │ │ │ ├── faVestPatches.js │ │ │ │ ├── faVial.d.ts │ │ │ │ ├── faVial.js │ │ │ │ ├── faVials.d.ts │ │ │ │ ├── faVials.js │ │ │ │ ├── faVideo.d.ts │ │ │ │ ├── faVideo.js │ │ │ │ ├── faVideoSlash.d.ts │ │ │ │ ├── faVideoSlash.js │ │ │ │ ├── faVihara.d.ts │ │ │ │ ├── faVihara.js │ │ │ │ ├── faVirus.d.ts │ │ │ │ ├── faVirus.js │ │ │ │ ├── faVirusSlash.d.ts │ │ │ │ ├── faVirusSlash.js │ │ │ │ ├── faViruses.d.ts │ │ │ │ ├── faViruses.js │ │ │ │ ├── faVoicemail.d.ts │ │ │ │ ├── faVoicemail.js │ │ │ │ ├── faVolleyballBall.d.ts │ │ │ │ ├── faVolleyballBall.js │ │ │ │ ├── faVolumeDown.d.ts │ │ │ │ ├── faVolumeDown.js │ │ │ │ ├── faVolumeMute.d.ts │ │ │ │ ├── faVolumeMute.js │ │ │ │ ├── faVolumeOff.d.ts │ │ │ │ ├── faVolumeOff.js │ │ │ │ ├── faVolumeUp.d.ts │ │ │ │ ├── faVolumeUp.js │ │ │ │ ├── faVoteYea.d.ts │ │ │ │ ├── faVoteYea.js │ │ │ │ ├── faVrCardboard.d.ts │ │ │ │ ├── faVrCardboard.js │ │ │ │ ├── faWalking.d.ts │ │ │ │ ├── faWalking.js │ │ │ │ ├── faWallet.d.ts │ │ │ │ ├── faWallet.js │ │ │ │ ├── faWarehouse.d.ts │ │ │ │ ├── faWarehouse.js │ │ │ │ ├── faWater.d.ts │ │ │ │ ├── faWater.js │ │ │ │ ├── faWaveSquare.d.ts │ │ │ │ ├── faWaveSquare.js │ │ │ │ ├── faWeight.d.ts │ │ │ │ ├── faWeight.js │ │ │ │ ├── faWeightHanging.d.ts │ │ │ │ ├── faWeightHanging.js │ │ │ │ ├── faWheelchair.d.ts │ │ │ │ ├── faWheelchair.js │ │ │ │ ├── faWifi.d.ts │ │ │ │ ├── faWifi.js │ │ │ │ ├── faWind.d.ts │ │ │ │ ├── faWind.js │ │ │ │ ├── faWindowClose.d.ts │ │ │ │ ├── faWindowClose.js │ │ │ │ ├── faWindowMaximize.d.ts │ │ │ │ ├── faWindowMaximize.js │ │ │ │ ├── faWindowMinimize.d.ts │ │ │ │ ├── faWindowMinimize.js │ │ │ │ ├── faWindowRestore.d.ts │ │ │ │ ├── faWindowRestore.js │ │ │ │ ├── faWineBottle.d.ts │ │ │ │ ├── faWineBottle.js │ │ │ │ ├── faWineGlass.d.ts │ │ │ │ ├── faWineGlass.js │ │ │ │ ├── faWineGlassAlt.d.ts │ │ │ │ ├── faWineGlassAlt.js │ │ │ │ ├── faWonSign.d.ts │ │ │ │ ├── faWonSign.js │ │ │ │ ├── faWrench.d.ts │ │ │ │ ├── faWrench.js │ │ │ │ ├── faXRay.d.ts │ │ │ │ ├── faXRay.js │ │ │ │ ├── faYenSign.d.ts │ │ │ │ ├── faYenSign.js │ │ │ │ ├── faYinYang.d.ts │ │ │ │ ├── faYinYang.js │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.es.js │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ ├── js │ │ │ ├── all.js │ │ │ ├── all.min.js │ │ │ ├── brands.js │ │ │ ├── brands.min.js │ │ │ ├── conflict-detection.js │ │ │ ├── conflict-detection.min.js │ │ │ ├── fontawesome.js │ │ │ ├── fontawesome.min.js │ │ │ ├── regular.js │ │ │ ├── regular.min.js │ │ │ ├── solid.js │ │ │ ├── solid.min.js │ │ │ ├── v4-shims.js │ │ │ └── v4-shims.min.js │ │ ├── less │ │ │ ├── _animated.less │ │ │ ├── _bordered-pulled.less │ │ │ ├── _core.less │ │ │ ├── _fixed-width.less │ │ │ ├── _icons.less │ │ │ ├── _larger.less │ │ │ ├── _list.less │ │ │ ├── _mixins.less │ │ │ ├── _rotated-flipped.less │ │ │ ├── _screen-reader.less │ │ │ ├── _shims.less │ │ │ ├── _stacked.less │ │ │ ├── _variables.less │ │ │ ├── brands.less │ │ │ ├── fontawesome.less │ │ │ ├── regular.less │ │ │ ├── solid.less │ │ │ └── v4-shims.less │ │ ├── metadata │ │ │ ├── categories.yml │ │ │ ├── icons.json │ │ │ ├── icons.yml │ │ │ ├── shims.json │ │ │ ├── shims.yml │ │ │ └── sponsors.yml │ │ ├── otfs │ │ │ ├── Font Awesome 5 Brands-Regular-400.otf │ │ │ ├── Font Awesome 5 Free-Regular-400.otf │ │ │ ├── Font Awesome 5 Free-Solid-900.otf │ │ │ └── README.md │ │ ├── scss │ │ │ ├── _animated.scss │ │ │ ├── _bordered-pulled.scss │ │ │ ├── _core.scss │ │ │ ├── _fixed-width.scss │ │ │ ├── _icons.scss │ │ │ ├── _larger.scss │ │ │ ├── _list.scss │ │ │ ├── _mixins.scss │ │ │ ├── _rotated-flipped.scss │ │ │ ├── _screen-reader.scss │ │ │ ├── _shims.scss │ │ │ ├── _stacked.scss │ │ │ ├── _variables.scss │ │ │ ├── brands.scss │ │ │ ├── fontawesome.scss │ │ │ ├── regular.scss │ │ │ ├── solid.scss │ │ │ └── v4-shims.scss │ │ ├── sprites │ │ │ ├── brands.svg │ │ │ ├── regular.svg │ │ │ └── solid.svg │ │ ├── svgs │ │ │ ├── brands │ │ │ │ ├── 500px.svg │ │ │ │ ├── accessible-icon.svg │ │ │ │ ├── accusoft.svg │ │ │ │ ├── acquisitions-incorporated.svg │ │ │ │ ├── adn.svg │ │ │ │ ├── adversal.svg │ │ │ │ ├── affiliatetheme.svg │ │ │ │ ├── airbnb.svg │ │ │ │ ├── algolia.svg │ │ │ │ ├── alipay.svg │ │ │ │ ├── amazon-pay.svg │ │ │ │ ├── amazon.svg │ │ │ │ ├── amilia.svg │ │ │ │ ├── android.svg │ │ │ │ ├── angellist.svg │ │ │ │ ├── angrycreative.svg │ │ │ │ ├── angular.svg │ │ │ │ ├── app-store-ios.svg │ │ │ │ ├── app-store.svg │ │ │ │ ├── apper.svg │ │ │ │ ├── apple-pay.svg │ │ │ │ ├── apple.svg │ │ │ │ ├── artstation.svg │ │ │ │ ├── asymmetrik.svg │ │ │ │ ├── atlassian.svg │ │ │ │ ├── audible.svg │ │ │ │ ├── autoprefixer.svg │ │ │ │ ├── avianex.svg │ │ │ │ ├── aviato.svg │ │ │ │ ├── aws.svg │ │ │ │ ├── bandcamp.svg │ │ │ │ ├── battle-net.svg │ │ │ │ ├── behance-square.svg │ │ │ │ ├── behance.svg │ │ │ │ ├── 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 │ │ │ │ ├── cloudflare.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 │ │ │ │ ├── dailymotion.svg │ │ │ │ ├── dashcube.svg │ │ │ │ ├── deezer.svg │ │ │ │ ├── delicious.svg │ │ │ │ ├── deploydog.svg │ │ │ │ ├── deskpro.svg │ │ │ │ ├── dev.svg │ │ │ │ ├── deviantart.svg │ │ │ │ ├── dhl.svg │ │ │ │ ├── diaspora.svg │ │ │ │ ├── digg.svg │ │ │ │ ├── digital-ocean.svg │ │ │ │ ├── discord.svg │ │ │ │ ├── discourse.svg │ │ │ │ ├── dochub.svg │ │ │ │ ├── docker.svg │ │ │ │ ├── draft2digital.svg │ │ │ │ ├── dribbble-square.svg │ │ │ │ ├── dribbble.svg │ │ │ │ ├── dropbox.svg │ │ │ │ ├── drupal.svg │ │ │ │ ├── dyalog.svg │ │ │ │ ├── earlybirds.svg │ │ │ │ ├── ebay.svg │ │ │ │ ├── edge-legacy.svg │ │ │ │ ├── edge.svg │ │ │ │ ├── elementor.svg │ │ │ │ ├── ello.svg │ │ │ │ ├── ember.svg │ │ │ │ ├── empire.svg │ │ │ │ ├── envira.svg │ │ │ │ ├── erlang.svg │ │ │ │ ├── ethereum.svg │ │ │ │ ├── etsy.svg │ │ │ │ ├── evernote.svg │ │ │ │ ├── expeditedssl.svg │ │ │ │ ├── facebook-f.svg │ │ │ │ ├── facebook-messenger.svg │ │ │ │ ├── facebook-square.svg │ │ │ │ ├── facebook.svg │ │ │ │ ├── fantasy-flight-games.svg │ │ │ │ ├── fedex.svg │ │ │ │ ├── fedora.svg │ │ │ │ ├── figma.svg │ │ │ │ ├── firefox-browser.svg │ │ │ │ ├── firefox.svg │ │ │ │ ├── first-order-alt.svg │ │ │ │ ├── first-order.svg │ │ │ │ ├── firstdraft.svg │ │ │ │ ├── flickr.svg │ │ │ │ ├── flipboard.svg │ │ │ │ ├── fly.svg │ │ │ │ ├── font-awesome-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-pay.svg │ │ │ │ ├── google-play.svg │ │ │ │ ├── google-plus-g.svg │ │ │ │ ├── google-plus-square.svg │ │ │ │ ├── google-plus.svg │ │ │ │ ├── google-wallet.svg │ │ │ │ ├── google.svg │ │ │ │ ├── gratipay.svg │ │ │ │ ├── grav.svg │ │ │ │ ├── gripfire.svg │ │ │ │ ├── grunt.svg │ │ │ │ ├── guilded.svg │ │ │ │ ├── gulp.svg │ │ │ │ ├── hacker-news-square.svg │ │ │ │ ├── hacker-news.svg │ │ │ │ ├── hackerrank.svg │ │ │ │ ├── hips.svg │ │ │ │ ├── hire-a-helper.svg │ │ │ │ ├── hive.svg │ │ │ │ ├── hooli.svg │ │ │ │ ├── hornbill.svg │ │ │ │ ├── hotjar.svg │ │ │ │ ├── houzz.svg │ │ │ │ ├── html5.svg │ │ │ │ ├── hubspot.svg │ │ │ │ ├── ideal.svg │ │ │ │ ├── imdb.svg │ │ │ │ ├── innosoft.svg │ │ │ │ ├── instagram-square.svg │ │ │ │ ├── instagram.svg │ │ │ │ ├── instalod.svg │ │ │ │ ├── intercom.svg │ │ │ │ ├── internet-explorer.svg │ │ │ │ ├── invision.svg │ │ │ │ ├── ioxhost.svg │ │ │ │ ├── itch-io.svg │ │ │ │ ├── itunes-note.svg │ │ │ │ ├── itunes.svg │ │ │ │ ├── java.svg │ │ │ │ ├── jedi-order.svg │ │ │ │ ├── jenkins.svg │ │ │ │ ├── jira.svg │ │ │ │ ├── joget.svg │ │ │ │ ├── joomla.svg │ │ │ │ ├── js-square.svg │ │ │ │ ├── js.svg │ │ │ │ ├── jsfiddle.svg │ │ │ │ ├── kaggle.svg │ │ │ │ ├── keybase.svg │ │ │ │ ├── keycdn.svg │ │ │ │ ├── kickstarter-k.svg │ │ │ │ ├── kickstarter.svg │ │ │ │ ├── korvue.svg │ │ │ │ ├── laravel.svg │ │ │ │ ├── lastfm-square.svg │ │ │ │ ├── lastfm.svg │ │ │ │ ├── leanpub.svg │ │ │ │ ├── less.svg │ │ │ │ ├── line.svg │ │ │ │ ├── linkedin-in.svg │ │ │ │ ├── linkedin.svg │ │ │ │ ├── linode.svg │ │ │ │ ├── linux.svg │ │ │ │ ├── lyft.svg │ │ │ │ ├── magento.svg │ │ │ │ ├── mailchimp.svg │ │ │ │ ├── mandalorian.svg │ │ │ │ ├── markdown.svg │ │ │ │ ├── mastodon.svg │ │ │ │ ├── maxcdn.svg │ │ │ │ ├── mdb.svg │ │ │ │ ├── medapps.svg │ │ │ │ ├── medium-m.svg │ │ │ │ ├── medium.svg │ │ │ │ ├── medrt.svg │ │ │ │ ├── meetup.svg │ │ │ │ ├── megaport.svg │ │ │ │ ├── mendeley.svg │ │ │ │ ├── microblog.svg │ │ │ │ ├── microsoft.svg │ │ │ │ ├── mix.svg │ │ │ │ ├── mixcloud.svg │ │ │ │ ├── mixer.svg │ │ │ │ ├── mizuni.svg │ │ │ │ ├── modx.svg │ │ │ │ ├── monero.svg │ │ │ │ ├── napster.svg │ │ │ │ ├── neos.svg │ │ │ │ ├── nimblr.svg │ │ │ │ ├── node-js.svg │ │ │ │ ├── node.svg │ │ │ │ ├── npm.svg │ │ │ │ ├── ns8.svg │ │ │ │ ├── nutritionix.svg │ │ │ │ ├── octopus-deploy.svg │ │ │ │ ├── odnoklassniki-square.svg │ │ │ │ ├── odnoklassniki.svg │ │ │ │ ├── old-republic.svg │ │ │ │ ├── opencart.svg │ │ │ │ ├── openid.svg │ │ │ │ ├── opera.svg │ │ │ │ ├── optin-monster.svg │ │ │ │ ├── orcid.svg │ │ │ │ ├── osi.svg │ │ │ │ ├── page4.svg │ │ │ │ ├── pagelines.svg │ │ │ │ ├── palfed.svg │ │ │ │ ├── patreon.svg │ │ │ │ ├── paypal.svg │ │ │ │ ├── penny-arcade.svg │ │ │ │ ├── perbyte.svg │ │ │ │ ├── periscope.svg │ │ │ │ ├── phabricator.svg │ │ │ │ ├── phoenix-framework.svg │ │ │ │ ├── phoenix-squadron.svg │ │ │ │ ├── php.svg │ │ │ │ ├── pied-piper-alt.svg │ │ │ │ ├── pied-piper-hat.svg │ │ │ │ ├── pied-piper-pp.svg │ │ │ │ ├── pied-piper-square.svg │ │ │ │ ├── pied-piper.svg │ │ │ │ ├── pinterest-p.svg │ │ │ │ ├── pinterest-square.svg │ │ │ │ ├── pinterest.svg │ │ │ │ ├── playstation.svg │ │ │ │ ├── product-hunt.svg │ │ │ │ ├── pushed.svg │ │ │ │ ├── python.svg │ │ │ │ ├── qq.svg │ │ │ │ ├── quinscape.svg │ │ │ │ ├── quora.svg │ │ │ │ ├── r-project.svg │ │ │ │ ├── raspberry-pi.svg │ │ │ │ ├── ravelry.svg │ │ │ │ ├── react.svg │ │ │ │ ├── reacteurope.svg │ │ │ │ ├── readme.svg │ │ │ │ ├── rebel.svg │ │ │ │ ├── red-river.svg │ │ │ │ ├── reddit-alien.svg │ │ │ │ ├── reddit-square.svg │ │ │ │ ├── reddit.svg │ │ │ │ ├── redhat.svg │ │ │ │ ├── renren.svg │ │ │ │ ├── replyd.svg │ │ │ │ ├── researchgate.svg │ │ │ │ ├── resolving.svg │ │ │ │ ├── rev.svg │ │ │ │ ├── rocketchat.svg │ │ │ │ ├── rockrms.svg │ │ │ │ ├── rust.svg │ │ │ │ ├── safari.svg │ │ │ │ ├── salesforce.svg │ │ │ │ ├── sass.svg │ │ │ │ ├── schlix.svg │ │ │ │ ├── scribd.svg │ │ │ │ ├── searchengin.svg │ │ │ │ ├── sellcast.svg │ │ │ │ ├── sellsy.svg │ │ │ │ ├── servicestack.svg │ │ │ │ ├── shirtsinbulk.svg │ │ │ │ ├── shopify.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 │ │ │ │ ├── tiktok.svg │ │ │ │ ├── trade-federation.svg │ │ │ │ ├── trello.svg │ │ │ │ ├── tripadvisor.svg │ │ │ │ ├── tumblr-square.svg │ │ │ │ ├── tumblr.svg │ │ │ │ ├── twitch.svg │ │ │ │ ├── twitter-square.svg │ │ │ │ ├── twitter.svg │ │ │ │ ├── typo3.svg │ │ │ │ ├── uber.svg │ │ │ │ ├── ubuntu.svg │ │ │ │ ├── uikit.svg │ │ │ │ ├── umbraco.svg │ │ │ │ ├── uncharted.svg │ │ │ │ ├── uniregistry.svg │ │ │ │ ├── unity.svg │ │ │ │ ├── unsplash.svg │ │ │ │ ├── untappd.svg │ │ │ │ ├── ups.svg │ │ │ │ ├── usb.svg │ │ │ │ ├── usps.svg │ │ │ │ ├── ussunnah.svg │ │ │ │ ├── vaadin.svg │ │ │ │ ├── viacoin.svg │ │ │ │ ├── viadeo-square.svg │ │ │ │ ├── viadeo.svg │ │ │ │ ├── viber.svg │ │ │ │ ├── vimeo-square.svg │ │ │ │ ├── vimeo-v.svg │ │ │ │ ├── vimeo.svg │ │ │ │ ├── vine.svg │ │ │ │ ├── vk.svg │ │ │ │ ├── vnv.svg │ │ │ │ ├── vuejs.svg │ │ │ │ ├── watchman-monitoring.svg │ │ │ │ ├── waze.svg │ │ │ │ ├── weebly.svg │ │ │ │ ├── weibo.svg │ │ │ │ ├── weixin.svg │ │ │ │ ├── whatsapp-square.svg │ │ │ │ ├── whatsapp.svg │ │ │ │ ├── whmcs.svg │ │ │ │ ├── wikipedia-w.svg │ │ │ │ ├── windows.svg │ │ │ │ ├── wix.svg │ │ │ │ ├── wizards-of-the-coast.svg │ │ │ │ ├── wodu.svg │ │ │ │ ├── wolf-pack-battalion.svg │ │ │ │ ├── wordpress-simple.svg │ │ │ │ ├── wordpress.svg │ │ │ │ ├── wpbeginner.svg │ │ │ │ ├── wpexplorer.svg │ │ │ │ ├── wpforms.svg │ │ │ │ ├── wpressr.svg │ │ │ │ ├── xbox.svg │ │ │ │ ├── xing-square.svg │ │ │ │ ├── xing.svg │ │ │ │ ├── y-combinator.svg │ │ │ │ ├── yahoo.svg │ │ │ │ ├── yammer.svg │ │ │ │ ├── yandex-international.svg │ │ │ │ ├── yandex.svg │ │ │ │ ├── yarn.svg │ │ │ │ ├── yelp.svg │ │ │ │ ├── yoast.svg │ │ │ │ ├── youtube-square.svg │ │ │ │ ├── youtube.svg │ │ │ │ └── zhihu.svg │ │ │ ├── regular │ │ │ │ ├── address-book.svg │ │ │ │ ├── address-card.svg │ │ │ │ ├── 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 │ │ │ │ ├── bacteria.svg │ │ │ │ ├── bacterium.svg │ │ │ │ ├── bahai.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-tissue.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 │ │ │ │ ├── caravan.svg │ │ │ │ ├── caret-down.svg │ │ │ │ ├── caret-left.svg │ │ │ │ ├── caret-right.svg │ │ │ │ ├── caret-square-down.svg │ │ │ │ ├── caret-square-left.svg │ │ │ │ ├── caret-square-right.svg │ │ │ │ ├── caret-square-up.svg │ │ │ │ ├── caret-up.svg │ │ │ │ ├── carrot.svg │ │ │ │ ├── cart-arrow-down.svg │ │ │ │ ├── cart-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-alt.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 │ │ │ │ ├── disease.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-alt.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 │ │ │ │ ├── faucet.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-medical.svg │ │ │ │ ├── hand-holding-usd.svg │ │ │ │ ├── hand-holding-water.svg │ │ │ │ ├── hand-holding.svg │ │ │ │ ├── hand-lizard.svg │ │ │ │ ├── hand-middle-finger.svg │ │ │ │ ├── hand-paper.svg │ │ │ │ ├── hand-peace.svg │ │ │ │ ├── hand-point-down.svg │ │ │ │ ├── hand-point-left.svg │ │ │ │ ├── hand-point-right.svg │ │ │ │ ├── hand-point-up.svg │ │ │ │ ├── hand-pointer.svg │ │ │ │ ├── hand-rock.svg │ │ │ │ ├── hand-scissors.svg │ │ │ │ ├── hand-sparkles.svg │ │ │ │ ├── hand-spock.svg │ │ │ │ ├── hands-helping.svg │ │ │ │ ├── hands-wash.svg │ │ │ │ ├── hands.svg │ │ │ │ ├── handshake-alt-slash.svg │ │ │ │ ├── handshake-slash.svg │ │ │ │ ├── handshake.svg │ │ │ │ ├── hanukiah.svg │ │ │ │ ├── hard-hat.svg │ │ │ │ ├── hashtag.svg │ │ │ │ ├── hat-cowboy-side.svg │ │ │ │ ├── hat-cowboy.svg │ │ │ │ ├── hat-wizard.svg │ │ │ │ ├── hdd.svg │ │ │ │ ├── head-side-cough-slash.svg │ │ │ │ ├── head-side-cough.svg │ │ │ │ ├── head-side-mask.svg │ │ │ │ ├── head-side-virus.svg │ │ │ │ ├── heading.svg │ │ │ │ ├── headphones-alt.svg │ │ │ │ ├── headphones.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-user.svg │ │ │ │ ├── hospital.svg │ │ │ │ ├── hot-tub.svg │ │ │ │ ├── hotdog.svg │ │ │ │ ├── hotel.svg │ │ │ │ ├── hourglass-end.svg │ │ │ │ ├── hourglass-half.svg │ │ │ │ ├── hourglass-start.svg │ │ │ │ ├── hourglass.svg │ │ │ │ ├── house-damage.svg │ │ │ │ ├── house-user.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-house.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 │ │ │ │ ├── lungs-virus.svg │ │ │ │ ├── lungs.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-arrows.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-slash.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 │ │ │ │ ├── pump-medical.svg │ │ │ │ ├── pump-soap.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 │ │ │ │ ├── shield-virus.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 │ │ │ │ ├── sink.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 │ │ │ │ ├── soap.svg │ │ │ │ ├── socks.svg │ │ │ │ ├── solar-panel.svg │ │ │ │ ├── sort-alpha-down-alt.svg │ │ │ │ ├── sort-alpha-down.svg │ │ │ │ ├── sort-alpha-up-alt.svg │ │ │ │ ├── sort-alpha-up.svg │ │ │ │ ├── sort-amount-down-alt.svg │ │ │ │ ├── sort-amount-down.svg │ │ │ │ ├── sort-amount-up-alt.svg │ │ │ │ ├── sort-amount-up.svg │ │ │ │ ├── sort-down.svg │ │ │ │ ├── sort-numeric-down-alt.svg │ │ │ │ ├── sort-numeric-down.svg │ │ │ │ ├── sort-numeric-up-alt.svg │ │ │ │ ├── sort-numeric-up.svg │ │ │ │ ├── sort-up.svg │ │ │ │ ├── sort.svg │ │ │ │ ├── spa.svg │ │ │ │ ├── space-shuttle.svg │ │ │ │ ├── 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-20.svg │ │ │ │ ├── stopwatch.svg │ │ │ │ ├── store-alt-slash.svg │ │ │ │ ├── store-alt.svg │ │ │ │ ├── store-slash.svg │ │ │ │ ├── store.svg │ │ │ │ ├── stream.svg │ │ │ │ ├── street-view.svg │ │ │ │ ├── strikethrough.svg │ │ │ │ ├── stroopwafel.svg │ │ │ │ ├── subscript.svg │ │ │ │ ├── subway.svg │ │ │ │ ├── suitcase-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-slash.svg │ │ │ │ ├── toilet-paper.svg │ │ │ │ ├── toilet.svg │ │ │ │ ├── toolbox.svg │ │ │ │ ├── tools.svg │ │ │ │ ├── tooth.svg │ │ │ │ ├── torah.svg │ │ │ │ ├── torii-gate.svg │ │ │ │ ├── tractor.svg │ │ │ │ ├── trademark.svg │ │ │ │ ├── traffic-light.svg │ │ │ │ ├── trailer.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-slash.svg │ │ │ │ ├── users.svg │ │ │ │ ├── utensil-spoon.svg │ │ │ │ ├── utensils.svg │ │ │ │ ├── vector-square.svg │ │ │ │ ├── venus-double.svg │ │ │ │ ├── venus-mars.svg │ │ │ │ ├── venus.svg │ │ │ │ ├── vest-patches.svg │ │ │ │ ├── vest.svg │ │ │ │ ├── vial.svg │ │ │ │ ├── vials.svg │ │ │ │ ├── video-slash.svg │ │ │ │ ├── video.svg │ │ │ │ ├── vihara.svg │ │ │ │ ├── virus-slash.svg │ │ │ │ ├── virus.svg │ │ │ │ ├── viruses.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 │ │ ├── .babelrc.js │ │ ├── .browserslistrc │ │ ├── .bundlewatch.config.json │ │ ├── .editorconfig │ │ ├── .eslintignore │ │ ├── .eslintrc.json │ │ ├── .gitattributes │ │ ├── .github │ │ ├── CODEOWNERS │ │ ├── CONTRIBUTING.md │ │ ├── ISSUE_TEMPLATE │ │ │ ├── bug_report.md │ │ │ └── feature_request.md │ │ ├── SUPPORT.md │ │ └── workflows │ │ │ ├── browserstack.yml │ │ │ ├── bundlewatch.yml │ │ │ ├── codeql.yml │ │ │ ├── css.yml │ │ │ ├── dart-sass.yml │ │ │ ├── docs.yml │ │ │ ├── js.yml │ │ │ └── lint.yml │ │ ├── .gitignore │ │ ├── .stylelintignore │ │ ├── .stylelintrc │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── build │ │ ├── .eslintrc.json │ │ ├── banner.js │ │ ├── build-plugins.js │ │ ├── change-version.js │ │ ├── generate-sri.js │ │ ├── postcss.config.js │ │ ├── rollup.config.js │ │ ├── ship.sh │ │ ├── svgo.yml │ │ ├── vnu-jar.js │ │ └── zip-examples.js │ │ ├── composer.json │ │ ├── config.yml │ │ ├── dist │ │ ├── css │ │ │ ├── bootstrap-grid.css │ │ │ ├── bootstrap-grid.css.map │ │ │ ├── bootstrap-grid.min.css │ │ │ ├── bootstrap-grid.min.css.map │ │ │ ├── bootstrap-reboot.css │ │ │ ├── bootstrap-reboot.css.map │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.js.map │ │ │ ├── bootstrap.min.js │ │ │ └── bootstrap.min.js.map │ │ ├── js │ │ ├── dist │ │ │ ├── alert.js │ │ │ ├── alert.js.map │ │ │ ├── button.js │ │ │ ├── button.js.map │ │ │ ├── carousel.js │ │ │ ├── carousel.js.map │ │ │ ├── collapse.js │ │ │ ├── collapse.js.map │ │ │ ├── dropdown.js │ │ │ ├── dropdown.js.map │ │ │ ├── index.js │ │ │ ├── modal.js │ │ │ ├── modal.js.map │ │ │ ├── popover.js │ │ │ ├── popover.js.map │ │ │ ├── scrollspy.js │ │ │ ├── scrollspy.js.map │ │ │ ├── tab.js │ │ │ ├── tab.js.map │ │ │ ├── toast.js │ │ │ ├── toast.js.map │ │ │ ├── tooltip.js │ │ │ ├── tooltip.js.map │ │ │ ├── util.js │ │ │ └── util.js.map │ │ ├── index.js │ │ ├── src │ │ │ ├── alert.js │ │ │ ├── button.js │ │ │ ├── carousel.js │ │ │ ├── collapse.js │ │ │ ├── dropdown.js │ │ │ ├── modal.js │ │ │ ├── popover.js │ │ │ ├── scrollspy.js │ │ │ ├── tab.js │ │ │ ├── toast.js │ │ │ ├── tools │ │ │ │ └── sanitizer.js │ │ │ ├── tooltip.js │ │ │ └── util.js │ │ └── tests │ │ │ ├── README.md │ │ │ ├── browsers.js │ │ │ ├── index.html │ │ │ ├── integration │ │ │ ├── bundle.js │ │ │ ├── index.html │ │ │ └── rollup.bundle.js │ │ │ ├── karma.conf.js │ │ │ ├── unit │ │ │ ├── .eslintrc.json │ │ │ ├── alert.js │ │ │ ├── button.js │ │ │ ├── carousel.js │ │ │ ├── collapse.js │ │ │ ├── dropdown.js │ │ │ ├── modal.js │ │ │ ├── popover.js │ │ │ ├── scrollspy.js │ │ │ ├── tab.js │ │ │ ├── toast.js │ │ │ ├── tooltip.js │ │ │ └── util.js │ │ │ └── visual │ │ │ ├── alert.html │ │ │ ├── button.html │ │ │ ├── carousel.html │ │ │ ├── collapse.html │ │ │ ├── dropdown.html │ │ │ ├── modal.html │ │ │ ├── popover.html │ │ │ ├── scrollspy.html │ │ │ ├── tab.html │ │ │ ├── toast.html │ │ │ └── tooltip.html │ │ ├── nuget │ │ ├── MyGet.ps1 │ │ ├── bootstrap.nuspec │ │ ├── bootstrap.png │ │ └── bootstrap.sass.nuspec │ │ ├── package-lock.json │ │ ├── package.js │ │ ├── package.json │ │ ├── scss │ │ ├── _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 │ │ │ ├── _interactions.scss │ │ │ ├── _overflow.scss │ │ │ ├── _position.scss │ │ │ ├── _screenreaders.scss │ │ │ ├── _shadows.scss │ │ │ ├── _sizing.scss │ │ │ ├── _spacing.scss │ │ │ ├── _stretched-link.scss │ │ │ ├── _text.scss │ │ │ └── _visibility.scss │ │ └── vendor │ │ │ └── _rfs.scss │ │ └── site │ │ ├── .eslintrc.json │ │ ├── assets │ │ ├── js │ │ │ ├── application.js │ │ │ ├── ie-emulation-modes-warning.js │ │ │ ├── search.js │ │ │ └── vendor │ │ │ │ ├── anchor.min.js │ │ │ │ ├── bs-custom-file-input.min.js │ │ │ │ └── clipboard.min.js │ │ └── scss │ │ │ ├── _ads.scss │ │ │ ├── _algolia.scss │ │ │ ├── _anchor.scss │ │ │ ├── _brand.scss │ │ │ ├── _browser-bugs.scss │ │ │ ├── _buttons.scss │ │ │ ├── _callouts.scss │ │ │ ├── _clipboard-js.scss │ │ │ ├── _colors.scss │ │ │ ├── _component-examples.scss │ │ │ ├── _content.scss │ │ │ ├── _footer.scss │ │ │ ├── _masthead.scss │ │ │ ├── _nav.scss │ │ │ ├── _placeholder-img.scss │ │ │ ├── _sidebar.scss │ │ │ ├── _skippy.scss │ │ │ ├── _syntax.scss │ │ │ ├── _toc.scss │ │ │ ├── _variables.scss │ │ │ └── docs.scss │ │ ├── content │ │ └── docs │ │ │ ├── 4.6 │ │ │ ├── _index.html │ │ │ ├── about │ │ │ │ ├── brand.md │ │ │ │ ├── license.md │ │ │ │ ├── overview.md │ │ │ │ ├── team.md │ │ │ │ └── translations.md │ │ │ ├── browser-bugs.md │ │ │ ├── components │ │ │ │ ├── alerts.md │ │ │ │ ├── badge.md │ │ │ │ ├── breadcrumb.md │ │ │ │ ├── button-group.md │ │ │ │ ├── buttons.md │ │ │ │ ├── card.md │ │ │ │ ├── carousel.md │ │ │ │ ├── collapse.md │ │ │ │ ├── dropdowns.md │ │ │ │ ├── forms.md │ │ │ │ ├── input-group.md │ │ │ │ ├── jumbotron.md │ │ │ │ ├── list-group.md │ │ │ │ ├── media-object.md │ │ │ │ ├── modal.md │ │ │ │ ├── navbar.md │ │ │ │ ├── navs.md │ │ │ │ ├── pagination.md │ │ │ │ ├── popovers.md │ │ │ │ ├── progress.md │ │ │ │ ├── scrollspy.md │ │ │ │ ├── spinners.md │ │ │ │ ├── toasts.md │ │ │ │ └── tooltips.md │ │ │ ├── content │ │ │ │ ├── code.md │ │ │ │ ├── figures.md │ │ │ │ ├── images.md │ │ │ │ ├── reboot.md │ │ │ │ ├── tables.md │ │ │ │ └── typography.md │ │ │ ├── examples │ │ │ │ ├── .stylelintrc │ │ │ │ ├── _index.md │ │ │ │ ├── album │ │ │ │ │ ├── album.css │ │ │ │ │ └── index.html │ │ │ │ ├── blog │ │ │ │ │ ├── blog.css │ │ │ │ │ └── index.html │ │ │ │ ├── carousel │ │ │ │ │ ├── carousel.css │ │ │ │ │ └── index.html │ │ │ │ ├── checkout │ │ │ │ │ ├── form-validation.css │ │ │ │ │ ├── form-validation.js │ │ │ │ │ └── index.html │ │ │ │ ├── cover │ │ │ │ │ ├── cover.css │ │ │ │ │ └── index.html │ │ │ │ ├── dashboard │ │ │ │ │ ├── dashboard.css │ │ │ │ │ ├── dashboard.js │ │ │ │ │ └── index.html │ │ │ │ ├── floating-labels │ │ │ │ │ ├── floating-labels.css │ │ │ │ │ └── index.html │ │ │ │ ├── grid │ │ │ │ │ ├── grid.css │ │ │ │ │ └── index.html │ │ │ │ ├── jumbotron │ │ │ │ │ ├── index.html │ │ │ │ │ └── jumbotron.css │ │ │ │ ├── navbar-bottom │ │ │ │ │ └── index.html │ │ │ │ ├── navbar-fixed │ │ │ │ │ ├── index.html │ │ │ │ │ └── navbar-top-fixed.css │ │ │ │ ├── navbar-static │ │ │ │ │ ├── index.html │ │ │ │ │ └── navbar-top.css │ │ │ │ ├── navbars │ │ │ │ │ ├── index.html │ │ │ │ │ └── navbar.css │ │ │ │ ├── offcanvas │ │ │ │ │ ├── index.html │ │ │ │ │ ├── offcanvas.css │ │ │ │ │ └── offcanvas.js │ │ │ │ ├── pricing │ │ │ │ │ ├── index.html │ │ │ │ │ └── pricing.css │ │ │ │ ├── product │ │ │ │ │ ├── index.html │ │ │ │ │ └── product.css │ │ │ │ ├── sign-in │ │ │ │ │ ├── index.html │ │ │ │ │ └── signin.css │ │ │ │ ├── starter-template │ │ │ │ │ ├── index.html │ │ │ │ │ └── starter-template.css │ │ │ │ ├── sticky-footer-navbar │ │ │ │ │ ├── index.html │ │ │ │ │ └── sticky-footer-navbar.css │ │ │ │ └── sticky-footer │ │ │ │ │ ├── index.html │ │ │ │ │ └── sticky-footer.css │ │ │ ├── extend │ │ │ │ ├── approach.md │ │ │ │ └── icons.md │ │ │ ├── getting-started │ │ │ │ ├── accessibility.md │ │ │ │ ├── best-practices.md │ │ │ │ ├── browsers-devices.md │ │ │ │ ├── build-tools.md │ │ │ │ ├── contents.md │ │ │ │ ├── download.md │ │ │ │ ├── introduction.md │ │ │ │ ├── javascript.md │ │ │ │ ├── theming.md │ │ │ │ └── webpack.md │ │ │ ├── layout │ │ │ │ ├── grid.md │ │ │ │ ├── overview.md │ │ │ │ └── utilities-for-layout.md │ │ │ ├── migration.md │ │ │ └── utilities │ │ │ │ ├── borders.md │ │ │ │ ├── clearfix.md │ │ │ │ ├── close-icon.md │ │ │ │ ├── colors.md │ │ │ │ ├── display.md │ │ │ │ ├── embed.md │ │ │ │ ├── flex.md │ │ │ │ ├── float.md │ │ │ │ ├── image-replacement.md │ │ │ │ ├── interactions.md │ │ │ │ ├── overflow.md │ │ │ │ ├── position.md │ │ │ │ ├── screen-readers.md │ │ │ │ ├── shadows.md │ │ │ │ ├── sizing.md │ │ │ │ ├── spacing.md │ │ │ │ ├── stretched-link.md │ │ │ │ ├── text.md │ │ │ │ ├── vertical-align.md │ │ │ │ └── visibility.md │ │ │ ├── _index.html │ │ │ └── versions.md │ │ ├── data │ │ ├── breakpoints.yml │ │ ├── browser-bugs.yml │ │ ├── browser-features.yml │ │ ├── colors.yml │ │ ├── core-team.yml │ │ ├── docs-versions.yml │ │ ├── examples.yml │ │ ├── grays.yml │ │ ├── sidebar.yml │ │ ├── theme-colors.yml │ │ └── translations.yml │ │ ├── layouts │ │ ├── _default │ │ │ ├── docs.html │ │ │ ├── examples.html │ │ │ ├── home.html │ │ │ ├── redirect.html │ │ │ └── single.html │ │ ├── alias.html │ │ ├── partials │ │ │ ├── ads.html │ │ │ ├── analytics.html │ │ │ ├── bugify.html │ │ │ ├── callout-danger-async-methods.md │ │ │ ├── callout-info-mediaqueries-breakpoints.md │ │ │ ├── callout-info-npm-starter.md │ │ │ ├── callout-info-prefersreducedmotion.md │ │ │ ├── callout-warning-color-assistive-technologies.md │ │ │ ├── docs-navbar.html │ │ │ ├── docs-sidebar.html │ │ │ ├── favicons.html │ │ │ ├── footer.html │ │ │ ├── header.html │ │ │ ├── home │ │ │ │ ├── masthead-followup.html │ │ │ │ └── masthead.html │ │ │ ├── icons │ │ │ │ ├── bootstrap-stack.svg │ │ │ │ ├── bootstrap.svg │ │ │ │ ├── circle-square.svg │ │ │ │ ├── cloud-fill.svg │ │ │ │ ├── code.svg │ │ │ │ ├── droplet-fill.svg │ │ │ │ ├── github.svg │ │ │ │ ├── menu.svg │ │ │ │ ├── opencollective.svg │ │ │ │ ├── slack.svg │ │ │ │ └── twitter.svg │ │ │ ├── scripts.html │ │ │ ├── skippy.html │ │ │ ├── social.html │ │ │ └── stylesheet.html │ │ ├── robots.txt │ │ ├── shortcodes │ │ │ ├── callout.html │ │ │ ├── docsref.html │ │ │ ├── example.html │ │ │ ├── markdown.html │ │ │ ├── param.html │ │ │ ├── partial.html │ │ │ ├── placeholder.html │ │ │ └── year.html │ │ └── sitemap.xml │ │ └── static │ │ ├── CNAME │ │ ├── docs │ │ └── 4.6 │ │ │ └── assets │ │ │ ├── brand │ │ │ ├── bootstrap-outline.svg │ │ │ ├── bootstrap-punchout.svg │ │ │ ├── bootstrap-social-logo.png │ │ │ ├── bootstrap-social.png │ │ │ └── bootstrap-solid.svg │ │ │ ├── img │ │ │ ├── bootstrap-icons.png │ │ │ ├── bootstrap-icons@2x.png │ │ │ ├── bootstrap-themes-collage.png │ │ │ ├── bootstrap-themes-collage@2x.png │ │ │ ├── bootstrap-themes.png │ │ │ ├── bootstrap-themes@2x.png │ │ │ ├── examples │ │ │ │ ├── album.png │ │ │ │ ├── album@2x.png │ │ │ │ ├── blog.png │ │ │ │ ├── blog@2x.png │ │ │ │ ├── carousel.png │ │ │ │ ├── carousel@2x.png │ │ │ │ ├── checkout.png │ │ │ │ ├── checkout@2x.png │ │ │ │ ├── cover.png │ │ │ │ ├── cover@2x.png │ │ │ │ ├── dashboard.png │ │ │ │ ├── dashboard@2x.png │ │ │ │ ├── floating-labels.png │ │ │ │ ├── floating-labels@2x.png │ │ │ │ ├── grid.png │ │ │ │ ├── grid@2x.png │ │ │ │ ├── jumbotron.png │ │ │ │ ├── jumbotron@2x.png │ │ │ │ ├── navbar-bottom.png │ │ │ │ ├── navbar-bottom@2x.png │ │ │ │ ├── navbar-fixed.png │ │ │ │ ├── navbar-fixed@2x.png │ │ │ │ ├── navbar-static.png │ │ │ │ ├── navbar-static@2x.png │ │ │ │ ├── navbars.png │ │ │ │ ├── navbars@2x.png │ │ │ │ ├── offcanvas.png │ │ │ │ ├── offcanvas@2x.png │ │ │ │ ├── pricing.png │ │ │ │ ├── pricing@2x.png │ │ │ │ ├── product.png │ │ │ │ ├── product@2x.png │ │ │ │ ├── sign-in.png │ │ │ │ ├── sign-in@2x.png │ │ │ │ ├── starter-template.png │ │ │ │ ├── starter-template@2x.png │ │ │ │ ├── sticky-footer-navbar.png │ │ │ │ ├── sticky-footer-navbar@2x.png │ │ │ │ ├── sticky-footer.png │ │ │ │ └── sticky-footer@2x.png │ │ │ └── favicons │ │ │ │ ├── android-chrome-192x192.png │ │ │ │ ├── android-chrome-512x512.png │ │ │ │ ├── apple-touch-icon.png │ │ │ │ ├── browserconfig.xml │ │ │ │ ├── favicon-16x16.png │ │ │ │ ├── favicon-32x32.png │ │ │ │ ├── favicon.ico │ │ │ │ ├── manifest.json │ │ │ │ ├── mstile-144x144.png │ │ │ │ ├── mstile-150x150.png │ │ │ │ ├── mstile-310x150.png │ │ │ │ ├── mstile-310x310.png │ │ │ │ ├── mstile-70x70.png │ │ │ │ └── safari-pinned-tab.svg │ │ │ └── js │ │ │ └── vendor │ │ │ └── jquery.slim.min.js │ │ └── sw.js │ ├── config.toml │ ├── i18n │ ├── ar.toml │ ├── bg.toml │ ├── bn.toml │ ├── de.toml │ ├── en.toml │ ├── es.toml │ ├── et.toml │ ├── fa.toml │ ├── fr.toml │ ├── hu.toml │ ├── it.toml │ ├── ja.toml │ ├── ko.toml │ ├── nl.toml │ ├── no.toml │ ├── pl.toml │ ├── pt-br.toml │ ├── ru.toml │ ├── tr.toml │ ├── zh-cn.toml │ └── zh.toml │ ├── images │ ├── screenshot.png │ └── tn.png │ ├── layouts │ ├── 404.html │ ├── _default │ │ ├── baseof.html │ │ ├── content.html │ │ ├── list.html │ │ ├── list.rss.xml │ │ ├── search.html │ │ ├── single.html │ │ ├── taxonomy.html │ │ └── terms.html │ ├── blog │ │ ├── baseof.html │ │ ├── baseof.print.html │ │ ├── content.html │ │ ├── list.html │ │ ├── section.print.html │ │ └── single.html │ ├── community │ │ └── list.html │ ├── docs │ │ ├── baseof.html │ │ ├── baseof.print.html │ │ ├── list.html │ │ ├── list.print.html │ │ └── single.html │ ├── home.html │ ├── partials │ │ ├── breadcrumb.html │ │ ├── community_links.html │ │ ├── disqus-comment.html │ │ ├── favicons.html │ │ ├── featured-image.html │ │ ├── feedback.html │ │ ├── footer.html │ │ ├── head-css.html │ │ ├── head.html │ │ ├── hooks │ │ │ ├── body-end.html │ │ │ └── head-end.html │ │ ├── navbar-lang-selector.html │ │ ├── navbar-version-selector.html │ │ ├── navbar.html │ │ ├── outputformat.html │ │ ├── page-meta-lastmod.html │ │ ├── page-meta-links.html │ │ ├── pager.html │ │ ├── print │ │ │ ├── content-blog.html │ │ │ ├── content.html │ │ │ ├── page-heading.html │ │ │ ├── render.html │ │ │ ├── toc-li-blog.html │ │ │ └── toc-li.html │ │ ├── reading-time.html │ │ ├── scripts.html │ │ ├── search-input.html │ │ ├── section-index.html │ │ ├── sidebar-tree.html │ │ ├── sidebar.html │ │ ├── taxonomy_terms_article.html │ │ ├── taxonomy_terms_cloud.html │ │ ├── taxonomy_terms_clouds.html │ │ ├── toc.html │ │ └── version-banner.html │ ├── shortcodes │ │ ├── alert.html │ │ ├── blocks │ │ │ ├── cover.html │ │ │ ├── feature.html │ │ │ ├── lead.html │ │ │ ├── link-down.html │ │ │ └── section.html │ │ ├── card-code.html │ │ ├── card.html │ │ ├── cardpane.html │ │ ├── figure.html │ │ ├── iframe.html │ │ ├── imgproc.html │ │ ├── pageinfo.html │ │ ├── readfile.md │ │ ├── swaggerui.html │ │ ├── tab.html │ │ └── tabpane.html │ └── swagger │ │ ├── baseof.html │ │ ├── list.html │ │ └── single.html │ ├── netlify.toml │ ├── postcss.config.js │ ├── static │ ├── css │ │ ├── prism.css │ │ ├── shortcodes.css │ │ ├── shortcodes │ │ │ ├── cards-pane.css │ │ │ └── tabbed-pane.css │ │ └── swagger-ui.css │ ├── favicons │ │ ├── android-144x144.png │ │ ├── android-192x192.png │ │ ├── android-36x36.png │ │ ├── android-48x48.png │ │ ├── android-72x72.png │ │ ├── android-96x96.png │ │ ├── apple-touch-icon-180x180.png │ │ ├── favicon-1024.png │ │ ├── favicon-16x16.png │ │ ├── favicon-256.png │ │ ├── favicon-32x32.png │ │ ├── favicon.ico │ │ ├── pwa-192x192.png │ │ ├── pwa-512x512.png │ │ ├── tile150x150.png │ │ ├── tile310x150.png │ │ ├── tile310x310.png │ │ └── tile70x70.png │ ├── js │ │ ├── deflate.js │ │ ├── prism.js │ │ ├── swagger-ui-bundle.js │ │ ├── swagger-ui-standalone-preset.js │ │ └── tabpane-persist.js │ └── 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 │ ├── theme.toml │ └── userguide │ ├── .gitignore │ ├── .gitmodules │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── assets │ └── scss │ │ └── _variables_project.scss │ ├── config.toml │ ├── content │ └── en │ │ ├── _index.html │ │ ├── about │ │ ├── _index.md │ │ └── featured-background.jpg │ │ ├── community │ │ └── _index.md │ │ ├── docs │ │ ├── Adding content │ │ │ ├── Shortcodes │ │ │ │ ├── index.md │ │ │ │ └── spruce.jpg │ │ │ ├── _index.md │ │ │ ├── content.md │ │ │ ├── feedback.md │ │ │ ├── iconsimages.md │ │ │ ├── lookandfeel.md │ │ │ ├── navigation.md │ │ │ ├── print.md │ │ │ ├── repository-links.md │ │ │ ├── taxonomy.md │ │ │ └── versioning.md │ │ ├── Best practices │ │ │ ├── _index.md │ │ │ ├── organizing-content.md │ │ │ └── site-guidance.md │ │ ├── Contribution guidelines │ │ │ └── _index.md │ │ ├── Deployment │ │ │ └── _index.md │ │ ├── Examples │ │ │ └── _index.md │ │ ├── Getting started │ │ │ ├── _index.md │ │ │ └── quickstart-docker.md │ │ ├── Language │ │ │ └── _index.md │ │ ├── Updating │ │ │ └── _index.md │ │ └── _index.md │ │ ├── featured-background.jpg │ │ └── search.md │ ├── deploy.sh │ ├── layouts │ └── sitemap.xml │ ├── package-lock.json │ ├── package.json │ └── static │ ├── google6a6ae8b5b016a20d.html │ └── images │ ├── feedback.png │ ├── no.png │ ├── version-banner.png │ └── yes.png ├── examples ├── .gitignore ├── .pipe │ ├── analysis-template.yaml │ ├── event-watcher-helm.yaml │ ├── event-watcher-k8s.yaml │ └── event-watcher-using-regex.yaml ├── README.md ├── README.remote.md ├── cloudrun │ ├── analysis │ │ ├── app.pipecd.yaml │ │ └── service.yaml │ ├── canary │ │ ├── app.pipecd.yaml │ │ └── service.yaml │ ├── secret-management │ │ ├── app.pipecd.yaml │ │ └── service.yaml │ ├── simple │ │ ├── app.pipecd.yaml │ │ └── service.yaml │ └── wait-approval │ │ ├── app.pipecd.yaml │ │ └── service.yaml ├── deployment-chain │ ├── chain-simple-cloudrun │ │ ├── app.pipecd.yaml │ │ └── service.yaml │ ├── chain-simple-lambda │ │ ├── app.pipecd.yaml │ │ └── function.yaml │ └── simple │ │ ├── app.pipecd.yaml │ │ ├── deployment.yaml │ │ └── service.yaml ├── ecs │ ├── attachment │ │ ├── app.pipecd.yaml │ │ ├── config.yaml │ │ ├── servicedef.yaml │ │ └── taskdef.yaml │ ├── bluegreen │ │ ├── app.pipecd.yaml │ │ ├── servicedef.yaml │ │ └── taskdef.yaml │ ├── canary │ │ ├── app.pipecd.yaml │ │ ├── servicedef.yaml │ │ └── taskdef.yaml │ ├── secret-management │ │ ├── app.pipecd.yaml │ │ ├── servicedef.yaml │ │ └── taskdef.yaml │ ├── servicediscovery │ │ ├── canary │ │ │ ├── app.pipecd.yaml │ │ │ ├── servicedef.yaml │ │ │ └── taskdef.yaml │ │ └── simple │ │ │ ├── app.pipecd.yaml │ │ │ ├── servicedef.yaml │ │ │ └── taskdef.yaml │ ├── simple │ │ ├── app.pipecd.yaml │ │ ├── servicedef.yaml │ │ └── taskdef.yaml │ ├── standalone-task │ │ └── launch-type │ │ │ ├── ec2 │ │ │ └── network-mode │ │ │ │ ├── awsvpc │ │ │ │ ├── app.pipecd.yaml │ │ │ │ └── taskdef.yaml │ │ │ │ └── bridge │ │ │ │ ├── app.pipecd.yaml │ │ │ │ └── taskdef.yaml │ │ │ └── fargate │ │ │ ├── app.pipecd.yaml │ │ │ └── taskdef.yaml │ └── wait-approval │ │ └── app.pipecd.yaml ├── kubernetes │ ├── analysis-by-http │ │ ├── app.pipecd.yaml │ │ ├── deployment.yaml │ │ └── service.yaml │ ├── analysis-by-log │ │ ├── app.pipecd.yaml │ │ ├── deployment.yaml │ │ └── service.yaml │ ├── analysis-by-metrics │ │ ├── app.pipecd.yaml │ │ ├── deployment.yaml │ │ └── service.yaml │ ├── analysis-with-baseline │ │ ├── app.pipecd.yaml │ │ ├── deployment.yaml │ │ └── service.yaml │ ├── bluegreen │ │ ├── app.pipecd.yaml │ │ ├── deployment.yaml │ │ └── service.yaml │ ├── canary-by-config-change │ │ ├── app.pipecd.yaml │ │ ├── configmap.yaml │ │ ├── deployment.yaml │ │ └── service.yaml │ ├── canary-patch │ │ ├── app.pipecd.yaml │ │ ├── configmap.yaml │ │ ├── deployment.yaml │ │ └── service.yaml │ ├── canary │ │ ├── app.pipecd.yaml │ │ ├── deployment.yaml │ │ └── service.yaml │ ├── helm-local-chart │ │ ├── app.pipecd.yaml │ │ └── values.yaml │ ├── helm-remote-chart │ │ ├── app.pipecd.yaml │ │ └── values.yaml │ ├── helm-remote-git-chart │ │ ├── app.pipecd.yaml │ │ └── values.yaml │ ├── kustomize-local-base │ │ ├── app.pipecd.yaml │ │ └── kustomization.yaml │ ├── kustomize-remote-base │ │ ├── app.pipecd.yaml │ │ └── kustomization.yaml │ ├── mesh-istio-bluegreen │ │ ├── app.pipecd.yaml │ │ ├── deployment.yaml │ │ ├── destination-rule.yaml │ │ ├── gateway.yaml │ │ ├── service.yaml │ │ └── virtual-service.yaml │ ├── mesh-istio-canary │ │ ├── app.pipecd.yaml │ │ ├── deployment.yaml │ │ ├── destination-rule.yaml │ │ ├── gateway.yaml │ │ ├── service.yaml │ │ └── virtual-service.yaml │ ├── mesh-smi-bluegreen │ │ └── app.pipecd.yaml │ ├── mesh-smi-canary │ │ └── app.pipecd.yaml │ ├── multi-steps-canary │ │ ├── app.pipecd.yaml │ │ ├── deployment.yaml │ │ └── service.yaml │ ├── script-run │ │ ├── app.pipecd.yaml │ │ ├── deployment.yaml │ │ └── service.yaml │ ├── secret-management │ │ ├── app.pipecd.yaml │ │ ├── deployment.yaml │ │ └── secret.yaml │ ├── simple │ │ ├── app.pipecd.yaml │ │ ├── deployment.yaml │ │ └── service.yaml │ └── wait-approval │ │ ├── app.pipecd.yaml │ │ ├── deployment.yaml │ │ └── service.yaml ├── lambda │ ├── analysis │ │ ├── app.pipecd.yaml │ │ └── function.yaml │ ├── canary │ │ ├── app.pipecd.yaml │ │ └── function.yaml │ ├── custom-sync-sam │ │ ├── README.md │ │ └── app.pipecd.yaml │ ├── remote-git │ │ ├── app.pipecd.yaml │ │ └── function.yaml │ ├── secret-management │ │ ├── app.pipecd.yaml │ │ └── function.yaml │ ├── simple │ │ ├── app.pipecd.yaml │ │ └── function.yaml │ ├── wait-approval │ │ └── app.pipecd.yaml │ └── zip-packing-s3 │ │ ├── app.pipecd.yaml │ │ └── function.yaml ├── local-modules │ ├── helm-charts │ │ └── helloworld │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── deployment.yaml │ │ │ ├── ingress.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── tests │ │ │ │ └── test-connection.yaml │ │ │ └── values.yaml │ └── kustomize-bases │ │ └── helloworld │ │ ├── deployment.yaml │ │ ├── kustomization.yaml │ │ └── service.yaml └── terraform │ ├── autorollback │ ├── .credentials │ │ └── service-account.json │ ├── app.pipecd.yaml │ ├── main.tf │ └── terraform.tfvars │ ├── local-module │ ├── .credentials │ │ └── service-account.json │ └── app.pipecd.yaml │ ├── remote-module │ ├── .credentials │ │ └── service-account.json │ └── app.pipecd.yaml │ ├── secret-management │ ├── .credentials │ │ └── service-account.json │ ├── app.pipecd.yaml │ ├── main.tf │ └── terraform.tfvars │ ├── simple │ ├── .credentials │ │ └── service-account.json │ ├── app.pipecd.yaml │ ├── main.tf │ └── terraform.tfvars │ └── wait-approval │ ├── .credentials │ └── service-account.json │ ├── app.pipecd.yaml │ ├── main.tf │ └── terraform.tfvars ├── go.mod ├── go.sum ├── hack ├── boilerplate.go.txt ├── cherry-pick.sh ├── create-kind-cluster.sh ├── create-local-registry.sh ├── ensure-dco.sh ├── gen-release-docs.sh ├── gen-release.sh ├── oidc │ ├── README.md │ ├── docker-compose.yml │ ├── realm.json │ └── run-local-keycloak.sh └── update-copyright.sh ├── local ├── Dockerfile └── envoy-config.yaml ├── manifests ├── README.md ├── helloworld │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ └── service.yaml │ └── values.yaml ├── pipecd │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── grafana-dashboards │ │ ├── cluster │ │ │ ├── node.json │ │ │ ├── pod.json │ │ │ └── prometheus.json │ │ ├── control-plane │ │ │ ├── go.json │ │ │ ├── incoming-request.json │ │ │ └── overview.json │ │ └── piped │ │ │ ├── go.json │ │ │ ├── overview.json │ │ │ └── process.json │ ├── prom-rules │ │ └── alerting_rules.yml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── backend-config.yaml │ │ ├── configmap.yaml │ │ ├── deployment.yaml │ │ ├── envoy-configmap.yaml │ │ ├── ingress.yaml │ │ ├── managed-certificate.yaml │ │ ├── secret.yaml │ │ ├── service.yaml │ │ └── serviceaccount.yaml │ └── values.yaml ├── piped │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── configmap.yaml │ │ ├── deployment.yaml │ │ ├── rbac.yaml │ │ ├── secret.yaml │ │ ├── service.yaml │ │ └── volume.yaml │ └── values.yaml ├── pipedv1-exp │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── configmap.yaml │ │ ├── deployment.yaml │ │ ├── rbac.yaml │ │ ├── secret.yaml │ │ ├── service.yaml │ │ └── volume.yaml │ └── values.yaml └── site │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── backend-config.yaml │ ├── deployment.yaml │ ├── ingress.yaml │ ├── managed-certificate.yaml │ └── service.yaml │ └── values.yaml ├── pkg ├── admin │ ├── admin.go │ ├── admin_test.go │ └── doc.go ├── app │ ├── helloworld │ │ ├── api │ │ │ └── api.go │ │ ├── cmd │ │ │ ├── samplecli │ │ │ │ └── samplecli.go │ │ │ └── server │ │ │ │ └── server.go │ │ └── service │ │ │ ├── client.go │ │ │ ├── service.pb.go │ │ │ ├── service.pb.validate.go │ │ │ ├── service.proto │ │ │ └── service_grpc.pb.go │ ├── launcher │ │ └── cmd │ │ │ └── launcher │ │ │ └── launcher.go │ ├── ops │ │ ├── apikeylastusedtimeupdater │ │ │ └── apikeylastusedtimeupdater.go │ │ ├── deploymentchaincontroller │ │ │ ├── controller.go │ │ │ └── updater.go │ │ ├── firestoreindexensurer │ │ │ ├── README.md │ │ │ ├── gcloud.go │ │ │ ├── gcloud_test.go │ │ │ ├── indexensurer.go │ │ │ ├── indexensurer_test.go │ │ │ ├── indexes.go │ │ │ ├── indexes.json │ │ │ └── indexes_test.go │ │ ├── handler │ │ │ ├── handler.go │ │ │ ├── handler_test.go │ │ │ └── templates │ │ │ │ ├── AddProject │ │ │ │ ├── AddedProject │ │ │ │ ├── ApplicationCounts │ │ │ │ ├── ConfirmPasswordReset │ │ │ │ ├── ListProjects │ │ │ │ ├── ResetPassword │ │ │ │ └── Top │ │ ├── insightcollector │ │ │ ├── application_collector.go │ │ │ ├── collector.go │ │ │ └── deployment_collector.go │ │ ├── mysqlensurer │ │ │ ├── client.go │ │ │ └── sqlsensurer.go │ │ ├── orphancommandcleaner │ │ │ └── orphancommandcleaner.go │ │ ├── pipedstatsbuilder │ │ │ ├── builder.go │ │ │ ├── builder_test.go │ │ │ └── testdata │ │ │ │ ├── expected │ │ │ │ ├── piped_stat_1 │ │ │ │ └── piped_stat_2 │ │ ├── planpreviewoutputcleaner │ │ │ └── cleaner.go │ │ └── staledpipedstatcleaner │ │ │ └── cleaner.go │ ├── pipectl │ │ ├── client │ │ │ ├── application.go │ │ │ ├── client.go │ │ │ └── deployment.go │ │ └── cmd │ │ │ ├── application │ │ │ ├── add.go │ │ │ ├── application.go │ │ │ ├── delete.go │ │ │ ├── disable.go │ │ │ ├── get.go │ │ │ ├── list.go │ │ │ └── sync.go │ │ │ ├── deployment │ │ │ ├── deployment.go │ │ │ ├── list.go │ │ │ ├── logs.go │ │ │ └── waitstatus.go │ │ │ ├── encrypt │ │ │ └── encrypt.go │ │ │ ├── event │ │ │ ├── event.go │ │ │ └── register.go │ │ │ ├── migrate │ │ │ ├── application_config.go │ │ │ ├── application_config_test.go │ │ │ ├── database.go │ │ │ └── migrate.go │ │ │ ├── piped │ │ │ ├── disable.go │ │ │ ├── enable.go │ │ │ └── piped.go │ │ │ ├── planpreview │ │ │ ├── planpreview.go │ │ │ └── planpreview_test.go │ │ │ └── plugin │ │ │ ├── plugin.go │ │ │ ├── push.go │ │ │ └── push_test.go │ ├── piped │ │ ├── analysisprovider │ │ │ ├── http │ │ │ │ └── http.go │ │ │ ├── log │ │ │ │ ├── factory │ │ │ │ │ └── factory.go │ │ │ │ ├── provider.go │ │ │ │ └── stackdriver │ │ │ │ │ └── stackdriver.go │ │ │ └── metrics │ │ │ │ ├── datadog │ │ │ │ ├── datadog.go │ │ │ │ └── datadog_test.go │ │ │ │ ├── factory │ │ │ │ └── factory.go │ │ │ │ ├── prometheus │ │ │ │ ├── fake_client.go │ │ │ │ ├── prometheus.go │ │ │ │ └── prometheus_test.go │ │ │ │ └── provider.go │ │ ├── apistore │ │ │ ├── analysisresultstore │ │ │ │ └── store.go │ │ │ ├── applicationstore │ │ │ │ └── store.go │ │ │ ├── commandstore │ │ │ │ └── store.go │ │ │ ├── deploymentstore │ │ │ │ └── store.go │ │ │ └── eventstore │ │ │ │ └── store.go │ │ ├── appconfigreporter │ │ │ ├── appconfigreporter.go │ │ │ └── appconfigreporter_test.go │ │ ├── chartrepo │ │ │ └── chartrepo.go │ │ ├── cmd │ │ │ └── piped │ │ │ │ └── piped.go │ │ ├── controller │ │ │ ├── controller.go │ │ │ ├── controllermetrics │ │ │ │ └── metrics.go │ │ │ ├── planner.go │ │ │ ├── scheduler.go │ │ │ ├── skipstage.go │ │ │ ├── skipstage_test.go │ │ │ ├── tracing.go │ │ │ └── tracing_test.go │ │ ├── deploysource │ │ │ ├── deploysource.go │ │ │ └── sourcecloner.go │ │ ├── driftdetector │ │ │ ├── cloudrun │ │ │ │ └── detector.go │ │ │ ├── detector.go │ │ │ ├── ecs │ │ │ │ ├── detector.go │ │ │ │ └── detector_test.go │ │ │ ├── kubernetes │ │ │ │ └── detector.go │ │ │ ├── lambda │ │ │ │ ├── detector.go │ │ │ │ └── detector_test.go │ │ │ └── terraform │ │ │ │ └── detector.go │ │ ├── eventwatcher │ │ │ ├── eventwatcher.go │ │ │ ├── eventwatcher_test.go │ │ │ └── testdata │ │ │ │ ├── a.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── kustomization2.yaml │ │ │ │ ├── kustomization3.yaml │ │ │ │ └── with-template.yaml │ │ ├── executor │ │ │ ├── analysis │ │ │ │ ├── analysis.go │ │ │ │ ├── analyzer.go │ │ │ │ ├── mannwhitney │ │ │ │ │ ├── alg.go │ │ │ │ │ ├── dist.go │ │ │ │ │ ├── mannwhitney.go │ │ │ │ │ ├── mannwhitney_test.go │ │ │ │ │ ├── mathx.go │ │ │ │ │ ├── normaldist.go │ │ │ │ │ ├── udist.go │ │ │ │ │ ├── udist_test.go │ │ │ │ │ └── util_test.go │ │ │ │ ├── metrics_analyzer.go │ │ │ │ └── metrics_analyzer_test.go │ │ │ ├── cloudrun │ │ │ │ ├── cloudrun.go │ │ │ │ ├── cloudrun_test.go │ │ │ │ ├── deploy.go │ │ │ │ └── rollback.go │ │ │ ├── customsync │ │ │ │ ├── customsync.go │ │ │ │ └── rollback.go │ │ │ ├── ecs │ │ │ │ ├── deploy.go │ │ │ │ ├── ecs.go │ │ │ │ ├── ecs_test.go │ │ │ │ └── rollback.go │ │ │ ├── executor.go │ │ │ ├── kubernetes │ │ │ │ ├── applier_group.go │ │ │ │ ├── applier_group_test.go │ │ │ │ ├── baseline.go │ │ │ │ ├── canary.go │ │ │ │ ├── canary_test.go │ │ │ │ ├── kubernetes.go │ │ │ │ ├── kubernetes_test.go │ │ │ │ ├── primary.go │ │ │ │ ├── primary_test.go │ │ │ │ ├── rollback.go │ │ │ │ ├── sync.go │ │ │ │ ├── sync_test.go │ │ │ │ ├── testdata │ │ │ │ │ ├── configmaps.yaml │ │ │ │ │ ├── deployments.yaml │ │ │ │ │ ├── generated-virtual-service-for-editable-routes.yaml │ │ │ │ │ ├── generated-virtual-service.yaml │ │ │ │ │ ├── no-config-deployments.yaml │ │ │ │ │ ├── patch_configmap.yaml │ │ │ │ │ ├── patch_configmap_field.yaml │ │ │ │ │ ├── patch_configmap_field_multi_ops.yaml │ │ │ │ │ ├── patch_configmap_multi_ops.yaml │ │ │ │ │ ├── secrets.yaml │ │ │ │ │ ├── services.yaml │ │ │ │ │ └── virtual-service.yaml │ │ │ │ ├── traffic.go │ │ │ │ └── traffic_test.go │ │ │ ├── lambda │ │ │ │ ├── deploy.go │ │ │ │ ├── lambda.go │ │ │ │ ├── lambda_test.go │ │ │ │ ├── rollback.go │ │ │ │ └── testdata │ │ │ │ │ └── raw │ │ │ │ │ ├── test-1 │ │ │ │ │ └── text.txt │ │ │ │ │ ├── test-2 │ │ │ │ │ └── .dotfile │ │ │ │ │ └── text.txt │ │ │ ├── registry │ │ │ │ └── registry.go │ │ │ ├── scriptrun │ │ │ │ ├── script_run_test.go │ │ │ │ └── scriptrun.go │ │ │ ├── stopsignal.go │ │ │ ├── terraform │ │ │ │ ├── deploy.go │ │ │ │ ├── rollback.go │ │ │ │ └── terraform.go │ │ │ ├── wait │ │ │ │ └── wait.go │ │ │ └── waitapproval │ │ │ │ ├── waitapproval.go │ │ │ │ └── waitapproval_test.go │ │ ├── livestatereporter │ │ │ ├── cloudrun │ │ │ │ └── report.go │ │ │ ├── ecs │ │ │ │ └── report.go │ │ │ ├── kubernetes │ │ │ │ └── reporter.go │ │ │ ├── lambda │ │ │ │ └── report.go │ │ │ └── reporter.go │ │ ├── livestatestore │ │ │ ├── cloudrun │ │ │ │ ├── cloudrun.go │ │ │ │ └── store.go │ │ │ ├── ecs │ │ │ │ ├── ecs.go │ │ │ │ └── store.go │ │ │ ├── kubernetes │ │ │ │ ├── appnodes.go │ │ │ │ ├── kubernetes.go │ │ │ │ ├── kubernetesmetrics │ │ │ │ │ └── metrics.go │ │ │ │ ├── reflector.go │ │ │ │ ├── reflector_test.go │ │ │ │ └── store.go │ │ │ ├── lambda │ │ │ │ ├── lambda.go │ │ │ │ ├── store.go │ │ │ │ └── store_test.go │ │ │ ├── livestatestore.go │ │ │ └── terraform │ │ │ │ └── store.go │ │ ├── logpersister │ │ │ ├── persister.go │ │ │ ├── persister_test.go │ │ │ └── stagelogpersister.go │ │ ├── metadatastore │ │ │ ├── store.go │ │ │ └── store_test.go │ │ ├── notifier │ │ │ ├── matcher.go │ │ │ ├── matcher_test.go │ │ │ ├── notifier.go │ │ │ ├── slack.go │ │ │ ├── slack_test.go │ │ │ └── webhook.go │ │ ├── planner │ │ │ ├── cloudrun │ │ │ │ ├── cloudrun.go │ │ │ │ └── pipeline.go │ │ │ ├── ecs │ │ │ │ ├── ecs.go │ │ │ │ ├── pipeline.go │ │ │ │ └── pipeline_test.go │ │ │ ├── kubernetes │ │ │ │ ├── kubernetes.go │ │ │ │ ├── kubernetes_test.go │ │ │ │ ├── pipeline.go │ │ │ │ ├── pipeline_test.go │ │ │ │ └── testdata │ │ │ │ │ ├── check_image_name_tag │ │ │ │ │ ├── new.yaml │ │ │ │ │ └── old.yaml │ │ │ │ │ ├── check_image_tag │ │ │ │ │ ├── new.yaml │ │ │ │ │ └── old.yaml │ │ │ │ │ ├── version_multi_containers.yaml │ │ │ │ │ ├── version_multi_workloads.yaml │ │ │ │ │ ├── version_multi_workloads_same_image.yaml │ │ │ │ │ ├── version_no_workload.yaml │ │ │ │ │ └── version_single_container.yaml │ │ │ ├── lambda │ │ │ │ ├── lambda.go │ │ │ │ └── pipeline.go │ │ │ ├── planner.go │ │ │ ├── predefined_stages.go │ │ │ ├── registry │ │ │ │ └── registry.go │ │ │ └── terraform │ │ │ │ ├── pipeline.go │ │ │ │ └── terraform.go │ │ ├── planpreview │ │ │ ├── builder.go │ │ │ ├── cloudrundiff.go │ │ │ ├── ecsdiff.go │ │ │ ├── handler.go │ │ │ ├── handler_test.go │ │ │ ├── kubernetesdiff.go │ │ │ ├── lambdadiff.go │ │ │ ├── planpreviewmetrics │ │ │ │ └── metrics.go │ │ │ └── terraformdiff.go │ │ ├── platformprovider │ │ │ ├── cloudrun │ │ │ │ ├── cache.go │ │ │ │ ├── client.go │ │ │ │ ├── client_test.go │ │ │ │ ├── cloudrun.go │ │ │ │ ├── cloudrun_test.go │ │ │ │ ├── diff.go │ │ │ │ ├── diff_test.go │ │ │ │ ├── revisionmanifest.go │ │ │ │ ├── revisionmanifest_test.go │ │ │ │ ├── servicemanifest.go │ │ │ │ ├── servicemanifest_test.go │ │ │ │ ├── state.go │ │ │ │ ├── state_test.go │ │ │ │ └── testdata │ │ │ │ │ ├── new_manifest.yaml │ │ │ │ │ └── old_manifest.yaml │ │ │ ├── ecs │ │ │ │ ├── cache.go │ │ │ │ ├── client.go │ │ │ │ ├── diff.go │ │ │ │ ├── diff_test.go │ │ │ │ ├── ecs.go │ │ │ │ ├── ecsmanifests.go │ │ │ │ ├── routing_traffic.go │ │ │ │ ├── routing_traffic_test.go │ │ │ │ ├── servce_test.go │ │ │ │ ├── service.go │ │ │ │ ├── state.go │ │ │ │ ├── state_test.go │ │ │ │ ├── target_groups.go │ │ │ │ ├── target_groups_test.go │ │ │ │ ├── task.go │ │ │ │ ├── task_set.go │ │ │ │ ├── task_set_test.go │ │ │ │ ├── task_test.go │ │ │ │ └── testdata │ │ │ │ │ ├── new_servicedef.yaml │ │ │ │ │ ├── new_taskdef.yaml │ │ │ │ │ ├── old_servicedef.yaml │ │ │ │ │ └── old_taskdef.yaml │ │ │ ├── kubernetes │ │ │ │ ├── applier.go │ │ │ │ ├── cache.go │ │ │ │ ├── deployment.go │ │ │ │ ├── deployment_test.go │ │ │ │ ├── diff.go │ │ │ │ ├── diff_test.go │ │ │ │ ├── diffutil.go │ │ │ │ ├── diffutil_test.go │ │ │ │ ├── hasher.go │ │ │ │ ├── hasher_test.go │ │ │ │ ├── helm.go │ │ │ │ ├── helm_test.go │ │ │ │ ├── kubectl.go │ │ │ │ ├── kubernetes.go │ │ │ │ ├── kubernetes_test.go │ │ │ │ ├── kubernetesmetrics │ │ │ │ │ └── metrics.go │ │ │ │ ├── kubernetestest │ │ │ │ │ └── kubernetes.mock.go │ │ │ │ ├── kustomize.go │ │ │ │ ├── kustomize_test.go │ │ │ │ ├── loader.go │ │ │ │ ├── loader_test.go │ │ │ │ ├── manifest.go │ │ │ │ ├── manifest_test.go │ │ │ │ ├── resource │ │ │ │ │ ├── deployment.go │ │ │ │ │ ├── pod.go │ │ │ │ │ └── statefulset.go │ │ │ │ ├── resourcekey.go │ │ │ │ ├── state.go │ │ │ │ └── testdata │ │ │ │ │ ├── diff_by_command.yaml │ │ │ │ │ ├── diff_by_command_no_change.yaml │ │ │ │ │ ├── diff_ignore_missing_fields.yaml │ │ │ │ │ ├── diff_ignore_order.yaml │ │ │ │ │ ├── diff_multi_diffs.yaml │ │ │ │ │ ├── diff_no_diff.yaml │ │ │ │ │ ├── diff_redact.yaml │ │ │ │ │ ├── testchart │ │ │ │ │ ├── .helmignore │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ ├── hpa.yaml │ │ │ │ │ │ ├── ingress.yaml │ │ │ │ │ │ ├── service.yaml │ │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ │ └── tests │ │ │ │ │ │ │ └── test-connection.yaml │ │ │ │ │ └── values.yaml │ │ │ │ │ ├── testhelm │ │ │ │ │ ├── appconfdir │ │ │ │ │ │ ├── app.pipecd.yaml │ │ │ │ │ │ ├── dir │ │ │ │ │ │ │ └── values.yaml │ │ │ │ │ │ ├── invalid-symlink │ │ │ │ │ │ ├── valid-symlink │ │ │ │ │ │ └── values.yaml │ │ │ │ │ └── values.yaml │ │ │ │ │ ├── testkustomize-with-helm │ │ │ │ │ ├── .gitignore │ │ │ │ │ └── kustomization.yaml │ │ │ │ │ └── testkustomize │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ └── kustomization.yaml │ │ │ ├── lambda │ │ │ │ ├── cache.go │ │ │ │ ├── client.go │ │ │ │ ├── client_test.go │ │ │ │ ├── diff.go │ │ │ │ ├── diff_test.go │ │ │ │ ├── function.go │ │ │ │ ├── function_test.go │ │ │ │ ├── lambda.go │ │ │ │ ├── routing_traffic.go │ │ │ │ ├── state.go │ │ │ │ ├── state_test.go │ │ │ │ └── testdata │ │ │ │ │ ├── new_function.yaml │ │ │ │ │ └── old_function.yaml │ │ │ ├── platformprovider.go │ │ │ └── terraform │ │ │ │ ├── module.go │ │ │ │ ├── module_test.go │ │ │ │ ├── terraform.go │ │ │ │ ├── terraform_test.go │ │ │ │ └── testdata │ │ │ │ ├── multi_modules │ │ │ │ ├── helloworld │ │ │ │ │ └── main.tf │ │ │ │ └── main.tf │ │ │ │ ├── multi_modules_with_multi_files │ │ │ │ ├── helloworld │ │ │ │ │ └── main.tf │ │ │ │ ├── helloworld_01.tf │ │ │ │ └── helloworld_02.tf │ │ │ │ ├── single_module │ │ │ │ ├── helloworld │ │ │ │ │ └── main.tf │ │ │ │ └── main.tf │ │ │ │ └── single_module_optional │ │ │ │ ├── helloworld │ │ │ │ └── main.tf │ │ │ │ └── main.tf │ │ ├── sourceprocesser │ │ │ ├── attacher.go │ │ │ ├── attacher_test.go │ │ │ ├── decrypter.go │ │ │ ├── decrypter_test.go │ │ │ ├── sourceprocesser.go │ │ │ └── sourceprocesser_test.go │ │ ├── statsreporter │ │ │ ├── reporter.go │ │ │ └── testdata │ │ │ │ └── metrics.txt │ │ ├── toolregistry │ │ │ ├── install.go │ │ │ ├── registry.go │ │ │ ├── tool_darwin.go │ │ │ └── tool_linux.go │ │ └── trigger │ │ │ ├── cache.go │ │ │ ├── deployment.go │ │ │ ├── deployment_chain.go │ │ │ ├── determiner.go │ │ │ ├── determiner_test.go │ │ │ └── trigger.go │ ├── pipedv1 │ │ ├── apistore │ │ │ ├── applicationstore │ │ │ │ └── store.go │ │ │ ├── commandstore │ │ │ │ ├── store.go │ │ │ │ └── store_test.go │ │ │ ├── deploymentstore │ │ │ │ └── store.go │ │ │ └── eventstore │ │ │ │ └── store.go │ │ ├── appconfigreporter │ │ │ ├── appconfigreporter.go │ │ │ └── appconfigreporter_test.go │ │ ├── cmd │ │ │ └── piped │ │ │ │ ├── grpcapi │ │ │ │ ├── plugin_api.go │ │ │ │ ├── plugin_api_test.go │ │ │ │ ├── tool_registry.go │ │ │ │ └── tool_registry_test.go │ │ │ │ └── piped.go │ │ ├── controller │ │ │ ├── controller.go │ │ │ ├── controllermetrics │ │ │ │ └── metrics.go │ │ │ ├── planner.go │ │ │ ├── planner_test.go │ │ │ ├── scheduler.go │ │ │ ├── scheduler_test.go │ │ │ ├── skipstage.go │ │ │ ├── skipstage_test.go │ │ │ ├── stopsignal.go │ │ │ ├── stopsignal_test.go │ │ │ ├── tracing.go │ │ │ └── tracing_test.go │ │ ├── deploysource │ │ │ ├── deploysource.go │ │ │ └── sourcecloner.go │ │ ├── eventwatcher │ │ │ ├── eventwatcher.go │ │ │ ├── eventwatcher_test.go │ │ │ └── testdata │ │ │ │ ├── a.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── kustomization2.yaml │ │ │ │ ├── kustomization3.yaml │ │ │ │ └── with-template.yaml │ │ ├── livestatereporter │ │ │ ├── livestatereporter.go │ │ │ └── livestatereporter_test.go │ │ ├── livestatestore │ │ │ └── livestatestore.go │ │ ├── metadatastore │ │ │ ├── registry.go │ │ │ ├── registry_test.go │ │ │ ├── store.go │ │ │ └── store_test.go │ │ ├── notifier │ │ │ ├── matcher.go │ │ │ ├── matcher_test.go │ │ │ ├── notifier.go │ │ │ ├── slack.go │ │ │ ├── slack_test.go │ │ │ └── webhook.go │ │ ├── planpreview │ │ │ ├── builder.go │ │ │ ├── builder_test.go │ │ │ ├── handler.go │ │ │ ├── handler_test.go │ │ │ └── planpreviewmetrics │ │ │ │ └── metrics.go │ │ ├── plugin │ │ │ ├── analysis │ │ │ │ ├── analysisprovider │ │ │ │ │ ├── http │ │ │ │ │ │ └── http.go │ │ │ │ │ ├── log │ │ │ │ │ │ ├── factory │ │ │ │ │ │ │ └── factory.go │ │ │ │ │ │ ├── provider.go │ │ │ │ │ │ └── stackdriver │ │ │ │ │ │ │ └── stackdriver.go │ │ │ │ │ └── metrics │ │ │ │ │ │ ├── datadog │ │ │ │ │ │ ├── datadog.go │ │ │ │ │ │ └── datadog_test.go │ │ │ │ │ │ ├── factory │ │ │ │ │ │ └── factory.go │ │ │ │ │ │ ├── prometheus │ │ │ │ │ │ ├── fake_client.go │ │ │ │ │ │ ├── prometheus.go │ │ │ │ │ │ └── prometheus_test.go │ │ │ │ │ │ └── provider.go │ │ │ │ ├── analysisresultstore │ │ │ │ │ ├── analysisresult.go │ │ │ │ │ └── store.go │ │ │ │ ├── config │ │ │ │ │ ├── analysis_template.go │ │ │ │ │ ├── analysis_template_test.go │ │ │ │ │ ├── analysisprovider.go │ │ │ │ │ ├── application.go │ │ │ │ │ ├── condition.go │ │ │ │ │ ├── condition_test.go │ │ │ │ │ ├── piped.go │ │ │ │ │ ├── stage.go │ │ │ │ │ ├── stage_test.go │ │ │ │ │ └── testdata │ │ │ │ │ │ └── .pipe │ │ │ │ │ │ ├── analysis-template.yaml │ │ │ │ │ │ └── event-watcher.yaml │ │ │ │ ├── executestage │ │ │ │ │ ├── analysis.go │ │ │ │ │ ├── analysis_test.go │ │ │ │ │ ├── analyzer.go │ │ │ │ │ ├── mannwhitney │ │ │ │ │ │ ├── alg.go │ │ │ │ │ │ ├── dist.go │ │ │ │ │ │ ├── mannwhitney.go │ │ │ │ │ │ ├── mannwhitney_test.go │ │ │ │ │ │ ├── mathx.go │ │ │ │ │ │ ├── normaldist.go │ │ │ │ │ │ ├── udist.go │ │ │ │ │ │ ├── udist_test.go │ │ │ │ │ │ └── util_test.go │ │ │ │ │ ├── metrics_analyzer.go │ │ │ │ │ └── metrics_analyzer_test.go │ │ │ │ ├── go.mod │ │ │ │ ├── go.sum │ │ │ │ ├── main.go │ │ │ │ ├── plugin.go │ │ │ │ └── plugin_test.go │ │ │ ├── cloudrun │ │ │ │ ├── config │ │ │ │ │ └── application.go │ │ │ │ ├── deployment │ │ │ │ │ ├── plugin.go │ │ │ │ │ └── plugin_test.go │ │ │ │ ├── go.mod │ │ │ │ ├── go.sum │ │ │ │ ├── livestate │ │ │ │ │ └── plugin.go │ │ │ │ └── main.go │ │ │ ├── kubernetes │ │ │ │ ├── README.md │ │ │ │ ├── config │ │ │ │ │ ├── application.go │ │ │ │ │ ├── baseline.go │ │ │ │ │ ├── canary.go │ │ │ │ │ ├── deploy_target.go │ │ │ │ │ ├── helm.go │ │ │ │ │ ├── plugin.go │ │ │ │ │ ├── primary.go │ │ │ │ │ ├── sync.go │ │ │ │ │ ├── traffic.go │ │ │ │ │ └── traffic_test.go │ │ │ │ ├── deployment │ │ │ │ │ ├── annotate.go │ │ │ │ │ ├── annotate_test.go │ │ │ │ │ ├── apply.go │ │ │ │ │ ├── apply_test.go │ │ │ │ │ ├── baseline.go │ │ │ │ │ ├── baseline_test.go │ │ │ │ │ ├── canary.go │ │ │ │ │ ├── canary_test.go │ │ │ │ │ ├── determine.go │ │ │ │ │ ├── determine_test.go │ │ │ │ │ ├── misc.go │ │ │ │ │ ├── misc_test.go │ │ │ │ │ ├── pipeline.go │ │ │ │ │ ├── pipeline_test.go │ │ │ │ │ ├── plugin.go │ │ │ │ │ ├── plugin_test.go │ │ │ │ │ ├── primary.go │ │ │ │ │ ├── primary_test.go │ │ │ │ │ ├── rollback.go │ │ │ │ │ ├── rollback_test.go │ │ │ │ │ ├── sync.go │ │ │ │ │ ├── sync_test.go │ │ │ │ │ ├── testdata │ │ │ │ │ │ ├── baseline_clean_with_create_service │ │ │ │ │ │ │ ├── app.pipecd.yaml │ │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ │ └── service.yaml │ │ │ │ │ │ ├── baseline_clean_without_create_service │ │ │ │ │ │ │ ├── app.pipecd.yaml │ │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ │ └── service.yaml │ │ │ │ │ │ ├── baseline_rollout_with_create_service │ │ │ │ │ │ │ ├── app.pipecd.yaml │ │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ │ └── service.yaml │ │ │ │ │ │ ├── baseline_rollout_without_create_service │ │ │ │ │ │ │ ├── app.pipecd.yaml │ │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ │ └── service.yaml │ │ │ │ │ │ ├── canary_clean_with_create_service │ │ │ │ │ │ │ ├── app.pipecd.yaml │ │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ │ └── service.yaml │ │ │ │ │ │ ├── canary_clean_with_patch │ │ │ │ │ │ │ ├── app.pipecd.yaml │ │ │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ │ └── service.yaml │ │ │ │ │ │ ├── canary_clean_without_create_service │ │ │ │ │ │ │ ├── app.pipecd.yaml │ │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ │ └── service.yaml │ │ │ │ │ │ ├── canary_rollout_with_create_service │ │ │ │ │ │ │ ├── app.pipecd.yaml │ │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ │ └── service.yaml │ │ │ │ │ │ ├── canary_rollout_with_patch │ │ │ │ │ │ │ ├── app.pipecd.yaml │ │ │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ │ └── service.yaml │ │ │ │ │ │ ├── canary_rollout_without_create_service │ │ │ │ │ │ │ ├── app.pipecd.yaml │ │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ │ └── service.yaml │ │ │ │ │ │ ├── istio_crds │ │ │ │ │ │ │ ├── app.pipecd.yaml │ │ │ │ │ │ │ └── kustomization.yaml │ │ │ │ │ │ ├── patch_manifest │ │ │ │ │ │ │ ├── patch_configmap.yaml │ │ │ │ │ │ │ ├── patch_configmap_field.yaml │ │ │ │ │ │ │ ├── patch_configmap_field_multi_ops.yaml │ │ │ │ │ │ │ └── patch_configmap_multi_ops.yaml │ │ │ │ │ │ ├── primary_rollout │ │ │ │ │ │ │ ├── app.pipecd.yaml │ │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ │ └── service.yaml │ │ │ │ │ │ ├── primary_rollout_istio │ │ │ │ │ │ │ ├── app.pipecd.yaml │ │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ │ ├── service.yaml │ │ │ │ │ │ │ └── virtualservice.yaml │ │ │ │ │ │ ├── primary_rollout_prune │ │ │ │ │ │ │ ├── running │ │ │ │ │ │ │ │ ├── app.pipecd.yaml │ │ │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ │ │ └── service.yaml │ │ │ │ │ │ │ └── target │ │ │ │ │ │ │ │ ├── app.pipecd.yaml │ │ │ │ │ │ │ │ └── deployment.yaml │ │ │ │ │ │ ├── prune │ │ │ │ │ │ │ ├── running │ │ │ │ │ │ │ │ ├── app.pipecd.yaml │ │ │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ │ │ └── service.yaml │ │ │ │ │ │ │ └── target │ │ │ │ │ │ │ │ ├── app.pipecd.yaml │ │ │ │ │ │ │ │ └── deployment.yaml │ │ │ │ │ │ ├── prune_cluster_scoped_resource │ │ │ │ │ │ │ ├── prepare │ │ │ │ │ │ │ │ ├── app.pipecd.yaml │ │ │ │ │ │ │ │ └── crd.yaml │ │ │ │ │ │ │ ├── running │ │ │ │ │ │ │ │ ├── app.pipecd.yaml │ │ │ │ │ │ │ │ ├── crontab-2.yaml │ │ │ │ │ │ │ │ ├── crontab-v1beta1.yaml │ │ │ │ │ │ │ │ └── crontab.yaml │ │ │ │ │ │ │ └── target │ │ │ │ │ │ │ │ ├── app.pipecd.yaml │ │ │ │ │ │ │ │ └── crontab.yaml │ │ │ │ │ │ ├── prune_rollback │ │ │ │ │ │ │ ├── running │ │ │ │ │ │ │ │ ├── app.pipecd.yaml │ │ │ │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ │ │ └── service.yaml │ │ │ │ │ │ │ └── target │ │ │ │ │ │ │ │ ├── app.pipecd.yaml │ │ │ │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ │ │ └── service.yaml │ │ │ │ │ │ ├── prune_with_change_namespace │ │ │ │ │ │ │ ├── running │ │ │ │ │ │ │ │ ├── app.pipecd.yaml │ │ │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ │ │ └── service.yaml │ │ │ │ │ │ │ └── target │ │ │ │ │ │ │ │ ├── app.pipecd.yaml │ │ │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ │ │ └── service.yaml │ │ │ │ │ │ ├── simple │ │ │ │ │ │ │ ├── app.pipecd.yaml │ │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ │ └── service.yaml │ │ │ │ │ │ ├── simple_with_input_namespace │ │ │ │ │ │ │ ├── app.pipecd.yaml │ │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ │ └── service.yaml │ │ │ │ │ │ ├── traffic_routing_custom_variant │ │ │ │ │ │ │ ├── app.pipecd.yaml │ │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ │ └── service.yaml │ │ │ │ │ │ ├── traffic_routing_istio │ │ │ │ │ │ │ ├── app.pipecd.yaml │ │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ │ ├── service.yaml │ │ │ │ │ │ │ └── virtualservice.yaml │ │ │ │ │ │ ├── traffic_routing_istio_baseline │ │ │ │ │ │ │ ├── app.pipecd.yaml │ │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ │ ├── service.yaml │ │ │ │ │ │ │ └── virtualservice.yaml │ │ │ │ │ │ ├── traffic_routing_istio_editable_routes │ │ │ │ │ │ │ ├── app.pipecd.yaml │ │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ │ ├── service.yaml │ │ │ │ │ │ │ └── virtualservice.yaml │ │ │ │ │ │ ├── traffic_routing_istio_no_virtualservice │ │ │ │ │ │ │ ├── app.pipecd.yaml │ │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ │ └── service.yaml │ │ │ │ │ │ ├── traffic_routing_missing_variant │ │ │ │ │ │ │ ├── app.pipecd.yaml │ │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ │ └── service.yaml │ │ │ │ │ │ ├── traffic_routing_multiple_services │ │ │ │ │ │ │ ├── app.pipecd.yaml │ │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ │ └── services.yaml │ │ │ │ │ │ ├── traffic_routing_no_service │ │ │ │ │ │ │ ├── app.pipecd.yaml │ │ │ │ │ │ │ └── deployment.yaml │ │ │ │ │ │ ├── traffic_routing_pod_selector │ │ │ │ │ │ │ ├── app.pipecd.yaml │ │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ │ └── service.yaml │ │ │ │ │ │ ├── traffic_routing_wrong_variant │ │ │ │ │ │ │ ├── app.pipecd.yaml │ │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ │ └── service.yaml │ │ │ │ │ │ └── variant_workload_manifests │ │ │ │ │ │ │ ├── configmaps.yaml │ │ │ │ │ │ │ ├── deployments.yaml │ │ │ │ │ │ │ ├── no-config-deployments.yaml │ │ │ │ │ │ │ └── secrets.yaml │ │ │ │ │ ├── traffic.go │ │ │ │ │ ├── traffic_test.go │ │ │ │ │ └── yamlprocessor │ │ │ │ │ │ ├── yamlprocessor.go │ │ │ │ │ │ └── yamlprocessor_test.go │ │ │ │ ├── go.mod │ │ │ │ ├── go.sum │ │ │ │ ├── livestate │ │ │ │ │ ├── plugin.go │ │ │ │ │ ├── plugin_test.go │ │ │ │ │ └── store │ │ │ │ │ │ ├── reflector.go │ │ │ │ │ │ ├── reflector_test.go │ │ │ │ │ │ └── store.go │ │ │ │ ├── main.go │ │ │ │ ├── planpreview │ │ │ │ │ └── plugin.go │ │ │ │ ├── provider │ │ │ │ │ ├── applier.go │ │ │ │ │ ├── applier_test.go │ │ │ │ │ ├── deployment.go │ │ │ │ │ ├── deployment_test.go │ │ │ │ │ ├── diff.go │ │ │ │ │ ├── diff_test.go │ │ │ │ │ ├── diffutil.go │ │ │ │ │ ├── diffutil_test.go │ │ │ │ │ ├── hasher.go │ │ │ │ │ ├── hasher_test.go │ │ │ │ │ ├── health_status.go │ │ │ │ │ ├── health_status_test.go │ │ │ │ │ ├── helm.go │ │ │ │ │ ├── helm_test.go │ │ │ │ │ ├── kubectl.go │ │ │ │ │ ├── kubectl_test.go │ │ │ │ │ ├── kubernetes.go │ │ │ │ │ ├── kustomize.go │ │ │ │ │ ├── kustomize_test.go │ │ │ │ │ ├── liveresources.go │ │ │ │ │ ├── loader.go │ │ │ │ │ ├── loader_test.go │ │ │ │ │ ├── manifest.go │ │ │ │ │ ├── manifest_test.go │ │ │ │ │ ├── resource.go │ │ │ │ │ ├── resource_test.go │ │ │ │ │ └── testdata │ │ │ │ │ │ ├── testchart │ │ │ │ │ │ ├── .helmignore │ │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ │ ├── templates │ │ │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ │ ├── hpa.yaml │ │ │ │ │ │ │ ├── ingress.yaml │ │ │ │ │ │ │ ├── service.yaml │ │ │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ │ │ └── tests │ │ │ │ │ │ │ │ └── test-connection.yaml │ │ │ │ │ │ └── values.yaml │ │ │ │ │ │ ├── testhelm │ │ │ │ │ │ ├── appconfdir │ │ │ │ │ │ │ ├── app.pipecd.yaml │ │ │ │ │ │ │ ├── dir │ │ │ │ │ │ │ │ └── values.yaml │ │ │ │ │ │ │ ├── invalid-symlink │ │ │ │ │ │ │ ├── valid-symlink │ │ │ │ │ │ │ └── values.yaml │ │ │ │ │ │ └── values.yaml │ │ │ │ │ │ ├── testkustomize-with-helm │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ └── kustomization.yaml │ │ │ │ │ │ └── testkustomize │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ └── kustomization.yaml │ │ │ │ └── toolregistry │ │ │ │ │ ├── registry.go │ │ │ │ │ ├── registry_test.go │ │ │ │ │ └── scripts.go │ │ │ ├── kubernetes_multicluster │ │ │ │ ├── README.md │ │ │ │ ├── config │ │ │ │ │ ├── application.go │ │ │ │ │ ├── application_test.go │ │ │ │ │ └── helm.go │ │ │ │ ├── deployment │ │ │ │ │ ├── annotate.go │ │ │ │ │ ├── annotate_test.go │ │ │ │ │ ├── apply.go │ │ │ │ │ ├── apply_test.go │ │ │ │ │ ├── determine.go │ │ │ │ │ ├── determine_test.go │ │ │ │ │ ├── misc.go │ │ │ │ │ ├── misc_test.go │ │ │ │ │ ├── pipeline.go │ │ │ │ │ ├── pipeline_test.go │ │ │ │ │ ├── plugin.go │ │ │ │ │ ├── plugin_test.go │ │ │ │ │ ├── rollback.go │ │ │ │ │ ├── rollback_test.go │ │ │ │ │ ├── sync.go │ │ │ │ │ ├── sync_test.go │ │ │ │ │ └── testdata │ │ │ │ │ │ ├── add_deploy_target │ │ │ │ │ │ ├── running │ │ │ │ │ │ │ ├── app.pipecd.yaml │ │ │ │ │ │ │ └── cluster1 │ │ │ │ │ │ │ │ └── deployment.yaml │ │ │ │ │ │ └── target │ │ │ │ │ │ │ ├── app.pipecd.yaml │ │ │ │ │ │ │ ├── cluster1 │ │ │ │ │ │ │ └── deployment.yaml │ │ │ │ │ │ │ └── cluster2 │ │ │ │ │ │ │ └── deployment.yaml │ │ │ │ │ │ ├── failed_all_of_rollback │ │ │ │ │ │ └── running │ │ │ │ │ │ │ ├── app.pipecd.yaml │ │ │ │ │ │ │ ├── cluster1 │ │ │ │ │ │ │ └── deployment.yaml │ │ │ │ │ │ │ └── cluster2 │ │ │ │ │ │ │ └── deployment.yaml │ │ │ │ │ │ ├── multicluster_failed_one_of_the_sync │ │ │ │ │ │ └── target │ │ │ │ │ │ │ ├── app.pipecd.yaml │ │ │ │ │ │ │ ├── cluster1 │ │ │ │ │ │ │ └── deployment.yaml │ │ │ │ │ │ │ └── cluster2 │ │ │ │ │ │ │ └── deployment.yaml │ │ │ │ │ │ ├── multicluster_template_none │ │ │ │ │ │ └── target │ │ │ │ │ │ │ ├── app.pipecd.yaml │ │ │ │ │ │ │ ├── cluster1 │ │ │ │ │ │ │ └── deployment.yaml │ │ │ │ │ │ │ └── cluster2 │ │ │ │ │ │ │ └── deployment.yaml │ │ │ │ │ │ ├── prune │ │ │ │ │ │ ├── running │ │ │ │ │ │ │ ├── app.pipecd.yaml │ │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ │ └── service.yaml │ │ │ │ │ │ └── target │ │ │ │ │ │ │ ├── app.pipecd.yaml │ │ │ │ │ │ │ └── deployment.yaml │ │ │ │ │ │ ├── prune_cluster_scoped_resource │ │ │ │ │ │ ├── prepare │ │ │ │ │ │ │ ├── app.pipecd.yaml │ │ │ │ │ │ │ └── crd.yaml │ │ │ │ │ │ ├── running │ │ │ │ │ │ │ ├── app.pipecd.yaml │ │ │ │ │ │ │ ├── crontab-2.yaml │ │ │ │ │ │ │ ├── crontab-v1beta1.yaml │ │ │ │ │ │ │ └── crontab.yaml │ │ │ │ │ │ └── target │ │ │ │ │ │ │ ├── app.pipecd.yaml │ │ │ │ │ │ │ └── crontab.yaml │ │ │ │ │ │ ├── prune_with_change_namespace │ │ │ │ │ │ ├── running │ │ │ │ │ │ │ ├── app.pipecd.yaml │ │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ │ └── service.yaml │ │ │ │ │ │ └── target │ │ │ │ │ │ │ ├── app.pipecd.yaml │ │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ │ └── service.yaml │ │ │ │ │ │ ├── remove_deploy_target │ │ │ │ │ │ ├── running │ │ │ │ │ │ │ ├── app.pipecd.yaml │ │ │ │ │ │ │ ├── cluster1 │ │ │ │ │ │ │ │ └── deployment.yaml │ │ │ │ │ │ │ └── cluster2 │ │ │ │ │ │ │ │ └── deployment.yaml │ │ │ │ │ │ └── target │ │ │ │ │ │ │ ├── app.pipecd.yaml │ │ │ │ │ │ │ └── cluster1 │ │ │ │ │ │ │ └── deployment.yaml │ │ │ │ │ │ ├── simple │ │ │ │ │ │ ├── app.pipecd.yaml │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ └── service.yaml │ │ │ │ │ │ ├── simple_with_input_namespace │ │ │ │ │ │ ├── app.pipecd.yaml │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ └── service.yaml │ │ │ │ │ │ └── succes_one_of_rollback │ │ │ │ │ │ └── running │ │ │ │ │ │ ├── app.pipecd.yaml │ │ │ │ │ │ ├── cluster1 │ │ │ │ │ │ └── deployment.yaml │ │ │ │ │ │ └── cluster2 │ │ │ │ │ │ └── deployment.yaml │ │ │ │ ├── docs │ │ │ │ │ └── static │ │ │ │ │ │ └── adding-application.png │ │ │ │ ├── example │ │ │ │ │ ├── multi-sources-template-none │ │ │ │ │ │ ├── app.pipecd.yaml │ │ │ │ │ │ ├── cluster1 │ │ │ │ │ │ │ └── deployment.yaml │ │ │ │ │ │ └── cluster2 │ │ │ │ │ │ │ └── deployment.yaml │ │ │ │ │ └── simple │ │ │ │ │ │ ├── app.pipecd.yaml │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ └── service.yaml │ │ │ │ ├── go.mod │ │ │ │ ├── go.sum │ │ │ │ ├── livestate │ │ │ │ │ ├── plugin.go │ │ │ │ │ └── plugin_test.go │ │ │ │ ├── main.go │ │ │ │ ├── provider │ │ │ │ │ ├── applier.go │ │ │ │ │ ├── applier_test.go │ │ │ │ │ ├── deployment.go │ │ │ │ │ ├── deployment_test.go │ │ │ │ │ ├── diff.go │ │ │ │ │ ├── diff_test.go │ │ │ │ │ ├── diffutil.go │ │ │ │ │ ├── diffutil_test.go │ │ │ │ │ ├── hasher.go │ │ │ │ │ ├── hasher_test.go │ │ │ │ │ ├── health_status.go │ │ │ │ │ ├── health_status_test.go │ │ │ │ │ ├── helm.go │ │ │ │ │ ├── helm_test.go │ │ │ │ │ ├── kubectl.go │ │ │ │ │ ├── kubectl_test.go │ │ │ │ │ ├── kubernetes.go │ │ │ │ │ ├── kustomize.go │ │ │ │ │ ├── kustomize_test.go │ │ │ │ │ ├── liveresources.go │ │ │ │ │ ├── loader.go │ │ │ │ │ ├── loader_test.go │ │ │ │ │ ├── manifest.go │ │ │ │ │ ├── manifest_test.go │ │ │ │ │ ├── resource.go │ │ │ │ │ ├── resource_test.go │ │ │ │ │ └── testdata │ │ │ │ │ │ ├── testchart │ │ │ │ │ │ ├── .helmignore │ │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ │ ├── templates │ │ │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ │ ├── hpa.yaml │ │ │ │ │ │ │ ├── ingress.yaml │ │ │ │ │ │ │ ├── service.yaml │ │ │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ │ │ └── tests │ │ │ │ │ │ │ │ └── test-connection.yaml │ │ │ │ │ │ └── values.yaml │ │ │ │ │ │ ├── testhelm │ │ │ │ │ │ ├── appconfdir │ │ │ │ │ │ │ ├── app.pipecd.yaml │ │ │ │ │ │ │ ├── dir │ │ │ │ │ │ │ │ └── values.yaml │ │ │ │ │ │ │ ├── invalid-symlink │ │ │ │ │ │ │ ├── valid-symlink │ │ │ │ │ │ │ └── values.yaml │ │ │ │ │ │ └── values.yaml │ │ │ │ │ │ ├── testkustomize-with-helm │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ └── kustomization.yaml │ │ │ │ │ │ └── testkustomize │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ └── kustomization.yaml │ │ │ │ └── toolregistry │ │ │ │ │ ├── registry.go │ │ │ │ │ ├── registry_test.go │ │ │ │ │ └── scripts.go │ │ │ ├── registry.go │ │ │ ├── registry_test.go │ │ │ ├── scriptrun │ │ │ │ ├── go.mod │ │ │ │ ├── go.sum │ │ │ │ ├── main.go │ │ │ │ ├── options.go │ │ │ │ ├── options_test.go │ │ │ │ ├── plugin.go │ │ │ │ └── plugin_test.go │ │ │ ├── terraform │ │ │ │ ├── config │ │ │ │ │ └── config.go │ │ │ │ ├── deployment │ │ │ │ │ ├── apply.go │ │ │ │ │ ├── plan.go │ │ │ │ │ ├── plugin.go │ │ │ │ │ ├── plugin_test.go │ │ │ │ │ ├── rollback.go │ │ │ │ │ └── testdata │ │ │ │ │ │ ├── versions_no_modules │ │ │ │ │ │ └── main.tf │ │ │ │ │ │ └── versions_success │ │ │ │ │ │ ├── helloworld │ │ │ │ │ │ └── main.tf │ │ │ │ │ │ ├── helloworld_01.tf │ │ │ │ │ │ └── helloworld_02.tf │ │ │ │ ├── go.mod │ │ │ │ ├── go.sum │ │ │ │ ├── livestate │ │ │ │ │ ├── plugin.go │ │ │ │ │ └── plugin_test.go │ │ │ │ ├── main.go │ │ │ │ ├── planpreview │ │ │ │ │ ├── plugin.go │ │ │ │ │ └── plugin_test.go │ │ │ │ ├── provider │ │ │ │ │ ├── initialize.go │ │ │ │ │ ├── initialize_test.go │ │ │ │ │ ├── module.go │ │ │ │ │ ├── module_test.go │ │ │ │ │ ├── terraform.go │ │ │ │ │ ├── terraform_test.go │ │ │ │ │ └── testdata │ │ │ │ │ │ ├── multi_modules │ │ │ │ │ │ ├── helloworld │ │ │ │ │ │ │ └── main.tf │ │ │ │ │ │ └── main.tf │ │ │ │ │ │ ├── multi_modules_with_multi_files │ │ │ │ │ │ ├── helloworld │ │ │ │ │ │ │ └── main.tf │ │ │ │ │ │ ├── helloworld_01.tf │ │ │ │ │ │ └── helloworld_02.tf │ │ │ │ │ │ ├── single_module │ │ │ │ │ │ ├── helloworld │ │ │ │ │ │ │ └── main.tf │ │ │ │ │ │ └── main.tf │ │ │ │ │ │ └── single_module_optional │ │ │ │ │ │ ├── helloworld │ │ │ │ │ │ └── main.tf │ │ │ │ │ │ └── main.tf │ │ │ │ └── toolregistry │ │ │ │ │ ├── registry.go │ │ │ │ │ ├── registry_test.go │ │ │ │ │ └── script.go │ │ │ ├── wait │ │ │ │ ├── README.md │ │ │ │ ├── go.mod │ │ │ │ ├── go.sum │ │ │ │ ├── main.go │ │ │ │ ├── options.go │ │ │ │ ├── options_test.go │ │ │ │ ├── plugin.go │ │ │ │ ├── wait.go │ │ │ │ └── wait_test.go │ │ │ └── waitapproval │ │ │ │ ├── go.mod │ │ │ │ ├── go.sum │ │ │ │ ├── main.go │ │ │ │ ├── options.go │ │ │ │ ├── options_test.go │ │ │ │ ├── plugin.go │ │ │ │ ├── plugin_test.go │ │ │ │ ├── waitapproval.go │ │ │ │ └── waitapproval_test.go │ │ ├── sourceprocesser │ │ │ ├── attacher.go │ │ │ ├── attacher_test.go │ │ │ ├── decrypter.go │ │ │ ├── decrypter_test.go │ │ │ ├── sourceprocesser.go │ │ │ └── sourceprocesser_test.go │ │ ├── statsreporter │ │ │ ├── reporter.go │ │ │ └── testdata │ │ │ │ └── metrics.txt │ │ └── trigger │ │ │ ├── cache.go │ │ │ ├── deployment.go │ │ │ ├── deployment_chain.go │ │ │ ├── determiner.go │ │ │ ├── determiner_test.go │ │ │ └── trigger.go │ └── server │ │ ├── analysisresultstore │ │ ├── filestore.go │ │ ├── filestore_test.go │ │ ├── store.go │ │ └── store_test.go │ │ ├── apikeyverifier │ │ ├── verifier.go │ │ └── verifier_test.go │ │ ├── applicationlivestatestore │ │ ├── cache.go │ │ ├── cache_test.go │ │ ├── filestore.go │ │ ├── filestore_test.go │ │ ├── store.go │ │ └── store_test.go │ │ ├── applicationsharedobjectstore │ │ ├── store.go │ │ └── store_test.go │ │ ├── commandoutputstore │ │ ├── store.go │ │ └── store_test.go │ │ ├── commandstore │ │ ├── cache.go │ │ └── store.go │ │ ├── grpcapi │ │ ├── api.go │ │ ├── api_test.go │ │ ├── envoy_ext_authz_api.go │ │ ├── grpcapi.go │ │ ├── grpcapi_test.go │ │ ├── grpcapimetrics │ │ │ └── metrics.go │ │ ├── piped_api.go │ │ ├── piped_api_test.go │ │ ├── web_api.go │ │ └── web_api_test.go │ │ ├── httpapi │ │ ├── auth_handler.go │ │ ├── auth_handler_test.go │ │ ├── callback.go │ │ ├── callback_test.go │ │ ├── httpapi.go │ │ ├── httpapimetrics │ │ │ ├── delegator.go │ │ │ ├── handler.go │ │ │ └── handler_test.go │ │ ├── login.go │ │ └── login_test.go │ │ ├── pipedverifier │ │ ├── verifier.go │ │ └── verifier_test.go │ │ ├── service │ │ ├── apiservice │ │ │ ├── client.go │ │ │ ├── service.pb.go │ │ │ ├── service.pb.validate.go │ │ │ ├── service.proto │ │ │ └── service_grpc.pb.go │ │ ├── pipedservice │ │ │ ├── client.go │ │ │ ├── service.go │ │ │ ├── service.pb.go │ │ │ ├── service.pb.validate.go │ │ │ ├── service.proto │ │ │ └── service_grpc.pb.go │ │ └── webservice │ │ │ ├── client.go │ │ │ ├── service.pb.auth.go │ │ │ ├── service.pb.go │ │ │ ├── service.pb.validate.go │ │ │ ├── service.proto │ │ │ └── service_grpc.pb.go │ │ ├── stagelogstore │ │ ├── cache.go │ │ ├── cache_test.go │ │ ├── filestore.go │ │ ├── filestore_test.go │ │ ├── store.go │ │ └── store_test.go │ │ └── unregisteredappstore │ │ └── store.go ├── backoff │ ├── backoff.go │ ├── backoff_test.go │ ├── constant.go │ ├── constant_test.go │ ├── exponential.go │ └── exponential_test.go ├── cache │ ├── cache.go │ ├── cache_test.go │ ├── cachemetrics │ │ └── metrics.go │ ├── cachetest │ │ └── cache.mock.go │ ├── memorycache │ │ ├── cache.go │ │ ├── lru_cache.go │ │ ├── ttl_cache.go │ │ └── ttl_cache_test.go │ └── rediscache │ │ ├── cache.go │ │ └── hashcache.go ├── cli │ ├── app.go │ ├── cmd.go │ └── cmd_test.go ├── config │ ├── analysis.go │ ├── analysis_template.go │ ├── analysis_template_test.go │ ├── analysis_test.go │ ├── application.go │ ├── application_cloudrun.go │ ├── application_cloudrun_test.go │ ├── application_ecs.go │ ├── application_ecs_test.go │ ├── application_kubernetes.go │ ├── application_kubernetes_test.go │ ├── application_lambda.go │ ├── application_lambda_test.go │ ├── application_terraform.go │ ├── application_terraform_test.go │ ├── application_test.go │ ├── config.go │ ├── config_test.go │ ├── control_plane.go │ ├── control_plane_test.go │ ├── duration.go │ ├── event_watcher.go │ ├── event_watcher_test.go │ ├── feature_flag.go │ ├── launcher.go │ ├── percentage.go │ ├── percentage_test.go │ ├── piped.go │ ├── piped_test.go │ ├── replicas.go │ ├── replicas_test.go │ └── testdata │ │ ├── .pipe │ │ ├── README.md │ │ ├── analysis-template.yaml │ │ └── event-watcher.yaml │ │ ├── application │ │ ├── cloudrun-app-bluegreen.yaml │ │ ├── cloudrun-app-canary.yaml │ │ ├── cloudrun-app.yaml │ │ ├── custom-sync-without-run.yaml │ │ ├── custom-sync.yaml │ │ ├── ecs-app-invalid-access-type.yaml │ │ ├── ecs-app-service-discovery.yaml │ │ ├── ecs-app.yaml │ │ ├── generic-analysis.yaml │ │ ├── generic-postsync.yaml │ │ ├── generic-trigger.yaml │ │ ├── k8s-app-bluegreen-with-analysis.yaml │ │ ├── k8s-app-bluegreen.yaml │ │ ├── k8s-app-canary.yaml │ │ ├── k8s-app-envoy-bluegreen.yaml │ │ ├── k8s-app-envoy-canary.yaml │ │ ├── k8s-app-helm.yaml │ │ ├── k8s-app-istio-bluegreen.yaml │ │ ├── k8s-app-istio-canary.yaml │ │ ├── k8s-app-kustomization.yaml │ │ ├── k8s-app-resource-route.yaml │ │ ├── k8s-app-use-pipeline-template.yaml │ │ ├── k8s-plain-yaml.yaml │ │ ├── lambda-app-bluegreen.yaml │ │ ├── lambda-app-canary.yaml │ │ ├── lambda-app.yaml │ │ ├── terraform-app-empty.yaml │ │ ├── terraform-app-secret-management.yaml │ │ ├── terraform-app-with-approval.yaml │ │ ├── terraform-app-with-exit.yaml │ │ ├── terraform-app.yaml │ │ ├── truebydefaultbool-false-explicitly.yaml │ │ ├── truebydefaultbool-not-specified.yaml │ │ └── truebydefaultbool-true-explicitly.yaml │ │ ├── control-plane │ │ └── control-plane-config.yaml │ │ ├── piped │ │ ├── notification-receiver-webhook │ │ └── piped-config.yaml │ │ └── sealedsecret │ │ ├── invalid.yaml │ │ └── ok.yaml ├── configv1 │ ├── application.go │ ├── application_test.go │ ├── config.go │ ├── control_plane.go │ ├── control_plane_test.go │ ├── duration.go │ ├── event_watcher.go │ ├── event_watcher_test.go │ ├── feature_flag.go │ ├── launcher.go │ ├── percentage.go │ ├── percentage_test.go │ ├── piped.go │ ├── piped_test.go │ ├── replicas.go │ ├── replicas_test.go │ └── testdata │ │ ├── .pipe │ │ ├── README.md │ │ ├── analysis-template.yaml │ │ └── event-watcher.yaml │ │ ├── application │ │ ├── generic-analysis.yaml │ │ ├── generic-postsync.yaml │ │ ├── generic-trigger.yaml │ │ ├── invalid-kind.yaml │ │ ├── plugins-config.yaml │ │ ├── truebydefaultbool-false-explicitly.yaml │ │ ├── truebydefaultbool-not-specified.yaml │ │ └── truebydefaultbool-true-explicitly.yaml │ │ ├── control-plane │ │ └── control-plane-config.yaml │ │ ├── piped │ │ ├── notification-receiver-webhook │ │ └── piped-config.yaml │ │ └── sealedsecret │ │ ├── invalid.yaml │ │ └── ok.yaml ├── crypto │ ├── aes.go │ ├── aes_test.go │ ├── crypto.go │ ├── hybrid.go │ ├── hybrid_test.go │ ├── key.go │ ├── key_test.go │ ├── rsa.go │ ├── rsa_test.go │ └── testdata │ │ ├── key │ │ ├── private-rsa-pem │ │ ├── public-rsa-pem │ │ └── short-key ├── datastore │ ├── apikey.go │ ├── apikey_test.go │ ├── applicationstore.go │ ├── applicationstore_test.go │ ├── commandstore.go │ ├── commandstore_test.go │ ├── datastore.go │ ├── datastoretest │ │ └── datastore.mock.go │ ├── deploymentchainstore.go │ ├── deploymentchainstore_test.go │ ├── deploymentstore.go │ ├── deploymentstore_test.go │ ├── deploymenttracestore.go │ ├── eventstore.go │ ├── eventstore_test.go │ ├── firestore │ │ ├── firestore.go │ │ ├── firestore_test.go │ │ ├── iterator.go │ │ └── iterator_test.go │ ├── mock.go │ ├── mysql │ │ ├── ensurer │ │ │ ├── client.go │ │ │ ├── client_test.go │ │ │ ├── indexes.sql │ │ │ ├── schema.sql │ │ │ └── sqlsensurer.go │ │ ├── iterator.go │ │ ├── iterator_test.go │ │ ├── model_wrapper.go │ │ ├── mysql.go │ │ ├── mysql_test.go │ │ ├── query.go │ │ ├── query_test.go │ │ └── testdata │ │ │ ├── password │ │ │ └── username │ ├── pipedstore.go │ ├── pipedstore_test.go │ ├── projectstore.go │ └── projectstore_test.go ├── diff │ ├── diff.go │ ├── diff_test.go │ ├── renderer.go │ ├── renderer_test.go │ ├── result.go │ ├── result_test.go │ └── testdata │ │ ├── complex-node.yaml │ │ ├── has_diff.yaml │ │ ├── ignore_adding_map_keys.yaml │ │ └── no_diff.yaml ├── filematcher │ ├── filematcher.go │ └── filematcher_test.go ├── filestore │ ├── filestore.go │ ├── filestoretest │ │ └── filestore.mock.go │ ├── gcs │ │ └── gcs.go │ ├── minio │ │ └── minio.go │ └── s3 │ │ └── s3.go ├── git │ ├── client.go │ ├── client_test.go │ ├── commit.go │ ├── commit_test.go │ ├── gittest │ │ └── git.mock.go │ ├── repo.go │ ├── repo_test.go │ ├── ssh_config.go │ ├── ssh_config_test.go │ ├── testdata │ │ └── log.txt │ ├── url.go │ └── url_test.go ├── insight │ ├── application.go │ ├── deployment.go │ ├── insightmetrics │ │ └── metrics.go │ ├── insightstore │ │ ├── application_store.go │ │ ├── deployment_store.go │ │ ├── deployment_store_test.go │ │ ├── insightstore.go │ │ ├── milestonestore.go │ │ └── milestonestore_test.go │ ├── insighttest │ │ └── insight.mock.go │ ├── provider.go │ ├── provider_test.go │ └── store.go ├── jwt │ ├── jwt.go │ ├── jwttest │ │ └── jwt.mock.go │ ├── signer.go │ ├── signer_test.go │ ├── testdata │ │ ├── private.key │ │ └── public.key │ ├── verifier.go │ └── verifier_test.go ├── lifecycle │ ├── binary.go │ └── binary_test.go ├── log │ ├── log.go │ └── log_test.go ├── model │ ├── analysis_result.pb.go │ ├── analysis_result.pb.validate.go │ ├── analysis_result.proto │ ├── analysisprovider.go │ ├── apikey.go │ ├── apikey.pb.go │ ├── apikey.pb.validate.go │ ├── apikey.proto │ ├── apikey_test.go │ ├── application.go │ ├── application.pb.go │ ├── application.pb.validate.go │ ├── application.proto │ ├── application_live_state.go │ ├── application_live_state.pb.go │ ├── application_live_state.pb.validate.go │ ├── application_live_state.proto │ ├── application_live_state_test.go │ ├── application_test.go │ ├── command.go │ ├── command.pb.go │ ├── command.pb.validate.go │ ├── command.proto │ ├── common.go │ ├── common.pb.go │ ├── common.pb.validate.go │ ├── common.proto │ ├── common_test.go │ ├── datastore.go │ ├── deployment.go │ ├── deployment.pb.go │ ├── deployment.pb.validate.go │ ├── deployment.proto │ ├── deployment_chain.go │ ├── deployment_chain.pb.go │ ├── deployment_chain.pb.validate.go │ ├── deployment_chain.proto │ ├── deployment_chain_test.go │ ├── deployment_test.go │ ├── deployment_trace.go │ ├── deployment_trace.pb.go │ ├── deployment_trace.pb.validate.go │ ├── deployment_trace.proto │ ├── docs.go │ ├── event.go │ ├── event.pb.go │ ├── event.pb.validate.go │ ├── event.proto │ ├── event_test.go │ ├── filestore.go │ ├── insight.pb.go │ ├── insight.pb.validate.go │ ├── insight.proto │ ├── logblock.pb.go │ ├── logblock.pb.validate.go │ ├── logblock.proto │ ├── model.go │ ├── model_test.go │ ├── notificationevent.go │ ├── notificationevent.pb.go │ ├── notificationevent.pb.validate.go │ ├── notificationevent.proto │ ├── notificationevent_test.go │ ├── piped.go │ ├── piped.pb.go │ ├── piped.pb.validate.go │ ├── piped.proto │ ├── piped_stat.go │ ├── piped_stat.pb.go │ ├── piped_stat.pb.validate.go │ ├── piped_stat.proto │ ├── piped_test.go │ ├── planpreview.go │ ├── planpreview.pb.go │ ├── planpreview.pb.validate.go │ ├── planpreview.proto │ ├── platformprovider.go │ ├── project.go │ ├── project.pb.go │ ├── project.pb.validate.go │ ├── project.proto │ ├── project_test.go │ ├── rbac.pb.go │ ├── rbac.pb.validate.go │ ├── rbac.proto │ ├── role.pb.go │ ├── role.pb.validate.go │ ├── role.proto │ ├── stage.go │ ├── user.pb.go │ ├── user.pb.validate.go │ └── user.proto ├── oauth │ ├── github │ │ ├── github.go │ │ └── github_test.go │ └── oidc │ │ ├── oidc.go │ │ └── oidc_test.go ├── oci │ ├── main_test.go │ ├── options.go │ ├── pull.go │ ├── pull_test.go │ ├── push.go │ ├── push_test.go │ └── testdata │ │ └── auth │ │ └── htpasswd ├── plugin │ ├── api │ │ └── v1alpha1 │ │ │ ├── client.go │ │ │ ├── common │ │ │ ├── common.pb.go │ │ │ ├── common.pb.validate.go │ │ │ └── common.proto │ │ │ ├── deployment │ │ │ ├── api.pb.go │ │ │ ├── api.pb.validate.go │ │ │ ├── api.proto │ │ │ └── api_grpc.pb.go │ │ │ ├── livestate │ │ │ ├── api.pb.go │ │ │ ├── api.pb.validate.go │ │ │ ├── api.proto │ │ │ └── api_grpc.pb.go │ │ │ └── planpreview │ │ │ ├── api.pb.go │ │ │ ├── api.pb.validate.go │ │ │ ├── api.proto │ │ │ └── api_grpc.pb.go │ ├── pipedservice │ │ ├── service.pb.go │ │ ├── service.pb.validate.go │ │ ├── service.proto │ │ └── service_grpc.pb.go │ └── sdk │ │ ├── LICENSE │ │ ├── README.md │ │ ├── README.remote.md │ │ ├── client.go │ │ ├── deployment.go │ │ ├── deployment_source.go │ │ ├── deployment_source_test.go │ │ ├── deployment_test.go │ │ ├── diff │ │ ├── diff.go │ │ ├── diff_test.go │ │ ├── renderer.go │ │ ├── renderer_test.go │ │ ├── result.go │ │ ├── result_test.go │ │ └── testdata │ │ │ ├── complex-node.yaml │ │ │ ├── has_diff.yaml │ │ │ ├── ignore_adding_map_keys.yaml │ │ │ └── no_diff.yaml │ │ ├── go.mod │ │ ├── go.sum │ │ ├── livestate.go │ │ ├── livestate_test.go │ │ ├── logpersister │ │ ├── logpersistertest │ │ │ └── logpersister.go │ │ ├── persister.go │ │ ├── persister_test.go │ │ └── stagelogpersister.go │ │ ├── planpreview.go │ │ ├── planpreview_test.go │ │ ├── plugin.go │ │ ├── plugin_test.go │ │ ├── signalhandler │ │ └── handler.go │ │ ├── toolregistry │ │ ├── toolregistry.go │ │ └── toolregistrytest │ │ │ └── toolregistrytest.go │ │ └── unit │ │ ├── duration.go │ │ ├── duration_test.go │ │ ├── percentage.go │ │ ├── percentage_test.go │ │ ├── replicas.go │ │ └── replicas_test.go ├── redis │ ├── redis.go │ └── redistest │ │ └── redis.mock.go ├── regexpool │ ├── regexpool.go │ └── regexpool_test.go ├── rpc │ ├── chain_interceptor.go │ ├── chain_interceptor_test.go │ ├── grpc_test.go │ ├── log_interceptor.go │ ├── request_validation_interceptor.go │ ├── request_validation_interceptor_test.go │ ├── rpcauth │ │ ├── auth.go │ │ ├── auth_test.go │ │ ├── interceptor.go │ │ ├── interceptor_test.go │ │ └── wrapper.go │ ├── rpcclient │ │ ├── credentials.go │ │ ├── option.go │ │ ├── request_validation_interceptor.go │ │ └── request_validation_interceptor_test.go │ ├── server.go │ ├── server_test.go │ ├── signal_interceptor.go │ └── testdata │ │ ├── tls.config │ │ ├── tls.crt │ │ └── tls.key ├── version │ └── version.go └── yamlprocessor │ ├── yamlprocessor.go │ └── yamlprocessor_test.go ├── quickstart ├── README.md ├── control-plane-values.yaml └── manifests │ ├── control-plane.yaml │ ├── piped.yaml │ └── pipedv1-exp.yaml ├── test └── integration │ ├── datastore │ ├── firestore │ │ ├── firestore_test.go │ │ └── main_test.go │ └── mysql │ │ ├── apikey_test.go │ │ ├── application_test.go │ │ ├── command_test.go │ │ ├── deployment_test.go │ │ ├── deploymentchain_test.go │ │ ├── event_test.go │ │ ├── main_test.go │ │ ├── mysql_test.go │ │ ├── piped_test.go │ │ └── project_test.go │ └── filestore │ └── gcs │ └── gcs_test.go ├── tool ├── actions-gh-release │ ├── .gitattributes │ ├── .gitignore │ ├── Dockerfile │ ├── Makefile │ ├── comment.go │ ├── comment_test.go │ ├── filematcher.go │ ├── git.go │ ├── git_test.go │ ├── github.go │ ├── go.mod │ ├── go.sum │ ├── main.go │ ├── main_test.go │ ├── release.go │ ├── release_test.go │ └── testdata │ │ ├── empty-config.txt │ │ ├── has-category-release-note.txt │ │ ├── log.txt │ │ ├── multi-release-comment.txt │ │ ├── no-category-release-note.txt │ │ ├── no-release-comment.txt │ │ ├── one-release-comment.txt │ │ └── valid-config.txt ├── actions-plan-preview │ ├── .gitignore │ ├── Dockerfile │ ├── github.go │ ├── github_test.go │ ├── go.mod │ ├── go.sum │ ├── main.go │ ├── main_test.go │ ├── planpreview.go │ ├── planpreview_test.go │ └── testdata │ │ ├── comment-has-failed-app.txt │ │ ├── comment-has-failed-piped.txt │ │ ├── comment-has-no-diff-apps.txt │ │ ├── comment-no-changes-with-title.txt │ │ ├── comment-no-changes.txt │ │ ├── comment-no-env.txt │ │ ├── comment-only-changed-app.txt │ │ ├── comment-plugin-has-failed-app.txt │ │ ├── comment-plugin-one-failure-app-unknown-plugin.txt │ │ ├── comment-plugin-one-success-app-multiple-plugins.txt │ │ ├── comment-plugin-one-success-app.txt │ │ ├── issue-comment-payload.json │ │ ├── pull-request-payload.json │ │ └── push-event-payload.json ├── codegen │ ├── Dockerfile │ ├── codegen.sh │ └── protoc-gen-auth │ │ ├── file.go │ │ ├── go.mod │ │ ├── go.sum │ │ └── main.go ├── firestore-emulator │ └── Dockerfile ├── piped-base-okd │ ├── Dockerfile │ ├── README.md │ └── install-nss-wrapper.sh └── piped-base │ └── Dockerfile └── web ├── .editorconfig ├── .env.example ├── .eslintrc.js ├── .prettierrc ├── README.md ├── api_client ├── service_grpc_web_pb.d.ts ├── service_grpc_web_pb.js ├── service_pb.d.ts └── service_pb.js ├── assets ├── favicon.ico └── logo.svg ├── base.html ├── custom-jsdom.js ├── file-transformer.js ├── jest.after-env.ts ├── jest.config.js ├── jest.config.local.js ├── jest.setup.js ├── model ├── analysis_result_pb.d.ts ├── analysis_result_pb.js ├── apikey_pb.d.ts ├── apikey_pb.js ├── application_live_state_pb.d.ts ├── application_live_state_pb.js ├── application_pb.d.ts ├── application_pb.js ├── command_pb.d.ts ├── command_pb.js ├── common_pb.d.ts ├── common_pb.js ├── deployment_chain_pb.d.ts ├── deployment_chain_pb.js ├── deployment_pb.d.ts ├── deployment_pb.js ├── deployment_trace_pb.d.ts ├── deployment_trace_pb.js ├── event_pb.d.ts ├── event_pb.js ├── insight_pb.d.ts ├── insight_pb.js ├── logblock_pb.d.ts ├── logblock_pb.js ├── notificationevent_pb.d.ts ├── notificationevent_pb.js ├── piped_pb.d.ts ├── piped_pb.js ├── piped_stat_pb.d.ts ├── piped_stat_pb.js ├── planpreview_pb.d.ts ├── planpreview_pb.js ├── project_pb.d.ts ├── project_pb.js ├── rbac_pb.d.ts ├── rbac_pb.js ├── role_pb.d.ts ├── role_pb.js ├── user_pb.d.ts └── user_pb.js ├── package.json ├── public ├── README.md └── mockServiceWorker.js ├── src ├── __fixtures__ │ ├── common.ts │ ├── dummy-api-key.ts │ ├── dummy-application-counts.ts │ ├── dummy-application-live-state.ts │ ├── dummy-application.ts │ ├── dummy-command.ts │ ├── dummy-deployment-trace.ts │ ├── dummy-deployment.ts │ ├── dummy-insight.ts │ ├── dummy-me.ts │ ├── dummy-piped.ts │ ├── dummy-pipeline.ts │ ├── dummy-project.ts │ ├── dummy-repo.ts │ ├── dummy-stage-log.ts │ ├── dummy-trigger.ts │ └── utils.ts ├── api │ ├── api-keys.ts │ ├── applications.ts │ ├── client.ts │ ├── commands.ts │ ├── deploymentTraces.ts │ ├── deployments.ts │ ├── events.ts │ ├── insight.ts │ ├── me.test.ts │ ├── me.ts │ ├── piped.ts │ ├── project.ts │ └── stage-log.ts ├── app.d.ts ├── components │ ├── app-sync-status │ │ ├── index.tsx │ │ └── sync-status-icon │ │ │ └── index.tsx │ ├── application-detail-page │ │ ├── application-detail │ │ │ ├── app-live-state │ │ │ │ └── index.tsx │ │ │ ├── health-status-icon │ │ │ │ └── index.tsx │ │ │ ├── index.test.tsx │ │ │ ├── index.tsx │ │ │ └── sync-state-reason │ │ │ │ ├── diff-view │ │ │ │ ├── index.test.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── styles.ts │ │ │ │ └── index.tsx │ │ ├── application-state-view │ │ │ ├── cloudrun-state-view │ │ │ │ ├── cloudrun-resource-detail │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.tsx │ │ │ │ ├── cloudrun-resource │ │ │ │ │ ├── health-status-icon │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── styles.tsx │ │ │ ├── ecs-state-view │ │ │ │ ├── ecs-resource-detail │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.tsx │ │ │ │ ├── ecs-resource │ │ │ │ │ ├── health-status-icon │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── styles.ts │ │ │ ├── index.test.tsx │ │ │ ├── index.tsx │ │ │ ├── kubernetes-state-view │ │ │ │ ├── index.test.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── kubernetes-resource-detail │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.tsx │ │ │ │ ├── kubernetes-resource │ │ │ │ │ ├── health-status-icon │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── resource-filter-popover │ │ │ │ │ └── index.tsx │ │ │ │ └── styles.tsx │ │ │ ├── lambda-state-view │ │ │ │ ├── index.tsx │ │ │ │ ├── lambda-resource-detail │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.tsx │ │ │ │ ├── lambda-resource │ │ │ │ │ ├── health-status-icon │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── index.tsx │ │ │ │ └── styles.ts │ │ │ └── live-state-view │ │ │ │ ├── deploy-target-tab-bar │ │ │ │ └── index.tsx │ │ │ │ ├── graph-view │ │ │ │ ├── index.tsx │ │ │ │ ├── resource-edge │ │ │ │ │ └── index.tsx │ │ │ │ └── resource-node │ │ │ │ │ ├── health-status-icon │ │ │ │ │ └── index.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── index.test.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── resource-detail │ │ │ │ ├── index.tsx │ │ │ │ └── styles.tsx │ │ │ │ └── resource-filter-popover │ │ │ │ └── index.tsx │ │ ├── index.test.tsx │ │ └── index.tsx │ ├── application-form │ │ ├── application-form-manual-v0 │ │ │ ├── index.test.tsx │ │ │ └── index.tsx │ │ ├── application-form-manual-v1 │ │ │ ├── index.test.tsx │ │ │ └── index.tsx │ │ ├── application-form-v0 │ │ │ ├── index.test.tsx │ │ │ └── index.tsx │ │ ├── application-form-v1 │ │ │ ├── index.test.tsx │ │ │ └── index.tsx │ │ ├── index.tsx │ │ ├── styles.tsx │ │ └── tab-panel.tsx │ ├── applications-page │ │ ├── add-application-drawer │ │ │ └── index.tsx │ │ ├── application-added-view │ │ │ └── index.tsx │ │ ├── application-filter │ │ │ ├── application-autocomplete.tsx │ │ │ ├── index.test.tsx │ │ │ ├── index.tsx │ │ │ └── piped-select.tsx │ │ ├── application-list │ │ │ ├── application-list-item │ │ │ │ ├── index.test.tsx │ │ │ │ └── index.tsx │ │ │ ├── delete-application-dialog │ │ │ │ └── index.tsx │ │ │ ├── disable-application-dialog │ │ │ │ └── index.tsx │ │ │ ├── index.test.tsx │ │ │ ├── index.tsx │ │ │ └── sealed-secret-dialog │ │ │ │ ├── index.test.tsx │ │ │ │ └── index.tsx │ │ ├── edit-application-drawer │ │ │ ├── index.test.tsx │ │ │ └── index.tsx │ │ ├── encrypt-secret-drawer │ │ │ └── index.tsx │ │ └── index.tsx │ ├── chart-empty-data │ │ └── index.tsx │ ├── copy-icon-button │ │ ├── index.test.tsx │ │ └── index.tsx │ ├── deployment-chains-page │ │ └── index.tsx │ ├── deployment-status-icon │ │ ├── index.test.tsx │ │ └── index.tsx │ ├── deployment-trace-page │ │ ├── deployment-trace-filter │ │ │ ├── index.test.tsx │ │ │ └── index.tsx │ │ ├── deployment-trace-item │ │ │ ├── deployment-item.test.tsx │ │ │ ├── deployment-item.tsx │ │ │ ├── index.test.tsx │ │ │ └── index.tsx │ │ ├── index.tsx │ │ └── useGroupedDeploymentTrace.tsx │ ├── deployments-detail-page │ │ ├── deployment-detail │ │ │ ├── index.test.tsx │ │ │ └── index.tsx │ │ ├── index.test.tsx │ │ ├── index.tsx │ │ ├── log-viewer │ │ │ ├── index.test.tsx │ │ │ ├── index.tsx │ │ │ ├── log-line │ │ │ │ └── index.tsx │ │ │ └── log │ │ │ │ └── index.tsx │ │ └── pipeline │ │ │ ├── approval-stage │ │ │ ├── index.test.tsx │ │ │ └── index.tsx │ │ │ ├── index.test.tsx │ │ │ ├── index.tsx │ │ │ └── pipeline-stage │ │ │ ├── index.tsx │ │ │ └── stage-status-icon │ │ │ └── index.tsx │ ├── deployments-page │ │ ├── deployment-filter │ │ │ ├── index.test.tsx │ │ │ └── index.tsx │ │ ├── deployment-item │ │ │ └── index.tsx │ │ └── index.tsx │ ├── detail-table-row │ │ └── index.tsx │ ├── dialog-confirm │ │ ├── dialog-confirm.test.tsx │ │ └── index.tsx │ ├── event-status-icon │ │ ├── index.test.tsx │ │ └── index.tsx │ ├── events-page │ │ ├── event-filter │ │ │ └── index.tsx │ │ ├── event-item │ │ │ └── index.tsx │ │ └── index.tsx │ ├── filter-view │ │ └── index.tsx │ ├── form-select-input │ │ └── index.tsx │ ├── header │ │ ├── NavLink.tsx │ │ ├── index.test.tsx │ │ ├── index.tsx │ │ └── styles.ts │ ├── insight-page │ │ ├── change-failure-rate-chart │ │ │ └── index.tsx │ │ ├── chart-base │ │ │ └── index.tsx │ │ ├── deployment-frequency-chart │ │ │ └── index.tsx │ │ ├── index.tsx │ │ ├── insight-header │ │ │ └── index.tsx │ │ └── statistic-information │ │ │ ├── application-by-piped.tsx │ │ │ ├── application-count.tsx │ │ │ ├── deployment-24h.tsx │ │ │ ├── index.tsx │ │ │ ├── legend-row.tsx │ │ │ ├── piped-count.tsx │ │ │ └── styles.ts │ ├── label-auto-complete │ │ ├── index.test.tsx │ │ └── index.tsx │ ├── login-page │ │ ├── index.tsx │ │ └── login-form │ │ │ └── index.tsx │ ├── settings-page │ │ ├── api-key │ │ │ ├── components │ │ │ │ ├── disable-api-key-confirm-dialog │ │ │ │ │ └── index.tsx │ │ │ │ ├── generate-api-key-dialog │ │ │ │ │ └── index.tsx │ │ │ │ └── generated-api-key-dialog │ │ │ │ │ └── index.tsx │ │ │ ├── index.test.tsx │ │ │ └── index.tsx │ │ ├── index.tsx │ │ ├── piped │ │ │ ├── components │ │ │ │ ├── add-piped-dialog │ │ │ │ │ └── index.tsx │ │ │ │ ├── breaking-change │ │ │ │ │ ├── index.test.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── edit-piped-dialog │ │ │ │ │ └── index.tsx │ │ │ │ ├── piped-filter │ │ │ │ │ └── index.tsx │ │ │ │ ├── piped-form │ │ │ │ │ └── index.tsx │ │ │ │ ├── piped-table-row.tsx │ │ │ │ └── upgrade-dialog │ │ │ │ │ └── index.tsx │ │ │ └── index.tsx │ │ ├── project │ │ │ ├── components │ │ │ │ ├── github-sso-form │ │ │ │ │ ├── index.test.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── project-setting-labeled-text │ │ │ │ │ ├── index.test.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── rbac-form │ │ │ │ │ ├── components │ │ │ │ │ │ ├── add-role-dialog │ │ │ │ │ │ │ ├── index.test.tsx │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── add-user-group-dialog │ │ │ │ │ │ │ ├── index.test.tsx │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── delete-role-confirm-dialog │ │ │ │ │ │ │ ├── index.test.tsx │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── delete-user-group-confirm-dialog │ │ │ │ │ │ │ ├── index.test.tsx │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── edit-role-dialog │ │ │ │ │ │ │ ├── index.test.tsx │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── role-table-row │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── role │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ └── user-group │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── index.test.tsx │ │ │ │ │ └── index.tsx │ │ │ │ └── static-admin-form │ │ │ │ │ ├── index.test.tsx │ │ │ │ │ └── index.tsx │ │ │ └── index.tsx │ │ └── styles.ts │ ├── split-button │ │ ├── index.test.tsx │ │ └── index.tsx │ ├── text-with-copy-button │ │ └── index.tsx │ ├── toast-messages │ │ └── index.tsx │ └── warning-banner │ │ └── index.tsx ├── constants │ ├── api-endpoint.ts │ ├── api-key-role-text.ts │ ├── application-active-status.ts │ ├── application-kind.ts │ ├── application-sync-status-text.ts │ ├── common.ts │ ├── deployment-status-text.ts │ ├── event-status-text.ts │ ├── health-status-text.ts │ ├── localstorage.ts │ ├── metadata-keys.ts │ ├── path.ts │ ├── piped-connection-status-text.ts │ ├── project.ts │ ├── term-colors.ts │ ├── text.ts │ ├── toast-text.ts │ └── ui-text.ts ├── contexts │ ├── auth-context │ │ ├── auth-context.ts │ │ ├── auth-provider.tsx │ │ ├── index.test.tsx │ │ ├── index.tsx │ │ ├── use-auth.tsx │ │ └── use-project-name.tsx │ ├── command-context │ │ ├── CommandStatusTracking.tsx │ │ ├── command-context.ts │ │ ├── command-provider.tsx │ │ ├── index.ts │ │ └── use-command.tsx │ ├── query-client-provider.tsx │ └── toast-context │ │ ├── index.tsx │ │ ├── toast-context.ts │ │ ├── toast-provider.tsx │ │ └── use-toast.tsx ├── history.ts ├── hooks │ ├── use-interval.test.ts │ ├── use-interval.ts │ ├── use-query-string.ts │ └── useEChartState.tsx ├── index.tsx ├── mocks │ ├── browser.ts │ ├── create-handler.ts │ ├── handlers.ts │ ├── serializer.ts │ ├── server.ts │ ├── services │ │ ├── api-keys.ts │ │ ├── application.ts │ │ ├── command.ts │ │ ├── deployment.ts │ │ ├── insight.ts │ │ ├── live-state.ts │ │ ├── me.ts │ │ ├── piped.ts │ │ ├── project.ts │ │ └── stage-log.ts │ └── utils.ts ├── queries │ ├── api-keys │ │ ├── use-disable-api-key.tsx │ │ ├── use-generate-api-key.tsx │ │ └── use-get-api-keys.tsx │ ├── application-counts │ │ └── use-get-application-counts.tsx │ ├── application-live-state │ │ └── use-get-application-state-by-id.ts │ ├── applications │ │ ├── use-add-application.tsx │ │ ├── use-delete-application.tsx │ │ ├── use-disable-application.tsx │ │ ├── use-enable-application.tsx │ │ ├── use-get-application-detail.tsx │ │ ├── use-get-applications.tsx │ │ ├── use-get-unregistered-applications.tsx │ │ ├── use-sync-application.tsx │ │ └── use-update-application.tsx │ ├── commands │ │ └── use-fetch-command.ts │ ├── deployment-traces │ │ └── use-deployment-traces-infinite.ts │ ├── deployment │ │ ├── use-approve-stage.ts │ │ ├── use-cancel-deployment.ts │ │ ├── use-get-deployment-by-id.ts │ │ ├── use-get-deployments-infinite.tsx │ │ └── use-skip-stage.ts │ ├── events │ │ └── use-get-events-infinite.tsx │ ├── insight │ │ ├── insight.config.ts │ │ ├── use-insight-deployment-change-failure-rate-24h.tsx │ │ ├── use-insight-deployment-change-failure-rate.tsx │ │ ├── use-insight-deployment-frequency-24h.tsx │ │ └── use-insight-deployment-frequency.tsx │ ├── me │ │ └── use-get-me.tsx │ ├── pipeds │ │ ├── use-add-new-piped-key.ts │ │ ├── use-add-piped.ts │ │ ├── use-delete-old-piped-key.ts │ │ ├── use-disable-piped.ts │ │ ├── use-edit-piped.ts │ │ ├── use-enable-piped.ts │ │ ├── use-get-breaking-changes.tsx │ │ ├── use-get-piped-by-id.tsx │ │ ├── use-get-pipeds.tsx │ │ ├── use-get-released-versions.tsx │ │ ├── use-restart-piped.ts │ │ └── use-update-piped-desired-version.ts │ ├── project │ │ ├── use-add-project-rbac-role.tsx │ │ ├── use-add-user-group.tsx │ │ ├── use-delete-project-rbac-role.tsx │ │ ├── use-delete-user-group.tsx │ │ ├── use-get-project.tsx │ │ ├── use-toggle-availability-static-admin.tsx │ │ ├── use-update-github-sso.tsx │ │ ├── use-update-project-rbac-role.tsx │ │ └── use-update-static-admin.tsx │ ├── sealed-secret │ │ └── use-generate-sealed-secret.tsx │ └── stage-logs │ │ └── use-get-stage-logs.ts ├── routes.test.tsx ├── routes.tsx ├── styles │ ├── button.tsx │ ├── project-setting.ts │ └── text.ts ├── theme.ts ├── types │ ├── applications-live-state.ts │ ├── applications.ts │ ├── commands.ts │ ├── deployment.ts │ ├── module.ts │ ├── piped.ts │ └── stage-log.ts └── utils │ ├── __snapshots__ │ └── parse-log.test.ts.snap │ ├── common.ts │ ├── debounce.ts │ ├── determine-time-range.ts │ ├── find-default-active-stage-in-deployment.ts │ ├── find-metadata-by-key.test.ts │ ├── find-metadata-by-key.ts │ ├── formalize-policies-list.ts │ ├── is-deployment-running.ts │ ├── is-stage-running.ts │ ├── parse-log.test.ts │ ├── parse-log.ts │ ├── parse-rbac-policies.ts │ ├── rbac-action-types.ts │ ├── rbac-resource-types.ts │ ├── search-params.ts │ ├── setup-dayjs.ts │ ├── sorted-set.test.ts │ └── sorted-set.ts ├── test-utils ├── MemoryRouterTest.tsx ├── index.tsx └── styleMock.ts ├── tsconfig.json ├── webpack.common.js ├── webpack.config.dev.js ├── webpack.config.js └── yarn.lock /.gitattributes: -------------------------------------------------------------------------------- 1 | **/*_pb.js linguist-generated=true 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/enhancement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/.github/ISSUE_TEMPLATE/enhancement.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/new-feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/.github/ISSUE_TEMPLATE/new-feature.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/labeler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/.github/labeler.yaml -------------------------------------------------------------------------------- /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.github/workflows/build_tool.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/.github/workflows/build_tool.yaml -------------------------------------------------------------------------------- /.github/workflows/cherry_pick.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/.github/workflows/cherry_pick.yaml -------------------------------------------------------------------------------- /.github/workflows/code-butler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/.github/workflows/code-butler.yaml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/.github/workflows/codeql-analysis.yaml -------------------------------------------------------------------------------- /.github/workflows/gen.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/.github/workflows/gen.yaml -------------------------------------------------------------------------------- /.github/workflows/labeler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/.github/workflows/labeler.yaml -------------------------------------------------------------------------------- /.github/workflows/lint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/.github/workflows/lint.yaml -------------------------------------------------------------------------------- /.github/workflows/plugin_release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/.github/workflows/plugin_release.yaml -------------------------------------------------------------------------------- /.github/workflows/prerelease.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/.github/workflows/prerelease.yaml -------------------------------------------------------------------------------- /.github/workflows/publish_binary.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/.github/workflows/publish_binary.yaml -------------------------------------------------------------------------------- /.github/workflows/publish_site.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/.github/workflows/publish_site.yaml -------------------------------------------------------------------------------- /.github/workflows/publish_tool.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/.github/workflows/publish_tool.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.github/workflows/stale.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/.github/workflows/stale.yaml -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/.golangci.yml -------------------------------------------------------------------------------- /ADOPTERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/ADOPTERS.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/LICENSE -------------------------------------------------------------------------------- /MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/MAINTAINERS.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/Makefile -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/NOTICE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/RELEASE -------------------------------------------------------------------------------- /RELEASES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/RELEASES.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/SECURITY.md -------------------------------------------------------------------------------- /cmd/helloworld/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/cmd/helloworld/Dockerfile -------------------------------------------------------------------------------- /cmd/helloworld/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/cmd/helloworld/main.go -------------------------------------------------------------------------------- /cmd/launcher/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/cmd/launcher/Dockerfile -------------------------------------------------------------------------------- /cmd/launcher/Dockerfile-okd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/cmd/launcher/Dockerfile-okd -------------------------------------------------------------------------------- /cmd/launcher/README.md: -------------------------------------------------------------------------------- 1 | # Launcher -------------------------------------------------------------------------------- /cmd/launcher/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/cmd/launcher/main.go -------------------------------------------------------------------------------- /cmd/pipecd/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/cmd/pipecd/Dockerfile -------------------------------------------------------------------------------- /cmd/pipecd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/cmd/pipecd/README.md -------------------------------------------------------------------------------- /cmd/pipecd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/cmd/pipecd/main.go -------------------------------------------------------------------------------- /cmd/pipecd/ops.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/cmd/pipecd/ops.go -------------------------------------------------------------------------------- /cmd/pipecd/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/cmd/pipecd/server.go -------------------------------------------------------------------------------- /cmd/pipectl/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/cmd/pipectl/Dockerfile -------------------------------------------------------------------------------- /cmd/pipectl/README.md: -------------------------------------------------------------------------------- 1 | # pipectl: A Command Line Tool for PipeCD -------------------------------------------------------------------------------- /cmd/pipectl/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/cmd/pipectl/main.go -------------------------------------------------------------------------------- /cmd/piped/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/cmd/piped/Dockerfile -------------------------------------------------------------------------------- /cmd/piped/Dockerfile-okd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/cmd/piped/Dockerfile-okd -------------------------------------------------------------------------------- /cmd/piped/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/cmd/piped/README.md -------------------------------------------------------------------------------- /cmd/piped/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/cmd/piped/main.go -------------------------------------------------------------------------------- /cmd/pipedv1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/cmd/pipedv1/Dockerfile -------------------------------------------------------------------------------- /cmd/pipedv1/README-usage-alpha.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/cmd/pipedv1/README-usage-alpha.md -------------------------------------------------------------------------------- /cmd/pipedv1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/cmd/pipedv1/README.md -------------------------------------------------------------------------------- /cmd/pipedv1/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/cmd/pipedv1/main.go -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/codecov.yml -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/Dockerfile -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/assets/icons/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/assets/icons/logo.svg -------------------------------------------------------------------------------- /docs/assets/icons/logo1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/assets/icons/logo1.svg -------------------------------------------------------------------------------- /docs/assets/images/automation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/assets/images/automation.png -------------------------------------------------------------------------------- /docs/assets/images/lp-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/assets/images/lp-logo.png -------------------------------------------------------------------------------- /docs/assets/images/multi-provider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/assets/images/multi-provider.png -------------------------------------------------------------------------------- /docs/assets/images/secure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/assets/images/secure.png -------------------------------------------------------------------------------- /docs/assets/images/visibility.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/assets/images/visibility.png -------------------------------------------------------------------------------- /docs/assets/js/medium-zoom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/assets/js/medium-zoom.js -------------------------------------------------------------------------------- /docs/assets/js/offline-search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/assets/js/offline-search.js -------------------------------------------------------------------------------- /docs/assets/scss/_nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/assets/scss/_nav.scss -------------------------------------------------------------------------------- /docs/assets/scss/_styles_project.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/assets/scss/_styles_project.scss -------------------------------------------------------------------------------- /docs/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/config.toml -------------------------------------------------------------------------------- /docs/content/en/_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/content/en/_index.html -------------------------------------------------------------------------------- /docs/content/en/blog/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/content/en/blog/_index.md -------------------------------------------------------------------------------- /docs/content/en/blog/may-2022-update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/content/en/blog/may-2022-update.md -------------------------------------------------------------------------------- /docs/content/en/blog/plugin-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/content/en/blog/plugin-intro.md -------------------------------------------------------------------------------- /docs/content/en/community/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/content/en/community/_index.md -------------------------------------------------------------------------------- /docs/content/en/docs-dev/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/content/en/docs-dev/_index.md -------------------------------------------------------------------------------- /docs/content/en/docs-dev/faq/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/content/en/docs-dev/faq/_index.md -------------------------------------------------------------------------------- /docs/content/en/docs-v0.39.x/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/content/en/docs-v0.39.x/_index.md -------------------------------------------------------------------------------- /docs/content/en/docs-v0.40.x/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/content/en/docs-v0.40.x/_index.md -------------------------------------------------------------------------------- /docs/content/en/docs-v0.41.x/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/content/en/docs-v0.41.x/_index.md -------------------------------------------------------------------------------- /docs/content/en/docs-v0.42.x/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/content/en/docs-v0.42.x/_index.md -------------------------------------------------------------------------------- /docs/content/en/docs-v0.43.x/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/content/en/docs-v0.43.x/_index.md -------------------------------------------------------------------------------- /docs/content/en/docs-v0.44.x/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/content/en/docs-v0.44.x/_index.md -------------------------------------------------------------------------------- /docs/content/en/docs-v0.45.x/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/content/en/docs-v0.45.x/_index.md -------------------------------------------------------------------------------- /docs/content/en/docs-v0.46.x/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/content/en/docs-v0.46.x/_index.md -------------------------------------------------------------------------------- /docs/content/en/docs-v0.47.x/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/content/en/docs-v0.47.x/_index.md -------------------------------------------------------------------------------- /docs/content/en/docs-v0.48.x/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/content/en/docs-v0.48.x/_index.md -------------------------------------------------------------------------------- /docs/content/en/docs-v0.49.x/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/content/en/docs-v0.49.x/_index.md -------------------------------------------------------------------------------- /docs/content/en/docs-v0.50.x/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/content/en/docs-v0.50.x/_index.md -------------------------------------------------------------------------------- /docs/content/en/docs-v0.51.x/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/content/en/docs-v0.51.x/_index.md -------------------------------------------------------------------------------- /docs/content/en/docs-v0.52.x/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/content/en/docs-v0.52.x/_index.md -------------------------------------------------------------------------------- /docs/content/en/docs-v0.53.x/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/content/en/docs-v0.53.x/_index.md -------------------------------------------------------------------------------- /docs/content/en/docs-v0.54.x/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/content/en/docs-v0.54.x/_index.md -------------------------------------------------------------------------------- /docs/content/en/docs-v0.55.x/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/content/en/docs-v0.55.x/_index.md -------------------------------------------------------------------------------- /docs/content/en/docs-v1.0.x/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/content/en/docs-v1.0.x/_index.md -------------------------------------------------------------------------------- /docs/content/en/docs/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/content/en/docs/_index.md -------------------------------------------------------------------------------- /docs/content/en/search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/content/en/search.md -------------------------------------------------------------------------------- /docs/layouts/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/layouts/404.html -------------------------------------------------------------------------------- /docs/layouts/docs-dev/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/layouts/docs-dev/baseof.html -------------------------------------------------------------------------------- /docs/layouts/docs-dev/baseof.print.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/layouts/docs-dev/baseof.print.html -------------------------------------------------------------------------------- /docs/layouts/docs-dev/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/layouts/docs-dev/list.html -------------------------------------------------------------------------------- /docs/layouts/docs-dev/list.print.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/layouts/docs-dev/list.print.html -------------------------------------------------------------------------------- /docs/layouts/docs-dev/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/layouts/docs-dev/single.html -------------------------------------------------------------------------------- /docs/layouts/docs-v0.39.x/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/layouts/docs-v0.39.x/baseof.html -------------------------------------------------------------------------------- /docs/layouts/docs-v0.39.x/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/layouts/docs-v0.39.x/list.html -------------------------------------------------------------------------------- /docs/layouts/docs-v0.39.x/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/layouts/docs-v0.39.x/single.html -------------------------------------------------------------------------------- /docs/layouts/docs-v0.40.x/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/layouts/docs-v0.40.x/baseof.html -------------------------------------------------------------------------------- /docs/layouts/docs-v0.40.x/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/layouts/docs-v0.40.x/list.html -------------------------------------------------------------------------------- /docs/layouts/docs-v0.40.x/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/layouts/docs-v0.40.x/single.html -------------------------------------------------------------------------------- /docs/layouts/docs-v0.41.x/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/layouts/docs-v0.41.x/baseof.html -------------------------------------------------------------------------------- /docs/layouts/docs-v0.41.x/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/layouts/docs-v0.41.x/list.html -------------------------------------------------------------------------------- /docs/layouts/docs-v0.41.x/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/layouts/docs-v0.41.x/single.html -------------------------------------------------------------------------------- /docs/layouts/docs-v0.42.x/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/layouts/docs-v0.42.x/baseof.html -------------------------------------------------------------------------------- /docs/layouts/docs-v0.42.x/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/layouts/docs-v0.42.x/list.html -------------------------------------------------------------------------------- /docs/layouts/docs-v0.42.x/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/layouts/docs-v0.42.x/single.html -------------------------------------------------------------------------------- /docs/layouts/docs-v0.43.x/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/layouts/docs-v0.43.x/baseof.html -------------------------------------------------------------------------------- /docs/layouts/docs-v0.43.x/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/layouts/docs-v0.43.x/list.html -------------------------------------------------------------------------------- /docs/layouts/docs-v0.43.x/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/layouts/docs-v0.43.x/single.html -------------------------------------------------------------------------------- /docs/layouts/docs-v0.44.x/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/layouts/docs-v0.44.x/baseof.html -------------------------------------------------------------------------------- /docs/layouts/docs-v0.44.x/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/layouts/docs-v0.44.x/list.html -------------------------------------------------------------------------------- /docs/layouts/docs-v0.44.x/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/layouts/docs-v0.44.x/single.html -------------------------------------------------------------------------------- /docs/layouts/docs-v0.45.x/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/layouts/docs-v0.45.x/baseof.html -------------------------------------------------------------------------------- /docs/layouts/docs-v0.45.x/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/layouts/docs-v0.45.x/list.html -------------------------------------------------------------------------------- /docs/layouts/docs-v0.45.x/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/layouts/docs-v0.45.x/single.html -------------------------------------------------------------------------------- /docs/layouts/docs-v0.46.x/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/layouts/docs-v0.46.x/baseof.html -------------------------------------------------------------------------------- /docs/layouts/docs-v0.46.x/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/layouts/docs-v0.46.x/list.html -------------------------------------------------------------------------------- /docs/layouts/docs-v0.46.x/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/layouts/docs-v0.46.x/single.html -------------------------------------------------------------------------------- /docs/layouts/docs-v0.47.x/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/layouts/docs-v0.47.x/baseof.html -------------------------------------------------------------------------------- /docs/layouts/docs-v0.47.x/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/layouts/docs-v0.47.x/list.html -------------------------------------------------------------------------------- /docs/layouts/docs-v0.47.x/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/layouts/docs-v0.47.x/single.html -------------------------------------------------------------------------------- /docs/layouts/docs-v0.48.x/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/layouts/docs-v0.48.x/baseof.html -------------------------------------------------------------------------------- /docs/layouts/docs-v0.48.x/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/layouts/docs-v0.48.x/list.html -------------------------------------------------------------------------------- /docs/layouts/docs-v0.48.x/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/layouts/docs-v0.48.x/single.html -------------------------------------------------------------------------------- /docs/layouts/docs-v0.49.x/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/layouts/docs-v0.49.x/baseof.html -------------------------------------------------------------------------------- /docs/layouts/docs-v0.49.x/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/layouts/docs-v0.49.x/list.html -------------------------------------------------------------------------------- /docs/layouts/docs-v0.49.x/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/layouts/docs-v0.49.x/single.html -------------------------------------------------------------------------------- /docs/layouts/docs-v0.50.x/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/layouts/docs-v0.50.x/baseof.html -------------------------------------------------------------------------------- /docs/layouts/docs-v0.50.x/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/layouts/docs-v0.50.x/list.html -------------------------------------------------------------------------------- /docs/layouts/docs-v0.50.x/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/layouts/docs-v0.50.x/single.html -------------------------------------------------------------------------------- /docs/layouts/docs-v0.51.x/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/layouts/docs-v0.51.x/baseof.html -------------------------------------------------------------------------------- /docs/layouts/docs-v0.51.x/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/layouts/docs-v0.51.x/list.html -------------------------------------------------------------------------------- /docs/layouts/docs-v0.51.x/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/layouts/docs-v0.51.x/single.html -------------------------------------------------------------------------------- /docs/layouts/docs-v0.52.x/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/layouts/docs-v0.52.x/baseof.html -------------------------------------------------------------------------------- /docs/layouts/docs-v0.52.x/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/layouts/docs-v0.52.x/list.html -------------------------------------------------------------------------------- /docs/layouts/docs-v0.52.x/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/layouts/docs-v0.52.x/single.html -------------------------------------------------------------------------------- /docs/layouts/docs-v0.53.x/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/layouts/docs-v0.53.x/baseof.html -------------------------------------------------------------------------------- /docs/layouts/docs-v0.53.x/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/layouts/docs-v0.53.x/list.html -------------------------------------------------------------------------------- /docs/layouts/docs-v0.53.x/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/layouts/docs-v0.53.x/single.html -------------------------------------------------------------------------------- /docs/layouts/docs-v0.54.x/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/layouts/docs-v0.54.x/baseof.html -------------------------------------------------------------------------------- /docs/layouts/docs-v0.54.x/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/layouts/docs-v0.54.x/list.html -------------------------------------------------------------------------------- /docs/layouts/docs-v0.54.x/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/layouts/docs-v0.54.x/single.html -------------------------------------------------------------------------------- /docs/layouts/docs-v0.55.x/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/layouts/docs-v0.55.x/baseof.html -------------------------------------------------------------------------------- /docs/layouts/docs-v0.55.x/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/layouts/docs-v0.55.x/list.html -------------------------------------------------------------------------------- /docs/layouts/docs-v0.55.x/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/layouts/docs-v0.55.x/single.html -------------------------------------------------------------------------------- /docs/layouts/docs-v1.0.x/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/layouts/docs-v1.0.x/baseof.html -------------------------------------------------------------------------------- /docs/layouts/docs-v1.0.x/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/layouts/docs-v1.0.x/list.html -------------------------------------------------------------------------------- /docs/layouts/docs-v1.0.x/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/layouts/docs-v1.0.x/single.html -------------------------------------------------------------------------------- /docs/layouts/partials/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/layouts/partials/footer.html -------------------------------------------------------------------------------- /docs/layouts/partials/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/layouts/partials/head.html -------------------------------------------------------------------------------- /docs/layouts/partials/navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/layouts/partials/navbar.html -------------------------------------------------------------------------------- /docs/layouts/partials/scripts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/layouts/partials/scripts.html -------------------------------------------------------------------------------- /docs/layouts/shortcodes/blocks/latest_version.html: -------------------------------------------------------------------------------- 1 | {{ getenv "RELEASE" }} -------------------------------------------------------------------------------- /docs/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/main.go -------------------------------------------------------------------------------- /docs/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/package-lock.json -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/rfcs/0000-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/rfcs/0000-template.md -------------------------------------------------------------------------------- /docs/rfcs/0001-image-watcher.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/rfcs/0001-image-watcher.md -------------------------------------------------------------------------------- /docs/rfcs/0002-lambda-deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/rfcs/0002-lambda-deployment.md -------------------------------------------------------------------------------- /docs/rfcs/0003-sql-datastore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/rfcs/0003-sql-datastore.md -------------------------------------------------------------------------------- /docs/rfcs/0004-ecs-deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/rfcs/0004-ecs-deployment.md -------------------------------------------------------------------------------- /docs/rfcs/0005-plan-preview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/rfcs/0005-plan-preview.md -------------------------------------------------------------------------------- /docs/rfcs/0006-ada-dynamic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/rfcs/0006-ada-dynamic.md -------------------------------------------------------------------------------- /docs/rfcs/0007-deployment-chain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/rfcs/0007-deployment-chain.md -------------------------------------------------------------------------------- /docs/rfcs/0008-simplify-datastore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/rfcs/0008-simplify-datastore.md -------------------------------------------------------------------------------- /docs/rfcs/0010-custom-stage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/rfcs/0010-custom-stage.md -------------------------------------------------------------------------------- /docs/rfcs/0011-pipectrl-init.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/rfcs/0011-pipectrl-init.md -------------------------------------------------------------------------------- /docs/rfcs/0011-script-run-stage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/rfcs/0011-script-run-stage.md -------------------------------------------------------------------------------- /docs/rfcs/0012-ecs-not-under-elb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/rfcs/0012-ecs-not-under-elb.md -------------------------------------------------------------------------------- /docs/rfcs/0017-deployment-trace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/rfcs/0017-deployment-trace.md -------------------------------------------------------------------------------- /docs/rfcs/0019-redux-replacement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/rfcs/0019-redux-replacement.md -------------------------------------------------------------------------------- /docs/rfcs/0020-cancel-plan-preview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/rfcs/0020-cancel-plan-preview.md -------------------------------------------------------------------------------- /docs/rfcs/assets/0014-piped-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/rfcs/assets/0014-piped-list.png -------------------------------------------------------------------------------- /docs/rfcs/assets/0014-stage-log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/rfcs/assets/0014-stage-log.png -------------------------------------------------------------------------------- /docs/rfcs/assets/event-watcher-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/rfcs/assets/event-watcher-flow.png -------------------------------------------------------------------------------- /docs/rfcs/assets/image-watcher.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/rfcs/assets/image-watcher.jpg -------------------------------------------------------------------------------- /docs/rfcs/assets/single-ambassador.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/rfcs/assets/single-ambassador.png -------------------------------------------------------------------------------- /docs/static/favicons/android-36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/static/favicons/android-36x36.png -------------------------------------------------------------------------------- /docs/static/favicons/android-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/static/favicons/android-48x48.png -------------------------------------------------------------------------------- /docs/static/favicons/android-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/static/favicons/android-72x72.png -------------------------------------------------------------------------------- /docs/static/favicons/android-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/static/favicons/android-96x96.png -------------------------------------------------------------------------------- /docs/static/favicons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/static/favicons/favicon-16x16.png -------------------------------------------------------------------------------- /docs/static/favicons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/static/favicons/favicon-32x32.png -------------------------------------------------------------------------------- /docs/static/favicons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/static/favicons/favicon.ico -------------------------------------------------------------------------------- /docs/static/images/cicd-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/static/images/cicd-flow.png -------------------------------------------------------------------------------- /docs/static/images/custom-sync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/static/images/custom-sync.png -------------------------------------------------------------------------------- /docs/static/images/event-list-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/static/images/event-list-page.png -------------------------------------------------------------------------------- /docs/static/images/insights.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/static/images/insights.png -------------------------------------------------------------------------------- /docs/static/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/static/images/logo.png -------------------------------------------------------------------------------- /docs/static/images/ogp-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/static/images/ogp-logo.png -------------------------------------------------------------------------------- /docs/static/images/piped-list-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/static/images/piped-list-page.png -------------------------------------------------------------------------------- /docs/static/images/quickstart-login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/static/images/quickstart-login.png -------------------------------------------------------------------------------- /docs/static/images/script-run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/static/images/script-run.png -------------------------------------------------------------------------------- /docs/static/images/settings-api-key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/static/images/settings-api-key.png -------------------------------------------------------------------------------- /docs/static/images/settings-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/static/images/settings-project.png -------------------------------------------------------------------------------- /docs/themes/docsy/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/themes/docsy/.editorconfig -------------------------------------------------------------------------------- /docs/themes/docsy/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/themes/docsy/.gitignore -------------------------------------------------------------------------------- /docs/themes/docsy/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/themes/docsy/.gitmodules -------------------------------------------------------------------------------- /docs/themes/docsy/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/themes/docsy/.prettierrc.json -------------------------------------------------------------------------------- /docs/themes/docsy/.s3deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/themes/docsy/.s3deploy.yml -------------------------------------------------------------------------------- /docs/themes/docsy/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/themes/docsy/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/themes/docsy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/themes/docsy/LICENSE -------------------------------------------------------------------------------- /docs/themes/docsy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/themes/docsy/README.md -------------------------------------------------------------------------------- /docs/themes/docsy/assets/icons/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/themes/docsy/assets/icons/logo.png -------------------------------------------------------------------------------- /docs/themes/docsy/assets/icons/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/themes/docsy/assets/icons/logo.svg -------------------------------------------------------------------------------- /docs/themes/docsy/assets/js/anchor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/themes/docsy/assets/js/anchor.js -------------------------------------------------------------------------------- /docs/themes/docsy/assets/js/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/themes/docsy/assets/js/base.js -------------------------------------------------------------------------------- /docs/themes/docsy/assets/js/markmap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/themes/docsy/assets/js/markmap.js -------------------------------------------------------------------------------- /docs/themes/docsy/assets/js/mermaid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/themes/docsy/assets/js/mermaid.js -------------------------------------------------------------------------------- /docs/themes/docsy/assets/js/plantuml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/themes/docsy/assets/js/plantuml.js -------------------------------------------------------------------------------- /docs/themes/docsy/assets/js/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/themes/docsy/assets/js/search.js -------------------------------------------------------------------------------- /docs/themes/docsy/assets/scss/_nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/themes/docsy/assets/scss/_nav.scss -------------------------------------------------------------------------------- /docs/themes/docsy/assets/scss/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/themes/docsy/assets/scss/main.scss -------------------------------------------------------------------------------- /docs/themes/docsy/assets/vendor/bootstrap/site/layouts/shortcodes/markdown.html: -------------------------------------------------------------------------------- 1 | {{- .Inner | markdownify -}} 2 | -------------------------------------------------------------------------------- /docs/themes/docsy/assets/vendor/bootstrap/site/layouts/shortcodes/partial.html: -------------------------------------------------------------------------------- 1 | {{ partial (.Get 0) . }} 2 | -------------------------------------------------------------------------------- /docs/themes/docsy/assets/vendor/bootstrap/site/static/CNAME: -------------------------------------------------------------------------------- 1 | getbootstrap.com 2 | -------------------------------------------------------------------------------- /docs/themes/docsy/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/themes/docsy/config.toml -------------------------------------------------------------------------------- /docs/themes/docsy/i18n/ar.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/themes/docsy/i18n/ar.toml -------------------------------------------------------------------------------- /docs/themes/docsy/i18n/bg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/themes/docsy/i18n/bg.toml -------------------------------------------------------------------------------- /docs/themes/docsy/i18n/bn.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/themes/docsy/i18n/bn.toml -------------------------------------------------------------------------------- /docs/themes/docsy/i18n/de.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/themes/docsy/i18n/de.toml -------------------------------------------------------------------------------- /docs/themes/docsy/i18n/en.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/themes/docsy/i18n/en.toml -------------------------------------------------------------------------------- /docs/themes/docsy/i18n/es.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/themes/docsy/i18n/es.toml -------------------------------------------------------------------------------- /docs/themes/docsy/i18n/et.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/themes/docsy/i18n/et.toml -------------------------------------------------------------------------------- /docs/themes/docsy/i18n/fa.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/themes/docsy/i18n/fa.toml -------------------------------------------------------------------------------- /docs/themes/docsy/i18n/fr.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/themes/docsy/i18n/fr.toml -------------------------------------------------------------------------------- /docs/themes/docsy/i18n/hu.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/themes/docsy/i18n/hu.toml -------------------------------------------------------------------------------- /docs/themes/docsy/i18n/it.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/themes/docsy/i18n/it.toml -------------------------------------------------------------------------------- /docs/themes/docsy/i18n/ja.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/themes/docsy/i18n/ja.toml -------------------------------------------------------------------------------- /docs/themes/docsy/i18n/ko.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/themes/docsy/i18n/ko.toml -------------------------------------------------------------------------------- /docs/themes/docsy/i18n/nl.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/themes/docsy/i18n/nl.toml -------------------------------------------------------------------------------- /docs/themes/docsy/i18n/no.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/themes/docsy/i18n/no.toml -------------------------------------------------------------------------------- /docs/themes/docsy/i18n/pl.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/themes/docsy/i18n/pl.toml -------------------------------------------------------------------------------- /docs/themes/docsy/i18n/pt-br.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/themes/docsy/i18n/pt-br.toml -------------------------------------------------------------------------------- /docs/themes/docsy/i18n/ru.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/themes/docsy/i18n/ru.toml -------------------------------------------------------------------------------- /docs/themes/docsy/i18n/tr.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/themes/docsy/i18n/tr.toml -------------------------------------------------------------------------------- /docs/themes/docsy/i18n/zh-cn.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/themes/docsy/i18n/zh-cn.toml -------------------------------------------------------------------------------- /docs/themes/docsy/i18n/zh.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/themes/docsy/i18n/zh.toml -------------------------------------------------------------------------------- /docs/themes/docsy/images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/themes/docsy/images/screenshot.png -------------------------------------------------------------------------------- /docs/themes/docsy/images/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/themes/docsy/images/tn.png -------------------------------------------------------------------------------- /docs/themes/docsy/layouts/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/themes/docsy/layouts/404.html -------------------------------------------------------------------------------- /docs/themes/docsy/layouts/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipe-cd/pipecd/HEAD/docs/themes/docsy/layouts/home.html -------------------------------------------------------------------------------- /docs/themes/docsy/layouts/shortcodes/cardpane.html: -------------------------------------------------------------------------------- 1 |