From ca910cd4beb070e3f2637d3a7ab3da041139bd5b Mon Sep 17 00:00:00 2001 From: Gareth Coles Date: Mon, 12 Aug 2024 21:43:36 +0100 Subject: [PATCH] Relicence to the EUPL v1.2! Discussion: https://github.com/orgs/Kord-Extensions/discussions/3 --- LICENSE | 608 ++++++++---------- .../annotations/ConverterProcessorProvider.kt | 8 +- .../dev/kordex/core/annotations/_Utils.kt | 8 +- .../converters/ConverterAnnotationArgs.kt | 8 +- .../converters/ConverterFunctionBuilder.kt | 8 +- .../converters/ConverterProcessor.kt | 8 +- .../core/annotations/converters/Functions.kt | 8 +- .../builders/ConverterBuilderClassBuilder.kt | 8 +- .../ConverterBuilderFunctionBuilder.kt | 8 +- .../core/annotations/converters/Converter.kt | 8 +- .../annotations/converters/ConverterType.kt | 8 +- .../core/annotations/tooling/Translatable.kt | 8 +- .../annotations/tooling/TranslatableType.kt | 8 +- codeformat/HEADER | 8 +- .../main/kotlin/dev/kordex/core/Exceptions.kt | 8 +- .../kotlin/dev/kordex/core/ExtensibleBot.kt | 8 +- .../main/kotlin/dev/kordex/core/_Constants.kt | 8 +- .../kotlin/dev/kordex/core/_Properties.kt | 8 +- .../core/annotations/AlwaysPublicResponse.kt | 8 +- .../kordex/core/annotations/BotBuilderDSL.kt | 8 +- .../dev/kordex/core/annotations/DoNotChain.kt | 8 +- .../kordex/core/annotations/ExtensionDSL.kt | 8 +- .../kordex/core/annotations/InternalAPI.kt | 8 +- .../UnexpectedFunctionBehaviour.kt | 8 +- .../core/builders/ExtensibleBotBuilder.kt | 8 +- .../dev/kordex/core/checks/ChannelChecks.kt | 8 +- .../kordex/core/checks/ChannelTypeChecks.kt | 8 +- .../dev/kordex/core/checks/GuildChecks.kt | 8 +- .../dev/kordex/core/checks/MemberChecks.kt | 8 +- .../dev/kordex/core/checks/MiscChecks.kt | 8 +- .../dev/kordex/core/checks/NSFWChecks.kt | 8 +- .../dev/kordex/core/checks/RoleChecks.kt | 8 +- .../kordex/core/checks/TopChannelChecks.kt | 8 +- .../kotlin/dev/kordex/core/checks/_Events.kt | 8 +- .../kotlin/dev/kordex/core/checks/_Logging.kt | 8 +- .../kotlin/dev/kordex/core/checks/_Utils.kt | 8 +- .../kordex/core/checks/types/CheckContext.kt | 8 +- .../checks/types/CheckContextWithCache.kt | 8 +- .../dev/kordex/core/checks/types/_Types.kt | 8 +- .../dev/kordex/core/commands/Argument.kt | 8 +- .../dev/kordex/core/commands/Arguments.kt | 8 +- .../dev/kordex/core/commands/Command.kt | 8 +- .../kordex/core/commands/CommandContext.kt | 8 +- .../application/ApplicationCommand.kt | 8 +- .../application/ApplicationCommandContext.kt | 8 +- .../application/ApplicationCommandRegistry.kt | 8 +- .../DefaultApplicationCommandRegistry.kt | 8 +- .../DummyAutocompleteCommandContext.kt | 8 +- .../StorageAwareApplicationCommandRegistry.kt | 8 +- .../message/EphemeralMessageCommand.kt | 8 +- .../message/EphemeralMessageCommandContext.kt | 8 +- .../application/message/MessageCommand.kt | 8 +- .../message/MessageCommandContext.kt | 8 +- .../message/PublicMessageCommand.kt | 8 +- .../message/PublicMessageCommandContext.kt | 8 +- .../slash/EphemeralSlashCommand.kt | 8 +- .../slash/EphemeralSlashCommandContext.kt | 8 +- .../application/slash/PublicSlashCommand.kt | 8 +- .../slash/PublicSlashCommandContext.kt | 8 +- .../application/slash/SlashCommand.kt | 8 +- .../application/slash/SlashCommandContext.kt | 8 +- .../application/slash/SlashCommandParser.kt | 8 +- .../commands/application/slash/SlashGroup.kt | 8 +- .../commands/application/slash/_Functions.kt | 8 +- .../slash/converters/ChoiceConverter.kt | 8 +- .../slash/converters/ChoiceEnum.kt | 8 +- .../converters/impl/EnumChoiceConverter.kt | 8 +- .../converters/impl/NumberChoiceConverter.kt | 8 +- .../converters/impl/StringChoiceConverter.kt | 8 +- .../application/user/EphemeralUserCommand.kt | 8 +- .../user/EphemeralUserCommandContext.kt | 8 +- .../application/user/PublicUserCommand.kt | 8 +- .../user/PublicUserCommandContext.kt | 8 +- .../commands/application/user/UserCommand.kt | 8 +- .../application/user/UserCommandContext.kt | 8 +- .../kordex/core/commands/chat/ChatCommand.kt | 8 +- .../core/commands/chat/ChatCommandContext.kt | 8 +- .../core/commands/chat/ChatCommandParser.kt | 8 +- .../core/commands/chat/ChatCommandRegistry.kt | 8 +- .../core/commands/chat/ChatGroupCommand.kt | 8 +- .../core/commands/chat/ChatSubCommand.kt | 8 +- .../core/commands/converters/Annotations.kt | 8 +- .../converters/CoalescingConverter.kt | 8 +- .../CoalescingToDefaultingConverter.kt | 8 +- .../CoalescingToOptionalConverter.kt | 8 +- .../core/commands/converters/Converter.kt | 8 +- .../DefaultingCoalescingConverter.kt | 8 +- .../converters/DefaultingConverter.kt | 8 +- .../core/commands/converters/ListConverter.kt | 8 +- .../converters/OptionalCoalescingConverter.kt | 8 +- .../commands/converters/OptionalConverter.kt | 8 +- .../commands/converters/SingleConverter.kt | 8 +- .../converters/SingleToDefaultingConverter.kt | 8 +- .../converters/SingleToListConverter.kt | 8 +- .../converters/SingleToOptionalConverter.kt | 8 +- .../converters/SlashCommandConverter.kt | 8 +- .../kordex/core/commands/converters/_Types.kt | 8 +- .../builders/ChoiceConverterBuilder.kt | 8 +- .../builders/CoalescingConverterBuilder.kt | 8 +- .../converters/builders/ConverterBuilder.kt | 8 +- .../DefaultingCoalescingConverterBuilder.kt | 8 +- .../builders/DefaultingConverterBuilder.kt | 8 +- .../builders/ListConverterBuilder.kt | 8 +- .../OptionalCoalescingConverterBuilder.kt | 8 +- .../builders/OptionalConverterBuilder.kt | 8 +- .../converters/builders/ValidationContext.kt | 8 +- .../converters/impl/AttachmentConverter.kt | 8 +- .../converters/impl/BooleanConverter.kt | 8 +- .../converters/impl/ChannelConverter.kt | 8 +- .../converters/impl/ColorConverter.kt | 8 +- .../converters/impl/DecimalConverter.kt | 8 +- .../impl/DurationCoalescingConverter.kt | 8 +- .../converters/impl/DurationConverter.kt | 8 +- .../converters/impl/EmailConverter.kt | 8 +- .../converters/impl/EmojiConverter.kt | 8 +- .../commands/converters/impl/EnumConverter.kt | 8 +- .../converters/impl/GuildConverter.kt | 8 +- .../commands/converters/impl/IntConverter.kt | 8 +- .../commands/converters/impl/LongConverter.kt | 8 +- .../converters/impl/MemberConverter.kt | 8 +- .../converters/impl/MessageConverter.kt | 8 +- .../impl/RegexCoalescingConverter.kt | 8 +- .../converters/impl/RegexConverter.kt | 8 +- .../commands/converters/impl/RoleConverter.kt | 8 +- .../converters/impl/SnowflakeConverter.kt | 8 +- .../impl/StringCoalescingConverter.kt | 8 +- .../converters/impl/StringConverter.kt | 8 +- .../impl/SupportedLocaleConverter.kt | 8 +- .../commands/converters/impl/TagConverter.kt | 8 +- .../converters/impl/TimestampConverter.kt | 8 +- .../commands/converters/impl/UserConverter.kt | 8 +- .../core/commands/events/ChatCommandEvents.kt | 8 +- .../core/commands/events/CommandEvents.kt | 8 +- .../commands/events/MessageCommandEvents.kt | 8 +- .../commands/events/SlashCommandEvents.kt | 8 +- .../core/commands/events/UserCommandEvents.kt | 8 +- .../dev/kordex/core/components/Component.kt | 8 +- .../core/components/ComponentContainer.kt | 8 +- .../core/components/ComponentContext.kt | 8 +- .../core/components/ComponentRegistry.kt | 8 +- .../core/components/ComponentWithAction.kt | 8 +- .../kordex/core/components/ComponentWithID.kt | 8 +- .../dev/kordex/core/components/_Functions.kt | 8 +- .../buttons/DisabledInteractionButton.kt | 8 +- .../buttons/EphemeralInteractionButton.kt | 8 +- .../EphemeralInteractionButtonContext.kt | 8 +- .../components/buttons/InteractionButton.kt | 8 +- .../buttons/InteractionButtonContext.kt | 8 +- .../buttons/InteractionButtonWithAction.kt | 8 +- .../buttons/InteractionButtonWithID.kt | 8 +- .../buttons/LinkInteractionButton.kt | 8 +- .../buttons/PublicInteractionButton.kt | 8 +- .../buttons/PublicInteractionButtonContext.kt | 8 +- .../dev/kordex/core/components/forms/Form.kt | 8 +- .../kordex/core/components/forms/ModalForm.kt | 8 +- .../dev/kordex/core/components/forms/_Grid.kt | 8 +- .../forms/widgets/LineTextWidget.kt | 8 +- .../forms/widgets/ParagraphTextWidget.kt | 8 +- .../forms/widgets/TextInputWidget.kt | 8 +- .../core/components/forms/widgets/Widget.kt | 8 +- .../components/menus/EphemeralSelectMenu.kt | 8 +- .../core/components/menus/PublicSelectMenu.kt | 8 +- .../core/components/menus/SelectMenu.kt | 8 +- .../components/menus/SelectMenuContext.kt | 8 +- .../components/menus/_ResponseBuilders.kt | 8 +- .../menus/channel/ChannelSelectMenu.kt | 8 +- .../menus/channel/ChannelSelectMenuContext.kt | 8 +- .../channel/EphemeralChannelSelectMenu.kt | 8 +- .../EphemeralChannelSelectMenuContext.kt | 8 +- .../menus/channel/PublicChannelSelectMenu.kt | 8 +- .../channel/PublicChannelSelectMenuContext.kt | 8 +- .../EphemeralMentionableSelectMenu.kt | 8 +- .../EphemeralMentionableSelectMenuContext.kt | 8 +- .../mentionable/MentionableSelectMenu.kt | 8 +- .../MentionableSelectMenuContext.kt | 8 +- .../PublicMentionableSelectMenu.kt | 8 +- .../PublicMentionableSelectMenuContext.kt | 8 +- .../menus/mentionable/_DummyContexts.kt | 8 +- .../menus/role/EphemeralRoleSelectMenu.kt | 8 +- .../role/EphemeralRoleSelectMenuContext.kt | 8 +- .../menus/role/PublicRoleSelectMenu.kt | 8 +- .../menus/role/PublicRoleSelectMenuContext.kt | 8 +- .../components/menus/role/RoleSelectMenu.kt | 8 +- .../menus/role/RoleSelectMenuContext.kt | 8 +- .../menus/string/EphemeralStringSelectMenu.kt | 8 +- .../EphemeralStringSelectMenuContext.kt | 8 +- .../menus/string/PublicStringSelectMenu.kt | 8 +- .../string/PublicStringSelectMenuContext.kt | 8 +- .../menus/string/StringSelectMenu.kt | 8 +- .../menus/string/StringSelectMenuContext.kt | 8 +- .../menus/user/EphemeralUserSelectMenu.kt | 8 +- .../user/EphemeralUserSelectMenuContext.kt | 8 +- .../menus/user/PublicUserSelectMenu.kt | 8 +- .../menus/user/PublicUserSelectMenuContext.kt | 8 +- .../components/menus/user/UserSelectMenu.kt | 8 +- .../menus/user/UserSelectMenuContext.kt | 8 +- .../core/components/types/HasPartialEmoji.kt | 8 +- .../core/datacollection/DataAPIClient.kt | 8 +- .../core/datacollection/DataCollector.kt | 8 +- .../dev/kordex/core/events/EventContext.kt | 8 +- .../dev/kordex/core/events/EventHandler.kt | 8 +- .../kordex/core/events/ExtensionStateEvent.kt | 8 +- .../dev/kordex/core/events/KordExEvent.kt | 8 +- .../events/ModalInteractionCompleteEvent.kt | 8 +- .../extra/GuildJoinRequestDeleteEvent.kt | 8 +- .../extra/GuildJoinRequestUpdateEvent.kt | 8 +- .../events/extra/models/ApplicationStatus.kt | 8 +- .../events/extra/models/GuildJoinRequest.kt | 8 +- .../extra/models/GuildJoinRequestDelete.kt | 8 +- .../extra/models/GuildJoinRequestResponse.kt | 8 +- .../extra/models/GuildJoinRequestUpdate.kt | 8 +- .../extra/models/GuildJoinRequestUser.kt | 8 +- .../core/events/interfaces/ChannelEvent.kt | 8 +- .../core/events/interfaces/GuildEvent.kt | 8 +- .../core/events/interfaces/MemberEvent.kt | 8 +- .../core/events/interfaces/MessageEvent.kt | 8 +- .../core/events/interfaces/RoleEvent.kt | 8 +- .../core/events/interfaces/UserEvent.kt | 8 +- .../dev/kordex/core/extensions/Extension.kt | 8 +- .../kordex/core/extensions/ExtensionState.kt | 8 +- .../dev/kordex/core/extensions/_Commands.kt | 8 +- .../dev/kordex/core/extensions/_Events.kt | 8 +- .../core/extensions/base/HelpProvider.kt | 8 +- .../core/extensions/impl/AboutExtension.kt | 8 +- .../core/extensions/impl/HelpExtension.kt | 8 +- .../core/extensions/impl/SentryExtension.kt | 8 +- .../core/i18n/ResourceBundleTranslations.kt | 8 +- .../dev/kordex/core/i18n/SupportedLocales.kt | 8 +- .../kordex/core/i18n/TranslationsProvider.kt | 8 +- .../kotlin/dev/kordex/core/i18n/_Constants.kt | 8 +- .../dev/kordex/core/koin/KordExContext.kt | 8 +- .../kordex/core/koin/KordExKoinComponent.kt | 8 +- .../core/pagination/BaseButtonPaginator.kt | 8 +- .../kordex/core/pagination/BasePaginator.kt | 8 +- .../pagination/EphemeralResponsePaginator.kt | 8 +- .../core/pagination/MessageButtonPaginator.kt | 8 +- .../pagination/PublicFollowUpPaginator.kt | 8 +- .../pagination/PublicResponsePaginator.kt | 8 +- .../dev/kordex/core/pagination/_Functions.kt | 8 +- .../builders/PageTransitionCallback.kt | 8 +- .../pagination/builders/PaginatorBuilder.kt | 8 +- .../dev/kordex/core/pagination/pages/Page.kt | 8 +- .../dev/kordex/core/pagination/pages/Pages.kt | 8 +- .../dev/kordex/core/parsers/BooleanParser.kt | 8 +- .../dev/kordex/core/parsers/ColorParser.kt | 8 +- .../dev/kordex/core/parsers/DurationParser.kt | 8 +- .../dev/kordex/core/parsers/Exceptions.kt | 8 +- .../kordex/core/parsers/caches/ColorCache.kt | 8 +- .../core/parsers/caches/TimeUnitCache.kt | 8 +- .../dev/kordex/core/plugins/KordExPlugin.kt | 8 +- .../dev/kordex/core/plugins/PluginManager.kt | 8 +- .../kotlin/dev/kordex/core/plugins/_Types.kt | 8 +- ...uctingApplicationCommandRegistryStorage.kt | 8 +- .../registry/DefaultLocalRegistryStorage.kt | 8 +- .../kordex/core/registry/RegistryStorage.kt | 8 +- .../dev/kordex/core/sentry/BreadcrumbType.kt | 8 +- .../dev/kordex/core/sentry/SentryAdapter.kt | 8 +- .../dev/kordex/core/sentry/SentryContext.kt | 8 +- .../kordex/core/sentry/SentryIdConverter.kt | 8 +- .../kotlin/dev/kordex/core/sentry/_Utils.kt | 8 +- .../captures/SentryBreadcrumbCapture.kt | 8 +- .../core/sentry/captures/SentryCapture.kt | 8 +- .../sentry/captures/SentryExceptionCapture.kt | 8 +- .../sentry/captures/SentryScopeCapture.kt | 8 +- .../kotlin/dev/kordex/core/storage/Data.kt | 8 +- .../dev/kordex/core/storage/DataAdapter.kt | 8 +- .../dev/kordex/core/storage/StorageType.kt | 8 +- .../core/storage/StorageTypeSerializer.kt | 8 +- .../dev/kordex/core/storage/StorageUnit.kt | 8 +- .../kotlin/dev/kordex/core/storage/_Utils.kt | 8 +- .../core/storage/toml/TomlDataAdapter.kt | 8 +- .../dev/kordex/core/time/TimestampType.kt | 8 +- .../main/kotlin/dev/kordex/core/time/Utils.kt | 8 +- .../core/types/EphemeralInteractionContext.kt | 8 +- .../dev/kordex/core/types/FailureReason.kt | 8 +- .../kordex/core/types/InteractionContext.kt | 8 +- .../kotlin/dev/kordex/core/types/Lockable.kt | 8 +- .../core/types/PublicInteractionContext.kt | 8 +- .../kordex/core/types/TranslatableContext.kt | 8 +- .../kotlin/dev/kordex/core/utils/Mentions.kt | 8 +- .../dev/kordex/core/utils/_Attachments.kt | 8 +- .../kotlin/dev/kordex/core/utils/_Channel.kt | 8 +- .../dev/kordex/core/utils/_ChannelType.kt | 8 +- .../dev/kordex/core/utils/_Components.kt | 8 +- .../dev/kordex/core/utils/_Durations.kt | 8 +- .../dev/kordex/core/utils/_Environment.kt | 8 +- .../kotlin/dev/kordex/core/utils/_Guilds.kt | 8 +- .../kotlin/dev/kordex/core/utils/_Intents.kt | 8 +- .../dev/kordex/core/utils/_Interactions.kt | 8 +- .../kotlin/dev/kordex/core/utils/_Koin.kt | 8 +- .../kotlin/dev/kordex/core/utils/_Kord.kt | 8 +- .../kotlin/dev/kordex/core/utils/_Lists.kt | 8 +- .../kotlin/dev/kordex/core/utils/_Maps.kt | 8 +- .../kotlin/dev/kordex/core/utils/_Member.kt | 8 +- .../kotlin/dev/kordex/core/utils/_Message.kt | 8 +- .../kotlin/dev/kordex/core/utils/_Misc.kt | 8 +- .../dev/kordex/core/utils/_NsfwLevels.kt | 8 +- .../dev/kordex/core/utils/_Permissions.kt | 8 +- .../kotlin/dev/kordex/core/utils/_Reaction.kt | 8 +- .../dev/kordex/core/utils/_RestRequest.kt | 8 +- .../kotlin/dev/kordex/core/utils/_Role.kt | 8 +- .../kotlin/dev/kordex/core/utils/_String.kt | 8 +- .../dev/kordex/core/utils/_Translation.kt | 8 +- .../kotlin/dev/kordex/core/utils/_Users.kt | 8 +- .../utils/collections/FixedLengthQueue.kt | 8 +- .../serializers/FixedLengthQueueSerializer.kt | 8 +- .../dev/kordex/core/utils/deltas/ChangeSet.kt | 8 +- .../kordex/core/utils/deltas/MemberDelta.kt | 8 +- .../kordex/core/utils/deltas/MessageDelta.kt | 8 +- .../dev/kordex/core/utils/deltas/RoleDelta.kt | 8 +- .../dev/kordex/core/utils/deltas/UserDelta.kt | 8 +- .../kordex/core/utils/scheduling/Scheduler.kt | 8 +- .../dev/kordex/core/utils/scheduling/Task.kt | 8 +- .../dev/kordex/test/core/KoinExtension.kt | 8 +- .../test/core/impl/TimestampConverterTest.kt | 8 +- .../kordex/test/core/test/SchedulerTest.kt | 8 +- .../dev/kordex/test/core/utils/MapTest.kt | 8 +- .../dev/kordex/test/core/utils/StringTest.kt | 8 +- .../kordex/modules/data/mongodb/Constants.kt | 8 +- .../kordex/modules/data/mongodb/Functions.kt | 8 +- .../data/mongodb/MongoDBDataAdapter.kt | 8 +- .../kordex/modules/data/mongodb/Registry.kt | 8 +- .../modules/data/mongodb/db/AdaptedData.kt | 8 +- .../modules/data/mongodb/db/Database.kt | 8 +- .../kordex/modules/data/mongodb/db/Entity.kt | 8 +- .../modules/data/mongodb/db/Metadata.kt | 8 +- .../modules/data/mongodb/db/Migrations.kt | 8 +- .../modules/dev/java/time/ChronoContainer.kt | 8 +- .../java/time/ChronoContainerSerializer.kt | 8 +- .../time/J8DurationCoalescingConverter.kt | 8 +- .../dev/java/time/J8DurationConverter.kt | 8 +- .../modules/dev/java/time/J8DurationParser.kt | 8 +- .../modules/dev/java/time/J8TimeUnitCache.kt | 8 +- .../dev/kordex/modules/dev/java/time/Utils.kt | 8 +- .../kordex/test/modules/dev/java/time/Bot.kt | 8 +- .../modules/dev/java/time/TestExtension.kt | 8 +- .../time4j/T4JDurationCoalescingConverter.kt | 8 +- .../dev/time4j/T4JDurationConverter.kt | 8 +- .../modules/dev/time4j/T4JDurationParser.kt | 8 +- .../modules/dev/time4j/T4JTimeUnitCache.kt | 8 +- .../dev/kordex/modules/dev/time4j/Utils.kt | 8 +- .../dev/kordex/test/modules/dev/time4j/Bot.kt | 8 +- .../test/modules/dev/time4j/TestExtension.kt | 8 +- .../dev/unsafe/annotations/UnsafeAPI.kt | 8 +- .../UnsafeCommandInteractionContext.kt | 8 +- .../modules/dev/unsafe/commands/_Events.kt | 8 +- .../message/InitialMessageCommandResponse.kt | 8 +- .../commands/message/UnsafeMessageCommand.kt | 8 +- .../slash/InitialSlashCommandResponse.kt | 8 +- .../commands/slash/UnsafeSlashCommand.kt | 8 +- .../user/InitialUserCommandResponse.kt | 8 +- .../unsafe/commands/user/UnsafeUserCommand.kt | 8 +- .../UnsafeComponentInteractionContext.kt | 8 +- .../InitialInteractionButtonResponse.kt | 8 +- .../buttons/UnsafeButtonInteractionContext.kt | 8 +- .../buttons/UnsafeInteractionButton.kt | 8 +- .../forms/InitialUnsafeModalResponse.kt | 8 +- .../components/forms/UnsafeModalForm.kt | 8 +- .../dev/unsafe/components/forms/_Responses.kt | 8 +- .../InitialInteractionSelectMenuResponse.kt | 8 +- .../components/menus/UnsafeSelectMenu.kt | 8 +- .../UnsafeSelectMenuInteractionContext.kt | 8 +- .../menus/channel/UnsafeChannelSelectMenu.kt | 8 +- .../channel/UnsafeChannelSelectMenuContext.kt | 8 +- .../UnsafeMentionableSelectMenu.kt | 8 +- .../UnsafeMentionableSelectMenuContext.kt | 8 +- .../menus/role/UnsafeRoleSelectMenu.kt | 8 +- .../menus/role/UnsafeRoleSelectMenuContext.kt | 8 +- .../menus/string/UnsafeStringSelectMenu.kt | 8 +- .../string/UnsafeStringSelectMenuContext.kt | 8 +- .../menus/user/UnsafeUserSelectMenu.kt | 8 +- .../menus/user/UnsafeUserSelectMenuContext.kt | 8 +- .../UnsafeCommandMessageCommandContext.kt | 8 +- .../UnsafeCommandSlashCommandContext.kt | 8 +- .../UnsafeCommandUserCommandContext.kt | 8 +- .../UnsafeInteractionComponentContext.kt | 8 +- .../dev/unsafe/converters/UnionConverter.kt | 8 +- .../dev/unsafe/extensions/_Commands.kt | 8 +- .../dev/unsafe/extensions/_Components.kt | 8 +- .../dev/unsafe/extensions/_SlashCommands.kt | 8 +- .../unsafe/types/UnsafeInteractionContext.kt | 8 +- .../modules/func/phishing/DetectionAction.kt | 8 +- .../modules/func/phishing/DomainChange.kt | 8 +- .../func/phishing/ExtPhishingBuilder.kt | 8 +- .../kordex/modules/func/phishing/Functions.kt | 8 +- .../modules/func/phishing/PhishingApi.kt | 8 +- .../func/phishing/PhishingExtension.kt | 8 +- .../func/phishing/PhishingWebsocketWrapper.kt | 8 +- .../kordex/modules/func/tags/TagsExtension.kt | 8 +- .../dev/kordex/modules/func/tags/_Types.kt | 8 +- .../dev/kordex/modules/func/tags/_Utils.kt | 8 +- .../func/tags/config/SimpleTagsConfig.kt | 8 +- .../modules/func/tags/config/TagsConfig.kt | 8 +- .../modules/func/tags/data/MemoryTagsData.kt | 8 +- .../dev/kordex/modules/func/tags/data/Tag.kt | 8 +- .../kordex/modules/func/tags/data/TagsData.kt | 8 +- .../modules/func/welcome/WelcomeChannel.kt | 8 +- .../modules/func/welcome/WelcomeExtension.kt | 8 +- .../dev/kordex/modules/func/welcome/_Utils.kt | 8 +- .../modules/func/welcome/blocks/Block.kt | 8 +- .../func/welcome/blocks/ComplianceBlock.kt | 8 +- .../modules/func/welcome/blocks/EmbedBlock.kt | 8 +- .../func/welcome/blocks/InteractionBlock.kt | 8 +- .../modules/func/welcome/blocks/LinksBlock.kt | 8 +- .../func/welcome/blocks/MessageCopyBlock.kt | 8 +- .../modules/func/welcome/blocks/RolesBlock.kt | 8 +- .../modules/func/welcome/blocks/RulesBlock.kt | 8 +- .../modules/func/welcome/blocks/TextBlock.kt | 8 +- .../func/welcome/blocks/ThreadListBlock.kt | 8 +- .../config/SimpleWelcomeChannelConfig.kt | 8 +- .../welcome/config/WelcomeChannelConfig.kt | 8 +- .../welcome/data/MemoryWelcomeChannelData.kt | 8 +- .../func/welcome/data/WelcomeChannelData.kt | 8 +- .../func/welcome/enums/ThreadListType.kt | 8 +- .../kordex/modules/pluralkit/PKExtension.kt | 8 +- .../dev/kordex/modules/pluralkit/_Utils.kt | 8 +- .../kordex/modules/pluralkit/api/PKMember.kt | 8 +- .../modules/pluralkit/api/PKMemberPrivacy.kt | 8 +- .../kordex/modules/pluralkit/api/PKMessage.kt | 8 +- .../modules/pluralkit/api/PKProxyTag.kt | 8 +- .../kordex/modules/pluralkit/api/PKSystem.kt | 8 +- .../modules/pluralkit/api/PKSystemPrivacy.kt | 8 +- .../kordex/modules/pluralkit/api/PluralKit.kt | 8 +- .../pluralkit/config/PKConfigBuilder.kt | 8 +- .../pluralkit/events/PKMessageCreateEvent.kt | 8 +- .../pluralkit/events/PKMessageDeleteEvent.kt | 8 +- .../pluralkit/events/PKMessageUpdateEvent.kt | 8 +- .../pluralkit/storage/PKGuildConfig.kt | 8 +- .../modules/pluralkit/utils/LRUHashMap.kt | 8 +- .../modules/web/core/backend/WebExtension.kt | 8 +- .../modules/web/core/backend/WebRegistries.kt | 8 +- .../backend/config/ForwardedHeaderMode.kt | 8 +- .../backend/config/ForwardedHeaderStrategy.kt | 8 +- .../core/backend/config/WebServerConfig.kt | 8 +- .../web/core/backend/errors/WebError.kt | 8 +- .../web/core/backend/errors/_HttpErrors.kt | 8 +- .../modules/web/core/backend/errors/_Utils.kt | 8 +- .../backend/events/WebServerStartEvent.kt | 8 +- .../core/backend/events/WebServerStopEvent.kt | 8 +- .../modules/web/core/backend/pages/Block.kt | 8 +- .../modules/web/core/backend/pages/Page.kt | 8 +- .../backend/pages/blocks/labels/TextLabel.kt | 8 +- .../backend/pages/blocks/labels/ValueLabel.kt | 8 +- .../pages/navigation/ExtensionNavigation.kt | 8 +- .../pages/navigation/NavigationItem.kt | 8 +- .../pages/navigation/NavigationRegistry.kt | 8 +- .../modules/web/core/backend/routes/Route.kt | 8 +- .../web/core/backend/routes/RouteRegistry.kt | 8 +- .../modules/web/core/backend/routes/Verb.kt | 8 +- .../core/backend/routes/utils/_Permissions.kt | 8 +- .../web/core/backend/server/WebServer.kt | 8 +- .../modules/web/core/backend/server/_Auth.kt | 8 +- .../modules/web/core/backend/server/_CORS.kt | 8 +- .../backend/server/_ContentNegotiation.kt | 8 +- .../core/backend/server/_ForwardedHeaders.kt | 8 +- .../web/core/backend/server/_Routing.kt | 8 +- .../web/core/backend/server/_StatusPages.kt | 8 +- .../web/core/backend/server/_WebSockets.kt | 8 +- .../web/core/backend/server/routes/_Api.kt | 8 +- .../core/backend/server/routes/api/_Info.kt | 8 +- .../web/core/backend/types/Identifier.kt | 8 +- .../backend/types/IdentifierSerializer.kt | 8 +- .../web/core/backend/utils/_Builder.kt | 8 +- .../web/core/backend/utils/_Extension.kt | 8 +- .../web/core/backend/values/TimedContainer.kt | 8 +- .../web/core/backend/values/ValueInterval.kt | 8 +- .../serializers/SimpleValueSerializer.kt | 8 +- .../serializers/TimedContainerSerializer.kt | 8 +- .../serializers/TrackedValueSerializer.kt | 8 +- .../core/backend/values/types/SimpleValue.kt | 8 +- .../core/backend/values/types/TrackedValue.kt | 8 +- .../web/core/backend/values/types/Value.kt | 8 +- .../web/core/backend/websockets/Websocket.kt | 8 +- .../backend/websockets/WebsocketBuilder.kt | 8 +- .../backend/websockets/WebsocketRegistry.kt | 8 +- .../web/web-core/web-frontend/public/vite.svg | 8 +- modules/web/web-core/web-frontend/src/App.vue | 8 +- .../web-frontend/src/assets/index.css | 8 +- .../web-core/web-frontend/src/assets/vue.svg | 8 +- .../src/components/custom/PageContainer.vue | 8 +- .../src/components/ui/accordion/Accordion.vue | 8 +- .../ui/accordion/AccordionContent.vue | 8 +- .../components/ui/accordion/AccordionItem.vue | 8 +- .../ui/accordion/AccordionTrigger.vue | 8 +- .../src/components/ui/accordion/index.ts | 8 +- .../src/components/ui/alert/Alert.vue | 8 +- .../components/ui/alert/AlertDescription.vue | 8 +- .../src/components/ui/alert/AlertTitle.vue | 8 +- .../src/components/ui/alert/index.ts | 8 +- .../src/components/ui/auto-form/AutoForm.vue | 8 +- .../components/ui/auto-form/AutoFormField.vue | 8 +- .../ui/auto-form/AutoFormFieldArray.vue | 8 +- .../ui/auto-form/AutoFormFieldBoolean.vue | 8 +- .../ui/auto-form/AutoFormFieldDate.vue | 8 +- .../ui/auto-form/AutoFormFieldEnum.vue | 8 +- .../ui/auto-form/AutoFormFieldFile.vue | 8 +- .../ui/auto-form/AutoFormFieldInput.vue | 8 +- .../ui/auto-form/AutoFormFieldNumber.vue | 8 +- .../ui/auto-form/AutoFormFieldObject.vue | 8 +- .../components/ui/auto-form/AutoFormLabel.vue | 8 +- .../src/components/ui/auto-form/constant.ts | 8 +- .../components/ui/auto-form/dependencies.ts | 8 +- .../src/components/ui/auto-form/index.ts | 8 +- .../src/components/ui/auto-form/interface.ts | 8 +- .../src/components/ui/auto-form/utils.ts | 8 +- .../src/components/ui/avatar/Avatar.vue | 8 +- .../components/ui/avatar/AvatarFallback.vue | 8 +- .../src/components/ui/avatar/AvatarImage.vue | 8 +- .../src/components/ui/avatar/index.ts | 8 +- .../src/components/ui/badge/Badge.vue | 8 +- .../src/components/ui/badge/index.ts | 8 +- .../components/ui/breadcrumb/Breadcrumb.vue | 8 +- .../ui/breadcrumb/BreadcrumbEllipsis.vue | 8 +- .../ui/breadcrumb/BreadcrumbItem.vue | 8 +- .../ui/breadcrumb/BreadcrumbLink.vue | 8 +- .../ui/breadcrumb/BreadcrumbList.vue | 8 +- .../ui/breadcrumb/BreadcrumbPage.vue | 8 +- .../ui/breadcrumb/BreadcrumbSeparator.vue | 8 +- .../src/components/ui/breadcrumb/index.ts | 8 +- .../src/components/ui/button/Button.vue | 8 +- .../src/components/ui/button/index.ts | 8 +- .../src/components/ui/calendar/Calendar.vue | 8 +- .../components/ui/calendar/CalendarCell.vue | 8 +- .../ui/calendar/CalendarCellTrigger.vue | 8 +- .../components/ui/calendar/CalendarGrid.vue | 8 +- .../ui/calendar/CalendarGridBody.vue | 8 +- .../ui/calendar/CalendarGridHead.vue | 8 +- .../ui/calendar/CalendarGridRow.vue | 8 +- .../ui/calendar/CalendarHeadCell.vue | 8 +- .../components/ui/calendar/CalendarHeader.vue | 8 +- .../ui/calendar/CalendarHeading.vue | 8 +- .../ui/calendar/CalendarNextButton.vue | 8 +- .../ui/calendar/CalendarPrevButton.vue | 8 +- .../src/components/ui/calendar/index.ts | 8 +- .../src/components/ui/card/Card.vue | 8 +- .../src/components/ui/card/CardContent.vue | 8 +- .../components/ui/card/CardDescription.vue | 8 +- .../src/components/ui/card/CardFooter.vue | 8 +- .../src/components/ui/card/CardHeader.vue | 8 +- .../src/components/ui/card/CardTitle.vue | 8 +- .../src/components/ui/card/index.ts | 8 +- .../src/components/ui/carousel/Carousel.vue | 8 +- .../ui/carousel/CarouselContent.vue | 8 +- .../components/ui/carousel/CarouselItem.vue | 8 +- .../components/ui/carousel/CarouselNext.vue | 8 +- .../ui/carousel/CarouselPrevious.vue | 8 +- .../src/components/ui/carousel/index.ts | 8 +- .../src/components/ui/carousel/interface.ts | 8 +- .../src/components/ui/carousel/useCarousel.ts | 8 +- .../components/ui/chart-area/AreaChart.vue | 8 +- .../src/components/ui/chart-area/index.ts | 8 +- .../src/components/ui/chart-bar/BarChart.vue | 8 +- .../src/components/ui/chart-bar/index.ts | 8 +- .../components/ui/chart-donut/DonutChart.vue | 8 +- .../src/components/ui/chart-donut/index.ts | 8 +- .../components/ui/chart-line/LineChart.vue | 8 +- .../src/components/ui/chart-line/index.ts | 8 +- .../components/ui/chart/ChartCrosshair.vue | 8 +- .../src/components/ui/chart/ChartLegend.vue | 8 +- .../ui/chart/ChartSingleTooltip.vue | 8 +- .../src/components/ui/chart/ChartTooltip.vue | 8 +- .../src/components/ui/chart/index.ts | 8 +- .../src/components/ui/chart/interface.ts | 8 +- .../src/components/ui/checkbox/Checkbox.vue | 8 +- .../src/components/ui/checkbox/index.ts | 8 +- .../components/ui/collapsible/Collapsible.vue | 8 +- .../ui/collapsible/CollapsibleContent.vue | 8 +- .../ui/collapsible/CollapsibleTrigger.vue | 8 +- .../src/components/ui/collapsible/index.ts | 8 +- .../src/components/ui/command/Command.vue | 8 +- .../components/ui/command/CommandDialog.vue | 8 +- .../components/ui/command/CommandEmpty.vue | 8 +- .../components/ui/command/CommandGroup.vue | 8 +- .../components/ui/command/CommandInput.vue | 8 +- .../src/components/ui/command/CommandItem.vue | 8 +- .../src/components/ui/command/CommandList.vue | 8 +- .../ui/command/CommandSeparator.vue | 8 +- .../components/ui/command/CommandShortcut.vue | 8 +- .../src/components/ui/command/index.ts | 8 +- .../ui/context-menu/ContextMenu.vue | 8 +- .../context-menu/ContextMenuCheckboxItem.vue | 8 +- .../ui/context-menu/ContextMenuContent.vue | 8 +- .../ui/context-menu/ContextMenuGroup.vue | 8 +- .../ui/context-menu/ContextMenuItem.vue | 8 +- .../ui/context-menu/ContextMenuLabel.vue | 8 +- .../ui/context-menu/ContextMenuPortal.vue | 8 +- .../ui/context-menu/ContextMenuRadioGroup.vue | 8 +- .../ui/context-menu/ContextMenuRadioItem.vue | 8 +- .../ui/context-menu/ContextMenuSeparator.vue | 8 +- .../ui/context-menu/ContextMenuShortcut.vue | 8 +- .../ui/context-menu/ContextMenuSub.vue | 8 +- .../ui/context-menu/ContextMenuSubContent.vue | 8 +- .../ui/context-menu/ContextMenuSubTrigger.vue | 8 +- .../ui/context-menu/ContextMenuTrigger.vue | 8 +- .../src/components/ui/context-menu/index.ts | 8 +- .../src/components/ui/dialog/Dialog.vue | 8 +- .../src/components/ui/dialog/DialogClose.vue | 8 +- .../components/ui/dialog/DialogContent.vue | 8 +- .../ui/dialog/DialogDescription.vue | 8 +- .../src/components/ui/dialog/DialogFooter.vue | 8 +- .../src/components/ui/dialog/DialogHeader.vue | 8 +- .../ui/dialog/DialogScrollContent.vue | 8 +- .../src/components/ui/dialog/DialogTitle.vue | 8 +- .../components/ui/dialog/DialogTrigger.vue | 8 +- .../src/components/ui/dialog/index.ts | 8 +- .../src/components/ui/drawer/Drawer.vue | 8 +- .../components/ui/drawer/DrawerContent.vue | 8 +- .../ui/drawer/DrawerDescription.vue | 8 +- .../src/components/ui/drawer/DrawerFooter.vue | 8 +- .../src/components/ui/drawer/DrawerHeader.vue | 8 +- .../components/ui/drawer/DrawerOverlay.vue | 8 +- .../src/components/ui/drawer/DrawerTitle.vue | 8 +- .../src/components/ui/drawer/index.ts | 8 +- .../ui/dropdown-menu/DropdownMenu.vue | 8 +- .../DropdownMenuCheckboxItem.vue | 8 +- .../ui/dropdown-menu/DropdownMenuContent.vue | 8 +- .../ui/dropdown-menu/DropdownMenuGroup.vue | 8 +- .../ui/dropdown-menu/DropdownMenuItem.vue | 8 +- .../ui/dropdown-menu/DropdownMenuLabel.vue | 8 +- .../dropdown-menu/DropdownMenuRadioGroup.vue | 8 +- .../dropdown-menu/DropdownMenuRadioItem.vue | 8 +- .../dropdown-menu/DropdownMenuSeparator.vue | 8 +- .../ui/dropdown-menu/DropdownMenuShortcut.vue | 8 +- .../ui/dropdown-menu/DropdownMenuSub.vue | 8 +- .../dropdown-menu/DropdownMenuSubContent.vue | 8 +- .../dropdown-menu/DropdownMenuSubTrigger.vue | 8 +- .../ui/dropdown-menu/DropdownMenuTrigger.vue | 8 +- .../src/components/ui/dropdown-menu/index.ts | 8 +- .../src/components/ui/form/FormControl.vue | 8 +- .../components/ui/form/FormDescription.vue | 8 +- .../src/components/ui/form/FormItem.vue | 8 +- .../src/components/ui/form/FormLabel.vue | 8 +- .../src/components/ui/form/FormMessage.vue | 8 +- .../src/components/ui/form/index.ts | 8 +- .../src/components/ui/form/useFormField.ts | 8 +- .../components/ui/hover-card/HoverCard.vue | 8 +- .../ui/hover-card/HoverCardContent.vue | 8 +- .../ui/hover-card/HoverCardTrigger.vue | 8 +- .../src/components/ui/hover-card/index.ts | 8 +- .../src/components/ui/input/Input.vue | 8 +- .../src/components/ui/input/index.ts | 8 +- .../src/components/ui/label/Label.vue | 8 +- .../src/components/ui/label/index.ts | 8 +- .../src/components/ui/menubar/Menubar.vue | 8 +- .../ui/menubar/MenubarCheckboxItem.vue | 8 +- .../components/ui/menubar/MenubarContent.vue | 8 +- .../components/ui/menubar/MenubarGroup.vue | 8 +- .../src/components/ui/menubar/MenubarItem.vue | 8 +- .../components/ui/menubar/MenubarLabel.vue | 8 +- .../src/components/ui/menubar/MenubarMenu.vue | 8 +- .../ui/menubar/MenubarRadioGroup.vue | 8 +- .../ui/menubar/MenubarRadioItem.vue | 8 +- .../ui/menubar/MenubarSeparator.vue | 8 +- .../components/ui/menubar/MenubarShortcut.vue | 8 +- .../src/components/ui/menubar/MenubarSub.vue | 8 +- .../ui/menubar/MenubarSubContent.vue | 8 +- .../ui/menubar/MenubarSubTrigger.vue | 8 +- .../components/ui/menubar/MenubarTrigger.vue | 8 +- .../src/components/ui/menubar/index.ts | 8 +- .../ui/navigation-menu/NavigationMenu.vue | 8 +- .../navigation-menu/NavigationMenuContent.vue | 8 +- .../NavigationMenuIndicator.vue | 8 +- .../ui/navigation-menu/NavigationMenuItem.vue | 8 +- .../ui/navigation-menu/NavigationMenuLink.vue | 8 +- .../ui/navigation-menu/NavigationMenuList.vue | 8 +- .../navigation-menu/NavigationMenuTrigger.vue | 8 +- .../NavigationMenuViewport.vue | 8 +- .../components/ui/navigation-menu/index.ts | 8 +- .../ui/pagination/PaginationEllipsis.vue | 8 +- .../ui/pagination/PaginationFirst.vue | 8 +- .../ui/pagination/PaginationLast.vue | 8 +- .../ui/pagination/PaginationNext.vue | 8 +- .../ui/pagination/PaginationPrev.vue | 8 +- .../src/components/ui/pagination/index.ts | 8 +- .../src/components/ui/pin-input/PinInput.vue | 8 +- .../components/ui/pin-input/PinInputGroup.vue | 8 +- .../components/ui/pin-input/PinInputInput.vue | 8 +- .../ui/pin-input/PinInputSeparator.vue | 8 +- .../src/components/ui/pin-input/index.ts | 8 +- .../src/components/ui/popover/Popover.vue | 8 +- .../components/ui/popover/PopoverContent.vue | 8 +- .../components/ui/popover/PopoverTrigger.vue | 8 +- .../src/components/ui/popover/index.ts | 8 +- .../src/components/ui/progress/Progress.vue | 8 +- .../src/components/ui/progress/index.ts | 8 +- .../components/ui/radio-group/RadioGroup.vue | 8 +- .../ui/radio-group/RadioGroupItem.vue | 8 +- .../src/components/ui/radio-group/index.ts | 8 +- .../ui/range-calendar/RangeCalendar.vue | 8 +- .../ui/range-calendar/RangeCalendarCell.vue | 8 +- .../RangeCalendarCellTrigger.vue | 8 +- .../ui/range-calendar/RangeCalendarGrid.vue | 8 +- .../range-calendar/RangeCalendarGridBody.vue | 8 +- .../range-calendar/RangeCalendarGridHead.vue | 8 +- .../range-calendar/RangeCalendarGridRow.vue | 8 +- .../range-calendar/RangeCalendarHeadCell.vue | 8 +- .../ui/range-calendar/RangeCalendarHeader.vue | 8 +- .../range-calendar/RangeCalendarHeading.vue | 8 +- .../RangeCalendarNextButton.vue | 8 +- .../RangeCalendarPrevButton.vue | 8 +- .../src/components/ui/range-calendar/index.ts | 8 +- .../ui/resizable/ResizableHandle.vue | 8 +- .../ui/resizable/ResizablePanelGroup.vue | 8 +- .../src/components/ui/resizable/index.ts | 8 +- .../components/ui/scroll-area/ScrollArea.vue | 8 +- .../components/ui/scroll-area/ScrollBar.vue | 8 +- .../src/components/ui/scroll-area/index.ts | 8 +- .../src/components/ui/select/Select.vue | 8 +- .../components/ui/select/SelectContent.vue | 8 +- .../src/components/ui/select/SelectGroup.vue | 8 +- .../src/components/ui/select/SelectItem.vue | 8 +- .../components/ui/select/SelectItemText.vue | 8 +- .../src/components/ui/select/SelectLabel.vue | 8 +- .../ui/select/SelectScrollDownButton.vue | 8 +- .../ui/select/SelectScrollUpButton.vue | 8 +- .../components/ui/select/SelectSeparator.vue | 8 +- .../components/ui/select/SelectTrigger.vue | 8 +- .../src/components/ui/select/SelectValue.vue | 8 +- .../src/components/ui/select/index.ts | 8 +- .../src/components/ui/separator/Separator.vue | 8 +- .../src/components/ui/separator/index.ts | 8 +- .../src/components/ui/sheet/Sheet.vue | 8 +- .../src/components/ui/sheet/SheetClose.vue | 8 +- .../src/components/ui/sheet/SheetContent.vue | 8 +- .../components/ui/sheet/SheetDescription.vue | 8 +- .../src/components/ui/sheet/SheetFooter.vue | 8 +- .../src/components/ui/sheet/SheetHeader.vue | 8 +- .../src/components/ui/sheet/SheetTitle.vue | 8 +- .../src/components/ui/sheet/SheetTrigger.vue | 8 +- .../src/components/ui/sheet/index.ts | 8 +- .../src/components/ui/skeleton/Skeleton.vue | 8 +- .../src/components/ui/skeleton/index.ts | 8 +- .../src/components/ui/slider/Slider.vue | 8 +- .../src/components/ui/slider/index.ts | 8 +- .../src/components/ui/sonner/Sonner.vue | 8 +- .../src/components/ui/sonner/index.ts | 8 +- .../src/components/ui/switch/Switch.vue | 8 +- .../src/components/ui/switch/index.ts | 8 +- .../src/components/ui/table/Table.vue | 8 +- .../src/components/ui/table/TableBody.vue | 8 +- .../src/components/ui/table/TableCaption.vue | 8 +- .../src/components/ui/table/TableCell.vue | 8 +- .../src/components/ui/table/TableEmpty.vue | 8 +- .../src/components/ui/table/TableFooter.vue | 8 +- .../src/components/ui/table/TableHead.vue | 8 +- .../src/components/ui/table/TableHeader.vue | 8 +- .../src/components/ui/table/TableRow.vue | 8 +- .../src/components/ui/table/index.ts | 8 +- .../src/components/ui/tabs/Tabs.vue | 8 +- .../src/components/ui/tabs/TabsContent.vue | 8 +- .../src/components/ui/tabs/TabsList.vue | 8 +- .../src/components/ui/tabs/TabsTrigger.vue | 8 +- .../src/components/ui/tabs/index.ts | 8 +- .../components/ui/tags-input/TagsInput.vue | 8 +- .../ui/tags-input/TagsInputInput.vue | 8 +- .../ui/tags-input/TagsInputItem.vue | 8 +- .../ui/tags-input/TagsInputItemDelete.vue | 8 +- .../ui/tags-input/TagsInputItemText.vue | 8 +- .../src/components/ui/tags-input/index.ts | 8 +- .../src/components/ui/textarea/Textarea.vue | 8 +- .../src/components/ui/textarea/index.ts | 8 +- .../src/components/ui/toast/Toast.vue | 8 +- .../src/components/ui/toast/ToastAction.vue | 8 +- .../src/components/ui/toast/ToastClose.vue | 8 +- .../components/ui/toast/ToastDescription.vue | 8 +- .../src/components/ui/toast/ToastProvider.vue | 8 +- .../src/components/ui/toast/ToastTitle.vue | 8 +- .../src/components/ui/toast/ToastViewport.vue | 8 +- .../src/components/ui/toast/Toaster.vue | 8 +- .../src/components/ui/toast/index.ts | 8 +- .../src/components/ui/toast/use-toast.ts | 8 +- .../ui/toggle-group/ToggleGroup.vue | 8 +- .../ui/toggle-group/ToggleGroupItem.vue | 8 +- .../src/components/ui/toggle-group/index.ts | 8 +- .../src/components/ui/toggle/Toggle.vue | 8 +- .../src/components/ui/toggle/index.ts | 8 +- .../src/components/ui/tooltip/Tooltip.vue | 8 +- .../components/ui/tooltip/TooltipContent.vue | 8 +- .../components/ui/tooltip/TooltipProvider.vue | 8 +- .../components/ui/tooltip/TooltipTrigger.vue | 8 +- .../src/components/ui/tooltip/index.ts | 8 +- .../web-core/web-frontend/src/lib/utils.ts | 8 +- modules/web/web-core/web-frontend/src/main.ts | 8 +- .../web-core/web-frontend/src/vite-env.d.ts | 8 +- .../kotlin/dev/kordex/test/bot/TestBot.kt | 8 +- .../bot/extensions/ArgumentTestExtension.kt | 8 +- .../test/bot/extensions/I18nTestExtension.kt | 8 +- .../test/bot/extensions/ModalTestExtension.kt | 8 +- .../test/bot/extensions/PKTestExtension.kt | 8 +- .../bot/extensions/PaginatorTestExtension.kt | 8 +- .../bot/extensions/SelectorTestExtension.kt | 8 +- .../dev/kordex/test/bot/plugin/TestPlugin.kt | 8 +- .../kordex/test/bot/plugin/TestPluginData.kt | 8 +- .../test/bot/plugin/TestPluginExtension.kt | 8 +- .../dev/kordex/test/bot/utils/LogLevel.kt | 8 +- .../dev/kordex/test/bot/utils/_Asserts.kt | 8 +- .../dev/kordex/test/bot/utils/_Logging.kt | 8 +- .../main/kotlin/dev/kordex/parser/Cursor.kt | 8 +- .../kotlin/dev/kordex/parser/StringParser.kt | 8 +- .../parser/tokens/NamedArgumentToken.kt | 8 +- .../parser/tokens/PositionalArgumentToken.kt | 8 +- .../kotlin/dev/kordex/parser/tokens/Token.kt | 8 +- .../kordex/parser/test/StringParserTest.kt | 8 +- 803 files changed, 4271 insertions(+), 2753 deletions(-) diff --git a/LICENSE b/LICENSE index a612ad9813..4153cd3775 100644 --- a/LICENSE +++ b/LICENSE @@ -1,373 +1,287 @@ -Mozilla Public License Version 2.0 -================================== + EUROPEAN UNION PUBLIC LICENCE v. 1.2 + EUPL © the European Union 2007, 2016 -1. Definitions --------------- - -1.1. "Contributor" - means each individual or legal entity that creates, contributes to - the creation of, or owns Covered Software. +This European Union Public Licence (the ‘EUPL’) applies to the Work (as defined +below) which is provided under the terms of this Licence. Any use of the Work, +other than as authorised under this Licence is prohibited (to the extent such +use is covered by a right of the copyright holder of the Work). -1.2. "Contributor Version" - means the combination of the Contributions of others (if any) used - by a Contributor and that particular Contributor's Contribution. +The Work is provided under the terms of this Licence when the Licensor (as +defined below) has placed the following notice immediately following the +copyright notice for the Work: -1.3. "Contribution" - means Covered Software of a particular Contributor. + Licensed under the EUPL -1.4. "Covered Software" - means Source Code Form to which the initial Contributor has attached - the notice in Exhibit A, the Executable Form of such Source Code - Form, and Modifications of such Source Code Form, in each case - including portions thereof. +or has expressed by any other means his willingness to license under the EUPL. -1.5. "Incompatible With Secondary Licenses" - means - - (a) that the initial Contributor has attached the notice described - in Exhibit B to the Covered Software; or +1. Definitions - (b) that the Covered Software was made available under the terms of - version 1.1 or earlier of the License, but not also under the - terms of a Secondary License. +In this Licence, the following terms have the following meaning: -1.6. "Executable Form" - means any form of the work other than Source Code Form. +- ‘The Licence’: this Licence. -1.7. "Larger Work" - means a work that combines Covered Software with other material, in - a separate file or files, that is not Covered Software. +- ‘The Original Work’: the work or software distributed or communicated by the + Licensor under this Licence, available as Source Code and also as Executable + Code as the case may be. + +- ‘Derivative Works’: the works or software that could be created by the + Licensee, based upon the Original Work or modifications thereof. This Licence + does not define the extent of modification or dependence on the Original Work + required in order to classify a work as a Derivative Work; this extent is + determined by copyright law applicable in the country mentioned in Article 15. + +- ‘The Work’: the Original Work or its Derivative Works. + +- ‘The Source Code’: the human-readable form of the Work which is the most + convenient for people to study and modify. + +- ‘The Executable Code’: any code which has generally been compiled and which is + meant to be interpreted by a computer as a program. -1.8. "License" - means this document. +- ‘The Licensor’: the natural or legal person that distributes or communicates + the Work under the Licence. + +- ‘Contributor(s)’: any natural or legal person who modifies the Work under the + Licence, or otherwise contributes to the creation of a Derivative Work. + +- ‘The Licensee’ or ‘You’: any natural or legal person who makes any usage of + the Work under the terms of the Licence. + +- ‘Distribution’ or ‘Communication’: any act of selling, giving, lending, + renting, distributing, communicating, transmitting, or otherwise making + available, online or offline, copies of the Work or providing access to its + essential functionalities at the disposal of any other natural or legal + person. -1.9. "Licensable" - means having the right to grant, to the maximum extent possible, - whether at the time of the initial grant or subsequently, any and - all of the rights conveyed by this License. +2. Scope of the rights granted by the Licence + +The Licensor hereby grants You a worldwide, royalty-free, non-exclusive, +sublicensable licence to do the following, for the duration of copyright vested +in the Original Work: + +- use the Work in any circumstance and for all usage, +- reproduce the Work, +- modify the Work, and make Derivative Works based upon the Work, +- communicate to the public, including the right to make available or display + the Work or copies thereof to the public and perform publicly, as the case may + be, the Work, +- distribute the Work or copies thereof, +- lend and rent the Work or copies thereof, +- sublicense rights in the Work or copies thereof. -1.10. "Modifications" - means any of the following: +Those rights can be exercised on any media, supports and formats, whether now +known or later invented, as far as the applicable law permits so. + +In the countries where moral rights apply, the Licensor waives his right to +exercise his moral right to the extent allowed by law in order to make effective +the licence of the economic rights here above listed. + +The Licensor grants to the Licensee royalty-free, non-exclusive usage rights to +any patents held by the Licensor, to the extent necessary to make use of the +rights granted on the Work under this Licence. + +3. Communication of the Source Code + +The Licensor may provide the Work either in its Source Code form, or as +Executable Code. If the Work is provided as Executable Code, the Licensor +provides in addition a machine-readable copy of the Source Code of the Work +along with each copy of the Work that the Licensor distributes or indicates, in +a notice following the copyright notice attached to the Work, a repository where +the Source Code is easily and freely accessible for as long as the Licensor +continues to distribute or communicate the Work. + +4. Limitations on copyright + +Nothing in this Licence is intended to deprive the Licensee of the benefits from +any exception or limitation to the exclusive rights of the rights owners in the +Work, of the exhaustion of those rights or of other applicable limitations +thereto. + +5. Obligations of the Licensee + +The grant of the rights mentioned above is subject to some restrictions and +obligations imposed on the Licensee. Those obligations are the following: + +Attribution right: The Licensee shall keep intact all copyright, patent or +trademarks notices and all notices that refer to the Licence and to the +disclaimer of warranties. The Licensee must include a copy of such notices and a +copy of the Licence with every copy of the Work he/she distributes or +communicates. The Licensee must cause any Derivative Work to carry prominent +notices stating that the Work has been modified and the date of modification. + +Copyleft clause: If the Licensee distributes or communicates copies of the +Original Works or Derivative Works, this Distribution or Communication will be +done under the terms of this Licence or of a later version of this Licence +unless the Original Work is expressly distributed only under this version of the +Licence — for example by communicating ‘EUPL v. 1.2 only’. The Licensee +(becoming Licensor) cannot offer or impose any additional terms or conditions on +the Work or Derivative Work that alter or restrict the terms of the Licence. + +Compatibility clause: If the Licensee Distributes or Communicates Derivative +Works or copies thereof based upon both the Work and another work licensed under +a Compatible Licence, this Distribution or Communication can be done under the +terms of this Compatible Licence. For the sake of this clause, ‘Compatible +Licence’ refers to the licences listed in the appendix attached to this Licence. +Should the Licensee's obligations under the Compatible Licence conflict with +his/her obligations under this Licence, the obligations of the Compatible +Licence shall prevail. + +Provision of Source Code: When distributing or communicating copies of the Work, +the Licensee will provide a machine-readable copy of the Source Code or indicate +a repository where this Source will be easily and freely available for as long +as the Licensee continues to distribute or communicate the Work. + +Legal Protection: This Licence does not grant permission to use the trade names, +trademarks, service marks, or names of the Licensor, except as required for +reasonable and customary use in describing the origin of the Work and +reproducing the content of the copyright notice. + +6. Chain of Authorship + +The original Licensor warrants that the copyright in the Original Work granted +hereunder is owned by him/her or licensed to him/her and that he/she has the +power and authority to grant the Licence. + +Each Contributor warrants that the copyright in the modifications he/she brings +to the Work are owned by him/her or licensed to him/her and that he/she has the +power and authority to grant the Licence. + +Each time You accept the Licence, the original Licensor and subsequent +Contributors grant You a licence to their contributions to the Work, under the +terms of this Licence. + +7. Disclaimer of Warranty + +The Work is a work in progress, which is continuously improved by numerous +Contributors. It is not a finished work and may therefore contain defects or +‘bugs’ inherent to this type of development. + +For the above reason, the Work is provided under the Licence on an ‘as is’ basis +and without warranties of any kind concerning the Work, including without +limitation merchantability, fitness for a particular purpose, absence of defects +or errors, accuracy, non-infringement of intellectual property rights other than +copyright as stated in Article 6 of this Licence. + +This disclaimer of warranty is an essential part of the Licence and a condition +for the grant of any rights to the Work. - (a) any file in Source Code Form that results from an addition to, - deletion from, or modification of the contents of Covered - Software; or +8. Disclaimer of Liability - (b) any new file in Source Code Form that contains any Covered - Software. +Except in the cases of wilful misconduct or damages directly caused to natural +persons, the Licensor will in no event be liable for any direct or indirect, +material or moral, damages of any kind, arising out of the Licence or of the use +of the Work, including without limitation, damages for loss of goodwill, work +stoppage, computer failure or malfunction, loss of data or any commercial +damage, even if the Licensor has been advised of the possibility of such damage. +However, the Licensor will be liable under statutory product liability laws as +far such laws apply to the Work. + +9. Additional agreements + +While distributing the Work, You may choose to conclude an additional agreement, +defining obligations or services consistent with this Licence. However, if +accepting obligations, You may act only on your own behalf and on your sole +responsibility, not on behalf of the original Licensor or any other Contributor, +and only if You agree to indemnify, defend, and hold each Contributor harmless +for any liability incurred by, or claims asserted against such Contributor by +the fact You have accepted any warranty or additional liability. + +10. Acceptance of the Licence + +The provisions of this Licence can be accepted by clicking on an icon ‘I agree’ +placed under the bottom of a window displaying the text of this Licence or by +affirming consent in any other similar way, in accordance with the rules of +applicable law. Clicking on that icon indicates your clear and irrevocable +acceptance of this Licence and all of its terms and conditions. + +Similarly, you irrevocably accept this Licence and all of its terms and +conditions by exercising any rights granted to You by Article 2 of this Licence, +such as the use of the Work, the creation by You of a Derivative Work or the +Distribution or Communication by You of the Work or copies thereof. + +11. Information to the public + +In case of any Distribution or Communication of the Work by means of electronic +communication by You (for example, by offering to download the Work from a +remote location) the distribution channel or media (for example, a website) must +at least provide to the public the information requested by the applicable law +regarding the Licensor, the Licence and the way it may be accessible, concluded, +stored and reproduced by the Licensee. + +12. Termination of the Licence + +The Licence and the rights granted hereunder will terminate automatically upon +any breach by the Licensee of the terms of the Licence. + +Such a termination will not terminate the licences of any person who has +received the Work from the Licensee under the Licence, provided such persons +remain in full compliance with the Licence. + +13. Miscellaneous + +Without prejudice of Article 9 above, the Licence represents the complete +agreement between the Parties as to the Work. + +If any provision of the Licence is invalid or unenforceable under applicable +law, this will not affect the validity or enforceability of the Licence as a +whole. Such provision will be construed or reformed so as necessary to make it +valid and enforceable. -1.11. "Patent Claims" of a Contributor - means any patent claim(s), including without limitation, method, - process, and apparatus claims, in any patent Licensable by such - Contributor that would be infringed, but for the grant of the - License, by the making, using, selling, offering for sale, having - made, import, or transfer of either its Contributions or its - Contributor Version. +The European Commission may publish other linguistic versions or new versions of +this Licence or updated versions of the Appendix, so far this is required and +reasonable, without reducing the scope of the rights granted by the Licence. New +versions of the Licence will be published with a unique version number. -1.12. "Secondary License" - means either the GNU General Public License, Version 2.0, the GNU - Lesser General Public License, Version 2.1, the GNU Affero General - Public License, Version 3.0, or any later versions of those - licenses. +All linguistic versions of this Licence, approved by the European Commission, +have identical value. Parties can take advantage of the linguistic version of +their choice. -1.13. "Source Code Form" - means the form of the work preferred for making modifications. +14. Jurisdiction -1.14. "You" (or "Your") - means an individual or a legal entity exercising rights under this - License. For legal entities, "You" includes any entity that - controls, is controlled by, or is under common control with You. For - purposes of this definition, "control" means (a) the power, direct - or indirect, to cause the direction or management of such entity, - whether by contract or otherwise, or (b) ownership of more than - fifty percent (50%) of the outstanding shares or beneficial - ownership of such entity. +Without prejudice to specific agreement between parties, -2. License Grants and Conditions --------------------------------- +- any litigation resulting from the interpretation of this License, arising + between the European Union institutions, bodies, offices or agencies, as a + Licensor, and any Licensee, will be subject to the jurisdiction of the Court + of Justice of the European Union, as laid down in article 272 of the Treaty on + the Functioning of the European Union, -2.1. Grants +- any litigation arising between other parties and resulting from the + interpretation of this License, will be subject to the exclusive jurisdiction + of the competent court where the Licensor resides or conducts its primary + business. -Each Contributor hereby grants You a world-wide, royalty-free, -non-exclusive license: +15. Applicable Law + +Without prejudice to specific agreement between parties, -(a) under intellectual property rights (other than patent or trademark) - Licensable by such Contributor to use, reproduce, make available, - modify, display, perform, distribute, and otherwise exploit its - Contributions, either on an unmodified basis, with Modifications, or - as part of a Larger Work; and +- this Licence shall be governed by the law of the European Union Member State + where the Licensor has his seat, resides or has his registered office, + +- this licence shall be governed by Belgian law if the Licensor has no seat, + residence or registered office inside a European Union Member State. -(b) under Patent Claims of such Contributor to make, use, sell, offer - for sale, have made, import, and otherwise transfer either its - Contributions or its Contributor Version. +Appendix -2.2. Effective Date +‘Compatible Licences’ according to Article 5 EUPL are: -The licenses granted in Section 2.1 with respect to any Contribution -become effective for each Contribution on the date the Contributor first -distributes such Contribution. +- GNU General Public License (GPL) v. 2, v. 3 +- GNU Affero General Public License (AGPL) v. 3 +- Open Software License (OSL) v. 2.1, v. 3.0 +- Eclipse Public License (EPL) v. 1.0 +- CeCILL v. 2.0, v. 2.1 +- Mozilla Public Licence (MPL) v. 2 +- GNU Lesser General Public Licence (LGPL) v. 2.1, v. 3 +- Creative Commons Attribution-ShareAlike v. 3.0 Unported (CC BY-SA 3.0) for + works other than software +- European Union Public Licence (EUPL) v. 1.1, v. 1.2 +- Québec Free and Open-Source Licence — Reciprocity (LiLiQ-R) or Strong + Reciprocity (LiLiQ-R+). -2.3. Limitations on Grant Scope +The European Commission may update this Appendix to later versions of the above +licences without producing a new version of the EUPL, as long as they provide +the rights granted in Article 2 of this Licence and protect the covered Source +Code from exclusive appropriation. -The licenses granted in this Section 2 are the only rights granted under -this License. No additional rights or licenses will be implied from the -distribution or licensing of Covered Software under this License. -Notwithstanding Section 2.1(b) above, no patent license is granted by a -Contributor: - -(a) for any code that a Contributor has removed from Covered Software; - or - -(b) for infringements caused by: (i) Your and any other third party's - modifications of Covered Software, or (ii) the combination of its - Contributions with other software (except as part of its Contributor - Version); or - -(c) under Patent Claims infringed by Covered Software in the absence of - its Contributions. - -This License does not grant any rights in the trademarks, service marks, -or logos of any Contributor (except as may be necessary to comply with -the notice requirements in Section 3.4). - -2.4. Subsequent Licenses - -No Contributor makes additional grants as a result of Your choice to -distribute the Covered Software under a subsequent version of this -License (see Section 10.2) or under the terms of a Secondary License (if -permitted under the terms of Section 3.3). - -2.5. Representation - -Each Contributor represents that the Contributor believes its -Contributions are its original creation(s) or it has sufficient rights -to grant the rights to its Contributions conveyed by this License. - -2.6. Fair Use - -This License is not intended to limit any rights You have under -applicable copyright doctrines of fair use, fair dealing, or other -equivalents. - -2.7. Conditions - -Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted -in Section 2.1. - -3. Responsibilities -------------------- - -3.1. Distribution of Source Form - -All distribution of Covered Software in Source Code Form, including any -Modifications that You create or to which You contribute, must be under -the terms of this License. You must inform recipients that the Source -Code Form of the Covered Software is governed by the terms of this -License, and how they can obtain a copy of this License. You may not -attempt to alter or restrict the recipients' rights in the Source Code -Form. - -3.2. Distribution of Executable Form - -If You distribute Covered Software in Executable Form then: - -(a) such Covered Software must also be made available in Source Code - Form, as described in Section 3.1, and You must inform recipients of - the Executable Form how they can obtain a copy of such Source Code - Form by reasonable means in a timely manner, at a charge no more - than the cost of distribution to the recipient; and - -(b) You may distribute such Executable Form under the terms of this - License, or sublicense it under different terms, provided that the - license for the Executable Form does not attempt to limit or alter - the recipients' rights in the Source Code Form under this License. - -3.3. Distribution of a Larger Work - -You may create and distribute a Larger Work under terms of Your choice, -provided that You also comply with the requirements of this License for -the Covered Software. If the Larger Work is a combination of Covered -Software with a work governed by one or more Secondary Licenses, and the -Covered Software is not Incompatible With Secondary Licenses, this -License permits You to additionally distribute such Covered Software -under the terms of such Secondary License(s), so that the recipient of -the Larger Work may, at their option, further distribute the Covered -Software under the terms of either this License or such Secondary -License(s). - -3.4. Notices - -You may not remove or alter the substance of any license notices -(including copyright notices, patent notices, disclaimers of warranty, -or limitations of liability) contained within the Source Code Form of -the Covered Software, except that You may alter any license notices to -the extent required to remedy known factual inaccuracies. - -3.5. Application of Additional Terms - -You may choose to offer, and to charge a fee for, warranty, support, -indemnity or liability obligations to one or more recipients of Covered -Software. However, You may do so only on Your own behalf, and not on -behalf of any Contributor. You must make it absolutely clear that any -such warranty, support, indemnity, or liability obligation is offered by -You alone, and You hereby agree to indemnify every Contributor for any -liability incurred by such Contributor as a result of warranty, support, -indemnity or liability terms You offer. You may include additional -disclaimers of warranty and limitations of liability specific to any -jurisdiction. - -4. Inability to Comply Due to Statute or Regulation ---------------------------------------------------- - -If it is impossible for You to comply with any of the terms of this -License with respect to some or all of the Covered Software due to -statute, judicial order, or regulation then You must: (a) comply with -the terms of this License to the maximum extent possible; and (b) -describe the limitations and the code they affect. Such description must -be placed in a text file included with all distributions of the Covered -Software under this License. Except to the extent prohibited by statute -or regulation, such description must be sufficiently detailed for a -recipient of ordinary skill to be able to understand it. - -5. Termination --------------- - -5.1. The rights granted under this License will terminate automatically -if You fail to comply with any of its terms. However, if You become -compliant, then the rights granted under this License from a particular -Contributor are reinstated (a) provisionally, unless and until such -Contributor explicitly and finally terminates Your grants, and (b) on an -ongoing basis, if such Contributor fails to notify You of the -non-compliance by some reasonable means prior to 60 days after You have -come back into compliance. Moreover, Your grants from a particular -Contributor are reinstated on an ongoing basis if such Contributor -notifies You of the non-compliance by some reasonable means, this is the -first time You have received notice of non-compliance with this License -from such Contributor, and You become compliant prior to 30 days after -Your receipt of the notice. - -5.2. If You initiate litigation against any entity by asserting a patent -infringement claim (excluding declaratory judgment actions, -counter-claims, and cross-claims) alleging that a Contributor Version -directly or indirectly infringes any patent, then the rights granted to -You by any and all Contributors for the Covered Software under Section -2.1 of this License shall terminate. - -5.3. In the event of termination under Sections 5.1 or 5.2 above, all -end user license agreements (excluding distributors and resellers) which -have been validly granted by You or Your distributors under this License -prior to termination shall survive termination. - -************************************************************************ -* * -* 6. Disclaimer of Warranty * -* ------------------------- * -* * -* Covered Software is provided under this License on an "as is" * -* basis, without warranty of any kind, either expressed, implied, or * -* statutory, including, without limitation, warranties that the * -* Covered Software is free of defects, merchantable, fit for a * -* particular purpose or non-infringing. The entire risk as to the * -* quality and performance of the Covered Software is with You. * -* Should any Covered Software prove defective in any respect, You * -* (not any Contributor) assume the cost of any necessary servicing, * -* repair, or correction. This disclaimer of warranty constitutes an * -* essential part of this License. No use of any Covered Software is * -* authorized under this License except under this disclaimer. * -* * -************************************************************************ - -************************************************************************ -* * -* 7. Limitation of Liability * -* -------------------------- * -* * -* Under no circumstances and under no legal theory, whether tort * -* (including negligence), contract, or otherwise, shall any * -* Contributor, or anyone who distributes Covered Software as * -* permitted above, be liable to You for any direct, indirect, * -* special, incidental, or consequential damages of any character * -* including, without limitation, damages for lost profits, loss of * -* goodwill, work stoppage, computer failure or malfunction, or any * -* and all other commercial damages or losses, even if such party * -* shall have been informed of the possibility of such damages. This * -* limitation of liability shall not apply to liability for death or * -* personal injury resulting from such party's negligence to the * -* extent applicable law prohibits such limitation. Some * -* jurisdictions do not allow the exclusion or limitation of * -* incidental or consequential damages, so this exclusion and * -* limitation may not apply to You. * -* * -************************************************************************ - -8. Litigation -------------- - -Any litigation relating to this License may be brought only in the -courts of a jurisdiction where the defendant maintains its principal -place of business and such litigation shall be governed by laws of that -jurisdiction, without reference to its conflict-of-law provisions. -Nothing in this Section shall prevent a party's ability to bring -cross-claims or counter-claims. - -9. Miscellaneous ----------------- - -This License represents the complete agreement concerning the subject -matter hereof. If any provision of this License is held to be -unenforceable, such provision shall be reformed only to the extent -necessary to make it enforceable. Any law or regulation which provides -that the language of a contract shall be construed against the drafter -shall not be used to construe this License against a Contributor. - -10. Versions of the License ---------------------------- - -10.1. New Versions - -Mozilla Foundation is the license steward. Except as provided in Section -10.3, no one other than the license steward has the right to modify or -publish new versions of this License. Each version will be given a -distinguishing version number. - -10.2. Effect of New Versions - -You may distribute the Covered Software under the terms of the version -of the License under which You originally received the Covered Software, -or under the terms of any subsequent version published by the license -steward. - -10.3. Modified Versions - -If you create software not governed by this License, and you want to -create a new license for such software, you may create and use a -modified version of this License if you rename the license and remove -any references to the name of the license steward (except to note that -such modified license differs from this License). - -10.4. Distributing Source Code Form that is Incompatible With Secondary -Licenses - -If You choose to distribute Source Code Form that is Incompatible With -Secondary Licenses under the terms of this version of the License, the -notice described in Exhibit B of this License must be attached. - -Exhibit A - Source Code Form License Notice -------------------------------------------- - - This Source Code Form is subject to the terms of the Mozilla Public - License, v. 2.0. If a copy of the MPL was not distributed with this - file, You can obtain one at http://mozilla.org/MPL/2.0/. - -If it is not possible or desirable to put the notice in a particular -file, then You may include the notice in a location (such as a LICENSE -file in a relevant directory) where a recipient would be likely to look -for such a notice. - -You may add additional accurate notices of copyright ownership. - -Exhibit B - "Incompatible With Secondary Licenses" Notice ---------------------------------------------------------- - - This Source Code Form is "Incompatible With Secondary Licenses", as - defined by the Mozilla Public License, v. 2.0. +All other changes or additions to this Appendix require the production of a new +EUPL version. diff --git a/annotations/annotation-processor/src/main/kotlin/dev/kordex/core/annotations/ConverterProcessorProvider.kt b/annotations/annotation-processor/src/main/kotlin/dev/kordex/core/annotations/ConverterProcessorProvider.kt index d2d9542422..4f420ff84f 100644 --- a/annotations/annotation-processor/src/main/kotlin/dev/kordex/core/annotations/ConverterProcessorProvider.kt +++ b/annotations/annotation-processor/src/main/kotlin/dev/kordex/core/annotations/ConverterProcessorProvider.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.annotations diff --git a/annotations/annotation-processor/src/main/kotlin/dev/kordex/core/annotations/_Utils.kt b/annotations/annotation-processor/src/main/kotlin/dev/kordex/core/annotations/_Utils.kt index dc1cfcafef..eb1fa8224b 100644 --- a/annotations/annotation-processor/src/main/kotlin/dev/kordex/core/annotations/_Utils.kt +++ b/annotations/annotation-processor/src/main/kotlin/dev/kordex/core/annotations/_Utils.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:Suppress("UndocumentedPublicFunction") diff --git a/annotations/annotation-processor/src/main/kotlin/dev/kordex/core/annotations/converters/ConverterAnnotationArgs.kt b/annotations/annotation-processor/src/main/kotlin/dev/kordex/core/annotations/converters/ConverterAnnotationArgs.kt index c739cbfba5..a961428de1 100644 --- a/annotations/annotation-processor/src/main/kotlin/dev/kordex/core/annotations/converters/ConverterAnnotationArgs.kt +++ b/annotations/annotation-processor/src/main/kotlin/dev/kordex/core/annotations/converters/ConverterAnnotationArgs.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:Suppress("UncheckedCast") diff --git a/annotations/annotation-processor/src/main/kotlin/dev/kordex/core/annotations/converters/ConverterFunctionBuilder.kt b/annotations/annotation-processor/src/main/kotlin/dev/kordex/core/annotations/converters/ConverterFunctionBuilder.kt index 50e79c904a..0e3d868183 100644 --- a/annotations/annotation-processor/src/main/kotlin/dev/kordex/core/annotations/converters/ConverterFunctionBuilder.kt +++ b/annotations/annotation-processor/src/main/kotlin/dev/kordex/core/annotations/converters/ConverterFunctionBuilder.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:Suppress("UndocumentedPublicFunction", "UndocumentedPublicProperty") diff --git a/annotations/annotation-processor/src/main/kotlin/dev/kordex/core/annotations/converters/ConverterProcessor.kt b/annotations/annotation-processor/src/main/kotlin/dev/kordex/core/annotations/converters/ConverterProcessor.kt index dd054685dd..62c76589e5 100644 --- a/annotations/annotation-processor/src/main/kotlin/dev/kordex/core/annotations/converters/ConverterProcessor.kt +++ b/annotations/annotation-processor/src/main/kotlin/dev/kordex/core/annotations/converters/ConverterProcessor.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:Suppress("StringLiteralDuplication", "UnusedPrivateMember") diff --git a/annotations/annotation-processor/src/main/kotlin/dev/kordex/core/annotations/converters/Functions.kt b/annotations/annotation-processor/src/main/kotlin/dev/kordex/core/annotations/converters/Functions.kt index 79d98daa07..976abaf119 100644 --- a/annotations/annotation-processor/src/main/kotlin/dev/kordex/core/annotations/converters/Functions.kt +++ b/annotations/annotation-processor/src/main/kotlin/dev/kordex/core/annotations/converters/Functions.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:Suppress("StringLiteralDuplication", "UnusedPrivateMember", "UNUSED_PARAMETER") diff --git a/annotations/annotation-processor/src/main/kotlin/dev/kordex/core/annotations/converters/builders/ConverterBuilderClassBuilder.kt b/annotations/annotation-processor/src/main/kotlin/dev/kordex/core/annotations/converters/builders/ConverterBuilderClassBuilder.kt index 6de72be18d..8bbf2044d4 100644 --- a/annotations/annotation-processor/src/main/kotlin/dev/kordex/core/annotations/converters/builders/ConverterBuilderClassBuilder.kt +++ b/annotations/annotation-processor/src/main/kotlin/dev/kordex/core/annotations/converters/builders/ConverterBuilderClassBuilder.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:Suppress( diff --git a/annotations/annotation-processor/src/main/kotlin/dev/kordex/core/annotations/converters/builders/ConverterBuilderFunctionBuilder.kt b/annotations/annotation-processor/src/main/kotlin/dev/kordex/core/annotations/converters/builders/ConverterBuilderFunctionBuilder.kt index 4ce934cd07..437026730b 100644 --- a/annotations/annotation-processor/src/main/kotlin/dev/kordex/core/annotations/converters/builders/ConverterBuilderFunctionBuilder.kt +++ b/annotations/annotation-processor/src/main/kotlin/dev/kordex/core/annotations/converters/builders/ConverterBuilderFunctionBuilder.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:Suppress( diff --git a/annotations/annotations/src/main/kotlin/dev/kordex/core/annotations/converters/Converter.kt b/annotations/annotations/src/main/kotlin/dev/kordex/core/annotations/converters/Converter.kt index 2b370b4ad4..8a58f6bb1c 100644 --- a/annotations/annotations/src/main/kotlin/dev/kordex/core/annotations/converters/Converter.kt +++ b/annotations/annotations/src/main/kotlin/dev/kordex/core/annotations/converters/Converter.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.annotations.converters diff --git a/annotations/annotations/src/main/kotlin/dev/kordex/core/annotations/converters/ConverterType.kt b/annotations/annotations/src/main/kotlin/dev/kordex/core/annotations/converters/ConverterType.kt index 29e25c68b4..d7703d03cc 100644 --- a/annotations/annotations/src/main/kotlin/dev/kordex/core/annotations/converters/ConverterType.kt +++ b/annotations/annotations/src/main/kotlin/dev/kordex/core/annotations/converters/ConverterType.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.annotations.converters diff --git a/annotations/annotations/src/main/kotlin/dev/kordex/core/annotations/tooling/Translatable.kt b/annotations/annotations/src/main/kotlin/dev/kordex/core/annotations/tooling/Translatable.kt index e1300ca668..8932935ca9 100644 --- a/annotations/annotations/src/main/kotlin/dev/kordex/core/annotations/tooling/Translatable.kt +++ b/annotations/annotations/src/main/kotlin/dev/kordex/core/annotations/tooling/Translatable.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.annotations.tooling diff --git a/annotations/annotations/src/main/kotlin/dev/kordex/core/annotations/tooling/TranslatableType.kt b/annotations/annotations/src/main/kotlin/dev/kordex/core/annotations/tooling/TranslatableType.kt index 34265f7078..d5b76ea4ca 100644 --- a/annotations/annotations/src/main/kotlin/dev/kordex/core/annotations/tooling/TranslatableType.kt +++ b/annotations/annotations/src/main/kotlin/dev/kordex/core/annotations/tooling/TranslatableType.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.annotations.tooling diff --git a/codeformat/HEADER b/codeformat/HEADER index b0a968813b..b0a7c3cd45 100644 --- a/codeformat/HEADER +++ b/codeformat/HEADER @@ -1,3 +1,5 @@ -This Source Code Form is subject to the terms of the Mozilla Public -License, v. 2.0. If a copy of the MPL was not distributed with this -file, You can obtain one at https://mozilla.org/MPL/2.0/. +Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 +with the specific provision (EUPL articles 14 & 15) that the +applicable law is the (Republic of) Irish law and the Jurisdiction +Dublin. +Any redistribution must include the specific provision above. diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/Exceptions.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/Exceptions.kt index 43ed2df4f1..88a4911791 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/Exceptions.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/Exceptions.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/ExtensibleBot.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/ExtensibleBot.kt index 0e16b6ddd5..7369a3f21e 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/ExtensibleBot.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/ExtensibleBot.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:OptIn(PrivilegedIntent::class, KordPreview::class) diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/_Constants.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/_Constants.kt index 8454c03050..e090c15f2f 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/_Constants.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/_Constants.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:Suppress("MagicNumber") diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/_Properties.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/_Properties.kt index 664bd745f2..feb1042cd4 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/_Properties.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/_Properties.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/annotations/AlwaysPublicResponse.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/annotations/AlwaysPublicResponse.kt index 335896a25e..1d6aff083d 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/annotations/AlwaysPublicResponse.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/annotations/AlwaysPublicResponse.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.annotations diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/annotations/BotBuilderDSL.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/annotations/BotBuilderDSL.kt index 16d66c0500..1f7df51304 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/annotations/BotBuilderDSL.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/annotations/BotBuilderDSL.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.annotations diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/annotations/DoNotChain.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/annotations/DoNotChain.kt index cf1f29355a..0c020abdae 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/annotations/DoNotChain.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/annotations/DoNotChain.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.annotations diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/annotations/ExtensionDSL.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/annotations/ExtensionDSL.kt index f3498aeb1b..53d4e01f33 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/annotations/ExtensionDSL.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/annotations/ExtensionDSL.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.annotations diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/annotations/InternalAPI.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/annotations/InternalAPI.kt index 0eadc23c34..3f75eaf759 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/annotations/InternalAPI.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/annotations/InternalAPI.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.annotations diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/annotations/UnexpectedFunctionBehaviour.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/annotations/UnexpectedFunctionBehaviour.kt index ac405d2fea..8182e42b9e 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/annotations/UnexpectedFunctionBehaviour.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/annotations/UnexpectedFunctionBehaviour.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.annotations diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/builders/ExtensibleBotBuilder.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/builders/ExtensibleBotBuilder.kt index 095b8f9f1c..93ad212cd0 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/builders/ExtensibleBotBuilder.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/builders/ExtensibleBotBuilder.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:OptIn(PrivilegedIntent::class) diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/checks/ChannelChecks.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/checks/ChannelChecks.kt index d11ab1ddfa..02ef6e4b9b 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/checks/ChannelChecks.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/checks/ChannelChecks.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.checks diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/checks/ChannelTypeChecks.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/checks/ChannelTypeChecks.kt index aa2ee36efd..4b54a934f4 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/checks/ChannelTypeChecks.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/checks/ChannelTypeChecks.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.checks diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/checks/GuildChecks.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/checks/GuildChecks.kt index be4e915336..0b5e16adbe 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/checks/GuildChecks.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/checks/GuildChecks.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.checks diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/checks/MemberChecks.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/checks/MemberChecks.kt index 6332297890..ad81d20fc7 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/checks/MemberChecks.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/checks/MemberChecks.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.checks diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/checks/MiscChecks.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/checks/MiscChecks.kt index f7153f2148..ba8282c38e 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/checks/MiscChecks.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/checks/MiscChecks.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:Suppress("StringLiteralDuplication") diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/checks/NSFWChecks.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/checks/NSFWChecks.kt index 3d852e76ba..4bcbcbb3cc 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/checks/NSFWChecks.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/checks/NSFWChecks.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:Suppress("StringLiteralDuplication") diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/checks/RoleChecks.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/checks/RoleChecks.kt index a2626d5870..2fb87636c0 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/checks/RoleChecks.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/checks/RoleChecks.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:Suppress("StringLiteralDuplication") diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/checks/TopChannelChecks.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/checks/TopChannelChecks.kt index 36ff6ff174..b756fb8f32 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/checks/TopChannelChecks.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/checks/TopChannelChecks.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.checks diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/checks/_Events.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/checks/_Events.kt index 3882c29c70..33f75ae0f5 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/checks/_Events.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/checks/_Events.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:OptIn(KordUnsafe::class, KordExperimental::class) diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/checks/_Logging.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/checks/_Logging.kt index d967066f25..d4678c6317 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/checks/_Logging.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/checks/_Logging.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:Suppress("NOTHING_TO_INLINE") diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/checks/_Utils.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/checks/_Utils.kt index 528e8f42b9..c6febb5f40 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/checks/_Utils.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/checks/_Utils.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.checks diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/checks/types/CheckContext.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/checks/types/CheckContext.kt index 8b57fc6acc..76104b881e 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/checks/types/CheckContext.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/checks/types/CheckContext.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.checks.types diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/checks/types/CheckContextWithCache.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/checks/types/CheckContextWithCache.kt index 6cde26c856..2c08d783d8 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/checks/types/CheckContextWithCache.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/checks/types/CheckContextWithCache.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.checks.types diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/checks/types/_Types.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/checks/types/_Types.kt index b73e532f25..0cf8040d42 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/checks/types/_Types.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/checks/types/_Types.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:Suppress("Filename") diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/Argument.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/Argument.kt index 570dca56ed..b2fdb947ac 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/Argument.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/Argument.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.commands diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/Arguments.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/Arguments.kt index 72d053e5f0..738ae76283 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/Arguments.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/Arguments.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.commands diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/Command.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/Command.kt index 71fdd251e4..221ededbd9 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/Command.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/Command.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:Suppress("UnnecessaryAbstractClass") // No idea why we're getting this diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/CommandContext.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/CommandContext.kt index d1769ea920..a73fe21fd7 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/CommandContext.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/CommandContext.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.commands diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/ApplicationCommand.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/ApplicationCommand.kt index 6ae480c12b..1a5f74f32a 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/ApplicationCommand.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/ApplicationCommand.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.commands.application diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/ApplicationCommandContext.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/ApplicationCommandContext.kt index bedfeb490c..c25a957dd8 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/ApplicationCommandContext.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/ApplicationCommandContext.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:OptIn(KordUnsafe::class, KordExperimental::class) diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/ApplicationCommandRegistry.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/ApplicationCommandRegistry.kt index 04202a4ada..38545dc174 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/ApplicationCommandRegistry.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/ApplicationCommandRegistry.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:Suppress( diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/DefaultApplicationCommandRegistry.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/DefaultApplicationCommandRegistry.kt index b11266b3cc..69eac7b353 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/DefaultApplicationCommandRegistry.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/DefaultApplicationCommandRegistry.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:Suppress( diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/DummyAutocompleteCommandContext.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/DummyAutocompleteCommandContext.kt index 99389d3122..c7bae25f0e 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/DummyAutocompleteCommandContext.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/DummyAutocompleteCommandContext.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.commands.application diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/StorageAwareApplicationCommandRegistry.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/StorageAwareApplicationCommandRegistry.kt index 897b8af271..c902c28517 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/StorageAwareApplicationCommandRegistry.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/StorageAwareApplicationCommandRegistry.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:Suppress("TooGenericExceptionCaught") diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/message/EphemeralMessageCommand.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/message/EphemeralMessageCommand.kt index 89bb45262d..205cdd2eec 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/message/EphemeralMessageCommand.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/message/EphemeralMessageCommand.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:Suppress("TooGenericExceptionCaught") diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/message/EphemeralMessageCommandContext.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/message/EphemeralMessageCommandContext.kt index 3fd874bfbc..af9142ae2c 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/message/EphemeralMessageCommandContext.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/message/EphemeralMessageCommandContext.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.commands.application.message diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/message/MessageCommand.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/message/MessageCommand.kt index e185b2891d..893b894d69 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/message/MessageCommand.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/message/MessageCommand.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.commands.application.message diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/message/MessageCommandContext.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/message/MessageCommandContext.kt index 735a895b4e..686641ef34 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/message/MessageCommandContext.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/message/MessageCommandContext.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.commands.application.message diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/message/PublicMessageCommand.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/message/PublicMessageCommand.kt index c086cd8938..9873d86948 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/message/PublicMessageCommand.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/message/PublicMessageCommand.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:Suppress("TooGenericExceptionCaught") diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/message/PublicMessageCommandContext.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/message/PublicMessageCommandContext.kt index db83e248ed..42dc78c8ec 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/message/PublicMessageCommandContext.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/message/PublicMessageCommandContext.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.commands.application.message diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/slash/EphemeralSlashCommand.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/slash/EphemeralSlashCommand.kt index a35068b658..956ddfea13 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/slash/EphemeralSlashCommand.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/slash/EphemeralSlashCommand.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:Suppress("TooGenericExceptionCaught") diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/slash/EphemeralSlashCommandContext.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/slash/EphemeralSlashCommandContext.kt index fbdcf7cd1b..09b043e335 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/slash/EphemeralSlashCommandContext.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/slash/EphemeralSlashCommandContext.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.commands.application.slash diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/slash/PublicSlashCommand.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/slash/PublicSlashCommand.kt index 7e8c8549a0..b9faebf618 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/slash/PublicSlashCommand.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/slash/PublicSlashCommand.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:Suppress("TooGenericExceptionCaught") diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/slash/PublicSlashCommandContext.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/slash/PublicSlashCommandContext.kt index 84db73ddd5..b1708faab6 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/slash/PublicSlashCommandContext.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/slash/PublicSlashCommandContext.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.commands.application.slash diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/slash/SlashCommand.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/slash/SlashCommand.kt index 9f0a5111a9..19241ecb1b 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/slash/SlashCommand.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/slash/SlashCommand.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.commands.application.slash diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/slash/SlashCommandContext.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/slash/SlashCommandContext.kt index 8809e91da1..d612f755a6 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/slash/SlashCommandContext.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/slash/SlashCommandContext.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.commands.application.slash diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/slash/SlashCommandParser.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/slash/SlashCommandParser.kt index ad3fa84f78..d158d07b81 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/slash/SlashCommandParser.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/slash/SlashCommandParser.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:Suppress( diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/slash/SlashGroup.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/slash/SlashGroup.kt index 1f62d531ae..5092e1492a 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/slash/SlashGroup.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/slash/SlashGroup.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.commands.application.slash diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/slash/_Functions.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/slash/_Functions.kt index 2f0826d38d..60a19289bf 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/slash/_Functions.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/slash/_Functions.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:Suppress("StringLiteralDuplication") diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/slash/converters/ChoiceConverter.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/slash/converters/ChoiceConverter.kt index 7a35fcea14..787e1fd685 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/slash/converters/ChoiceConverter.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/slash/converters/ChoiceConverter.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.commands.application.slash.converters diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/slash/converters/ChoiceEnum.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/slash/converters/ChoiceEnum.kt index 00d4a3d472..0da5fa1f77 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/slash/converters/ChoiceEnum.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/slash/converters/ChoiceEnum.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.commands.application.slash.converters diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/slash/converters/impl/EnumChoiceConverter.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/slash/converters/impl/EnumChoiceConverter.kt index 7826b37325..106aabba86 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/slash/converters/impl/EnumChoiceConverter.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/slash/converters/impl/EnumChoiceConverter.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.commands.application.slash.converters.impl diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/slash/converters/impl/NumberChoiceConverter.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/slash/converters/impl/NumberChoiceConverter.kt index 6e52f6c4a1..4161dbe7e8 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/slash/converters/impl/NumberChoiceConverter.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/slash/converters/impl/NumberChoiceConverter.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.commands.application.slash.converters.impl diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/slash/converters/impl/StringChoiceConverter.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/slash/converters/impl/StringChoiceConverter.kt index ce3f054367..40abe0fcb1 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/slash/converters/impl/StringChoiceConverter.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/slash/converters/impl/StringChoiceConverter.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.commands.application.slash.converters.impl diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/user/EphemeralUserCommand.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/user/EphemeralUserCommand.kt index 1eeae9427a..f72dd9256a 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/user/EphemeralUserCommand.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/user/EphemeralUserCommand.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:Suppress("TooGenericExceptionCaught") diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/user/EphemeralUserCommandContext.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/user/EphemeralUserCommandContext.kt index 44dc004ccd..158d7e47d6 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/user/EphemeralUserCommandContext.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/user/EphemeralUserCommandContext.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.commands.application.user diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/user/PublicUserCommand.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/user/PublicUserCommand.kt index e84869ad8f..d9e60eb289 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/user/PublicUserCommand.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/user/PublicUserCommand.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:Suppress("TooGenericExceptionCaught") diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/user/PublicUserCommandContext.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/user/PublicUserCommandContext.kt index b8b1bf4330..0ea200f985 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/user/PublicUserCommandContext.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/user/PublicUserCommandContext.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.commands.application.user diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/user/UserCommand.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/user/UserCommand.kt index bdb21e154a..e392be7577 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/user/UserCommand.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/user/UserCommand.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.commands.application.user diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/user/UserCommandContext.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/user/UserCommandContext.kt index f0aef24680..7b99401238 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/user/UserCommandContext.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/application/user/UserCommandContext.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.commands.application.user diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/chat/ChatCommand.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/chat/ChatCommand.kt index e4ffb23036..e2e573d44f 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/chat/ChatCommand.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/chat/ChatCommand.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:Suppress("StringLiteralDuplication", "TooGenericExceptionCaught") diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/chat/ChatCommandContext.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/chat/ChatCommandContext.kt index 67ab2cb624..bad18afd04 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/chat/ChatCommandContext.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/chat/ChatCommandContext.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:OptIn(KordUnsafe::class, KordExperimental::class) diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/chat/ChatCommandParser.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/chat/ChatCommandParser.kt index eb5ffe2f6f..4406d2562e 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/chat/ChatCommandParser.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/chat/ChatCommandParser.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:Suppress( diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/chat/ChatCommandRegistry.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/chat/ChatCommandRegistry.kt index ef8073c379..893a4d22ed 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/chat/ChatCommandRegistry.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/chat/ChatCommandRegistry.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.commands.chat diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/chat/ChatGroupCommand.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/chat/ChatGroupCommand.kt index 867c604c0e..383252fa1d 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/chat/ChatGroupCommand.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/chat/ChatGroupCommand.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.commands.chat diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/chat/ChatSubCommand.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/chat/ChatSubCommand.kt index 5dfbc28e90..7d12690a5d 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/chat/ChatSubCommand.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/chat/ChatSubCommand.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.commands.chat diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/Annotations.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/Annotations.kt index d10ad60ce1..9db4c1fb84 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/Annotations.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/Annotations.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.commands.converters diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/CoalescingConverter.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/CoalescingConverter.kt index 42f02a961d..366f9c5414 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/CoalescingConverter.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/CoalescingConverter.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.commands.converters diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/CoalescingToDefaultingConverter.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/CoalescingToDefaultingConverter.kt index c76428fae1..c95887d098 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/CoalescingToDefaultingConverter.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/CoalescingToDefaultingConverter.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.commands.converters diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/CoalescingToOptionalConverter.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/CoalescingToOptionalConverter.kt index 207688b566..fd5978758b 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/CoalescingToOptionalConverter.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/CoalescingToOptionalConverter.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.commands.converters diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/Converter.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/Converter.kt index 99bd556f51..424b743cfe 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/Converter.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/Converter.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.commands.converters diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/DefaultingCoalescingConverter.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/DefaultingCoalescingConverter.kt index d6f5cc58f4..a71e5bb5dd 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/DefaultingCoalescingConverter.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/DefaultingCoalescingConverter.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.commands.converters diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/DefaultingConverter.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/DefaultingConverter.kt index f87744a903..8b6fcf0fc6 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/DefaultingConverter.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/DefaultingConverter.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.commands.converters diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/ListConverter.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/ListConverter.kt index 10338a8399..300662d1f5 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/ListConverter.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/ListConverter.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.commands.converters diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/OptionalCoalescingConverter.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/OptionalCoalescingConverter.kt index 884e298e85..7d699f433f 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/OptionalCoalescingConverter.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/OptionalCoalescingConverter.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.commands.converters diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/OptionalConverter.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/OptionalConverter.kt index 049e8fda28..417f4e8b1a 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/OptionalConverter.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/OptionalConverter.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.commands.converters diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/SingleConverter.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/SingleConverter.kt index f930f735bd..8f034045a0 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/SingleConverter.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/SingleConverter.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.commands.converters diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/SingleToDefaultingConverter.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/SingleToDefaultingConverter.kt index 3056b09788..b0779c774a 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/SingleToDefaultingConverter.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/SingleToDefaultingConverter.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.commands.converters diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/SingleToListConverter.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/SingleToListConverter.kt index 3982937ebe..8656dc536d 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/SingleToListConverter.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/SingleToListConverter.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.commands.converters diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/SingleToOptionalConverter.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/SingleToOptionalConverter.kt index 5071f5c264..ca9811ed95 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/SingleToOptionalConverter.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/SingleToOptionalConverter.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.commands.converters diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/SlashCommandConverter.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/SlashCommandConverter.kt index f4338318ba..eb40efe5ce 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/SlashCommandConverter.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/SlashCommandConverter.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.commands.converters diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/_Types.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/_Types.kt index 224b45611c..4d5834d4aa 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/_Types.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/_Types.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:Suppress("Filename") diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/builders/ChoiceConverterBuilder.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/builders/ChoiceConverterBuilder.kt index 7726b607ac..e36f0ead82 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/builders/ChoiceConverterBuilder.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/builders/ChoiceConverterBuilder.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.commands.converters.builders diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/builders/CoalescingConverterBuilder.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/builders/CoalescingConverterBuilder.kt index 53a66d34cc..17a1925eb3 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/builders/CoalescingConverterBuilder.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/builders/CoalescingConverterBuilder.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.commands.converters.builders diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/builders/ConverterBuilder.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/builders/ConverterBuilder.kt index bd54d4ab81..01d8355a3a 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/builders/ConverterBuilder.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/builders/ConverterBuilder.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.commands.converters.builders diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/builders/DefaultingCoalescingConverterBuilder.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/builders/DefaultingCoalescingConverterBuilder.kt index ce769e9e29..9eeef07278 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/builders/DefaultingCoalescingConverterBuilder.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/builders/DefaultingCoalescingConverterBuilder.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.commands.converters.builders diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/builders/DefaultingConverterBuilder.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/builders/DefaultingConverterBuilder.kt index bea0125e52..51db3deb70 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/builders/DefaultingConverterBuilder.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/builders/DefaultingConverterBuilder.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.commands.converters.builders diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/builders/ListConverterBuilder.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/builders/ListConverterBuilder.kt index 04c4583632..01ab462195 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/builders/ListConverterBuilder.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/builders/ListConverterBuilder.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.commands.converters.builders diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/builders/OptionalCoalescingConverterBuilder.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/builders/OptionalCoalescingConverterBuilder.kt index 3a14fc59f9..f56dc98382 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/builders/OptionalCoalescingConverterBuilder.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/builders/OptionalCoalescingConverterBuilder.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.commands.converters.builders diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/builders/OptionalConverterBuilder.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/builders/OptionalConverterBuilder.kt index 93646ca251..7fda7edbe3 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/builders/OptionalConverterBuilder.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/builders/OptionalConverterBuilder.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.commands.converters.builders diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/builders/ValidationContext.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/builders/ValidationContext.kt index 9af0b6a0ad..2b21938d29 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/builders/ValidationContext.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/builders/ValidationContext.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.commands.converters.builders diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/AttachmentConverter.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/AttachmentConverter.kt index e3a0c9f8a0..22189348fc 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/AttachmentConverter.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/AttachmentConverter.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.commands.converters.impl diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/BooleanConverter.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/BooleanConverter.kt index 64a15479aa..4bf9ee4016 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/BooleanConverter.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/BooleanConverter.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.commands.converters.impl diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/ChannelConverter.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/ChannelConverter.kt index 59f9e805ed..2af8d39705 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/ChannelConverter.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/ChannelConverter.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:OptIn( diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/ColorConverter.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/ColorConverter.kt index 20f1794de1..39515044eb 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/ColorConverter.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/ColorConverter.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:Suppress("MagicNumber", "RethrowCaughtException", "TooGenericExceptionCaught") diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/DecimalConverter.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/DecimalConverter.kt index 23feef8681..90d064e4d0 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/DecimalConverter.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/DecimalConverter.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.commands.converters.impl diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/DurationCoalescingConverter.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/DurationCoalescingConverter.kt index 1820c65d6e..edd4178bf3 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/DurationCoalescingConverter.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/DurationCoalescingConverter.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.commands.converters.impl diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/DurationConverter.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/DurationConverter.kt index 256db815d6..953842dfe3 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/DurationConverter.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/DurationConverter.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.commands.converters.impl diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/EmailConverter.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/EmailConverter.kt index 1ab7fe2204..861ee4adcd 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/EmailConverter.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/EmailConverter.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.commands.converters.impl diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/EmojiConverter.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/EmojiConverter.kt index 7ca3a93bf2..13e908908c 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/EmojiConverter.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/EmojiConverter.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.commands.converters.impl diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/EnumConverter.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/EnumConverter.kt index 8c1752eb3e..70ac39eb0b 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/EnumConverter.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/EnumConverter.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.commands.converters.impl diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/GuildConverter.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/GuildConverter.kt index 6108eb79c4..0aeaa3294f 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/GuildConverter.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/GuildConverter.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.commands.converters.impl diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/IntConverter.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/IntConverter.kt index 49632c5545..45fa9a8b82 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/IntConverter.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/IntConverter.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.commands.converters.impl diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/LongConverter.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/LongConverter.kt index c1b8c39983..f136e499f2 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/LongConverter.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/LongConverter.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.commands.converters.impl diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/MemberConverter.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/MemberConverter.kt index 0f6b31b0e3..da56573e77 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/MemberConverter.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/MemberConverter.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:Suppress("StringLiteralDuplication") diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/MessageConverter.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/MessageConverter.kt index 352163246f..427767a0c4 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/MessageConverter.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/MessageConverter.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.commands.converters.impl diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/RegexCoalescingConverter.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/RegexCoalescingConverter.kt index ecaa41fa94..f20e99b8ec 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/RegexCoalescingConverter.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/RegexCoalescingConverter.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.commands.converters.impl diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/RegexConverter.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/RegexConverter.kt index 9ccc8c654f..42750f446b 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/RegexConverter.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/RegexConverter.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.commands.converters.impl diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/RoleConverter.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/RoleConverter.kt index d4080084f5..71ee3ef7c0 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/RoleConverter.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/RoleConverter.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.commands.converters.impl diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/SnowflakeConverter.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/SnowflakeConverter.kt index 043c01b8e7..651a61f840 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/SnowflakeConverter.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/SnowflakeConverter.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.commands.converters.impl diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/StringCoalescingConverter.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/StringCoalescingConverter.kt index 425e1cbdc9..88fd25481b 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/StringCoalescingConverter.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/StringCoalescingConverter.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.commands.converters.impl diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/StringConverter.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/StringConverter.kt index 3887a3afac..01161d6056 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/StringConverter.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/StringConverter.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.commands.converters.impl diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/SupportedLocaleConverter.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/SupportedLocaleConverter.kt index adc9b7e545..8e5ec50b1d 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/SupportedLocaleConverter.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/SupportedLocaleConverter.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:Suppress("MagicNumber", "RethrowCaughtException", "TooGenericExceptionCaught") diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/TagConverter.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/TagConverter.kt index 76bf5921e8..e26ccd0c72 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/TagConverter.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/TagConverter.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.commands.converters.impl diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/TimestampConverter.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/TimestampConverter.kt index d5906d0050..15b993c3df 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/TimestampConverter.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/TimestampConverter.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.commands.converters.impl diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/UserConverter.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/UserConverter.kt index c167946c68..3ce4007702 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/UserConverter.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/converters/impl/UserConverter.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.commands.converters.impl diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/events/ChatCommandEvents.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/events/ChatCommandEvents.kt index cd61f0377a..1b81e06f53 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/events/ChatCommandEvents.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/events/ChatCommandEvents.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.commands.events diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/events/CommandEvents.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/events/CommandEvents.kt index 39a2c8c377..9ee06b729a 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/events/CommandEvents.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/events/CommandEvents.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.commands.events diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/events/MessageCommandEvents.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/events/MessageCommandEvents.kt index a36fd05ab4..2fec11512e 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/events/MessageCommandEvents.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/events/MessageCommandEvents.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.commands.events diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/events/SlashCommandEvents.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/events/SlashCommandEvents.kt index 7d06afd753..cb88e1d620 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/events/SlashCommandEvents.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/events/SlashCommandEvents.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.commands.events diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/events/UserCommandEvents.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/events/UserCommandEvents.kt index ea839b5cb4..409911605b 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/commands/events/UserCommandEvents.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/commands/events/UserCommandEvents.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.commands.events diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/components/Component.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/components/Component.kt index fe191124af..f60d041471 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/components/Component.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/components/Component.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.components diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/components/ComponentContainer.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/components/ComponentContainer.kt index d61ff02cca..3afaeda39c 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/components/ComponentContainer.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/components/ComponentContainer.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:Suppress("AnnotationSpacing") diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/components/ComponentContext.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/components/ComponentContext.kt index a6fa496a6a..faad96dcc7 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/components/ComponentContext.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/components/ComponentContext.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:OptIn(KordUnsafe::class, KordExperimental::class) diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/components/ComponentRegistry.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/components/ComponentRegistry.kt index ebe41e9054..d4bf0af44b 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/components/ComponentRegistry.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/components/ComponentRegistry.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.components diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/components/ComponentWithAction.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/components/ComponentWithAction.kt index 4b097a3e59..ee92368ef7 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/components/ComponentWithAction.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/components/ComponentWithAction.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.components diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/components/ComponentWithID.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/components/ComponentWithID.kt index 78d0395605..b34e16750e 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/components/ComponentWithID.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/components/ComponentWithID.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.components diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/components/_Functions.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/components/_Functions.kt index 84aff90024..59477c9274 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/components/_Functions.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/components/_Functions.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.components diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/components/buttons/DisabledInteractionButton.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/components/buttons/DisabledInteractionButton.kt index 6314a8cd25..1b681ad85e 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/components/buttons/DisabledInteractionButton.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/components/buttons/DisabledInteractionButton.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.components.buttons diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/components/buttons/EphemeralInteractionButton.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/components/buttons/EphemeralInteractionButton.kt index c681cfbc81..c65257fd39 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/components/buttons/EphemeralInteractionButton.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/components/buttons/EphemeralInteractionButton.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:Suppress("TooGenericExceptionCaught") diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/components/buttons/EphemeralInteractionButtonContext.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/components/buttons/EphemeralInteractionButtonContext.kt index f7631afba9..3a69fbb6d4 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/components/buttons/EphemeralInteractionButtonContext.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/components/buttons/EphemeralInteractionButtonContext.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.components.buttons diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/components/buttons/InteractionButton.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/components/buttons/InteractionButton.kt index ef52312243..626f75afe8 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/components/buttons/InteractionButton.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/components/buttons/InteractionButton.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.components.buttons diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/components/buttons/InteractionButtonContext.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/components/buttons/InteractionButtonContext.kt index 35bb043ea2..c546e9ff59 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/components/buttons/InteractionButtonContext.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/components/buttons/InteractionButtonContext.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.components.buttons diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/components/buttons/InteractionButtonWithAction.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/components/buttons/InteractionButtonWithAction.kt index 729c4d231f..c625975ef8 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/components/buttons/InteractionButtonWithAction.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/components/buttons/InteractionButtonWithAction.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.components.buttons diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/components/buttons/InteractionButtonWithID.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/components/buttons/InteractionButtonWithID.kt index 5fef19517c..c335c34096 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/components/buttons/InteractionButtonWithID.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/components/buttons/InteractionButtonWithID.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.components.buttons diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/components/buttons/LinkInteractionButton.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/components/buttons/LinkInteractionButton.kt index f40defe5ca..9b12662962 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/components/buttons/LinkInteractionButton.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/components/buttons/LinkInteractionButton.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.components.buttons diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/components/buttons/PublicInteractionButton.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/components/buttons/PublicInteractionButton.kt index 547df09906..f28221167b 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/components/buttons/PublicInteractionButton.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/components/buttons/PublicInteractionButton.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:Suppress("TooGenericExceptionCaught") diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/components/buttons/PublicInteractionButtonContext.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/components/buttons/PublicInteractionButtonContext.kt index 48fe2c4f3a..46b2530fc4 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/components/buttons/PublicInteractionButtonContext.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/components/buttons/PublicInteractionButtonContext.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.components.buttons diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/components/forms/Form.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/components/forms/Form.kt index 3873355e41..22769d8214 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/components/forms/Form.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/components/forms/Form.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.components.forms diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/components/forms/ModalForm.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/components/forms/ModalForm.kt index 95f0d3a2d8..11e513bacb 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/components/forms/ModalForm.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/components/forms/ModalForm.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:OptIn(KordUnsafe::class) diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/components/forms/_Grid.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/components/forms/_Grid.kt index 81f64b58e5..3321153849 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/components/forms/_Grid.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/components/forms/_Grid.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:Suppress("UndocumentedPublicProperty", "UndocumentedPublicFunction") diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/components/forms/widgets/LineTextWidget.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/components/forms/widgets/LineTextWidget.kt index 38669ba953..19178d88b0 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/components/forms/widgets/LineTextWidget.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/components/forms/widgets/LineTextWidget.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.components.forms.widgets diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/components/forms/widgets/ParagraphTextWidget.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/components/forms/widgets/ParagraphTextWidget.kt index 0b411d39c2..b17f5b55da 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/components/forms/widgets/ParagraphTextWidget.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/components/forms/widgets/ParagraphTextWidget.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.components.forms.widgets diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/components/forms/widgets/TextInputWidget.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/components/forms/widgets/TextInputWidget.kt index 59921c9d20..45fbbe39dc 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/components/forms/widgets/TextInputWidget.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/components/forms/widgets/TextInputWidget.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.components.forms.widgets diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/components/forms/widgets/Widget.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/components/forms/widgets/Widget.kt index 62059377d8..9ce86d9a19 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/components/forms/widgets/Widget.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/components/forms/widgets/Widget.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.components.forms.widgets diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/EphemeralSelectMenu.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/EphemeralSelectMenu.kt index 10ef4bf388..786cfcd390 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/EphemeralSelectMenu.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/EphemeralSelectMenu.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.components.menus diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/PublicSelectMenu.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/PublicSelectMenu.kt index 48686132d9..de1c12732b 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/PublicSelectMenu.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/PublicSelectMenu.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.components.menus diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/SelectMenu.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/SelectMenu.kt index 75101d661f..085a7415f3 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/SelectMenu.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/SelectMenu.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.components.menus diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/SelectMenuContext.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/SelectMenuContext.kt index 404d525c84..0475140b09 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/SelectMenuContext.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/SelectMenuContext.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.components.menus diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/_ResponseBuilders.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/_ResponseBuilders.kt index 5fde89f3c4..89ededc2a5 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/_ResponseBuilders.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/_ResponseBuilders.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.components.menus diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/channel/ChannelSelectMenu.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/channel/ChannelSelectMenu.kt index 9da7470041..bdbae7a4ef 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/channel/ChannelSelectMenu.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/channel/ChannelSelectMenu.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.components.menus.channel diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/channel/ChannelSelectMenuContext.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/channel/ChannelSelectMenuContext.kt index 73b2e59b15..8d7c43ec68 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/channel/ChannelSelectMenuContext.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/channel/ChannelSelectMenuContext.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.components.menus.channel diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/channel/EphemeralChannelSelectMenu.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/channel/EphemeralChannelSelectMenu.kt index 383608f1a1..dacd060ae8 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/channel/EphemeralChannelSelectMenu.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/channel/EphemeralChannelSelectMenu.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.components.menus.channel diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/channel/EphemeralChannelSelectMenuContext.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/channel/EphemeralChannelSelectMenuContext.kt index 7d13ad4746..815f76e95d 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/channel/EphemeralChannelSelectMenuContext.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/channel/EphemeralChannelSelectMenuContext.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.components.menus.channel diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/channel/PublicChannelSelectMenu.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/channel/PublicChannelSelectMenu.kt index bd922960f2..76594d84cb 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/channel/PublicChannelSelectMenu.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/channel/PublicChannelSelectMenu.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.components.menus.channel diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/channel/PublicChannelSelectMenuContext.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/channel/PublicChannelSelectMenuContext.kt index 9ddbd1d86a..224036e261 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/channel/PublicChannelSelectMenuContext.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/channel/PublicChannelSelectMenuContext.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.components.menus.channel diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/mentionable/EphemeralMentionableSelectMenu.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/mentionable/EphemeralMentionableSelectMenu.kt index 12e41aa0eb..d6d729c2b8 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/mentionable/EphemeralMentionableSelectMenu.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/mentionable/EphemeralMentionableSelectMenu.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.components.menus.mentionable diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/mentionable/EphemeralMentionableSelectMenuContext.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/mentionable/EphemeralMentionableSelectMenuContext.kt index 70986bb775..c979ee065b 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/mentionable/EphemeralMentionableSelectMenuContext.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/mentionable/EphemeralMentionableSelectMenuContext.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.components.menus.mentionable diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/mentionable/MentionableSelectMenu.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/mentionable/MentionableSelectMenu.kt index 47aa0dc367..7db2a6c72f 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/mentionable/MentionableSelectMenu.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/mentionable/MentionableSelectMenu.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.components.menus.mentionable diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/mentionable/MentionableSelectMenuContext.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/mentionable/MentionableSelectMenuContext.kt index 78146b1809..c80851283b 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/mentionable/MentionableSelectMenuContext.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/mentionable/MentionableSelectMenuContext.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.components.menus.mentionable diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/mentionable/PublicMentionableSelectMenu.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/mentionable/PublicMentionableSelectMenu.kt index 70e72c7e92..29908bb72f 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/mentionable/PublicMentionableSelectMenu.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/mentionable/PublicMentionableSelectMenu.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.components.menus.mentionable diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/mentionable/PublicMentionableSelectMenuContext.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/mentionable/PublicMentionableSelectMenuContext.kt index 3226ee26c7..7332dfa34d 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/mentionable/PublicMentionableSelectMenuContext.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/mentionable/PublicMentionableSelectMenuContext.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.components.menus.mentionable diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/mentionable/_DummyContexts.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/mentionable/_DummyContexts.kt index 6f664d88a8..0999c650b3 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/mentionable/_DummyContexts.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/mentionable/_DummyContexts.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.components.menus.mentionable diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/role/EphemeralRoleSelectMenu.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/role/EphemeralRoleSelectMenu.kt index de81a04362..731526fd48 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/role/EphemeralRoleSelectMenu.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/role/EphemeralRoleSelectMenu.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.components.menus.role diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/role/EphemeralRoleSelectMenuContext.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/role/EphemeralRoleSelectMenuContext.kt index 4e4d8531d3..6853711365 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/role/EphemeralRoleSelectMenuContext.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/role/EphemeralRoleSelectMenuContext.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.components.menus.role diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/role/PublicRoleSelectMenu.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/role/PublicRoleSelectMenu.kt index 070a85711a..4f3ce51bf1 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/role/PublicRoleSelectMenu.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/role/PublicRoleSelectMenu.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.components.menus.role diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/role/PublicRoleSelectMenuContext.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/role/PublicRoleSelectMenuContext.kt index ed82f76e23..a34ecd54cf 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/role/PublicRoleSelectMenuContext.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/role/PublicRoleSelectMenuContext.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.components.menus.role diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/role/RoleSelectMenu.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/role/RoleSelectMenu.kt index 2392d161a3..bc0171f3e2 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/role/RoleSelectMenu.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/role/RoleSelectMenu.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.components.menus.role diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/role/RoleSelectMenuContext.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/role/RoleSelectMenuContext.kt index a310162c3c..5aa009896a 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/role/RoleSelectMenuContext.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/role/RoleSelectMenuContext.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.components.menus.role diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/string/EphemeralStringSelectMenu.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/string/EphemeralStringSelectMenu.kt index f7718e9b71..c8afaf32d2 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/string/EphemeralStringSelectMenu.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/string/EphemeralStringSelectMenu.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.components.menus.string diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/string/EphemeralStringSelectMenuContext.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/string/EphemeralStringSelectMenuContext.kt index 8173018db4..b084b75798 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/string/EphemeralStringSelectMenuContext.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/string/EphemeralStringSelectMenuContext.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.components.menus.string diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/string/PublicStringSelectMenu.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/string/PublicStringSelectMenu.kt index f6dc5b9014..1ed1cb6752 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/string/PublicStringSelectMenu.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/string/PublicStringSelectMenu.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.components.menus.string diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/string/PublicStringSelectMenuContext.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/string/PublicStringSelectMenuContext.kt index 3ce962fc5d..5cc7678569 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/string/PublicStringSelectMenuContext.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/string/PublicStringSelectMenuContext.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.components.menus.string diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/string/StringSelectMenu.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/string/StringSelectMenu.kt index 701401823a..06ab55401b 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/string/StringSelectMenu.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/string/StringSelectMenu.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.components.menus.string diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/string/StringSelectMenuContext.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/string/StringSelectMenuContext.kt index c205ba68fd..8608707795 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/string/StringSelectMenuContext.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/string/StringSelectMenuContext.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.components.menus.string diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/user/EphemeralUserSelectMenu.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/user/EphemeralUserSelectMenu.kt index 64f86f7818..1b35b483b7 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/user/EphemeralUserSelectMenu.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/user/EphemeralUserSelectMenu.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.components.menus.user diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/user/EphemeralUserSelectMenuContext.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/user/EphemeralUserSelectMenuContext.kt index 876689969d..7e59c1c8d7 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/user/EphemeralUserSelectMenuContext.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/user/EphemeralUserSelectMenuContext.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.components.menus.user diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/user/PublicUserSelectMenu.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/user/PublicUserSelectMenu.kt index 97aec59f07..f9dbb87c64 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/user/PublicUserSelectMenu.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/user/PublicUserSelectMenu.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.components.menus.user diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/user/PublicUserSelectMenuContext.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/user/PublicUserSelectMenuContext.kt index d7b05af6ac..8d7cb47df8 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/user/PublicUserSelectMenuContext.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/user/PublicUserSelectMenuContext.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.components.menus.user diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/user/UserSelectMenu.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/user/UserSelectMenu.kt index f229c06294..a9cf1546aa 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/user/UserSelectMenu.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/user/UserSelectMenu.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.components.menus.user diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/user/UserSelectMenuContext.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/user/UserSelectMenuContext.kt index 550d983d5c..82444df0ea 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/user/UserSelectMenuContext.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/components/menus/user/UserSelectMenuContext.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.components.menus.user diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/components/types/HasPartialEmoji.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/components/types/HasPartialEmoji.kt index d83ea3a42d..0a9d38e12c 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/components/types/HasPartialEmoji.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/components/types/HasPartialEmoji.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.components.types diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/datacollection/DataAPIClient.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/datacollection/DataAPIClient.kt index 6ac307a2ad..3f804f7ee1 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/datacollection/DataAPIClient.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/datacollection/DataAPIClient.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.datacollection diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/datacollection/DataCollector.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/datacollection/DataCollector.kt index ba4bead36f..a8a0376c2f 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/datacollection/DataCollector.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/datacollection/DataCollector.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.datacollection diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/events/EventContext.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/events/EventContext.kt index 6e03a48ce2..b333168ca6 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/events/EventContext.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/events/EventContext.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.events diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/events/EventHandler.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/events/EventHandler.kt index fc88a80724..38431483a5 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/events/EventHandler.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/events/EventHandler.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.events diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/events/ExtensionStateEvent.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/events/ExtensionStateEvent.kt index 43e8da466b..306d1614a8 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/events/ExtensionStateEvent.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/events/ExtensionStateEvent.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.events diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/events/KordExEvent.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/events/KordExEvent.kt index 1267e8ae8c..2766fa68c5 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/events/KordExEvent.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/events/KordExEvent.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.events diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/events/ModalInteractionCompleteEvent.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/events/ModalInteractionCompleteEvent.kt index afc4386107..6645c4fa3b 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/events/ModalInteractionCompleteEvent.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/events/ModalInteractionCompleteEvent.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.events diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/events/extra/GuildJoinRequestDeleteEvent.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/events/extra/GuildJoinRequestDeleteEvent.kt index 0f0440a90c..1629237681 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/events/extra/GuildJoinRequestDeleteEvent.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/events/extra/GuildJoinRequestDeleteEvent.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.events.extra diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/events/extra/GuildJoinRequestUpdateEvent.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/events/extra/GuildJoinRequestUpdateEvent.kt index 062fce273c..d321d3d00c 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/events/extra/GuildJoinRequestUpdateEvent.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/events/extra/GuildJoinRequestUpdateEvent.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.events.extra diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/events/extra/models/ApplicationStatus.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/events/extra/models/ApplicationStatus.kt index 0168b8c9bf..423425b94f 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/events/extra/models/ApplicationStatus.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/events/extra/models/ApplicationStatus.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.events.extra.models diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/events/extra/models/GuildJoinRequest.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/events/extra/models/GuildJoinRequest.kt index 4a7178f996..5dd08b9165 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/events/extra/models/GuildJoinRequest.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/events/extra/models/GuildJoinRequest.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.events.extra.models diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/events/extra/models/GuildJoinRequestDelete.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/events/extra/models/GuildJoinRequestDelete.kt index ed0d50db38..200737056f 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/events/extra/models/GuildJoinRequestDelete.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/events/extra/models/GuildJoinRequestDelete.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.events.extra.models diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/events/extra/models/GuildJoinRequestResponse.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/events/extra/models/GuildJoinRequestResponse.kt index a047c3fe70..eae7e9315a 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/events/extra/models/GuildJoinRequestResponse.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/events/extra/models/GuildJoinRequestResponse.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.events.extra.models diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/events/extra/models/GuildJoinRequestUpdate.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/events/extra/models/GuildJoinRequestUpdate.kt index 156ca9236f..48474fc203 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/events/extra/models/GuildJoinRequestUpdate.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/events/extra/models/GuildJoinRequestUpdate.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.events.extra.models diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/events/extra/models/GuildJoinRequestUser.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/events/extra/models/GuildJoinRequestUser.kt index 165d500665..d29f36816b 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/events/extra/models/GuildJoinRequestUser.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/events/extra/models/GuildJoinRequestUser.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.events.extra.models diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/events/interfaces/ChannelEvent.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/events/interfaces/ChannelEvent.kt index 87958551dc..3a0309991c 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/events/interfaces/ChannelEvent.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/events/interfaces/ChannelEvent.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.events.interfaces diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/events/interfaces/GuildEvent.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/events/interfaces/GuildEvent.kt index 6e8bdd87de..77d5cb97c7 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/events/interfaces/GuildEvent.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/events/interfaces/GuildEvent.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.events.interfaces diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/events/interfaces/MemberEvent.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/events/interfaces/MemberEvent.kt index 9d8d1a9623..d8fe3b13f0 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/events/interfaces/MemberEvent.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/events/interfaces/MemberEvent.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.events.interfaces diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/events/interfaces/MessageEvent.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/events/interfaces/MessageEvent.kt index df720f1489..8d55a02066 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/events/interfaces/MessageEvent.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/events/interfaces/MessageEvent.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.events.interfaces diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/events/interfaces/RoleEvent.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/events/interfaces/RoleEvent.kt index eb3d07b781..841a6e8ee1 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/events/interfaces/RoleEvent.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/events/interfaces/RoleEvent.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.events.interfaces diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/events/interfaces/UserEvent.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/events/interfaces/UserEvent.kt index 82feedff74..f8c2ed7d88 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/events/interfaces/UserEvent.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/events/interfaces/UserEvent.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.events.interfaces diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/extensions/Extension.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/extensions/Extension.kt index 38bbfcc21c..cc662b5336 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/extensions/Extension.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/extensions/Extension.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.extensions diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/extensions/ExtensionState.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/extensions/ExtensionState.kt index 844ed159c7..e0789ad8f3 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/extensions/ExtensionState.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/extensions/ExtensionState.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.extensions diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/extensions/_Commands.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/extensions/_Commands.kt index 58dc7e9147..67d224de65 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/extensions/_Commands.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/extensions/_Commands.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:Suppress("StringLiteralDuplication") diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/extensions/_Events.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/extensions/_Events.kt index 1994ebd341..93703b828a 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/extensions/_Events.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/extensions/_Events.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.extensions diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/extensions/base/HelpProvider.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/extensions/base/HelpProvider.kt index adbf3020d5..43368bc134 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/extensions/base/HelpProvider.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/extensions/base/HelpProvider.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.extensions.base diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/extensions/impl/AboutExtension.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/extensions/impl/AboutExtension.kt index 57b0b6b321..b4132a92bc 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/extensions/impl/AboutExtension.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/extensions/impl/AboutExtension.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.extensions.impl diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/extensions/impl/HelpExtension.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/extensions/impl/HelpExtension.kt index 2ab31de01f..07bf8c4f1a 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/extensions/impl/HelpExtension.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/extensions/impl/HelpExtension.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.extensions.impl diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/extensions/impl/SentryExtension.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/extensions/impl/SentryExtension.kt index f8955e2374..40e8472edd 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/extensions/impl/SentryExtension.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/extensions/impl/SentryExtension.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.extensions.impl diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/i18n/ResourceBundleTranslations.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/i18n/ResourceBundleTranslations.kt index 5ff0512214..cc9e3ec840 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/i18n/ResourceBundleTranslations.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/i18n/ResourceBundleTranslations.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.i18n diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/i18n/SupportedLocales.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/i18n/SupportedLocales.kt index 40fb0effa8..3b277d0e54 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/i18n/SupportedLocales.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/i18n/SupportedLocales.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.i18n diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/i18n/TranslationsProvider.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/i18n/TranslationsProvider.kt index e5edc4dc4a..b53b1ccb2d 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/i18n/TranslationsProvider.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/i18n/TranslationsProvider.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.i18n diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/i18n/_Constants.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/i18n/_Constants.kt index d6486a58df..2295301f4b 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/i18n/_Constants.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/i18n/_Constants.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.i18n diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/koin/KordExContext.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/koin/KordExContext.kt index eb2ad3e0a0..b5852193d4 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/koin/KordExContext.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/koin/KordExContext.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.koin diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/koin/KordExKoinComponent.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/koin/KordExKoinComponent.kt index b3c1f87131..eb92d2f119 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/koin/KordExKoinComponent.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/koin/KordExKoinComponent.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.koin diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/pagination/BaseButtonPaginator.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/pagination/BaseButtonPaginator.kt index 752eb66cac..6250973479 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/pagination/BaseButtonPaginator.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/pagination/BaseButtonPaginator.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.pagination diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/pagination/BasePaginator.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/pagination/BasePaginator.kt index c42439a8a7..c9ade61137 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/pagination/BasePaginator.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/pagination/BasePaginator.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.pagination diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/pagination/EphemeralResponsePaginator.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/pagination/EphemeralResponsePaginator.kt index ebd7a1f63d..85cd5480dd 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/pagination/EphemeralResponsePaginator.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/pagination/EphemeralResponsePaginator.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.pagination diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/pagination/MessageButtonPaginator.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/pagination/MessageButtonPaginator.kt index 668055c944..e63971d945 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/pagination/MessageButtonPaginator.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/pagination/MessageButtonPaginator.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.pagination diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/pagination/PublicFollowUpPaginator.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/pagination/PublicFollowUpPaginator.kt index 7f44dfbf8c..4a23980438 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/pagination/PublicFollowUpPaginator.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/pagination/PublicFollowUpPaginator.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.pagination diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/pagination/PublicResponsePaginator.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/pagination/PublicResponsePaginator.kt index 08686905a1..270ea20161 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/pagination/PublicResponsePaginator.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/pagination/PublicResponsePaginator.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.pagination diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/pagination/_Functions.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/pagination/_Functions.kt index c41823e906..51ba790b14 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/pagination/_Functions.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/pagination/_Functions.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.pagination diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/pagination/builders/PageTransitionCallback.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/pagination/builders/PageTransitionCallback.kt index b2e53e6d99..5678f92473 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/pagination/builders/PageTransitionCallback.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/pagination/builders/PageTransitionCallback.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.pagination.builders diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/pagination/builders/PaginatorBuilder.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/pagination/builders/PaginatorBuilder.kt index 4d0351b9cc..c81ad3713d 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/pagination/builders/PaginatorBuilder.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/pagination/builders/PaginatorBuilder.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.pagination.builders diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/pagination/pages/Page.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/pagination/pages/Page.kt index 9d8a47bec0..ec40a3e6c1 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/pagination/pages/Page.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/pagination/pages/Page.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.pagination.pages diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/pagination/pages/Pages.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/pagination/pages/Pages.kt index 7f62395689..6b1e9df640 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/pagination/pages/Pages.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/pagination/pages/Pages.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.pagination.pages diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/parsers/BooleanParser.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/parsers/BooleanParser.kt index 7b6c5f8778..a2072ff8f1 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/parsers/BooleanParser.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/parsers/BooleanParser.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.parsers diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/parsers/ColorParser.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/parsers/ColorParser.kt index 0d89a6f8dd..d9914ee3f1 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/parsers/ColorParser.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/parsers/ColorParser.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.parsers diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/parsers/DurationParser.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/parsers/DurationParser.kt index 25d5f15700..3b93b5ee90 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/parsers/DurationParser.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/parsers/DurationParser.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.parsers diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/parsers/Exceptions.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/parsers/Exceptions.kt index c0b6c22852..fbaf572c6e 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/parsers/Exceptions.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/parsers/Exceptions.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.parsers diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/parsers/caches/ColorCache.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/parsers/caches/ColorCache.kt index 4e01a70353..a0875db2d0 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/parsers/caches/ColorCache.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/parsers/caches/ColorCache.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.parsers.caches diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/parsers/caches/TimeUnitCache.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/parsers/caches/TimeUnitCache.kt index b3e547e298..40deabc175 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/parsers/caches/TimeUnitCache.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/parsers/caches/TimeUnitCache.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.parsers.caches diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/plugins/KordExPlugin.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/plugins/KordExPlugin.kt index 5fa43a2f18..a9ba783967 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/plugins/KordExPlugin.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/plugins/KordExPlugin.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.plugins diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/plugins/PluginManager.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/plugins/PluginManager.kt index 34439d271e..9721abd96e 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/plugins/PluginManager.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/plugins/PluginManager.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.plugins diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/plugins/_Types.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/plugins/_Types.kt index 52e40f4270..605c553cd2 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/plugins/_Types.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/plugins/_Types.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.plugins diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/registry/AbstractDeconstructingApplicationCommandRegistryStorage.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/registry/AbstractDeconstructingApplicationCommandRegistryStorage.kt index ab4995ccb6..2aabf03719 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/registry/AbstractDeconstructingApplicationCommandRegistryStorage.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/registry/AbstractDeconstructingApplicationCommandRegistryStorage.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.registry diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/registry/DefaultLocalRegistryStorage.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/registry/DefaultLocalRegistryStorage.kt index e957a875dc..a281b6c26f 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/registry/DefaultLocalRegistryStorage.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/registry/DefaultLocalRegistryStorage.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.registry diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/registry/RegistryStorage.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/registry/RegistryStorage.kt index 94029f244a..9b0e8c249d 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/registry/RegistryStorage.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/registry/RegistryStorage.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.registry diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/sentry/BreadcrumbType.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/sentry/BreadcrumbType.kt index d645398db2..9cd58c2aee 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/sentry/BreadcrumbType.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/sentry/BreadcrumbType.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.sentry diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/sentry/SentryAdapter.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/sentry/SentryAdapter.kt index 580eb83a16..08c7385e7c 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/sentry/SentryAdapter.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/sentry/SentryAdapter.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.sentry diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/sentry/SentryContext.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/sentry/SentryContext.kt index 94dbe4ead1..96994b3383 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/sentry/SentryContext.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/sentry/SentryContext.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:Suppress("TooGenericExceptionCaught") diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/sentry/SentryIdConverter.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/sentry/SentryIdConverter.kt index 8af86349fa..07b67d9b20 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/sentry/SentryIdConverter.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/sentry/SentryIdConverter.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.sentry diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/sentry/_Utils.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/sentry/_Utils.kt index 42bb74e98e..7168413d8d 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/sentry/_Utils.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/sentry/_Utils.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:Suppress("TooGenericExceptionCaught") diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/sentry/captures/SentryBreadcrumbCapture.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/sentry/captures/SentryBreadcrumbCapture.kt index 9a8252fb8d..daa4fb5e56 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/sentry/captures/SentryBreadcrumbCapture.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/sentry/captures/SentryBreadcrumbCapture.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.sentry.captures diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/sentry/captures/SentryCapture.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/sentry/captures/SentryCapture.kt index 1a86b828f1..968189fc07 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/sentry/captures/SentryCapture.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/sentry/captures/SentryCapture.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.sentry.captures diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/sentry/captures/SentryExceptionCapture.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/sentry/captures/SentryExceptionCapture.kt index 8c479254ed..ea98711b61 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/sentry/captures/SentryExceptionCapture.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/sentry/captures/SentryExceptionCapture.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.sentry.captures diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/sentry/captures/SentryScopeCapture.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/sentry/captures/SentryScopeCapture.kt index f5fbc08ce6..c6e8f6ad7c 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/sentry/captures/SentryScopeCapture.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/sentry/captures/SentryScopeCapture.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.sentry.captures diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/storage/Data.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/storage/Data.kt index e897859912..bf0138877a 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/storage/Data.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/storage/Data.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.storage diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/storage/DataAdapter.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/storage/DataAdapter.kt index 79322987ad..9955765a1a 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/storage/DataAdapter.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/storage/DataAdapter.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.storage diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/storage/StorageType.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/storage/StorageType.kt index 33cbd779eb..53347cb191 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/storage/StorageType.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/storage/StorageType.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.storage diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/storage/StorageTypeSerializer.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/storage/StorageTypeSerializer.kt index 76518f6c80..cb6d46f805 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/storage/StorageTypeSerializer.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/storage/StorageTypeSerializer.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.storage diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/storage/StorageUnit.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/storage/StorageUnit.kt index 841545feb6..1a5d5edd1c 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/storage/StorageUnit.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/storage/StorageUnit.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.storage diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/storage/_Utils.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/storage/_Utils.kt index ab91ee5aaa..749352d2f3 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/storage/_Utils.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/storage/_Utils.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.storage diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/storage/toml/TomlDataAdapter.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/storage/toml/TomlDataAdapter.kt index 677cd59100..2e674bdea6 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/storage/toml/TomlDataAdapter.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/storage/toml/TomlDataAdapter.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:Suppress("UNCHECKED_CAST") diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/time/TimestampType.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/time/TimestampType.kt index cca339ca23..acd0de50eb 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/time/TimestampType.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/time/TimestampType.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.time diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/time/Utils.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/time/Utils.kt index 75ce70a19f..595c5e67cc 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/time/Utils.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/time/Utils.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.time diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/types/EphemeralInteractionContext.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/types/EphemeralInteractionContext.kt index 34e1fcddbb..8b0b00f06a 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/types/EphemeralInteractionContext.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/types/EphemeralInteractionContext.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.types diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/types/FailureReason.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/types/FailureReason.kt index a9fbcb1f37..808243e79d 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/types/FailureReason.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/types/FailureReason.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.types diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/types/InteractionContext.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/types/InteractionContext.kt index 941bde477f..416f2ce531 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/types/InteractionContext.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/types/InteractionContext.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:Suppress("UnnecessaryAbstractClass") diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/types/Lockable.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/types/Lockable.kt index 231b18a4c3..902223a5fe 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/types/Lockable.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/types/Lockable.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.types diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/types/PublicInteractionContext.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/types/PublicInteractionContext.kt index 83c0494b2e..7e70eb6f02 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/types/PublicInteractionContext.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/types/PublicInteractionContext.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.types diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/types/TranslatableContext.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/types/TranslatableContext.kt index b3c53e04d9..d06a45cdcb 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/types/TranslatableContext.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/types/TranslatableContext.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.types diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/utils/Mentions.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/utils/Mentions.kt index c000add03f..2403dd07a4 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/utils/Mentions.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/utils/Mentions.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.utils diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_Attachments.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_Attachments.kt index 6cb246403d..8c090ebed2 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_Attachments.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_Attachments.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.utils diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_Channel.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_Channel.kt index c1fd59495f..cdd4bc72ad 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_Channel.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_Channel.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:Suppress("StringLiteralDuplication") diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_ChannelType.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_ChannelType.kt index 7a00d8d272..b79465f5e2 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_ChannelType.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_ChannelType.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.utils diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_Components.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_Components.kt index f0e4ddf05d..17b93bc56d 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_Components.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_Components.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:OptIn(KordUnsafe::class) diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_Durations.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_Durations.kt index 0285244b48..3d3af03774 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_Durations.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_Durations.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.utils diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_Environment.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_Environment.kt index 850d9990ad..c370ae8526 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_Environment.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_Environment.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.utils diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_Guilds.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_Guilds.kt index 35d556ac46..43a3d71442 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_Guilds.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_Guilds.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.utils diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_Intents.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_Intents.kt index 96e44b73ff..31436d7d10 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_Intents.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_Intents.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.utils diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_Interactions.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_Interactions.kt index 1532528fb8..1b903f9045 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_Interactions.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_Interactions.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.utils diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_Koin.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_Koin.kt index 93390760ec..77818b92f2 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_Koin.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_Koin.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.utils diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_Kord.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_Kord.kt index e56e3fecea..e41ebe6948 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_Kord.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_Kord.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.utils diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_Lists.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_Lists.kt index 228b21bfce..1bbab30202 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_Lists.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_Lists.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.utils diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_Maps.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_Maps.kt index 51dcdfdf08..a4331c14b5 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_Maps.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_Maps.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.utils diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_Member.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_Member.kt index baf544dd8c..4b0f828abb 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_Member.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_Member.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.utils diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_Message.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_Message.kt index 5ca78714a9..63aaeaffd6 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_Message.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_Message.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.utils diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_Misc.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_Misc.kt index 45c20a8e52..5875e8a941 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_Misc.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_Misc.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.utils diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_NsfwLevels.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_NsfwLevels.kt index a588d24d0c..27ca5fffe0 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_NsfwLevels.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_NsfwLevels.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.utils diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_Permissions.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_Permissions.kt index f33054dda1..b388695359 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_Permissions.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_Permissions.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.utils diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_Reaction.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_Reaction.kt index 4de932c07e..a8098fc997 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_Reaction.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_Reaction.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.utils diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_RestRequest.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_RestRequest.kt index bc42d72640..77fd5a0495 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_RestRequest.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_RestRequest.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.utils diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_Role.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_Role.kt index 384ac0ae24..840beb5d2f 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_Role.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_Role.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.utils diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_String.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_String.kt index a833edb1cc..554604ebd8 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_String.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_String.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.utils diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_Translation.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_Translation.kt index e6edbc3b0a..7cf2572876 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_Translation.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_Translation.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.utils diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_Users.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_Users.kt index 396ab789fd..fea8039d1a 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_Users.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/utils/_Users.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.utils diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/utils/collections/FixedLengthQueue.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/utils/collections/FixedLengthQueue.kt index 48a97be16b..12129775cf 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/utils/collections/FixedLengthQueue.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/utils/collections/FixedLengthQueue.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.utils.collections diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/utils/collections/serializers/FixedLengthQueueSerializer.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/utils/collections/serializers/FixedLengthQueueSerializer.kt index b00093251b..86a306d251 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/utils/collections/serializers/FixedLengthQueueSerializer.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/utils/collections/serializers/FixedLengthQueueSerializer.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:Suppress("MagicNumber") diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/utils/deltas/ChangeSet.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/utils/deltas/ChangeSet.kt index b3e3a803dc..d3bac8bcb2 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/utils/deltas/ChangeSet.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/utils/deltas/ChangeSet.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.utils.deltas diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/utils/deltas/MemberDelta.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/utils/deltas/MemberDelta.kt index cbf698e4e2..0d42ccf03d 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/utils/deltas/MemberDelta.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/utils/deltas/MemberDelta.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.utils.deltas diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/utils/deltas/MessageDelta.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/utils/deltas/MessageDelta.kt index 16dbaef519..164b6638b4 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/utils/deltas/MessageDelta.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/utils/deltas/MessageDelta.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.utils.deltas diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/utils/deltas/RoleDelta.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/utils/deltas/RoleDelta.kt index 740f210f00..fd90ed8790 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/utils/deltas/RoleDelta.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/utils/deltas/RoleDelta.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.utils.deltas diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/utils/deltas/UserDelta.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/utils/deltas/UserDelta.kt index e200719008..29ccbe9867 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/utils/deltas/UserDelta.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/utils/deltas/UserDelta.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.utils.deltas diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/utils/scheduling/Scheduler.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/utils/scheduling/Scheduler.kt index 90bdff484c..476de007b0 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/utils/scheduling/Scheduler.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/utils/scheduling/Scheduler.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:OptIn(ExperimentalTime::class) diff --git a/kord-extensions/src/main/kotlin/dev/kordex/core/utils/scheduling/Task.kt b/kord-extensions/src/main/kotlin/dev/kordex/core/utils/scheduling/Task.kt index b516194c53..82f8d2a51b 100644 --- a/kord-extensions/src/main/kotlin/dev/kordex/core/utils/scheduling/Task.kt +++ b/kord-extensions/src/main/kotlin/dev/kordex/core/utils/scheduling/Task.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.core.utils.scheduling diff --git a/kord-extensions/src/test/kotlin/dev/kordex/test/core/KoinExtension.kt b/kord-extensions/src/test/kotlin/dev/kordex/test/core/KoinExtension.kt index 727f722af8..9c3443aeec 100644 --- a/kord-extensions/src/test/kotlin/dev/kordex/test/core/KoinExtension.kt +++ b/kord-extensions/src/test/kotlin/dev/kordex/test/core/KoinExtension.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.test.core diff --git a/kord-extensions/src/test/kotlin/dev/kordex/test/core/impl/TimestampConverterTest.kt b/kord-extensions/src/test/kotlin/dev/kordex/test/core/impl/TimestampConverterTest.kt index 4df60cf596..ec62368b63 100644 --- a/kord-extensions/src/test/kotlin/dev/kordex/test/core/impl/TimestampConverterTest.kt +++ b/kord-extensions/src/test/kotlin/dev/kordex/test/core/impl/TimestampConverterTest.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.test.core.impl diff --git a/kord-extensions/src/test/kotlin/dev/kordex/test/core/test/SchedulerTest.kt b/kord-extensions/src/test/kotlin/dev/kordex/test/core/test/SchedulerTest.kt index df01627aaa..00e204ca8d 100644 --- a/kord-extensions/src/test/kotlin/dev/kordex/test/core/test/SchedulerTest.kt +++ b/kord-extensions/src/test/kotlin/dev/kordex/test/core/test/SchedulerTest.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.test.core.test diff --git a/kord-extensions/src/test/kotlin/dev/kordex/test/core/utils/MapTest.kt b/kord-extensions/src/test/kotlin/dev/kordex/test/core/utils/MapTest.kt index ba46b963c4..aafff16de4 100644 --- a/kord-extensions/src/test/kotlin/dev/kordex/test/core/utils/MapTest.kt +++ b/kord-extensions/src/test/kotlin/dev/kordex/test/core/utils/MapTest.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.test.core.utils diff --git a/kord-extensions/src/test/kotlin/dev/kordex/test/core/utils/StringTest.kt b/kord-extensions/src/test/kotlin/dev/kordex/test/core/utils/StringTest.kt index 3578bc1947..c3ffa3690d 100644 --- a/kord-extensions/src/test/kotlin/dev/kordex/test/core/utils/StringTest.kt +++ b/kord-extensions/src/test/kotlin/dev/kordex/test/core/utils/StringTest.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.test.core.utils diff --git a/modules/data/data-mongodb/src/main/kotlin/dev/kordex/modules/data/mongodb/Constants.kt b/modules/data/data-mongodb/src/main/kotlin/dev/kordex/modules/data/mongodb/Constants.kt index 1c3e755182..fe82159777 100644 --- a/modules/data/data-mongodb/src/main/kotlin/dev/kordex/modules/data/mongodb/Constants.kt +++ b/modules/data/data-mongodb/src/main/kotlin/dev/kordex/modules/data/mongodb/Constants.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.data.mongodb diff --git a/modules/data/data-mongodb/src/main/kotlin/dev/kordex/modules/data/mongodb/Functions.kt b/modules/data/data-mongodb/src/main/kotlin/dev/kordex/modules/data/mongodb/Functions.kt index bbef228bb4..cb21413e60 100644 --- a/modules/data/data-mongodb/src/main/kotlin/dev/kordex/modules/data/mongodb/Functions.kt +++ b/modules/data/data-mongodb/src/main/kotlin/dev/kordex/modules/data/mongodb/Functions.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.data.mongodb diff --git a/modules/data/data-mongodb/src/main/kotlin/dev/kordex/modules/data/mongodb/MongoDBDataAdapter.kt b/modules/data/data-mongodb/src/main/kotlin/dev/kordex/modules/data/mongodb/MongoDBDataAdapter.kt index 53fa121ba3..d8d26fcbc9 100644 --- a/modules/data/data-mongodb/src/main/kotlin/dev/kordex/modules/data/mongodb/MongoDBDataAdapter.kt +++ b/modules/data/data-mongodb/src/main/kotlin/dev/kordex/modules/data/mongodb/MongoDBDataAdapter.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:Suppress("UNCHECKED_CAST") diff --git a/modules/data/data-mongodb/src/main/kotlin/dev/kordex/modules/data/mongodb/Registry.kt b/modules/data/data-mongodb/src/main/kotlin/dev/kordex/modules/data/mongodb/Registry.kt index 55997e68d5..7adf64d14a 100644 --- a/modules/data/data-mongodb/src/main/kotlin/dev/kordex/modules/data/mongodb/Registry.kt +++ b/modules/data/data-mongodb/src/main/kotlin/dev/kordex/modules/data/mongodb/Registry.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.data.mongodb diff --git a/modules/data/data-mongodb/src/main/kotlin/dev/kordex/modules/data/mongodb/db/AdaptedData.kt b/modules/data/data-mongodb/src/main/kotlin/dev/kordex/modules/data/mongodb/db/AdaptedData.kt index 953ab6045f..90ac2535e6 100644 --- a/modules/data/data-mongodb/src/main/kotlin/dev/kordex/modules/data/mongodb/db/AdaptedData.kt +++ b/modules/data/data-mongodb/src/main/kotlin/dev/kordex/modules/data/mongodb/db/AdaptedData.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.data.mongodb.db diff --git a/modules/data/data-mongodb/src/main/kotlin/dev/kordex/modules/data/mongodb/db/Database.kt b/modules/data/data-mongodb/src/main/kotlin/dev/kordex/modules/data/mongodb/db/Database.kt index d7776102dd..5b37a95243 100644 --- a/modules/data/data-mongodb/src/main/kotlin/dev/kordex/modules/data/mongodb/db/Database.kt +++ b/modules/data/data-mongodb/src/main/kotlin/dev/kordex/modules/data/mongodb/db/Database.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.data.mongodb.db diff --git a/modules/data/data-mongodb/src/main/kotlin/dev/kordex/modules/data/mongodb/db/Entity.kt b/modules/data/data-mongodb/src/main/kotlin/dev/kordex/modules/data/mongodb/db/Entity.kt index 00ad051594..6b04034d7e 100644 --- a/modules/data/data-mongodb/src/main/kotlin/dev/kordex/modules/data/mongodb/db/Entity.kt +++ b/modules/data/data-mongodb/src/main/kotlin/dev/kordex/modules/data/mongodb/db/Entity.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.data.mongodb.db diff --git a/modules/data/data-mongodb/src/main/kotlin/dev/kordex/modules/data/mongodb/db/Metadata.kt b/modules/data/data-mongodb/src/main/kotlin/dev/kordex/modules/data/mongodb/db/Metadata.kt index 7c5bccc54d..0e72f101b0 100644 --- a/modules/data/data-mongodb/src/main/kotlin/dev/kordex/modules/data/mongodb/db/Metadata.kt +++ b/modules/data/data-mongodb/src/main/kotlin/dev/kordex/modules/data/mongodb/db/Metadata.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.data.mongodb.db diff --git a/modules/data/data-mongodb/src/main/kotlin/dev/kordex/modules/data/mongodb/db/Migrations.kt b/modules/data/data-mongodb/src/main/kotlin/dev/kordex/modules/data/mongodb/db/Migrations.kt index a635f071e2..7b4c249479 100644 --- a/modules/data/data-mongodb/src/main/kotlin/dev/kordex/modules/data/mongodb/db/Migrations.kt +++ b/modules/data/data-mongodb/src/main/kotlin/dev/kordex/modules/data/mongodb/db/Migrations.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.data.mongodb.db diff --git a/modules/dev/dev-java-time/src/main/kotlin/dev/kordex/modules/dev/java/time/ChronoContainer.kt b/modules/dev/dev-java-time/src/main/kotlin/dev/kordex/modules/dev/java/time/ChronoContainer.kt index 471b608e76..6a49b3cc63 100644 --- a/modules/dev/dev-java-time/src/main/kotlin/dev/kordex/modules/dev/java/time/ChronoContainer.kt +++ b/modules/dev/dev-java-time/src/main/kotlin/dev/kordex/modules/dev/java/time/ChronoContainer.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.dev.java.time diff --git a/modules/dev/dev-java-time/src/main/kotlin/dev/kordex/modules/dev/java/time/ChronoContainerSerializer.kt b/modules/dev/dev-java-time/src/main/kotlin/dev/kordex/modules/dev/java/time/ChronoContainerSerializer.kt index 4de3518b3c..ad83c0fa97 100644 --- a/modules/dev/dev-java-time/src/main/kotlin/dev/kordex/modules/dev/java/time/ChronoContainerSerializer.kt +++ b/modules/dev/dev-java-time/src/main/kotlin/dev/kordex/modules/dev/java/time/ChronoContainerSerializer.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.dev.java.time diff --git a/modules/dev/dev-java-time/src/main/kotlin/dev/kordex/modules/dev/java/time/J8DurationCoalescingConverter.kt b/modules/dev/dev-java-time/src/main/kotlin/dev/kordex/modules/dev/java/time/J8DurationCoalescingConverter.kt index cfbe65ed2a..6dce6ea978 100644 --- a/modules/dev/dev-java-time/src/main/kotlin/dev/kordex/modules/dev/java/time/J8DurationCoalescingConverter.kt +++ b/modules/dev/dev-java-time/src/main/kotlin/dev/kordex/modules/dev/java/time/J8DurationCoalescingConverter.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.dev.java.time diff --git a/modules/dev/dev-java-time/src/main/kotlin/dev/kordex/modules/dev/java/time/J8DurationConverter.kt b/modules/dev/dev-java-time/src/main/kotlin/dev/kordex/modules/dev/java/time/J8DurationConverter.kt index 313048448a..b25209dadf 100644 --- a/modules/dev/dev-java-time/src/main/kotlin/dev/kordex/modules/dev/java/time/J8DurationConverter.kt +++ b/modules/dev/dev-java-time/src/main/kotlin/dev/kordex/modules/dev/java/time/J8DurationConverter.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.dev.java.time diff --git a/modules/dev/dev-java-time/src/main/kotlin/dev/kordex/modules/dev/java/time/J8DurationParser.kt b/modules/dev/dev-java-time/src/main/kotlin/dev/kordex/modules/dev/java/time/J8DurationParser.kt index 4ab6624fcc..cf27012ce3 100644 --- a/modules/dev/dev-java-time/src/main/kotlin/dev/kordex/modules/dev/java/time/J8DurationParser.kt +++ b/modules/dev/dev-java-time/src/main/kotlin/dev/kordex/modules/dev/java/time/J8DurationParser.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.dev.java.time diff --git a/modules/dev/dev-java-time/src/main/kotlin/dev/kordex/modules/dev/java/time/J8TimeUnitCache.kt b/modules/dev/dev-java-time/src/main/kotlin/dev/kordex/modules/dev/java/time/J8TimeUnitCache.kt index 7b85f6d262..76c6ae84e3 100644 --- a/modules/dev/dev-java-time/src/main/kotlin/dev/kordex/modules/dev/java/time/J8TimeUnitCache.kt +++ b/modules/dev/dev-java-time/src/main/kotlin/dev/kordex/modules/dev/java/time/J8TimeUnitCache.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.dev.java.time diff --git a/modules/dev/dev-java-time/src/main/kotlin/dev/kordex/modules/dev/java/time/Utils.kt b/modules/dev/dev-java-time/src/main/kotlin/dev/kordex/modules/dev/java/time/Utils.kt index c50959b6a7..462ba214b7 100644 --- a/modules/dev/dev-java-time/src/main/kotlin/dev/kordex/modules/dev/java/time/Utils.kt +++ b/modules/dev/dev-java-time/src/main/kotlin/dev/kordex/modules/dev/java/time/Utils.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.dev.java.time diff --git a/modules/dev/dev-java-time/src/test/kotlin/dev/kordex/test/modules/dev/java/time/Bot.kt b/modules/dev/dev-java-time/src/test/kotlin/dev/kordex/test/modules/dev/java/time/Bot.kt index 34dfb073e2..71a9995be0 100644 --- a/modules/dev/dev-java-time/src/test/kotlin/dev/kordex/test/modules/dev/java/time/Bot.kt +++ b/modules/dev/dev-java-time/src/test/kotlin/dev/kordex/test/modules/dev/java/time/Bot.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.test.modules.dev.java.time diff --git a/modules/dev/dev-java-time/src/test/kotlin/dev/kordex/test/modules/dev/java/time/TestExtension.kt b/modules/dev/dev-java-time/src/test/kotlin/dev/kordex/test/modules/dev/java/time/TestExtension.kt index 710877bc4e..dab47f6e1b 100644 --- a/modules/dev/dev-java-time/src/test/kotlin/dev/kordex/test/modules/dev/java/time/TestExtension.kt +++ b/modules/dev/dev-java-time/src/test/kotlin/dev/kordex/test/modules/dev/java/time/TestExtension.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.test.modules.dev.java.time diff --git a/modules/dev/dev-time4j/src/main/kotlin/dev/kordex/modules/dev/time4j/T4JDurationCoalescingConverter.kt b/modules/dev/dev-time4j/src/main/kotlin/dev/kordex/modules/dev/time4j/T4JDurationCoalescingConverter.kt index b169528606..c6617e71be 100644 --- a/modules/dev/dev-time4j/src/main/kotlin/dev/kordex/modules/dev/time4j/T4JDurationCoalescingConverter.kt +++ b/modules/dev/dev-time4j/src/main/kotlin/dev/kordex/modules/dev/time4j/T4JDurationCoalescingConverter.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.dev.time4j diff --git a/modules/dev/dev-time4j/src/main/kotlin/dev/kordex/modules/dev/time4j/T4JDurationConverter.kt b/modules/dev/dev-time4j/src/main/kotlin/dev/kordex/modules/dev/time4j/T4JDurationConverter.kt index bc0441190a..e99f9988c5 100644 --- a/modules/dev/dev-time4j/src/main/kotlin/dev/kordex/modules/dev/time4j/T4JDurationConverter.kt +++ b/modules/dev/dev-time4j/src/main/kotlin/dev/kordex/modules/dev/time4j/T4JDurationConverter.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.dev.time4j diff --git a/modules/dev/dev-time4j/src/main/kotlin/dev/kordex/modules/dev/time4j/T4JDurationParser.kt b/modules/dev/dev-time4j/src/main/kotlin/dev/kordex/modules/dev/time4j/T4JDurationParser.kt index 01f886ff8e..c03acf627a 100644 --- a/modules/dev/dev-time4j/src/main/kotlin/dev/kordex/modules/dev/time4j/T4JDurationParser.kt +++ b/modules/dev/dev-time4j/src/main/kotlin/dev/kordex/modules/dev/time4j/T4JDurationParser.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.dev.time4j diff --git a/modules/dev/dev-time4j/src/main/kotlin/dev/kordex/modules/dev/time4j/T4JTimeUnitCache.kt b/modules/dev/dev-time4j/src/main/kotlin/dev/kordex/modules/dev/time4j/T4JTimeUnitCache.kt index 0eda9770a5..e0da3970bf 100644 --- a/modules/dev/dev-time4j/src/main/kotlin/dev/kordex/modules/dev/time4j/T4JTimeUnitCache.kt +++ b/modules/dev/dev-time4j/src/main/kotlin/dev/kordex/modules/dev/time4j/T4JTimeUnitCache.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.dev.time4j diff --git a/modules/dev/dev-time4j/src/main/kotlin/dev/kordex/modules/dev/time4j/Utils.kt b/modules/dev/dev-time4j/src/main/kotlin/dev/kordex/modules/dev/time4j/Utils.kt index 6f10d52daa..577b0bc3e4 100644 --- a/modules/dev/dev-time4j/src/main/kotlin/dev/kordex/modules/dev/time4j/Utils.kt +++ b/modules/dev/dev-time4j/src/main/kotlin/dev/kordex/modules/dev/time4j/Utils.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.dev.time4j diff --git a/modules/dev/dev-time4j/src/test/kotlin/dev/kordex/test/modules/dev/time4j/Bot.kt b/modules/dev/dev-time4j/src/test/kotlin/dev/kordex/test/modules/dev/time4j/Bot.kt index f2905a6d24..320abdfc61 100644 --- a/modules/dev/dev-time4j/src/test/kotlin/dev/kordex/test/modules/dev/time4j/Bot.kt +++ b/modules/dev/dev-time4j/src/test/kotlin/dev/kordex/test/modules/dev/time4j/Bot.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.test.modules.dev.time4j diff --git a/modules/dev/dev-time4j/src/test/kotlin/dev/kordex/test/modules/dev/time4j/TestExtension.kt b/modules/dev/dev-time4j/src/test/kotlin/dev/kordex/test/modules/dev/time4j/TestExtension.kt index 7bd24d0940..ec070a3fec 100644 --- a/modules/dev/dev-time4j/src/test/kotlin/dev/kordex/test/modules/dev/time4j/TestExtension.kt +++ b/modules/dev/dev-time4j/src/test/kotlin/dev/kordex/test/modules/dev/time4j/TestExtension.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.test.modules.dev.time4j diff --git a/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/annotations/UnsafeAPI.kt b/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/annotations/UnsafeAPI.kt index 26d1672407..20f7c5bf04 100644 --- a/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/annotations/UnsafeAPI.kt +++ b/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/annotations/UnsafeAPI.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.dev.unsafe.annotations diff --git a/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/commands/UnsafeCommandInteractionContext.kt b/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/commands/UnsafeCommandInteractionContext.kt index 3d21f31024..ee6fc078fa 100644 --- a/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/commands/UnsafeCommandInteractionContext.kt +++ b/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/commands/UnsafeCommandInteractionContext.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:Suppress("StringLiteralDuplication") diff --git a/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/commands/_Events.kt b/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/commands/_Events.kt index 1f6fd88f71..bd387ee535 100644 --- a/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/commands/_Events.kt +++ b/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/commands/_Events.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:OptIn(UnsafeAPI::class) diff --git a/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/commands/message/InitialMessageCommandResponse.kt b/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/commands/message/InitialMessageCommandResponse.kt index 1828e75020..f5b0952085 100644 --- a/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/commands/message/InitialMessageCommandResponse.kt +++ b/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/commands/message/InitialMessageCommandResponse.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.dev.unsafe.commands.message diff --git a/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/commands/message/UnsafeMessageCommand.kt b/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/commands/message/UnsafeMessageCommand.kt index c1ad6c8a83..0999fcef70 100644 --- a/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/commands/message/UnsafeMessageCommand.kt +++ b/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/commands/message/UnsafeMessageCommand.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:Suppress("TooGenericExceptionCaught") diff --git a/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/commands/slash/InitialSlashCommandResponse.kt b/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/commands/slash/InitialSlashCommandResponse.kt index 1b6ceec3e6..2f36f90d9a 100644 --- a/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/commands/slash/InitialSlashCommandResponse.kt +++ b/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/commands/slash/InitialSlashCommandResponse.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.dev.unsafe.commands.slash diff --git a/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/commands/slash/UnsafeSlashCommand.kt b/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/commands/slash/UnsafeSlashCommand.kt index 754f68f16f..1faf30556c 100644 --- a/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/commands/slash/UnsafeSlashCommand.kt +++ b/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/commands/slash/UnsafeSlashCommand.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:Suppress("TooGenericExceptionCaught") diff --git a/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/commands/user/InitialUserCommandResponse.kt b/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/commands/user/InitialUserCommandResponse.kt index 7d2912832f..efa00a620b 100644 --- a/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/commands/user/InitialUserCommandResponse.kt +++ b/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/commands/user/InitialUserCommandResponse.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.dev.unsafe.commands.user diff --git a/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/commands/user/UnsafeUserCommand.kt b/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/commands/user/UnsafeUserCommand.kt index 431288fa25..3bcc9f4cb2 100644 --- a/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/commands/user/UnsafeUserCommand.kt +++ b/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/commands/user/UnsafeUserCommand.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:Suppress("TooGenericExceptionCaught") diff --git a/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/components/UnsafeComponentInteractionContext.kt b/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/components/UnsafeComponentInteractionContext.kt index 8044c1e284..8d09ca846c 100644 --- a/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/components/UnsafeComponentInteractionContext.kt +++ b/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/components/UnsafeComponentInteractionContext.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:Suppress("StringLiteralDuplication") diff --git a/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/components/buttons/InitialInteractionButtonResponse.kt b/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/components/buttons/InitialInteractionButtonResponse.kt index 0ece3b7f6a..505490dcdf 100644 --- a/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/components/buttons/InitialInteractionButtonResponse.kt +++ b/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/components/buttons/InitialInteractionButtonResponse.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.dev.unsafe.components.buttons diff --git a/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/components/buttons/UnsafeButtonInteractionContext.kt b/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/components/buttons/UnsafeButtonInteractionContext.kt index 028acd33df..3700273e22 100644 --- a/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/components/buttons/UnsafeButtonInteractionContext.kt +++ b/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/components/buttons/UnsafeButtonInteractionContext.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:Suppress("StringLiteralDuplication") diff --git a/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/components/buttons/UnsafeInteractionButton.kt b/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/components/buttons/UnsafeInteractionButton.kt index 350042bde8..6b05ed4e77 100644 --- a/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/components/buttons/UnsafeInteractionButton.kt +++ b/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/components/buttons/UnsafeInteractionButton.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.dev.unsafe.components.buttons diff --git a/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/components/forms/InitialUnsafeModalResponse.kt b/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/components/forms/InitialUnsafeModalResponse.kt index 0a33e406f8..b98be3c0d1 100644 --- a/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/components/forms/InitialUnsafeModalResponse.kt +++ b/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/components/forms/InitialUnsafeModalResponse.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.dev.unsafe.components.forms diff --git a/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/components/forms/UnsafeModalForm.kt b/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/components/forms/UnsafeModalForm.kt index ceae215177..8cd553ea57 100644 --- a/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/components/forms/UnsafeModalForm.kt +++ b/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/components/forms/UnsafeModalForm.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.dev.unsafe.components.forms diff --git a/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/components/forms/_Responses.kt b/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/components/forms/_Responses.kt index 94469392ea..5a09f87544 100644 --- a/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/components/forms/_Responses.kt +++ b/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/components/forms/_Responses.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.dev.unsafe.components.forms diff --git a/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/components/menus/InitialInteractionSelectMenuResponse.kt b/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/components/menus/InitialInteractionSelectMenuResponse.kt index 5c51420a70..c8342e7564 100644 --- a/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/components/menus/InitialInteractionSelectMenuResponse.kt +++ b/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/components/menus/InitialInteractionSelectMenuResponse.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.dev.unsafe.components.menus diff --git a/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/components/menus/UnsafeSelectMenu.kt b/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/components/menus/UnsafeSelectMenu.kt index 32a18272c1..c77e592234 100644 --- a/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/components/menus/UnsafeSelectMenu.kt +++ b/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/components/menus/UnsafeSelectMenu.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.dev.unsafe.components.menus diff --git a/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/components/menus/UnsafeSelectMenuInteractionContext.kt b/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/components/menus/UnsafeSelectMenuInteractionContext.kt index 15a11adb36..2770c64239 100644 --- a/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/components/menus/UnsafeSelectMenuInteractionContext.kt +++ b/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/components/menus/UnsafeSelectMenuInteractionContext.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:Suppress("StringLiteralDuplication") diff --git a/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/components/menus/channel/UnsafeChannelSelectMenu.kt b/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/components/menus/channel/UnsafeChannelSelectMenu.kt index 8b8467abf6..cb8d0c3b56 100644 --- a/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/components/menus/channel/UnsafeChannelSelectMenu.kt +++ b/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/components/menus/channel/UnsafeChannelSelectMenu.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.dev.unsafe.components.menus.channel diff --git a/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/components/menus/channel/UnsafeChannelSelectMenuContext.kt b/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/components/menus/channel/UnsafeChannelSelectMenuContext.kt index 5c5f93c178..20a2d23e0e 100644 --- a/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/components/menus/channel/UnsafeChannelSelectMenuContext.kt +++ b/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/components/menus/channel/UnsafeChannelSelectMenuContext.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:OptIn(UnsafeAPI::class) diff --git a/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/components/menus/mentionable/UnsafeMentionableSelectMenu.kt b/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/components/menus/mentionable/UnsafeMentionableSelectMenu.kt index 05cab9f7a1..9b224df96d 100644 --- a/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/components/menus/mentionable/UnsafeMentionableSelectMenu.kt +++ b/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/components/menus/mentionable/UnsafeMentionableSelectMenu.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.dev.unsafe.components.menus.mentionable diff --git a/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/components/menus/mentionable/UnsafeMentionableSelectMenuContext.kt b/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/components/menus/mentionable/UnsafeMentionableSelectMenuContext.kt index 4df02d2ba7..98483a5a67 100644 --- a/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/components/menus/mentionable/UnsafeMentionableSelectMenuContext.kt +++ b/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/components/menus/mentionable/UnsafeMentionableSelectMenuContext.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:OptIn(UnsafeAPI::class) diff --git a/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/components/menus/role/UnsafeRoleSelectMenu.kt b/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/components/menus/role/UnsafeRoleSelectMenu.kt index 6569d298c2..dbf2cd6fd9 100644 --- a/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/components/menus/role/UnsafeRoleSelectMenu.kt +++ b/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/components/menus/role/UnsafeRoleSelectMenu.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.dev.unsafe.components.menus.role diff --git a/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/components/menus/role/UnsafeRoleSelectMenuContext.kt b/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/components/menus/role/UnsafeRoleSelectMenuContext.kt index 4407ab5d9a..036dc03f66 100644 --- a/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/components/menus/role/UnsafeRoleSelectMenuContext.kt +++ b/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/components/menus/role/UnsafeRoleSelectMenuContext.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:OptIn(UnsafeAPI::class) diff --git a/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/components/menus/string/UnsafeStringSelectMenu.kt b/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/components/menus/string/UnsafeStringSelectMenu.kt index fa7ed84318..81dbeec3c3 100644 --- a/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/components/menus/string/UnsafeStringSelectMenu.kt +++ b/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/components/menus/string/UnsafeStringSelectMenu.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.dev.unsafe.components.menus.string diff --git a/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/components/menus/string/UnsafeStringSelectMenuContext.kt b/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/components/menus/string/UnsafeStringSelectMenuContext.kt index 335cbb9ba3..6e4a79e62f 100644 --- a/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/components/menus/string/UnsafeStringSelectMenuContext.kt +++ b/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/components/menus/string/UnsafeStringSelectMenuContext.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:OptIn(UnsafeAPI::class) diff --git a/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/components/menus/user/UnsafeUserSelectMenu.kt b/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/components/menus/user/UnsafeUserSelectMenu.kt index 3caf07c559..13ef7d8ab6 100644 --- a/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/components/menus/user/UnsafeUserSelectMenu.kt +++ b/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/components/menus/user/UnsafeUserSelectMenu.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.dev.unsafe.components.menus.user diff --git a/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/components/menus/user/UnsafeUserSelectMenuContext.kt b/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/components/menus/user/UnsafeUserSelectMenuContext.kt index 43edf43a66..ab427fbe54 100644 --- a/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/components/menus/user/UnsafeUserSelectMenuContext.kt +++ b/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/components/menus/user/UnsafeUserSelectMenuContext.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:OptIn(UnsafeAPI::class) diff --git a/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/contexts/UnsafeCommandMessageCommandContext.kt b/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/contexts/UnsafeCommandMessageCommandContext.kt index 60d998cc1e..037a5ad6c5 100644 --- a/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/contexts/UnsafeCommandMessageCommandContext.kt +++ b/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/contexts/UnsafeCommandMessageCommandContext.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.dev.unsafe.contexts diff --git a/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/contexts/UnsafeCommandSlashCommandContext.kt b/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/contexts/UnsafeCommandSlashCommandContext.kt index bb90e21343..d725dc18ac 100644 --- a/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/contexts/UnsafeCommandSlashCommandContext.kt +++ b/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/contexts/UnsafeCommandSlashCommandContext.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.dev.unsafe.contexts diff --git a/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/contexts/UnsafeCommandUserCommandContext.kt b/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/contexts/UnsafeCommandUserCommandContext.kt index c22a881830..a6ab9d6d6d 100644 --- a/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/contexts/UnsafeCommandUserCommandContext.kt +++ b/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/contexts/UnsafeCommandUserCommandContext.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.dev.unsafe.contexts diff --git a/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/contexts/UnsafeInteractionComponentContext.kt b/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/contexts/UnsafeInteractionComponentContext.kt index dd84c779a8..773b59c3eb 100644 --- a/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/contexts/UnsafeInteractionComponentContext.kt +++ b/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/contexts/UnsafeInteractionComponentContext.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.dev.unsafe.contexts diff --git a/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/converters/UnionConverter.kt b/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/converters/UnionConverter.kt index dc4056c5c5..7643287f4f 100644 --- a/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/converters/UnionConverter.kt +++ b/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/converters/UnionConverter.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:OptIn( diff --git a/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/extensions/_Commands.kt b/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/extensions/_Commands.kt index 022e436fb3..ad65a51e6a 100644 --- a/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/extensions/_Commands.kt +++ b/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/extensions/_Commands.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:Suppress("StringLiteralDuplication") diff --git a/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/extensions/_Components.kt b/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/extensions/_Components.kt index 9bc166624e..c6118b2f4b 100644 --- a/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/extensions/_Components.kt +++ b/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/extensions/_Components.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.dev.unsafe.extensions diff --git a/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/extensions/_SlashCommands.kt b/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/extensions/_SlashCommands.kt index a9fdbc02a5..4de547f21e 100644 --- a/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/extensions/_SlashCommands.kt +++ b/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/extensions/_SlashCommands.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:Suppress("StringLiteralDuplication") diff --git a/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/types/UnsafeInteractionContext.kt b/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/types/UnsafeInteractionContext.kt index 591871444c..79557fb629 100644 --- a/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/types/UnsafeInteractionContext.kt +++ b/modules/dev/dev-unsafe/src/main/kotlin/dev/kordex/modules/dev/unsafe/types/UnsafeInteractionContext.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:Suppress("StringLiteralDuplication") diff --git a/modules/functionality/func-phishing/src/main/kotlin/dev/kordex/modules/func/phishing/DetectionAction.kt b/modules/functionality/func-phishing/src/main/kotlin/dev/kordex/modules/func/phishing/DetectionAction.kt index 49448d12e0..319cf8e8c0 100644 --- a/modules/functionality/func-phishing/src/main/kotlin/dev/kordex/modules/func/phishing/DetectionAction.kt +++ b/modules/functionality/func-phishing/src/main/kotlin/dev/kordex/modules/func/phishing/DetectionAction.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.func.phishing diff --git a/modules/functionality/func-phishing/src/main/kotlin/dev/kordex/modules/func/phishing/DomainChange.kt b/modules/functionality/func-phishing/src/main/kotlin/dev/kordex/modules/func/phishing/DomainChange.kt index 9f4b44f1a7..45dd5317cb 100644 --- a/modules/functionality/func-phishing/src/main/kotlin/dev/kordex/modules/func/phishing/DomainChange.kt +++ b/modules/functionality/func-phishing/src/main/kotlin/dev/kordex/modules/func/phishing/DomainChange.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.func.phishing diff --git a/modules/functionality/func-phishing/src/main/kotlin/dev/kordex/modules/func/phishing/ExtPhishingBuilder.kt b/modules/functionality/func-phishing/src/main/kotlin/dev/kordex/modules/func/phishing/ExtPhishingBuilder.kt index 41e0abe97d..66c010064b 100644 --- a/modules/functionality/func-phishing/src/main/kotlin/dev/kordex/modules/func/phishing/ExtPhishingBuilder.kt +++ b/modules/functionality/func-phishing/src/main/kotlin/dev/kordex/modules/func/phishing/ExtPhishingBuilder.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:OptIn(ExperimentalTime::class) diff --git a/modules/functionality/func-phishing/src/main/kotlin/dev/kordex/modules/func/phishing/Functions.kt b/modules/functionality/func-phishing/src/main/kotlin/dev/kordex/modules/func/phishing/Functions.kt index 8bb7bfa498..26dde9517d 100644 --- a/modules/functionality/func-phishing/src/main/kotlin/dev/kordex/modules/func/phishing/Functions.kt +++ b/modules/functionality/func-phishing/src/main/kotlin/dev/kordex/modules/func/phishing/Functions.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.func.phishing diff --git a/modules/functionality/func-phishing/src/main/kotlin/dev/kordex/modules/func/phishing/PhishingApi.kt b/modules/functionality/func-phishing/src/main/kotlin/dev/kordex/modules/func/phishing/PhishingApi.kt index 0b5483ecef..d14bfb369d 100644 --- a/modules/functionality/func-phishing/src/main/kotlin/dev/kordex/modules/func/phishing/PhishingApi.kt +++ b/modules/functionality/func-phishing/src/main/kotlin/dev/kordex/modules/func/phishing/PhishingApi.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.func.phishing diff --git a/modules/functionality/func-phishing/src/main/kotlin/dev/kordex/modules/func/phishing/PhishingExtension.kt b/modules/functionality/func-phishing/src/main/kotlin/dev/kordex/modules/func/phishing/PhishingExtension.kt index 5bcb28354d..fc1bd2e826 100644 --- a/modules/functionality/func-phishing/src/main/kotlin/dev/kordex/modules/func/phishing/PhishingExtension.kt +++ b/modules/functionality/func-phishing/src/main/kotlin/dev/kordex/modules/func/phishing/PhishingExtension.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:Suppress("StringLiteralDuplication") diff --git a/modules/functionality/func-phishing/src/main/kotlin/dev/kordex/modules/func/phishing/PhishingWebsocketWrapper.kt b/modules/functionality/func-phishing/src/main/kotlin/dev/kordex/modules/func/phishing/PhishingWebsocketWrapper.kt index 4971a483bb..05a411d4d8 100644 --- a/modules/functionality/func-phishing/src/main/kotlin/dev/kordex/modules/func/phishing/PhishingWebsocketWrapper.kt +++ b/modules/functionality/func-phishing/src/main/kotlin/dev/kordex/modules/func/phishing/PhishingWebsocketWrapper.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:Suppress("TooGenericExceptionCaught", "MagicNumber") diff --git a/modules/functionality/func-tags/src/main/kotlin/dev/kordex/modules/func/tags/TagsExtension.kt b/modules/functionality/func-tags/src/main/kotlin/dev/kordex/modules/func/tags/TagsExtension.kt index 0828ece551..f6174dd2a3 100644 --- a/modules/functionality/func-tags/src/main/kotlin/dev/kordex/modules/func/tags/TagsExtension.kt +++ b/modules/functionality/func-tags/src/main/kotlin/dev/kordex/modules/func/tags/TagsExtension.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:Suppress("StringLiteralDuplication") diff --git a/modules/functionality/func-tags/src/main/kotlin/dev/kordex/modules/func/tags/_Types.kt b/modules/functionality/func-tags/src/main/kotlin/dev/kordex/modules/func/tags/_Types.kt index 60d8227678..6aa733fadb 100644 --- a/modules/functionality/func-tags/src/main/kotlin/dev/kordex/modules/func/tags/_Types.kt +++ b/modules/functionality/func-tags/src/main/kotlin/dev/kordex/modules/func/tags/_Types.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:Suppress("Filename") diff --git a/modules/functionality/func-tags/src/main/kotlin/dev/kordex/modules/func/tags/_Utils.kt b/modules/functionality/func-tags/src/main/kotlin/dev/kordex/modules/func/tags/_Utils.kt index 4edd860bf4..ce54e8e4b1 100644 --- a/modules/functionality/func-tags/src/main/kotlin/dev/kordex/modules/func/tags/_Utils.kt +++ b/modules/functionality/func-tags/src/main/kotlin/dev/kordex/modules/func/tags/_Utils.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.func.tags diff --git a/modules/functionality/func-tags/src/main/kotlin/dev/kordex/modules/func/tags/config/SimpleTagsConfig.kt b/modules/functionality/func-tags/src/main/kotlin/dev/kordex/modules/func/tags/config/SimpleTagsConfig.kt index 2fbf29e4fb..abb6addf64 100644 --- a/modules/functionality/func-tags/src/main/kotlin/dev/kordex/modules/func/tags/config/SimpleTagsConfig.kt +++ b/modules/functionality/func-tags/src/main/kotlin/dev/kordex/modules/func/tags/config/SimpleTagsConfig.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.func.tags.config diff --git a/modules/functionality/func-tags/src/main/kotlin/dev/kordex/modules/func/tags/config/TagsConfig.kt b/modules/functionality/func-tags/src/main/kotlin/dev/kordex/modules/func/tags/config/TagsConfig.kt index 67f69372f6..a879f1cdc6 100644 --- a/modules/functionality/func-tags/src/main/kotlin/dev/kordex/modules/func/tags/config/TagsConfig.kt +++ b/modules/functionality/func-tags/src/main/kotlin/dev/kordex/modules/func/tags/config/TagsConfig.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.func.tags.config diff --git a/modules/functionality/func-tags/src/main/kotlin/dev/kordex/modules/func/tags/data/MemoryTagsData.kt b/modules/functionality/func-tags/src/main/kotlin/dev/kordex/modules/func/tags/data/MemoryTagsData.kt index a9cf827306..7d3ba4ac6d 100644 --- a/modules/functionality/func-tags/src/main/kotlin/dev/kordex/modules/func/tags/data/MemoryTagsData.kt +++ b/modules/functionality/func-tags/src/main/kotlin/dev/kordex/modules/func/tags/data/MemoryTagsData.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.func.tags.data diff --git a/modules/functionality/func-tags/src/main/kotlin/dev/kordex/modules/func/tags/data/Tag.kt b/modules/functionality/func-tags/src/main/kotlin/dev/kordex/modules/func/tags/data/Tag.kt index 837fd8c991..2b80d9bd9b 100644 --- a/modules/functionality/func-tags/src/main/kotlin/dev/kordex/modules/func/tags/data/Tag.kt +++ b/modules/functionality/func-tags/src/main/kotlin/dev/kordex/modules/func/tags/data/Tag.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.func.tags.data diff --git a/modules/functionality/func-tags/src/main/kotlin/dev/kordex/modules/func/tags/data/TagsData.kt b/modules/functionality/func-tags/src/main/kotlin/dev/kordex/modules/func/tags/data/TagsData.kt index 0ca7041df4..177ca53c4c 100644 --- a/modules/functionality/func-tags/src/main/kotlin/dev/kordex/modules/func/tags/data/TagsData.kt +++ b/modules/functionality/func-tags/src/main/kotlin/dev/kordex/modules/func/tags/data/TagsData.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.func.tags.data diff --git a/modules/functionality/func-welcome/src/main/kotlin/dev/kordex/modules/func/welcome/WelcomeChannel.kt b/modules/functionality/func-welcome/src/main/kotlin/dev/kordex/modules/func/welcome/WelcomeChannel.kt index 1ffbfe093e..42b3029e05 100644 --- a/modules/functionality/func-welcome/src/main/kotlin/dev/kordex/modules/func/welcome/WelcomeChannel.kt +++ b/modules/functionality/func-welcome/src/main/kotlin/dev/kordex/modules/func/welcome/WelcomeChannel.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:Suppress("StringLiteralDuplication") diff --git a/modules/functionality/func-welcome/src/main/kotlin/dev/kordex/modules/func/welcome/WelcomeExtension.kt b/modules/functionality/func-welcome/src/main/kotlin/dev/kordex/modules/func/welcome/WelcomeExtension.kt index cf59e1cb4c..7a7029b987 100644 --- a/modules/functionality/func-welcome/src/main/kotlin/dev/kordex/modules/func/welcome/WelcomeExtension.kt +++ b/modules/functionality/func-welcome/src/main/kotlin/dev/kordex/modules/func/welcome/WelcomeExtension.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:Suppress("StringLiteralDuplication") diff --git a/modules/functionality/func-welcome/src/main/kotlin/dev/kordex/modules/func/welcome/_Utils.kt b/modules/functionality/func-welcome/src/main/kotlin/dev/kordex/modules/func/welcome/_Utils.kt index 4cc08b09a7..f854ec2e85 100644 --- a/modules/functionality/func-welcome/src/main/kotlin/dev/kordex/modules/func/welcome/_Utils.kt +++ b/modules/functionality/func-welcome/src/main/kotlin/dev/kordex/modules/func/welcome/_Utils.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.func.welcome diff --git a/modules/functionality/func-welcome/src/main/kotlin/dev/kordex/modules/func/welcome/blocks/Block.kt b/modules/functionality/func-welcome/src/main/kotlin/dev/kordex/modules/func/welcome/blocks/Block.kt index 27d860da0b..a1022b3bd5 100644 --- a/modules/functionality/func-welcome/src/main/kotlin/dev/kordex/modules/func/welcome/blocks/Block.kt +++ b/modules/functionality/func-welcome/src/main/kotlin/dev/kordex/modules/func/welcome/blocks/Block.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.func.welcome.blocks diff --git a/modules/functionality/func-welcome/src/main/kotlin/dev/kordex/modules/func/welcome/blocks/ComplianceBlock.kt b/modules/functionality/func-welcome/src/main/kotlin/dev/kordex/modules/func/welcome/blocks/ComplianceBlock.kt index 759c4dbcda..40197eb621 100644 --- a/modules/functionality/func-welcome/src/main/kotlin/dev/kordex/modules/func/welcome/blocks/ComplianceBlock.kt +++ b/modules/functionality/func-welcome/src/main/kotlin/dev/kordex/modules/func/welcome/blocks/ComplianceBlock.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:Suppress("DataClassContainsFunctions") diff --git a/modules/functionality/func-welcome/src/main/kotlin/dev/kordex/modules/func/welcome/blocks/EmbedBlock.kt b/modules/functionality/func-welcome/src/main/kotlin/dev/kordex/modules/func/welcome/blocks/EmbedBlock.kt index 5ad6d94fdd..115201a280 100644 --- a/modules/functionality/func-welcome/src/main/kotlin/dev/kordex/modules/func/welcome/blocks/EmbedBlock.kt +++ b/modules/functionality/func-welcome/src/main/kotlin/dev/kordex/modules/func/welcome/blocks/EmbedBlock.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.func.welcome.blocks diff --git a/modules/functionality/func-welcome/src/main/kotlin/dev/kordex/modules/func/welcome/blocks/InteractionBlock.kt b/modules/functionality/func-welcome/src/main/kotlin/dev/kordex/modules/func/welcome/blocks/InteractionBlock.kt index 70c3247cf5..fff1382e77 100644 --- a/modules/functionality/func-welcome/src/main/kotlin/dev/kordex/modules/func/welcome/blocks/InteractionBlock.kt +++ b/modules/functionality/func-welcome/src/main/kotlin/dev/kordex/modules/func/welcome/blocks/InteractionBlock.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.func.welcome.blocks diff --git a/modules/functionality/func-welcome/src/main/kotlin/dev/kordex/modules/func/welcome/blocks/LinksBlock.kt b/modules/functionality/func-welcome/src/main/kotlin/dev/kordex/modules/func/welcome/blocks/LinksBlock.kt index bae2cc70a3..66b8d11277 100644 --- a/modules/functionality/func-welcome/src/main/kotlin/dev/kordex/modules/func/welcome/blocks/LinksBlock.kt +++ b/modules/functionality/func-welcome/src/main/kotlin/dev/kordex/modules/func/welcome/blocks/LinksBlock.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.func.welcome.blocks diff --git a/modules/functionality/func-welcome/src/main/kotlin/dev/kordex/modules/func/welcome/blocks/MessageCopyBlock.kt b/modules/functionality/func-welcome/src/main/kotlin/dev/kordex/modules/func/welcome/blocks/MessageCopyBlock.kt index 6911209007..965f5a69a2 100644 --- a/modules/functionality/func-welcome/src/main/kotlin/dev/kordex/modules/func/welcome/blocks/MessageCopyBlock.kt +++ b/modules/functionality/func-welcome/src/main/kotlin/dev/kordex/modules/func/welcome/blocks/MessageCopyBlock.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:Suppress("StringLiteralDuplication") diff --git a/modules/functionality/func-welcome/src/main/kotlin/dev/kordex/modules/func/welcome/blocks/RolesBlock.kt b/modules/functionality/func-welcome/src/main/kotlin/dev/kordex/modules/func/welcome/blocks/RolesBlock.kt index 0dbf6c3a6c..9c65c56f88 100644 --- a/modules/functionality/func-welcome/src/main/kotlin/dev/kordex/modules/func/welcome/blocks/RolesBlock.kt +++ b/modules/functionality/func-welcome/src/main/kotlin/dev/kordex/modules/func/welcome/blocks/RolesBlock.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:Suppress("DataClassContainsFunctions") diff --git a/modules/functionality/func-welcome/src/main/kotlin/dev/kordex/modules/func/welcome/blocks/RulesBlock.kt b/modules/functionality/func-welcome/src/main/kotlin/dev/kordex/modules/func/welcome/blocks/RulesBlock.kt index f4b1719ff0..126eaffd20 100644 --- a/modules/functionality/func-welcome/src/main/kotlin/dev/kordex/modules/func/welcome/blocks/RulesBlock.kt +++ b/modules/functionality/func-welcome/src/main/kotlin/dev/kordex/modules/func/welcome/blocks/RulesBlock.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.func.welcome.blocks diff --git a/modules/functionality/func-welcome/src/main/kotlin/dev/kordex/modules/func/welcome/blocks/TextBlock.kt b/modules/functionality/func-welcome/src/main/kotlin/dev/kordex/modules/func/welcome/blocks/TextBlock.kt index c73eafedb1..06f6b24f5f 100644 --- a/modules/functionality/func-welcome/src/main/kotlin/dev/kordex/modules/func/welcome/blocks/TextBlock.kt +++ b/modules/functionality/func-welcome/src/main/kotlin/dev/kordex/modules/func/welcome/blocks/TextBlock.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.func.welcome.blocks diff --git a/modules/functionality/func-welcome/src/main/kotlin/dev/kordex/modules/func/welcome/blocks/ThreadListBlock.kt b/modules/functionality/func-welcome/src/main/kotlin/dev/kordex/modules/func/welcome/blocks/ThreadListBlock.kt index 15135c6f68..151dbc0596 100644 --- a/modules/functionality/func-welcome/src/main/kotlin/dev/kordex/modules/func/welcome/blocks/ThreadListBlock.kt +++ b/modules/functionality/func-welcome/src/main/kotlin/dev/kordex/modules/func/welcome/blocks/ThreadListBlock.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:Suppress("StringLiteralDuplication") diff --git a/modules/functionality/func-welcome/src/main/kotlin/dev/kordex/modules/func/welcome/config/SimpleWelcomeChannelConfig.kt b/modules/functionality/func-welcome/src/main/kotlin/dev/kordex/modules/func/welcome/config/SimpleWelcomeChannelConfig.kt index 522a26c2e3..6b9aadeddc 100644 --- a/modules/functionality/func-welcome/src/main/kotlin/dev/kordex/modules/func/welcome/config/SimpleWelcomeChannelConfig.kt +++ b/modules/functionality/func-welcome/src/main/kotlin/dev/kordex/modules/func/welcome/config/SimpleWelcomeChannelConfig.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.func.welcome.config diff --git a/modules/functionality/func-welcome/src/main/kotlin/dev/kordex/modules/func/welcome/config/WelcomeChannelConfig.kt b/modules/functionality/func-welcome/src/main/kotlin/dev/kordex/modules/func/welcome/config/WelcomeChannelConfig.kt index 5906741618..c925a6d859 100644 --- a/modules/functionality/func-welcome/src/main/kotlin/dev/kordex/modules/func/welcome/config/WelcomeChannelConfig.kt +++ b/modules/functionality/func-welcome/src/main/kotlin/dev/kordex/modules/func/welcome/config/WelcomeChannelConfig.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.func.welcome.config diff --git a/modules/functionality/func-welcome/src/main/kotlin/dev/kordex/modules/func/welcome/data/MemoryWelcomeChannelData.kt b/modules/functionality/func-welcome/src/main/kotlin/dev/kordex/modules/func/welcome/data/MemoryWelcomeChannelData.kt index 81e197e256..ca9e15283b 100644 --- a/modules/functionality/func-welcome/src/main/kotlin/dev/kordex/modules/func/welcome/data/MemoryWelcomeChannelData.kt +++ b/modules/functionality/func-welcome/src/main/kotlin/dev/kordex/modules/func/welcome/data/MemoryWelcomeChannelData.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.func.welcome.data diff --git a/modules/functionality/func-welcome/src/main/kotlin/dev/kordex/modules/func/welcome/data/WelcomeChannelData.kt b/modules/functionality/func-welcome/src/main/kotlin/dev/kordex/modules/func/welcome/data/WelcomeChannelData.kt index eca959fe21..e9a2aecd42 100644 --- a/modules/functionality/func-welcome/src/main/kotlin/dev/kordex/modules/func/welcome/data/WelcomeChannelData.kt +++ b/modules/functionality/func-welcome/src/main/kotlin/dev/kordex/modules/func/welcome/data/WelcomeChannelData.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.func.welcome.data diff --git a/modules/functionality/func-welcome/src/main/kotlin/dev/kordex/modules/func/welcome/enums/ThreadListType.kt b/modules/functionality/func-welcome/src/main/kotlin/dev/kordex/modules/func/welcome/enums/ThreadListType.kt index 10cf8727f0..72dc2ff61d 100644 --- a/modules/functionality/func-welcome/src/main/kotlin/dev/kordex/modules/func/welcome/enums/ThreadListType.kt +++ b/modules/functionality/func-welcome/src/main/kotlin/dev/kordex/modules/func/welcome/enums/ThreadListType.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.func.welcome.enums diff --git a/modules/integrations/pluralkit/src/main/kotlin/dev/kordex/modules/pluralkit/PKExtension.kt b/modules/integrations/pluralkit/src/main/kotlin/dev/kordex/modules/pluralkit/PKExtension.kt index a783a045a6..dc413108cd 100644 --- a/modules/integrations/pluralkit/src/main/kotlin/dev/kordex/modules/pluralkit/PKExtension.kt +++ b/modules/integrations/pluralkit/src/main/kotlin/dev/kordex/modules/pluralkit/PKExtension.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:Suppress( diff --git a/modules/integrations/pluralkit/src/main/kotlin/dev/kordex/modules/pluralkit/_Utils.kt b/modules/integrations/pluralkit/src/main/kotlin/dev/kordex/modules/pluralkit/_Utils.kt index 926946fa68..0a686bf91b 100644 --- a/modules/integrations/pluralkit/src/main/kotlin/dev/kordex/modules/pluralkit/_Utils.kt +++ b/modules/integrations/pluralkit/src/main/kotlin/dev/kordex/modules/pluralkit/_Utils.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.pluralkit diff --git a/modules/integrations/pluralkit/src/main/kotlin/dev/kordex/modules/pluralkit/api/PKMember.kt b/modules/integrations/pluralkit/src/main/kotlin/dev/kordex/modules/pluralkit/api/PKMember.kt index acaeb357ae..b4de0ff3e3 100644 --- a/modules/integrations/pluralkit/src/main/kotlin/dev/kordex/modules/pluralkit/api/PKMember.kt +++ b/modules/integrations/pluralkit/src/main/kotlin/dev/kordex/modules/pluralkit/api/PKMember.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:Suppress("UndocumentedPublicClass", "UndocumentedPublicFunction", "UndocumentedPublicProperty") diff --git a/modules/integrations/pluralkit/src/main/kotlin/dev/kordex/modules/pluralkit/api/PKMemberPrivacy.kt b/modules/integrations/pluralkit/src/main/kotlin/dev/kordex/modules/pluralkit/api/PKMemberPrivacy.kt index 0a15cb3b4d..1f7c8ec5e0 100644 --- a/modules/integrations/pluralkit/src/main/kotlin/dev/kordex/modules/pluralkit/api/PKMemberPrivacy.kt +++ b/modules/integrations/pluralkit/src/main/kotlin/dev/kordex/modules/pluralkit/api/PKMemberPrivacy.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:Suppress("UndocumentedPublicClass", "UndocumentedPublicFunction", "UndocumentedPublicProperty") diff --git a/modules/integrations/pluralkit/src/main/kotlin/dev/kordex/modules/pluralkit/api/PKMessage.kt b/modules/integrations/pluralkit/src/main/kotlin/dev/kordex/modules/pluralkit/api/PKMessage.kt index 129ebeefa1..61789d07f0 100644 --- a/modules/integrations/pluralkit/src/main/kotlin/dev/kordex/modules/pluralkit/api/PKMessage.kt +++ b/modules/integrations/pluralkit/src/main/kotlin/dev/kordex/modules/pluralkit/api/PKMessage.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:Suppress("UndocumentedPublicClass", "UndocumentedPublicFunction", "UndocumentedPublicProperty") diff --git a/modules/integrations/pluralkit/src/main/kotlin/dev/kordex/modules/pluralkit/api/PKProxyTag.kt b/modules/integrations/pluralkit/src/main/kotlin/dev/kordex/modules/pluralkit/api/PKProxyTag.kt index 2bd1def283..220dc2a59a 100644 --- a/modules/integrations/pluralkit/src/main/kotlin/dev/kordex/modules/pluralkit/api/PKProxyTag.kt +++ b/modules/integrations/pluralkit/src/main/kotlin/dev/kordex/modules/pluralkit/api/PKProxyTag.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:Suppress("UndocumentedPublicClass", "UndocumentedPublicFunction", "UndocumentedPublicProperty") diff --git a/modules/integrations/pluralkit/src/main/kotlin/dev/kordex/modules/pluralkit/api/PKSystem.kt b/modules/integrations/pluralkit/src/main/kotlin/dev/kordex/modules/pluralkit/api/PKSystem.kt index f256f6082b..af65ddfb64 100644 --- a/modules/integrations/pluralkit/src/main/kotlin/dev/kordex/modules/pluralkit/api/PKSystem.kt +++ b/modules/integrations/pluralkit/src/main/kotlin/dev/kordex/modules/pluralkit/api/PKSystem.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:Suppress("UndocumentedPublicClass", "UndocumentedPublicFunction", "UndocumentedPublicProperty") diff --git a/modules/integrations/pluralkit/src/main/kotlin/dev/kordex/modules/pluralkit/api/PKSystemPrivacy.kt b/modules/integrations/pluralkit/src/main/kotlin/dev/kordex/modules/pluralkit/api/PKSystemPrivacy.kt index 8eb53795f2..80e982e97a 100644 --- a/modules/integrations/pluralkit/src/main/kotlin/dev/kordex/modules/pluralkit/api/PKSystemPrivacy.kt +++ b/modules/integrations/pluralkit/src/main/kotlin/dev/kordex/modules/pluralkit/api/PKSystemPrivacy.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:Suppress("UndocumentedPublicClass", "UndocumentedPublicFunction", "UndocumentedPublicProperty") diff --git a/modules/integrations/pluralkit/src/main/kotlin/dev/kordex/modules/pluralkit/api/PluralKit.kt b/modules/integrations/pluralkit/src/main/kotlin/dev/kordex/modules/pluralkit/api/PluralKit.kt index b16736855d..749af45e88 100644 --- a/modules/integrations/pluralkit/src/main/kotlin/dev/kordex/modules/pluralkit/api/PluralKit.kt +++ b/modules/integrations/pluralkit/src/main/kotlin/dev/kordex/modules/pluralkit/api/PluralKit.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:Suppress("UndocumentedPublicClass", "UndocumentedPublicFunction", "UndocumentedPublicProperty") diff --git a/modules/integrations/pluralkit/src/main/kotlin/dev/kordex/modules/pluralkit/config/PKConfigBuilder.kt b/modules/integrations/pluralkit/src/main/kotlin/dev/kordex/modules/pluralkit/config/PKConfigBuilder.kt index 4d7f37e996..c82f409e3d 100644 --- a/modules/integrations/pluralkit/src/main/kotlin/dev/kordex/modules/pluralkit/config/PKConfigBuilder.kt +++ b/modules/integrations/pluralkit/src/main/kotlin/dev/kordex/modules/pluralkit/config/PKConfigBuilder.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:Suppress("StringLiteralDuplication") diff --git a/modules/integrations/pluralkit/src/main/kotlin/dev/kordex/modules/pluralkit/events/PKMessageCreateEvent.kt b/modules/integrations/pluralkit/src/main/kotlin/dev/kordex/modules/pluralkit/events/PKMessageCreateEvent.kt index 4f013fb57a..c0ce42fa2d 100644 --- a/modules/integrations/pluralkit/src/main/kotlin/dev/kordex/modules/pluralkit/events/PKMessageCreateEvent.kt +++ b/modules/integrations/pluralkit/src/main/kotlin/dev/kordex/modules/pluralkit/events/PKMessageCreateEvent.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:OptIn(KordUnsafe::class, KordExperimental::class) diff --git a/modules/integrations/pluralkit/src/main/kotlin/dev/kordex/modules/pluralkit/events/PKMessageDeleteEvent.kt b/modules/integrations/pluralkit/src/main/kotlin/dev/kordex/modules/pluralkit/events/PKMessageDeleteEvent.kt index 602c39d100..69ed3f341d 100644 --- a/modules/integrations/pluralkit/src/main/kotlin/dev/kordex/modules/pluralkit/events/PKMessageDeleteEvent.kt +++ b/modules/integrations/pluralkit/src/main/kotlin/dev/kordex/modules/pluralkit/events/PKMessageDeleteEvent.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:OptIn(KordUnsafe::class, KordExperimental::class) diff --git a/modules/integrations/pluralkit/src/main/kotlin/dev/kordex/modules/pluralkit/events/PKMessageUpdateEvent.kt b/modules/integrations/pluralkit/src/main/kotlin/dev/kordex/modules/pluralkit/events/PKMessageUpdateEvent.kt index fe58eae4b1..d39dc4c74a 100644 --- a/modules/integrations/pluralkit/src/main/kotlin/dev/kordex/modules/pluralkit/events/PKMessageUpdateEvent.kt +++ b/modules/integrations/pluralkit/src/main/kotlin/dev/kordex/modules/pluralkit/events/PKMessageUpdateEvent.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:OptIn(KordUnsafe::class, KordExperimental::class) diff --git a/modules/integrations/pluralkit/src/main/kotlin/dev/kordex/modules/pluralkit/storage/PKGuildConfig.kt b/modules/integrations/pluralkit/src/main/kotlin/dev/kordex/modules/pluralkit/storage/PKGuildConfig.kt index 71273bf4cd..138f087f51 100644 --- a/modules/integrations/pluralkit/src/main/kotlin/dev/kordex/modules/pluralkit/storage/PKGuildConfig.kt +++ b/modules/integrations/pluralkit/src/main/kotlin/dev/kordex/modules/pluralkit/storage/PKGuildConfig.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:Suppress( diff --git a/modules/integrations/pluralkit/src/main/kotlin/dev/kordex/modules/pluralkit/utils/LRUHashMap.kt b/modules/integrations/pluralkit/src/main/kotlin/dev/kordex/modules/pluralkit/utils/LRUHashMap.kt index 17a1934093..5a6109b79a 100644 --- a/modules/integrations/pluralkit/src/main/kotlin/dev/kordex/modules/pluralkit/utils/LRUHashMap.kt +++ b/modules/integrations/pluralkit/src/main/kotlin/dev/kordex/modules/pluralkit/utils/LRUHashMap.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.pluralkit.utils diff --git a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/WebExtension.kt b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/WebExtension.kt index 18c1fcfdf1..a3a33da79b 100644 --- a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/WebExtension.kt +++ b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/WebExtension.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.web.core.backend diff --git a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/WebRegistries.kt b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/WebRegistries.kt index 8609307e30..bb8759fde5 100644 --- a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/WebRegistries.kt +++ b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/WebRegistries.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.web.core.backend diff --git a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/config/ForwardedHeaderMode.kt b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/config/ForwardedHeaderMode.kt index 057880ac64..ddab392481 100644 --- a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/config/ForwardedHeaderMode.kt +++ b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/config/ForwardedHeaderMode.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.web.core.backend.config diff --git a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/config/ForwardedHeaderStrategy.kt b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/config/ForwardedHeaderStrategy.kt index f0bb1c6e6a..e6316bafa0 100644 --- a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/config/ForwardedHeaderStrategy.kt +++ b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/config/ForwardedHeaderStrategy.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.web.core.backend.config diff --git a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/config/WebServerConfig.kt b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/config/WebServerConfig.kt index 2fc2c9e20d..324f44acc4 100644 --- a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/config/WebServerConfig.kt +++ b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/config/WebServerConfig.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.web.core.backend.config diff --git a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/errors/WebError.kt b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/errors/WebError.kt index 4e8613a26d..c56a0849b5 100644 --- a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/errors/WebError.kt +++ b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/errors/WebError.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.web.core.backend.errors diff --git a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/errors/_HttpErrors.kt b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/errors/_HttpErrors.kt index 1d2c5fdf23..1e7e561617 100644 --- a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/errors/_HttpErrors.kt +++ b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/errors/_HttpErrors.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.web.core.backend.errors diff --git a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/errors/_Utils.kt b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/errors/_Utils.kt index 184cb1a984..afdd563999 100644 --- a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/errors/_Utils.kt +++ b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/errors/_Utils.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.web.core.backend.errors diff --git a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/events/WebServerStartEvent.kt b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/events/WebServerStartEvent.kt index 8d0e64cffb..a2feac304e 100644 --- a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/events/WebServerStartEvent.kt +++ b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/events/WebServerStartEvent.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.web.core.backend.events diff --git a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/events/WebServerStopEvent.kt b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/events/WebServerStopEvent.kt index 9ff055d129..400e0ce840 100644 --- a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/events/WebServerStopEvent.kt +++ b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/events/WebServerStopEvent.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.web.core.backend.events diff --git a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/pages/Block.kt b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/pages/Block.kt index 79250727ab..a2614c743c 100644 --- a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/pages/Block.kt +++ b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/pages/Block.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.web.core.backend.pages diff --git a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/pages/Page.kt b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/pages/Page.kt index 62d0f68dc7..93f1a3a3d0 100644 --- a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/pages/Page.kt +++ b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/pages/Page.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.web.core.backend.pages diff --git a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/pages/blocks/labels/TextLabel.kt b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/pages/blocks/labels/TextLabel.kt index 34f7bb50aa..25d8fa9501 100644 --- a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/pages/blocks/labels/TextLabel.kt +++ b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/pages/blocks/labels/TextLabel.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.web.core.backend.pages.blocks.labels diff --git a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/pages/blocks/labels/ValueLabel.kt b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/pages/blocks/labels/ValueLabel.kt index 996ae43154..7b53da3137 100644 --- a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/pages/blocks/labels/ValueLabel.kt +++ b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/pages/blocks/labels/ValueLabel.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.web.core.backend.pages.blocks.labels diff --git a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/pages/navigation/ExtensionNavigation.kt b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/pages/navigation/ExtensionNavigation.kt index 20776c704b..b530c05325 100644 --- a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/pages/navigation/ExtensionNavigation.kt +++ b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/pages/navigation/ExtensionNavigation.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.web.core.backend.pages.navigation diff --git a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/pages/navigation/NavigationItem.kt b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/pages/navigation/NavigationItem.kt index 6c2a6e0917..e8df26124e 100644 --- a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/pages/navigation/NavigationItem.kt +++ b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/pages/navigation/NavigationItem.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.web.core.backend.pages.navigation diff --git a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/pages/navigation/NavigationRegistry.kt b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/pages/navigation/NavigationRegistry.kt index cb04a4c78f..2b354e9a7c 100644 --- a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/pages/navigation/NavigationRegistry.kt +++ b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/pages/navigation/NavigationRegistry.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.web.core.backend.pages.navigation diff --git a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/routes/Route.kt b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/routes/Route.kt index dfdee03f87..8968342d22 100644 --- a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/routes/Route.kt +++ b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/routes/Route.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.web.core.backend.routes diff --git a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/routes/RouteRegistry.kt b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/routes/RouteRegistry.kt index d28a3fe09a..1a146c51e6 100644 --- a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/routes/RouteRegistry.kt +++ b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/routes/RouteRegistry.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.web.core.backend.routes diff --git a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/routes/Verb.kt b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/routes/Verb.kt index 767126b7a8..810f93c827 100644 --- a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/routes/Verb.kt +++ b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/routes/Verb.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.web.core.backend.routes diff --git a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/routes/utils/_Permissions.kt b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/routes/utils/_Permissions.kt index 2cc2c75d9c..49f4ac85b5 100644 --- a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/routes/utils/_Permissions.kt +++ b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/routes/utils/_Permissions.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.web.core.backend.routes.utils diff --git a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/server/WebServer.kt b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/server/WebServer.kt index de6b956c9b..5d478f00c6 100644 --- a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/server/WebServer.kt +++ b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/server/WebServer.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.web.core.backend.server diff --git a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/server/_Auth.kt b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/server/_Auth.kt index 54c07080e6..77861eeffd 100644 --- a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/server/_Auth.kt +++ b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/server/_Auth.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.web.core.backend.server diff --git a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/server/_CORS.kt b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/server/_CORS.kt index a3bf5591df..70d49d26f5 100644 --- a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/server/_CORS.kt +++ b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/server/_CORS.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.web.core.backend.server diff --git a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/server/_ContentNegotiation.kt b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/server/_ContentNegotiation.kt index 0fcff5f68a..3e1291855e 100644 --- a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/server/_ContentNegotiation.kt +++ b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/server/_ContentNegotiation.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.web.core.backend.server diff --git a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/server/_ForwardedHeaders.kt b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/server/_ForwardedHeaders.kt index 8b7ad10ae1..82a3b6661c 100644 --- a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/server/_ForwardedHeaders.kt +++ b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/server/_ForwardedHeaders.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.web.core.backend.server diff --git a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/server/_Routing.kt b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/server/_Routing.kt index 146c7c73a5..8f343f656e 100644 --- a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/server/_Routing.kt +++ b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/server/_Routing.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.web.core.backend.server diff --git a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/server/_StatusPages.kt b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/server/_StatusPages.kt index bdcbe16768..3c35d92143 100644 --- a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/server/_StatusPages.kt +++ b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/server/_StatusPages.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.web.core.backend.server diff --git a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/server/_WebSockets.kt b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/server/_WebSockets.kt index bc311fccaa..1298867034 100644 --- a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/server/_WebSockets.kt +++ b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/server/_WebSockets.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.web.core.backend.server diff --git a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/server/routes/_Api.kt b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/server/routes/_Api.kt index cc371a2c54..88d51981d6 100644 --- a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/server/routes/_Api.kt +++ b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/server/routes/_Api.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.web.core.backend.server.routes diff --git a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/server/routes/api/_Info.kt b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/server/routes/api/_Info.kt index 899a680268..6f7a1cb444 100644 --- a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/server/routes/api/_Info.kt +++ b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/server/routes/api/_Info.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.web.core.backend.server.routes.api diff --git a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/types/Identifier.kt b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/types/Identifier.kt index ad12d6e157..9d76f041f1 100644 --- a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/types/Identifier.kt +++ b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/types/Identifier.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.web.core.backend.types diff --git a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/types/IdentifierSerializer.kt b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/types/IdentifierSerializer.kt index b5f96de0df..9ef78bfe3d 100644 --- a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/types/IdentifierSerializer.kt +++ b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/types/IdentifierSerializer.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.web.core.backend.types diff --git a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/utils/_Builder.kt b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/utils/_Builder.kt index b4bbf5d19d..3e90ed7144 100644 --- a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/utils/_Builder.kt +++ b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/utils/_Builder.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.web.core.backend.utils diff --git a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/utils/_Extension.kt b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/utils/_Extension.kt index 0f1eed3cdc..d164f8ad48 100644 --- a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/utils/_Extension.kt +++ b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/utils/_Extension.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.web.core.backend.utils diff --git a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/values/TimedContainer.kt b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/values/TimedContainer.kt index 8e94f74c0a..e9d6ee3189 100644 --- a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/values/TimedContainer.kt +++ b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/values/TimedContainer.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.web.core.backend.values diff --git a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/values/ValueInterval.kt b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/values/ValueInterval.kt index ab4977d909..0a1a6cf4a4 100644 --- a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/values/ValueInterval.kt +++ b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/values/ValueInterval.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:Suppress("MagicNumber", "UnnecessaryParentheses") diff --git a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/values/serializers/SimpleValueSerializer.kt b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/values/serializers/SimpleValueSerializer.kt index fe82c22f12..98fe44dd1f 100644 --- a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/values/serializers/SimpleValueSerializer.kt +++ b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/values/serializers/SimpleValueSerializer.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:Suppress("MagicNumber") diff --git a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/values/serializers/TimedContainerSerializer.kt b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/values/serializers/TimedContainerSerializer.kt index d2a3436fa2..ad38f23a51 100644 --- a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/values/serializers/TimedContainerSerializer.kt +++ b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/values/serializers/TimedContainerSerializer.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.web.core.backend.values.serializers diff --git a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/values/serializers/TrackedValueSerializer.kt b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/values/serializers/TrackedValueSerializer.kt index 6b140a6c04..71b9ba44e7 100644 --- a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/values/serializers/TrackedValueSerializer.kt +++ b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/values/serializers/TrackedValueSerializer.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ @file:Suppress("MagicNumber") diff --git a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/values/types/SimpleValue.kt b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/values/types/SimpleValue.kt index 5db4c7ef60..0a8d273bb0 100644 --- a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/values/types/SimpleValue.kt +++ b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/values/types/SimpleValue.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.web.core.backend.values.types diff --git a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/values/types/TrackedValue.kt b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/values/types/TrackedValue.kt index be7b36024b..d1498d79fa 100644 --- a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/values/types/TrackedValue.kt +++ b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/values/types/TrackedValue.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.web.core.backend.values.types diff --git a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/values/types/Value.kt b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/values/types/Value.kt index aefc9858f1..f49740f921 100644 --- a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/values/types/Value.kt +++ b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/values/types/Value.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.web.core.backend.values.types diff --git a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/websockets/Websocket.kt b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/websockets/Websocket.kt index 7b388353b8..1a8438b0c7 100644 --- a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/websockets/Websocket.kt +++ b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/websockets/Websocket.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.web.core.backend.websockets diff --git a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/websockets/WebsocketBuilder.kt b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/websockets/WebsocketBuilder.kt index eac9ce6e26..4dc99054d7 100644 --- a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/websockets/WebsocketBuilder.kt +++ b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/websockets/WebsocketBuilder.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.web.core.backend.websockets diff --git a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/websockets/WebsocketRegistry.kt b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/websockets/WebsocketRegistry.kt index 006645ff2e..36c7fccc44 100644 --- a/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/websockets/WebsocketRegistry.kt +++ b/modules/web/web-core/web-backend/src/main/kotlin/dev/kordex/modules/web/core/backend/websockets/WebsocketRegistry.kt @@ -1,7 +1,9 @@ /* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * Copyrighted (Kord Extensions, 2024). Licensed under the EUPL-1.2 + * with the specific provision (EUPL articles 14 & 15) that the + * applicable law is the (Republic of) Irish law and the Jurisdiction + * Dublin. + * Any redistribution must include the specific provision above. */ package dev.kordex.modules.web.core.backend.websockets diff --git a/modules/web/web-core/web-frontend/public/vite.svg b/modules/web/web-core/web-frontend/public/vite.svg index d07344f6ea..7a2e8b8880 100644 --- a/modules/web/web-core/web-frontend/public/vite.svg +++ b/modules/web/web-core/web-frontend/public/vite.svg @@ -1,7 +1,9 @@