├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── release-notes.yml └── workflows │ ├── cli.yml │ ├── generate-release-note.yml │ ├── playwright.yml │ ├── release.yml │ ├── test.yml │ └── update-dev-manual.yml ├── .gitignore ├── CHANGELOG ├── LICENCE ├── NOTICE ├── SECURITY.md ├── cli ├── Cargo.lock ├── Cargo.toml ├── README.md ├── architecture.png ├── src │ ├── bin.rs │ ├── commands │ │ ├── assets.rs │ │ ├── cms.rs │ │ ├── environments.rs │ │ ├── generate.rs │ │ ├── login.rs │ │ ├── mod.rs │ │ ├── pull.rs │ │ ├── push.rs │ │ ├── version.rs │ │ └── watch.rs │ ├── helpers.rs │ ├── interactive.rs │ ├── logging │ │ ├── error.rs │ │ ├── logger.rs │ │ └── mod.rs │ ├── models │ │ ├── folder.rs │ │ └── mod.rs │ └── utils.rs ├── templates │ ├── cms.zip │ ├── cms │ │ ├── .daikoku │ │ │ ├── .daikokuignore │ │ │ ├── .environments │ │ │ └── .secrets │ │ ├── assets │ │ │ └── .gitkeep │ │ └── src │ │ │ ├── apis │ │ │ └── .gitkeep │ │ │ ├── data │ │ │ └── .gitkeep │ │ │ ├── mails │ │ │ └── .gitkeep │ │ │ ├── pages │ │ │ ├── .gitkeep │ │ │ ├── 404.html │ │ │ ├── page.html │ │ │ └── styles.css │ │ │ ├── scripts │ │ │ └── .gitkeep │ │ │ └── styles │ │ │ └── .gitkeep │ ├── manager.html │ ├── session_expired.html │ └── update.sh └── tests │ ├── assets.rs │ ├── cli │ ├── commands │ │ ├── assets.rs │ │ ├── cli.rs │ │ ├── cms.rs │ │ ├── environment.rs │ │ └── mod.rs │ └── mod.rs │ ├── cms.rs │ ├── environments.rs │ ├── generate.rs │ ├── login.rs │ ├── pull.rs │ ├── push.rs │ ├── resources │ ├── .gitignore │ ├── daikoku-state-template.ndjson │ ├── daikoku-state.ndjson │ ├── daikoku.svg │ └── hsperfdata_demiourgos728 │ │ └── 1 │ └── version.rs ├── daikoku ├── .gitignore ├── .scalafmt.conf ├── app │ ├── actions │ │ └── actions.scala │ ├── audit │ │ ├── audit.scala │ │ └── config.scala │ ├── controllers │ │ ├── AdminApiController.scala │ │ ├── ApiController.scala │ │ ├── AppError.scala │ │ ├── AssetsController.scala │ │ ├── AuditTrailController.scala │ │ ├── CmsApiController.scala │ │ ├── ConsumptionController.scala │ │ ├── EntitiesController.scala │ │ ├── GraphQLController.scala │ │ ├── HomeController.scala │ │ ├── IntegrationApiController.scala │ │ ├── JobsController.scala │ │ ├── LoginController.scala │ │ ├── MessageController.scala │ │ ├── MockController.scala │ │ ├── NotificationController.scala │ │ ├── OtoroshiSettingsController.scala │ │ ├── PaymentClient.scala │ │ ├── SessionController.scala │ │ ├── TeamController.scala │ │ ├── TenantController.scala │ │ ├── TranslationController.scala │ │ ├── UsersController.scala │ │ ├── admin-api-openapi.json │ │ ├── authorizations.scala │ │ └── playJson.scala │ ├── daikoku.scala │ ├── domain │ │ ├── CommonServices.scala │ │ ├── JsonNodeValueResolver.java │ │ ├── SchemaDefinition.scala │ │ ├── apiEntities.scala │ │ ├── apikeyEntities.scala │ │ ├── entities.scala │ │ ├── graphQLEntities.scala │ │ ├── json.scala │ │ ├── teamEntities.scala │ │ ├── tenantEntities.scala │ │ └── userEntities.scala │ ├── env │ │ ├── env.scala │ │ └── evolutions.scala │ ├── jobs │ │ ├── AnonymousReportingJob.scala │ │ ├── ApiKeyStatsJob.scala │ │ ├── AuditTrailPurgeJob.scala │ │ ├── NotificationsPurgeJob.scala │ │ ├── OtoroshiVerifierJob.scala │ │ └── QueueJob.scala │ ├── logger │ │ └── AppLogger.scala │ ├── login │ │ ├── api.scala │ │ ├── ldap.scala │ │ ├── local.scala │ │ ├── oauth.scala │ │ └── otoroshi.scala │ ├── messages │ │ ├── Events.scala │ │ └── MessageStreamActor.scala │ ├── services │ │ ├── AssetsService.scala │ │ ├── CmsRenderer.scala │ │ └── TranslationsService.scala │ ├── storage │ │ ├── api.scala │ │ ├── drivers │ │ │ └── postgres │ │ │ │ ├── Helper.scala │ │ │ │ ├── PostgresDataStore.scala │ │ │ │ └── ReactivePg.scala │ │ └── graphql │ │ │ └── AuthMiddleware.scala │ ├── utils │ │ ├── AccountCreationService.scala │ │ ├── ApiService.scala │ │ ├── Cypher.scala │ │ ├── DeletionService.scala │ │ ├── FileChecker.java │ │ ├── JsonOperationsHelper.scala │ │ ├── PemUtils.java │ │ ├── TOTPSecret.scala │ │ ├── Translator.scala │ │ ├── admin.scala │ │ ├── diff_match_patch.java │ │ ├── emails.scala │ │ ├── errors.scala │ │ ├── future.scala │ │ ├── generators.scala │ │ ├── jwt.scala │ │ ├── otoroshi.scala │ │ ├── regex.scala │ │ ├── request.scala │ │ ├── s3.scala │ │ └── string.scala │ └── views │ │ └── robot.scala.txt ├── build.sbt ├── conf │ ├── application.conf │ ├── application.test.conf │ ├── base.conf │ ├── logback.xml │ ├── messages │ ├── messages.en │ ├── messages.fr │ └── routes ├── docker │ └── start.sh ├── javascript │ ├── .eslintrc.js │ ├── .gitignore │ ├── Global.d.ts │ ├── babel.config.js │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── playwright.config.ts │ ├── scripts │ │ ├── build.ts │ │ └── serve.ts │ ├── src │ │ ├── apps │ │ │ ├── DaikokuApp.tsx │ │ │ ├── DaikokuHomeApp.tsx │ │ │ └── index.ts │ │ ├── components │ │ │ ├── adminbackoffice │ │ │ │ ├── anonymousreporting │ │ │ │ │ └── AnonymousReporting.tsx │ │ │ │ ├── audittrail │ │ │ │ │ ├── AuditTrailList.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── cms │ │ │ │ │ ├── Create.tsx │ │ │ │ │ ├── Pages.tsx │ │ │ │ │ ├── cmsUtils.ts │ │ │ │ │ └── index.tsx │ │ │ │ ├── importexport │ │ │ │ │ ├── ImportExport.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── index.ts │ │ │ │ ├── messages │ │ │ │ │ ├── index.ts │ │ │ │ │ └── messages.tsx │ │ │ │ ├── otoroshi │ │ │ │ │ ├── InititializeFromOtoroshi.tsx │ │ │ │ │ ├── TenantOtoroshi.tsx │ │ │ │ │ ├── TenantOtoroshis.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── initialization │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── steps.tsx │ │ │ │ │ │ └── theMachine.ts │ │ │ │ ├── sessions │ │ │ │ │ ├── SessionList.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── teams │ │ │ │ │ ├── TeamList.tsx │ │ │ │ │ ├── TeamMembers.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── tenants │ │ │ │ │ ├── EditFrontOfficeTranslations.tsx │ │ │ │ │ ├── MailingInternalization.tsx │ │ │ │ │ ├── MailsDescriptions │ │ │ │ │ │ └── fr.ts │ │ │ │ │ ├── TenantAdminList.tsx │ │ │ │ │ ├── TenantAssets.tsx │ │ │ │ │ ├── TenantEdit.tsx │ │ │ │ │ ├── TenantList.tsx │ │ │ │ │ ├── forms │ │ │ │ │ │ ├── AuditForm.tsx │ │ │ │ │ │ ├── AutenticationForm.tsx │ │ │ │ │ │ ├── CustomizationForm.tsx │ │ │ │ │ │ ├── DisplayForm.tsx │ │ │ │ │ │ ├── GeneralForm.tsx │ │ │ │ │ │ ├── MailForm.tsx │ │ │ │ │ │ ├── SecurityForm.tsx │ │ │ │ │ │ ├── ThirdPartyPaymentForm.tsx │ │ │ │ │ │ ├── bucketForm.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── index.ts │ │ │ │ └── users │ │ │ │ │ ├── UserEdit.tsx │ │ │ │ │ ├── UserList.tsx │ │ │ │ │ └── index.ts │ │ │ ├── backoffice │ │ │ │ ├── TeamBackOffice.tsx │ │ │ │ ├── apikeys │ │ │ │ │ ├── ShowApiSecret.tsx │ │ │ │ │ ├── TeamApiKeyConsumption.tsx │ │ │ │ │ ├── TeamApiKeys.tsx │ │ │ │ │ ├── TeamApiKeysForApi.tsx │ │ │ │ │ ├── TeamConsumption.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── apis │ │ │ │ │ ├── SubscriptionProcessEditor.tsx │ │ │ │ │ ├── TeamApiConsumption.tsx │ │ │ │ │ ├── TeamApiDocumentation.tsx │ │ │ │ │ ├── TeamApiInfo.tsx │ │ │ │ │ ├── TeamApiSubscriptions.tsx │ │ │ │ │ ├── TeamApiSwagger.tsx │ │ │ │ │ ├── TeamApiTesting.tsx │ │ │ │ │ ├── TeamApis.tsx │ │ │ │ │ ├── TeamPlanConsumption.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── assets │ │ │ │ │ ├── AssetsList.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── billing │ │ │ │ │ ├── TeamBilling.tsx │ │ │ │ │ ├── TeamIncome.tsx │ │ │ │ │ ├── components.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── index.ts │ │ │ │ ├── me │ │ │ │ │ ├── MyProfile.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── members │ │ │ │ │ ├── TeamMembers.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── messages │ │ │ │ │ ├── context.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── messages.tsx │ │ │ │ ├── notifications │ │ │ │ │ ├── NotificationList.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── teams │ │ │ │ │ ├── TeamAssets.tsx │ │ │ │ │ ├── TeamEdit.tsx │ │ │ │ │ └── index.ts │ │ │ │ └── widgets │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── revenus.tsx │ │ │ │ │ ├── teamDemands.tsx │ │ │ │ │ ├── teamDemandsExt.tsx │ │ │ │ │ └── widget.tsx │ │ │ ├── frontend │ │ │ │ ├── AtomicDesign.tsx │ │ │ │ ├── CmsViewer.tsx │ │ │ │ ├── FrontOffice.tsx │ │ │ │ ├── JoinTeam.tsx │ │ │ │ ├── MaybeHomePage.tsx │ │ │ │ ├── SubscriptionRetrieve.tsx │ │ │ │ ├── account │ │ │ │ │ └── signup.tsx │ │ │ │ ├── api │ │ │ │ │ ├── ApiCard.tsx │ │ │ │ │ ├── ApiDescription.tsx │ │ │ │ │ ├── ApiDocumentation.tsx │ │ │ │ │ ├── ApiGroupApis.tsx │ │ │ │ │ ├── ApiHeader.tsx │ │ │ │ │ ├── ApiHome.tsx │ │ │ │ │ ├── ApiPost.tsx │ │ │ │ │ ├── ApiPricing.tsx │ │ │ │ │ ├── ApiRedoc.tsx │ │ │ │ │ ├── ApiSubscriptions.tsx │ │ │ │ │ ├── ApiTest.tsx │ │ │ │ │ ├── StarsButton.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── issues │ │ │ │ │ │ ├── ApiFilter.tsx │ │ │ │ │ │ ├── ApiIssue.tsx │ │ │ │ │ │ ├── ApiIssues.tsx │ │ │ │ │ │ ├── ApiTimelineIssue.tsx │ │ │ │ │ │ └── TeamApiIssueTags.tsx │ │ │ │ ├── fastMode │ │ │ │ │ ├── FastApiCard.tsx │ │ │ │ │ ├── FastApiList.tsx │ │ │ │ │ ├── FastItemView.tsx │ │ │ │ │ └── FastMode.tsx │ │ │ │ ├── index.ts │ │ │ │ └── team │ │ │ │ │ ├── ApiList.tsx │ │ │ │ │ ├── MyHome.tsx │ │ │ │ │ ├── TeamCard.tsx │ │ │ │ │ ├── TeamHome.tsx │ │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ ├── inputs │ │ │ │ ├── LinkDisplay.tsx │ │ │ │ ├── PillButton.tsx │ │ │ │ ├── Switch.tsx │ │ │ │ ├── Table.tsx │ │ │ │ ├── TableFilters.tsx │ │ │ │ ├── datepicker.css │ │ │ │ ├── datepicker.tsx │ │ │ │ ├── index.ts │ │ │ │ └── monthPicker.tsx │ │ │ └── utils │ │ │ │ ├── ActionWithTeamSelector.tsx │ │ │ │ ├── AvatarWithAction.tsx │ │ │ │ ├── BeautifulTitle.tsx │ │ │ │ ├── Error.tsx │ │ │ │ ├── FeedbackButton.tsx │ │ │ │ ├── Footer.tsx │ │ │ │ ├── FormWithChoice.tsx │ │ │ │ ├── Option.ts │ │ │ │ ├── OtoroshiStatsVizualisation.tsx │ │ │ │ ├── PaginatedComponent.tsx │ │ │ │ ├── Recharts.tsx │ │ │ │ ├── Response.tsx │ │ │ │ ├── Spinner.tsx │ │ │ │ ├── apiUtils.tsx │ │ │ │ ├── array.ts │ │ │ │ ├── dnd │ │ │ │ ├── SortableList.tsx │ │ │ │ ├── SortableTree.tsx │ │ │ │ ├── Wrapper.module.scss │ │ │ │ ├── Wrapper.tsx │ │ │ │ ├── components │ │ │ │ │ ├── Action.module.scss │ │ │ │ │ ├── Action.tsx │ │ │ │ │ ├── Handle.tsx │ │ │ │ │ ├── Remove.tsx │ │ │ │ │ ├── TreeItem.module.scss │ │ │ │ │ ├── TreeItem.tsx │ │ │ │ │ ├── Update.tsx │ │ │ │ │ └── sortableTreeItem.tsx │ │ │ │ ├── keyboardCoordinates.ts │ │ │ │ ├── types.ts │ │ │ │ └── utilities.ts │ │ │ │ ├── entities.ts │ │ │ │ ├── formatters.tsx │ │ │ │ ├── function.tsx │ │ │ │ ├── graphqlUtils.ts │ │ │ │ ├── index.ts │ │ │ │ ├── login.tsx │ │ │ │ ├── permissions │ │ │ │ ├── Can.tsx │ │ │ │ ├── actions.ts │ │ │ │ ├── index.ts │ │ │ │ ├── permissions.ts │ │ │ │ └── subjects.ts │ │ │ │ ├── queryWrapper.tsx │ │ │ │ ├── sidebar │ │ │ │ ├── RightPanel.tsx │ │ │ │ ├── SideBar.tsx │ │ │ │ ├── companions │ │ │ │ │ ├── Companion.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── index.ts │ │ │ │ └── panels │ │ │ │ │ ├── AddPanel.tsx │ │ │ │ │ ├── GuestPanel.tsx │ │ │ │ │ ├── MessagePanel.tsx │ │ │ │ │ ├── MorePanel.tsx │ │ │ │ │ ├── SearchPanel.tsx │ │ │ │ │ ├── SettingsPanel.tsx │ │ │ │ │ └── index.ts │ │ │ │ └── tenantUtils.ts │ │ ├── contexts │ │ │ ├── globalContext.tsx │ │ │ ├── i18n-context.tsx │ │ │ ├── index.ts │ │ │ ├── modalContext.tsx │ │ │ ├── modals │ │ │ │ ├── Alert.tsx │ │ │ │ ├── ApiDocumentationSelectModal.tsx │ │ │ │ ├── ApiKeySelectModal.tsx │ │ │ │ ├── ApiSelectModal.tsx │ │ │ │ ├── AssetsChooserModal.tsx │ │ │ │ ├── Confirm.tsx │ │ │ │ ├── ContactModal.tsx │ │ │ │ ├── CustomModal.tsx │ │ │ │ ├── FormModal.tsx │ │ │ │ ├── JoinTeamInvitationModal.tsx │ │ │ │ ├── LoginOrRegisterModal.tsx │ │ │ │ ├── Prompt.tsx │ │ │ │ ├── SaveOrCancelModal.tsx │ │ │ │ ├── SessionModal.tsx │ │ │ │ ├── SubscriptionMetadataModal.tsx │ │ │ │ ├── TeamInvitationModal.tsx │ │ │ │ ├── TeamSelectionModal.tsx │ │ │ │ ├── TestingApiKeyModal.tsx │ │ │ │ ├── index.ts │ │ │ │ └── types.ts │ │ │ ├── navContext.tsx │ │ │ └── navUtils.ts │ │ ├── index.tsx │ │ ├── locales │ │ │ ├── en │ │ │ │ └── translation.json │ │ │ └── fr │ │ │ │ └── translation.json │ │ ├── services │ │ │ ├── currencies.ts │ │ │ ├── customize.ts │ │ │ ├── index.ts │ │ │ ├── messages.ts │ │ │ └── showdown.ts │ │ ├── style │ │ │ ├── components │ │ │ │ ├── antCalandar.scss │ │ │ │ ├── apiSubscription.scss │ │ │ │ ├── apicard.scss │ │ │ │ ├── avatarWithAction.scss │ │ │ │ ├── backOffice.scss │ │ │ │ ├── badge.scss │ │ │ │ ├── breadcrumb.scss │ │ │ │ ├── btn.scss │ │ │ │ ├── consumptions.scss │ │ │ │ ├── discussion.scss │ │ │ │ ├── dragAndDropDoc.scss │ │ │ │ ├── fastMode.scss │ │ │ │ ├── form.scss │ │ │ │ ├── input.scss │ │ │ │ ├── messages.scss │ │ │ │ ├── modal.scss │ │ │ │ ├── navDocumentation.scss │ │ │ │ ├── note.scss │ │ │ │ ├── notification.scss │ │ │ │ ├── pagination.scss │ │ │ │ ├── popover.scss │ │ │ │ ├── pricingCard.scss │ │ │ │ ├── reactSelect.scss │ │ │ │ ├── reactTable.scss │ │ │ │ ├── recharts.scss │ │ │ │ ├── redoc.scss │ │ │ │ ├── sortable.scss │ │ │ │ ├── swagger.scss │ │ │ │ ├── switch.scss │ │ │ │ ├── tabs.scss │ │ │ │ ├── teamBilling.scss │ │ │ │ ├── tiles.scss │ │ │ │ └── toastr.scss │ │ │ ├── layout │ │ │ │ ├── footer.scss │ │ │ │ ├── home.scss │ │ │ │ ├── login.scss │ │ │ │ ├── navbar.scss │ │ │ │ ├── rightPanel.scss │ │ │ │ ├── sidebar.scss │ │ │ │ └── style.scss │ │ │ ├── main.scss │ │ │ ├── swagger.css │ │ │ └── variables.scss │ │ └── types │ │ │ ├── api.ts │ │ │ ├── chat.ts │ │ │ ├── context.ts │ │ │ ├── gql.ts │ │ │ ├── index.ts │ │ │ ├── team.ts │ │ │ ├── tenant.ts │ │ │ └── types.ts │ ├── stats.json │ ├── tests │ │ ├── .gitignore │ │ ├── _tests │ │ │ ├── anonymousUser.spec.ts │ │ │ ├── completeJourney.spec.ts │ │ │ ├── connectedUser.spec.ts │ │ │ ├── envMode.spec.ts │ │ │ ├── manageMembers.spec.ts │ │ │ ├── readme.md │ │ │ └── resources │ │ │ │ ├── daikoku-env-aggregation-export.ndjson │ │ │ │ ├── daikoku-test-env-mode-export.ndjson │ │ │ │ ├── daikoku-test-export.ndjson │ │ │ │ └── daikoku_state.ndjson │ │ ├── config │ │ │ ├── daikoku │ │ │ │ ├── daikoku_state.ndjson │ │ │ │ └── daikoku_state_local.ndjson │ │ │ ├── ldap │ │ │ │ └── bootstrap.ldif │ │ │ ├── mocks │ │ │ │ └── initializer.json │ │ │ ├── nginx.conf │ │ │ ├── otoroshi │ │ │ │ ├── _otoroshi-state.json │ │ │ │ └── otoroshi-state.json │ │ │ └── postgres │ │ │ │ └── create_database.sql │ │ ├── docker-compose-local.yml │ │ ├── docker-compose.yml │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── playwright.config.js │ │ ├── readme.md │ │ ├── resources │ │ │ ├── daikoku-env-aggregation-export.ndjson │ │ │ ├── daikoku-test-env-mode-export.ndjson │ │ │ └── daikoku-test-export.ndjson │ │ ├── specs │ │ │ ├── admin_api.spec.ts │ │ │ ├── admin_dk.spec.ts │ │ │ ├── api_mgmt.spec.ts │ │ │ ├── connection.spec.ts │ │ │ ├── consultation.spec.ts │ │ │ ├── gestion_membres.spec.ts │ │ │ ├── notifications.ts │ │ │ ├── souscriptions.spec.ts │ │ │ ├── users.ts │ │ │ └── utils.ts │ │ └── test_suites.md │ ├── tsconfig.json │ ├── tsconfig.node.json │ └── vite.config.ts ├── project │ ├── assembly.sbt │ ├── build.properties │ ├── metals.sbt │ ├── plugins.sbt │ └── project │ │ ├── metals.sbt │ │ └── project │ │ └── metals.sbt ├── public │ ├── .gitignore │ ├── fonts │ │ ├── fontawesome │ │ │ ├── LICENSE.txt │ │ │ ├── css │ │ │ │ ├── all.css │ │ │ │ ├── all.min.css │ │ │ │ ├── brands.css │ │ │ │ ├── brands.min.css │ │ │ │ ├── fontawesome.css │ │ │ │ ├── fontawesome.min.css │ │ │ │ ├── regular.css │ │ │ │ ├── regular.min.css │ │ │ │ ├── solid.css │ │ │ │ ├── solid.min.css │ │ │ │ ├── svg-with-js.css │ │ │ │ ├── svg-with-js.min.css │ │ │ │ ├── v4-font-face.css │ │ │ │ ├── v4-font-face.min.css │ │ │ │ ├── v4-shims.css │ │ │ │ ├── v4-shims.min.css │ │ │ │ ├── v5-font-face.css │ │ │ │ └── v5-font-face.min.css │ │ │ ├── js │ │ │ │ ├── all.js │ │ │ │ ├── all.min.js │ │ │ │ ├── brands.js │ │ │ │ ├── brands.min.js │ │ │ │ ├── conflict-detection.js │ │ │ │ ├── conflict-detection.min.js │ │ │ │ ├── fontawesome.js │ │ │ │ ├── fontawesome.min.js │ │ │ │ ├── regular.js │ │ │ │ ├── regular.min.js │ │ │ │ ├── solid.js │ │ │ │ ├── solid.min.js │ │ │ │ ├── v4-shims.js │ │ │ │ └── v4-shims.min.js │ │ │ ├── less │ │ │ │ ├── _animated.less │ │ │ │ ├── _bordered-pulled.less │ │ │ │ ├── _core.less │ │ │ │ ├── _fixed-width.less │ │ │ │ ├── _icons.less │ │ │ │ ├── _list.less │ │ │ │ ├── _mixins.less │ │ │ │ ├── _rotated-flipped.less │ │ │ │ ├── _screen-reader.less │ │ │ │ ├── _shims.less │ │ │ │ ├── _sizing.less │ │ │ │ ├── _stacked.less │ │ │ │ ├── _variables.less │ │ │ │ ├── brands.less │ │ │ │ ├── fontawesome.less │ │ │ │ ├── regular.less │ │ │ │ ├── solid.less │ │ │ │ └── v4-shims.less │ │ │ ├── metadata │ │ │ │ ├── categories.yml │ │ │ │ ├── icon-families.json │ │ │ │ ├── icon-families.yml │ │ │ │ ├── icons.json │ │ │ │ ├── icons.yml │ │ │ │ ├── shims.json │ │ │ │ ├── shims.yml │ │ │ │ └── sponsors.yml │ │ │ ├── scss │ │ │ │ ├── _animated.scss │ │ │ │ ├── _bordered-pulled.scss │ │ │ │ ├── _core.scss │ │ │ │ ├── _fixed-width.scss │ │ │ │ ├── _functions.scss │ │ │ │ ├── _icons.scss │ │ │ │ ├── _list.scss │ │ │ │ ├── _mixins.scss │ │ │ │ ├── _rotated-flipped.scss │ │ │ │ ├── _screen-reader.scss │ │ │ │ ├── _shims.scss │ │ │ │ ├── _sizing.scss │ │ │ │ ├── _stacked.scss │ │ │ │ ├── _variables.scss │ │ │ │ ├── brands.scss │ │ │ │ ├── fontawesome.scss │ │ │ │ ├── regular.scss │ │ │ │ ├── solid.scss │ │ │ │ └── v4-shims.scss │ │ │ ├── sprites │ │ │ │ ├── brands.svg │ │ │ │ ├── regular.svg │ │ │ │ └── solid.svg │ │ │ ├── svgs │ │ │ │ ├── brands │ │ │ │ │ ├── 42-group.svg │ │ │ │ │ ├── 500px.svg │ │ │ │ │ ├── accessible-icon.svg │ │ │ │ │ ├── accusoft.svg │ │ │ │ │ ├── adn.svg │ │ │ │ │ ├── adversal.svg │ │ │ │ │ ├── affiliatetheme.svg │ │ │ │ │ ├── airbnb.svg │ │ │ │ │ ├── algolia.svg │ │ │ │ │ ├── alipay.svg │ │ │ │ │ ├── amazon-pay.svg │ │ │ │ │ ├── amazon.svg │ │ │ │ │ ├── amilia.svg │ │ │ │ │ ├── android.svg │ │ │ │ │ ├── angellist.svg │ │ │ │ │ ├── angrycreative.svg │ │ │ │ │ ├── angular.svg │ │ │ │ │ ├── app-store-ios.svg │ │ │ │ │ ├── app-store.svg │ │ │ │ │ ├── apper.svg │ │ │ │ │ ├── apple-pay.svg │ │ │ │ │ ├── apple.svg │ │ │ │ │ ├── artstation.svg │ │ │ │ │ ├── asymmetrik.svg │ │ │ │ │ ├── atlassian.svg │ │ │ │ │ ├── audible.svg │ │ │ │ │ ├── autoprefixer.svg │ │ │ │ │ ├── avianex.svg │ │ │ │ │ ├── aviato.svg │ │ │ │ │ ├── aws.svg │ │ │ │ │ ├── bandcamp.svg │ │ │ │ │ ├── battle-net.svg │ │ │ │ │ ├── behance.svg │ │ │ │ │ ├── bilibili.svg │ │ │ │ │ ├── bimobject.svg │ │ │ │ │ ├── bitbucket.svg │ │ │ │ │ ├── bitcoin.svg │ │ │ │ │ ├── bity.svg │ │ │ │ │ ├── black-tie.svg │ │ │ │ │ ├── blackberry.svg │ │ │ │ │ ├── blogger-b.svg │ │ │ │ │ ├── blogger.svg │ │ │ │ │ ├── bluetooth-b.svg │ │ │ │ │ ├── bluetooth.svg │ │ │ │ │ ├── bootstrap.svg │ │ │ │ │ ├── bots.svg │ │ │ │ │ ├── btc.svg │ │ │ │ │ ├── buffer.svg │ │ │ │ │ ├── buromobelexperte.svg │ │ │ │ │ ├── buy-n-large.svg │ │ │ │ │ ├── buysellads.svg │ │ │ │ │ ├── canadian-maple-leaf.svg │ │ │ │ │ ├── cc-amazon-pay.svg │ │ │ │ │ ├── cc-amex.svg │ │ │ │ │ ├── cc-apple-pay.svg │ │ │ │ │ ├── cc-diners-club.svg │ │ │ │ │ ├── cc-discover.svg │ │ │ │ │ ├── cc-jcb.svg │ │ │ │ │ ├── cc-mastercard.svg │ │ │ │ │ ├── cc-paypal.svg │ │ │ │ │ ├── cc-stripe.svg │ │ │ │ │ ├── cc-visa.svg │ │ │ │ │ ├── centercode.svg │ │ │ │ │ ├── centos.svg │ │ │ │ │ ├── chrome.svg │ │ │ │ │ ├── chromecast.svg │ │ │ │ │ ├── cloudflare.svg │ │ │ │ │ ├── cloudscale.svg │ │ │ │ │ ├── cloudsmith.svg │ │ │ │ │ ├── cloudversify.svg │ │ │ │ │ ├── cmplid.svg │ │ │ │ │ ├── codepen.svg │ │ │ │ │ ├── codiepie.svg │ │ │ │ │ ├── confluence.svg │ │ │ │ │ ├── connectdevelop.svg │ │ │ │ │ ├── contao.svg │ │ │ │ │ ├── cotton-bureau.svg │ │ │ │ │ ├── cpanel.svg │ │ │ │ │ ├── creative-commons-by.svg │ │ │ │ │ ├── creative-commons-nc-eu.svg │ │ │ │ │ ├── creative-commons-nc-jp.svg │ │ │ │ │ ├── creative-commons-nc.svg │ │ │ │ │ ├── creative-commons-nd.svg │ │ │ │ │ ├── creative-commons-pd-alt.svg │ │ │ │ │ ├── creative-commons-pd.svg │ │ │ │ │ ├── creative-commons-remix.svg │ │ │ │ │ ├── creative-commons-sa.svg │ │ │ │ │ ├── creative-commons-sampling-plus.svg │ │ │ │ │ ├── creative-commons-sampling.svg │ │ │ │ │ ├── creative-commons-share.svg │ │ │ │ │ ├── creative-commons-zero.svg │ │ │ │ │ ├── creative-commons.svg │ │ │ │ │ ├── critical-role.svg │ │ │ │ │ ├── css3-alt.svg │ │ │ │ │ ├── css3.svg │ │ │ │ │ ├── cuttlefish.svg │ │ │ │ │ ├── d-and-d-beyond.svg │ │ │ │ │ ├── d-and-d.svg │ │ │ │ │ ├── dailymotion.svg │ │ │ │ │ ├── dashcube.svg │ │ │ │ │ ├── deezer.svg │ │ │ │ │ ├── delicious.svg │ │ │ │ │ ├── deploydog.svg │ │ │ │ │ ├── deskpro.svg │ │ │ │ │ ├── dev.svg │ │ │ │ │ ├── deviantart.svg │ │ │ │ │ ├── dhl.svg │ │ │ │ │ ├── diaspora.svg │ │ │ │ │ ├── digg.svg │ │ │ │ │ ├── digital-ocean.svg │ │ │ │ │ ├── discord.svg │ │ │ │ │ ├── discourse.svg │ │ │ │ │ ├── dochub.svg │ │ │ │ │ ├── docker.svg │ │ │ │ │ ├── draft2digital.svg │ │ │ │ │ ├── dribbble.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.svg │ │ │ │ │ ├── fantasy-flight-games.svg │ │ │ │ │ ├── fedex.svg │ │ │ │ │ ├── fedora.svg │ │ │ │ │ ├── figma.svg │ │ │ │ │ ├── firefox-browser.svg │ │ │ │ │ ├── firefox.svg │ │ │ │ │ ├── first-order-alt.svg │ │ │ │ │ ├── first-order.svg │ │ │ │ │ ├── firstdraft.svg │ │ │ │ │ ├── flickr.svg │ │ │ │ │ ├── flipboard.svg │ │ │ │ │ ├── fly.svg │ │ │ │ │ ├── font-awesome.svg │ │ │ │ │ ├── fonticons-fi.svg │ │ │ │ │ ├── fonticons.svg │ │ │ │ │ ├── fort-awesome-alt.svg │ │ │ │ │ ├── fort-awesome.svg │ │ │ │ │ ├── forumbee.svg │ │ │ │ │ ├── foursquare.svg │ │ │ │ │ ├── free-code-camp.svg │ │ │ │ │ ├── freebsd.svg │ │ │ │ │ ├── fulcrum.svg │ │ │ │ │ ├── galactic-republic.svg │ │ │ │ │ ├── galactic-senate.svg │ │ │ │ │ ├── get-pocket.svg │ │ │ │ │ ├── gg-circle.svg │ │ │ │ │ ├── gg.svg │ │ │ │ │ ├── git-alt.svg │ │ │ │ │ ├── git.svg │ │ │ │ │ ├── github-alt.svg │ │ │ │ │ ├── github.svg │ │ │ │ │ ├── gitkraken.svg │ │ │ │ │ ├── gitlab.svg │ │ │ │ │ ├── gitter.svg │ │ │ │ │ ├── glide-g.svg │ │ │ │ │ ├── glide.svg │ │ │ │ │ ├── gofore.svg │ │ │ │ │ ├── golang.svg │ │ │ │ │ ├── goodreads-g.svg │ │ │ │ │ ├── goodreads.svg │ │ │ │ │ ├── google-drive.svg │ │ │ │ │ ├── google-pay.svg │ │ │ │ │ ├── google-play.svg │ │ │ │ │ ├── google-plus-g.svg │ │ │ │ │ ├── google-plus.svg │ │ │ │ │ ├── google-wallet.svg │ │ │ │ │ ├── google.svg │ │ │ │ │ ├── gratipay.svg │ │ │ │ │ ├── grav.svg │ │ │ │ │ ├── gripfire.svg │ │ │ │ │ ├── grunt.svg │ │ │ │ │ ├── guilded.svg │ │ │ │ │ ├── gulp.svg │ │ │ │ │ ├── hacker-news.svg │ │ │ │ │ ├── hackerrank.svg │ │ │ │ │ ├── hashnode.svg │ │ │ │ │ ├── hips.svg │ │ │ │ │ ├── hire-a-helper.svg │ │ │ │ │ ├── hive.svg │ │ │ │ │ ├── hooli.svg │ │ │ │ │ ├── hornbill.svg │ │ │ │ │ ├── hotjar.svg │ │ │ │ │ ├── houzz.svg │ │ │ │ │ ├── html5.svg │ │ │ │ │ ├── hubspot.svg │ │ │ │ │ ├── ideal.svg │ │ │ │ │ ├── imdb.svg │ │ │ │ │ ├── instagram.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.svg │ │ │ │ │ ├── jsfiddle.svg │ │ │ │ │ ├── kaggle.svg │ │ │ │ │ ├── keybase.svg │ │ │ │ │ ├── keycdn.svg │ │ │ │ │ ├── kickstarter-k.svg │ │ │ │ │ ├── kickstarter.svg │ │ │ │ │ ├── korvue.svg │ │ │ │ │ ├── laravel.svg │ │ │ │ │ ├── lastfm.svg │ │ │ │ │ ├── leanpub.svg │ │ │ │ │ ├── less.svg │ │ │ │ │ ├── line.svg │ │ │ │ │ ├── linkedin-in.svg │ │ │ │ │ ├── linkedin.svg │ │ │ │ │ ├── linode.svg │ │ │ │ │ ├── linux.svg │ │ │ │ │ ├── lyft.svg │ │ │ │ │ ├── magento.svg │ │ │ │ │ ├── mailchimp.svg │ │ │ │ │ ├── mandalorian.svg │ │ │ │ │ ├── markdown.svg │ │ │ │ │ ├── mastodon.svg │ │ │ │ │ ├── maxcdn.svg │ │ │ │ │ ├── mdb.svg │ │ │ │ │ ├── medapps.svg │ │ │ │ │ ├── medium.svg │ │ │ │ │ ├── medrt.svg │ │ │ │ │ ├── meetup.svg │ │ │ │ │ ├── megaport.svg │ │ │ │ │ ├── mendeley.svg │ │ │ │ │ ├── meta.svg │ │ │ │ │ ├── microblog.svg │ │ │ │ │ ├── microsoft.svg │ │ │ │ │ ├── mix.svg │ │ │ │ │ ├── mixcloud.svg │ │ │ │ │ ├── mixer.svg │ │ │ │ │ ├── mizuni.svg │ │ │ │ │ ├── modx.svg │ │ │ │ │ ├── monero.svg │ │ │ │ │ ├── napster.svg │ │ │ │ │ ├── neos.svg │ │ │ │ │ ├── nfc-directional.svg │ │ │ │ │ ├── nfc-symbol.svg │ │ │ │ │ ├── nimblr.svg │ │ │ │ │ ├── node-js.svg │ │ │ │ │ ├── node.svg │ │ │ │ │ ├── npm.svg │ │ │ │ │ ├── ns8.svg │ │ │ │ │ ├── nutritionix.svg │ │ │ │ │ ├── octopus-deploy.svg │ │ │ │ │ ├── odnoklassniki.svg │ │ │ │ │ ├── odysee.svg │ │ │ │ │ ├── old-republic.svg │ │ │ │ │ ├── opencart.svg │ │ │ │ │ ├── openid.svg │ │ │ │ │ ├── opera.svg │ │ │ │ │ ├── optin-monster.svg │ │ │ │ │ ├── orcid.svg │ │ │ │ │ ├── osi.svg │ │ │ │ │ ├── padlet.svg │ │ │ │ │ ├── page4.svg │ │ │ │ │ ├── pagelines.svg │ │ │ │ │ ├── palfed.svg │ │ │ │ │ ├── patreon.svg │ │ │ │ │ ├── paypal.svg │ │ │ │ │ ├── perbyte.svg │ │ │ │ │ ├── periscope.svg │ │ │ │ │ ├── phabricator.svg │ │ │ │ │ ├── phoenix-framework.svg │ │ │ │ │ ├── phoenix-squadron.svg │ │ │ │ │ ├── php.svg │ │ │ │ │ ├── pied-piper-alt.svg │ │ │ │ │ ├── pied-piper-hat.svg │ │ │ │ │ ├── pied-piper-pp.svg │ │ │ │ │ ├── pied-piper.svg │ │ │ │ │ ├── pinterest-p.svg │ │ │ │ │ ├── pinterest.svg │ │ │ │ │ ├── pix.svg │ │ │ │ │ ├── playstation.svg │ │ │ │ │ ├── product-hunt.svg │ │ │ │ │ ├── pushed.svg │ │ │ │ │ ├── python.svg │ │ │ │ │ ├── qq.svg │ │ │ │ │ ├── quinscape.svg │ │ │ │ │ ├── quora.svg │ │ │ │ │ ├── r-project.svg │ │ │ │ │ ├── raspberry-pi.svg │ │ │ │ │ ├── ravelry.svg │ │ │ │ │ ├── react.svg │ │ │ │ │ ├── reacteurope.svg │ │ │ │ │ ├── readme.svg │ │ │ │ │ ├── rebel.svg │ │ │ │ │ ├── red-river.svg │ │ │ │ │ ├── reddit-alien.svg │ │ │ │ │ ├── reddit.svg │ │ │ │ │ ├── redhat.svg │ │ │ │ │ ├── renren.svg │ │ │ │ │ ├── replyd.svg │ │ │ │ │ ├── researchgate.svg │ │ │ │ │ ├── resolving.svg │ │ │ │ │ ├── rev.svg │ │ │ │ │ ├── rocketchat.svg │ │ │ │ │ ├── rockrms.svg │ │ │ │ │ ├── rust.svg │ │ │ │ │ ├── safari.svg │ │ │ │ │ ├── salesforce.svg │ │ │ │ │ ├── sass.svg │ │ │ │ │ ├── schlix.svg │ │ │ │ │ ├── screenpal.svg │ │ │ │ │ ├── scribd.svg │ │ │ │ │ ├── searchengin.svg │ │ │ │ │ ├── sellcast.svg │ │ │ │ │ ├── sellsy.svg │ │ │ │ │ ├── servicestack.svg │ │ │ │ │ ├── shirtsinbulk.svg │ │ │ │ │ ├── shopify.svg │ │ │ │ │ ├── shopware.svg │ │ │ │ │ ├── simplybuilt.svg │ │ │ │ │ ├── sistrix.svg │ │ │ │ │ ├── sith.svg │ │ │ │ │ ├── sitrox.svg │ │ │ │ │ ├── sketch.svg │ │ │ │ │ ├── skyatlas.svg │ │ │ │ │ ├── skype.svg │ │ │ │ │ ├── slack.svg │ │ │ │ │ ├── slideshare.svg │ │ │ │ │ ├── snapchat.svg │ │ │ │ │ ├── soundcloud.svg │ │ │ │ │ ├── sourcetree.svg │ │ │ │ │ ├── space-awesome.svg │ │ │ │ │ ├── speakap.svg │ │ │ │ │ ├── speaker-deck.svg │ │ │ │ │ ├── spotify.svg │ │ │ │ │ ├── square-behance.svg │ │ │ │ │ ├── square-dribbble.svg │ │ │ │ │ ├── square-facebook.svg │ │ │ │ │ ├── square-font-awesome-stroke.svg │ │ │ │ │ ├── square-font-awesome.svg │ │ │ │ │ ├── square-git.svg │ │ │ │ │ ├── square-github.svg │ │ │ │ │ ├── square-gitlab.svg │ │ │ │ │ ├── square-google-plus.svg │ │ │ │ │ ├── square-hacker-news.svg │ │ │ │ │ ├── square-instagram.svg │ │ │ │ │ ├── square-js.svg │ │ │ │ │ ├── square-lastfm.svg │ │ │ │ │ ├── square-odnoklassniki.svg │ │ │ │ │ ├── square-pied-piper.svg │ │ │ │ │ ├── square-pinterest.svg │ │ │ │ │ ├── square-reddit.svg │ │ │ │ │ ├── square-snapchat.svg │ │ │ │ │ ├── square-steam.svg │ │ │ │ │ ├── square-tumblr.svg │ │ │ │ │ ├── square-twitter.svg │ │ │ │ │ ├── square-viadeo.svg │ │ │ │ │ ├── square-vimeo.svg │ │ │ │ │ ├── square-whatsapp.svg │ │ │ │ │ ├── square-xing.svg │ │ │ │ │ ├── square-youtube.svg │ │ │ │ │ ├── squarespace.svg │ │ │ │ │ ├── stack-exchange.svg │ │ │ │ │ ├── stack-overflow.svg │ │ │ │ │ ├── stackpath.svg │ │ │ │ │ ├── staylinked.svg │ │ │ │ │ ├── steam-symbol.svg │ │ │ │ │ ├── steam.svg │ │ │ │ │ ├── sticker-mule.svg │ │ │ │ │ ├── strava.svg │ │ │ │ │ ├── stripe-s.svg │ │ │ │ │ ├── stripe.svg │ │ │ │ │ ├── stubber.svg │ │ │ │ │ ├── studiovinari.svg │ │ │ │ │ ├── stumbleupon-circle.svg │ │ │ │ │ ├── stumbleupon.svg │ │ │ │ │ ├── superpowers.svg │ │ │ │ │ ├── supple.svg │ │ │ │ │ ├── suse.svg │ │ │ │ │ ├── swift.svg │ │ │ │ │ ├── symfony.svg │ │ │ │ │ ├── teamspeak.svg │ │ │ │ │ ├── telegram.svg │ │ │ │ │ ├── tencent-weibo.svg │ │ │ │ │ ├── the-red-yeti.svg │ │ │ │ │ ├── themeco.svg │ │ │ │ │ ├── themeisle.svg │ │ │ │ │ ├── think-peaks.svg │ │ │ │ │ ├── tiktok.svg │ │ │ │ │ ├── trade-federation.svg │ │ │ │ │ ├── trello.svg │ │ │ │ │ ├── tumblr.svg │ │ │ │ │ ├── twitch.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.svg │ │ │ │ │ ├── viber.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.svg │ │ │ │ │ ├── whmcs.svg │ │ │ │ │ ├── wikipedia-w.svg │ │ │ │ │ ├── windows.svg │ │ │ │ │ ├── wirsindhandwerk.svg │ │ │ │ │ ├── wix.svg │ │ │ │ │ ├── wizards-of-the-coast.svg │ │ │ │ │ ├── wodu.svg │ │ │ │ │ ├── wolf-pack-battalion.svg │ │ │ │ │ ├── wordpress-simple.svg │ │ │ │ │ ├── wordpress.svg │ │ │ │ │ ├── wpbeginner.svg │ │ │ │ │ ├── wpexplorer.svg │ │ │ │ │ ├── wpforms.svg │ │ │ │ │ ├── wpressr.svg │ │ │ │ │ ├── xbox.svg │ │ │ │ │ ├── xing.svg │ │ │ │ │ ├── y-combinator.svg │ │ │ │ │ ├── yahoo.svg │ │ │ │ │ ├── yammer.svg │ │ │ │ │ ├── yandex-international.svg │ │ │ │ │ ├── yandex.svg │ │ │ │ │ ├── yarn.svg │ │ │ │ │ ├── yelp.svg │ │ │ │ │ ├── yoast.svg │ │ │ │ │ ├── youtube.svg │ │ │ │ │ └── zhihu.svg │ │ │ │ ├── regular │ │ │ │ │ ├── address-book.svg │ │ │ │ │ ├── address-card.svg │ │ │ │ │ ├── bell-slash.svg │ │ │ │ │ ├── bell.svg │ │ │ │ │ ├── bookmark.svg │ │ │ │ │ ├── building.svg │ │ │ │ │ ├── calendar-check.svg │ │ │ │ │ ├── calendar-days.svg │ │ │ │ │ ├── calendar-minus.svg │ │ │ │ │ ├── calendar-plus.svg │ │ │ │ │ ├── calendar-xmark.svg │ │ │ │ │ ├── calendar.svg │ │ │ │ │ ├── chart-bar.svg │ │ │ │ │ ├── chess-bishop.svg │ │ │ │ │ ├── chess-king.svg │ │ │ │ │ ├── chess-knight.svg │ │ │ │ │ ├── chess-pawn.svg │ │ │ │ │ ├── chess-queen.svg │ │ │ │ │ ├── chess-rook.svg │ │ │ │ │ ├── circle-check.svg │ │ │ │ │ ├── circle-dot.svg │ │ │ │ │ ├── circle-down.svg │ │ │ │ │ ├── circle-left.svg │ │ │ │ │ ├── circle-pause.svg │ │ │ │ │ ├── circle-play.svg │ │ │ │ │ ├── circle-question.svg │ │ │ │ │ ├── circle-right.svg │ │ │ │ │ ├── circle-stop.svg │ │ │ │ │ ├── circle-up.svg │ │ │ │ │ ├── circle-user.svg │ │ │ │ │ ├── circle-xmark.svg │ │ │ │ │ ├── circle.svg │ │ │ │ │ ├── clipboard.svg │ │ │ │ │ ├── clock.svg │ │ │ │ │ ├── clone.svg │ │ │ │ │ ├── closed-captioning.svg │ │ │ │ │ ├── comment-dots.svg │ │ │ │ │ ├── comment.svg │ │ │ │ │ ├── comments.svg │ │ │ │ │ ├── compass.svg │ │ │ │ │ ├── copy.svg │ │ │ │ │ ├── copyright.svg │ │ │ │ │ ├── credit-card.svg │ │ │ │ │ ├── envelope-open.svg │ │ │ │ │ ├── envelope.svg │ │ │ │ │ ├── eye-slash.svg │ │ │ │ │ ├── eye.svg │ │ │ │ │ ├── face-angry.svg │ │ │ │ │ ├── face-dizzy.svg │ │ │ │ │ ├── face-flushed.svg │ │ │ │ │ ├── face-frown-open.svg │ │ │ │ │ ├── face-frown.svg │ │ │ │ │ ├── face-grimace.svg │ │ │ │ │ ├── face-grin-beam-sweat.svg │ │ │ │ │ ├── face-grin-beam.svg │ │ │ │ │ ├── face-grin-hearts.svg │ │ │ │ │ ├── face-grin-squint-tears.svg │ │ │ │ │ ├── face-grin-squint.svg │ │ │ │ │ ├── face-grin-stars.svg │ │ │ │ │ ├── face-grin-tears.svg │ │ │ │ │ ├── face-grin-tongue-squint.svg │ │ │ │ │ ├── face-grin-tongue-wink.svg │ │ │ │ │ ├── face-grin-tongue.svg │ │ │ │ │ ├── face-grin-wide.svg │ │ │ │ │ ├── face-grin-wink.svg │ │ │ │ │ ├── face-grin.svg │ │ │ │ │ ├── face-kiss-beam.svg │ │ │ │ │ ├── face-kiss-wink-heart.svg │ │ │ │ │ ├── face-kiss.svg │ │ │ │ │ ├── face-laugh-beam.svg │ │ │ │ │ ├── face-laugh-squint.svg │ │ │ │ │ ├── face-laugh-wink.svg │ │ │ │ │ ├── face-laugh.svg │ │ │ │ │ ├── face-meh-blank.svg │ │ │ │ │ ├── face-meh.svg │ │ │ │ │ ├── face-rolling-eyes.svg │ │ │ │ │ ├── face-sad-cry.svg │ │ │ │ │ ├── face-sad-tear.svg │ │ │ │ │ ├── face-smile-beam.svg │ │ │ │ │ ├── face-smile-wink.svg │ │ │ │ │ ├── face-smile.svg │ │ │ │ │ ├── face-surprise.svg │ │ │ │ │ ├── face-tired.svg │ │ │ │ │ ├── file-audio.svg │ │ │ │ │ ├── file-code.svg │ │ │ │ │ ├── file-excel.svg │ │ │ │ │ ├── file-image.svg │ │ │ │ │ ├── file-lines.svg │ │ │ │ │ ├── file-pdf.svg │ │ │ │ │ ├── file-powerpoint.svg │ │ │ │ │ ├── file-video.svg │ │ │ │ │ ├── file-word.svg │ │ │ │ │ ├── file-zipper.svg │ │ │ │ │ ├── file.svg │ │ │ │ │ ├── flag.svg │ │ │ │ │ ├── floppy-disk.svg │ │ │ │ │ ├── folder-closed.svg │ │ │ │ │ ├── folder-open.svg │ │ │ │ │ ├── folder.svg │ │ │ │ │ ├── font-awesome.svg │ │ │ │ │ ├── futbol.svg │ │ │ │ │ ├── gem.svg │ │ │ │ │ ├── hand-back-fist.svg │ │ │ │ │ ├── hand-lizard.svg │ │ │ │ │ ├── hand-peace.svg │ │ │ │ │ ├── hand-point-down.svg │ │ │ │ │ ├── hand-point-left.svg │ │ │ │ │ ├── hand-point-right.svg │ │ │ │ │ ├── hand-point-up.svg │ │ │ │ │ ├── hand-pointer.svg │ │ │ │ │ ├── hand-scissors.svg │ │ │ │ │ ├── hand-spock.svg │ │ │ │ │ ├── hand.svg │ │ │ │ │ ├── handshake.svg │ │ │ │ │ ├── hard-drive.svg │ │ │ │ │ ├── heart.svg │ │ │ │ │ ├── hospital.svg │ │ │ │ │ ├── hourglass-half.svg │ │ │ │ │ ├── hourglass.svg │ │ │ │ │ ├── id-badge.svg │ │ │ │ │ ├── id-card.svg │ │ │ │ │ ├── image.svg │ │ │ │ │ ├── images.svg │ │ │ │ │ ├── keyboard.svg │ │ │ │ │ ├── lemon.svg │ │ │ │ │ ├── life-ring.svg │ │ │ │ │ ├── lightbulb.svg │ │ │ │ │ ├── map.svg │ │ │ │ │ ├── message.svg │ │ │ │ │ ├── money-bill-1.svg │ │ │ │ │ ├── moon.svg │ │ │ │ │ ├── newspaper.svg │ │ │ │ │ ├── note-sticky.svg │ │ │ │ │ ├── object-group.svg │ │ │ │ │ ├── object-ungroup.svg │ │ │ │ │ ├── paper-plane.svg │ │ │ │ │ ├── paste.svg │ │ │ │ │ ├── pen-to-square.svg │ │ │ │ │ ├── rectangle-list.svg │ │ │ │ │ ├── rectangle-xmark.svg │ │ │ │ │ ├── registered.svg │ │ │ │ │ ├── share-from-square.svg │ │ │ │ │ ├── snowflake.svg │ │ │ │ │ ├── square-caret-down.svg │ │ │ │ │ ├── square-caret-left.svg │ │ │ │ │ ├── square-caret-right.svg │ │ │ │ │ ├── square-caret-up.svg │ │ │ │ │ ├── square-check.svg │ │ │ │ │ ├── square-full.svg │ │ │ │ │ ├── square-minus.svg │ │ │ │ │ ├── square-plus.svg │ │ │ │ │ ├── square.svg │ │ │ │ │ ├── star-half-stroke.svg │ │ │ │ │ ├── star-half.svg │ │ │ │ │ ├── star.svg │ │ │ │ │ ├── sun.svg │ │ │ │ │ ├── thumbs-down.svg │ │ │ │ │ ├── thumbs-up.svg │ │ │ │ │ ├── trash-can.svg │ │ │ │ │ ├── user.svg │ │ │ │ │ ├── window-maximize.svg │ │ │ │ │ ├── window-minimize.svg │ │ │ │ │ └── window-restore.svg │ │ │ │ └── solid │ │ │ │ │ ├── 0.svg │ │ │ │ │ ├── 1.svg │ │ │ │ │ ├── 2.svg │ │ │ │ │ ├── 3.svg │ │ │ │ │ ├── 4.svg │ │ │ │ │ ├── 5.svg │ │ │ │ │ ├── 6.svg │ │ │ │ │ ├── 7.svg │ │ │ │ │ ├── 8.svg │ │ │ │ │ ├── 9.svg │ │ │ │ │ ├── a.svg │ │ │ │ │ ├── address-book.svg │ │ │ │ │ ├── address-card.svg │ │ │ │ │ ├── align-center.svg │ │ │ │ │ ├── align-justify.svg │ │ │ │ │ ├── align-left.svg │ │ │ │ │ ├── align-right.svg │ │ │ │ │ ├── anchor-circle-check.svg │ │ │ │ │ ├── anchor-circle-exclamation.svg │ │ │ │ │ ├── anchor-circle-xmark.svg │ │ │ │ │ ├── anchor-lock.svg │ │ │ │ │ ├── anchor.svg │ │ │ │ │ ├── angle-down.svg │ │ │ │ │ ├── angle-left.svg │ │ │ │ │ ├── angle-right.svg │ │ │ │ │ ├── angle-up.svg │ │ │ │ │ ├── angles-down.svg │ │ │ │ │ ├── angles-left.svg │ │ │ │ │ ├── angles-right.svg │ │ │ │ │ ├── angles-up.svg │ │ │ │ │ ├── ankh.svg │ │ │ │ │ ├── apple-whole.svg │ │ │ │ │ ├── archway.svg │ │ │ │ │ ├── arrow-down-1-9.svg │ │ │ │ │ ├── arrow-down-9-1.svg │ │ │ │ │ ├── arrow-down-a-z.svg │ │ │ │ │ ├── arrow-down-long.svg │ │ │ │ │ ├── arrow-down-short-wide.svg │ │ │ │ │ ├── arrow-down-up-across-line.svg │ │ │ │ │ ├── arrow-down-up-lock.svg │ │ │ │ │ ├── arrow-down-wide-short.svg │ │ │ │ │ ├── arrow-down-z-a.svg │ │ │ │ │ ├── arrow-down.svg │ │ │ │ │ ├── arrow-left-long.svg │ │ │ │ │ ├── arrow-left.svg │ │ │ │ │ ├── arrow-pointer.svg │ │ │ │ │ ├── arrow-right-arrow-left.svg │ │ │ │ │ ├── arrow-right-from-bracket.svg │ │ │ │ │ ├── arrow-right-long.svg │ │ │ │ │ ├── arrow-right-to-bracket.svg │ │ │ │ │ ├── arrow-right-to-city.svg │ │ │ │ │ ├── arrow-right.svg │ │ │ │ │ ├── arrow-rotate-left.svg │ │ │ │ │ ├── arrow-rotate-right.svg │ │ │ │ │ ├── arrow-trend-down.svg │ │ │ │ │ ├── arrow-trend-up.svg │ │ │ │ │ ├── arrow-turn-down.svg │ │ │ │ │ ├── arrow-turn-up.svg │ │ │ │ │ ├── arrow-up-1-9.svg │ │ │ │ │ ├── arrow-up-9-1.svg │ │ │ │ │ ├── arrow-up-a-z.svg │ │ │ │ │ ├── arrow-up-from-bracket.svg │ │ │ │ │ ├── arrow-up-from-ground-water.svg │ │ │ │ │ ├── arrow-up-from-water-pump.svg │ │ │ │ │ ├── arrow-up-long.svg │ │ │ │ │ ├── arrow-up-right-dots.svg │ │ │ │ │ ├── arrow-up-right-from-square.svg │ │ │ │ │ ├── arrow-up-short-wide.svg │ │ │ │ │ ├── arrow-up-wide-short.svg │ │ │ │ │ ├── arrow-up-z-a.svg │ │ │ │ │ ├── arrow-up.svg │ │ │ │ │ ├── arrows-down-to-line.svg │ │ │ │ │ ├── arrows-down-to-people.svg │ │ │ │ │ ├── arrows-left-right-to-line.svg │ │ │ │ │ ├── arrows-left-right.svg │ │ │ │ │ ├── arrows-rotate.svg │ │ │ │ │ ├── arrows-spin.svg │ │ │ │ │ ├── arrows-split-up-and-left.svg │ │ │ │ │ ├── arrows-to-circle.svg │ │ │ │ │ ├── arrows-to-dot.svg │ │ │ │ │ ├── arrows-to-eye.svg │ │ │ │ │ ├── arrows-turn-right.svg │ │ │ │ │ ├── arrows-turn-to-dots.svg │ │ │ │ │ ├── arrows-up-down-left-right.svg │ │ │ │ │ ├── arrows-up-down.svg │ │ │ │ │ ├── arrows-up-to-line.svg │ │ │ │ │ ├── asterisk.svg │ │ │ │ │ ├── at.svg │ │ │ │ │ ├── atom.svg │ │ │ │ │ ├── audio-description.svg │ │ │ │ │ ├── austral-sign.svg │ │ │ │ │ ├── award.svg │ │ │ │ │ ├── b.svg │ │ │ │ │ ├── baby-carriage.svg │ │ │ │ │ ├── baby.svg │ │ │ │ │ ├── backward-fast.svg │ │ │ │ │ ├── backward-step.svg │ │ │ │ │ ├── backward.svg │ │ │ │ │ ├── bacon.svg │ │ │ │ │ ├── bacteria.svg │ │ │ │ │ ├── bacterium.svg │ │ │ │ │ ├── bag-shopping.svg │ │ │ │ │ ├── bahai.svg │ │ │ │ │ ├── baht-sign.svg │ │ │ │ │ ├── ban-smoking.svg │ │ │ │ │ ├── ban.svg │ │ │ │ │ ├── bandage.svg │ │ │ │ │ ├── bangladeshi-taka-sign.svg │ │ │ │ │ ├── barcode.svg │ │ │ │ │ ├── bars-progress.svg │ │ │ │ │ ├── bars-staggered.svg │ │ │ │ │ ├── bars.svg │ │ │ │ │ ├── baseball-bat-ball.svg │ │ │ │ │ ├── baseball.svg │ │ │ │ │ ├── basket-shopping.svg │ │ │ │ │ ├── basketball.svg │ │ │ │ │ ├── bath.svg │ │ │ │ │ ├── battery-empty.svg │ │ │ │ │ ├── battery-full.svg │ │ │ │ │ ├── battery-half.svg │ │ │ │ │ ├── battery-quarter.svg │ │ │ │ │ ├── battery-three-quarters.svg │ │ │ │ │ ├── bed-pulse.svg │ │ │ │ │ ├── bed.svg │ │ │ │ │ ├── beer-mug-empty.svg │ │ │ │ │ ├── bell-concierge.svg │ │ │ │ │ ├── bell-slash.svg │ │ │ │ │ ├── bell.svg │ │ │ │ │ ├── bezier-curve.svg │ │ │ │ │ ├── bicycle.svg │ │ │ │ │ ├── binoculars.svg │ │ │ │ │ ├── biohazard.svg │ │ │ │ │ ├── bitcoin-sign.svg │ │ │ │ │ ├── blender-phone.svg │ │ │ │ │ ├── blender.svg │ │ │ │ │ ├── blog.svg │ │ │ │ │ ├── bold.svg │ │ │ │ │ ├── bolt-lightning.svg │ │ │ │ │ ├── bolt.svg │ │ │ │ │ ├── bomb.svg │ │ │ │ │ ├── bone.svg │ │ │ │ │ ├── bong.svg │ │ │ │ │ ├── book-atlas.svg │ │ │ │ │ ├── book-bible.svg │ │ │ │ │ ├── book-bookmark.svg │ │ │ │ │ ├── book-journal-whills.svg │ │ │ │ │ ├── book-medical.svg │ │ │ │ │ ├── book-open-reader.svg │ │ │ │ │ ├── book-open.svg │ │ │ │ │ ├── book-quran.svg │ │ │ │ │ ├── book-skull.svg │ │ │ │ │ ├── book-tanakh.svg │ │ │ │ │ ├── book.svg │ │ │ │ │ ├── bookmark.svg │ │ │ │ │ ├── border-all.svg │ │ │ │ │ ├── border-none.svg │ │ │ │ │ ├── border-top-left.svg │ │ │ │ │ ├── bore-hole.svg │ │ │ │ │ ├── bottle-droplet.svg │ │ │ │ │ ├── bottle-water.svg │ │ │ │ │ ├── bowl-food.svg │ │ │ │ │ ├── bowl-rice.svg │ │ │ │ │ ├── bowling-ball.svg │ │ │ │ │ ├── box-archive.svg │ │ │ │ │ ├── box-open.svg │ │ │ │ │ ├── box-tissue.svg │ │ │ │ │ ├── box.svg │ │ │ │ │ ├── boxes-packing.svg │ │ │ │ │ ├── boxes-stacked.svg │ │ │ │ │ ├── braille.svg │ │ │ │ │ ├── brain.svg │ │ │ │ │ ├── brazilian-real-sign.svg │ │ │ │ │ ├── bread-slice.svg │ │ │ │ │ ├── bridge-circle-check.svg │ │ │ │ │ ├── bridge-circle-exclamation.svg │ │ │ │ │ ├── bridge-circle-xmark.svg │ │ │ │ │ ├── bridge-lock.svg │ │ │ │ │ ├── bridge-water.svg │ │ │ │ │ ├── bridge.svg │ │ │ │ │ ├── briefcase-medical.svg │ │ │ │ │ ├── briefcase.svg │ │ │ │ │ ├── broom-ball.svg │ │ │ │ │ ├── broom.svg │ │ │ │ │ ├── brush.svg │ │ │ │ │ ├── bucket.svg │ │ │ │ │ ├── bug-slash.svg │ │ │ │ │ ├── bug.svg │ │ │ │ │ ├── bugs.svg │ │ │ │ │ ├── building-circle-arrow-right.svg │ │ │ │ │ ├── building-circle-check.svg │ │ │ │ │ ├── building-circle-exclamation.svg │ │ │ │ │ ├── building-circle-xmark.svg │ │ │ │ │ ├── building-columns.svg │ │ │ │ │ ├── building-flag.svg │ │ │ │ │ ├── building-lock.svg │ │ │ │ │ ├── building-ngo.svg │ │ │ │ │ ├── building-shield.svg │ │ │ │ │ ├── building-un.svg │ │ │ │ │ ├── building-user.svg │ │ │ │ │ ├── building-wheat.svg │ │ │ │ │ ├── building.svg │ │ │ │ │ ├── bullhorn.svg │ │ │ │ │ ├── bullseye.svg │ │ │ │ │ ├── burger.svg │ │ │ │ │ ├── burst.svg │ │ │ │ │ ├── bus-simple.svg │ │ │ │ │ ├── bus.svg │ │ │ │ │ ├── business-time.svg │ │ │ │ │ ├── c.svg │ │ │ │ │ ├── cable-car.svg │ │ │ │ │ ├── cake-candles.svg │ │ │ │ │ ├── calculator.svg │ │ │ │ │ ├── calendar-check.svg │ │ │ │ │ ├── calendar-day.svg │ │ │ │ │ ├── calendar-days.svg │ │ │ │ │ ├── calendar-minus.svg │ │ │ │ │ ├── calendar-plus.svg │ │ │ │ │ ├── calendar-week.svg │ │ │ │ │ ├── calendar-xmark.svg │ │ │ │ │ ├── calendar.svg │ │ │ │ │ ├── camera-retro.svg │ │ │ │ │ ├── camera-rotate.svg │ │ │ │ │ ├── camera.svg │ │ │ │ │ ├── campground.svg │ │ │ │ │ ├── candy-cane.svg │ │ │ │ │ ├── cannabis.svg │ │ │ │ │ ├── capsules.svg │ │ │ │ │ ├── car-battery.svg │ │ │ │ │ ├── car-burst.svg │ │ │ │ │ ├── car-on.svg │ │ │ │ │ ├── car-rear.svg │ │ │ │ │ ├── car-side.svg │ │ │ │ │ ├── car-tunnel.svg │ │ │ │ │ ├── car.svg │ │ │ │ │ ├── caravan.svg │ │ │ │ │ ├── caret-down.svg │ │ │ │ │ ├── caret-left.svg │ │ │ │ │ ├── caret-right.svg │ │ │ │ │ ├── caret-up.svg │ │ │ │ │ ├── carrot.svg │ │ │ │ │ ├── cart-arrow-down.svg │ │ │ │ │ ├── cart-flatbed-suitcase.svg │ │ │ │ │ ├── cart-flatbed.svg │ │ │ │ │ ├── cart-plus.svg │ │ │ │ │ ├── cart-shopping.svg │ │ │ │ │ ├── cash-register.svg │ │ │ │ │ ├── cat.svg │ │ │ │ │ ├── cedi-sign.svg │ │ │ │ │ ├── cent-sign.svg │ │ │ │ │ ├── certificate.svg │ │ │ │ │ ├── chair.svg │ │ │ │ │ ├── chalkboard-user.svg │ │ │ │ │ ├── chalkboard.svg │ │ │ │ │ ├── champagne-glasses.svg │ │ │ │ │ ├── charging-station.svg │ │ │ │ │ ├── chart-area.svg │ │ │ │ │ ├── chart-bar.svg │ │ │ │ │ ├── chart-column.svg │ │ │ │ │ ├── chart-gantt.svg │ │ │ │ │ ├── chart-line.svg │ │ │ │ │ ├── chart-pie.svg │ │ │ │ │ ├── chart-simple.svg │ │ │ │ │ ├── check-double.svg │ │ │ │ │ ├── check-to-slot.svg │ │ │ │ │ ├── check.svg │ │ │ │ │ ├── cheese.svg │ │ │ │ │ ├── chess-bishop.svg │ │ │ │ │ ├── chess-board.svg │ │ │ │ │ ├── chess-king.svg │ │ │ │ │ ├── chess-knight.svg │ │ │ │ │ ├── chess-pawn.svg │ │ │ │ │ ├── chess-queen.svg │ │ │ │ │ ├── chess-rook.svg │ │ │ │ │ ├── chess.svg │ │ │ │ │ ├── chevron-down.svg │ │ │ │ │ ├── chevron-left.svg │ │ │ │ │ ├── chevron-right.svg │ │ │ │ │ ├── chevron-up.svg │ │ │ │ │ ├── child-combatant.svg │ │ │ │ │ ├── child-dress.svg │ │ │ │ │ ├── child-reaching.svg │ │ │ │ │ ├── child.svg │ │ │ │ │ ├── children.svg │ │ │ │ │ ├── church.svg │ │ │ │ │ ├── circle-arrow-down.svg │ │ │ │ │ ├── circle-arrow-left.svg │ │ │ │ │ ├── circle-arrow-right.svg │ │ │ │ │ ├── circle-arrow-up.svg │ │ │ │ │ ├── circle-check.svg │ │ │ │ │ ├── circle-chevron-down.svg │ │ │ │ │ ├── circle-chevron-left.svg │ │ │ │ │ ├── circle-chevron-right.svg │ │ │ │ │ ├── circle-chevron-up.svg │ │ │ │ │ ├── circle-dollar-to-slot.svg │ │ │ │ │ ├── circle-dot.svg │ │ │ │ │ ├── circle-down.svg │ │ │ │ │ ├── circle-exclamation.svg │ │ │ │ │ ├── circle-h.svg │ │ │ │ │ ├── circle-half-stroke.svg │ │ │ │ │ ├── circle-info.svg │ │ │ │ │ ├── circle-left.svg │ │ │ │ │ ├── circle-minus.svg │ │ │ │ │ ├── circle-nodes.svg │ │ │ │ │ ├── circle-notch.svg │ │ │ │ │ ├── circle-pause.svg │ │ │ │ │ ├── circle-play.svg │ │ │ │ │ ├── circle-plus.svg │ │ │ │ │ ├── circle-question.svg │ │ │ │ │ ├── circle-radiation.svg │ │ │ │ │ ├── circle-right.svg │ │ │ │ │ ├── circle-stop.svg │ │ │ │ │ ├── circle-up.svg │ │ │ │ │ ├── circle-user.svg │ │ │ │ │ ├── circle-xmark.svg │ │ │ │ │ ├── circle.svg │ │ │ │ │ ├── city.svg │ │ │ │ │ ├── clapperboard.svg │ │ │ │ │ ├── clipboard-check.svg │ │ │ │ │ ├── clipboard-list.svg │ │ │ │ │ ├── clipboard-question.svg │ │ │ │ │ ├── clipboard-user.svg │ │ │ │ │ ├── clipboard.svg │ │ │ │ │ ├── clock-rotate-left.svg │ │ │ │ │ ├── clock.svg │ │ │ │ │ ├── clone.svg │ │ │ │ │ ├── closed-captioning.svg │ │ │ │ │ ├── cloud-arrow-down.svg │ │ │ │ │ ├── cloud-arrow-up.svg │ │ │ │ │ ├── cloud-bolt.svg │ │ │ │ │ ├── cloud-meatball.svg │ │ │ │ │ ├── cloud-moon-rain.svg │ │ │ │ │ ├── cloud-moon.svg │ │ │ │ │ ├── cloud-rain.svg │ │ │ │ │ ├── cloud-showers-heavy.svg │ │ │ │ │ ├── cloud-showers-water.svg │ │ │ │ │ ├── cloud-sun-rain.svg │ │ │ │ │ ├── cloud-sun.svg │ │ │ │ │ ├── cloud.svg │ │ │ │ │ ├── clover.svg │ │ │ │ │ ├── code-branch.svg │ │ │ │ │ ├── code-commit.svg │ │ │ │ │ ├── code-compare.svg │ │ │ │ │ ├── code-fork.svg │ │ │ │ │ ├── code-merge.svg │ │ │ │ │ ├── code-pull-request.svg │ │ │ │ │ ├── code.svg │ │ │ │ │ ├── coins.svg │ │ │ │ │ ├── colon-sign.svg │ │ │ │ │ ├── comment-dollar.svg │ │ │ │ │ ├── comment-dots.svg │ │ │ │ │ ├── comment-medical.svg │ │ │ │ │ ├── comment-slash.svg │ │ │ │ │ ├── comment-sms.svg │ │ │ │ │ ├── comment.svg │ │ │ │ │ ├── comments-dollar.svg │ │ │ │ │ ├── comments.svg │ │ │ │ │ ├── compact-disc.svg │ │ │ │ │ ├── compass-drafting.svg │ │ │ │ │ ├── compass.svg │ │ │ │ │ ├── compress.svg │ │ │ │ │ ├── computer-mouse.svg │ │ │ │ │ ├── computer.svg │ │ │ │ │ ├── cookie-bite.svg │ │ │ │ │ ├── cookie.svg │ │ │ │ │ ├── copy.svg │ │ │ │ │ ├── copyright.svg │ │ │ │ │ ├── couch.svg │ │ │ │ │ ├── cow.svg │ │ │ │ │ ├── credit-card.svg │ │ │ │ │ ├── crop-simple.svg │ │ │ │ │ ├── crop.svg │ │ │ │ │ ├── cross.svg │ │ │ │ │ ├── crosshairs.svg │ │ │ │ │ ├── crow.svg │ │ │ │ │ ├── crown.svg │ │ │ │ │ ├── crutch.svg │ │ │ │ │ ├── cruzeiro-sign.svg │ │ │ │ │ ├── cube.svg │ │ │ │ │ ├── cubes-stacked.svg │ │ │ │ │ ├── cubes.svg │ │ │ │ │ ├── d.svg │ │ │ │ │ ├── database.svg │ │ │ │ │ ├── delete-left.svg │ │ │ │ │ ├── democrat.svg │ │ │ │ │ ├── desktop.svg │ │ │ │ │ ├── dharmachakra.svg │ │ │ │ │ ├── diagram-next.svg │ │ │ │ │ ├── diagram-predecessor.svg │ │ │ │ │ ├── diagram-project.svg │ │ │ │ │ ├── diagram-successor.svg │ │ │ │ │ ├── diamond-turn-right.svg │ │ │ │ │ ├── diamond.svg │ │ │ │ │ ├── dice-d20.svg │ │ │ │ │ ├── dice-d6.svg │ │ │ │ │ ├── dice-five.svg │ │ │ │ │ ├── dice-four.svg │ │ │ │ │ ├── dice-one.svg │ │ │ │ │ ├── dice-six.svg │ │ │ │ │ ├── dice-three.svg │ │ │ │ │ ├── dice-two.svg │ │ │ │ │ ├── dice.svg │ │ │ │ │ ├── disease.svg │ │ │ │ │ ├── display.svg │ │ │ │ │ ├── divide.svg │ │ │ │ │ ├── dna.svg │ │ │ │ │ ├── dog.svg │ │ │ │ │ ├── dollar-sign.svg │ │ │ │ │ ├── dolly.svg │ │ │ │ │ ├── dong-sign.svg │ │ │ │ │ ├── door-closed.svg │ │ │ │ │ ├── door-open.svg │ │ │ │ │ ├── dove.svg │ │ │ │ │ ├── down-left-and-up-right-to-center.svg │ │ │ │ │ ├── down-long.svg │ │ │ │ │ ├── download.svg │ │ │ │ │ ├── dragon.svg │ │ │ │ │ ├── draw-polygon.svg │ │ │ │ │ ├── droplet-slash.svg │ │ │ │ │ ├── droplet.svg │ │ │ │ │ ├── drum-steelpan.svg │ │ │ │ │ ├── drum.svg │ │ │ │ │ ├── drumstick-bite.svg │ │ │ │ │ ├── dumbbell.svg │ │ │ │ │ ├── dumpster-fire.svg │ │ │ │ │ ├── dumpster.svg │ │ │ │ │ ├── dungeon.svg │ │ │ │ │ ├── e.svg │ │ │ │ │ ├── ear-deaf.svg │ │ │ │ │ ├── ear-listen.svg │ │ │ │ │ ├── earth-africa.svg │ │ │ │ │ ├── earth-americas.svg │ │ │ │ │ ├── earth-asia.svg │ │ │ │ │ ├── earth-europe.svg │ │ │ │ │ ├── earth-oceania.svg │ │ │ │ │ ├── egg.svg │ │ │ │ │ ├── eject.svg │ │ │ │ │ ├── elevator.svg │ │ │ │ │ ├── ellipsis-vertical.svg │ │ │ │ │ ├── ellipsis.svg │ │ │ │ │ ├── envelope-circle-check.svg │ │ │ │ │ ├── envelope-open-text.svg │ │ │ │ │ ├── envelope-open.svg │ │ │ │ │ ├── envelope.svg │ │ │ │ │ ├── envelopes-bulk.svg │ │ │ │ │ ├── equals.svg │ │ │ │ │ ├── eraser.svg │ │ │ │ │ ├── ethernet.svg │ │ │ │ │ ├── euro-sign.svg │ │ │ │ │ ├── exclamation.svg │ │ │ │ │ ├── expand.svg │ │ │ │ │ ├── explosion.svg │ │ │ │ │ ├── eye-dropper.svg │ │ │ │ │ ├── eye-low-vision.svg │ │ │ │ │ ├── eye-slash.svg │ │ │ │ │ ├── eye.svg │ │ │ │ │ ├── f.svg │ │ │ │ │ ├── face-angry.svg │ │ │ │ │ ├── face-dizzy.svg │ │ │ │ │ ├── face-flushed.svg │ │ │ │ │ ├── face-frown-open.svg │ │ │ │ │ ├── face-frown.svg │ │ │ │ │ ├── face-grimace.svg │ │ │ │ │ ├── face-grin-beam-sweat.svg │ │ │ │ │ ├── face-grin-beam.svg │ │ │ │ │ ├── face-grin-hearts.svg │ │ │ │ │ ├── face-grin-squint-tears.svg │ │ │ │ │ ├── face-grin-squint.svg │ │ │ │ │ ├── face-grin-stars.svg │ │ │ │ │ ├── face-grin-tears.svg │ │ │ │ │ ├── face-grin-tongue-squint.svg │ │ │ │ │ ├── face-grin-tongue-wink.svg │ │ │ │ │ ├── face-grin-tongue.svg │ │ │ │ │ ├── face-grin-wide.svg │ │ │ │ │ ├── face-grin-wink.svg │ │ │ │ │ ├── face-grin.svg │ │ │ │ │ ├── face-kiss-beam.svg │ │ │ │ │ ├── face-kiss-wink-heart.svg │ │ │ │ │ ├── face-kiss.svg │ │ │ │ │ ├── face-laugh-beam.svg │ │ │ │ │ ├── face-laugh-squint.svg │ │ │ │ │ ├── face-laugh-wink.svg │ │ │ │ │ ├── face-laugh.svg │ │ │ │ │ ├── face-meh-blank.svg │ │ │ │ │ ├── face-meh.svg │ │ │ │ │ ├── face-rolling-eyes.svg │ │ │ │ │ ├── face-sad-cry.svg │ │ │ │ │ ├── face-sad-tear.svg │ │ │ │ │ ├── face-smile-beam.svg │ │ │ │ │ ├── face-smile-wink.svg │ │ │ │ │ ├── face-smile.svg │ │ │ │ │ ├── face-surprise.svg │ │ │ │ │ ├── face-tired.svg │ │ │ │ │ ├── fan.svg │ │ │ │ │ ├── faucet-drip.svg │ │ │ │ │ ├── faucet.svg │ │ │ │ │ ├── fax.svg │ │ │ │ │ ├── feather-pointed.svg │ │ │ │ │ ├── feather.svg │ │ │ │ │ ├── ferry.svg │ │ │ │ │ ├── file-arrow-down.svg │ │ │ │ │ ├── file-arrow-up.svg │ │ │ │ │ ├── file-audio.svg │ │ │ │ │ ├── file-circle-check.svg │ │ │ │ │ ├── file-circle-exclamation.svg │ │ │ │ │ ├── file-circle-minus.svg │ │ │ │ │ ├── file-circle-plus.svg │ │ │ │ │ ├── file-circle-question.svg │ │ │ │ │ ├── file-circle-xmark.svg │ │ │ │ │ ├── file-code.svg │ │ │ │ │ ├── file-contract.svg │ │ │ │ │ ├── file-csv.svg │ │ │ │ │ ├── file-excel.svg │ │ │ │ │ ├── file-export.svg │ │ │ │ │ ├── file-image.svg │ │ │ │ │ ├── file-import.svg │ │ │ │ │ ├── file-invoice-dollar.svg │ │ │ │ │ ├── file-invoice.svg │ │ │ │ │ ├── file-lines.svg │ │ │ │ │ ├── file-medical.svg │ │ │ │ │ ├── file-pdf.svg │ │ │ │ │ ├── file-pen.svg │ │ │ │ │ ├── file-powerpoint.svg │ │ │ │ │ ├── file-prescription.svg │ │ │ │ │ ├── file-shield.svg │ │ │ │ │ ├── file-signature.svg │ │ │ │ │ ├── file-video.svg │ │ │ │ │ ├── file-waveform.svg │ │ │ │ │ ├── file-word.svg │ │ │ │ │ ├── file-zipper.svg │ │ │ │ │ ├── file.svg │ │ │ │ │ ├── fill-drip.svg │ │ │ │ │ ├── fill.svg │ │ │ │ │ ├── film.svg │ │ │ │ │ ├── filter-circle-dollar.svg │ │ │ │ │ ├── filter-circle-xmark.svg │ │ │ │ │ ├── filter.svg │ │ │ │ │ ├── fingerprint.svg │ │ │ │ │ ├── fire-burner.svg │ │ │ │ │ ├── fire-extinguisher.svg │ │ │ │ │ ├── fire-flame-curved.svg │ │ │ │ │ ├── fire-flame-simple.svg │ │ │ │ │ ├── fire.svg │ │ │ │ │ ├── fish-fins.svg │ │ │ │ │ ├── fish.svg │ │ │ │ │ ├── flag-checkered.svg │ │ │ │ │ ├── flag-usa.svg │ │ │ │ │ ├── flag.svg │ │ │ │ │ ├── flask-vial.svg │ │ │ │ │ ├── flask.svg │ │ │ │ │ ├── floppy-disk.svg │ │ │ │ │ ├── florin-sign.svg │ │ │ │ │ ├── folder-closed.svg │ │ │ │ │ ├── folder-minus.svg │ │ │ │ │ ├── folder-open.svg │ │ │ │ │ ├── folder-plus.svg │ │ │ │ │ ├── folder-tree.svg │ │ │ │ │ ├── folder.svg │ │ │ │ │ ├── font-awesome.svg │ │ │ │ │ ├── font.svg │ │ │ │ │ ├── football.svg │ │ │ │ │ ├── forward-fast.svg │ │ │ │ │ ├── forward-step.svg │ │ │ │ │ ├── forward.svg │ │ │ │ │ ├── franc-sign.svg │ │ │ │ │ ├── frog.svg │ │ │ │ │ ├── futbol.svg │ │ │ │ │ ├── g.svg │ │ │ │ │ ├── gamepad.svg │ │ │ │ │ ├── gas-pump.svg │ │ │ │ │ ├── gauge-high.svg │ │ │ │ │ ├── gauge-simple-high.svg │ │ │ │ │ ├── gauge-simple.svg │ │ │ │ │ ├── gauge.svg │ │ │ │ │ ├── gavel.svg │ │ │ │ │ ├── gear.svg │ │ │ │ │ ├── gears.svg │ │ │ │ │ ├── gem.svg │ │ │ │ │ ├── genderless.svg │ │ │ │ │ ├── ghost.svg │ │ │ │ │ ├── gift.svg │ │ │ │ │ ├── gifts.svg │ │ │ │ │ ├── glass-water-droplet.svg │ │ │ │ │ ├── glass-water.svg │ │ │ │ │ ├── glasses.svg │ │ │ │ │ ├── globe.svg │ │ │ │ │ ├── golf-ball-tee.svg │ │ │ │ │ ├── gopuram.svg │ │ │ │ │ ├── graduation-cap.svg │ │ │ │ │ ├── greater-than-equal.svg │ │ │ │ │ ├── greater-than.svg │ │ │ │ │ ├── grip-lines-vertical.svg │ │ │ │ │ ├── grip-lines.svg │ │ │ │ │ ├── grip-vertical.svg │ │ │ │ │ ├── grip.svg │ │ │ │ │ ├── group-arrows-rotate.svg │ │ │ │ │ ├── guarani-sign.svg │ │ │ │ │ ├── guitar.svg │ │ │ │ │ ├── gun.svg │ │ │ │ │ ├── h.svg │ │ │ │ │ ├── hammer.svg │ │ │ │ │ ├── hamsa.svg │ │ │ │ │ ├── hand-back-fist.svg │ │ │ │ │ ├── hand-dots.svg │ │ │ │ │ ├── hand-fist.svg │ │ │ │ │ ├── hand-holding-dollar.svg │ │ │ │ │ ├── hand-holding-droplet.svg │ │ │ │ │ ├── hand-holding-hand.svg │ │ │ │ │ ├── hand-holding-heart.svg │ │ │ │ │ ├── hand-holding-medical.svg │ │ │ │ │ ├── hand-holding.svg │ │ │ │ │ ├── hand-lizard.svg │ │ │ │ │ ├── hand-middle-finger.svg │ │ │ │ │ ├── hand-peace.svg │ │ │ │ │ ├── hand-point-down.svg │ │ │ │ │ ├── hand-point-left.svg │ │ │ │ │ ├── hand-point-right.svg │ │ │ │ │ ├── hand-point-up.svg │ │ │ │ │ ├── hand-pointer.svg │ │ │ │ │ ├── hand-scissors.svg │ │ │ │ │ ├── hand-sparkles.svg │ │ │ │ │ ├── hand-spock.svg │ │ │ │ │ ├── hand.svg │ │ │ │ │ ├── handcuffs.svg │ │ │ │ │ ├── hands-asl-interpreting.svg │ │ │ │ │ ├── hands-bound.svg │ │ │ │ │ ├── hands-bubbles.svg │ │ │ │ │ ├── hands-clapping.svg │ │ │ │ │ ├── hands-holding-child.svg │ │ │ │ │ ├── hands-holding-circle.svg │ │ │ │ │ ├── hands-holding.svg │ │ │ │ │ ├── hands-praying.svg │ │ │ │ │ ├── hands.svg │ │ │ │ │ ├── handshake-angle.svg │ │ │ │ │ ├── handshake-simple-slash.svg │ │ │ │ │ ├── handshake-simple.svg │ │ │ │ │ ├── handshake-slash.svg │ │ │ │ │ ├── handshake.svg │ │ │ │ │ ├── hanukiah.svg │ │ │ │ │ ├── hard-drive.svg │ │ │ │ │ ├── hashtag.svg │ │ │ │ │ ├── hat-cowboy-side.svg │ │ │ │ │ ├── hat-cowboy.svg │ │ │ │ │ ├── hat-wizard.svg │ │ │ │ │ ├── head-side-cough-slash.svg │ │ │ │ │ ├── head-side-cough.svg │ │ │ │ │ ├── head-side-mask.svg │ │ │ │ │ ├── head-side-virus.svg │ │ │ │ │ ├── heading.svg │ │ │ │ │ ├── headphones-simple.svg │ │ │ │ │ ├── headphones.svg │ │ │ │ │ ├── headset.svg │ │ │ │ │ ├── heart-circle-bolt.svg │ │ │ │ │ ├── heart-circle-check.svg │ │ │ │ │ ├── heart-circle-exclamation.svg │ │ │ │ │ ├── heart-circle-minus.svg │ │ │ │ │ ├── heart-circle-plus.svg │ │ │ │ │ ├── heart-circle-xmark.svg │ │ │ │ │ ├── heart-crack.svg │ │ │ │ │ ├── heart-pulse.svg │ │ │ │ │ ├── heart.svg │ │ │ │ │ ├── helicopter-symbol.svg │ │ │ │ │ ├── helicopter.svg │ │ │ │ │ ├── helmet-safety.svg │ │ │ │ │ ├── helmet-un.svg │ │ │ │ │ ├── highlighter.svg │ │ │ │ │ ├── hill-avalanche.svg │ │ │ │ │ ├── hill-rockslide.svg │ │ │ │ │ ├── hippo.svg │ │ │ │ │ ├── hockey-puck.svg │ │ │ │ │ ├── holly-berry.svg │ │ │ │ │ ├── horse-head.svg │ │ │ │ │ ├── horse.svg │ │ │ │ │ ├── hospital-user.svg │ │ │ │ │ ├── hospital.svg │ │ │ │ │ ├── hot-tub-person.svg │ │ │ │ │ ├── hotdog.svg │ │ │ │ │ ├── hotel.svg │ │ │ │ │ ├── hourglass-end.svg │ │ │ │ │ ├── hourglass-half.svg │ │ │ │ │ ├── hourglass-start.svg │ │ │ │ │ ├── hourglass.svg │ │ │ │ │ ├── house-chimney-crack.svg │ │ │ │ │ ├── house-chimney-medical.svg │ │ │ │ │ ├── house-chimney-user.svg │ │ │ │ │ ├── house-chimney-window.svg │ │ │ │ │ ├── house-chimney.svg │ │ │ │ │ ├── house-circle-check.svg │ │ │ │ │ ├── house-circle-exclamation.svg │ │ │ │ │ ├── house-circle-xmark.svg │ │ │ │ │ ├── house-crack.svg │ │ │ │ │ ├── house-fire.svg │ │ │ │ │ ├── house-flag.svg │ │ │ │ │ ├── house-flood-water-circle-arrow-right.svg │ │ │ │ │ ├── house-flood-water.svg │ │ │ │ │ ├── house-laptop.svg │ │ │ │ │ ├── house-lock.svg │ │ │ │ │ ├── house-medical-circle-check.svg │ │ │ │ │ ├── house-medical-circle-exclamation.svg │ │ │ │ │ ├── house-medical-circle-xmark.svg │ │ │ │ │ ├── house-medical-flag.svg │ │ │ │ │ ├── house-medical.svg │ │ │ │ │ ├── house-signal.svg │ │ │ │ │ ├── house-tsunami.svg │ │ │ │ │ ├── house-user.svg │ │ │ │ │ ├── house.svg │ │ │ │ │ ├── hryvnia-sign.svg │ │ │ │ │ ├── hurricane.svg │ │ │ │ │ ├── i-cursor.svg │ │ │ │ │ ├── i.svg │ │ │ │ │ ├── ice-cream.svg │ │ │ │ │ ├── icicles.svg │ │ │ │ │ ├── icons.svg │ │ │ │ │ ├── id-badge.svg │ │ │ │ │ ├── id-card-clip.svg │ │ │ │ │ ├── id-card.svg │ │ │ │ │ ├── igloo.svg │ │ │ │ │ ├── image-portrait.svg │ │ │ │ │ ├── image.svg │ │ │ │ │ ├── images.svg │ │ │ │ │ ├── inbox.svg │ │ │ │ │ ├── indent.svg │ │ │ │ │ ├── indian-rupee-sign.svg │ │ │ │ │ ├── industry.svg │ │ │ │ │ ├── infinity.svg │ │ │ │ │ ├── info.svg │ │ │ │ │ ├── italic.svg │ │ │ │ │ ├── j.svg │ │ │ │ │ ├── jar-wheat.svg │ │ │ │ │ ├── jar.svg │ │ │ │ │ ├── jedi.svg │ │ │ │ │ ├── jet-fighter-up.svg │ │ │ │ │ ├── jet-fighter.svg │ │ │ │ │ ├── joint.svg │ │ │ │ │ ├── jug-detergent.svg │ │ │ │ │ ├── k.svg │ │ │ │ │ ├── kaaba.svg │ │ │ │ │ ├── key.svg │ │ │ │ │ ├── keyboard.svg │ │ │ │ │ ├── khanda.svg │ │ │ │ │ ├── kip-sign.svg │ │ │ │ │ ├── kit-medical.svg │ │ │ │ │ ├── kitchen-set.svg │ │ │ │ │ ├── kiwi-bird.svg │ │ │ │ │ ├── l.svg │ │ │ │ │ ├── land-mine-on.svg │ │ │ │ │ ├── landmark-dome.svg │ │ │ │ │ ├── landmark-flag.svg │ │ │ │ │ ├── landmark.svg │ │ │ │ │ ├── language.svg │ │ │ │ │ ├── laptop-code.svg │ │ │ │ │ ├── laptop-file.svg │ │ │ │ │ ├── laptop-medical.svg │ │ │ │ │ ├── laptop.svg │ │ │ │ │ ├── lari-sign.svg │ │ │ │ │ ├── layer-group.svg │ │ │ │ │ ├── leaf.svg │ │ │ │ │ ├── left-long.svg │ │ │ │ │ ├── left-right.svg │ │ │ │ │ ├── lemon.svg │ │ │ │ │ ├── less-than-equal.svg │ │ │ │ │ ├── less-than.svg │ │ │ │ │ ├── life-ring.svg │ │ │ │ │ ├── lightbulb.svg │ │ │ │ │ ├── lines-leaning.svg │ │ │ │ │ ├── link-slash.svg │ │ │ │ │ ├── link.svg │ │ │ │ │ ├── lira-sign.svg │ │ │ │ │ ├── list-check.svg │ │ │ │ │ ├── list-ol.svg │ │ │ │ │ ├── list-ul.svg │ │ │ │ │ ├── list.svg │ │ │ │ │ ├── litecoin-sign.svg │ │ │ │ │ ├── location-arrow.svg │ │ │ │ │ ├── location-crosshairs.svg │ │ │ │ │ ├── location-dot.svg │ │ │ │ │ ├── location-pin-lock.svg │ │ │ │ │ ├── location-pin.svg │ │ │ │ │ ├── lock-open.svg │ │ │ │ │ ├── lock.svg │ │ │ │ │ ├── locust.svg │ │ │ │ │ ├── lungs-virus.svg │ │ │ │ │ ├── lungs.svg │ │ │ │ │ ├── m.svg │ │ │ │ │ ├── magnet.svg │ │ │ │ │ ├── magnifying-glass-arrow-right.svg │ │ │ │ │ ├── magnifying-glass-chart.svg │ │ │ │ │ ├── magnifying-glass-dollar.svg │ │ │ │ │ ├── magnifying-glass-location.svg │ │ │ │ │ ├── magnifying-glass-minus.svg │ │ │ │ │ ├── magnifying-glass-plus.svg │ │ │ │ │ ├── magnifying-glass.svg │ │ │ │ │ ├── manat-sign.svg │ │ │ │ │ ├── map-location-dot.svg │ │ │ │ │ ├── map-location.svg │ │ │ │ │ ├── map-pin.svg │ │ │ │ │ ├── map.svg │ │ │ │ │ ├── marker.svg │ │ │ │ │ ├── mars-and-venus-burst.svg │ │ │ │ │ ├── mars-and-venus.svg │ │ │ │ │ ├── mars-double.svg │ │ │ │ │ ├── mars-stroke-right.svg │ │ │ │ │ ├── mars-stroke-up.svg │ │ │ │ │ ├── mars-stroke.svg │ │ │ │ │ ├── mars.svg │ │ │ │ │ ├── martini-glass-citrus.svg │ │ │ │ │ ├── martini-glass-empty.svg │ │ │ │ │ ├── martini-glass.svg │ │ │ │ │ ├── mask-face.svg │ │ │ │ │ ├── mask-ventilator.svg │ │ │ │ │ ├── mask.svg │ │ │ │ │ ├── masks-theater.svg │ │ │ │ │ ├── mattress-pillow.svg │ │ │ │ │ ├── maximize.svg │ │ │ │ │ ├── medal.svg │ │ │ │ │ ├── memory.svg │ │ │ │ │ ├── menorah.svg │ │ │ │ │ ├── mercury.svg │ │ │ │ │ ├── message.svg │ │ │ │ │ ├── meteor.svg │ │ │ │ │ ├── microchip.svg │ │ │ │ │ ├── microphone-lines-slash.svg │ │ │ │ │ ├── microphone-lines.svg │ │ │ │ │ ├── microphone-slash.svg │ │ │ │ │ ├── microphone.svg │ │ │ │ │ ├── microscope.svg │ │ │ │ │ ├── mill-sign.svg │ │ │ │ │ ├── minimize.svg │ │ │ │ │ ├── minus.svg │ │ │ │ │ ├── mitten.svg │ │ │ │ │ ├── mobile-button.svg │ │ │ │ │ ├── mobile-retro.svg │ │ │ │ │ ├── mobile-screen-button.svg │ │ │ │ │ ├── mobile-screen.svg │ │ │ │ │ ├── mobile.svg │ │ │ │ │ ├── money-bill-1-wave.svg │ │ │ │ │ ├── money-bill-1.svg │ │ │ │ │ ├── money-bill-transfer.svg │ │ │ │ │ ├── money-bill-trend-up.svg │ │ │ │ │ ├── money-bill-wave.svg │ │ │ │ │ ├── money-bill-wheat.svg │ │ │ │ │ ├── money-bill.svg │ │ │ │ │ ├── money-bills.svg │ │ │ │ │ ├── money-check-dollar.svg │ │ │ │ │ ├── money-check.svg │ │ │ │ │ ├── monument.svg │ │ │ │ │ ├── moon.svg │ │ │ │ │ ├── mortar-pestle.svg │ │ │ │ │ ├── mosque.svg │ │ │ │ │ ├── mosquito-net.svg │ │ │ │ │ ├── mosquito.svg │ │ │ │ │ ├── motorcycle.svg │ │ │ │ │ ├── mound.svg │ │ │ │ │ ├── mountain-city.svg │ │ │ │ │ ├── mountain-sun.svg │ │ │ │ │ ├── mountain.svg │ │ │ │ │ ├── mug-hot.svg │ │ │ │ │ ├── mug-saucer.svg │ │ │ │ │ ├── music.svg │ │ │ │ │ ├── n.svg │ │ │ │ │ ├── naira-sign.svg │ │ │ │ │ ├── network-wired.svg │ │ │ │ │ ├── neuter.svg │ │ │ │ │ ├── newspaper.svg │ │ │ │ │ ├── not-equal.svg │ │ │ │ │ ├── notdef.svg │ │ │ │ │ ├── note-sticky.svg │ │ │ │ │ ├── notes-medical.svg │ │ │ │ │ ├── o.svg │ │ │ │ │ ├── object-group.svg │ │ │ │ │ ├── object-ungroup.svg │ │ │ │ │ ├── oil-can.svg │ │ │ │ │ ├── oil-well.svg │ │ │ │ │ ├── om.svg │ │ │ │ │ ├── otter.svg │ │ │ │ │ ├── outdent.svg │ │ │ │ │ ├── p.svg │ │ │ │ │ ├── pager.svg │ │ │ │ │ ├── paint-roller.svg │ │ │ │ │ ├── paintbrush.svg │ │ │ │ │ ├── palette.svg │ │ │ │ │ ├── pallet.svg │ │ │ │ │ ├── panorama.svg │ │ │ │ │ ├── paper-plane.svg │ │ │ │ │ ├── paperclip.svg │ │ │ │ │ ├── parachute-box.svg │ │ │ │ │ ├── paragraph.svg │ │ │ │ │ ├── passport.svg │ │ │ │ │ ├── paste.svg │ │ │ │ │ ├── pause.svg │ │ │ │ │ ├── paw.svg │ │ │ │ │ ├── peace.svg │ │ │ │ │ ├── pen-clip.svg │ │ │ │ │ ├── pen-fancy.svg │ │ │ │ │ ├── pen-nib.svg │ │ │ │ │ ├── pen-ruler.svg │ │ │ │ │ ├── pen-to-square.svg │ │ │ │ │ ├── pen.svg │ │ │ │ │ ├── pencil.svg │ │ │ │ │ ├── people-arrows.svg │ │ │ │ │ ├── people-carry-box.svg │ │ │ │ │ ├── people-group.svg │ │ │ │ │ ├── people-line.svg │ │ │ │ │ ├── people-pulling.svg │ │ │ │ │ ├── people-robbery.svg │ │ │ │ │ ├── people-roof.svg │ │ │ │ │ ├── pepper-hot.svg │ │ │ │ │ ├── percent.svg │ │ │ │ │ ├── person-arrow-down-to-line.svg │ │ │ │ │ ├── person-arrow-up-from-line.svg │ │ │ │ │ ├── person-biking.svg │ │ │ │ │ ├── person-booth.svg │ │ │ │ │ ├── person-breastfeeding.svg │ │ │ │ │ ├── person-burst.svg │ │ │ │ │ ├── person-cane.svg │ │ │ │ │ ├── person-chalkboard.svg │ │ │ │ │ ├── person-circle-check.svg │ │ │ │ │ ├── person-circle-exclamation.svg │ │ │ │ │ ├── person-circle-minus.svg │ │ │ │ │ ├── person-circle-plus.svg │ │ │ │ │ ├── person-circle-question.svg │ │ │ │ │ ├── person-circle-xmark.svg │ │ │ │ │ ├── person-digging.svg │ │ │ │ │ ├── person-dots-from-line.svg │ │ │ │ │ ├── person-dress-burst.svg │ │ │ │ │ ├── person-dress.svg │ │ │ │ │ ├── person-drowning.svg │ │ │ │ │ ├── person-falling-burst.svg │ │ │ │ │ ├── person-falling.svg │ │ │ │ │ ├── person-half-dress.svg │ │ │ │ │ ├── person-harassing.svg │ │ │ │ │ ├── person-hiking.svg │ │ │ │ │ ├── person-military-pointing.svg │ │ │ │ │ ├── person-military-rifle.svg │ │ │ │ │ ├── person-military-to-person.svg │ │ │ │ │ ├── person-praying.svg │ │ │ │ │ ├── person-pregnant.svg │ │ │ │ │ ├── person-rays.svg │ │ │ │ │ ├── person-rifle.svg │ │ │ │ │ ├── person-running.svg │ │ │ │ │ ├── person-shelter.svg │ │ │ │ │ ├── person-skating.svg │ │ │ │ │ ├── person-skiing-nordic.svg │ │ │ │ │ ├── person-skiing.svg │ │ │ │ │ ├── person-snowboarding.svg │ │ │ │ │ ├── person-swimming.svg │ │ │ │ │ ├── person-through-window.svg │ │ │ │ │ ├── person-walking-arrow-loop-left.svg │ │ │ │ │ ├── person-walking-arrow-right.svg │ │ │ │ │ ├── person-walking-dashed-line-arrow-right.svg │ │ │ │ │ ├── person-walking-luggage.svg │ │ │ │ │ ├── person-walking-with-cane.svg │ │ │ │ │ ├── person-walking.svg │ │ │ │ │ ├── person.svg │ │ │ │ │ ├── peseta-sign.svg │ │ │ │ │ ├── peso-sign.svg │ │ │ │ │ ├── phone-flip.svg │ │ │ │ │ ├── phone-slash.svg │ │ │ │ │ ├── phone-volume.svg │ │ │ │ │ ├── phone.svg │ │ │ │ │ ├── photo-film.svg │ │ │ │ │ ├── piggy-bank.svg │ │ │ │ │ ├── pills.svg │ │ │ │ │ ├── pizza-slice.svg │ │ │ │ │ ├── place-of-worship.svg │ │ │ │ │ ├── plane-arrival.svg │ │ │ │ │ ├── plane-circle-check.svg │ │ │ │ │ ├── plane-circle-exclamation.svg │ │ │ │ │ ├── plane-circle-xmark.svg │ │ │ │ │ ├── plane-departure.svg │ │ │ │ │ ├── plane-lock.svg │ │ │ │ │ ├── plane-slash.svg │ │ │ │ │ ├── plane-up.svg │ │ │ │ │ ├── plane.svg │ │ │ │ │ ├── plant-wilt.svg │ │ │ │ │ ├── plate-wheat.svg │ │ │ │ │ ├── play.svg │ │ │ │ │ ├── plug-circle-bolt.svg │ │ │ │ │ ├── plug-circle-check.svg │ │ │ │ │ ├── plug-circle-exclamation.svg │ │ │ │ │ ├── plug-circle-minus.svg │ │ │ │ │ ├── plug-circle-plus.svg │ │ │ │ │ ├── plug-circle-xmark.svg │ │ │ │ │ ├── plug.svg │ │ │ │ │ ├── plus-minus.svg │ │ │ │ │ ├── plus.svg │ │ │ │ │ ├── podcast.svg │ │ │ │ │ ├── poo-storm.svg │ │ │ │ │ ├── poo.svg │ │ │ │ │ ├── poop.svg │ │ │ │ │ ├── power-off.svg │ │ │ │ │ ├── prescription-bottle-medical.svg │ │ │ │ │ ├── prescription-bottle.svg │ │ │ │ │ ├── prescription.svg │ │ │ │ │ ├── print.svg │ │ │ │ │ ├── pump-medical.svg │ │ │ │ │ ├── pump-soap.svg │ │ │ │ │ ├── puzzle-piece.svg │ │ │ │ │ ├── q.svg │ │ │ │ │ ├── qrcode.svg │ │ │ │ │ ├── question.svg │ │ │ │ │ ├── quote-left.svg │ │ │ │ │ ├── quote-right.svg │ │ │ │ │ ├── r.svg │ │ │ │ │ ├── radiation.svg │ │ │ │ │ ├── radio.svg │ │ │ │ │ ├── rainbow.svg │ │ │ │ │ ├── ranking-star.svg │ │ │ │ │ ├── receipt.svg │ │ │ │ │ ├── record-vinyl.svg │ │ │ │ │ ├── rectangle-ad.svg │ │ │ │ │ ├── rectangle-list.svg │ │ │ │ │ ├── rectangle-xmark.svg │ │ │ │ │ ├── recycle.svg │ │ │ │ │ ├── registered.svg │ │ │ │ │ ├── repeat.svg │ │ │ │ │ ├── reply-all.svg │ │ │ │ │ ├── reply.svg │ │ │ │ │ ├── republican.svg │ │ │ │ │ ├── restroom.svg │ │ │ │ │ ├── retweet.svg │ │ │ │ │ ├── ribbon.svg │ │ │ │ │ ├── right-from-bracket.svg │ │ │ │ │ ├── right-left.svg │ │ │ │ │ ├── right-long.svg │ │ │ │ │ ├── right-to-bracket.svg │ │ │ │ │ ├── ring.svg │ │ │ │ │ ├── road-barrier.svg │ │ │ │ │ ├── road-bridge.svg │ │ │ │ │ ├── road-circle-check.svg │ │ │ │ │ ├── road-circle-exclamation.svg │ │ │ │ │ ├── road-circle-xmark.svg │ │ │ │ │ ├── road-lock.svg │ │ │ │ │ ├── road-spikes.svg │ │ │ │ │ ├── road.svg │ │ │ │ │ ├── robot.svg │ │ │ │ │ ├── rocket.svg │ │ │ │ │ ├── rotate-left.svg │ │ │ │ │ ├── rotate-right.svg │ │ │ │ │ ├── rotate.svg │ │ │ │ │ ├── route.svg │ │ │ │ │ ├── rss.svg │ │ │ │ │ ├── ruble-sign.svg │ │ │ │ │ ├── rug.svg │ │ │ │ │ ├── ruler-combined.svg │ │ │ │ │ ├── ruler-horizontal.svg │ │ │ │ │ ├── ruler-vertical.svg │ │ │ │ │ ├── ruler.svg │ │ │ │ │ ├── rupee-sign.svg │ │ │ │ │ ├── rupiah-sign.svg │ │ │ │ │ ├── s.svg │ │ │ │ │ ├── sack-dollar.svg │ │ │ │ │ ├── sack-xmark.svg │ │ │ │ │ ├── sailboat.svg │ │ │ │ │ ├── satellite-dish.svg │ │ │ │ │ ├── satellite.svg │ │ │ │ │ ├── scale-balanced.svg │ │ │ │ │ ├── scale-unbalanced-flip.svg │ │ │ │ │ ├── scale-unbalanced.svg │ │ │ │ │ ├── school-circle-check.svg │ │ │ │ │ ├── school-circle-exclamation.svg │ │ │ │ │ ├── school-circle-xmark.svg │ │ │ │ │ ├── school-flag.svg │ │ │ │ │ ├── school-lock.svg │ │ │ │ │ ├── school.svg │ │ │ │ │ ├── scissors.svg │ │ │ │ │ ├── screwdriver-wrench.svg │ │ │ │ │ ├── screwdriver.svg │ │ │ │ │ ├── scroll-torah.svg │ │ │ │ │ ├── scroll.svg │ │ │ │ │ ├── sd-card.svg │ │ │ │ │ ├── section.svg │ │ │ │ │ ├── seedling.svg │ │ │ │ │ ├── server.svg │ │ │ │ │ ├── shapes.svg │ │ │ │ │ ├── share-from-square.svg │ │ │ │ │ ├── share-nodes.svg │ │ │ │ │ ├── share.svg │ │ │ │ │ ├── sheet-plastic.svg │ │ │ │ │ ├── shekel-sign.svg │ │ │ │ │ ├── shield-cat.svg │ │ │ │ │ ├── shield-dog.svg │ │ │ │ │ ├── shield-halved.svg │ │ │ │ │ ├── shield-heart.svg │ │ │ │ │ ├── shield-virus.svg │ │ │ │ │ ├── shield.svg │ │ │ │ │ ├── ship.svg │ │ │ │ │ ├── shirt.svg │ │ │ │ │ ├── shoe-prints.svg │ │ │ │ │ ├── shop-lock.svg │ │ │ │ │ ├── shop-slash.svg │ │ │ │ │ ├── shop.svg │ │ │ │ │ ├── shower.svg │ │ │ │ │ ├── shrimp.svg │ │ │ │ │ ├── shuffle.svg │ │ │ │ │ ├── shuttle-space.svg │ │ │ │ │ ├── sign-hanging.svg │ │ │ │ │ ├── signal.svg │ │ │ │ │ ├── signature.svg │ │ │ │ │ ├── signs-post.svg │ │ │ │ │ ├── sim-card.svg │ │ │ │ │ ├── sink.svg │ │ │ │ │ ├── sitemap.svg │ │ │ │ │ ├── skull-crossbones.svg │ │ │ │ │ ├── skull.svg │ │ │ │ │ ├── slash.svg │ │ │ │ │ ├── sleigh.svg │ │ │ │ │ ├── sliders.svg │ │ │ │ │ ├── smog.svg │ │ │ │ │ ├── smoking.svg │ │ │ │ │ ├── snowflake.svg │ │ │ │ │ ├── snowman.svg │ │ │ │ │ ├── snowplow.svg │ │ │ │ │ ├── soap.svg │ │ │ │ │ ├── socks.svg │ │ │ │ │ ├── solar-panel.svg │ │ │ │ │ ├── sort-down.svg │ │ │ │ │ ├── sort-up.svg │ │ │ │ │ ├── sort.svg │ │ │ │ │ ├── spa.svg │ │ │ │ │ ├── spaghetti-monster-flying.svg │ │ │ │ │ ├── spell-check.svg │ │ │ │ │ ├── spider.svg │ │ │ │ │ ├── spinner.svg │ │ │ │ │ ├── splotch.svg │ │ │ │ │ ├── spoon.svg │ │ │ │ │ ├── spray-can-sparkles.svg │ │ │ │ │ ├── spray-can.svg │ │ │ │ │ ├── square-arrow-up-right.svg │ │ │ │ │ ├── square-caret-down.svg │ │ │ │ │ ├── square-caret-left.svg │ │ │ │ │ ├── square-caret-right.svg │ │ │ │ │ ├── square-caret-up.svg │ │ │ │ │ ├── square-check.svg │ │ │ │ │ ├── square-envelope.svg │ │ │ │ │ ├── square-full.svg │ │ │ │ │ ├── square-h.svg │ │ │ │ │ ├── square-minus.svg │ │ │ │ │ ├── square-nfi.svg │ │ │ │ │ ├── square-parking.svg │ │ │ │ │ ├── square-pen.svg │ │ │ │ │ ├── square-person-confined.svg │ │ │ │ │ ├── square-phone-flip.svg │ │ │ │ │ ├── square-phone.svg │ │ │ │ │ ├── square-plus.svg │ │ │ │ │ ├── square-poll-horizontal.svg │ │ │ │ │ ├── square-poll-vertical.svg │ │ │ │ │ ├── square-root-variable.svg │ │ │ │ │ ├── square-rss.svg │ │ │ │ │ ├── square-share-nodes.svg │ │ │ │ │ ├── square-up-right.svg │ │ │ │ │ ├── square-virus.svg │ │ │ │ │ ├── square-xmark.svg │ │ │ │ │ ├── square.svg │ │ │ │ │ ├── staff-snake.svg │ │ │ │ │ ├── stairs.svg │ │ │ │ │ ├── stamp.svg │ │ │ │ │ ├── stapler.svg │ │ │ │ │ ├── star-and-crescent.svg │ │ │ │ │ ├── star-half-stroke.svg │ │ │ │ │ ├── star-half.svg │ │ │ │ │ ├── star-of-david.svg │ │ │ │ │ ├── star-of-life.svg │ │ │ │ │ ├── star.svg │ │ │ │ │ ├── sterling-sign.svg │ │ │ │ │ ├── stethoscope.svg │ │ │ │ │ ├── stop.svg │ │ │ │ │ ├── stopwatch-20.svg │ │ │ │ │ ├── stopwatch.svg │ │ │ │ │ ├── store-slash.svg │ │ │ │ │ ├── store.svg │ │ │ │ │ ├── street-view.svg │ │ │ │ │ ├── strikethrough.svg │ │ │ │ │ ├── stroopwafel.svg │ │ │ │ │ ├── subscript.svg │ │ │ │ │ ├── suitcase-medical.svg │ │ │ │ │ ├── suitcase-rolling.svg │ │ │ │ │ ├── suitcase.svg │ │ │ │ │ ├── sun-plant-wilt.svg │ │ │ │ │ ├── sun.svg │ │ │ │ │ ├── superscript.svg │ │ │ │ │ ├── swatchbook.svg │ │ │ │ │ ├── synagogue.svg │ │ │ │ │ ├── syringe.svg │ │ │ │ │ ├── t.svg │ │ │ │ │ ├── table-cells-large.svg │ │ │ │ │ ├── table-cells.svg │ │ │ │ │ ├── table-columns.svg │ │ │ │ │ ├── table-list.svg │ │ │ │ │ ├── table-tennis-paddle-ball.svg │ │ │ │ │ ├── table.svg │ │ │ │ │ ├── tablet-button.svg │ │ │ │ │ ├── tablet-screen-button.svg │ │ │ │ │ ├── tablet.svg │ │ │ │ │ ├── tablets.svg │ │ │ │ │ ├── tachograph-digital.svg │ │ │ │ │ ├── tag.svg │ │ │ │ │ ├── tags.svg │ │ │ │ │ ├── tape.svg │ │ │ │ │ ├── tarp-droplet.svg │ │ │ │ │ ├── tarp.svg │ │ │ │ │ ├── taxi.svg │ │ │ │ │ ├── teeth-open.svg │ │ │ │ │ ├── teeth.svg │ │ │ │ │ ├── temperature-arrow-down.svg │ │ │ │ │ ├── temperature-arrow-up.svg │ │ │ │ │ ├── temperature-empty.svg │ │ │ │ │ ├── temperature-full.svg │ │ │ │ │ ├── temperature-half.svg │ │ │ │ │ ├── temperature-high.svg │ │ │ │ │ ├── temperature-low.svg │ │ │ │ │ ├── temperature-quarter.svg │ │ │ │ │ ├── temperature-three-quarters.svg │ │ │ │ │ ├── tenge-sign.svg │ │ │ │ │ ├── tent-arrow-down-to-line.svg │ │ │ │ │ ├── tent-arrow-left-right.svg │ │ │ │ │ ├── tent-arrow-turn-left.svg │ │ │ │ │ ├── tent-arrows-down.svg │ │ │ │ │ ├── tent.svg │ │ │ │ │ ├── tents.svg │ │ │ │ │ ├── terminal.svg │ │ │ │ │ ├── text-height.svg │ │ │ │ │ ├── text-slash.svg │ │ │ │ │ ├── text-width.svg │ │ │ │ │ ├── thermometer.svg │ │ │ │ │ ├── thumbs-down.svg │ │ │ │ │ ├── thumbs-up.svg │ │ │ │ │ ├── thumbtack.svg │ │ │ │ │ ├── ticket-simple.svg │ │ │ │ │ ├── ticket.svg │ │ │ │ │ ├── timeline.svg │ │ │ │ │ ├── toggle-off.svg │ │ │ │ │ ├── toggle-on.svg │ │ │ │ │ ├── toilet-paper-slash.svg │ │ │ │ │ ├── toilet-paper.svg │ │ │ │ │ ├── toilet-portable.svg │ │ │ │ │ ├── toilet.svg │ │ │ │ │ ├── toilets-portable.svg │ │ │ │ │ ├── toolbox.svg │ │ │ │ │ ├── tooth.svg │ │ │ │ │ ├── torii-gate.svg │ │ │ │ │ ├── tornado.svg │ │ │ │ │ ├── tower-broadcast.svg │ │ │ │ │ ├── tower-cell.svg │ │ │ │ │ ├── tower-observation.svg │ │ │ │ │ ├── tractor.svg │ │ │ │ │ ├── trademark.svg │ │ │ │ │ ├── traffic-light.svg │ │ │ │ │ ├── trailer.svg │ │ │ │ │ ├── train-subway.svg │ │ │ │ │ ├── train-tram.svg │ │ │ │ │ ├── train.svg │ │ │ │ │ ├── transgender.svg │ │ │ │ │ ├── trash-arrow-up.svg │ │ │ │ │ ├── trash-can-arrow-up.svg │ │ │ │ │ ├── trash-can.svg │ │ │ │ │ ├── trash.svg │ │ │ │ │ ├── tree-city.svg │ │ │ │ │ ├── tree.svg │ │ │ │ │ ├── triangle-exclamation.svg │ │ │ │ │ ├── trophy.svg │ │ │ │ │ ├── trowel-bricks.svg │ │ │ │ │ ├── trowel.svg │ │ │ │ │ ├── truck-arrow-right.svg │ │ │ │ │ ├── truck-droplet.svg │ │ │ │ │ ├── truck-fast.svg │ │ │ │ │ ├── truck-field-un.svg │ │ │ │ │ ├── truck-field.svg │ │ │ │ │ ├── truck-front.svg │ │ │ │ │ ├── truck-medical.svg │ │ │ │ │ ├── truck-monster.svg │ │ │ │ │ ├── truck-moving.svg │ │ │ │ │ ├── truck-pickup.svg │ │ │ │ │ ├── truck-plane.svg │ │ │ │ │ ├── truck-ramp-box.svg │ │ │ │ │ ├── truck.svg │ │ │ │ │ ├── tty.svg │ │ │ │ │ ├── turkish-lira-sign.svg │ │ │ │ │ ├── turn-down.svg │ │ │ │ │ ├── turn-up.svg │ │ │ │ │ ├── tv.svg │ │ │ │ │ ├── u.svg │ │ │ │ │ ├── umbrella-beach.svg │ │ │ │ │ ├── umbrella.svg │ │ │ │ │ ├── underline.svg │ │ │ │ │ ├── universal-access.svg │ │ │ │ │ ├── unlock-keyhole.svg │ │ │ │ │ ├── unlock.svg │ │ │ │ │ ├── up-down-left-right.svg │ │ │ │ │ ├── up-down.svg │ │ │ │ │ ├── up-long.svg │ │ │ │ │ ├── up-right-and-down-left-from-center.svg │ │ │ │ │ ├── up-right-from-square.svg │ │ │ │ │ ├── upload.svg │ │ │ │ │ ├── user-astronaut.svg │ │ │ │ │ ├── user-check.svg │ │ │ │ │ ├── user-clock.svg │ │ │ │ │ ├── user-doctor.svg │ │ │ │ │ ├── user-gear.svg │ │ │ │ │ ├── user-graduate.svg │ │ │ │ │ ├── user-group.svg │ │ │ │ │ ├── user-injured.svg │ │ │ │ │ ├── user-large-slash.svg │ │ │ │ │ ├── user-large.svg │ │ │ │ │ ├── user-lock.svg │ │ │ │ │ ├── user-minus.svg │ │ │ │ │ ├── user-ninja.svg │ │ │ │ │ ├── user-nurse.svg │ │ │ │ │ ├── user-pen.svg │ │ │ │ │ ├── user-plus.svg │ │ │ │ │ ├── user-secret.svg │ │ │ │ │ ├── user-shield.svg │ │ │ │ │ ├── user-slash.svg │ │ │ │ │ ├── user-tag.svg │ │ │ │ │ ├── user-tie.svg │ │ │ │ │ ├── user-xmark.svg │ │ │ │ │ ├── user.svg │ │ │ │ │ ├── users-between-lines.svg │ │ │ │ │ ├── users-gear.svg │ │ │ │ │ ├── users-line.svg │ │ │ │ │ ├── users-rays.svg │ │ │ │ │ ├── users-rectangle.svg │ │ │ │ │ ├── users-slash.svg │ │ │ │ │ ├── users-viewfinder.svg │ │ │ │ │ ├── users.svg │ │ │ │ │ ├── utensils.svg │ │ │ │ │ ├── v.svg │ │ │ │ │ ├── van-shuttle.svg │ │ │ │ │ ├── vault.svg │ │ │ │ │ ├── vector-square.svg │ │ │ │ │ ├── venus-double.svg │ │ │ │ │ ├── venus-mars.svg │ │ │ │ │ ├── venus.svg │ │ │ │ │ ├── vest-patches.svg │ │ │ │ │ ├── vest.svg │ │ │ │ │ ├── vial-circle-check.svg │ │ │ │ │ ├── vial-virus.svg │ │ │ │ │ ├── vial.svg │ │ │ │ │ ├── vials.svg │ │ │ │ │ ├── video-slash.svg │ │ │ │ │ ├── video.svg │ │ │ │ │ ├── vihara.svg │ │ │ │ │ ├── virus-covid-slash.svg │ │ │ │ │ ├── virus-covid.svg │ │ │ │ │ ├── virus-slash.svg │ │ │ │ │ ├── virus.svg │ │ │ │ │ ├── viruses.svg │ │ │ │ │ ├── voicemail.svg │ │ │ │ │ ├── volcano.svg │ │ │ │ │ ├── volleyball.svg │ │ │ │ │ ├── volume-high.svg │ │ │ │ │ ├── volume-low.svg │ │ │ │ │ ├── volume-off.svg │ │ │ │ │ ├── volume-xmark.svg │ │ │ │ │ ├── vr-cardboard.svg │ │ │ │ │ ├── w.svg │ │ │ │ │ ├── walkie-talkie.svg │ │ │ │ │ ├── wallet.svg │ │ │ │ │ ├── wand-magic-sparkles.svg │ │ │ │ │ ├── wand-magic.svg │ │ │ │ │ ├── wand-sparkles.svg │ │ │ │ │ ├── warehouse.svg │ │ │ │ │ ├── water-ladder.svg │ │ │ │ │ ├── water.svg │ │ │ │ │ ├── wave-square.svg │ │ │ │ │ ├── weight-hanging.svg │ │ │ │ │ ├── weight-scale.svg │ │ │ │ │ ├── wheat-awn-circle-exclamation.svg │ │ │ │ │ ├── wheat-awn.svg │ │ │ │ │ ├── wheelchair-move.svg │ │ │ │ │ ├── wheelchair.svg │ │ │ │ │ ├── whiskey-glass.svg │ │ │ │ │ ├── wifi.svg │ │ │ │ │ ├── wind.svg │ │ │ │ │ ├── window-maximize.svg │ │ │ │ │ ├── window-minimize.svg │ │ │ │ │ ├── window-restore.svg │ │ │ │ │ ├── wine-bottle.svg │ │ │ │ │ ├── wine-glass-empty.svg │ │ │ │ │ ├── wine-glass.svg │ │ │ │ │ ├── won-sign.svg │ │ │ │ │ ├── worm.svg │ │ │ │ │ ├── wrench.svg │ │ │ │ │ ├── x-ray.svg │ │ │ │ │ ├── x.svg │ │ │ │ │ ├── xmark.svg │ │ │ │ │ ├── xmarks-lines.svg │ │ │ │ │ ├── y.svg │ │ │ │ │ ├── yen-sign.svg │ │ │ │ │ ├── yin-yang.svg │ │ │ │ │ └── z.svg │ │ │ └── webfonts │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ ├── fa-solid-900.woff2 │ │ │ │ ├── fa-v4compatibility.ttf │ │ │ │ └── fa-v4compatibility.woff2 │ │ └── raleway │ │ │ ├── raleway-400-ext.woff2 │ │ │ ├── raleway-400.woff2 │ │ │ ├── raleway-500-ext.woff2 │ │ │ ├── raleway-500.woff2 │ │ │ └── raleway.css │ ├── images │ │ ├── anonymous.jpg │ │ ├── daikoku.svg │ │ ├── favicon.png │ │ └── keys.svg │ ├── javascripts │ │ └── main.js │ ├── swaggers │ │ ├── admin-api-openapi.json │ │ ├── admin-api-openapi.yaml │ │ ├── api-with-examples.yaml │ │ ├── cms-api-openapi.json │ │ ├── petstore-expanded.yaml │ │ ├── petstore.json │ │ └── uspto.yaml │ ├── themes │ │ ├── brutalism.css │ │ └── default.css │ └── viewerjs │ │ ├── compatibility.js │ │ ├── example.local.css │ │ ├── images │ │ ├── kogmbh.png │ │ ├── nlnet.png │ │ ├── texture.png │ │ ├── toolbarButton-download.png │ │ ├── toolbarButton-fullscreen.png │ │ ├── toolbarButton-menuArrows.png │ │ ├── toolbarButton-pageDown.png │ │ ├── toolbarButton-pageUp.png │ │ ├── toolbarButton-presentation.png │ │ ├── toolbarButton-zoomIn.png │ │ └── toolbarButton-zoomOut.png │ │ ├── index.html │ │ ├── pdf.js │ │ ├── pdf.worker.js │ │ ├── pdfjsversion.js │ │ ├── text_layer_builder.js │ │ ├── ui_utils.js │ │ └── webodf.js ├── readme.md ├── test │ └── daikoku │ │ ├── AdminApiControllerSpec.scala │ │ ├── ApiControllerSpec.scala │ │ ├── BasicUsageSpec.scala │ │ ├── ConsumptionControllerSpec.scala │ │ ├── EnvironmentDisplayMode.scala │ │ ├── GraphQLControllerSpec.scala │ │ ├── GuestModeSpec.scala │ │ ├── MessagesControllerSpec.scala │ │ ├── NotificationControllerSpec.scala │ │ ├── TeamControllerSpec.scala │ │ ├── TenantControllerSpec.scala │ │ ├── UserControllerSpec.scala │ │ ├── otoroshi.json │ │ └── suites.scala └── version.sbt ├── demo ├── api │ ├── fake.js │ └── index.js ├── config │ ├── daikoku.ndjson │ ├── es-data │ │ └── nodes │ │ │ └── 0 │ │ │ ├── indices │ │ │ ├── di6qOnoNSema4X-yb8pRqQ │ │ │ │ └── 0 │ │ │ │ │ ├── _state │ │ │ │ │ └── retention-leases-0.st │ │ │ │ │ ├── index │ │ │ │ │ └── write.lock │ │ │ │ │ └── translog │ │ │ │ │ └── translog.ckp │ │ │ └── zckKNoMLRdOBdlT31OcqPQ │ │ │ │ └── 0 │ │ │ │ ├── _state │ │ │ │ └── retention-leases-0.st │ │ │ │ ├── index │ │ │ │ └── write.lock │ │ │ │ └── translog │ │ │ │ └── translog.ckp │ │ │ └── node.lock │ ├── nginx.conf │ ├── otoroshi-state.json │ ├── redis-data │ │ └── appendonly.aof │ └── s3-data │ │ ├── .minio.sys │ │ ├── buckets │ │ │ └── daikoku │ │ │ │ └── default │ │ │ │ └── tenant-assets │ │ │ │ └── e582b0126-4b75-467e-831d-c0510d9d70e4 (1).jpeg │ │ │ │ └── fs.json │ │ ├── config │ │ │ ├── config.json │ │ │ └── iam │ │ │ │ └── format.json │ │ └── format.json │ │ ├── daikoku │ │ └── default │ │ │ └── tenant-assets │ │ │ └── e582b0126-4b75-467e-831d-c0510d9d70e4 (1).jpeg │ │ └── s3-metadata │ │ ├── rootDB │ │ ├── 000005.ldb │ │ ├── 000006.log │ │ ├── CURRENT │ │ ├── LOCK │ │ ├── LOG │ │ ├── LOG.old │ │ └── MANIFEST-000004 │ │ └── uuid ├── docker-compose.dev.yml ├── docker-compose.yml ├── postgres-mtls.md └── readme.md ├── docs ├── 404.html ├── __server │ └── server.bundle.js ├── admin-api-openapi.yaml ├── assets │ ├── css │ │ ├── styles.111e5321.css │ │ ├── styles.58620cc5.css │ │ ├── styles.8152f05c.css │ │ ├── styles.98544a2c.css │ │ └── styles.996bb7bb.css │ ├── images │ │ ├── api-41de60c1d6a05edea8cf2b468bb6bfe0.png │ │ ├── apis-styling-a76108bb2dd794cb56e30a7064774eac.png │ │ ├── cli-architecture-d94f4777cfb7c79947571836871bd116.png │ │ ├── daikoku-architecture-b75571eeba9dcc23a069ce02e181e376.png │ │ ├── developer-mode-dd60825bc2b0a9ede7602001ab575616.png │ │ ├── home-apis-77c13d44844910b78e5cb820b9cba47a.png │ │ └── welcome-969c1c7c3d0ad01df954891ad6a93f8a.png │ └── js │ │ ├── 0019c764.06c6171c.js │ │ ├── 0019c764.312fe09a.js │ │ ├── 0019c764.a4b62e7b.js │ │ ├── 0019c764.e43e3d60.js │ │ ├── 00b536ae.2837a963.js │ │ ├── 03885ea5.036c3611.js │ │ ├── 03885ea5.25e04147.js │ │ ├── 03885ea5.5ccadc0b.js │ │ ├── 03885ea5.73b7f8fb.js │ │ ├── 07c0c607.15270da4.js │ │ ├── 07c0c607.1e7251aa.js │ │ ├── 07c0c607.a0fbb167.js │ │ ├── 07c0c607.d03d208d.js │ │ ├── 092b0f67.8981da22.js │ │ ├── 092b0f67.b62b4653.js │ │ ├── 092b0f67.db905e73.js │ │ ├── 092b0f67.e7f15b34.js │ │ ├── 0e3215c3.0c6e8444.js │ │ ├── 0e3215c3.3633f772.js │ │ ├── 0e3215c3.b24995ac.js │ │ ├── 0e3215c3.f0fc4cd5.js │ │ ├── 0e3215c3.f7de2d8b.js │ │ ├── 1117.6a569a19.js │ │ ├── 1117.6a569a19.js.LICENSE.txt │ │ ├── 138e0e15.cedf0e18.js │ │ ├── 144d83f2.0307ca27.js │ │ ├── 144d83f2.2f9b3151.js │ │ ├── 144d83f2.52e2cde1.js │ │ ├── 144d83f2.87d9a20d.js │ │ ├── 17038273.aa24bf96.js │ │ ├── 17038273.eb01dee9.js │ │ ├── 1772.a0d2561b.js │ │ ├── 17896441.2f5ce925.js │ │ ├── 17896441.53712574.js │ │ ├── 17896441.58eae93e.js │ │ ├── 17896441.cd3a406d.js │ │ ├── 17896441.fd5d4277.js │ │ ├── 18f231a6.1d1c5272.js │ │ ├── 18f231a6.6602148e.js │ │ ├── 18f231a6.df2f3f1e.js │ │ ├── 18f231a6.e89a1789.js │ │ ├── 199d0080.2230fcd2.js │ │ ├── 199d0080.42af629e.js │ │ ├── 199d0080.620167b3.js │ │ ├── 199d0080.6f61b5f2.js │ │ ├── 199d0080.be6d40b2.js │ │ ├── 199d0080.d08aa4e0.js │ │ ├── 1a4e3797.1b38c085.js │ │ ├── 1a4e3797.3977b5ab.js │ │ ├── 1a4e3797.ef747e76.js │ │ ├── 1a4e3797.f8685d1b.js │ │ ├── 20fde71e.52e205b7.js │ │ ├── 2237.b046eb9f.js │ │ ├── 22493dda.1af22f9d.js │ │ ├── 22493dda.b7741180.js │ │ ├── 23bfcfa6.bfdbbe40.js │ │ ├── 23bfcfa6.e0ff51c5.js │ │ ├── 23bfcfa6.ead27235.js │ │ ├── 2820f203.07eede48.js │ │ ├── 2820f203.234fde46.js │ │ ├── 2820f203.375d2150.js │ │ ├── 2820f203.d6f787e5.js │ │ ├── 2820f203.f1112172.js │ │ ├── 2820f203.f2419f27.js │ │ ├── 28af0bc8.8c25957a.js │ │ ├── 28af0bc8.9ff70ba2.js │ │ ├── 28af0bc8.b8c5e724.js │ │ ├── 28af0bc8.c97dcdc5.js │ │ ├── 28af0bc8.f104c970.js │ │ ├── 2d238738.34eb9a0f.js │ │ ├── 2d238738.86e85f44.js │ │ ├── 2d238738.aa91a98f.js │ │ ├── 2d238738.bf392c16.js │ │ ├── 3042.95f21d3c.js │ │ ├── 331c362e.08fa6cc3.js │ │ ├── 331c362e.0aefe8b7.js │ │ ├── 331c362e.23149361.js │ │ ├── 331c362e.9da7700d.js │ │ ├── 331c362e.a298e389.js │ │ ├── 3720c009.08d2cd37.js │ │ ├── 3720c009.6b632ca8.js │ │ ├── 3720c009.7f7055fc.js │ │ ├── 3720c009.c712adc2.js │ │ ├── 37484594.5690b05f.js │ │ ├── 37484594.66171a2f.js │ │ ├── 37484594.d1e6258a.js │ │ ├── 37484594.e20e74ac.js │ │ ├── 37a8690e.8573e14e.js │ │ ├── 37a8690e.977531a2.js │ │ ├── 37a8690e.cf480125.js │ │ ├── 37a8690e.f4e35428.js │ │ ├── 3a2220e2.c8e3dcfd.js │ │ ├── 3a667e87.0d3a97e3.js │ │ ├── 3a667e87.0e5e1f03.js │ │ ├── 3a667e87.7ebdf6f6.js │ │ ├── 3bccb1e5.4b656645.js │ │ ├── 3bccb1e5.5973cc64.js │ │ ├── 3bccb1e5.5987e67d.js │ │ ├── 3bccb1e5.876331bd.js │ │ ├── 3bccb1e5.e5a81082.js │ │ ├── 3d674ee3.b8bc74c4.js │ │ ├── 3f62fecf.0792c631.js │ │ ├── 3f62fecf.7c6ea9b6.js │ │ ├── 3f62fecf.dcb34929.js │ │ ├── 3f62fecf.df3c2839.js │ │ ├── 3f725ac7.e0da5d20.js │ │ ├── 47f5f50e.01d367c8.js │ │ ├── 47f5f50e.0f0c4ae7.js │ │ ├── 47f5f50e.6a3f6304.js │ │ ├── 484e5d86.0dba7743.js │ │ ├── 484e5d86.58f9ac38.js │ │ ├── 484e5d86.6f3f479f.js │ │ ├── 484e5d86.a66bfe3d.js │ │ ├── 484e5d86.c413ebe1.js │ │ ├── 484e5d86.e774d171.js │ │ ├── 489.6525d58b.js │ │ ├── 489.6525d58b.js.LICENSE.txt │ │ ├── 4fd64565.273164c1.js │ │ ├── 4fd64565.46f90887.js │ │ ├── 4fd64565.7bccaca9.js │ │ ├── 4fd64565.fbb12853.js │ │ ├── 530b026d.e189e2ad.js │ │ ├── 5525.72707160.js │ │ ├── 55940994.00fb20cc.js │ │ ├── 55940994.17151ba5.js │ │ ├── 55940994.31316f68.js │ │ ├── 55940994.ad47f997.js │ │ ├── 55940994.d1ed1ba9.js │ │ ├── 55960ee5.76b7b26c.js │ │ ├── 5679.9c6cbef5.js │ │ ├── 5679.9c6cbef5.js.LICENSE.txt │ │ ├── 5679.b66abbe9.js │ │ ├── 5679.b66abbe9.js.LICENSE.txt │ │ ├── 5741.9607e1ea.js │ │ ├── 5d70e2c8.416c9b09.js │ │ ├── 5d70e2c8.77af7c7c.js │ │ ├── 5d70e2c8.794d96c6.js │ │ ├── 5dfacd67.2f343024.js │ │ ├── 5e95c892.2b641d2a.js │ │ ├── 5e95c892.4aae98d7.js │ │ ├── 5e95c892.668b0afe.js │ │ ├── 606788fe.38364217.js │ │ ├── 606788fe.86af0572.js │ │ ├── 606788fe.90e0c5a2.js │ │ ├── 61654a24.d8c55af4.js │ │ ├── 637d173b.92ac723c.js │ │ ├── 637d173b.b7ec4183.js │ │ ├── 637d173b.dac1c185.js │ │ ├── 6419.3effdb0d.js │ │ ├── 6419.3effdb0d.js.LICENSE.txt │ │ ├── 64737f0d.03eb4f80.js │ │ ├── 64737f0d.065923a3.js │ │ ├── 64737f0d.096c1b5a.js │ │ ├── 64737f0d.2aecf6b6.js │ │ ├── 64737f0d.2d2e5d3b.js │ │ ├── 64737f0d.2d434340.js │ │ ├── 64737f0d.35892dd6.js │ │ ├── 64737f0d.3ba799e5.js │ │ ├── 64737f0d.40109041.js │ │ ├── 64737f0d.46f0ec84.js │ │ ├── 64737f0d.47e4de96.js │ │ ├── 64737f0d.6304e9c8.js │ │ ├── 64737f0d.757da09f.js │ │ ├── 64737f0d.9c951f91.js │ │ ├── 64737f0d.ae423211.js │ │ ├── 64737f0d.c1e43250.js │ │ ├── 64737f0d.c2ee4f88.js │ │ ├── 64737f0d.c5ebdf1c.js │ │ ├── 64737f0d.df9e3a09.js │ │ ├── 64737f0d.edafd534.js │ │ ├── 64737f0d.fedca048.js │ │ ├── 67a8f2c5.2cb92114.js │ │ ├── 67a8f2c5.49493cd7.js │ │ ├── 67a8f2c5.7996b46c.js │ │ ├── 67a8f2c5.afb9cdcd.js │ │ ├── 6881.c0293a55.js │ │ ├── 6881.c0293a55.js.LICENSE.txt │ │ ├── 6a9470e5.30159e0b.js │ │ ├── 6a9470e5.57100163.js │ │ ├── 6a9470e5.be7087bc.js │ │ ├── 6a9470e5.e830966e.js │ │ ├── 6b339c0f.2d6887e4.js │ │ ├── 6b339c0f.85409ea3.js │ │ ├── 6b339c0f.dd9e5e92.js │ │ ├── 6ba57622.6048356a.js │ │ ├── 6ba831b6.00ad083d.js │ │ ├── 6ba831b6.04722e80.js │ │ ├── 6ba831b6.7b74ccf5.js │ │ ├── 6ba831b6.d25b385b.js │ │ ├── 6ba831b6.feda4ffe.js │ │ ├── 73b1ab36.4a1677c1.js │ │ ├── 73b1ab36.daf2ad60.js │ │ ├── 73b1ab36.f4ef952c.js │ │ ├── 73b1ab36.fd9a2dd0.js │ │ ├── 7482af60.13d3b01b.js │ │ ├── 7482af60.3aee6310.js │ │ ├── 7482af60.5bd61df4.js │ │ ├── 7482af60.ba7d141e.js │ │ ├── 7542.11fa9dd5.js │ │ ├── 7542.140d2c78.js │ │ ├── 7542.2691bbd4.js │ │ ├── 7542.3e4c922c.js │ │ ├── 7542.423f4ac6.js │ │ ├── 7542.44b39b4b.js │ │ ├── 7542.5c85685d.js │ │ ├── 7542.6014eb13.js │ │ ├── 7542.6788a070.js │ │ ├── 7542.6d8889e6.js │ │ ├── 7542.70d5cc3a.js │ │ ├── 7542.7ca423ef.js │ │ ├── 7542.807e352c.js │ │ ├── 7542.808c38cc.js │ │ ├── 7542.8480d984.js │ │ ├── 7542.abc445b3.js │ │ ├── 7542.b21a0732.js │ │ ├── 7542.b60b1e1b.js │ │ ├── 7542.c5bb4cee.js │ │ ├── 7542.d159d3fe.js │ │ ├── 7542.d4cb1ef8.js │ │ ├── 7542.d54ced84.js │ │ ├── 7542.dff9ed56.js │ │ ├── 7542.e4014edc.js │ │ ├── 7542.e5031154.js │ │ ├── 7542.ef63aa67.js │ │ ├── 7542.f72e1f27.js │ │ ├── 78b3c00e.e7ae6a03.js │ │ ├── 7cdc31f5.68424d3d.js │ │ ├── 7cdc31f5.bcec501d.js │ │ ├── 7cdc31f5.bd6d5966.js │ │ ├── 7cdc31f5.deee9f99.js │ │ ├── 7da7b125.2045e6b5.js │ │ ├── 7da7b125.2af7bc95.js │ │ ├── 7f6c714f.1c169780.js │ │ ├── 8129fd32.1926c6f7.js │ │ ├── 8129fd32.26e55753.js │ │ ├── 8129fd32.300e75c7.js │ │ ├── 8129fd32.31d07e5f.js │ │ ├── 8129fd32.67b69c31.js │ │ ├── 8129fd32.eecd2a34.js │ │ ├── 8443.0d7ac104.js │ │ ├── 8443.0d7ac104.js.LICENSE.txt │ │ ├── 8ca3e574.0dff4b91.js │ │ ├── 8ca3e574.4cf059c6.js │ │ ├── 8ca3e574.6f1a41af.js │ │ ├── 8ca3e574.ac398893.js │ │ ├── 91086ed6.01cd7b95.js │ │ ├── 91086ed6.14bc922e.js │ │ ├── 91086ed6.21b7b5a8.js │ │ ├── 91086ed6.3590a121.js │ │ ├── 91086ed6.3ba33679.js │ │ ├── 91086ed6.3d48775f.js │ │ ├── 91086ed6.3e227675.js │ │ ├── 91086ed6.6935e487.js │ │ ├── 91086ed6.69494ddd.js │ │ ├── 91086ed6.70a4a21e.js │ │ ├── 91086ed6.74800243.js │ │ ├── 91086ed6.889e5e36.js │ │ ├── 91086ed6.969bb178.js │ │ ├── 91086ed6.f36b1459.js │ │ ├── 9117216e.2fa25ab6.js │ │ ├── 9117216e.755349ff.js │ │ ├── 9117216e.8564420b.js │ │ ├── 9117216e.ae397ef9.js │ │ ├── 92a12325.730f0214.js │ │ ├── 92a12325.d9d77754.js │ │ ├── 935f2afb.1ef3ffd8.js │ │ ├── 935f2afb.40b0df95.js │ │ ├── 935f2afb.6de2643f.js │ │ ├── 935f2afb.960c0db5.js │ │ ├── 935f2afb.9fa4e6f2.js │ │ ├── 935f2afb.b6c8d3e9.js │ │ ├── 9755f291.62cb9131.js │ │ ├── 9755f291.70dda844.js │ │ ├── 9755f291.dcc5799c.js │ │ ├── 9755f291.e6f5e14c.js │ │ ├── 99cb6e1e.483d8b06.js │ │ ├── 99cb6e1e.b23dc44a.js │ │ ├── 99cb6e1e.e18ef05e.js │ │ ├── 9cff9f48.15ba95a9.js │ │ ├── 9cff9f48.5af3f1ce.js │ │ ├── 9cff9f48.7c1650c1.js │ │ ├── 9cff9f48.86b06744.js │ │ ├── 9cff9f48.d58dfb9c.js │ │ ├── 9cff9f48.df1d4d94.js │ │ ├── a11d92f0.3e818d31.js │ │ ├── a42cea08.b9ed8e3a.js │ │ ├── a4646789.24be537e.js │ │ ├── a7456010.9aa70c4a.js │ │ ├── a7bd4aaa.2f27a013.js │ │ ├── a7bd4aaa.30d0f55b.js │ │ ├── a7bd4aaa.dbfb3eca.js │ │ ├── a8fdd87e.773f912e.js │ │ ├── a90bcd30.0d1ce23a.js │ │ ├── a90bcd30.bcd8f32b.js │ │ ├── a90bcd30.caa9e7bf.js │ │ ├── a94703ab.07d5b755.js │ │ ├── a94703ab.40235ea8.js │ │ ├── a94703ab.46c05b77.js │ │ ├── a94703ab.d948697c.js │ │ ├── a94703ab.dd85054d.js │ │ ├── aa74e104.30803d74.js │ │ ├── aa74e104.522e2251.js │ │ ├── aa74e104.917a2b15.js │ │ ├── aa74e104.f7e44be0.js │ │ ├── aba21aa0.5384ca86.js │ │ ├── abfe3ee9.d42bb68a.js │ │ ├── abfe3ee9.d5621304.js │ │ ├── adffbaad.2d0013c6.js │ │ ├── b277a811.013ea135.js │ │ ├── b277a811.02ffebca.js │ │ ├── b277a811.0557efb9.js │ │ ├── b277a811.1c450fe7.js │ │ ├── b277a811.1ea35be6.js │ │ ├── b277a811.26bc41b5.js │ │ ├── b277a811.35117acb.js │ │ ├── b277a811.4494ee3c.js │ │ ├── b277a811.52305847.js │ │ ├── b277a811.764e7e02.js │ │ ├── b277a811.87855ba1.js │ │ ├── b277a811.957fd386.js │ │ ├── b277a811.95c5c189.js │ │ ├── b277a811.9807c949.js │ │ ├── b277a811.9f584504.js │ │ ├── b277a811.a7e111a8.js │ │ ├── b277a811.aab491f7.js │ │ ├── b277a811.afa52987.js │ │ ├── b277a811.b127a97f.js │ │ ├── b277a811.bf33b34d.js │ │ ├── b277a811.c2fe14b4.js │ │ ├── b277a811.c39a693f.js │ │ ├── b277a811.d147bd3c.js │ │ ├── b277a811.dd0b0afa.js │ │ ├── b277a811.df2d670c.js │ │ ├── b277a811.e261e48b.js │ │ ├── b277a811.e2af658e.js │ │ ├── b277a811.e8dd1e1f.js │ │ ├── b277a811.eb537593.js │ │ ├── b277a811.f2fc7772.js │ │ ├── b277a811.fdc9b42d.js │ │ ├── b277a811.ff557e03.js │ │ ├── bb669cdd.271295ad.js │ │ ├── bb669cdd.8705f1aa.js │ │ ├── bb669cdd.a719d089.js │ │ ├── bb669cdd.de1f67ee.js │ │ ├── beb35022.e48b002e.js │ │ ├── c00036f2.33c38aaa.js │ │ ├── c00036f2.44a748fe.js │ │ ├── c4f5d8e4.00df7d0d.js │ │ ├── c4f5d8e4.b14b0fd2.js │ │ ├── c4f5d8e4.be1019b3.js │ │ ├── c4f5d8e4.f0a5e05b.js │ │ ├── c4f5d8e4.f12e0e4b.js │ │ ├── c4f5d8e4.fd7a3e17.js │ │ ├── c5a98549.458824dd.js │ │ ├── c5a98549.5de2bda7.js │ │ ├── c5a98549.6083597d.js │ │ ├── c5a98549.6b4cf55e.js │ │ ├── c5a98549.a49351ed.js │ │ ├── c5f7dd62.17bf3115.js │ │ ├── c5f7dd62.18a5bee6.js │ │ ├── c5f7dd62.9ed002f5.js │ │ ├── c5f7dd62.cc2da392.js │ │ ├── c658d08c.13b6388b.js │ │ ├── c658d08c.ac3a6b5a.js │ │ ├── c658d08c.b2751c51.js │ │ ├── c658d08c.b4fd9924.js │ │ ├── c9d9ec16.95e84aee.js │ │ ├── c9d9ec16.b7b4c749.js │ │ ├── c9d9ec16.cafa30d3.js │ │ ├── c9d9ec16.ec028d63.js │ │ ├── cdd7a3d4.94980ccc.js │ │ ├── d5060a81.03c9513a.js │ │ ├── d5060a81.20ab3e56.js │ │ ├── d5060a81.2a8371c0.js │ │ ├── d5060a81.3ce0c363.js │ │ ├── d5060a81.48454111.js │ │ ├── d5060a81.505dc160.js │ │ ├── d7242cac.0b1673b6.js │ │ ├── d7242cac.4ce76e25.js │ │ ├── d7242cac.6439e0f9.js │ │ ├── d7242cac.7933aef6.js │ │ ├── d8973fa8.2f1dd2f5.js │ │ ├── d8973fa8.78d64030.js │ │ ├── d8973fa8.c5f02f53.js │ │ ├── d8973fa8.ca8765d2.js │ │ ├── d9990e8a.24983a66.js │ │ ├── d9990e8a.258913b4.js │ │ ├── d9990e8a.854b13ce.js │ │ ├── d9990e8a.d6f3d78e.js │ │ ├── df203c0f.457d1c7e.js │ │ ├── df203c0f.7bd1da3a.js │ │ ├── df203c0f.9e59c6dc.js │ │ ├── df203c0f.9f439e8f.js │ │ ├── e06b81f4.33681dd8.js │ │ ├── e06b81f4.52f28af3.js │ │ ├── e06b81f4.d9de3fc7.js │ │ ├── e83df34e.013af2eb.js │ │ ├── e83df34e.4124771e.js │ │ ├── e83df34e.ad1d7395.js │ │ ├── e83df34e.b5bb39c4.js │ │ ├── e83df34e.b83b1ef9.js │ │ ├── e83df34e.f35e8ae6.js │ │ ├── e953d3c5.057fccf0.js │ │ ├── e953d3c5.1f2dde6e.js │ │ ├── e953d3c5.52a31f7f.js │ │ ├── e953d3c5.88b83876.js │ │ ├── e953d3c5.d7c46002.js │ │ ├── e953d3c5.e533870f.js │ │ ├── ed11db58.3bb72ca6.js │ │ ├── ed11db58.d4d94b94.js │ │ ├── ee06beb8.5860adc0.js │ │ ├── ee06beb8.ac188895.js │ │ ├── ee06beb8.cc4c29d9.js │ │ ├── ee06beb8.f36a150b.js │ │ ├── ef4bb451.2e11c473.js │ │ ├── ef4bb451.52f38fd2.js │ │ ├── ef4bb451.aeb903cb.js │ │ ├── ef4bb451.e1a11849.js │ │ ├── f0ad3fbb.186395f7.js │ │ ├── f0ad3fbb.5e1206b1.js │ │ ├── fa8a5ad9.2b0034de.js │ │ ├── fa8a5ad9.4e625e86.js │ │ ├── fa8a5ad9.58d4ad6c.js │ │ ├── fa8a5ad9.99c63c15.js │ │ ├── fb4f8d45.4aaca498.js │ │ ├── fb4f8d45.6fa77db1.js │ │ ├── fb4f8d45.b97c72ac.js │ │ ├── fb4f8d45.f5261a41.js │ │ ├── fc0be43e.cc2bfb14.js │ │ ├── fc0be43e.d7fe1022.js │ │ ├── main.0313916c.js │ │ ├── main.0313916c.js.LICENSE.txt │ │ ├── main.05ec9a04.js │ │ ├── main.05ec9a04.js.LICENSE.txt │ │ ├── main.0b5fd8e8.js │ │ ├── main.0b5fd8e8.js.LICENSE.txt │ │ ├── main.0bd0776c.js │ │ ├── main.0bd0776c.js.LICENSE.txt │ │ ├── main.0c8ff57e.js │ │ ├── main.0c8ff57e.js.LICENSE.txt │ │ ├── main.15cef605.js │ │ ├── main.15cef605.js.LICENSE.txt │ │ ├── main.1e28e9b4.js │ │ ├── main.1e28e9b4.js.LICENSE.txt │ │ ├── main.225c816f.js │ │ ├── main.225c816f.js.LICENSE.txt │ │ ├── main.257a9ffa.js │ │ ├── main.257a9ffa.js.LICENSE.txt │ │ ├── main.27ec7d19.js │ │ ├── main.27ec7d19.js.LICENSE.txt │ │ ├── main.2877995b.js │ │ ├── main.2877995b.js.LICENSE.txt │ │ ├── main.3245a045.js │ │ ├── main.3245a045.js.LICENSE.txt │ │ ├── main.35376190.js │ │ ├── main.35376190.js.LICENSE.txt │ │ ├── main.3afe0366.js │ │ ├── main.3afe0366.js.LICENSE.txt │ │ ├── main.4d5fddc9.js │ │ ├── main.4d5fddc9.js.LICENSE.txt │ │ ├── main.4dd56883.js │ │ ├── main.4dd56883.js.LICENSE.txt │ │ ├── main.5df4e3fc.js │ │ ├── main.5df4e3fc.js.LICENSE.txt │ │ ├── main.67484704.js │ │ ├── main.67484704.js.LICENSE.txt │ │ ├── main.682087ca.js │ │ ├── main.682087ca.js.LICENSE.txt │ │ ├── main.697082df.js │ │ ├── main.697082df.js.LICENSE.txt │ │ ├── main.8a66cc76.js │ │ ├── main.8a66cc76.js.LICENSE.txt │ │ ├── main.9677e80a.js │ │ ├── main.9677e80a.js.LICENSE.txt │ │ ├── main.98737f23.js │ │ ├── main.98737f23.js.LICENSE.txt │ │ ├── main.9a87da9d.js │ │ ├── main.9a87da9d.js.LICENSE.txt │ │ ├── main.9abcd556.js │ │ ├── main.9abcd556.js.LICENSE.txt │ │ ├── main.a34f8fc9.js │ │ ├── main.a34f8fc9.js.LICENSE.txt │ │ ├── main.a8b3ff6b.js │ │ ├── main.a8b3ff6b.js.LICENSE.txt │ │ ├── main.b67d623c.js │ │ ├── main.b67d623c.js.LICENSE.txt │ │ ├── main.ba23b206.js │ │ ├── main.ba23b206.js.LICENSE.txt │ │ ├── main.bb62075a.js │ │ ├── main.bb62075a.js.LICENSE.txt │ │ ├── main.c2f49dde.js │ │ ├── main.c2f49dde.js.LICENSE.txt │ │ ├── main.c935f2f7.js │ │ ├── main.c935f2f7.js.LICENSE.txt │ │ ├── main.da9892a2.js │ │ ├── main.da9892a2.js.LICENSE.txt │ │ ├── main.e4ef4c5a.js │ │ ├── main.e4ef4c5a.js.LICENSE.txt │ │ ├── main.e6085b1c.js │ │ ├── main.e6085b1c.js.LICENSE.txt │ │ ├── main.e7e08b12.js │ │ ├── main.e7e08b12.js.LICENSE.txt │ │ ├── main.e903d22b.js │ │ ├── main.e903d22b.js.LICENSE.txt │ │ ├── main.f1622a89.js │ │ ├── main.f1622a89.js.LICENSE.txt │ │ ├── main.f6bbb69b.js │ │ ├── main.f6bbb69b.js.LICENSE.txt │ │ ├── main.f9e4736d.js │ │ ├── main.f9e4736d.js.LICENSE.txt │ │ ├── runtime~main.0057ec3c.js │ │ ├── runtime~main.00b70b99.js │ │ ├── runtime~main.0306a75c.js │ │ ├── runtime~main.061b3e47.js │ │ ├── runtime~main.0d9e16bd.js │ │ ├── runtime~main.19e23a18.js │ │ ├── runtime~main.1b9f696c.js │ │ ├── runtime~main.1e1f1d73.js │ │ ├── runtime~main.2469728c.js │ │ ├── runtime~main.2deba45f.js │ │ ├── runtime~main.2ef63d95.js │ │ ├── runtime~main.30f8fd83.js │ │ ├── runtime~main.37779ac6.js │ │ ├── runtime~main.3a3cae44.js │ │ ├── runtime~main.48c7d45a.js │ │ ├── runtime~main.49cc470d.js │ │ ├── runtime~main.4bd58d7b.js │ │ ├── runtime~main.4fda904f.js │ │ ├── runtime~main.5446f01a.js │ │ ├── runtime~main.638fbb21.js │ │ ├── runtime~main.63e4baa9.js │ │ ├── runtime~main.657634a1.js │ │ ├── runtime~main.6736ed9f.js │ │ ├── runtime~main.68b40058.js │ │ ├── runtime~main.69a080a2.js │ │ ├── runtime~main.6c7bde3f.js │ │ ├── runtime~main.6e745fb2.js │ │ ├── runtime~main.71cb777e.js │ │ ├── runtime~main.73b04eb4.js │ │ ├── runtime~main.75fd59dd.js │ │ ├── runtime~main.7ec1144e.js │ │ ├── runtime~main.81870b8e.js │ │ ├── runtime~main.895c194e.js │ │ ├── runtime~main.930ab2d1.js │ │ ├── runtime~main.94410243.js │ │ ├── runtime~main.976d71f2.js │ │ ├── runtime~main.97a08261.js │ │ ├── runtime~main.9a61c14e.js │ │ ├── runtime~main.9c363b9c.js │ │ ├── runtime~main.a4c68102.js │ │ ├── runtime~main.a659f1d7.js │ │ ├── runtime~main.a9be3826.js │ │ ├── runtime~main.ae94eb80.js │ │ ├── runtime~main.b19c8ee8.js │ │ ├── runtime~main.b575be8c.js │ │ ├── runtime~main.b8a72944.js │ │ ├── runtime~main.b96a340d.js │ │ ├── runtime~main.b992d371.js │ │ ├── runtime~main.bf64e289.js │ │ ├── runtime~main.bffac6ff.js │ │ ├── runtime~main.c01bb24d.js │ │ ├── runtime~main.c0d2e68e.js │ │ ├── runtime~main.c8d9941a.js │ │ ├── runtime~main.cd36a0f6.js │ │ ├── runtime~main.d3013f4f.js │ │ ├── runtime~main.dc8e2e0f.js │ │ ├── runtime~main.dd38d8db.js │ │ ├── runtime~main.e03a2102.js │ │ ├── runtime~main.e0c42e28.js │ │ ├── runtime~main.e2f0372d.js │ │ ├── runtime~main.f0dc1797.js │ │ ├── runtime~main.f5ef9a6f.js │ │ └── runtime~main.fbe5a876.js ├── docs │ ├── cli │ │ ├── apis-to-business-website │ │ │ ├── add-dynamic-content │ │ │ │ └── index.html │ │ │ ├── add-personal-assets │ │ │ │ └── index.html │ │ │ ├── build-your-first-layout │ │ │ │ └── index.html │ │ │ ├── configure-custom-emails │ │ │ │ └── index.html │ │ │ ├── create-react-component │ │ │ │ └── index.html │ │ │ ├── create-your-first-page │ │ │ │ └── index.html │ │ │ ├── create-your-first-project │ │ │ │ └── index.html │ │ │ ├── define-and-use-a-variable │ │ │ │ └── index.html │ │ │ ├── deploy-your-website │ │ │ │ └── index.html │ │ │ ├── dev-mode │ │ │ │ └── index.html │ │ │ ├── edit-your-home-page │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── style-your-apis-page │ │ │ │ └── index.html │ │ ├── index.html │ │ └── informations │ │ │ └── index.html │ ├── getstarted │ │ ├── about │ │ │ └── index.html │ │ ├── firstrun │ │ │ ├── configfile │ │ │ │ └── index.html │ │ │ ├── datastore │ │ │ │ └── index.html │ │ │ ├── env │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── initialstate │ │ │ │ └── index.html │ │ │ └── run │ │ │ │ └── index.html │ │ ├── getdaikoku │ │ │ └── index.html │ │ ├── index.html │ │ ├── quickstart │ │ │ └── index.html │ │ └── setup │ │ │ ├── admin │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── reporting │ │ │ └── index.html │ ├── guides │ │ ├── apis │ │ │ └── index.html │ │ ├── archi │ │ │ └── index.html │ │ ├── authentication │ │ │ └── index.html │ │ ├── deploy │ │ │ └── index.html │ │ ├── develop-daikoku │ │ │ └── index.html │ │ ├── index.html │ │ ├── integrations │ │ │ └── index.html │ │ └── jobs │ │ │ └── index.html │ ├── tags │ │ ├── index.html │ │ ├── installation │ │ │ └── index.html │ │ └── licence │ │ │ └── index.html │ └── usages │ │ ├── adminusage │ │ ├── importexport │ │ │ └── index.html │ │ ├── index.html │ │ ├── sessions │ │ │ └── index.html │ │ ├── tenants │ │ │ └── index.html │ │ └── users │ │ │ └── index.html │ │ ├── consumerusage │ │ ├── aggregation-of-apikeys │ │ │ └── index.html │ │ ├── apikeys │ │ │ └── index.html │ │ ├── billing │ │ │ └── index.html │ │ ├── fastmode │ │ │ └── index.html │ │ ├── index.html │ │ └── subscribe │ │ │ └── index.html │ │ ├── index.html │ │ ├── producerusage │ │ ├── apis │ │ │ └── index.html │ │ ├── assets │ │ │ └── index.html │ │ ├── income │ │ │ └── index.html │ │ ├── index.html │ │ ├── members │ │ │ └── index.html │ │ └── subscriptions │ │ │ └── index.html │ │ └── tenantusage │ │ ├── 1.5-initialize │ │ └── index.html │ │ ├── 5.5-display │ │ └── index.html │ │ ├── assets │ │ └── index.html │ │ ├── cms │ │ └── index.html │ │ ├── index.html │ │ ├── messages │ │ └── index.html │ │ ├── otoroshi │ │ └── index.html │ │ ├── teams │ │ └── index.html │ │ └── translations │ │ └── index.html ├── img │ ├── api.png │ ├── apis-styling.png │ ├── cli-architecture.png │ ├── daikoku-architecture.png │ ├── daikoku-mini-dark.svg │ ├── daikoku-mini.svg │ ├── daikoku.png │ ├── developer-mode.png │ ├── home-apis.png │ ├── logo.svg │ ├── undraw_building_websites_i78t.svg │ ├── undraw_different_love_a-3-rg.svg │ ├── undraw_mindfulness_8gqa.svg │ └── welcome.png ├── index.html ├── openapi │ ├── admin-api-openapi.json │ ├── admin-api-openapi.yaml │ └── index.html ├── redocusaurus │ └── plugin-redoc-0.yaml ├── search-index.json ├── search │ └── index.html └── sitemap.xml ├── licences.md ├── manual ├── .gitignore ├── README.md ├── babel.config.js ├── docs │ ├── 01-getstarted │ │ ├── 00-about.md │ │ ├── 03-quickstart.md │ │ ├── 04-getdaikoku │ │ │ └── index.mdx │ │ ├── 05-firstrun │ │ │ ├── configfile.md │ │ │ ├── datastore.md │ │ │ ├── env.md │ │ │ ├── index.md │ │ │ ├── initialstate.md │ │ │ └── run.mdx │ │ ├── 06-setup │ │ │ ├── admin.md │ │ │ ├── index.md │ │ │ └── reporting.md │ │ └── index.mdx │ ├── 02-usages │ │ ├── 07-adminusage │ │ │ ├── 1-tenants.md │ │ │ ├── 2-users.md │ │ │ ├── 3-sessions.md │ │ │ ├── 4-importexport.md │ │ │ └── index.md │ │ ├── 08-tenantusage │ │ │ ├── 1-otoroshi.md │ │ │ ├── 1.5-initialize.md │ │ │ ├── 2-teams.md │ │ │ ├── 3-assets.md │ │ │ ├── 4-messages.md │ │ │ ├── 5-translations.md │ │ │ ├── 5.5-display.md │ │ │ ├── 6-cms.md │ │ │ ├── index.md │ │ │ └── snippets │ │ │ │ ├── api.html │ │ │ │ ├── apis.html │ │ │ │ ├── footer.html │ │ │ │ ├── layout.html │ │ │ │ ├── main.css │ │ │ │ ├── navbar.html │ │ │ │ └── script.js │ │ ├── 09-producerusage │ │ │ ├── 1-apis.md │ │ │ ├── 2-members.md │ │ │ ├── 2-subscriptions.md │ │ │ ├── 3-assets.md │ │ │ ├── 4-income.md │ │ │ └── index.md │ │ ├── 10-consumerusage │ │ │ ├── 1-subscribe.md │ │ │ ├── 2-apikeys.md │ │ │ ├── 3-aggregation-of-apikeys.md │ │ │ ├── 4-billing.md │ │ │ ├── 5-fastmode.md │ │ │ └── index.md │ │ └── index.mdx │ ├── 03-guides │ │ ├── 02-archi.md │ │ ├── 03-jobs.md │ │ ├── 11-integrations.md │ │ ├── 12-apis.md │ │ ├── 13-deploy.md │ │ ├── 14-authentication.mdx │ │ ├── 15-otoroshi-exposition │ │ ├── 16-dev.mdx │ │ └── index.mdx │ ├── 04-cli │ │ ├── 041-informations │ │ │ └── index.mdx │ │ ├── 042-apis-to-business-website │ │ │ ├── 01-create-your-first-project.mdx │ │ │ ├── 02-edit-your-home-page.mdx │ │ │ ├── 03-deploy-your-website.mdx │ │ │ ├── 04-create-your-first-page.mdx │ │ │ ├── 05-add-dynamic-content.mdx │ │ │ ├── 06-style-your-apis-page.mdx │ │ │ ├── 07-build-your-first-layout.mdx │ │ │ ├── 08-define-and-use-a-variable.mdx │ │ │ ├── 09-create-react-component.mdx │ │ │ ├── 10-configure-custom-emails.mdx │ │ │ ├── 11-dev-mode.mdx │ │ │ ├── 12-add-personal-assets.mdx │ │ │ └── index.mdx │ │ └── index.mdx │ ├── code │ │ └── swagger.json │ ├── content-pretty.json │ ├── content.json │ └── img │ │ ├── daikoku-architecture.png │ │ ├── home_page.png │ │ ├── login_page.png │ │ ├── main_page.png │ │ ├── main_page_menu.png │ │ ├── new_user.png │ │ ├── organisation_settings.png │ │ ├── small-daikoku-logo.png │ │ ├── tenants_list.png │ │ └── user_page.png ├── docusaurus.config.js ├── package-lock.json ├── package.json ├── sidebars.js ├── src │ ├── components │ │ ├── DocumentationThemeHub │ │ │ ├── index.js │ │ │ └── styles.module.css │ │ ├── HomepageDaikokuDescription │ │ │ ├── index.js │ │ │ └── styles.module.css │ │ └── HomepageFeatures │ │ │ ├── index.js │ │ │ └── styles.module.css │ ├── css │ │ └── custom.css │ ├── pages │ │ ├── index.js │ │ └── index.module.css │ └── theme │ │ └── SearchBar.js ├── static │ ├── .nojekyll │ ├── admin-api-openapi.yaml │ ├── img │ │ ├── api.png │ │ ├── apis-styling.png │ │ ├── cli-architecture.png │ │ ├── daikoku-architecture.png │ │ ├── daikoku-mini-dark.svg │ │ ├── daikoku-mini.svg │ │ ├── daikoku.png │ │ ├── developer-mode.png │ │ ├── home-apis.png │ │ ├── logo.svg │ │ ├── undraw_building_websites_i78t.svg │ │ ├── undraw_different_love_a-3-rg.svg │ │ ├── undraw_mindfulness_8gqa.svg │ │ └── welcome.png │ └── openapi │ │ ├── admin-api-openapi.json │ │ └── admin-api-openapi.yaml └── yarn.lock ├── project └── build.properties ├── readme.md ├── resources ├── daikoku-logo.png └── daikoku.svg └── scripts ├── build.sh ├── package.json ├── publish.js ├── version.js └── yarn.lock /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/release-notes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/.github/release-notes.yml -------------------------------------------------------------------------------- /.github/workflows/cli.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/.github/workflows/cli.yml -------------------------------------------------------------------------------- /.github/workflows/playwright.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/.github/workflows/playwright.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.github/workflows/update-dev-manual.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/.github/workflows/update-dev-manual.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/CHANGELOG -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/LICENCE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/NOTICE -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/SECURITY.md -------------------------------------------------------------------------------- /cli/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/cli/Cargo.lock -------------------------------------------------------------------------------- /cli/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/cli/Cargo.toml -------------------------------------------------------------------------------- /cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/cli/README.md -------------------------------------------------------------------------------- /cli/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/cli/architecture.png -------------------------------------------------------------------------------- /cli/src/bin.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/cli/src/bin.rs -------------------------------------------------------------------------------- /cli/src/commands/assets.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/cli/src/commands/assets.rs -------------------------------------------------------------------------------- /cli/src/commands/cms.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/cli/src/commands/cms.rs -------------------------------------------------------------------------------- /cli/src/commands/environments.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/cli/src/commands/environments.rs -------------------------------------------------------------------------------- /cli/src/commands/generate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/cli/src/commands/generate.rs -------------------------------------------------------------------------------- /cli/src/commands/login.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/cli/src/commands/login.rs -------------------------------------------------------------------------------- /cli/src/commands/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/cli/src/commands/mod.rs -------------------------------------------------------------------------------- /cli/src/commands/pull.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/cli/src/commands/pull.rs -------------------------------------------------------------------------------- /cli/src/commands/push.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/cli/src/commands/push.rs -------------------------------------------------------------------------------- /cli/src/commands/version.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/cli/src/commands/version.rs -------------------------------------------------------------------------------- /cli/src/commands/watch.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/cli/src/commands/watch.rs -------------------------------------------------------------------------------- /cli/src/helpers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/cli/src/helpers.rs -------------------------------------------------------------------------------- /cli/src/interactive.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/cli/src/interactive.rs -------------------------------------------------------------------------------- /cli/src/logging/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/cli/src/logging/error.rs -------------------------------------------------------------------------------- /cli/src/logging/logger.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/cli/src/logging/logger.rs -------------------------------------------------------------------------------- /cli/src/logging/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/cli/src/logging/mod.rs -------------------------------------------------------------------------------- /cli/src/models/folder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/cli/src/models/folder.rs -------------------------------------------------------------------------------- /cli/src/models/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod folder; -------------------------------------------------------------------------------- /cli/src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/cli/src/utils.rs -------------------------------------------------------------------------------- /cli/templates/cms.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/cli/templates/cms.zip -------------------------------------------------------------------------------- /cli/templates/cms/.daikoku/.daikokuignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cli/templates/cms/.daikoku/.environments: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cli/templates/cms/.daikoku/.secrets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cli/templates/cms/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cli/templates/cms/src/apis/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cli/templates/cms/src/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cli/templates/cms/src/mails/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cli/templates/cms/src/pages/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cli/templates/cms/src/pages/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/cli/templates/cms/src/pages/404.html -------------------------------------------------------------------------------- /cli/templates/cms/src/pages/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/cli/templates/cms/src/pages/page.html -------------------------------------------------------------------------------- /cli/templates/cms/src/pages/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/cli/templates/cms/src/pages/styles.css -------------------------------------------------------------------------------- /cli/templates/cms/src/scripts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cli/templates/cms/src/styles/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cli/templates/manager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/cli/templates/manager.html -------------------------------------------------------------------------------- /cli/templates/session_expired.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/cli/templates/session_expired.html -------------------------------------------------------------------------------- /cli/templates/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/cli/templates/update.sh -------------------------------------------------------------------------------- /cli/tests/assets.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/cli/tests/assets.rs -------------------------------------------------------------------------------- /cli/tests/cli/commands/assets.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/cli/tests/cli/commands/assets.rs -------------------------------------------------------------------------------- /cli/tests/cli/commands/cli.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/cli/tests/cli/commands/cli.rs -------------------------------------------------------------------------------- /cli/tests/cli/commands/cms.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/cli/tests/cli/commands/cms.rs -------------------------------------------------------------------------------- /cli/tests/cli/commands/environment.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/cli/tests/cli/commands/environment.rs -------------------------------------------------------------------------------- /cli/tests/cli/commands/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/cli/tests/cli/commands/mod.rs -------------------------------------------------------------------------------- /cli/tests/cli/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod commands; -------------------------------------------------------------------------------- /cli/tests/cms.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/cli/tests/cms.rs -------------------------------------------------------------------------------- /cli/tests/environments.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/cli/tests/environments.rs -------------------------------------------------------------------------------- /cli/tests/generate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/cli/tests/generate.rs -------------------------------------------------------------------------------- /cli/tests/login.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/cli/tests/login.rs -------------------------------------------------------------------------------- /cli/tests/pull.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/cli/tests/pull.rs -------------------------------------------------------------------------------- /cli/tests/push.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/cli/tests/push.rs -------------------------------------------------------------------------------- /cli/tests/resources/.gitignore: -------------------------------------------------------------------------------- 1 | .s3_env -------------------------------------------------------------------------------- /cli/tests/resources/daikoku-state.ndjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/cli/tests/resources/daikoku-state.ndjson -------------------------------------------------------------------------------- /cli/tests/resources/daikoku.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/cli/tests/resources/daikoku.svg -------------------------------------------------------------------------------- /cli/tests/version.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/cli/tests/version.rs -------------------------------------------------------------------------------- /daikoku/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .metals 3 | .bloop 4 | mongo-data 5 | logs 6 | target -------------------------------------------------------------------------------- /daikoku/.scalafmt.conf: -------------------------------------------------------------------------------- 1 | version = 2.5.0 2 | align.openParenCallSite = false -------------------------------------------------------------------------------- /daikoku/app/actions/actions.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/app/actions/actions.scala -------------------------------------------------------------------------------- /daikoku/app/audit/audit.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/app/audit/audit.scala -------------------------------------------------------------------------------- /daikoku/app/audit/config.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/app/audit/config.scala -------------------------------------------------------------------------------- /daikoku/app/controllers/AppError.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/app/controllers/AppError.scala -------------------------------------------------------------------------------- /daikoku/app/controllers/playJson.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/app/controllers/playJson.scala -------------------------------------------------------------------------------- /daikoku/app/daikoku.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/app/daikoku.scala -------------------------------------------------------------------------------- /daikoku/app/domain/CommonServices.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/app/domain/CommonServices.scala -------------------------------------------------------------------------------- /daikoku/app/domain/SchemaDefinition.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/app/domain/SchemaDefinition.scala -------------------------------------------------------------------------------- /daikoku/app/domain/apiEntities.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/app/domain/apiEntities.scala -------------------------------------------------------------------------------- /daikoku/app/domain/apikeyEntities.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/app/domain/apikeyEntities.scala -------------------------------------------------------------------------------- /daikoku/app/domain/entities.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/app/domain/entities.scala -------------------------------------------------------------------------------- /daikoku/app/domain/graphQLEntities.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/app/domain/graphQLEntities.scala -------------------------------------------------------------------------------- /daikoku/app/domain/json.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/app/domain/json.scala -------------------------------------------------------------------------------- /daikoku/app/domain/teamEntities.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/app/domain/teamEntities.scala -------------------------------------------------------------------------------- /daikoku/app/domain/tenantEntities.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/app/domain/tenantEntities.scala -------------------------------------------------------------------------------- /daikoku/app/domain/userEntities.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/app/domain/userEntities.scala -------------------------------------------------------------------------------- /daikoku/app/env/env.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/app/env/env.scala -------------------------------------------------------------------------------- /daikoku/app/env/evolutions.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/app/env/evolutions.scala -------------------------------------------------------------------------------- /daikoku/app/jobs/ApiKeyStatsJob.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/app/jobs/ApiKeyStatsJob.scala -------------------------------------------------------------------------------- /daikoku/app/jobs/AuditTrailPurgeJob.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/app/jobs/AuditTrailPurgeJob.scala -------------------------------------------------------------------------------- /daikoku/app/jobs/OtoroshiVerifierJob.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/app/jobs/OtoroshiVerifierJob.scala -------------------------------------------------------------------------------- /daikoku/app/jobs/QueueJob.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/app/jobs/QueueJob.scala -------------------------------------------------------------------------------- /daikoku/app/logger/AppLogger.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/app/logger/AppLogger.scala -------------------------------------------------------------------------------- /daikoku/app/login/api.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/app/login/api.scala -------------------------------------------------------------------------------- /daikoku/app/login/ldap.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/app/login/ldap.scala -------------------------------------------------------------------------------- /daikoku/app/login/local.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/app/login/local.scala -------------------------------------------------------------------------------- /daikoku/app/login/oauth.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/app/login/oauth.scala -------------------------------------------------------------------------------- /daikoku/app/login/otoroshi.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/app/login/otoroshi.scala -------------------------------------------------------------------------------- /daikoku/app/messages/Events.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/app/messages/Events.scala -------------------------------------------------------------------------------- /daikoku/app/services/AssetsService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/app/services/AssetsService.scala -------------------------------------------------------------------------------- /daikoku/app/services/CmsRenderer.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/app/services/CmsRenderer.scala -------------------------------------------------------------------------------- /daikoku/app/storage/api.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/app/storage/api.scala -------------------------------------------------------------------------------- /daikoku/app/utils/ApiService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/app/utils/ApiService.scala -------------------------------------------------------------------------------- /daikoku/app/utils/Cypher.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/app/utils/Cypher.scala -------------------------------------------------------------------------------- /daikoku/app/utils/DeletionService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/app/utils/DeletionService.scala -------------------------------------------------------------------------------- /daikoku/app/utils/FileChecker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/app/utils/FileChecker.java -------------------------------------------------------------------------------- /daikoku/app/utils/PemUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/app/utils/PemUtils.java -------------------------------------------------------------------------------- /daikoku/app/utils/TOTPSecret.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/app/utils/TOTPSecret.scala -------------------------------------------------------------------------------- /daikoku/app/utils/Translator.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/app/utils/Translator.scala -------------------------------------------------------------------------------- /daikoku/app/utils/admin.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/app/utils/admin.scala -------------------------------------------------------------------------------- /daikoku/app/utils/diff_match_patch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/app/utils/diff_match_patch.java -------------------------------------------------------------------------------- /daikoku/app/utils/emails.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/app/utils/emails.scala -------------------------------------------------------------------------------- /daikoku/app/utils/errors.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/app/utils/errors.scala -------------------------------------------------------------------------------- /daikoku/app/utils/future.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/app/utils/future.scala -------------------------------------------------------------------------------- /daikoku/app/utils/generators.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/app/utils/generators.scala -------------------------------------------------------------------------------- /daikoku/app/utils/jwt.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/app/utils/jwt.scala -------------------------------------------------------------------------------- /daikoku/app/utils/otoroshi.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/app/utils/otoroshi.scala -------------------------------------------------------------------------------- /daikoku/app/utils/regex.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/app/utils/regex.scala -------------------------------------------------------------------------------- /daikoku/app/utils/request.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/app/utils/request.scala -------------------------------------------------------------------------------- /daikoku/app/utils/s3.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/app/utils/s3.scala -------------------------------------------------------------------------------- /daikoku/app/utils/string.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/app/utils/string.scala -------------------------------------------------------------------------------- /daikoku/app/views/robot.scala.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/app/views/robot.scala.txt -------------------------------------------------------------------------------- /daikoku/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/build.sbt -------------------------------------------------------------------------------- /daikoku/conf/application.conf: -------------------------------------------------------------------------------- 1 | include "base.conf" 2 | -------------------------------------------------------------------------------- /daikoku/conf/application.test.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/conf/application.test.conf -------------------------------------------------------------------------------- /daikoku/conf/base.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/conf/base.conf -------------------------------------------------------------------------------- /daikoku/conf/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/conf/logback.xml -------------------------------------------------------------------------------- /daikoku/conf/messages: -------------------------------------------------------------------------------- 1 | # https://www.playframework.com/documentation/latest/ScalaI18N 2 | -------------------------------------------------------------------------------- /daikoku/conf/messages.en: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/conf/messages.en -------------------------------------------------------------------------------- /daikoku/conf/messages.fr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/conf/messages.fr -------------------------------------------------------------------------------- /daikoku/conf/routes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/conf/routes -------------------------------------------------------------------------------- /daikoku/docker/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/docker/start.sh -------------------------------------------------------------------------------- /daikoku/javascript/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/javascript/.eslintrc.js -------------------------------------------------------------------------------- /daikoku/javascript/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/javascript/.gitignore -------------------------------------------------------------------------------- /daikoku/javascript/Global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/javascript/Global.d.ts -------------------------------------------------------------------------------- /daikoku/javascript/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/javascript/babel.config.js -------------------------------------------------------------------------------- /daikoku/javascript/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/javascript/index.html -------------------------------------------------------------------------------- /daikoku/javascript/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/javascript/package-lock.json -------------------------------------------------------------------------------- /daikoku/javascript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/javascript/package.json -------------------------------------------------------------------------------- /daikoku/javascript/playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/javascript/playwright.config.ts -------------------------------------------------------------------------------- /daikoku/javascript/scripts/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/javascript/scripts/build.ts -------------------------------------------------------------------------------- /daikoku/javascript/scripts/serve.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/javascript/scripts/serve.ts -------------------------------------------------------------------------------- /daikoku/javascript/src/apps/DaikokuApp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/javascript/src/apps/DaikokuApp.tsx -------------------------------------------------------------------------------- /daikoku/javascript/src/apps/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/javascript/src/apps/index.ts -------------------------------------------------------------------------------- /daikoku/javascript/src/components/adminbackoffice/audittrail/index.ts: -------------------------------------------------------------------------------- 1 | export * from './AuditTrailList'; 2 | -------------------------------------------------------------------------------- /daikoku/javascript/src/components/adminbackoffice/messages/index.ts: -------------------------------------------------------------------------------- 1 | export * from './messages'; 2 | -------------------------------------------------------------------------------- /daikoku/javascript/src/components/adminbackoffice/sessions/index.ts: -------------------------------------------------------------------------------- 1 | export * from './SessionList'; 2 | -------------------------------------------------------------------------------- /daikoku/javascript/src/components/backoffice/assets/index.ts: -------------------------------------------------------------------------------- 1 | export * from './AssetsList'; 2 | -------------------------------------------------------------------------------- /daikoku/javascript/src/components/backoffice/me/index.ts: -------------------------------------------------------------------------------- 1 | export * from './MyProfile'; 2 | -------------------------------------------------------------------------------- /daikoku/javascript/src/components/backoffice/members/index.ts: -------------------------------------------------------------------------------- 1 | export * from './TeamMembers'; 2 | -------------------------------------------------------------------------------- /daikoku/javascript/src/components/backoffice/notifications/index.ts: -------------------------------------------------------------------------------- 1 | export * from './NotificationList'; 2 | -------------------------------------------------------------------------------- /daikoku/javascript/src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/javascript/src/components/index.ts -------------------------------------------------------------------------------- /daikoku/javascript/src/components/utils/sidebar/companions/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Companion'; 2 | -------------------------------------------------------------------------------- /daikoku/javascript/src/components/utils/sidebar/index.ts: -------------------------------------------------------------------------------- 1 | export * from './SideBar'; 2 | -------------------------------------------------------------------------------- /daikoku/javascript/src/contexts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/javascript/src/contexts/index.ts -------------------------------------------------------------------------------- /daikoku/javascript/src/contexts/modals/index.ts: -------------------------------------------------------------------------------- 1 | export * from './types'; 2 | -------------------------------------------------------------------------------- /daikoku/javascript/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/javascript/src/index.tsx -------------------------------------------------------------------------------- /daikoku/javascript/src/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/javascript/src/services/index.ts -------------------------------------------------------------------------------- /daikoku/javascript/src/style/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/javascript/src/style/main.scss -------------------------------------------------------------------------------- /daikoku/javascript/src/style/swagger.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/javascript/src/style/swagger.css -------------------------------------------------------------------------------- /daikoku/javascript/src/types/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/javascript/src/types/api.ts -------------------------------------------------------------------------------- /daikoku/javascript/src/types/chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/javascript/src/types/chat.ts -------------------------------------------------------------------------------- /daikoku/javascript/src/types/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/javascript/src/types/context.ts -------------------------------------------------------------------------------- /daikoku/javascript/src/types/gql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/javascript/src/types/gql.ts -------------------------------------------------------------------------------- /daikoku/javascript/src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/javascript/src/types/index.ts -------------------------------------------------------------------------------- /daikoku/javascript/src/types/team.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/javascript/src/types/team.ts -------------------------------------------------------------------------------- /daikoku/javascript/src/types/tenant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/javascript/src/types/tenant.ts -------------------------------------------------------------------------------- /daikoku/javascript/src/types/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/javascript/src/types/types.ts -------------------------------------------------------------------------------- /daikoku/javascript/stats.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /daikoku/javascript/tests/.gitignore: -------------------------------------------------------------------------------- 1 | /test-results 2 | /playwright-report -------------------------------------------------------------------------------- /daikoku/javascript/tests/_tests/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/javascript/tests/_tests/readme.md -------------------------------------------------------------------------------- /daikoku/javascript/tests/config/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/javascript/tests/config/nginx.conf -------------------------------------------------------------------------------- /daikoku/javascript/tests/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/javascript/tests/package-lock.json -------------------------------------------------------------------------------- /daikoku/javascript/tests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/javascript/tests/package.json -------------------------------------------------------------------------------- /daikoku/javascript/tests/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/javascript/tests/readme.md -------------------------------------------------------------------------------- /daikoku/javascript/tests/specs/users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/javascript/tests/specs/users.ts -------------------------------------------------------------------------------- /daikoku/javascript/tests/specs/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/javascript/tests/specs/utils.ts -------------------------------------------------------------------------------- /daikoku/javascript/tests/test_suites.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/javascript/tests/test_suites.md -------------------------------------------------------------------------------- /daikoku/javascript/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/javascript/tsconfig.json -------------------------------------------------------------------------------- /daikoku/javascript/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/javascript/tsconfig.node.json -------------------------------------------------------------------------------- /daikoku/javascript/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/javascript/vite.config.ts -------------------------------------------------------------------------------- /daikoku/project/assembly.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/project/assembly.sbt -------------------------------------------------------------------------------- /daikoku/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.9.8 2 | -------------------------------------------------------------------------------- /daikoku/project/metals.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/project/metals.sbt -------------------------------------------------------------------------------- /daikoku/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/project/plugins.sbt -------------------------------------------------------------------------------- /daikoku/project/project/metals.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/project/project/metals.sbt -------------------------------------------------------------------------------- /daikoku/project/project/project/metals.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/project/project/project/metals.sbt -------------------------------------------------------------------------------- /daikoku/public/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/public/.gitignore -------------------------------------------------------------------------------- /daikoku/public/fonts/fontawesome/js/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/public/fonts/fontawesome/js/all.js -------------------------------------------------------------------------------- /daikoku/public/fonts/raleway/raleway.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/public/fonts/raleway/raleway.css -------------------------------------------------------------------------------- /daikoku/public/images/anonymous.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/public/images/anonymous.jpg -------------------------------------------------------------------------------- /daikoku/public/images/daikoku.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/public/images/daikoku.svg -------------------------------------------------------------------------------- /daikoku/public/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/public/images/favicon.png -------------------------------------------------------------------------------- /daikoku/public/images/keys.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/public/images/keys.svg -------------------------------------------------------------------------------- /daikoku/public/javascripts/main.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /daikoku/public/swaggers/petstore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/public/swaggers/petstore.json -------------------------------------------------------------------------------- /daikoku/public/swaggers/uspto.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/public/swaggers/uspto.yaml -------------------------------------------------------------------------------- /daikoku/public/themes/brutalism.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/public/themes/brutalism.css -------------------------------------------------------------------------------- /daikoku/public/themes/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/public/themes/default.css -------------------------------------------------------------------------------- /daikoku/public/viewerjs/compatibility.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/public/viewerjs/compatibility.js -------------------------------------------------------------------------------- /daikoku/public/viewerjs/example.local.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/public/viewerjs/example.local.css -------------------------------------------------------------------------------- /daikoku/public/viewerjs/images/kogmbh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/public/viewerjs/images/kogmbh.png -------------------------------------------------------------------------------- /daikoku/public/viewerjs/images/nlnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/public/viewerjs/images/nlnet.png -------------------------------------------------------------------------------- /daikoku/public/viewerjs/images/texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/public/viewerjs/images/texture.png -------------------------------------------------------------------------------- /daikoku/public/viewerjs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/public/viewerjs/index.html -------------------------------------------------------------------------------- /daikoku/public/viewerjs/pdf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/public/viewerjs/pdf.js -------------------------------------------------------------------------------- /daikoku/public/viewerjs/pdf.worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/public/viewerjs/pdf.worker.js -------------------------------------------------------------------------------- /daikoku/public/viewerjs/pdfjsversion.js: -------------------------------------------------------------------------------- 1 | var /**@const{!string}*/pdfjs_version = "v1.1.114"; 2 | -------------------------------------------------------------------------------- /daikoku/public/viewerjs/ui_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/public/viewerjs/ui_utils.js -------------------------------------------------------------------------------- /daikoku/public/viewerjs/webodf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/public/viewerjs/webodf.js -------------------------------------------------------------------------------- /daikoku/readme.md: -------------------------------------------------------------------------------- 1 | # Daikoku 2 | 3 | Developper portal for Otoroshi -------------------------------------------------------------------------------- /daikoku/test/daikoku/BasicUsageSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/test/daikoku/BasicUsageSpec.scala -------------------------------------------------------------------------------- /daikoku/test/daikoku/GuestModeSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/test/daikoku/GuestModeSpec.scala -------------------------------------------------------------------------------- /daikoku/test/daikoku/otoroshi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/test/daikoku/otoroshi.json -------------------------------------------------------------------------------- /daikoku/test/daikoku/suites.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/daikoku/test/daikoku/suites.scala -------------------------------------------------------------------------------- /daikoku/version.sbt: -------------------------------------------------------------------------------- 1 | ThisBuild / version := "18.5.0-dev" 2 | -------------------------------------------------------------------------------- /demo/api/fake.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/demo/api/fake.js -------------------------------------------------------------------------------- /demo/api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/demo/api/index.js -------------------------------------------------------------------------------- /demo/config/daikoku.ndjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/demo/config/daikoku.ndjson -------------------------------------------------------------------------------- /demo/config/es-data/nodes/0/indices/di6qOnoNSema4X-yb8pRqQ/0/index/write.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/config/es-data/nodes/0/indices/zckKNoMLRdOBdlT31OcqPQ/0/index/write.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/config/es-data/nodes/0/node.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/config/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/demo/config/nginx.conf -------------------------------------------------------------------------------- /demo/config/otoroshi-state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/demo/config/otoroshi-state.json -------------------------------------------------------------------------------- /demo/config/redis-data/appendonly.aof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/demo/config/redis-data/appendonly.aof -------------------------------------------------------------------------------- /demo/config/s3-data/.minio.sys/config/iam/format.json: -------------------------------------------------------------------------------- 1 | {"version":1} -------------------------------------------------------------------------------- /demo/config/s3-data/.minio.sys/format.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/demo/config/s3-data/.minio.sys/format.json -------------------------------------------------------------------------------- /demo/config/s3-data/s3-metadata/rootDB/LOCK: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/config/s3-data/s3-metadata/rootDB/LOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/demo/config/s3-data/s3-metadata/rootDB/LOG -------------------------------------------------------------------------------- /demo/config/s3-data/s3-metadata/rootDB/LOG.old: -------------------------------------------------------------------------------- 1 | 2019/11/28-08:12:00.384801 7fdb5b777700 Delete type=3 #1 2 | -------------------------------------------------------------------------------- /demo/config/s3-data/s3-metadata/uuid: -------------------------------------------------------------------------------- 1 | c02b1a8b-fdd2-400e-b3f9-90cd5c17b7ef -------------------------------------------------------------------------------- /demo/docker-compose.dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/demo/docker-compose.dev.yml -------------------------------------------------------------------------------- /demo/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/demo/docker-compose.yml -------------------------------------------------------------------------------- /demo/postgres-mtls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/demo/postgres-mtls.md -------------------------------------------------------------------------------- /demo/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/demo/readme.md -------------------------------------------------------------------------------- /docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/404.html -------------------------------------------------------------------------------- /docs/__server/server.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/__server/server.bundle.js -------------------------------------------------------------------------------- /docs/admin-api-openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/admin-api-openapi.yaml -------------------------------------------------------------------------------- /docs/assets/css/styles.111e5321.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/css/styles.111e5321.css -------------------------------------------------------------------------------- /docs/assets/css/styles.58620cc5.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/css/styles.58620cc5.css -------------------------------------------------------------------------------- /docs/assets/css/styles.8152f05c.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/css/styles.8152f05c.css -------------------------------------------------------------------------------- /docs/assets/css/styles.98544a2c.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/css/styles.98544a2c.css -------------------------------------------------------------------------------- /docs/assets/css/styles.996bb7bb.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/css/styles.996bb7bb.css -------------------------------------------------------------------------------- /docs/assets/js/0019c764.06c6171c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/0019c764.06c6171c.js -------------------------------------------------------------------------------- /docs/assets/js/0019c764.312fe09a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/0019c764.312fe09a.js -------------------------------------------------------------------------------- /docs/assets/js/0019c764.a4b62e7b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/0019c764.a4b62e7b.js -------------------------------------------------------------------------------- /docs/assets/js/0019c764.e43e3d60.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/0019c764.e43e3d60.js -------------------------------------------------------------------------------- /docs/assets/js/00b536ae.2837a963.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/00b536ae.2837a963.js -------------------------------------------------------------------------------- /docs/assets/js/03885ea5.036c3611.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/03885ea5.036c3611.js -------------------------------------------------------------------------------- /docs/assets/js/03885ea5.25e04147.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/03885ea5.25e04147.js -------------------------------------------------------------------------------- /docs/assets/js/03885ea5.5ccadc0b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/03885ea5.5ccadc0b.js -------------------------------------------------------------------------------- /docs/assets/js/03885ea5.73b7f8fb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/03885ea5.73b7f8fb.js -------------------------------------------------------------------------------- /docs/assets/js/07c0c607.15270da4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/07c0c607.15270da4.js -------------------------------------------------------------------------------- /docs/assets/js/07c0c607.1e7251aa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/07c0c607.1e7251aa.js -------------------------------------------------------------------------------- /docs/assets/js/07c0c607.a0fbb167.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/07c0c607.a0fbb167.js -------------------------------------------------------------------------------- /docs/assets/js/07c0c607.d03d208d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/07c0c607.d03d208d.js -------------------------------------------------------------------------------- /docs/assets/js/092b0f67.8981da22.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/092b0f67.8981da22.js -------------------------------------------------------------------------------- /docs/assets/js/092b0f67.b62b4653.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/092b0f67.b62b4653.js -------------------------------------------------------------------------------- /docs/assets/js/092b0f67.db905e73.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/092b0f67.db905e73.js -------------------------------------------------------------------------------- /docs/assets/js/092b0f67.e7f15b34.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/092b0f67.e7f15b34.js -------------------------------------------------------------------------------- /docs/assets/js/0e3215c3.0c6e8444.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/0e3215c3.0c6e8444.js -------------------------------------------------------------------------------- /docs/assets/js/0e3215c3.3633f772.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/0e3215c3.3633f772.js -------------------------------------------------------------------------------- /docs/assets/js/0e3215c3.b24995ac.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/0e3215c3.b24995ac.js -------------------------------------------------------------------------------- /docs/assets/js/0e3215c3.f0fc4cd5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/0e3215c3.f0fc4cd5.js -------------------------------------------------------------------------------- /docs/assets/js/0e3215c3.f7de2d8b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/0e3215c3.f7de2d8b.js -------------------------------------------------------------------------------- /docs/assets/js/1117.6a569a19.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/1117.6a569a19.js -------------------------------------------------------------------------------- /docs/assets/js/138e0e15.cedf0e18.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/138e0e15.cedf0e18.js -------------------------------------------------------------------------------- /docs/assets/js/144d83f2.0307ca27.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/144d83f2.0307ca27.js -------------------------------------------------------------------------------- /docs/assets/js/144d83f2.2f9b3151.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/144d83f2.2f9b3151.js -------------------------------------------------------------------------------- /docs/assets/js/144d83f2.52e2cde1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/144d83f2.52e2cde1.js -------------------------------------------------------------------------------- /docs/assets/js/144d83f2.87d9a20d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/144d83f2.87d9a20d.js -------------------------------------------------------------------------------- /docs/assets/js/17038273.aa24bf96.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/17038273.aa24bf96.js -------------------------------------------------------------------------------- /docs/assets/js/17038273.eb01dee9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/17038273.eb01dee9.js -------------------------------------------------------------------------------- /docs/assets/js/1772.a0d2561b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/1772.a0d2561b.js -------------------------------------------------------------------------------- /docs/assets/js/17896441.2f5ce925.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/17896441.2f5ce925.js -------------------------------------------------------------------------------- /docs/assets/js/17896441.53712574.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/17896441.53712574.js -------------------------------------------------------------------------------- /docs/assets/js/17896441.58eae93e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/17896441.58eae93e.js -------------------------------------------------------------------------------- /docs/assets/js/17896441.cd3a406d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/17896441.cd3a406d.js -------------------------------------------------------------------------------- /docs/assets/js/17896441.fd5d4277.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/17896441.fd5d4277.js -------------------------------------------------------------------------------- /docs/assets/js/18f231a6.1d1c5272.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/18f231a6.1d1c5272.js -------------------------------------------------------------------------------- /docs/assets/js/18f231a6.6602148e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/18f231a6.6602148e.js -------------------------------------------------------------------------------- /docs/assets/js/18f231a6.df2f3f1e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/18f231a6.df2f3f1e.js -------------------------------------------------------------------------------- /docs/assets/js/18f231a6.e89a1789.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/18f231a6.e89a1789.js -------------------------------------------------------------------------------- /docs/assets/js/199d0080.2230fcd2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/199d0080.2230fcd2.js -------------------------------------------------------------------------------- /docs/assets/js/199d0080.42af629e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/199d0080.42af629e.js -------------------------------------------------------------------------------- /docs/assets/js/199d0080.620167b3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/199d0080.620167b3.js -------------------------------------------------------------------------------- /docs/assets/js/199d0080.6f61b5f2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/199d0080.6f61b5f2.js -------------------------------------------------------------------------------- /docs/assets/js/199d0080.be6d40b2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/199d0080.be6d40b2.js -------------------------------------------------------------------------------- /docs/assets/js/199d0080.d08aa4e0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/199d0080.d08aa4e0.js -------------------------------------------------------------------------------- /docs/assets/js/1a4e3797.1b38c085.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/1a4e3797.1b38c085.js -------------------------------------------------------------------------------- /docs/assets/js/1a4e3797.3977b5ab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/1a4e3797.3977b5ab.js -------------------------------------------------------------------------------- /docs/assets/js/1a4e3797.ef747e76.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/1a4e3797.ef747e76.js -------------------------------------------------------------------------------- /docs/assets/js/1a4e3797.f8685d1b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/1a4e3797.f8685d1b.js -------------------------------------------------------------------------------- /docs/assets/js/20fde71e.52e205b7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/20fde71e.52e205b7.js -------------------------------------------------------------------------------- /docs/assets/js/2237.b046eb9f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/2237.b046eb9f.js -------------------------------------------------------------------------------- /docs/assets/js/22493dda.1af22f9d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/22493dda.1af22f9d.js -------------------------------------------------------------------------------- /docs/assets/js/22493dda.b7741180.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/22493dda.b7741180.js -------------------------------------------------------------------------------- /docs/assets/js/23bfcfa6.bfdbbe40.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/23bfcfa6.bfdbbe40.js -------------------------------------------------------------------------------- /docs/assets/js/23bfcfa6.e0ff51c5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/23bfcfa6.e0ff51c5.js -------------------------------------------------------------------------------- /docs/assets/js/23bfcfa6.ead27235.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/23bfcfa6.ead27235.js -------------------------------------------------------------------------------- /docs/assets/js/2820f203.07eede48.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/2820f203.07eede48.js -------------------------------------------------------------------------------- /docs/assets/js/2820f203.234fde46.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/2820f203.234fde46.js -------------------------------------------------------------------------------- /docs/assets/js/2820f203.375d2150.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/2820f203.375d2150.js -------------------------------------------------------------------------------- /docs/assets/js/2820f203.d6f787e5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/2820f203.d6f787e5.js -------------------------------------------------------------------------------- /docs/assets/js/2820f203.f1112172.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/2820f203.f1112172.js -------------------------------------------------------------------------------- /docs/assets/js/2820f203.f2419f27.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/2820f203.f2419f27.js -------------------------------------------------------------------------------- /docs/assets/js/28af0bc8.8c25957a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/28af0bc8.8c25957a.js -------------------------------------------------------------------------------- /docs/assets/js/28af0bc8.9ff70ba2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/28af0bc8.9ff70ba2.js -------------------------------------------------------------------------------- /docs/assets/js/28af0bc8.b8c5e724.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/28af0bc8.b8c5e724.js -------------------------------------------------------------------------------- /docs/assets/js/28af0bc8.c97dcdc5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/28af0bc8.c97dcdc5.js -------------------------------------------------------------------------------- /docs/assets/js/28af0bc8.f104c970.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/28af0bc8.f104c970.js -------------------------------------------------------------------------------- /docs/assets/js/2d238738.34eb9a0f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/2d238738.34eb9a0f.js -------------------------------------------------------------------------------- /docs/assets/js/2d238738.86e85f44.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/2d238738.86e85f44.js -------------------------------------------------------------------------------- /docs/assets/js/2d238738.aa91a98f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/2d238738.aa91a98f.js -------------------------------------------------------------------------------- /docs/assets/js/2d238738.bf392c16.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/2d238738.bf392c16.js -------------------------------------------------------------------------------- /docs/assets/js/3042.95f21d3c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/3042.95f21d3c.js -------------------------------------------------------------------------------- /docs/assets/js/331c362e.08fa6cc3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/331c362e.08fa6cc3.js -------------------------------------------------------------------------------- /docs/assets/js/331c362e.0aefe8b7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/331c362e.0aefe8b7.js -------------------------------------------------------------------------------- /docs/assets/js/331c362e.23149361.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/331c362e.23149361.js -------------------------------------------------------------------------------- /docs/assets/js/331c362e.9da7700d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/331c362e.9da7700d.js -------------------------------------------------------------------------------- /docs/assets/js/331c362e.a298e389.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/331c362e.a298e389.js -------------------------------------------------------------------------------- /docs/assets/js/3720c009.08d2cd37.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/3720c009.08d2cd37.js -------------------------------------------------------------------------------- /docs/assets/js/3720c009.6b632ca8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/3720c009.6b632ca8.js -------------------------------------------------------------------------------- /docs/assets/js/3720c009.7f7055fc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/3720c009.7f7055fc.js -------------------------------------------------------------------------------- /docs/assets/js/3720c009.c712adc2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/3720c009.c712adc2.js -------------------------------------------------------------------------------- /docs/assets/js/37484594.5690b05f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/37484594.5690b05f.js -------------------------------------------------------------------------------- /docs/assets/js/37484594.66171a2f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/37484594.66171a2f.js -------------------------------------------------------------------------------- /docs/assets/js/37484594.d1e6258a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/37484594.d1e6258a.js -------------------------------------------------------------------------------- /docs/assets/js/37484594.e20e74ac.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/37484594.e20e74ac.js -------------------------------------------------------------------------------- /docs/assets/js/37a8690e.8573e14e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/37a8690e.8573e14e.js -------------------------------------------------------------------------------- /docs/assets/js/37a8690e.977531a2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/37a8690e.977531a2.js -------------------------------------------------------------------------------- /docs/assets/js/37a8690e.cf480125.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/37a8690e.cf480125.js -------------------------------------------------------------------------------- /docs/assets/js/37a8690e.f4e35428.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/37a8690e.f4e35428.js -------------------------------------------------------------------------------- /docs/assets/js/3a2220e2.c8e3dcfd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/3a2220e2.c8e3dcfd.js -------------------------------------------------------------------------------- /docs/assets/js/3a667e87.0d3a97e3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/3a667e87.0d3a97e3.js -------------------------------------------------------------------------------- /docs/assets/js/3a667e87.0e5e1f03.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/3a667e87.0e5e1f03.js -------------------------------------------------------------------------------- /docs/assets/js/3a667e87.7ebdf6f6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/3a667e87.7ebdf6f6.js -------------------------------------------------------------------------------- /docs/assets/js/3bccb1e5.4b656645.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/3bccb1e5.4b656645.js -------------------------------------------------------------------------------- /docs/assets/js/3bccb1e5.5973cc64.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/3bccb1e5.5973cc64.js -------------------------------------------------------------------------------- /docs/assets/js/3bccb1e5.5987e67d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/3bccb1e5.5987e67d.js -------------------------------------------------------------------------------- /docs/assets/js/3bccb1e5.876331bd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/3bccb1e5.876331bd.js -------------------------------------------------------------------------------- /docs/assets/js/3bccb1e5.e5a81082.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/3bccb1e5.e5a81082.js -------------------------------------------------------------------------------- /docs/assets/js/3d674ee3.b8bc74c4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/3d674ee3.b8bc74c4.js -------------------------------------------------------------------------------- /docs/assets/js/3f62fecf.0792c631.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/3f62fecf.0792c631.js -------------------------------------------------------------------------------- /docs/assets/js/3f62fecf.7c6ea9b6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/3f62fecf.7c6ea9b6.js -------------------------------------------------------------------------------- /docs/assets/js/3f62fecf.dcb34929.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/3f62fecf.dcb34929.js -------------------------------------------------------------------------------- /docs/assets/js/3f62fecf.df3c2839.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/3f62fecf.df3c2839.js -------------------------------------------------------------------------------- /docs/assets/js/3f725ac7.e0da5d20.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/3f725ac7.e0da5d20.js -------------------------------------------------------------------------------- /docs/assets/js/47f5f50e.01d367c8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/47f5f50e.01d367c8.js -------------------------------------------------------------------------------- /docs/assets/js/47f5f50e.0f0c4ae7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/47f5f50e.0f0c4ae7.js -------------------------------------------------------------------------------- /docs/assets/js/47f5f50e.6a3f6304.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/47f5f50e.6a3f6304.js -------------------------------------------------------------------------------- /docs/assets/js/484e5d86.0dba7743.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/484e5d86.0dba7743.js -------------------------------------------------------------------------------- /docs/assets/js/484e5d86.58f9ac38.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/484e5d86.58f9ac38.js -------------------------------------------------------------------------------- /docs/assets/js/484e5d86.6f3f479f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/484e5d86.6f3f479f.js -------------------------------------------------------------------------------- /docs/assets/js/484e5d86.a66bfe3d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/484e5d86.a66bfe3d.js -------------------------------------------------------------------------------- /docs/assets/js/484e5d86.c413ebe1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/484e5d86.c413ebe1.js -------------------------------------------------------------------------------- /docs/assets/js/484e5d86.e774d171.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/484e5d86.e774d171.js -------------------------------------------------------------------------------- /docs/assets/js/489.6525d58b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/489.6525d58b.js -------------------------------------------------------------------------------- /docs/assets/js/489.6525d58b.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! https://mths.be/cssesc v3.0.0 by @mathias */ 2 | -------------------------------------------------------------------------------- /docs/assets/js/4fd64565.273164c1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/4fd64565.273164c1.js -------------------------------------------------------------------------------- /docs/assets/js/4fd64565.46f90887.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/4fd64565.46f90887.js -------------------------------------------------------------------------------- /docs/assets/js/4fd64565.7bccaca9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/4fd64565.7bccaca9.js -------------------------------------------------------------------------------- /docs/assets/js/4fd64565.fbb12853.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/4fd64565.fbb12853.js -------------------------------------------------------------------------------- /docs/assets/js/530b026d.e189e2ad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/530b026d.e189e2ad.js -------------------------------------------------------------------------------- /docs/assets/js/5525.72707160.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/5525.72707160.js -------------------------------------------------------------------------------- /docs/assets/js/55940994.00fb20cc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/55940994.00fb20cc.js -------------------------------------------------------------------------------- /docs/assets/js/55940994.17151ba5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/55940994.17151ba5.js -------------------------------------------------------------------------------- /docs/assets/js/55940994.31316f68.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/55940994.31316f68.js -------------------------------------------------------------------------------- /docs/assets/js/55940994.ad47f997.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/55940994.ad47f997.js -------------------------------------------------------------------------------- /docs/assets/js/55940994.d1ed1ba9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/55940994.d1ed1ba9.js -------------------------------------------------------------------------------- /docs/assets/js/55960ee5.76b7b26c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/55960ee5.76b7b26c.js -------------------------------------------------------------------------------- /docs/assets/js/5679.9c6cbef5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/5679.9c6cbef5.js -------------------------------------------------------------------------------- /docs/assets/js/5679.b66abbe9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/5679.b66abbe9.js -------------------------------------------------------------------------------- /docs/assets/js/5741.9607e1ea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/5741.9607e1ea.js -------------------------------------------------------------------------------- /docs/assets/js/5d70e2c8.416c9b09.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/5d70e2c8.416c9b09.js -------------------------------------------------------------------------------- /docs/assets/js/5d70e2c8.77af7c7c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/5d70e2c8.77af7c7c.js -------------------------------------------------------------------------------- /docs/assets/js/5d70e2c8.794d96c6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/5d70e2c8.794d96c6.js -------------------------------------------------------------------------------- /docs/assets/js/5dfacd67.2f343024.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/5dfacd67.2f343024.js -------------------------------------------------------------------------------- /docs/assets/js/5e95c892.2b641d2a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/5e95c892.2b641d2a.js -------------------------------------------------------------------------------- /docs/assets/js/5e95c892.4aae98d7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/5e95c892.4aae98d7.js -------------------------------------------------------------------------------- /docs/assets/js/5e95c892.668b0afe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/5e95c892.668b0afe.js -------------------------------------------------------------------------------- /docs/assets/js/606788fe.38364217.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/606788fe.38364217.js -------------------------------------------------------------------------------- /docs/assets/js/606788fe.86af0572.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/606788fe.86af0572.js -------------------------------------------------------------------------------- /docs/assets/js/606788fe.90e0c5a2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/606788fe.90e0c5a2.js -------------------------------------------------------------------------------- /docs/assets/js/61654a24.d8c55af4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/61654a24.d8c55af4.js -------------------------------------------------------------------------------- /docs/assets/js/637d173b.92ac723c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/637d173b.92ac723c.js -------------------------------------------------------------------------------- /docs/assets/js/637d173b.b7ec4183.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/637d173b.b7ec4183.js -------------------------------------------------------------------------------- /docs/assets/js/637d173b.dac1c185.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/637d173b.dac1c185.js -------------------------------------------------------------------------------- /docs/assets/js/6419.3effdb0d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/6419.3effdb0d.js -------------------------------------------------------------------------------- /docs/assets/js/64737f0d.03eb4f80.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/64737f0d.03eb4f80.js -------------------------------------------------------------------------------- /docs/assets/js/64737f0d.065923a3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/64737f0d.065923a3.js -------------------------------------------------------------------------------- /docs/assets/js/64737f0d.096c1b5a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/64737f0d.096c1b5a.js -------------------------------------------------------------------------------- /docs/assets/js/64737f0d.2aecf6b6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/64737f0d.2aecf6b6.js -------------------------------------------------------------------------------- /docs/assets/js/64737f0d.2d2e5d3b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/64737f0d.2d2e5d3b.js -------------------------------------------------------------------------------- /docs/assets/js/64737f0d.2d434340.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/64737f0d.2d434340.js -------------------------------------------------------------------------------- /docs/assets/js/64737f0d.35892dd6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/64737f0d.35892dd6.js -------------------------------------------------------------------------------- /docs/assets/js/64737f0d.3ba799e5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/64737f0d.3ba799e5.js -------------------------------------------------------------------------------- /docs/assets/js/64737f0d.40109041.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/64737f0d.40109041.js -------------------------------------------------------------------------------- /docs/assets/js/64737f0d.46f0ec84.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/64737f0d.46f0ec84.js -------------------------------------------------------------------------------- /docs/assets/js/64737f0d.47e4de96.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/64737f0d.47e4de96.js -------------------------------------------------------------------------------- /docs/assets/js/64737f0d.6304e9c8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/64737f0d.6304e9c8.js -------------------------------------------------------------------------------- /docs/assets/js/64737f0d.757da09f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/64737f0d.757da09f.js -------------------------------------------------------------------------------- /docs/assets/js/64737f0d.9c951f91.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/64737f0d.9c951f91.js -------------------------------------------------------------------------------- /docs/assets/js/64737f0d.ae423211.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/64737f0d.ae423211.js -------------------------------------------------------------------------------- /docs/assets/js/64737f0d.c1e43250.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/64737f0d.c1e43250.js -------------------------------------------------------------------------------- /docs/assets/js/64737f0d.c2ee4f88.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/64737f0d.c2ee4f88.js -------------------------------------------------------------------------------- /docs/assets/js/64737f0d.c5ebdf1c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/64737f0d.c5ebdf1c.js -------------------------------------------------------------------------------- /docs/assets/js/64737f0d.df9e3a09.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/64737f0d.df9e3a09.js -------------------------------------------------------------------------------- /docs/assets/js/64737f0d.edafd534.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/64737f0d.edafd534.js -------------------------------------------------------------------------------- /docs/assets/js/64737f0d.fedca048.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/64737f0d.fedca048.js -------------------------------------------------------------------------------- /docs/assets/js/67a8f2c5.2cb92114.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/67a8f2c5.2cb92114.js -------------------------------------------------------------------------------- /docs/assets/js/67a8f2c5.49493cd7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/67a8f2c5.49493cd7.js -------------------------------------------------------------------------------- /docs/assets/js/67a8f2c5.7996b46c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/67a8f2c5.7996b46c.js -------------------------------------------------------------------------------- /docs/assets/js/67a8f2c5.afb9cdcd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/67a8f2c5.afb9cdcd.js -------------------------------------------------------------------------------- /docs/assets/js/6881.c0293a55.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/6881.c0293a55.js -------------------------------------------------------------------------------- /docs/assets/js/6a9470e5.30159e0b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/6a9470e5.30159e0b.js -------------------------------------------------------------------------------- /docs/assets/js/6a9470e5.57100163.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/6a9470e5.57100163.js -------------------------------------------------------------------------------- /docs/assets/js/6a9470e5.be7087bc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/6a9470e5.be7087bc.js -------------------------------------------------------------------------------- /docs/assets/js/6a9470e5.e830966e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/6a9470e5.e830966e.js -------------------------------------------------------------------------------- /docs/assets/js/6b339c0f.2d6887e4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/6b339c0f.2d6887e4.js -------------------------------------------------------------------------------- /docs/assets/js/6b339c0f.85409ea3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/6b339c0f.85409ea3.js -------------------------------------------------------------------------------- /docs/assets/js/6b339c0f.dd9e5e92.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/6b339c0f.dd9e5e92.js -------------------------------------------------------------------------------- /docs/assets/js/6ba57622.6048356a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/6ba57622.6048356a.js -------------------------------------------------------------------------------- /docs/assets/js/6ba831b6.00ad083d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/6ba831b6.00ad083d.js -------------------------------------------------------------------------------- /docs/assets/js/6ba831b6.04722e80.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/6ba831b6.04722e80.js -------------------------------------------------------------------------------- /docs/assets/js/6ba831b6.7b74ccf5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/6ba831b6.7b74ccf5.js -------------------------------------------------------------------------------- /docs/assets/js/6ba831b6.d25b385b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/6ba831b6.d25b385b.js -------------------------------------------------------------------------------- /docs/assets/js/6ba831b6.feda4ffe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/6ba831b6.feda4ffe.js -------------------------------------------------------------------------------- /docs/assets/js/73b1ab36.4a1677c1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/73b1ab36.4a1677c1.js -------------------------------------------------------------------------------- /docs/assets/js/73b1ab36.daf2ad60.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/73b1ab36.daf2ad60.js -------------------------------------------------------------------------------- /docs/assets/js/73b1ab36.f4ef952c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/73b1ab36.f4ef952c.js -------------------------------------------------------------------------------- /docs/assets/js/73b1ab36.fd9a2dd0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/73b1ab36.fd9a2dd0.js -------------------------------------------------------------------------------- /docs/assets/js/7482af60.13d3b01b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/7482af60.13d3b01b.js -------------------------------------------------------------------------------- /docs/assets/js/7482af60.3aee6310.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/7482af60.3aee6310.js -------------------------------------------------------------------------------- /docs/assets/js/7482af60.5bd61df4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/7482af60.5bd61df4.js -------------------------------------------------------------------------------- /docs/assets/js/7482af60.ba7d141e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/7482af60.ba7d141e.js -------------------------------------------------------------------------------- /docs/assets/js/7542.11fa9dd5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/7542.11fa9dd5.js -------------------------------------------------------------------------------- /docs/assets/js/7542.140d2c78.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/7542.140d2c78.js -------------------------------------------------------------------------------- /docs/assets/js/7542.2691bbd4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/7542.2691bbd4.js -------------------------------------------------------------------------------- /docs/assets/js/7542.3e4c922c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/7542.3e4c922c.js -------------------------------------------------------------------------------- /docs/assets/js/7542.423f4ac6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/7542.423f4ac6.js -------------------------------------------------------------------------------- /docs/assets/js/7542.44b39b4b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/7542.44b39b4b.js -------------------------------------------------------------------------------- /docs/assets/js/7542.5c85685d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/7542.5c85685d.js -------------------------------------------------------------------------------- /docs/assets/js/7542.6014eb13.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/7542.6014eb13.js -------------------------------------------------------------------------------- /docs/assets/js/7542.6788a070.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/7542.6788a070.js -------------------------------------------------------------------------------- /docs/assets/js/7542.6d8889e6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/7542.6d8889e6.js -------------------------------------------------------------------------------- /docs/assets/js/7542.70d5cc3a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/7542.70d5cc3a.js -------------------------------------------------------------------------------- /docs/assets/js/7542.7ca423ef.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/7542.7ca423ef.js -------------------------------------------------------------------------------- /docs/assets/js/7542.807e352c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/7542.807e352c.js -------------------------------------------------------------------------------- /docs/assets/js/7542.808c38cc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/7542.808c38cc.js -------------------------------------------------------------------------------- /docs/assets/js/7542.8480d984.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/7542.8480d984.js -------------------------------------------------------------------------------- /docs/assets/js/7542.abc445b3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/7542.abc445b3.js -------------------------------------------------------------------------------- /docs/assets/js/7542.b21a0732.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/7542.b21a0732.js -------------------------------------------------------------------------------- /docs/assets/js/7542.b60b1e1b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/7542.b60b1e1b.js -------------------------------------------------------------------------------- /docs/assets/js/7542.c5bb4cee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/7542.c5bb4cee.js -------------------------------------------------------------------------------- /docs/assets/js/7542.d159d3fe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/7542.d159d3fe.js -------------------------------------------------------------------------------- /docs/assets/js/7542.d4cb1ef8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/7542.d4cb1ef8.js -------------------------------------------------------------------------------- /docs/assets/js/7542.d54ced84.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/7542.d54ced84.js -------------------------------------------------------------------------------- /docs/assets/js/7542.dff9ed56.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/7542.dff9ed56.js -------------------------------------------------------------------------------- /docs/assets/js/7542.e4014edc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/7542.e4014edc.js -------------------------------------------------------------------------------- /docs/assets/js/7542.e5031154.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/7542.e5031154.js -------------------------------------------------------------------------------- /docs/assets/js/7542.ef63aa67.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/7542.ef63aa67.js -------------------------------------------------------------------------------- /docs/assets/js/7542.f72e1f27.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/7542.f72e1f27.js -------------------------------------------------------------------------------- /docs/assets/js/78b3c00e.e7ae6a03.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/78b3c00e.e7ae6a03.js -------------------------------------------------------------------------------- /docs/assets/js/7cdc31f5.68424d3d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/7cdc31f5.68424d3d.js -------------------------------------------------------------------------------- /docs/assets/js/7cdc31f5.bcec501d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/7cdc31f5.bcec501d.js -------------------------------------------------------------------------------- /docs/assets/js/7cdc31f5.bd6d5966.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/7cdc31f5.bd6d5966.js -------------------------------------------------------------------------------- /docs/assets/js/7cdc31f5.deee9f99.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/7cdc31f5.deee9f99.js -------------------------------------------------------------------------------- /docs/assets/js/7da7b125.2045e6b5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/7da7b125.2045e6b5.js -------------------------------------------------------------------------------- /docs/assets/js/7da7b125.2af7bc95.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/7da7b125.2af7bc95.js -------------------------------------------------------------------------------- /docs/assets/js/7f6c714f.1c169780.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/7f6c714f.1c169780.js -------------------------------------------------------------------------------- /docs/assets/js/8129fd32.1926c6f7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/8129fd32.1926c6f7.js -------------------------------------------------------------------------------- /docs/assets/js/8129fd32.26e55753.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/8129fd32.26e55753.js -------------------------------------------------------------------------------- /docs/assets/js/8129fd32.300e75c7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/8129fd32.300e75c7.js -------------------------------------------------------------------------------- /docs/assets/js/8129fd32.31d07e5f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/8129fd32.31d07e5f.js -------------------------------------------------------------------------------- /docs/assets/js/8129fd32.67b69c31.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/8129fd32.67b69c31.js -------------------------------------------------------------------------------- /docs/assets/js/8129fd32.eecd2a34.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/8129fd32.eecd2a34.js -------------------------------------------------------------------------------- /docs/assets/js/8443.0d7ac104.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/8443.0d7ac104.js -------------------------------------------------------------------------------- /docs/assets/js/8443.0d7ac104.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! https://mths.be/cssesc v3.0.0 by @mathias */ 2 | -------------------------------------------------------------------------------- /docs/assets/js/8ca3e574.0dff4b91.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/8ca3e574.0dff4b91.js -------------------------------------------------------------------------------- /docs/assets/js/8ca3e574.4cf059c6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/8ca3e574.4cf059c6.js -------------------------------------------------------------------------------- /docs/assets/js/8ca3e574.6f1a41af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/8ca3e574.6f1a41af.js -------------------------------------------------------------------------------- /docs/assets/js/8ca3e574.ac398893.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/8ca3e574.ac398893.js -------------------------------------------------------------------------------- /docs/assets/js/91086ed6.01cd7b95.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/91086ed6.01cd7b95.js -------------------------------------------------------------------------------- /docs/assets/js/91086ed6.14bc922e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/91086ed6.14bc922e.js -------------------------------------------------------------------------------- /docs/assets/js/91086ed6.21b7b5a8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/91086ed6.21b7b5a8.js -------------------------------------------------------------------------------- /docs/assets/js/91086ed6.3590a121.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/91086ed6.3590a121.js -------------------------------------------------------------------------------- /docs/assets/js/91086ed6.3ba33679.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/91086ed6.3ba33679.js -------------------------------------------------------------------------------- /docs/assets/js/91086ed6.3d48775f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/91086ed6.3d48775f.js -------------------------------------------------------------------------------- /docs/assets/js/91086ed6.3e227675.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/91086ed6.3e227675.js -------------------------------------------------------------------------------- /docs/assets/js/91086ed6.6935e487.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/91086ed6.6935e487.js -------------------------------------------------------------------------------- /docs/assets/js/91086ed6.69494ddd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/91086ed6.69494ddd.js -------------------------------------------------------------------------------- /docs/assets/js/91086ed6.70a4a21e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/91086ed6.70a4a21e.js -------------------------------------------------------------------------------- /docs/assets/js/91086ed6.74800243.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/91086ed6.74800243.js -------------------------------------------------------------------------------- /docs/assets/js/91086ed6.889e5e36.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/91086ed6.889e5e36.js -------------------------------------------------------------------------------- /docs/assets/js/91086ed6.969bb178.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/91086ed6.969bb178.js -------------------------------------------------------------------------------- /docs/assets/js/91086ed6.f36b1459.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/91086ed6.f36b1459.js -------------------------------------------------------------------------------- /docs/assets/js/9117216e.2fa25ab6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/9117216e.2fa25ab6.js -------------------------------------------------------------------------------- /docs/assets/js/9117216e.755349ff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/9117216e.755349ff.js -------------------------------------------------------------------------------- /docs/assets/js/9117216e.8564420b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/9117216e.8564420b.js -------------------------------------------------------------------------------- /docs/assets/js/9117216e.ae397ef9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/9117216e.ae397ef9.js -------------------------------------------------------------------------------- /docs/assets/js/92a12325.730f0214.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/92a12325.730f0214.js -------------------------------------------------------------------------------- /docs/assets/js/92a12325.d9d77754.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/92a12325.d9d77754.js -------------------------------------------------------------------------------- /docs/assets/js/935f2afb.1ef3ffd8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/935f2afb.1ef3ffd8.js -------------------------------------------------------------------------------- /docs/assets/js/935f2afb.40b0df95.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/935f2afb.40b0df95.js -------------------------------------------------------------------------------- /docs/assets/js/935f2afb.6de2643f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/935f2afb.6de2643f.js -------------------------------------------------------------------------------- /docs/assets/js/935f2afb.960c0db5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/935f2afb.960c0db5.js -------------------------------------------------------------------------------- /docs/assets/js/935f2afb.9fa4e6f2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/935f2afb.9fa4e6f2.js -------------------------------------------------------------------------------- /docs/assets/js/935f2afb.b6c8d3e9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/935f2afb.b6c8d3e9.js -------------------------------------------------------------------------------- /docs/assets/js/9755f291.62cb9131.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/9755f291.62cb9131.js -------------------------------------------------------------------------------- /docs/assets/js/9755f291.70dda844.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/9755f291.70dda844.js -------------------------------------------------------------------------------- /docs/assets/js/9755f291.dcc5799c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/9755f291.dcc5799c.js -------------------------------------------------------------------------------- /docs/assets/js/9755f291.e6f5e14c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/9755f291.e6f5e14c.js -------------------------------------------------------------------------------- /docs/assets/js/99cb6e1e.483d8b06.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/99cb6e1e.483d8b06.js -------------------------------------------------------------------------------- /docs/assets/js/99cb6e1e.b23dc44a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/99cb6e1e.b23dc44a.js -------------------------------------------------------------------------------- /docs/assets/js/99cb6e1e.e18ef05e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/99cb6e1e.e18ef05e.js -------------------------------------------------------------------------------- /docs/assets/js/9cff9f48.15ba95a9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/9cff9f48.15ba95a9.js -------------------------------------------------------------------------------- /docs/assets/js/9cff9f48.5af3f1ce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/9cff9f48.5af3f1ce.js -------------------------------------------------------------------------------- /docs/assets/js/9cff9f48.7c1650c1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/9cff9f48.7c1650c1.js -------------------------------------------------------------------------------- /docs/assets/js/9cff9f48.86b06744.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/9cff9f48.86b06744.js -------------------------------------------------------------------------------- /docs/assets/js/9cff9f48.d58dfb9c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/9cff9f48.d58dfb9c.js -------------------------------------------------------------------------------- /docs/assets/js/9cff9f48.df1d4d94.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/9cff9f48.df1d4d94.js -------------------------------------------------------------------------------- /docs/assets/js/a11d92f0.3e818d31.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/a11d92f0.3e818d31.js -------------------------------------------------------------------------------- /docs/assets/js/a42cea08.b9ed8e3a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/a42cea08.b9ed8e3a.js -------------------------------------------------------------------------------- /docs/assets/js/a4646789.24be537e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/a4646789.24be537e.js -------------------------------------------------------------------------------- /docs/assets/js/a7456010.9aa70c4a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/a7456010.9aa70c4a.js -------------------------------------------------------------------------------- /docs/assets/js/a7bd4aaa.2f27a013.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/a7bd4aaa.2f27a013.js -------------------------------------------------------------------------------- /docs/assets/js/a7bd4aaa.30d0f55b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/a7bd4aaa.30d0f55b.js -------------------------------------------------------------------------------- /docs/assets/js/a7bd4aaa.dbfb3eca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/a7bd4aaa.dbfb3eca.js -------------------------------------------------------------------------------- /docs/assets/js/a8fdd87e.773f912e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/a8fdd87e.773f912e.js -------------------------------------------------------------------------------- /docs/assets/js/a90bcd30.0d1ce23a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/a90bcd30.0d1ce23a.js -------------------------------------------------------------------------------- /docs/assets/js/a90bcd30.bcd8f32b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/a90bcd30.bcd8f32b.js -------------------------------------------------------------------------------- /docs/assets/js/a90bcd30.caa9e7bf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/a90bcd30.caa9e7bf.js -------------------------------------------------------------------------------- /docs/assets/js/a94703ab.07d5b755.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/a94703ab.07d5b755.js -------------------------------------------------------------------------------- /docs/assets/js/a94703ab.40235ea8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/a94703ab.40235ea8.js -------------------------------------------------------------------------------- /docs/assets/js/a94703ab.46c05b77.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/a94703ab.46c05b77.js -------------------------------------------------------------------------------- /docs/assets/js/a94703ab.d948697c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/a94703ab.d948697c.js -------------------------------------------------------------------------------- /docs/assets/js/a94703ab.dd85054d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/a94703ab.dd85054d.js -------------------------------------------------------------------------------- /docs/assets/js/aa74e104.30803d74.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/aa74e104.30803d74.js -------------------------------------------------------------------------------- /docs/assets/js/aa74e104.522e2251.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/aa74e104.522e2251.js -------------------------------------------------------------------------------- /docs/assets/js/aa74e104.917a2b15.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/aa74e104.917a2b15.js -------------------------------------------------------------------------------- /docs/assets/js/aa74e104.f7e44be0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/aa74e104.f7e44be0.js -------------------------------------------------------------------------------- /docs/assets/js/aba21aa0.5384ca86.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/aba21aa0.5384ca86.js -------------------------------------------------------------------------------- /docs/assets/js/abfe3ee9.d42bb68a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/abfe3ee9.d42bb68a.js -------------------------------------------------------------------------------- /docs/assets/js/abfe3ee9.d5621304.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/abfe3ee9.d5621304.js -------------------------------------------------------------------------------- /docs/assets/js/adffbaad.2d0013c6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/adffbaad.2d0013c6.js -------------------------------------------------------------------------------- /docs/assets/js/b277a811.013ea135.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/b277a811.013ea135.js -------------------------------------------------------------------------------- /docs/assets/js/b277a811.02ffebca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/b277a811.02ffebca.js -------------------------------------------------------------------------------- /docs/assets/js/b277a811.0557efb9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/b277a811.0557efb9.js -------------------------------------------------------------------------------- /docs/assets/js/b277a811.1c450fe7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/b277a811.1c450fe7.js -------------------------------------------------------------------------------- /docs/assets/js/b277a811.1ea35be6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/b277a811.1ea35be6.js -------------------------------------------------------------------------------- /docs/assets/js/b277a811.26bc41b5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/b277a811.26bc41b5.js -------------------------------------------------------------------------------- /docs/assets/js/b277a811.35117acb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/b277a811.35117acb.js -------------------------------------------------------------------------------- /docs/assets/js/b277a811.4494ee3c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/b277a811.4494ee3c.js -------------------------------------------------------------------------------- /docs/assets/js/b277a811.52305847.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/b277a811.52305847.js -------------------------------------------------------------------------------- /docs/assets/js/b277a811.764e7e02.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/b277a811.764e7e02.js -------------------------------------------------------------------------------- /docs/assets/js/b277a811.87855ba1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/b277a811.87855ba1.js -------------------------------------------------------------------------------- /docs/assets/js/b277a811.957fd386.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/b277a811.957fd386.js -------------------------------------------------------------------------------- /docs/assets/js/b277a811.95c5c189.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/b277a811.95c5c189.js -------------------------------------------------------------------------------- /docs/assets/js/b277a811.9807c949.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/b277a811.9807c949.js -------------------------------------------------------------------------------- /docs/assets/js/b277a811.9f584504.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/b277a811.9f584504.js -------------------------------------------------------------------------------- /docs/assets/js/b277a811.a7e111a8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/b277a811.a7e111a8.js -------------------------------------------------------------------------------- /docs/assets/js/b277a811.aab491f7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/b277a811.aab491f7.js -------------------------------------------------------------------------------- /docs/assets/js/b277a811.afa52987.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/b277a811.afa52987.js -------------------------------------------------------------------------------- /docs/assets/js/b277a811.b127a97f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/b277a811.b127a97f.js -------------------------------------------------------------------------------- /docs/assets/js/b277a811.bf33b34d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/b277a811.bf33b34d.js -------------------------------------------------------------------------------- /docs/assets/js/b277a811.c2fe14b4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/b277a811.c2fe14b4.js -------------------------------------------------------------------------------- /docs/assets/js/b277a811.c39a693f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/b277a811.c39a693f.js -------------------------------------------------------------------------------- /docs/assets/js/b277a811.d147bd3c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/b277a811.d147bd3c.js -------------------------------------------------------------------------------- /docs/assets/js/b277a811.dd0b0afa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/b277a811.dd0b0afa.js -------------------------------------------------------------------------------- /docs/assets/js/b277a811.df2d670c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/b277a811.df2d670c.js -------------------------------------------------------------------------------- /docs/assets/js/b277a811.e261e48b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/b277a811.e261e48b.js -------------------------------------------------------------------------------- /docs/assets/js/b277a811.e2af658e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/b277a811.e2af658e.js -------------------------------------------------------------------------------- /docs/assets/js/b277a811.e8dd1e1f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/b277a811.e8dd1e1f.js -------------------------------------------------------------------------------- /docs/assets/js/b277a811.eb537593.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/b277a811.eb537593.js -------------------------------------------------------------------------------- /docs/assets/js/b277a811.f2fc7772.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/b277a811.f2fc7772.js -------------------------------------------------------------------------------- /docs/assets/js/b277a811.fdc9b42d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/b277a811.fdc9b42d.js -------------------------------------------------------------------------------- /docs/assets/js/b277a811.ff557e03.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/b277a811.ff557e03.js -------------------------------------------------------------------------------- /docs/assets/js/bb669cdd.271295ad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/bb669cdd.271295ad.js -------------------------------------------------------------------------------- /docs/assets/js/bb669cdd.8705f1aa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/bb669cdd.8705f1aa.js -------------------------------------------------------------------------------- /docs/assets/js/bb669cdd.a719d089.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/bb669cdd.a719d089.js -------------------------------------------------------------------------------- /docs/assets/js/bb669cdd.de1f67ee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/bb669cdd.de1f67ee.js -------------------------------------------------------------------------------- /docs/assets/js/beb35022.e48b002e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/beb35022.e48b002e.js -------------------------------------------------------------------------------- /docs/assets/js/c00036f2.33c38aaa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/c00036f2.33c38aaa.js -------------------------------------------------------------------------------- /docs/assets/js/c00036f2.44a748fe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/c00036f2.44a748fe.js -------------------------------------------------------------------------------- /docs/assets/js/c4f5d8e4.00df7d0d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/c4f5d8e4.00df7d0d.js -------------------------------------------------------------------------------- /docs/assets/js/c4f5d8e4.b14b0fd2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/c4f5d8e4.b14b0fd2.js -------------------------------------------------------------------------------- /docs/assets/js/c4f5d8e4.be1019b3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/c4f5d8e4.be1019b3.js -------------------------------------------------------------------------------- /docs/assets/js/c4f5d8e4.f0a5e05b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/c4f5d8e4.f0a5e05b.js -------------------------------------------------------------------------------- /docs/assets/js/c4f5d8e4.f12e0e4b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/c4f5d8e4.f12e0e4b.js -------------------------------------------------------------------------------- /docs/assets/js/c4f5d8e4.fd7a3e17.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/c4f5d8e4.fd7a3e17.js -------------------------------------------------------------------------------- /docs/assets/js/c5a98549.458824dd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/c5a98549.458824dd.js -------------------------------------------------------------------------------- /docs/assets/js/c5a98549.5de2bda7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/c5a98549.5de2bda7.js -------------------------------------------------------------------------------- /docs/assets/js/c5a98549.6083597d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/c5a98549.6083597d.js -------------------------------------------------------------------------------- /docs/assets/js/c5a98549.6b4cf55e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/c5a98549.6b4cf55e.js -------------------------------------------------------------------------------- /docs/assets/js/c5a98549.a49351ed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/c5a98549.a49351ed.js -------------------------------------------------------------------------------- /docs/assets/js/c5f7dd62.17bf3115.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/c5f7dd62.17bf3115.js -------------------------------------------------------------------------------- /docs/assets/js/c5f7dd62.18a5bee6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/c5f7dd62.18a5bee6.js -------------------------------------------------------------------------------- /docs/assets/js/c5f7dd62.9ed002f5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/c5f7dd62.9ed002f5.js -------------------------------------------------------------------------------- /docs/assets/js/c5f7dd62.cc2da392.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/c5f7dd62.cc2da392.js -------------------------------------------------------------------------------- /docs/assets/js/c658d08c.13b6388b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/c658d08c.13b6388b.js -------------------------------------------------------------------------------- /docs/assets/js/c658d08c.ac3a6b5a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/c658d08c.ac3a6b5a.js -------------------------------------------------------------------------------- /docs/assets/js/c658d08c.b2751c51.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/c658d08c.b2751c51.js -------------------------------------------------------------------------------- /docs/assets/js/c658d08c.b4fd9924.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/c658d08c.b4fd9924.js -------------------------------------------------------------------------------- /docs/assets/js/c9d9ec16.95e84aee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/c9d9ec16.95e84aee.js -------------------------------------------------------------------------------- /docs/assets/js/c9d9ec16.b7b4c749.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/c9d9ec16.b7b4c749.js -------------------------------------------------------------------------------- /docs/assets/js/c9d9ec16.cafa30d3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/c9d9ec16.cafa30d3.js -------------------------------------------------------------------------------- /docs/assets/js/c9d9ec16.ec028d63.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/c9d9ec16.ec028d63.js -------------------------------------------------------------------------------- /docs/assets/js/cdd7a3d4.94980ccc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/cdd7a3d4.94980ccc.js -------------------------------------------------------------------------------- /docs/assets/js/d5060a81.03c9513a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/d5060a81.03c9513a.js -------------------------------------------------------------------------------- /docs/assets/js/d5060a81.20ab3e56.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/d5060a81.20ab3e56.js -------------------------------------------------------------------------------- /docs/assets/js/d5060a81.2a8371c0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/d5060a81.2a8371c0.js -------------------------------------------------------------------------------- /docs/assets/js/d5060a81.3ce0c363.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/d5060a81.3ce0c363.js -------------------------------------------------------------------------------- /docs/assets/js/d5060a81.48454111.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/d5060a81.48454111.js -------------------------------------------------------------------------------- /docs/assets/js/d5060a81.505dc160.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/d5060a81.505dc160.js -------------------------------------------------------------------------------- /docs/assets/js/d7242cac.0b1673b6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/d7242cac.0b1673b6.js -------------------------------------------------------------------------------- /docs/assets/js/d7242cac.4ce76e25.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/d7242cac.4ce76e25.js -------------------------------------------------------------------------------- /docs/assets/js/d7242cac.6439e0f9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/d7242cac.6439e0f9.js -------------------------------------------------------------------------------- /docs/assets/js/d7242cac.7933aef6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/d7242cac.7933aef6.js -------------------------------------------------------------------------------- /docs/assets/js/d8973fa8.2f1dd2f5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/d8973fa8.2f1dd2f5.js -------------------------------------------------------------------------------- /docs/assets/js/d8973fa8.78d64030.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/d8973fa8.78d64030.js -------------------------------------------------------------------------------- /docs/assets/js/d8973fa8.c5f02f53.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/d8973fa8.c5f02f53.js -------------------------------------------------------------------------------- /docs/assets/js/d8973fa8.ca8765d2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/d8973fa8.ca8765d2.js -------------------------------------------------------------------------------- /docs/assets/js/d9990e8a.24983a66.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/d9990e8a.24983a66.js -------------------------------------------------------------------------------- /docs/assets/js/d9990e8a.258913b4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/d9990e8a.258913b4.js -------------------------------------------------------------------------------- /docs/assets/js/d9990e8a.854b13ce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/d9990e8a.854b13ce.js -------------------------------------------------------------------------------- /docs/assets/js/d9990e8a.d6f3d78e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/d9990e8a.d6f3d78e.js -------------------------------------------------------------------------------- /docs/assets/js/df203c0f.457d1c7e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/df203c0f.457d1c7e.js -------------------------------------------------------------------------------- /docs/assets/js/df203c0f.7bd1da3a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/df203c0f.7bd1da3a.js -------------------------------------------------------------------------------- /docs/assets/js/df203c0f.9e59c6dc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/df203c0f.9e59c6dc.js -------------------------------------------------------------------------------- /docs/assets/js/df203c0f.9f439e8f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/df203c0f.9f439e8f.js -------------------------------------------------------------------------------- /docs/assets/js/e06b81f4.33681dd8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/e06b81f4.33681dd8.js -------------------------------------------------------------------------------- /docs/assets/js/e06b81f4.52f28af3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/e06b81f4.52f28af3.js -------------------------------------------------------------------------------- /docs/assets/js/e06b81f4.d9de3fc7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/e06b81f4.d9de3fc7.js -------------------------------------------------------------------------------- /docs/assets/js/e83df34e.013af2eb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/e83df34e.013af2eb.js -------------------------------------------------------------------------------- /docs/assets/js/e83df34e.4124771e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/e83df34e.4124771e.js -------------------------------------------------------------------------------- /docs/assets/js/e83df34e.ad1d7395.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/e83df34e.ad1d7395.js -------------------------------------------------------------------------------- /docs/assets/js/e83df34e.b5bb39c4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/e83df34e.b5bb39c4.js -------------------------------------------------------------------------------- /docs/assets/js/e83df34e.b83b1ef9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/e83df34e.b83b1ef9.js -------------------------------------------------------------------------------- /docs/assets/js/e83df34e.f35e8ae6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/e83df34e.f35e8ae6.js -------------------------------------------------------------------------------- /docs/assets/js/e953d3c5.057fccf0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/e953d3c5.057fccf0.js -------------------------------------------------------------------------------- /docs/assets/js/e953d3c5.1f2dde6e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/e953d3c5.1f2dde6e.js -------------------------------------------------------------------------------- /docs/assets/js/e953d3c5.52a31f7f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/e953d3c5.52a31f7f.js -------------------------------------------------------------------------------- /docs/assets/js/e953d3c5.88b83876.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/e953d3c5.88b83876.js -------------------------------------------------------------------------------- /docs/assets/js/e953d3c5.d7c46002.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/e953d3c5.d7c46002.js -------------------------------------------------------------------------------- /docs/assets/js/e953d3c5.e533870f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/e953d3c5.e533870f.js -------------------------------------------------------------------------------- /docs/assets/js/ed11db58.3bb72ca6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/ed11db58.3bb72ca6.js -------------------------------------------------------------------------------- /docs/assets/js/ed11db58.d4d94b94.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/ed11db58.d4d94b94.js -------------------------------------------------------------------------------- /docs/assets/js/ee06beb8.5860adc0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/ee06beb8.5860adc0.js -------------------------------------------------------------------------------- /docs/assets/js/ee06beb8.ac188895.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/ee06beb8.ac188895.js -------------------------------------------------------------------------------- /docs/assets/js/ee06beb8.cc4c29d9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/ee06beb8.cc4c29d9.js -------------------------------------------------------------------------------- /docs/assets/js/ee06beb8.f36a150b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/ee06beb8.f36a150b.js -------------------------------------------------------------------------------- /docs/assets/js/ef4bb451.2e11c473.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/ef4bb451.2e11c473.js -------------------------------------------------------------------------------- /docs/assets/js/ef4bb451.52f38fd2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/ef4bb451.52f38fd2.js -------------------------------------------------------------------------------- /docs/assets/js/ef4bb451.aeb903cb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/ef4bb451.aeb903cb.js -------------------------------------------------------------------------------- /docs/assets/js/ef4bb451.e1a11849.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/ef4bb451.e1a11849.js -------------------------------------------------------------------------------- /docs/assets/js/f0ad3fbb.186395f7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/f0ad3fbb.186395f7.js -------------------------------------------------------------------------------- /docs/assets/js/f0ad3fbb.5e1206b1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/f0ad3fbb.5e1206b1.js -------------------------------------------------------------------------------- /docs/assets/js/fa8a5ad9.2b0034de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/fa8a5ad9.2b0034de.js -------------------------------------------------------------------------------- /docs/assets/js/fa8a5ad9.4e625e86.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/fa8a5ad9.4e625e86.js -------------------------------------------------------------------------------- /docs/assets/js/fa8a5ad9.58d4ad6c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/fa8a5ad9.58d4ad6c.js -------------------------------------------------------------------------------- /docs/assets/js/fa8a5ad9.99c63c15.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/fa8a5ad9.99c63c15.js -------------------------------------------------------------------------------- /docs/assets/js/fb4f8d45.4aaca498.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/fb4f8d45.4aaca498.js -------------------------------------------------------------------------------- /docs/assets/js/fb4f8d45.6fa77db1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/fb4f8d45.6fa77db1.js -------------------------------------------------------------------------------- /docs/assets/js/fb4f8d45.b97c72ac.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/fb4f8d45.b97c72ac.js -------------------------------------------------------------------------------- /docs/assets/js/fb4f8d45.f5261a41.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/fb4f8d45.f5261a41.js -------------------------------------------------------------------------------- /docs/assets/js/fc0be43e.cc2bfb14.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/fc0be43e.cc2bfb14.js -------------------------------------------------------------------------------- /docs/assets/js/fc0be43e.d7fe1022.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/fc0be43e.d7fe1022.js -------------------------------------------------------------------------------- /docs/assets/js/main.0313916c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/main.0313916c.js -------------------------------------------------------------------------------- /docs/assets/js/main.05ec9a04.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/main.05ec9a04.js -------------------------------------------------------------------------------- /docs/assets/js/main.0b5fd8e8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/main.0b5fd8e8.js -------------------------------------------------------------------------------- /docs/assets/js/main.0bd0776c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/main.0bd0776c.js -------------------------------------------------------------------------------- /docs/assets/js/main.0c8ff57e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/main.0c8ff57e.js -------------------------------------------------------------------------------- /docs/assets/js/main.15cef605.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/main.15cef605.js -------------------------------------------------------------------------------- /docs/assets/js/main.1e28e9b4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/main.1e28e9b4.js -------------------------------------------------------------------------------- /docs/assets/js/main.225c816f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/main.225c816f.js -------------------------------------------------------------------------------- /docs/assets/js/main.257a9ffa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/main.257a9ffa.js -------------------------------------------------------------------------------- /docs/assets/js/main.27ec7d19.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/main.27ec7d19.js -------------------------------------------------------------------------------- /docs/assets/js/main.2877995b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/main.2877995b.js -------------------------------------------------------------------------------- /docs/assets/js/main.3245a045.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/main.3245a045.js -------------------------------------------------------------------------------- /docs/assets/js/main.35376190.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/main.35376190.js -------------------------------------------------------------------------------- /docs/assets/js/main.3afe0366.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/main.3afe0366.js -------------------------------------------------------------------------------- /docs/assets/js/main.4d5fddc9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/main.4d5fddc9.js -------------------------------------------------------------------------------- /docs/assets/js/main.4dd56883.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/main.4dd56883.js -------------------------------------------------------------------------------- /docs/assets/js/main.5df4e3fc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/main.5df4e3fc.js -------------------------------------------------------------------------------- /docs/assets/js/main.67484704.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/main.67484704.js -------------------------------------------------------------------------------- /docs/assets/js/main.682087ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/main.682087ca.js -------------------------------------------------------------------------------- /docs/assets/js/main.697082df.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/main.697082df.js -------------------------------------------------------------------------------- /docs/assets/js/main.8a66cc76.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/main.8a66cc76.js -------------------------------------------------------------------------------- /docs/assets/js/main.9677e80a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/main.9677e80a.js -------------------------------------------------------------------------------- /docs/assets/js/main.98737f23.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/main.98737f23.js -------------------------------------------------------------------------------- /docs/assets/js/main.9a87da9d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/main.9a87da9d.js -------------------------------------------------------------------------------- /docs/assets/js/main.9abcd556.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/main.9abcd556.js -------------------------------------------------------------------------------- /docs/assets/js/main.a34f8fc9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/main.a34f8fc9.js -------------------------------------------------------------------------------- /docs/assets/js/main.a8b3ff6b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/main.a8b3ff6b.js -------------------------------------------------------------------------------- /docs/assets/js/main.b67d623c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/main.b67d623c.js -------------------------------------------------------------------------------- /docs/assets/js/main.ba23b206.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/main.ba23b206.js -------------------------------------------------------------------------------- /docs/assets/js/main.bb62075a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/main.bb62075a.js -------------------------------------------------------------------------------- /docs/assets/js/main.c2f49dde.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/main.c2f49dde.js -------------------------------------------------------------------------------- /docs/assets/js/main.c935f2f7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/main.c935f2f7.js -------------------------------------------------------------------------------- /docs/assets/js/main.da9892a2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/main.da9892a2.js -------------------------------------------------------------------------------- /docs/assets/js/main.e4ef4c5a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/main.e4ef4c5a.js -------------------------------------------------------------------------------- /docs/assets/js/main.e6085b1c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/main.e6085b1c.js -------------------------------------------------------------------------------- /docs/assets/js/main.e7e08b12.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/main.e7e08b12.js -------------------------------------------------------------------------------- /docs/assets/js/main.e903d22b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/main.e903d22b.js -------------------------------------------------------------------------------- /docs/assets/js/main.f1622a89.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/main.f1622a89.js -------------------------------------------------------------------------------- /docs/assets/js/main.f6bbb69b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/main.f6bbb69b.js -------------------------------------------------------------------------------- /docs/assets/js/main.f9e4736d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/main.f9e4736d.js -------------------------------------------------------------------------------- /docs/assets/js/runtime~main.0057ec3c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/runtime~main.0057ec3c.js -------------------------------------------------------------------------------- /docs/assets/js/runtime~main.00b70b99.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/runtime~main.00b70b99.js -------------------------------------------------------------------------------- /docs/assets/js/runtime~main.0306a75c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/runtime~main.0306a75c.js -------------------------------------------------------------------------------- /docs/assets/js/runtime~main.061b3e47.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/runtime~main.061b3e47.js -------------------------------------------------------------------------------- /docs/assets/js/runtime~main.0d9e16bd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/runtime~main.0d9e16bd.js -------------------------------------------------------------------------------- /docs/assets/js/runtime~main.19e23a18.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/runtime~main.19e23a18.js -------------------------------------------------------------------------------- /docs/assets/js/runtime~main.1b9f696c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/runtime~main.1b9f696c.js -------------------------------------------------------------------------------- /docs/assets/js/runtime~main.1e1f1d73.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/runtime~main.1e1f1d73.js -------------------------------------------------------------------------------- /docs/assets/js/runtime~main.2469728c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/runtime~main.2469728c.js -------------------------------------------------------------------------------- /docs/assets/js/runtime~main.2deba45f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/runtime~main.2deba45f.js -------------------------------------------------------------------------------- /docs/assets/js/runtime~main.2ef63d95.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/runtime~main.2ef63d95.js -------------------------------------------------------------------------------- /docs/assets/js/runtime~main.30f8fd83.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/runtime~main.30f8fd83.js -------------------------------------------------------------------------------- /docs/assets/js/runtime~main.37779ac6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/runtime~main.37779ac6.js -------------------------------------------------------------------------------- /docs/assets/js/runtime~main.3a3cae44.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/runtime~main.3a3cae44.js -------------------------------------------------------------------------------- /docs/assets/js/runtime~main.48c7d45a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/runtime~main.48c7d45a.js -------------------------------------------------------------------------------- /docs/assets/js/runtime~main.49cc470d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/runtime~main.49cc470d.js -------------------------------------------------------------------------------- /docs/assets/js/runtime~main.4bd58d7b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/runtime~main.4bd58d7b.js -------------------------------------------------------------------------------- /docs/assets/js/runtime~main.4fda904f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/runtime~main.4fda904f.js -------------------------------------------------------------------------------- /docs/assets/js/runtime~main.5446f01a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/runtime~main.5446f01a.js -------------------------------------------------------------------------------- /docs/assets/js/runtime~main.638fbb21.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/runtime~main.638fbb21.js -------------------------------------------------------------------------------- /docs/assets/js/runtime~main.63e4baa9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/runtime~main.63e4baa9.js -------------------------------------------------------------------------------- /docs/assets/js/runtime~main.657634a1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/runtime~main.657634a1.js -------------------------------------------------------------------------------- /docs/assets/js/runtime~main.6736ed9f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/runtime~main.6736ed9f.js -------------------------------------------------------------------------------- /docs/assets/js/runtime~main.68b40058.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/runtime~main.68b40058.js -------------------------------------------------------------------------------- /docs/assets/js/runtime~main.69a080a2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/runtime~main.69a080a2.js -------------------------------------------------------------------------------- /docs/assets/js/runtime~main.6c7bde3f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/runtime~main.6c7bde3f.js -------------------------------------------------------------------------------- /docs/assets/js/runtime~main.6e745fb2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/runtime~main.6e745fb2.js -------------------------------------------------------------------------------- /docs/assets/js/runtime~main.71cb777e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/runtime~main.71cb777e.js -------------------------------------------------------------------------------- /docs/assets/js/runtime~main.73b04eb4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/runtime~main.73b04eb4.js -------------------------------------------------------------------------------- /docs/assets/js/runtime~main.75fd59dd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/runtime~main.75fd59dd.js -------------------------------------------------------------------------------- /docs/assets/js/runtime~main.7ec1144e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/runtime~main.7ec1144e.js -------------------------------------------------------------------------------- /docs/assets/js/runtime~main.81870b8e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/runtime~main.81870b8e.js -------------------------------------------------------------------------------- /docs/assets/js/runtime~main.895c194e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/runtime~main.895c194e.js -------------------------------------------------------------------------------- /docs/assets/js/runtime~main.930ab2d1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/runtime~main.930ab2d1.js -------------------------------------------------------------------------------- /docs/assets/js/runtime~main.94410243.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/runtime~main.94410243.js -------------------------------------------------------------------------------- /docs/assets/js/runtime~main.976d71f2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/runtime~main.976d71f2.js -------------------------------------------------------------------------------- /docs/assets/js/runtime~main.97a08261.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/runtime~main.97a08261.js -------------------------------------------------------------------------------- /docs/assets/js/runtime~main.9a61c14e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/runtime~main.9a61c14e.js -------------------------------------------------------------------------------- /docs/assets/js/runtime~main.9c363b9c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/runtime~main.9c363b9c.js -------------------------------------------------------------------------------- /docs/assets/js/runtime~main.a4c68102.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/runtime~main.a4c68102.js -------------------------------------------------------------------------------- /docs/assets/js/runtime~main.a659f1d7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/runtime~main.a659f1d7.js -------------------------------------------------------------------------------- /docs/assets/js/runtime~main.a9be3826.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/runtime~main.a9be3826.js -------------------------------------------------------------------------------- /docs/assets/js/runtime~main.ae94eb80.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/runtime~main.ae94eb80.js -------------------------------------------------------------------------------- /docs/assets/js/runtime~main.b19c8ee8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/runtime~main.b19c8ee8.js -------------------------------------------------------------------------------- /docs/assets/js/runtime~main.b575be8c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/runtime~main.b575be8c.js -------------------------------------------------------------------------------- /docs/assets/js/runtime~main.b8a72944.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/runtime~main.b8a72944.js -------------------------------------------------------------------------------- /docs/assets/js/runtime~main.b96a340d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/runtime~main.b96a340d.js -------------------------------------------------------------------------------- /docs/assets/js/runtime~main.b992d371.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/runtime~main.b992d371.js -------------------------------------------------------------------------------- /docs/assets/js/runtime~main.bf64e289.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/runtime~main.bf64e289.js -------------------------------------------------------------------------------- /docs/assets/js/runtime~main.bffac6ff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/runtime~main.bffac6ff.js -------------------------------------------------------------------------------- /docs/assets/js/runtime~main.c01bb24d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/runtime~main.c01bb24d.js -------------------------------------------------------------------------------- /docs/assets/js/runtime~main.c0d2e68e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/runtime~main.c0d2e68e.js -------------------------------------------------------------------------------- /docs/assets/js/runtime~main.c8d9941a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/runtime~main.c8d9941a.js -------------------------------------------------------------------------------- /docs/assets/js/runtime~main.cd36a0f6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/runtime~main.cd36a0f6.js -------------------------------------------------------------------------------- /docs/assets/js/runtime~main.d3013f4f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/runtime~main.d3013f4f.js -------------------------------------------------------------------------------- /docs/assets/js/runtime~main.dc8e2e0f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/runtime~main.dc8e2e0f.js -------------------------------------------------------------------------------- /docs/assets/js/runtime~main.dd38d8db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/runtime~main.dd38d8db.js -------------------------------------------------------------------------------- /docs/assets/js/runtime~main.e03a2102.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/runtime~main.e03a2102.js -------------------------------------------------------------------------------- /docs/assets/js/runtime~main.e0c42e28.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/runtime~main.e0c42e28.js -------------------------------------------------------------------------------- /docs/assets/js/runtime~main.e2f0372d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/runtime~main.e2f0372d.js -------------------------------------------------------------------------------- /docs/assets/js/runtime~main.f0dc1797.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/runtime~main.f0dc1797.js -------------------------------------------------------------------------------- /docs/assets/js/runtime~main.f5ef9a6f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/runtime~main.f5ef9a6f.js -------------------------------------------------------------------------------- /docs/assets/js/runtime~main.fbe5a876.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/assets/js/runtime~main.fbe5a876.js -------------------------------------------------------------------------------- /docs/docs/cli/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/docs/cli/index.html -------------------------------------------------------------------------------- /docs/docs/cli/informations/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/docs/cli/informations/index.html -------------------------------------------------------------------------------- /docs/docs/getstarted/about/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/docs/getstarted/about/index.html -------------------------------------------------------------------------------- /docs/docs/getstarted/firstrun/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/docs/getstarted/firstrun/index.html -------------------------------------------------------------------------------- /docs/docs/getstarted/getdaikoku/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/docs/getstarted/getdaikoku/index.html -------------------------------------------------------------------------------- /docs/docs/getstarted/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/docs/getstarted/index.html -------------------------------------------------------------------------------- /docs/docs/getstarted/quickstart/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/docs/getstarted/quickstart/index.html -------------------------------------------------------------------------------- /docs/docs/getstarted/setup/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/docs/getstarted/setup/index.html -------------------------------------------------------------------------------- /docs/docs/guides/apis/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/docs/guides/apis/index.html -------------------------------------------------------------------------------- /docs/docs/guides/archi/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/docs/guides/archi/index.html -------------------------------------------------------------------------------- /docs/docs/guides/authentication/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/docs/guides/authentication/index.html -------------------------------------------------------------------------------- /docs/docs/guides/deploy/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/docs/guides/deploy/index.html -------------------------------------------------------------------------------- /docs/docs/guides/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/docs/guides/index.html -------------------------------------------------------------------------------- /docs/docs/guides/integrations/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/docs/guides/integrations/index.html -------------------------------------------------------------------------------- /docs/docs/guides/jobs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/docs/guides/jobs/index.html -------------------------------------------------------------------------------- /docs/docs/tags/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/docs/tags/index.html -------------------------------------------------------------------------------- /docs/docs/tags/installation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/docs/tags/installation/index.html -------------------------------------------------------------------------------- /docs/docs/tags/licence/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/docs/tags/licence/index.html -------------------------------------------------------------------------------- /docs/docs/usages/adminusage/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/docs/usages/adminusage/index.html -------------------------------------------------------------------------------- /docs/docs/usages/consumerusage/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/docs/usages/consumerusage/index.html -------------------------------------------------------------------------------- /docs/docs/usages/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/docs/usages/index.html -------------------------------------------------------------------------------- /docs/docs/usages/producerusage/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/docs/usages/producerusage/index.html -------------------------------------------------------------------------------- /docs/docs/usages/tenantusage/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/docs/usages/tenantusage/index.html -------------------------------------------------------------------------------- /docs/img/api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/img/api.png -------------------------------------------------------------------------------- /docs/img/apis-styling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/img/apis-styling.png -------------------------------------------------------------------------------- /docs/img/cli-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/img/cli-architecture.png -------------------------------------------------------------------------------- /docs/img/daikoku-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/img/daikoku-architecture.png -------------------------------------------------------------------------------- /docs/img/daikoku-mini-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/img/daikoku-mini-dark.svg -------------------------------------------------------------------------------- /docs/img/daikoku-mini.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/img/daikoku-mini.svg -------------------------------------------------------------------------------- /docs/img/daikoku.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/img/daikoku.png -------------------------------------------------------------------------------- /docs/img/developer-mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/img/developer-mode.png -------------------------------------------------------------------------------- /docs/img/home-apis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/img/home-apis.png -------------------------------------------------------------------------------- /docs/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/img/logo.svg -------------------------------------------------------------------------------- /docs/img/undraw_building_websites_i78t.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/img/undraw_building_websites_i78t.svg -------------------------------------------------------------------------------- /docs/img/undraw_mindfulness_8gqa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/img/undraw_mindfulness_8gqa.svg -------------------------------------------------------------------------------- /docs/img/welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/img/welcome.png -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/openapi/admin-api-openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/openapi/admin-api-openapi.json -------------------------------------------------------------------------------- /docs/openapi/admin-api-openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/openapi/admin-api-openapi.yaml -------------------------------------------------------------------------------- /docs/openapi/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/openapi/index.html -------------------------------------------------------------------------------- /docs/redocusaurus/plugin-redoc-0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/redocusaurus/plugin-redoc-0.yaml -------------------------------------------------------------------------------- /docs/search-index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/search-index.json -------------------------------------------------------------------------------- /docs/search/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/search/index.html -------------------------------------------------------------------------------- /docs/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/docs/sitemap.xml -------------------------------------------------------------------------------- /licences.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/licences.md -------------------------------------------------------------------------------- /manual/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/manual/.gitignore -------------------------------------------------------------------------------- /manual/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/manual/README.md -------------------------------------------------------------------------------- /manual/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/manual/babel.config.js -------------------------------------------------------------------------------- /manual/docs/01-getstarted/00-about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/manual/docs/01-getstarted/00-about.md -------------------------------------------------------------------------------- /manual/docs/01-getstarted/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/manual/docs/01-getstarted/index.mdx -------------------------------------------------------------------------------- /manual/docs/02-usages/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/manual/docs/02-usages/index.mdx -------------------------------------------------------------------------------- /manual/docs/03-guides/02-archi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/manual/docs/03-guides/02-archi.md -------------------------------------------------------------------------------- /manual/docs/03-guides/03-jobs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/manual/docs/03-guides/03-jobs.md -------------------------------------------------------------------------------- /manual/docs/03-guides/11-integrations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/manual/docs/03-guides/11-integrations.md -------------------------------------------------------------------------------- /manual/docs/03-guides/12-apis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/manual/docs/03-guides/12-apis.md -------------------------------------------------------------------------------- /manual/docs/03-guides/13-deploy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/manual/docs/03-guides/13-deploy.md -------------------------------------------------------------------------------- /manual/docs/03-guides/16-dev.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/manual/docs/03-guides/16-dev.mdx -------------------------------------------------------------------------------- /manual/docs/03-guides/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/manual/docs/03-guides/index.mdx -------------------------------------------------------------------------------- /manual/docs/04-cli/index.mdx: -------------------------------------------------------------------------------- 1 | # CLI 2 | 3 | -------------------------------------------------------------------------------- /manual/docs/code/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/manual/docs/code/swagger.json -------------------------------------------------------------------------------- /manual/docs/content-pretty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/manual/docs/content-pretty.json -------------------------------------------------------------------------------- /manual/docs/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/manual/docs/content.json -------------------------------------------------------------------------------- /manual/docs/img/daikoku-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/manual/docs/img/daikoku-architecture.png -------------------------------------------------------------------------------- /manual/docs/img/home_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/manual/docs/img/home_page.png -------------------------------------------------------------------------------- /manual/docs/img/login_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/manual/docs/img/login_page.png -------------------------------------------------------------------------------- /manual/docs/img/main_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/manual/docs/img/main_page.png -------------------------------------------------------------------------------- /manual/docs/img/main_page_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/manual/docs/img/main_page_menu.png -------------------------------------------------------------------------------- /manual/docs/img/new_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/manual/docs/img/new_user.png -------------------------------------------------------------------------------- /manual/docs/img/small-daikoku-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/manual/docs/img/small-daikoku-logo.png -------------------------------------------------------------------------------- /manual/docs/img/tenants_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/manual/docs/img/tenants_list.png -------------------------------------------------------------------------------- /manual/docs/img/user_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/manual/docs/img/user_page.png -------------------------------------------------------------------------------- /manual/docusaurus.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/manual/docusaurus.config.js -------------------------------------------------------------------------------- /manual/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/manual/package-lock.json -------------------------------------------------------------------------------- /manual/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/manual/package.json -------------------------------------------------------------------------------- /manual/sidebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/manual/sidebars.js -------------------------------------------------------------------------------- /manual/src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/manual/src/css/custom.css -------------------------------------------------------------------------------- /manual/src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/manual/src/pages/index.js -------------------------------------------------------------------------------- /manual/src/pages/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/manual/src/pages/index.module.css -------------------------------------------------------------------------------- /manual/src/theme/SearchBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/manual/src/theme/SearchBar.js -------------------------------------------------------------------------------- /manual/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /manual/static/admin-api-openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/manual/static/admin-api-openapi.yaml -------------------------------------------------------------------------------- /manual/static/img/api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/manual/static/img/api.png -------------------------------------------------------------------------------- /manual/static/img/apis-styling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/manual/static/img/apis-styling.png -------------------------------------------------------------------------------- /manual/static/img/cli-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/manual/static/img/cli-architecture.png -------------------------------------------------------------------------------- /manual/static/img/daikoku-mini-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/manual/static/img/daikoku-mini-dark.svg -------------------------------------------------------------------------------- /manual/static/img/daikoku-mini.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/manual/static/img/daikoku-mini.svg -------------------------------------------------------------------------------- /manual/static/img/daikoku.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/manual/static/img/daikoku.png -------------------------------------------------------------------------------- /manual/static/img/developer-mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/manual/static/img/developer-mode.png -------------------------------------------------------------------------------- /manual/static/img/home-apis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/manual/static/img/home-apis.png -------------------------------------------------------------------------------- /manual/static/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/manual/static/img/logo.svg -------------------------------------------------------------------------------- /manual/static/img/welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/manual/static/img/welcome.png -------------------------------------------------------------------------------- /manual/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/manual/yarn.lock -------------------------------------------------------------------------------- /project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.9.8 2 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/readme.md -------------------------------------------------------------------------------- /resources/daikoku-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/resources/daikoku-logo.png -------------------------------------------------------------------------------- /resources/daikoku.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/resources/daikoku.svg -------------------------------------------------------------------------------- /scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/scripts/build.sh -------------------------------------------------------------------------------- /scripts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/scripts/package.json -------------------------------------------------------------------------------- /scripts/publish.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/scripts/publish.js -------------------------------------------------------------------------------- /scripts/version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/scripts/version.js -------------------------------------------------------------------------------- /scripts/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAIF/daikoku/HEAD/scripts/yarn.lock --------------------------------------------------------------------------------