summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2023-03-31 02:04:36 +1100
committerMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2023-03-31 02:05:02 +1100
commit64e747a4d29220ef285124c98d22646842f03cd6 (patch)
tree2f81bd73522aea4565b9def3d2b23135009363b7 /src
parentSPACEBAR (diff)
downloadserver-64e747a4d29220ef285124c98d22646842f03cd6.tar.xz
SPACEBAR
Diffstat (limited to 'src')
-rw-r--r--src/api/Server.ts2
-rw-r--r--src/api/global.d.ts2
-rw-r--r--src/api/index.ts2
-rw-r--r--src/api/middlewares/Authentication.ts2
-rw-r--r--src/api/middlewares/BodyParser.ts2
-rw-r--r--src/api/middlewares/CORS.ts2
-rw-r--r--src/api/middlewares/ErrorHandler.ts2
-rw-r--r--src/api/middlewares/RateLimit.ts2
-rw-r--r--src/api/middlewares/Translation.ts2
-rw-r--r--src/api/middlewares/index.ts2
-rw-r--r--src/api/routes/-/healthz.ts2
-rw-r--r--src/api/routes/-/readyz.ts2
-rw-r--r--src/api/routes/applications/#id/bot/index.ts2
-rw-r--r--src/api/routes/applications/#id/entitlements.ts2
-rw-r--r--src/api/routes/applications/#id/index.ts2
-rw-r--r--src/api/routes/applications/#id/skus.ts2
-rw-r--r--src/api/routes/applications/detectable.ts2
-rw-r--r--src/api/routes/applications/index.ts2
-rw-r--r--src/api/routes/auth/forgot.ts18
-rw-r--r--src/api/routes/auth/generate-registration-tokens.ts2
-rw-r--r--src/api/routes/auth/location-metadata.ts2
-rw-r--r--src/api/routes/auth/login.ts2
-rw-r--r--src/api/routes/auth/logout.ts2
-rw-r--r--src/api/routes/auth/mfa/totp.ts2
-rw-r--r--src/api/routes/auth/mfa/webauthn.ts2
-rw-r--r--src/api/routes/auth/register.ts2
-rw-r--r--src/api/routes/auth/reset.ts18
-rw-r--r--src/api/routes/auth/verify/index.ts2
-rw-r--r--src/api/routes/auth/verify/resend.ts2
-rw-r--r--src/api/routes/auth/verify/view-backup-codes-challenge.ts2
-rw-r--r--src/api/routes/channels/#channel_id/followers.ts2
-rw-r--r--src/api/routes/channels/#channel_id/index.ts2
-rw-r--r--src/api/routes/channels/#channel_id/invites.ts2
-rw-r--r--src/api/routes/channels/#channel_id/messages/#message_id/ack.ts2
-rw-r--r--src/api/routes/channels/#channel_id/messages/#message_id/crosspost.ts2
-rw-r--r--src/api/routes/channels/#channel_id/messages/#message_id/index.ts2
-rw-r--r--src/api/routes/channels/#channel_id/messages/#message_id/reactions.ts2
-rw-r--r--src/api/routes/channels/#channel_id/messages/bulk-delete.ts2
-rw-r--r--src/api/routes/channels/#channel_id/messages/index.ts2
-rw-r--r--src/api/routes/channels/#channel_id/permissions.ts2
-rw-r--r--src/api/routes/channels/#channel_id/pins.ts2
-rw-r--r--src/api/routes/channels/#channel_id/purge.ts2
-rw-r--r--src/api/routes/channels/#channel_id/recipients.ts2
-rw-r--r--src/api/routes/channels/#channel_id/typing.ts2
-rw-r--r--src/api/routes/channels/#channel_id/webhooks.ts2
-rw-r--r--src/api/routes/discoverable-guilds.ts2
-rw-r--r--src/api/routes/discovery.ts2
-rw-r--r--src/api/routes/download.ts2
-rw-r--r--src/api/routes/experiments.ts2
-rw-r--r--src/api/routes/gateway/bot.ts2
-rw-r--r--src/api/routes/gateway/index.ts2
-rw-r--r--src/api/routes/gifs/search.ts2
-rw-r--r--src/api/routes/gifs/trending-gifs.ts2
-rw-r--r--src/api/routes/gifs/trending.ts2
-rw-r--r--src/api/routes/guild-recommendations.ts2
-rw-r--r--src/api/routes/guilds/#guild_id/audit-logs.ts2
-rw-r--r--src/api/routes/guilds/#guild_id/bans.ts2
-rw-r--r--src/api/routes/guilds/#guild_id/channels.ts2
-rw-r--r--src/api/routes/guilds/#guild_id/delete.ts2
-rw-r--r--src/api/routes/guilds/#guild_id/discovery-requirements.ts2
-rw-r--r--src/api/routes/guilds/#guild_id/emojis.ts2
-rw-r--r--src/api/routes/guilds/#guild_id/index.ts2
-rw-r--r--src/api/routes/guilds/#guild_id/integrations.ts2
-rw-r--r--src/api/routes/guilds/#guild_id/invites.ts2
-rw-r--r--src/api/routes/guilds/#guild_id/member-verification.ts2
-rw-r--r--src/api/routes/guilds/#guild_id/members/#member_id/index.ts2
-rw-r--r--src/api/routes/guilds/#guild_id/members/#member_id/nick.ts2
-rw-r--r--src/api/routes/guilds/#guild_id/members/#member_id/roles/#role_id/index.ts2
-rw-r--r--src/api/routes/guilds/#guild_id/members/index.ts2
-rw-r--r--src/api/routes/guilds/#guild_id/messages/search.ts2
-rw-r--r--src/api/routes/guilds/#guild_id/premium.ts2
-rw-r--r--src/api/routes/guilds/#guild_id/profile/index.ts2
-rw-r--r--src/api/routes/guilds/#guild_id/prune.ts2
-rw-r--r--src/api/routes/guilds/#guild_id/regions.ts2
-rw-r--r--src/api/routes/guilds/#guild_id/roles/#role_id/index.ts2
-rw-r--r--src/api/routes/guilds/#guild_id/roles/index.ts2
-rw-r--r--src/api/routes/guilds/#guild_id/stickers.ts2
-rw-r--r--src/api/routes/guilds/#guild_id/templates.ts2
-rw-r--r--src/api/routes/guilds/#guild_id/vanity-url.ts2
-rw-r--r--src/api/routes/guilds/#guild_id/voice-states/#user_id/index.ts2
-rw-r--r--src/api/routes/guilds/#guild_id/webhooks.ts2
-rw-r--r--src/api/routes/guilds/#guild_id/welcome-screen.ts2
-rw-r--r--src/api/routes/guilds/#guild_id/widget.json.ts2
-rw-r--r--src/api/routes/guilds/#guild_id/widget.png.ts2
-rw-r--r--src/api/routes/guilds/#guild_id/widget.ts2
-rw-r--r--src/api/routes/guilds/index.ts2
-rw-r--r--src/api/routes/guilds/templates/index.ts2
-rw-r--r--src/api/routes/invites/index.ts2
-rw-r--r--src/api/routes/oauth2/authorize.ts2
-rw-r--r--src/api/routes/oauth2/tokens.ts2
-rw-r--r--src/api/routes/outbound-promotions.ts2
-rw-r--r--src/api/routes/partners/#guild_id/requirements.ts2
-rw-r--r--src/api/routes/ping.ts2
-rw-r--r--src/api/routes/policies/instance/domains.ts2
-rw-r--r--src/api/routes/policies/instance/index.ts2
-rw-r--r--src/api/routes/policies/instance/limits.ts2
-rw-r--r--src/api/routes/policies/stats.ts2
-rw-r--r--src/api/routes/read-states/ack-bulk.ts2
-rw-r--r--src/api/routes/scheduled-maintenances/upcoming_json.ts2
-rw-r--r--src/api/routes/science.ts2
-rw-r--r--src/api/routes/stage-instances.ts2
-rw-r--r--src/api/routes/sticker-packs/index.ts2
-rw-r--r--src/api/routes/stickers/#sticker_id/index.ts2
-rw-r--r--src/api/routes/stop.ts2
-rw-r--r--src/api/routes/store/published-listings/applications.ts2
-rw-r--r--src/api/routes/store/published-listings/applications/#id/subscription-plans.ts2
-rw-r--r--src/api/routes/store/published-listings/skus.ts2
-rw-r--r--src/api/routes/store/published-listings/skus/#sku_id/subscription-plans.ts2
-rw-r--r--src/api/routes/teams.ts2
-rw-r--r--src/api/routes/track.ts2
-rw-r--r--src/api/routes/updates.ts2
-rw-r--r--src/api/routes/users/#id/delete.ts2
-rw-r--r--src/api/routes/users/#id/index.ts2
-rw-r--r--src/api/routes/users/#id/profile.ts2
-rw-r--r--src/api/routes/users/#id/relationships.ts2
-rw-r--r--src/api/routes/users/@me/activities/statistics/applications.ts2
-rw-r--r--src/api/routes/users/@me/affinities/guilds.ts2
-rw-r--r--src/api/routes/users/@me/affinities/users.ts2
-rw-r--r--src/api/routes/users/@me/applications/#app_id/entitlements.ts2
-rw-r--r--src/api/routes/users/@me/billing/country-code.ts2
-rw-r--r--src/api/routes/users/@me/billing/payment-sources.ts2
-rw-r--r--src/api/routes/users/@me/billing/subscriptions.ts2
-rw-r--r--src/api/routes/users/@me/channels.ts2
-rw-r--r--src/api/routes/users/@me/connections.ts2
-rw-r--r--src/api/routes/users/@me/delete.ts2
-rw-r--r--src/api/routes/users/@me/devices.ts2
-rw-r--r--src/api/routes/users/@me/disable.ts2
-rw-r--r--src/api/routes/users/@me/email-settings.ts2
-rw-r--r--src/api/routes/users/@me/entitlements.ts2
-rw-r--r--src/api/routes/users/@me/guilds.ts2
-rw-r--r--src/api/routes/users/@me/guilds/#guild_id/settings.ts2
-rw-r--r--src/api/routes/users/@me/guilds/premium/subscription-slots.ts2
-rw-r--r--src/api/routes/users/@me/index.ts2
-rw-r--r--src/api/routes/users/@me/library.ts2
-rw-r--r--src/api/routes/users/@me/mfa/codes-verification.ts2
-rw-r--r--src/api/routes/users/@me/mfa/codes.ts2
-rw-r--r--src/api/routes/users/@me/mfa/totp/disable.ts2
-rw-r--r--src/api/routes/users/@me/mfa/totp/enable.ts2
-rw-r--r--src/api/routes/users/@me/mfa/webauthn/credentials/#key_id/index.ts2
-rw-r--r--src/api/routes/users/@me/mfa/webauthn/credentials/index.ts2
-rw-r--r--src/api/routes/users/@me/notes.ts2
-rw-r--r--src/api/routes/users/@me/relationships.ts2
-rw-r--r--src/api/routes/users/@me/settings.ts2
-rw-r--r--src/api/routes/voice/regions.ts2
-rw-r--r--src/api/start.ts2
-rw-r--r--src/api/util/handlers/Instance.ts2
-rw-r--r--src/api/util/handlers/Message.ts2
-rw-r--r--src/api/util/handlers/Voice.ts2
-rw-r--r--src/api/util/handlers/route.ts2
-rw-r--r--src/api/util/index.ts2
-rw-r--r--src/api/util/utility/Base64.ts2
-rw-r--r--src/api/util/utility/EmbedHandlers.ts2
-rw-r--r--src/api/util/utility/RandomInviteID.ts2
-rw-r--r--src/api/util/utility/String.ts2
-rw-r--r--src/api/util/utility/captcha.ts2
-rw-r--r--src/api/util/utility/ipAddress.ts2
-rw-r--r--src/api/util/utility/passwordStrength.ts2
-rw-r--r--src/bundle/Server.ts2
-rw-r--r--src/bundle/index.ts2
-rw-r--r--src/bundle/start.ts2
-rw-r--r--src/bundle/stats.ts2
-rw-r--r--src/cdn/Server.ts2
-rw-r--r--src/cdn/index.ts2
-rw-r--r--src/cdn/routes/attachments.ts2
-rw-r--r--src/cdn/routes/avatars.ts2
-rw-r--r--src/cdn/routes/embed.ts2
-rw-r--r--src/cdn/routes/guild-profiles.ts2
-rw-r--r--src/cdn/routes/ping.ts2
-rw-r--r--src/cdn/routes/role-icons.ts2
-rw-r--r--src/cdn/start.ts2
-rw-r--r--src/cdn/util/FileStorage.ts2
-rw-r--r--src/cdn/util/S3Storage.ts2
-rw-r--r--src/cdn/util/Storage.ts2
-rw-r--r--src/cdn/util/index.ts2
-rw-r--r--src/cdn/util/multer.ts2
-rw-r--r--src/gateway/Server.ts2
-rw-r--r--src/gateway/events/Close.ts2
-rw-r--r--src/gateway/events/Connection.ts2
-rw-r--r--src/gateway/events/Message.ts2
-rw-r--r--src/gateway/index.ts2
-rw-r--r--src/gateway/listener/listener.ts2
-rw-r--r--src/gateway/opcodes/Heartbeat.ts2
-rw-r--r--src/gateway/opcodes/Identify.ts2
-rw-r--r--src/gateway/opcodes/LazyRequest.ts2
-rw-r--r--src/gateway/opcodes/PresenceUpdate.ts2
-rw-r--r--src/gateway/opcodes/RequestGuildMembers.ts2
-rw-r--r--src/gateway/opcodes/Resume.ts2
-rw-r--r--src/gateway/opcodes/VoiceStateUpdate.ts2
-rw-r--r--src/gateway/opcodes/index.ts2
-rw-r--r--src/gateway/opcodes/instanceOf.ts2
-rw-r--r--src/gateway/start.ts2
-rw-r--r--src/gateway/util/Constants.ts2
-rw-r--r--src/gateway/util/Heartbeat.ts2
-rw-r--r--src/gateway/util/Send.ts2
-rw-r--r--src/gateway/util/SessionUtils.ts2
-rw-r--r--src/gateway/util/WebSocket.ts2
-rw-r--r--src/gateway/util/index.ts2
-rw-r--r--src/util/config/Config.ts2
-rw-r--r--src/util/config/index.ts2
-rw-r--r--src/util/config/types/ApiConfiguration.ts2
-rw-r--r--src/util/config/types/CdnConfiguration.ts2
-rw-r--r--src/util/config/types/DefaultsConfiguration.ts2
-rw-r--r--src/util/config/types/EmailConfiguration.ts2
-rw-r--r--src/util/config/types/EndpointConfiguration.ts2
-rw-r--r--src/util/config/types/ExternalTokensConfiguration.ts2
-rw-r--r--src/util/config/types/GeneralConfiguration.ts2
-rw-r--r--src/util/config/types/GifConfiguration.ts2
-rw-r--r--src/util/config/types/GuildConfiguration.ts2
-rw-r--r--src/util/config/types/KafkaConfiguration.ts2
-rw-r--r--src/util/config/types/LimitConfigurations.ts2
-rw-r--r--src/util/config/types/LoginConfiguration.ts2
-rw-r--r--src/util/config/types/MetricsConfiguration.ts2
-rw-r--r--src/util/config/types/PasswordResetConfiguration.ts2
-rw-r--r--src/util/config/types/RabbitMQConfiguration.ts2
-rw-r--r--src/util/config/types/RegionConfiguration.ts2
-rw-r--r--src/util/config/types/RegisterConfiguration.ts2
-rw-r--r--src/util/config/types/SecurityConfiguration.ts2
-rw-r--r--src/util/config/types/SentryConfiguration.ts2
-rw-r--r--src/util/config/types/TemplateConfiguration.ts2
-rw-r--r--src/util/config/types/index.ts2
-rw-r--r--src/util/config/types/subconfigurations/client/ClientReleaseConfiguration.ts2
-rw-r--r--src/util/config/types/subconfigurations/client/index.ts2
-rw-r--r--src/util/config/types/subconfigurations/defaults/GuildDefaults.ts2
-rw-r--r--src/util/config/types/subconfigurations/defaults/UserDefaults.ts2
-rw-r--r--src/util/config/types/subconfigurations/defaults/index.ts2
-rw-r--r--src/util/config/types/subconfigurations/email/MailGun.ts2
-rw-r--r--src/util/config/types/subconfigurations/email/MailJet.ts2
-rw-r--r--src/util/config/types/subconfigurations/email/SMTP.ts2
-rw-r--r--src/util/config/types/subconfigurations/email/SendGrid.ts2
-rw-r--r--src/util/config/types/subconfigurations/email/index.ts2
-rw-r--r--src/util/config/types/subconfigurations/guild/AutoJoin.ts2
-rw-r--r--src/util/config/types/subconfigurations/guild/Discovery.ts2
-rw-r--r--src/util/config/types/subconfigurations/guild/index.ts2
-rw-r--r--src/util/config/types/subconfigurations/index.ts2
-rw-r--r--src/util/config/types/subconfigurations/kafka/KafkaBroker.ts2
-rw-r--r--src/util/config/types/subconfigurations/kafka/index.ts2
-rw-r--r--src/util/config/types/subconfigurations/limits/ChannelLimits.ts2
-rw-r--r--src/util/config/types/subconfigurations/limits/GlobalRateLimits.ts2
-rw-r--r--src/util/config/types/subconfigurations/limits/GuildLimits.ts2
-rw-r--r--src/util/config/types/subconfigurations/limits/MessageLimits.ts2
-rw-r--r--src/util/config/types/subconfigurations/limits/RateLimits.ts2
-rw-r--r--src/util/config/types/subconfigurations/limits/UserLimits.ts2
-rw-r--r--src/util/config/types/subconfigurations/limits/index.ts2
-rw-r--r--src/util/config/types/subconfigurations/limits/ratelimits/Auth.ts2
-rw-r--r--src/util/config/types/subconfigurations/limits/ratelimits/RateLimitOptions.ts2
-rw-r--r--src/util/config/types/subconfigurations/limits/ratelimits/Route.ts2
-rw-r--r--src/util/config/types/subconfigurations/limits/ratelimits/index.ts2
-rw-r--r--src/util/config/types/subconfigurations/region/Region.ts2
-rw-r--r--src/util/config/types/subconfigurations/region/index.ts2
-rw-r--r--src/util/config/types/subconfigurations/register/DateOfBirth.ts2
-rw-r--r--src/util/config/types/subconfigurations/register/Email.ts2
-rw-r--r--src/util/config/types/subconfigurations/register/Password.ts2
-rw-r--r--src/util/config/types/subconfigurations/register/index.ts2
-rw-r--r--src/util/config/types/subconfigurations/security/Captcha.ts2
-rw-r--r--src/util/config/types/subconfigurations/security/TwoFactor.ts2
-rw-r--r--src/util/config/types/subconfigurations/security/index.ts2
-rw-r--r--src/util/dtos/DmChannelDTO.ts2
-rw-r--r--src/util/dtos/ReadyGuildDTO.ts2
-rw-r--r--src/util/dtos/UserDTO.ts2
-rw-r--r--src/util/dtos/index.ts2
-rw-r--r--src/util/entities/Application.ts2
-rw-r--r--src/util/entities/Attachment.ts2
-rw-r--r--src/util/entities/AuditLog.ts2
-rw-r--r--src/util/entities/BackupCodes.ts2
-rw-r--r--src/util/entities/Ban.ts2
-rw-r--r--src/util/entities/BaseClass.ts2
-rw-r--r--src/util/entities/Categories.ts2
-rw-r--r--src/util/entities/Channel.ts2
-rw-r--r--src/util/entities/ClientRelease.ts2
-rw-r--r--src/util/entities/Config.ts2
-rw-r--r--src/util/entities/ConnectedAccount.ts2
-rw-r--r--src/util/entities/EmbedCache.ts2
-rw-r--r--src/util/entities/Emoji.ts2
-rw-r--r--src/util/entities/Encryption.ts2
-rw-r--r--src/util/entities/Guild.ts2
-rw-r--r--src/util/entities/Invite.ts2
-rw-r--r--src/util/entities/Member.ts2
-rw-r--r--src/util/entities/Message.ts2
-rw-r--r--src/util/entities/Migration.ts2
-rw-r--r--src/util/entities/Note.ts2
-rw-r--r--src/util/entities/RateLimit.ts2
-rw-r--r--src/util/entities/ReadState.ts2
-rw-r--r--src/util/entities/Recipient.ts2
-rw-r--r--src/util/entities/Relationship.ts2
-rw-r--r--src/util/entities/Role.ts2
-rw-r--r--src/util/entities/SecurityKey.ts2
-rw-r--r--src/util/entities/Session.ts2
-rw-r--r--src/util/entities/Sticker.ts2
-rw-r--r--src/util/entities/StickerPack.ts2
-rw-r--r--src/util/entities/Team.ts2
-rw-r--r--src/util/entities/TeamMember.ts2
-rw-r--r--src/util/entities/Template.ts2
-rw-r--r--src/util/entities/User.ts2
-rw-r--r--src/util/entities/UserSettings.ts2
-rw-r--r--src/util/entities/ValidRegistrationTokens.ts2
-rw-r--r--src/util/entities/VoiceState.ts2
-rw-r--r--src/util/entities/Webhook.ts2
-rw-r--r--src/util/entities/index.ts2
-rw-r--r--src/util/imports/index.ts2
-rw-r--r--src/util/index.ts2
-rw-r--r--src/util/interfaces/Activity.ts2
-rw-r--r--src/util/interfaces/Event.ts2
-rw-r--r--src/util/interfaces/Interaction.ts2
-rw-r--r--src/util/interfaces/Presence.ts2
-rw-r--r--src/util/interfaces/Status.ts2
-rw-r--r--src/util/interfaces/index.ts2
-rw-r--r--src/util/migration/mariadb/1673609465036-templateDeleteCascade.ts2
-rw-r--r--src/util/migration/mariadb/1675045120206-webauthn.ts2
-rw-r--r--src/util/migration/mysql/1673609465036-templateDeleteCascade.ts2
-rw-r--r--src/util/migration/mysql/1675045120206-webauthn.ts2
-rw-r--r--src/util/migration/postgres/1673609867556-templateDeleteCascade.ts2
-rw-r--r--src/util/migration/postgres/1675044825710-webauthn.ts2
-rw-r--r--src/util/schemas/AckBulkSchema.ts2
-rw-r--r--src/util/schemas/ActivitySchema.ts2
-rw-r--r--src/util/schemas/ApplicationAuthorizeSchema.ts2
-rw-r--r--src/util/schemas/ApplicationCreateSchema.ts2
-rw-r--r--src/util/schemas/ApplicationModifySchema.ts2
-rw-r--r--src/util/schemas/BackupCodesChallengeSchema.ts2
-rw-r--r--src/util/schemas/BanCreateSchema.ts2
-rw-r--r--src/util/schemas/BanModeratorSchema.ts2
-rw-r--r--src/util/schemas/BanRegistrySchema.ts2
-rw-r--r--src/util/schemas/BotModifySchema.ts2
-rw-r--r--src/util/schemas/BulkDeleteSchema.ts2
-rw-r--r--src/util/schemas/ChannelModifySchema.ts2
-rw-r--r--src/util/schemas/ChannelPermissionOverwriteSchema.ts2
-rw-r--r--src/util/schemas/ChannelReorderSchema.ts2
-rw-r--r--src/util/schemas/CodesVerificationSchema.ts2
-rw-r--r--src/util/schemas/DmChannelCreateSchema.ts2
-rw-r--r--src/util/schemas/EmojiCreateSchema.ts2
-rw-r--r--src/util/schemas/EmojiModifySchema.ts2
-rw-r--r--src/util/schemas/ForgotPasswordSchema.ts2
-rw-r--r--src/util/schemas/GatewayBotResponse.ts18
-rw-r--r--src/util/schemas/GatewayPayloadSchema.ts2
-rw-r--r--src/util/schemas/GatewayResponse.ts18
-rw-r--r--src/util/schemas/GuildCreateSchema.ts2
-rw-r--r--src/util/schemas/GuildTemplateCreateSchema.ts2
-rw-r--r--src/util/schemas/GuildUpdateSchema.ts2
-rw-r--r--src/util/schemas/GuildUpdateWelcomeScreenSchema.ts2
-rw-r--r--src/util/schemas/IdentifySchema.ts2
-rw-r--r--src/util/schemas/InviteCreateSchema.ts2
-rw-r--r--src/util/schemas/LazyRequestSchema.ts2
-rw-r--r--src/util/schemas/LoginSchema.ts2
-rw-r--r--src/util/schemas/MemberChangeProfileSchema.ts2
-rw-r--r--src/util/schemas/MemberChangeSchema.ts2
-rw-r--r--src/util/schemas/MemberNickChangeSchema.ts2
-rw-r--r--src/util/schemas/MessageAcknowledgeSchema.ts2
-rw-r--r--src/util/schemas/MessageCreateSchema.ts2
-rw-r--r--src/util/schemas/MessageEditSchema.ts2
-rw-r--r--src/util/schemas/MfaCodesSchema.ts2
-rw-r--r--src/util/schemas/ModifyGuildStickerSchema.ts2
-rw-r--r--src/util/schemas/PasswordResetSchema.ts2
-rw-r--r--src/util/schemas/PruneSchema.ts2
-rw-r--r--src/util/schemas/PurgeSchema.ts2
-rw-r--r--src/util/schemas/RegisterSchema.ts2
-rw-r--r--src/util/schemas/RelationshipPostSchema.ts2
-rw-r--r--src/util/schemas/RelationshipPutSchema.ts2
-rw-r--r--src/util/schemas/RoleModifySchema.ts2
-rw-r--r--src/util/schemas/RolePositionUpdateSchema.ts2
-rw-r--r--src/util/schemas/SelectProtocolSchema.ts2
-rw-r--r--src/util/schemas/TemplateCreateSchema.ts2
-rw-r--r--src/util/schemas/TemplateModifySchema.ts2
-rw-r--r--src/util/schemas/TotpDisableSchema.ts2
-rw-r--r--src/util/schemas/TotpEnableSchema.ts2
-rw-r--r--src/util/schemas/TotpSchema.ts2
-rw-r--r--src/util/schemas/UserDeleteSchema.ts2
-rw-r--r--src/util/schemas/UserGuildSettingsSchema.ts2
-rw-r--r--src/util/schemas/UserModifySchema.ts2
-rw-r--r--src/util/schemas/UserProfileModifySchema.ts2
-rw-r--r--src/util/schemas/UserProfileResponse.ts18
-rw-r--r--src/util/schemas/UserRelationsResponse.ts18
-rw-r--r--src/util/schemas/UserSettingsSchema.ts2
-rw-r--r--src/util/schemas/Validator.ts2
-rw-r--r--src/util/schemas/VanityUrlSchema.ts2
-rw-r--r--src/util/schemas/VerifyEmailSchema.ts2
-rw-r--r--src/util/schemas/VoiceIdentifySchema.ts2
-rw-r--r--src/util/schemas/VoiceStateUpdateSchema.ts2
-rw-r--r--src/util/schemas/VoiceVideoSchema.ts2
-rw-r--r--src/util/schemas/WebAuthnSchema.ts2
-rw-r--r--src/util/schemas/WebhookCreateSchema.ts2
-rw-r--r--src/util/schemas/WidgetModifySchema.ts2
-rw-r--r--src/util/schemas/index.ts2
-rw-r--r--src/util/util/ApiError.ts2
-rw-r--r--src/util/util/Array.ts2
-rw-r--r--src/util/util/AutoUpdate.ts2
-rw-r--r--src/util/util/Categories.ts2
-rw-r--r--src/util/util/Config.ts2
-rw-r--r--src/util/util/Constants.ts2
-rw-r--r--src/util/util/Database.ts2
-rw-r--r--src/util/util/Event.ts2
-rw-r--r--src/util/util/FieldError.ts2
-rw-r--r--src/util/util/Intents.ts2
-rw-r--r--src/util/util/InvisibleCharacters.ts2
-rw-r--r--src/util/util/JSON.ts18
-rw-r--r--src/util/util/RabbitMQ.ts2
-rw-r--r--src/util/util/Regex.ts2
-rw-r--r--src/util/util/Rights.ts2
-rw-r--r--src/util/util/Sentry.ts2
-rw-r--r--src/util/util/String.ts2
-rw-r--r--src/util/util/Token.ts2
-rw-r--r--src/util/util/TraverseDirectory.ts2
-rw-r--r--src/util/util/WebAuthn.ts2
-rw-r--r--src/util/util/cdn.ts2
-rw-r--r--src/util/util/email/index.ts2
-rw-r--r--src/util/util/email/transports/MailGun.ts18
-rw-r--r--src/util/util/email/transports/MailJet.ts18
-rw-r--r--src/util/util/email/transports/SMTP.ts18
-rw-r--r--src/util/util/email/transports/SendGrid.ts18
-rw-r--r--src/util/util/email/transports/index.ts18
-rw-r--r--src/util/util/index.ts2
-rw-r--r--src/webrtc/Server.ts2
-rw-r--r--src/webrtc/events/Close.ts2
-rw-r--r--src/webrtc/events/Connection.ts2
-rw-r--r--src/webrtc/events/Message.ts2
-rw-r--r--src/webrtc/index.ts2
-rw-r--r--src/webrtc/opcodes/BackendVersion.ts2
-rw-r--r--src/webrtc/opcodes/Heartbeat.ts2
-rw-r--r--src/webrtc/opcodes/Identify.ts2
-rw-r--r--src/webrtc/opcodes/SelectProtocol.ts2
-rw-r--r--src/webrtc/opcodes/Speaking.ts2
-rw-r--r--src/webrtc/opcodes/Video.ts2
-rw-r--r--src/webrtc/opcodes/index.ts2
-rw-r--r--src/webrtc/start.ts2
-rw-r--r--src/webrtc/util/Constants.ts2
-rw-r--r--src/webrtc/util/MediaServer.ts2
-rw-r--r--src/webrtc/util/index.ts2
425 files changed, 629 insertions, 413 deletions
diff --git a/src/api/Server.ts b/src/api/Server.ts
index 6ec531e0..dc84a943 100644
--- a/src/api/Server.ts
+++ b/src/api/Server.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/global.d.ts b/src/api/global.d.ts
index e996933a..da2f4272 100644
--- a/src/api/global.d.ts
+++ b/src/api/global.d.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/index.ts b/src/api/index.ts
index 88dcdb3a..18518072 100644
--- a/src/api/index.ts
+++ b/src/api/index.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/middlewares/Authentication.ts b/src/api/middlewares/Authentication.ts
index 771f0de8..7a30312f 100644
--- a/src/api/middlewares/Authentication.ts
+++ b/src/api/middlewares/Authentication.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/middlewares/BodyParser.ts b/src/api/middlewares/BodyParser.ts
index 646f33b1..e5c037d3 100644
--- a/src/api/middlewares/BodyParser.ts
+++ b/src/api/middlewares/BodyParser.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/middlewares/CORS.ts b/src/api/middlewares/CORS.ts
index e89fb909..2197c707 100644
--- a/src/api/middlewares/CORS.ts
+++ b/src/api/middlewares/CORS.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/middlewares/ErrorHandler.ts b/src/api/middlewares/ErrorHandler.ts
index a0664ccd..469e8ee6 100644
--- a/src/api/middlewares/ErrorHandler.ts
+++ b/src/api/middlewares/ErrorHandler.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/middlewares/RateLimit.ts b/src/api/middlewares/RateLimit.ts
index 1a28f356..576bbb96 100644
--- a/src/api/middlewares/RateLimit.ts
+++ b/src/api/middlewares/RateLimit.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/middlewares/Translation.ts b/src/api/middlewares/Translation.ts
index 928d29ff..1d651f11 100644
--- a/src/api/middlewares/Translation.ts
+++ b/src/api/middlewares/Translation.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/middlewares/index.ts b/src/api/middlewares/index.ts
index 096a7793..e4b67d81 100644
--- a/src/api/middlewares/index.ts
+++ b/src/api/middlewares/index.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/-/healthz.ts b/src/api/routes/-/healthz.ts
index a6be5a83..2d414832 100644
--- a/src/api/routes/-/healthz.ts
+++ b/src/api/routes/-/healthz.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/-/readyz.ts b/src/api/routes/-/readyz.ts
index a6be5a83..2d414832 100644
--- a/src/api/routes/-/readyz.ts
+++ b/src/api/routes/-/readyz.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/applications/#id/bot/index.ts b/src/api/routes/applications/#id/bot/index.ts
index 9bc3c571..f0826ffb 100644
--- a/src/api/routes/applications/#id/bot/index.ts
+++ b/src/api/routes/applications/#id/bot/index.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/applications/#id/entitlements.ts b/src/api/routes/applications/#id/entitlements.ts
index 98d992e3..7903f514 100644
--- a/src/api/routes/applications/#id/entitlements.ts
+++ b/src/api/routes/applications/#id/entitlements.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/applications/#id/index.ts b/src/api/routes/applications/#id/index.ts
index 59e90168..695173ae 100644
--- a/src/api/routes/applications/#id/index.ts
+++ b/src/api/routes/applications/#id/index.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/applications/#id/skus.ts b/src/api/routes/applications/#id/skus.ts
index 5a3a479f..fea25242 100644
--- a/src/api/routes/applications/#id/skus.ts
+++ b/src/api/routes/applications/#id/skus.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/applications/detectable.ts b/src/api/routes/applications/detectable.ts
index 85062aa6..0ec342ea 100644
--- a/src/api/routes/applications/detectable.ts
+++ b/src/api/routes/applications/detectable.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/applications/index.ts b/src/api/routes/applications/index.ts
index 859ee145..56605e45 100644
--- a/src/api/routes/applications/index.ts
+++ b/src/api/routes/applications/index.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/auth/forgot.ts b/src/api/routes/auth/forgot.ts
index 04df97d7..31ebb16d 100644
--- a/src/api/routes/auth/forgot.ts
+++ b/src/api/routes/auth/forgot.ts
@@ -1,3 +1,21 @@
+/*
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
+	Copyright (C) 2023 Fosscord and Fosscord Contributors
+	
+	This program is free software: you can redistribute it and/or modify
+	it under the terms of the GNU Affero General Public License as published
+	by the Free Software Foundation, either version 3 of the License, or
+	(at your option) any later version.
+	
+	This program is distributed in the hope that it will be useful,
+	but WITHOUT ANY WARRANTY; without even the implied warranty of
+	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+	GNU Affero General Public License for more details.
+	
+	You should have received a copy of the GNU Affero General Public License
+	along with this program.  If not, see <https://www.gnu.org/licenses/>.
+*/
+
 import { getIpAdress, route, verifyCaptcha } from "@fosscord/api";
 import {
 	Config,
diff --git a/src/api/routes/auth/generate-registration-tokens.ts b/src/api/routes/auth/generate-registration-tokens.ts
index c79d2a59..4458cfc8 100644
--- a/src/api/routes/auth/generate-registration-tokens.ts
+++ b/src/api/routes/auth/generate-registration-tokens.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/auth/location-metadata.ts b/src/api/routes/auth/location-metadata.ts
index 1ee8cd62..f6da3bdf 100644
--- a/src/api/routes/auth/location-metadata.ts
+++ b/src/api/routes/auth/location-metadata.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/auth/login.ts b/src/api/routes/auth/login.ts
index 9c6f2335..dab87e4e 100644
--- a/src/api/routes/auth/login.ts
+++ b/src/api/routes/auth/login.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/auth/logout.ts b/src/api/routes/auth/logout.ts
index 43ba72a2..adb995e5 100644
--- a/src/api/routes/auth/logout.ts
+++ b/src/api/routes/auth/logout.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/auth/mfa/totp.ts b/src/api/routes/auth/mfa/totp.ts
index bbbd1236..3c2025aa 100644
--- a/src/api/routes/auth/mfa/totp.ts
+++ b/src/api/routes/auth/mfa/totp.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/auth/mfa/webauthn.ts b/src/api/routes/auth/mfa/webauthn.ts
index a9fa78b2..63b12ca8 100644
--- a/src/api/routes/auth/mfa/webauthn.ts
+++ b/src/api/routes/auth/mfa/webauthn.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/auth/register.ts b/src/api/routes/auth/register.ts
index 0bf8efae..51efbc99 100644
--- a/src/api/routes/auth/register.ts
+++ b/src/api/routes/auth/register.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/auth/reset.ts b/src/api/routes/auth/reset.ts
index 9ab25dca..79ef296c 100644
--- a/src/api/routes/auth/reset.ts
+++ b/src/api/routes/auth/reset.ts
@@ -1,3 +1,21 @@
+/*
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
+	Copyright (C) 2023 Fosscord and Fosscord Contributors
+	
+	This program is free software: you can redistribute it and/or modify
+	it under the terms of the GNU Affero General Public License as published
+	by the Free Software Foundation, either version 3 of the License, or
+	(at your option) any later version.
+	
+	This program is distributed in the hope that it will be useful,
+	but WITHOUT ANY WARRANTY; without even the implied warranty of
+	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+	GNU Affero General Public License for more details.
+	
+	You should have received a copy of the GNU Affero General Public License
+	along with this program.  If not, see <https://www.gnu.org/licenses/>.
+*/
+
 import { route } from "@fosscord/api";
 import {
 	checkToken,
diff --git a/src/api/routes/auth/verify/index.ts b/src/api/routes/auth/verify/index.ts
index ac12bbb7..cd95d59d 100644
--- a/src/api/routes/auth/verify/index.ts
+++ b/src/api/routes/auth/verify/index.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/auth/verify/resend.ts b/src/api/routes/auth/verify/resend.ts
index 918af9a1..10436163 100644
--- a/src/api/routes/auth/verify/resend.ts
+++ b/src/api/routes/auth/verify/resend.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/auth/verify/view-backup-codes-challenge.ts b/src/api/routes/auth/verify/view-backup-codes-challenge.ts
index 3e1a6a92..31a9d166 100644
--- a/src/api/routes/auth/verify/view-backup-codes-challenge.ts
+++ b/src/api/routes/auth/verify/view-backup-codes-challenge.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/channels/#channel_id/followers.ts b/src/api/routes/channels/#channel_id/followers.ts
index a9d5d4ee..093eb3c3 100644
--- a/src/api/routes/channels/#channel_id/followers.ts
+++ b/src/api/routes/channels/#channel_id/followers.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/channels/#channel_id/index.ts b/src/api/routes/channels/#channel_id/index.ts
index 4a2023d2..d2228eba 100644
--- a/src/api/routes/channels/#channel_id/index.ts
+++ b/src/api/routes/channels/#channel_id/index.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/channels/#channel_id/invites.ts b/src/api/routes/channels/#channel_id/invites.ts
index 49620aaf..af7dff0b 100644
--- a/src/api/routes/channels/#channel_id/invites.ts
+++ b/src/api/routes/channels/#channel_id/invites.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/channels/#channel_id/messages/#message_id/ack.ts b/src/api/routes/channels/#channel_id/messages/#message_id/ack.ts
index 16c2de29..4800518a 100644
--- a/src/api/routes/channels/#channel_id/messages/#message_id/ack.ts
+++ b/src/api/routes/channels/#channel_id/messages/#message_id/ack.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/channels/#channel_id/messages/#message_id/crosspost.ts b/src/api/routes/channels/#channel_id/messages/#message_id/crosspost.ts
index bbbefad3..b054d413 100644
--- a/src/api/routes/channels/#channel_id/messages/#message_id/crosspost.ts
+++ b/src/api/routes/channels/#channel_id/messages/#message_id/crosspost.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/channels/#channel_id/messages/#message_id/index.ts b/src/api/routes/channels/#channel_id/messages/#message_id/index.ts
index 400b8f3a..7152afbb 100644
--- a/src/api/routes/channels/#channel_id/messages/#message_id/index.ts
+++ b/src/api/routes/channels/#channel_id/messages/#message_id/index.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/channels/#channel_id/messages/#message_id/reactions.ts b/src/api/routes/channels/#channel_id/messages/#message_id/reactions.ts
index c3598b24..94449cc8 100644
--- a/src/api/routes/channels/#channel_id/messages/#message_id/reactions.ts
+++ b/src/api/routes/channels/#channel_id/messages/#message_id/reactions.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/channels/#channel_id/messages/bulk-delete.ts b/src/api/routes/channels/#channel_id/messages/bulk-delete.ts
index ee039d3e..c816e04b 100644
--- a/src/api/routes/channels/#channel_id/messages/bulk-delete.ts
+++ b/src/api/routes/channels/#channel_id/messages/bulk-delete.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/channels/#channel_id/messages/index.ts b/src/api/routes/channels/#channel_id/messages/index.ts
index 76f6a0dc..43814846 100644
--- a/src/api/routes/channels/#channel_id/messages/index.ts
+++ b/src/api/routes/channels/#channel_id/messages/index.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/channels/#channel_id/permissions.ts b/src/api/routes/channels/#channel_id/permissions.ts
index da448678..4669eb73 100644
--- a/src/api/routes/channels/#channel_id/permissions.ts
+++ b/src/api/routes/channels/#channel_id/permissions.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/channels/#channel_id/pins.ts b/src/api/routes/channels/#channel_id/pins.ts
index 28419383..cf20d077 100644
--- a/src/api/routes/channels/#channel_id/pins.ts
+++ b/src/api/routes/channels/#channel_id/pins.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/channels/#channel_id/purge.ts b/src/api/routes/channels/#channel_id/purge.ts
index 04d8cfa2..1e6c2f50 100644
--- a/src/api/routes/channels/#channel_id/purge.ts
+++ b/src/api/routes/channels/#channel_id/purge.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/channels/#channel_id/recipients.ts b/src/api/routes/channels/#channel_id/recipients.ts
index 252a8ef0..111a2432 100644
--- a/src/api/routes/channels/#channel_id/recipients.ts
+++ b/src/api/routes/channels/#channel_id/recipients.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/channels/#channel_id/typing.ts b/src/api/routes/channels/#channel_id/typing.ts
index b50123c2..ba21283b 100644
--- a/src/api/routes/channels/#channel_id/typing.ts
+++ b/src/api/routes/channels/#channel_id/typing.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/channels/#channel_id/webhooks.ts b/src/api/routes/channels/#channel_id/webhooks.ts
index 31cae747..85530e33 100644
--- a/src/api/routes/channels/#channel_id/webhooks.ts
+++ b/src/api/routes/channels/#channel_id/webhooks.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/discoverable-guilds.ts b/src/api/routes/discoverable-guilds.ts
index 8f90d73c..cc3c61d8 100644
--- a/src/api/routes/discoverable-guilds.ts
+++ b/src/api/routes/discoverable-guilds.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/discovery.ts b/src/api/routes/discovery.ts
index 1414a617..50d9d96e 100644
--- a/src/api/routes/discovery.ts
+++ b/src/api/routes/discovery.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/download.ts b/src/api/routes/download.ts
index b6c03a48..e32d86b8 100644
--- a/src/api/routes/download.ts
+++ b/src/api/routes/download.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/experiments.ts b/src/api/routes/experiments.ts
index 8c32afda..3138e58d 100644
--- a/src/api/routes/experiments.ts
+++ b/src/api/routes/experiments.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/gateway/bot.ts b/src/api/routes/gateway/bot.ts
index 02049b19..72f8d903 100644
--- a/src/api/routes/gateway/bot.ts
+++ b/src/api/routes/gateway/bot.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/gateway/index.ts b/src/api/routes/gateway/index.ts
index f5ed4c1f..b7dd4903 100644
--- a/src/api/routes/gateway/index.ts
+++ b/src/api/routes/gateway/index.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/gifs/search.ts b/src/api/routes/gifs/search.ts
index ae63d643..cbd89c38 100644
--- a/src/api/routes/gifs/search.ts
+++ b/src/api/routes/gifs/search.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/gifs/trending-gifs.ts b/src/api/routes/gifs/trending-gifs.ts
index d0698fa0..389f72f7 100644
--- a/src/api/routes/gifs/trending-gifs.ts
+++ b/src/api/routes/gifs/trending-gifs.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/gifs/trending.ts b/src/api/routes/gifs/trending.ts
index 5c872df8..2631eab4 100644
--- a/src/api/routes/gifs/trending.ts
+++ b/src/api/routes/gifs/trending.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/guild-recommendations.ts b/src/api/routes/guild-recommendations.ts
index ac2ad9e7..e7112b93 100644
--- a/src/api/routes/guild-recommendations.ts
+++ b/src/api/routes/guild-recommendations.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/guilds/#guild_id/audit-logs.ts b/src/api/routes/guilds/#guild_id/audit-logs.ts
index c0e8e634..b27c2324 100644
--- a/src/api/routes/guilds/#guild_id/audit-logs.ts
+++ b/src/api/routes/guilds/#guild_id/audit-logs.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/guilds/#guild_id/bans.ts b/src/api/routes/guilds/#guild_id/bans.ts
index b044689f..ee0e4dd4 100644
--- a/src/api/routes/guilds/#guild_id/bans.ts
+++ b/src/api/routes/guilds/#guild_id/bans.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/guilds/#guild_id/channels.ts b/src/api/routes/guilds/#guild_id/channels.ts
index acdb5f19..176d4f7b 100644
--- a/src/api/routes/guilds/#guild_id/channels.ts
+++ b/src/api/routes/guilds/#guild_id/channels.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/guilds/#guild_id/delete.ts b/src/api/routes/guilds/#guild_id/delete.ts
index 9a13c9b4..236d53b2 100644
--- a/src/api/routes/guilds/#guild_id/delete.ts
+++ b/src/api/routes/guilds/#guild_id/delete.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/guilds/#guild_id/discovery-requirements.ts b/src/api/routes/guilds/#guild_id/discovery-requirements.ts
index de2da6ee..8dbf68a5 100644
--- a/src/api/routes/guilds/#guild_id/discovery-requirements.ts
+++ b/src/api/routes/guilds/#guild_id/discovery-requirements.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/guilds/#guild_id/emojis.ts b/src/api/routes/guilds/#guild_id/emojis.ts
index 491c9be2..e907fe91 100644
--- a/src/api/routes/guilds/#guild_id/emojis.ts
+++ b/src/api/routes/guilds/#guild_id/emojis.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/guilds/#guild_id/index.ts b/src/api/routes/guilds/#guild_id/index.ts
index c262a088..01da7f09 100644
--- a/src/api/routes/guilds/#guild_id/index.ts
+++ b/src/api/routes/guilds/#guild_id/index.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/guilds/#guild_id/integrations.ts b/src/api/routes/guilds/#guild_id/integrations.ts
index 4a274fbf..75882884 100644
--- a/src/api/routes/guilds/#guild_id/integrations.ts
+++ b/src/api/routes/guilds/#guild_id/integrations.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/guilds/#guild_id/invites.ts b/src/api/routes/guilds/#guild_id/invites.ts
index dd099992..7b37b495 100644
--- a/src/api/routes/guilds/#guild_id/invites.ts
+++ b/src/api/routes/guilds/#guild_id/invites.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/guilds/#guild_id/member-verification.ts b/src/api/routes/guilds/#guild_id/member-verification.ts
index 6d1f7bb5..ab6c7281 100644
--- a/src/api/routes/guilds/#guild_id/member-verification.ts
+++ b/src/api/routes/guilds/#guild_id/member-verification.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/guilds/#guild_id/members/#member_id/index.ts b/src/api/routes/guilds/#guild_id/members/#member_id/index.ts
index 6ac0dd3b..01b91d73 100644
--- a/src/api/routes/guilds/#guild_id/members/#member_id/index.ts
+++ b/src/api/routes/guilds/#guild_id/members/#member_id/index.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/guilds/#guild_id/members/#member_id/nick.ts b/src/api/routes/guilds/#guild_id/members/#member_id/nick.ts
index c93eab08..fc12ded3 100644
--- a/src/api/routes/guilds/#guild_id/members/#member_id/nick.ts
+++ b/src/api/routes/guilds/#guild_id/members/#member_id/nick.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/guilds/#guild_id/members/#member_id/roles/#role_id/index.ts b/src/api/routes/guilds/#guild_id/members/#member_id/roles/#role_id/index.ts
index 16c5e789..b6d56d1b 100644
--- a/src/api/routes/guilds/#guild_id/members/#member_id/roles/#role_id/index.ts
+++ b/src/api/routes/guilds/#guild_id/members/#member_id/roles/#role_id/index.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/guilds/#guild_id/members/index.ts b/src/api/routes/guilds/#guild_id/members/index.ts
index 51e9eb1f..f2079639 100644
--- a/src/api/routes/guilds/#guild_id/members/index.ts
+++ b/src/api/routes/guilds/#guild_id/members/index.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/guilds/#guild_id/messages/search.ts b/src/api/routes/guilds/#guild_id/messages/search.ts
index 601167ee..1ccff803 100644
--- a/src/api/routes/guilds/#guild_id/messages/search.ts
+++ b/src/api/routes/guilds/#guild_id/messages/search.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/guilds/#guild_id/premium.ts b/src/api/routes/guilds/#guild_id/premium.ts
index 61f6a220..b975f17b 100644
--- a/src/api/routes/guilds/#guild_id/premium.ts
+++ b/src/api/routes/guilds/#guild_id/premium.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/guilds/#guild_id/profile/index.ts b/src/api/routes/guilds/#guild_id/profile/index.ts
index cbf0ff6a..fe7a58b3 100644
--- a/src/api/routes/guilds/#guild_id/profile/index.ts
+++ b/src/api/routes/guilds/#guild_id/profile/index.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/guilds/#guild_id/prune.ts b/src/api/routes/guilds/#guild_id/prune.ts
index 37b70f63..5c123b2e 100644
--- a/src/api/routes/guilds/#guild_id/prune.ts
+++ b/src/api/routes/guilds/#guild_id/prune.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/guilds/#guild_id/regions.ts b/src/api/routes/guilds/#guild_id/regions.ts
index 61ba00bf..8441edb9 100644
--- a/src/api/routes/guilds/#guild_id/regions.ts
+++ b/src/api/routes/guilds/#guild_id/regions.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/guilds/#guild_id/roles/#role_id/index.ts b/src/api/routes/guilds/#guild_id/roles/#role_id/index.ts
index 48e77897..ee91454c 100644
--- a/src/api/routes/guilds/#guild_id/roles/#role_id/index.ts
+++ b/src/api/routes/guilds/#guild_id/roles/#role_id/index.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/guilds/#guild_id/roles/index.ts b/src/api/routes/guilds/#guild_id/roles/index.ts
index 54d4b12c..226feac5 100644
--- a/src/api/routes/guilds/#guild_id/roles/index.ts
+++ b/src/api/routes/guilds/#guild_id/roles/index.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/guilds/#guild_id/stickers.ts b/src/api/routes/guilds/#guild_id/stickers.ts
index 47fa373e..5d691eb9 100644
--- a/src/api/routes/guilds/#guild_id/stickers.ts
+++ b/src/api/routes/guilds/#guild_id/stickers.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/guilds/#guild_id/templates.ts b/src/api/routes/guilds/#guild_id/templates.ts
index 284bbccf..52703b4e 100644
--- a/src/api/routes/guilds/#guild_id/templates.ts
+++ b/src/api/routes/guilds/#guild_id/templates.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/guilds/#guild_id/vanity-url.ts b/src/api/routes/guilds/#guild_id/vanity-url.ts
index b11bead5..6ce4d176 100644
--- a/src/api/routes/guilds/#guild_id/vanity-url.ts
+++ b/src/api/routes/guilds/#guild_id/vanity-url.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/guilds/#guild_id/voice-states/#user_id/index.ts b/src/api/routes/guilds/#guild_id/voice-states/#user_id/index.ts
index 3577df17..ae41a596 100644
--- a/src/api/routes/guilds/#guild_id/voice-states/#user_id/index.ts
+++ b/src/api/routes/guilds/#guild_id/voice-states/#user_id/index.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/guilds/#guild_id/webhooks.ts b/src/api/routes/guilds/#guild_id/webhooks.ts
index f4bf1da0..aeee38ed 100644
--- a/src/api/routes/guilds/#guild_id/webhooks.ts
+++ b/src/api/routes/guilds/#guild_id/webhooks.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/guilds/#guild_id/welcome-screen.ts b/src/api/routes/guilds/#guild_id/welcome-screen.ts
index f366201a..27cab591 100644
--- a/src/api/routes/guilds/#guild_id/welcome-screen.ts
+++ b/src/api/routes/guilds/#guild_id/welcome-screen.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/guilds/#guild_id/widget.json.ts b/src/api/routes/guilds/#guild_id/widget.json.ts
index 9319d058..5c738012 100644
--- a/src/api/routes/guilds/#guild_id/widget.json.ts
+++ b/src/api/routes/guilds/#guild_id/widget.json.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/guilds/#guild_id/widget.png.ts b/src/api/routes/guilds/#guild_id/widget.png.ts
index 65de8978..614f0cb2 100644
--- a/src/api/routes/guilds/#guild_id/widget.png.ts
+++ b/src/api/routes/guilds/#guild_id/widget.png.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/guilds/#guild_id/widget.ts b/src/api/routes/guilds/#guild_id/widget.ts
index d2fcf589..f0b12f95 100644
--- a/src/api/routes/guilds/#guild_id/widget.ts
+++ b/src/api/routes/guilds/#guild_id/widget.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/guilds/index.ts b/src/api/routes/guilds/index.ts
index 64af4bd1..2469ee7b 100644
--- a/src/api/routes/guilds/index.ts
+++ b/src/api/routes/guilds/index.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/guilds/templates/index.ts b/src/api/routes/guilds/templates/index.ts
index a43337d8..c393b27b 100644
--- a/src/api/routes/guilds/templates/index.ts
+++ b/src/api/routes/guilds/templates/index.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/invites/index.ts b/src/api/routes/invites/index.ts
index b1afee52..b94823a5 100644
--- a/src/api/routes/invites/index.ts
+++ b/src/api/routes/invites/index.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/oauth2/authorize.ts b/src/api/routes/oauth2/authorize.ts
index e238b72f..99865ac6 100644
--- a/src/api/routes/oauth2/authorize.ts
+++ b/src/api/routes/oauth2/authorize.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/oauth2/tokens.ts b/src/api/routes/oauth2/tokens.ts
index 77801178..0f7fa5bb 100644
--- a/src/api/routes/oauth2/tokens.ts
+++ b/src/api/routes/oauth2/tokens.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/outbound-promotions.ts b/src/api/routes/outbound-promotions.ts
index 74315bfe..7b8e486f 100644
--- a/src/api/routes/outbound-promotions.ts
+++ b/src/api/routes/outbound-promotions.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/partners/#guild_id/requirements.ts b/src/api/routes/partners/#guild_id/requirements.ts
index de2da6ee..8dbf68a5 100644
--- a/src/api/routes/partners/#guild_id/requirements.ts
+++ b/src/api/routes/partners/#guild_id/requirements.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/ping.ts b/src/api/routes/ping.ts
index f13117bf..c567f7c9 100644
--- a/src/api/routes/ping.ts
+++ b/src/api/routes/ping.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/policies/instance/domains.ts b/src/api/routes/policies/instance/domains.ts
index c95493b0..472fd6d4 100644
--- a/src/api/routes/policies/instance/domains.ts
+++ b/src/api/routes/policies/instance/domains.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/policies/instance/index.ts b/src/api/routes/policies/instance/index.ts
index 394933b8..a4fd7069 100644
--- a/src/api/routes/policies/instance/index.ts
+++ b/src/api/routes/policies/instance/index.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/policies/instance/limits.ts b/src/api/routes/policies/instance/limits.ts
index a169a1b9..406d88c3 100644
--- a/src/api/routes/policies/instance/limits.ts
+++ b/src/api/routes/policies/instance/limits.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/policies/stats.ts b/src/api/routes/policies/stats.ts
index b7ff4773..782101b6 100644
--- a/src/api/routes/policies/stats.ts
+++ b/src/api/routes/policies/stats.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/read-states/ack-bulk.ts b/src/api/routes/read-states/ack-bulk.ts
index 2e4da957..582cf7fe 100644
--- a/src/api/routes/read-states/ack-bulk.ts
+++ b/src/api/routes/read-states/ack-bulk.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/scheduled-maintenances/upcoming_json.ts b/src/api/routes/scheduled-maintenances/upcoming_json.ts
index deacdac0..c117c7c7 100644
--- a/src/api/routes/scheduled-maintenances/upcoming_json.ts
+++ b/src/api/routes/scheduled-maintenances/upcoming_json.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/science.ts b/src/api/routes/science.ts
index e2ce9e03..fc74bca1 100644
--- a/src/api/routes/science.ts
+++ b/src/api/routes/science.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/stage-instances.ts b/src/api/routes/stage-instances.ts
index 74315bfe..7b8e486f 100644
--- a/src/api/routes/stage-instances.ts
+++ b/src/api/routes/stage-instances.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/sticker-packs/index.ts b/src/api/routes/sticker-packs/index.ts
index 6c5ce9f5..71104cbd 100644
--- a/src/api/routes/sticker-packs/index.ts
+++ b/src/api/routes/sticker-packs/index.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/stickers/#sticker_id/index.ts b/src/api/routes/stickers/#sticker_id/index.ts
index 956bea61..aa2990fb 100644
--- a/src/api/routes/stickers/#sticker_id/index.ts
+++ b/src/api/routes/stickers/#sticker_id/index.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/stop.ts b/src/api/routes/stop.ts
index fb6ac469..1b21f68a 100644
--- a/src/api/routes/stop.ts
+++ b/src/api/routes/stop.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/store/published-listings/applications.ts b/src/api/routes/store/published-listings/applications.ts
index ec9168b1..2afee7c3 100644
--- a/src/api/routes/store/published-listings/applications.ts
+++ b/src/api/routes/store/published-listings/applications.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/store/published-listings/applications/#id/subscription-plans.ts b/src/api/routes/store/published-listings/applications/#id/subscription-plans.ts
index b2171444..638dec40 100644
--- a/src/api/routes/store/published-listings/applications/#id/subscription-plans.ts
+++ b/src/api/routes/store/published-listings/applications/#id/subscription-plans.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/store/published-listings/skus.ts b/src/api/routes/store/published-listings/skus.ts
index ec9168b1..2afee7c3 100644
--- a/src/api/routes/store/published-listings/skus.ts
+++ b/src/api/routes/store/published-listings/skus.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/store/published-listings/skus/#sku_id/subscription-plans.ts b/src/api/routes/store/published-listings/skus/#sku_id/subscription-plans.ts
index 26285d3a..e9f16037 100644
--- a/src/api/routes/store/published-listings/skus/#sku_id/subscription-plans.ts
+++ b/src/api/routes/store/published-listings/skus/#sku_id/subscription-plans.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/teams.ts b/src/api/routes/teams.ts
index 38371b92..fdd0c2e1 100644
--- a/src/api/routes/teams.ts
+++ b/src/api/routes/teams.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/track.ts b/src/api/routes/track.ts
index e2ce9e03..fc74bca1 100644
--- a/src/api/routes/track.ts
+++ b/src/api/routes/track.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/updates.ts b/src/api/routes/updates.ts
index 5c237465..be39cd3f 100644
--- a/src/api/routes/updates.ts
+++ b/src/api/routes/updates.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/users/#id/delete.ts b/src/api/routes/users/#id/delete.ts
index 9bc3f9f8..e2081739 100644
--- a/src/api/routes/users/#id/delete.ts
+++ b/src/api/routes/users/#id/delete.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/users/#id/index.ts b/src/api/routes/users/#id/index.ts
index 14313c1f..95d6a1c9 100644
--- a/src/api/routes/users/#id/index.ts
+++ b/src/api/routes/users/#id/index.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/users/#id/profile.ts b/src/api/routes/users/#id/profile.ts
index 92b4a0fc..a368a135 100644
--- a/src/api/routes/users/#id/profile.ts
+++ b/src/api/routes/users/#id/profile.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/users/#id/relationships.ts b/src/api/routes/users/#id/relationships.ts
index 04a407b7..edd028d0 100644
--- a/src/api/routes/users/#id/relationships.ts
+++ b/src/api/routes/users/#id/relationships.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/users/@me/activities/statistics/applications.ts b/src/api/routes/users/@me/activities/statistics/applications.ts
index 105249e6..44f35b67 100644
--- a/src/api/routes/users/@me/activities/statistics/applications.ts
+++ b/src/api/routes/users/@me/activities/statistics/applications.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/users/@me/affinities/guilds.ts b/src/api/routes/users/@me/affinities/guilds.ts
index 502b776c..080ba066 100644
--- a/src/api/routes/users/@me/affinities/guilds.ts
+++ b/src/api/routes/users/@me/affinities/guilds.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/users/@me/affinities/users.ts b/src/api/routes/users/@me/affinities/users.ts
index 292532c0..62629753 100644
--- a/src/api/routes/users/@me/affinities/users.ts
+++ b/src/api/routes/users/@me/affinities/users.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/users/@me/applications/#app_id/entitlements.ts b/src/api/routes/users/@me/applications/#app_id/entitlements.ts
index 74315bfe..7b8e486f 100644
--- a/src/api/routes/users/@me/applications/#app_id/entitlements.ts
+++ b/src/api/routes/users/@me/applications/#app_id/entitlements.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/users/@me/billing/country-code.ts b/src/api/routes/users/@me/billing/country-code.ts
index bd3d3ac7..9d149fef 100644
--- a/src/api/routes/users/@me/billing/country-code.ts
+++ b/src/api/routes/users/@me/billing/country-code.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/users/@me/billing/payment-sources.ts b/src/api/routes/users/@me/billing/payment-sources.ts
index 105249e6..44f35b67 100644
--- a/src/api/routes/users/@me/billing/payment-sources.ts
+++ b/src/api/routes/users/@me/billing/payment-sources.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/users/@me/billing/subscriptions.ts b/src/api/routes/users/@me/billing/subscriptions.ts
index 74315bfe..7b8e486f 100644
--- a/src/api/routes/users/@me/billing/subscriptions.ts
+++ b/src/api/routes/users/@me/billing/subscriptions.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/users/@me/channels.ts b/src/api/routes/users/@me/channels.ts
index 5d05c5c6..01151f2e 100644
--- a/src/api/routes/users/@me/channels.ts
+++ b/src/api/routes/users/@me/channels.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/users/@me/connections.ts b/src/api/routes/users/@me/connections.ts
index 74315bfe..7b8e486f 100644
--- a/src/api/routes/users/@me/connections.ts
+++ b/src/api/routes/users/@me/connections.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/users/@me/delete.ts b/src/api/routes/users/@me/delete.ts
index 8043eae3..bd7ac8bb 100644
--- a/src/api/routes/users/@me/delete.ts
+++ b/src/api/routes/users/@me/delete.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/users/@me/devices.ts b/src/api/routes/users/@me/devices.ts
index e2ce9e03..fc74bca1 100644
--- a/src/api/routes/users/@me/devices.ts
+++ b/src/api/routes/users/@me/devices.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/users/@me/disable.ts b/src/api/routes/users/@me/disable.ts
index 9cb6e5c4..25cfb214 100644
--- a/src/api/routes/users/@me/disable.ts
+++ b/src/api/routes/users/@me/disable.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/users/@me/email-settings.ts b/src/api/routes/users/@me/email-settings.ts
index a95fa658..277c8dbf 100644
--- a/src/api/routes/users/@me/email-settings.ts
+++ b/src/api/routes/users/@me/email-settings.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/users/@me/entitlements.ts b/src/api/routes/users/@me/entitlements.ts
index c4376cd4..fac7d9e0 100644
--- a/src/api/routes/users/@me/entitlements.ts
+++ b/src/api/routes/users/@me/entitlements.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/users/@me/guilds.ts b/src/api/routes/users/@me/guilds.ts
index 4166643f..61f4ca06 100644
--- a/src/api/routes/users/@me/guilds.ts
+++ b/src/api/routes/users/@me/guilds.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/users/@me/guilds/#guild_id/settings.ts b/src/api/routes/users/@me/guilds/#guild_id/settings.ts
index 72c95d6b..914204b2 100644
--- a/src/api/routes/users/@me/guilds/#guild_id/settings.ts
+++ b/src/api/routes/users/@me/guilds/#guild_id/settings.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/users/@me/guilds/premium/subscription-slots.ts b/src/api/routes/users/@me/guilds/premium/subscription-slots.ts
index 105249e6..44f35b67 100644
--- a/src/api/routes/users/@me/guilds/premium/subscription-slots.ts
+++ b/src/api/routes/users/@me/guilds/premium/subscription-slots.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/users/@me/index.ts b/src/api/routes/users/@me/index.ts
index 30091344..2252e22a 100644
--- a/src/api/routes/users/@me/index.ts
+++ b/src/api/routes/users/@me/index.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/users/@me/library.ts b/src/api/routes/users/@me/library.ts
index b04cbe57..520420b7 100644
--- a/src/api/routes/users/@me/library.ts
+++ b/src/api/routes/users/@me/library.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/users/@me/mfa/codes-verification.ts b/src/api/routes/users/@me/mfa/codes-verification.ts
index 24f018c9..fc38a761 100644
--- a/src/api/routes/users/@me/mfa/codes-verification.ts
+++ b/src/api/routes/users/@me/mfa/codes-verification.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/users/@me/mfa/codes.ts b/src/api/routes/users/@me/mfa/codes.ts
index e2600400..9b977bb3 100644
--- a/src/api/routes/users/@me/mfa/codes.ts
+++ b/src/api/routes/users/@me/mfa/codes.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/users/@me/mfa/totp/disable.ts b/src/api/routes/users/@me/mfa/totp/disable.ts
index e35691ae..10cb83f6 100644
--- a/src/api/routes/users/@me/mfa/totp/disable.ts
+++ b/src/api/routes/users/@me/mfa/totp/disable.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/users/@me/mfa/totp/enable.ts b/src/api/routes/users/@me/mfa/totp/enable.ts
index f6519ad0..e0c351ae 100644
--- a/src/api/routes/users/@me/mfa/totp/enable.ts
+++ b/src/api/routes/users/@me/mfa/totp/enable.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/users/@me/mfa/webauthn/credentials/#key_id/index.ts b/src/api/routes/users/@me/mfa/webauthn/credentials/#key_id/index.ts
index a4381f37..e2188618 100644
--- a/src/api/routes/users/@me/mfa/webauthn/credentials/#key_id/index.ts
+++ b/src/api/routes/users/@me/mfa/webauthn/credentials/#key_id/index.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/users/@me/mfa/webauthn/credentials/index.ts b/src/api/routes/users/@me/mfa/webauthn/credentials/index.ts
index 85fb251c..f3de9c37 100644
--- a/src/api/routes/users/@me/mfa/webauthn/credentials/index.ts
+++ b/src/api/routes/users/@me/mfa/webauthn/credentials/index.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/users/@me/notes.ts b/src/api/routes/users/@me/notes.ts
index 64730c1a..7948015b 100644
--- a/src/api/routes/users/@me/notes.ts
+++ b/src/api/routes/users/@me/notes.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/users/@me/relationships.ts b/src/api/routes/users/@me/relationships.ts
index 4dfb4c33..910b55db 100644
--- a/src/api/routes/users/@me/relationships.ts
+++ b/src/api/routes/users/@me/relationships.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/users/@me/settings.ts b/src/api/routes/users/@me/settings.ts
index cfcedec1..045d4aec 100644
--- a/src/api/routes/users/@me/settings.ts
+++ b/src/api/routes/users/@me/settings.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/routes/voice/regions.ts b/src/api/routes/voice/regions.ts
index b7e87730..45834fc2 100644
--- a/src/api/routes/voice/regions.ts
+++ b/src/api/routes/voice/regions.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/start.ts b/src/api/start.ts
index 7975d085..560f8584 100644
--- a/src/api/start.ts
+++ b/src/api/start.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/util/handlers/Instance.ts b/src/api/util/handlers/Instance.ts
index 08157208..8670a880 100644
--- a/src/api/util/handlers/Instance.ts
+++ b/src/api/util/handlers/Instance.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/util/handlers/Message.ts b/src/api/util/handlers/Message.ts
index e514d400..65facb3a 100644
--- a/src/api/util/handlers/Message.ts
+++ b/src/api/util/handlers/Message.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/util/handlers/Voice.ts b/src/api/util/handlers/Voice.ts
index 24bfa7b3..d49878ce 100644
--- a/src/api/util/handlers/Voice.ts
+++ b/src/api/util/handlers/Voice.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/util/handlers/route.ts b/src/api/util/handlers/route.ts
index cb160637..7b56e17c 100644
--- a/src/api/util/handlers/route.ts
+++ b/src/api/util/handlers/route.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/util/index.ts b/src/api/util/index.ts
index 09b6170e..4cc93afb 100644
--- a/src/api/util/index.ts
+++ b/src/api/util/index.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/util/utility/Base64.ts b/src/api/util/utility/Base64.ts
index 892e0ada..4f7034cd 100644
--- a/src/api/util/utility/Base64.ts
+++ b/src/api/util/utility/Base64.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/util/utility/EmbedHandlers.ts b/src/api/util/utility/EmbedHandlers.ts
index 8466a374..40d7679a 100644
--- a/src/api/util/utility/EmbedHandlers.ts
+++ b/src/api/util/utility/EmbedHandlers.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/util/utility/RandomInviteID.ts b/src/api/util/utility/RandomInviteID.ts
index 7ce54ad2..0bcca2db 100644
--- a/src/api/util/utility/RandomInviteID.ts
+++ b/src/api/util/utility/RandomInviteID.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/util/utility/String.ts b/src/api/util/utility/String.ts
index 3137e3c8..4c633883 100644
--- a/src/api/util/utility/String.ts
+++ b/src/api/util/utility/String.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/util/utility/captcha.ts b/src/api/util/utility/captcha.ts
index bd05582f..8b11b231 100644
--- a/src/api/util/utility/captcha.ts
+++ b/src/api/util/utility/captcha.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/util/utility/ipAddress.ts b/src/api/util/utility/ipAddress.ts
index 71a48682..99f58b71 100644
--- a/src/api/util/utility/ipAddress.ts
+++ b/src/api/util/utility/ipAddress.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/api/util/utility/passwordStrength.ts b/src/api/util/utility/passwordStrength.ts
index b293b856..638df5db 100644
--- a/src/api/util/utility/passwordStrength.ts
+++ b/src/api/util/utility/passwordStrength.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/bundle/Server.ts b/src/bundle/Server.ts
index 119bb52b..74969dcc 100644
--- a/src/bundle/Server.ts
+++ b/src/bundle/Server.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/bundle/index.ts b/src/bundle/index.ts
index 617dc715..a883cadd 100644
--- a/src/bundle/index.ts
+++ b/src/bundle/index.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/bundle/start.ts b/src/bundle/start.ts
index 8da3cc20..604064c0 100644
--- a/src/bundle/start.ts
+++ b/src/bundle/start.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/bundle/stats.ts b/src/bundle/stats.ts
index 6e5bed36..73175c0d 100644
--- a/src/bundle/stats.ts
+++ b/src/bundle/stats.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/cdn/Server.ts b/src/cdn/Server.ts
index 37317bff..b3bcfc5f 100644
--- a/src/cdn/Server.ts
+++ b/src/cdn/Server.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/cdn/index.ts b/src/cdn/index.ts
index 0c06b8d1..1f8ac720 100644
--- a/src/cdn/index.ts
+++ b/src/cdn/index.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/cdn/routes/attachments.ts b/src/cdn/routes/attachments.ts
index 398a243f..d5950f12 100644
--- a/src/cdn/routes/attachments.ts
+++ b/src/cdn/routes/attachments.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/cdn/routes/avatars.ts b/src/cdn/routes/avatars.ts
index 7dc23d60..6493462b 100644
--- a/src/cdn/routes/avatars.ts
+++ b/src/cdn/routes/avatars.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/cdn/routes/embed.ts b/src/cdn/routes/embed.ts
index d49d69f7..811ddb9b 100644
--- a/src/cdn/routes/embed.ts
+++ b/src/cdn/routes/embed.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/cdn/routes/guild-profiles.ts b/src/cdn/routes/guild-profiles.ts
index ae8786ae..f872e03f 100644
--- a/src/cdn/routes/guild-profiles.ts
+++ b/src/cdn/routes/guild-profiles.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/cdn/routes/ping.ts b/src/cdn/routes/ping.ts
index 682c38cc..46afeca0 100644
--- a/src/cdn/routes/ping.ts
+++ b/src/cdn/routes/ping.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/cdn/routes/role-icons.ts b/src/cdn/routes/role-icons.ts
index 8f10ab78..93702f8d 100644
--- a/src/cdn/routes/role-icons.ts
+++ b/src/cdn/routes/role-icons.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/cdn/start.ts b/src/cdn/start.ts
index c36a6b73..0080691f 100644
--- a/src/cdn/start.ts
+++ b/src/cdn/start.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/cdn/util/FileStorage.ts b/src/cdn/util/FileStorage.ts
index ee087c85..956ea21e 100644
--- a/src/cdn/util/FileStorage.ts
+++ b/src/cdn/util/FileStorage.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/cdn/util/S3Storage.ts b/src/cdn/util/S3Storage.ts
index 480fd9fd..f2d8265c 100644
--- a/src/cdn/util/S3Storage.ts
+++ b/src/cdn/util/S3Storage.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/cdn/util/Storage.ts b/src/cdn/util/Storage.ts
index 0d55bbd0..7cf4fb26 100644
--- a/src/cdn/util/Storage.ts
+++ b/src/cdn/util/Storage.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/cdn/util/index.ts b/src/cdn/util/index.ts
index 4574fb10..c87c23c6 100644
--- a/src/cdn/util/index.ts
+++ b/src/cdn/util/index.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/cdn/util/multer.ts b/src/cdn/util/multer.ts
index 5e0e4473..ef0df57b 100644
--- a/src/cdn/util/multer.ts
+++ b/src/cdn/util/multer.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/gateway/Server.ts b/src/gateway/Server.ts
index 3eec5c8f..61a83201 100644
--- a/src/gateway/Server.ts
+++ b/src/gateway/Server.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/gateway/events/Close.ts b/src/gateway/events/Close.ts
index 296ab5ee..544362df 100644
--- a/src/gateway/events/Close.ts
+++ b/src/gateway/events/Close.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/gateway/events/Connection.ts b/src/gateway/events/Connection.ts
index 1c902de0..b166321e 100644
--- a/src/gateway/events/Connection.ts
+++ b/src/gateway/events/Connection.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/gateway/events/Message.ts b/src/gateway/events/Message.ts
index 16e4518d..53e96b30 100644
--- a/src/gateway/events/Message.ts
+++ b/src/gateway/events/Message.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/gateway/index.ts b/src/gateway/index.ts
index 0748e80e..fe4b76cd 100644
--- a/src/gateway/index.ts
+++ b/src/gateway/index.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/gateway/listener/listener.ts b/src/gateway/listener/listener.ts
index 824341f9..5700b4e0 100644
--- a/src/gateway/listener/listener.ts
+++ b/src/gateway/listener/listener.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/gateway/opcodes/Heartbeat.ts b/src/gateway/opcodes/Heartbeat.ts
index 77c8671f..88968a32 100644
--- a/src/gateway/opcodes/Heartbeat.ts
+++ b/src/gateway/opcodes/Heartbeat.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/gateway/opcodes/Identify.ts b/src/gateway/opcodes/Identify.ts
index 1a632b84..e465516d 100644
--- a/src/gateway/opcodes/Identify.ts
+++ b/src/gateway/opcodes/Identify.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/gateway/opcodes/LazyRequest.ts b/src/gateway/opcodes/LazyRequest.ts
index b7fff4d1..d1806f91 100644
--- a/src/gateway/opcodes/LazyRequest.ts
+++ b/src/gateway/opcodes/LazyRequest.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/gateway/opcodes/PresenceUpdate.ts b/src/gateway/opcodes/PresenceUpdate.ts
index 016aa33c..7951422f 100644
--- a/src/gateway/opcodes/PresenceUpdate.ts
+++ b/src/gateway/opcodes/PresenceUpdate.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/gateway/opcodes/RequestGuildMembers.ts b/src/gateway/opcodes/RequestGuildMembers.ts
index 7822813b..159bcd69 100644
--- a/src/gateway/opcodes/RequestGuildMembers.ts
+++ b/src/gateway/opcodes/RequestGuildMembers.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/gateway/opcodes/Resume.ts b/src/gateway/opcodes/Resume.ts
index a8650cc4..b50d785f 100644
--- a/src/gateway/opcodes/Resume.ts
+++ b/src/gateway/opcodes/Resume.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/gateway/opcodes/VoiceStateUpdate.ts b/src/gateway/opcodes/VoiceStateUpdate.ts
index d300d7b7..93c22786 100644
--- a/src/gateway/opcodes/VoiceStateUpdate.ts
+++ b/src/gateway/opcodes/VoiceStateUpdate.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/gateway/opcodes/index.ts b/src/gateway/opcodes/index.ts
index 1e32f1e6..96d609a9 100644
--- a/src/gateway/opcodes/index.ts
+++ b/src/gateway/opcodes/index.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/gateway/opcodes/instanceOf.ts b/src/gateway/opcodes/instanceOf.ts
index 6c23cb08..c367e234 100644
--- a/src/gateway/opcodes/instanceOf.ts
+++ b/src/gateway/opcodes/instanceOf.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/gateway/start.ts b/src/gateway/start.ts
index 79448f91..51322321 100644
--- a/src/gateway/start.ts
+++ b/src/gateway/start.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/gateway/util/Constants.ts b/src/gateway/util/Constants.ts
index cb60005c..8600340a 100644
--- a/src/gateway/util/Constants.ts
+++ b/src/gateway/util/Constants.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/gateway/util/Heartbeat.ts b/src/gateway/util/Heartbeat.ts
index 2d04b436..d2397d95 100644
--- a/src/gateway/util/Heartbeat.ts
+++ b/src/gateway/util/Heartbeat.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/gateway/util/Send.ts b/src/gateway/util/Send.ts
index e39554a4..e67d3011 100644
--- a/src/gateway/util/Send.ts
+++ b/src/gateway/util/Send.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/gateway/util/SessionUtils.ts b/src/gateway/util/SessionUtils.ts
index 806f4f9d..cd6cf9cd 100644
--- a/src/gateway/util/SessionUtils.ts
+++ b/src/gateway/util/SessionUtils.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/gateway/util/WebSocket.ts b/src/gateway/util/WebSocket.ts
index 14917f21..617e1d95 100644
--- a/src/gateway/util/WebSocket.ts
+++ b/src/gateway/util/WebSocket.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/gateway/util/index.ts b/src/gateway/util/index.ts
index c44a7d14..f04be4b6 100644
--- a/src/gateway/util/index.ts
+++ b/src/gateway/util/index.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/config/Config.ts b/src/util/config/Config.ts
index f130e760..280e05d4 100644
--- a/src/util/config/Config.ts
+++ b/src/util/config/Config.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/config/index.ts b/src/util/config/index.ts
index 18a2fd2c..5bfc9d90 100644
--- a/src/util/config/index.ts
+++ b/src/util/config/index.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/config/types/ApiConfiguration.ts b/src/util/config/types/ApiConfiguration.ts
index 0389ed3e..ebfc303f 100644
--- a/src/util/config/types/ApiConfiguration.ts
+++ b/src/util/config/types/ApiConfiguration.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/config/types/CdnConfiguration.ts b/src/util/config/types/CdnConfiguration.ts
index e547b9af..72898dd8 100644
--- a/src/util/config/types/CdnConfiguration.ts
+++ b/src/util/config/types/CdnConfiguration.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/config/types/DefaultsConfiguration.ts b/src/util/config/types/DefaultsConfiguration.ts
index 5561e7d5..60174c8f 100644
--- a/src/util/config/types/DefaultsConfiguration.ts
+++ b/src/util/config/types/DefaultsConfiguration.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/config/types/EmailConfiguration.ts b/src/util/config/types/EmailConfiguration.ts
index 989d59eb..1f288355 100644
--- a/src/util/config/types/EmailConfiguration.ts
+++ b/src/util/config/types/EmailConfiguration.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/config/types/EndpointConfiguration.ts b/src/util/config/types/EndpointConfiguration.ts
index e7afe494..cae6ca43 100644
--- a/src/util/config/types/EndpointConfiguration.ts
+++ b/src/util/config/types/EndpointConfiguration.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/config/types/ExternalTokensConfiguration.ts b/src/util/config/types/ExternalTokensConfiguration.ts
index 7fb6c1a8..a04c4897 100644
--- a/src/util/config/types/ExternalTokensConfiguration.ts
+++ b/src/util/config/types/ExternalTokensConfiguration.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/config/types/GeneralConfiguration.ts b/src/util/config/types/GeneralConfiguration.ts
index ba7503b7..5a067a70 100644
--- a/src/util/config/types/GeneralConfiguration.ts
+++ b/src/util/config/types/GeneralConfiguration.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/config/types/GifConfiguration.ts b/src/util/config/types/GifConfiguration.ts
index 0e5583fa..bd573be9 100644
--- a/src/util/config/types/GifConfiguration.ts
+++ b/src/util/config/types/GifConfiguration.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/config/types/GuildConfiguration.ts b/src/util/config/types/GuildConfiguration.ts
index addff709..cad08419 100644
--- a/src/util/config/types/GuildConfiguration.ts
+++ b/src/util/config/types/GuildConfiguration.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/config/types/KafkaConfiguration.ts b/src/util/config/types/KafkaConfiguration.ts
index dd1aae8b..99750823 100644
--- a/src/util/config/types/KafkaConfiguration.ts
+++ b/src/util/config/types/KafkaConfiguration.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/config/types/LimitConfigurations.ts b/src/util/config/types/LimitConfigurations.ts
index 6e2e2d54..6e4d8cbb 100644
--- a/src/util/config/types/LimitConfigurations.ts
+++ b/src/util/config/types/LimitConfigurations.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/config/types/LoginConfiguration.ts b/src/util/config/types/LoginConfiguration.ts
index 1d5752fe..a146451c 100644
--- a/src/util/config/types/LoginConfiguration.ts
+++ b/src/util/config/types/LoginConfiguration.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/config/types/MetricsConfiguration.ts b/src/util/config/types/MetricsConfiguration.ts
index 184014b4..36235e54 100644
--- a/src/util/config/types/MetricsConfiguration.ts
+++ b/src/util/config/types/MetricsConfiguration.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/config/types/PasswordResetConfiguration.ts b/src/util/config/types/PasswordResetConfiguration.ts
index 806d77be..ee0e10aa 100644
--- a/src/util/config/types/PasswordResetConfiguration.ts
+++ b/src/util/config/types/PasswordResetConfiguration.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/config/types/RabbitMQConfiguration.ts b/src/util/config/types/RabbitMQConfiguration.ts
index 28e76bf0..a25d6acb 100644
--- a/src/util/config/types/RabbitMQConfiguration.ts
+++ b/src/util/config/types/RabbitMQConfiguration.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/config/types/RegionConfiguration.ts b/src/util/config/types/RegionConfiguration.ts
index 039f19b2..bddc98b8 100644
--- a/src/util/config/types/RegionConfiguration.ts
+++ b/src/util/config/types/RegionConfiguration.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/config/types/RegisterConfiguration.ts b/src/util/config/types/RegisterConfiguration.ts
index b8db0077..aa66ebb4 100644
--- a/src/util/config/types/RegisterConfiguration.ts
+++ b/src/util/config/types/RegisterConfiguration.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/config/types/SecurityConfiguration.ts b/src/util/config/types/SecurityConfiguration.ts
index 7ae311e4..a7fa34d0 100644
--- a/src/util/config/types/SecurityConfiguration.ts
+++ b/src/util/config/types/SecurityConfiguration.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/config/types/SentryConfiguration.ts b/src/util/config/types/SentryConfiguration.ts
index ea889905..98daf09c 100644
--- a/src/util/config/types/SentryConfiguration.ts
+++ b/src/util/config/types/SentryConfiguration.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/config/types/TemplateConfiguration.ts b/src/util/config/types/TemplateConfiguration.ts
index 9c6d6bc6..59efb91c 100644
--- a/src/util/config/types/TemplateConfiguration.ts
+++ b/src/util/config/types/TemplateConfiguration.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/config/types/index.ts b/src/util/config/types/index.ts
index cd3335e0..f435c56c 100644
--- a/src/util/config/types/index.ts
+++ b/src/util/config/types/index.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/config/types/subconfigurations/client/ClientReleaseConfiguration.ts b/src/util/config/types/subconfigurations/client/ClientReleaseConfiguration.ts
index 797ef4ee..f6ae1fcd 100644
--- a/src/util/config/types/subconfigurations/client/ClientReleaseConfiguration.ts
+++ b/src/util/config/types/subconfigurations/client/ClientReleaseConfiguration.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/config/types/subconfigurations/client/index.ts b/src/util/config/types/subconfigurations/client/index.ts
index 7c01e505..9caf84e8 100644
--- a/src/util/config/types/subconfigurations/client/index.ts
+++ b/src/util/config/types/subconfigurations/client/index.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/config/types/subconfigurations/defaults/GuildDefaults.ts b/src/util/config/types/subconfigurations/defaults/GuildDefaults.ts
index 89d51523..6148c09e 100644
--- a/src/util/config/types/subconfigurations/defaults/GuildDefaults.ts
+++ b/src/util/config/types/subconfigurations/defaults/GuildDefaults.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/config/types/subconfigurations/defaults/UserDefaults.ts b/src/util/config/types/subconfigurations/defaults/UserDefaults.ts
index cc23b677..38e2eccf 100644
--- a/src/util/config/types/subconfigurations/defaults/UserDefaults.ts
+++ b/src/util/config/types/subconfigurations/defaults/UserDefaults.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/config/types/subconfigurations/defaults/index.ts b/src/util/config/types/subconfigurations/defaults/index.ts
index 85fcb70d..6e927d80 100644
--- a/src/util/config/types/subconfigurations/defaults/index.ts
+++ b/src/util/config/types/subconfigurations/defaults/index.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/config/types/subconfigurations/email/MailGun.ts b/src/util/config/types/subconfigurations/email/MailGun.ts
index 52cd9069..3fc46adc 100644
--- a/src/util/config/types/subconfigurations/email/MailGun.ts
+++ b/src/util/config/types/subconfigurations/email/MailGun.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/config/types/subconfigurations/email/MailJet.ts b/src/util/config/types/subconfigurations/email/MailJet.ts
index eccda8ac..e9a8f903 100644
--- a/src/util/config/types/subconfigurations/email/MailJet.ts
+++ b/src/util/config/types/subconfigurations/email/MailJet.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/config/types/subconfigurations/email/SMTP.ts b/src/util/config/types/subconfigurations/email/SMTP.ts
index 11eb9e14..9f2b5fda 100644
--- a/src/util/config/types/subconfigurations/email/SMTP.ts
+++ b/src/util/config/types/subconfigurations/email/SMTP.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/config/types/subconfigurations/email/SendGrid.ts b/src/util/config/types/subconfigurations/email/SendGrid.ts
index a4755dfb..1b610239 100644
--- a/src/util/config/types/subconfigurations/email/SendGrid.ts
+++ b/src/util/config/types/subconfigurations/email/SendGrid.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/config/types/subconfigurations/email/index.ts b/src/util/config/types/subconfigurations/email/index.ts
index 02cc564c..2ffa3d8b 100644
--- a/src/util/config/types/subconfigurations/email/index.ts
+++ b/src/util/config/types/subconfigurations/email/index.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/config/types/subconfigurations/guild/AutoJoin.ts b/src/util/config/types/subconfigurations/guild/AutoJoin.ts
index aabead63..e4267ddf 100644
--- a/src/util/config/types/subconfigurations/guild/AutoJoin.ts
+++ b/src/util/config/types/subconfigurations/guild/AutoJoin.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/config/types/subconfigurations/guild/Discovery.ts b/src/util/config/types/subconfigurations/guild/Discovery.ts
index 25a0cb4b..00d53955 100644
--- a/src/util/config/types/subconfigurations/guild/Discovery.ts
+++ b/src/util/config/types/subconfigurations/guild/Discovery.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/config/types/subconfigurations/guild/index.ts b/src/util/config/types/subconfigurations/guild/index.ts
index 8aae00b4..b386342e 100644
--- a/src/util/config/types/subconfigurations/guild/index.ts
+++ b/src/util/config/types/subconfigurations/guild/index.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/config/types/subconfigurations/index.ts b/src/util/config/types/subconfigurations/index.ts
index b3737da0..b20cef0b 100644
--- a/src/util/config/types/subconfigurations/index.ts
+++ b/src/util/config/types/subconfigurations/index.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/config/types/subconfigurations/kafka/KafkaBroker.ts b/src/util/config/types/subconfigurations/kafka/KafkaBroker.ts
index cfcfbaae..3dc0a916 100644
--- a/src/util/config/types/subconfigurations/kafka/KafkaBroker.ts
+++ b/src/util/config/types/subconfigurations/kafka/KafkaBroker.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/config/types/subconfigurations/kafka/index.ts b/src/util/config/types/subconfigurations/kafka/index.ts
index dcc66cd4..5cdee391 100644
--- a/src/util/config/types/subconfigurations/kafka/index.ts
+++ b/src/util/config/types/subconfigurations/kafka/index.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/config/types/subconfigurations/limits/ChannelLimits.ts b/src/util/config/types/subconfigurations/limits/ChannelLimits.ts
index c45cec80..c588016c 100644
--- a/src/util/config/types/subconfigurations/limits/ChannelLimits.ts
+++ b/src/util/config/types/subconfigurations/limits/ChannelLimits.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/config/types/subconfigurations/limits/GlobalRateLimits.ts b/src/util/config/types/subconfigurations/limits/GlobalRateLimits.ts
index a5766aeb..1325b8b6 100644
--- a/src/util/config/types/subconfigurations/limits/GlobalRateLimits.ts
+++ b/src/util/config/types/subconfigurations/limits/GlobalRateLimits.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/config/types/subconfigurations/limits/GuildLimits.ts b/src/util/config/types/subconfigurations/limits/GuildLimits.ts
index 3019ecc0..ac0a53b3 100644
--- a/src/util/config/types/subconfigurations/limits/GuildLimits.ts
+++ b/src/util/config/types/subconfigurations/limits/GuildLimits.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/config/types/subconfigurations/limits/MessageLimits.ts b/src/util/config/types/subconfigurations/limits/MessageLimits.ts
index bb416f38..0f51f5c5 100644
--- a/src/util/config/types/subconfigurations/limits/MessageLimits.ts
+++ b/src/util/config/types/subconfigurations/limits/MessageLimits.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/config/types/subconfigurations/limits/RateLimits.ts b/src/util/config/types/subconfigurations/limits/RateLimits.ts
index b9539eee..cd05a751 100644
--- a/src/util/config/types/subconfigurations/limits/RateLimits.ts
+++ b/src/util/config/types/subconfigurations/limits/RateLimits.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/config/types/subconfigurations/limits/UserLimits.ts b/src/util/config/types/subconfigurations/limits/UserLimits.ts
index 836f7143..3e7d0874 100644
--- a/src/util/config/types/subconfigurations/limits/UserLimits.ts
+++ b/src/util/config/types/subconfigurations/limits/UserLimits.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/config/types/subconfigurations/limits/index.ts b/src/util/config/types/subconfigurations/limits/index.ts
index c5520a87..56946c06 100644
--- a/src/util/config/types/subconfigurations/limits/index.ts
+++ b/src/util/config/types/subconfigurations/limits/index.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/config/types/subconfigurations/limits/ratelimits/Auth.ts b/src/util/config/types/subconfigurations/limits/ratelimits/Auth.ts
index ffe89e90..b3288efb 100644
--- a/src/util/config/types/subconfigurations/limits/ratelimits/Auth.ts
+++ b/src/util/config/types/subconfigurations/limits/ratelimits/Auth.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/config/types/subconfigurations/limits/ratelimits/RateLimitOptions.ts b/src/util/config/types/subconfigurations/limits/ratelimits/RateLimitOptions.ts
index 531da779..380c9819 100644
--- a/src/util/config/types/subconfigurations/limits/ratelimits/RateLimitOptions.ts
+++ b/src/util/config/types/subconfigurations/limits/ratelimits/RateLimitOptions.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/config/types/subconfigurations/limits/ratelimits/Route.ts b/src/util/config/types/subconfigurations/limits/ratelimits/Route.ts
index 02799be1..68c2afc1 100644
--- a/src/util/config/types/subconfigurations/limits/ratelimits/Route.ts
+++ b/src/util/config/types/subconfigurations/limits/ratelimits/Route.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/config/types/subconfigurations/limits/ratelimits/index.ts b/src/util/config/types/subconfigurations/limits/ratelimits/index.ts
index 312348ae..6a85eac1 100644
--- a/src/util/config/types/subconfigurations/limits/ratelimits/index.ts
+++ b/src/util/config/types/subconfigurations/limits/ratelimits/index.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/config/types/subconfigurations/region/Region.ts b/src/util/config/types/subconfigurations/region/Region.ts
index 84428331..9c4701cb 100644
--- a/src/util/config/types/subconfigurations/region/Region.ts
+++ b/src/util/config/types/subconfigurations/region/Region.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/config/types/subconfigurations/region/index.ts b/src/util/config/types/subconfigurations/region/index.ts
index d9a09d41..65ac67d5 100644
--- a/src/util/config/types/subconfigurations/region/index.ts
+++ b/src/util/config/types/subconfigurations/region/index.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/config/types/subconfigurations/register/DateOfBirth.ts b/src/util/config/types/subconfigurations/register/DateOfBirth.ts
index debe8c44..d0182e88 100644
--- a/src/util/config/types/subconfigurations/register/DateOfBirth.ts
+++ b/src/util/config/types/subconfigurations/register/DateOfBirth.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/config/types/subconfigurations/register/Email.ts b/src/util/config/types/subconfigurations/register/Email.ts
index 4f95caf1..01b32436 100644
--- a/src/util/config/types/subconfigurations/register/Email.ts
+++ b/src/util/config/types/subconfigurations/register/Email.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/config/types/subconfigurations/register/Password.ts b/src/util/config/types/subconfigurations/register/Password.ts
index ca04e9e4..14fc88e1 100644
--- a/src/util/config/types/subconfigurations/register/Password.ts
+++ b/src/util/config/types/subconfigurations/register/Password.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/config/types/subconfigurations/register/index.ts b/src/util/config/types/subconfigurations/register/index.ts
index 8be613b5..1289664e 100644
--- a/src/util/config/types/subconfigurations/register/index.ts
+++ b/src/util/config/types/subconfigurations/register/index.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/config/types/subconfigurations/security/Captcha.ts b/src/util/config/types/subconfigurations/security/Captcha.ts
index cf61989a..e903dd6b 100644
--- a/src/util/config/types/subconfigurations/security/Captcha.ts
+++ b/src/util/config/types/subconfigurations/security/Captcha.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/config/types/subconfigurations/security/TwoFactor.ts b/src/util/config/types/subconfigurations/security/TwoFactor.ts
index 70f61cbc..f03902d8 100644
--- a/src/util/config/types/subconfigurations/security/TwoFactor.ts
+++ b/src/util/config/types/subconfigurations/security/TwoFactor.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/config/types/subconfigurations/security/index.ts b/src/util/config/types/subconfigurations/security/index.ts
index 9dc9acaa..b852315e 100644
--- a/src/util/config/types/subconfigurations/security/index.ts
+++ b/src/util/config/types/subconfigurations/security/index.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/dtos/DmChannelDTO.ts b/src/util/dtos/DmChannelDTO.ts
index 02f7e8f3..fe936f5e 100644
--- a/src/util/dtos/DmChannelDTO.ts
+++ b/src/util/dtos/DmChannelDTO.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/dtos/ReadyGuildDTO.ts b/src/util/dtos/ReadyGuildDTO.ts
index 97e6931f..9f8435ec 100644
--- a/src/util/dtos/ReadyGuildDTO.ts
+++ b/src/util/dtos/ReadyGuildDTO.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/dtos/UserDTO.ts b/src/util/dtos/UserDTO.ts
index 3cbeb6e1..ce490bd2 100644
--- a/src/util/dtos/UserDTO.ts
+++ b/src/util/dtos/UserDTO.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/dtos/index.ts b/src/util/dtos/index.ts
index cf3863fa..afb3fdb4 100644
--- a/src/util/dtos/index.ts
+++ b/src/util/dtos/index.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/entities/Application.ts b/src/util/entities/Application.ts
index 94709320..37491a5d 100644
--- a/src/util/entities/Application.ts
+++ b/src/util/entities/Application.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/entities/Attachment.ts b/src/util/entities/Attachment.ts
index fdc1b3f1..d9e61a95 100644
--- a/src/util/entities/Attachment.ts
+++ b/src/util/entities/Attachment.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/entities/AuditLog.ts b/src/util/entities/AuditLog.ts
index 0cc2fc04..a7dfcc5b 100644
--- a/src/util/entities/AuditLog.ts
+++ b/src/util/entities/AuditLog.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/entities/BackupCodes.ts b/src/util/entities/BackupCodes.ts
index 467e1fe3..b9914a8c 100644
--- a/src/util/entities/BackupCodes.ts
+++ b/src/util/entities/BackupCodes.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/entities/Ban.ts b/src/util/entities/Ban.ts
index 4ed6e201..f9f51e0c 100644
--- a/src/util/entities/Ban.ts
+++ b/src/util/entities/Ban.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/entities/BaseClass.ts b/src/util/entities/BaseClass.ts
index 445b3fc9..e60f4059 100644
--- a/src/util/entities/BaseClass.ts
+++ b/src/util/entities/BaseClass.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/entities/Categories.ts b/src/util/entities/Categories.ts
index 198348bf..44971d00 100644
--- a/src/util/entities/Categories.ts
+++ b/src/util/entities/Categories.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/entities/Channel.ts b/src/util/entities/Channel.ts
index 1f128713..7339d70c 100644
--- a/src/util/entities/Channel.ts
+++ b/src/util/entities/Channel.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/entities/ClientRelease.ts b/src/util/entities/ClientRelease.ts
index 4b8150fd..947221b7 100644
--- a/src/util/entities/ClientRelease.ts
+++ b/src/util/entities/ClientRelease.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/entities/Config.ts b/src/util/entities/Config.ts
index 4449b6ec..0c8b6f65 100644
--- a/src/util/entities/Config.ts
+++ b/src/util/entities/Config.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/entities/ConnectedAccount.ts b/src/util/entities/ConnectedAccount.ts
index 9f0ce35e..29befa09 100644
--- a/src/util/entities/ConnectedAccount.ts
+++ b/src/util/entities/ConnectedAccount.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/entities/EmbedCache.ts b/src/util/entities/EmbedCache.ts
index 800ee4e7..41b1b636 100644
--- a/src/util/entities/EmbedCache.ts
+++ b/src/util/entities/EmbedCache.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/entities/Emoji.ts b/src/util/entities/Emoji.ts
index 94ce3d54..3458302e 100644
--- a/src/util/entities/Emoji.ts
+++ b/src/util/entities/Emoji.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/entities/Encryption.ts b/src/util/entities/Encryption.ts
index 016b4331..ff868c40 100644
--- a/src/util/entities/Encryption.ts
+++ b/src/util/entities/Encryption.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/entities/Guild.ts b/src/util/entities/Guild.ts
index c835f5fc..daa26509 100644
--- a/src/util/entities/Guild.ts
+++ b/src/util/entities/Guild.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/entities/Invite.ts b/src/util/entities/Invite.ts
index b29dfcff..f517bb44 100644
--- a/src/util/entities/Invite.ts
+++ b/src/util/entities/Invite.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/entities/Member.ts b/src/util/entities/Member.ts
index c097c1f0..e3f9a3ca 100644
--- a/src/util/entities/Member.ts
+++ b/src/util/entities/Member.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/entities/Message.ts b/src/util/entities/Message.ts
index fc8c011c..42c29ce7 100644
--- a/src/util/entities/Message.ts
+++ b/src/util/entities/Message.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/entities/Migration.ts b/src/util/entities/Migration.ts
index 57097d8c..2ddc4df6 100644
--- a/src/util/entities/Migration.ts
+++ b/src/util/entities/Migration.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/entities/Note.ts b/src/util/entities/Note.ts
index 0f2a5ce3..74e2e870 100644
--- a/src/util/entities/Note.ts
+++ b/src/util/entities/Note.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/entities/RateLimit.ts b/src/util/entities/RateLimit.ts
index 79ebbb01..ffb5a05a 100644
--- a/src/util/entities/RateLimit.ts
+++ b/src/util/entities/RateLimit.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/entities/ReadState.ts b/src/util/entities/ReadState.ts
index 825beb03..b40cde00 100644
--- a/src/util/entities/ReadState.ts
+++ b/src/util/entities/ReadState.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/entities/Recipient.ts b/src/util/entities/Recipient.ts
index 1cf028dd..11567034 100644
--- a/src/util/entities/Recipient.ts
+++ b/src/util/entities/Recipient.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/entities/Relationship.ts b/src/util/entities/Relationship.ts
index 1bf04c2c..2ce16b9e 100644
--- a/src/util/entities/Relationship.ts
+++ b/src/util/entities/Relationship.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/entities/Role.ts b/src/util/entities/Role.ts
index d3275ede..93a0e157 100644
--- a/src/util/entities/Role.ts
+++ b/src/util/entities/Role.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/entities/SecurityKey.ts b/src/util/entities/SecurityKey.ts
index 8f377d9d..c9186265 100644
--- a/src/util/entities/SecurityKey.ts
+++ b/src/util/entities/SecurityKey.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/entities/Session.ts b/src/util/entities/Session.ts
index f416b9f5..5a54c090 100644
--- a/src/util/entities/Session.ts
+++ b/src/util/entities/Session.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/entities/Sticker.ts b/src/util/entities/Sticker.ts
index 513a4c9f..3af40564 100644
--- a/src/util/entities/Sticker.ts
+++ b/src/util/entities/Sticker.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/entities/StickerPack.ts b/src/util/entities/StickerPack.ts
index ce8d5e87..911ef4b5 100644
--- a/src/util/entities/StickerPack.ts
+++ b/src/util/entities/StickerPack.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/entities/Team.ts b/src/util/entities/Team.ts
index 82859409..e494762a 100644
--- a/src/util/entities/Team.ts
+++ b/src/util/entities/Team.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/entities/TeamMember.ts b/src/util/entities/TeamMember.ts
index df70050c..cd815e92 100644
--- a/src/util/entities/TeamMember.ts
+++ b/src/util/entities/TeamMember.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/entities/Template.ts b/src/util/entities/Template.ts
index 17f26e1c..11eb4d58 100644
--- a/src/util/entities/Template.ts
+++ b/src/util/entities/Template.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/entities/User.ts b/src/util/entities/User.ts
index 8dfb0254..3a77e5db 100644
--- a/src/util/entities/User.ts
+++ b/src/util/entities/User.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/entities/UserSettings.ts b/src/util/entities/UserSettings.ts
index 4c273591..5cd63dbc 100644
--- a/src/util/entities/UserSettings.ts
+++ b/src/util/entities/UserSettings.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/entities/ValidRegistrationTokens.ts b/src/util/entities/ValidRegistrationTokens.ts
index ece6d00c..94e1dacc 100644
--- a/src/util/entities/ValidRegistrationTokens.ts
+++ b/src/util/entities/ValidRegistrationTokens.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/entities/VoiceState.ts b/src/util/entities/VoiceState.ts
index f790945f..37c92d6c 100644
--- a/src/util/entities/VoiceState.ts
+++ b/src/util/entities/VoiceState.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/entities/Webhook.ts b/src/util/entities/Webhook.ts
index 9be86c6d..1a18c0a7 100644
--- a/src/util/entities/Webhook.ts
+++ b/src/util/entities/Webhook.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/entities/index.ts b/src/util/entities/index.ts
index 6dfbd822..609b8fba 100644
--- a/src/util/entities/index.ts
+++ b/src/util/entities/index.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/imports/index.ts b/src/util/imports/index.ts
index da0be37c..dd842892 100644
--- a/src/util/imports/index.ts
+++ b/src/util/imports/index.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/index.ts b/src/util/index.ts
index a3495a0c..939dcbfe 100644
--- a/src/util/index.ts
+++ b/src/util/index.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/interfaces/Activity.ts b/src/util/interfaces/Activity.ts
index 7398fc62..65adfa2a 100644
--- a/src/util/interfaces/Activity.ts
+++ b/src/util/interfaces/Activity.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/interfaces/Event.ts b/src/util/interfaces/Event.ts
index c3bfbf9b..e99bd728 100644
--- a/src/util/interfaces/Event.ts
+++ b/src/util/interfaces/Event.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/interfaces/Interaction.ts b/src/util/interfaces/Interaction.ts
index 4158eda1..f26f85b2 100644
--- a/src/util/interfaces/Interaction.ts
+++ b/src/util/interfaces/Interaction.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/interfaces/Presence.ts b/src/util/interfaces/Presence.ts
index 45260606..6821a54f 100644
--- a/src/util/interfaces/Presence.ts
+++ b/src/util/interfaces/Presence.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/interfaces/Status.ts b/src/util/interfaces/Status.ts
index 714c623b..0bcc1de3 100644
--- a/src/util/interfaces/Status.ts
+++ b/src/util/interfaces/Status.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/interfaces/index.ts b/src/util/interfaces/index.ts
index fa259ce1..47589212 100644
--- a/src/util/interfaces/index.ts
+++ b/src/util/interfaces/index.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/migration/mariadb/1673609465036-templateDeleteCascade.ts b/src/util/migration/mariadb/1673609465036-templateDeleteCascade.ts
index d34e08bd..4d5aae68 100644
--- a/src/util/migration/mariadb/1673609465036-templateDeleteCascade.ts
+++ b/src/util/migration/mariadb/1673609465036-templateDeleteCascade.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/migration/mariadb/1675045120206-webauthn.ts b/src/util/migration/mariadb/1675045120206-webauthn.ts
index 5cd74f47..03ae0226 100644
--- a/src/util/migration/mariadb/1675045120206-webauthn.ts
+++ b/src/util/migration/mariadb/1675045120206-webauthn.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/migration/mysql/1673609465036-templateDeleteCascade.ts b/src/util/migration/mysql/1673609465036-templateDeleteCascade.ts
index d34e08bd..4d5aae68 100644
--- a/src/util/migration/mysql/1673609465036-templateDeleteCascade.ts
+++ b/src/util/migration/mysql/1673609465036-templateDeleteCascade.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/migration/mysql/1675045120206-webauthn.ts b/src/util/migration/mysql/1675045120206-webauthn.ts
index 5cd74f47..03ae0226 100644
--- a/src/util/migration/mysql/1675045120206-webauthn.ts
+++ b/src/util/migration/mysql/1675045120206-webauthn.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/migration/postgres/1673609867556-templateDeleteCascade.ts b/src/util/migration/postgres/1673609867556-templateDeleteCascade.ts
index 41979e59..1a049b74 100644
--- a/src/util/migration/postgres/1673609867556-templateDeleteCascade.ts
+++ b/src/util/migration/postgres/1673609867556-templateDeleteCascade.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/migration/postgres/1675044825710-webauthn.ts b/src/util/migration/postgres/1675044825710-webauthn.ts
index 7fc3c2fe..2e76bbb3 100644
--- a/src/util/migration/postgres/1675044825710-webauthn.ts
+++ b/src/util/migration/postgres/1675044825710-webauthn.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/schemas/AckBulkSchema.ts b/src/util/schemas/AckBulkSchema.ts
index ad687fd8..a0895072 100644
--- a/src/util/schemas/AckBulkSchema.ts
+++ b/src/util/schemas/AckBulkSchema.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/schemas/ActivitySchema.ts b/src/util/schemas/ActivitySchema.ts
index 2e27fc7c..2bafb1c5 100644
--- a/src/util/schemas/ActivitySchema.ts
+++ b/src/util/schemas/ActivitySchema.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/schemas/ApplicationAuthorizeSchema.ts b/src/util/schemas/ApplicationAuthorizeSchema.ts
index 730f2120..1220160f 100644
--- a/src/util/schemas/ApplicationAuthorizeSchema.ts
+++ b/src/util/schemas/ApplicationAuthorizeSchema.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/schemas/ApplicationCreateSchema.ts b/src/util/schemas/ApplicationCreateSchema.ts
index 50a40bfd..214149ce 100644
--- a/src/util/schemas/ApplicationCreateSchema.ts
+++ b/src/util/schemas/ApplicationCreateSchema.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/schemas/ApplicationModifySchema.ts b/src/util/schemas/ApplicationModifySchema.ts
index ab470f52..85fd36ac 100644
--- a/src/util/schemas/ApplicationModifySchema.ts
+++ b/src/util/schemas/ApplicationModifySchema.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/schemas/BackupCodesChallengeSchema.ts b/src/util/schemas/BackupCodesChallengeSchema.ts
index 59616691..4994c980 100644
--- a/src/util/schemas/BackupCodesChallengeSchema.ts
+++ b/src/util/schemas/BackupCodesChallengeSchema.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/schemas/BanCreateSchema.ts b/src/util/schemas/BanCreateSchema.ts
index fdbf982f..2673c591 100644
--- a/src/util/schemas/BanCreateSchema.ts
+++ b/src/util/schemas/BanCreateSchema.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/schemas/BanModeratorSchema.ts b/src/util/schemas/BanModeratorSchema.ts
index 8d4426dc..d097777b 100644
--- a/src/util/schemas/BanModeratorSchema.ts
+++ b/src/util/schemas/BanModeratorSchema.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/schemas/BanRegistrySchema.ts b/src/util/schemas/BanRegistrySchema.ts
index 0415e652..956b8648 100644
--- a/src/util/schemas/BanRegistrySchema.ts
+++ b/src/util/schemas/BanRegistrySchema.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/schemas/BotModifySchema.ts b/src/util/schemas/BotModifySchema.ts
index 1d96bcc5..511e51d1 100644
--- a/src/util/schemas/BotModifySchema.ts
+++ b/src/util/schemas/BotModifySchema.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/schemas/BulkDeleteSchema.ts b/src/util/schemas/BulkDeleteSchema.ts
index da53a632..05e7bb33 100644
--- a/src/util/schemas/BulkDeleteSchema.ts
+++ b/src/util/schemas/BulkDeleteSchema.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/schemas/ChannelModifySchema.ts b/src/util/schemas/ChannelModifySchema.ts
index 1bf84108..47f55430 100644
--- a/src/util/schemas/ChannelModifySchema.ts
+++ b/src/util/schemas/ChannelModifySchema.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/schemas/ChannelPermissionOverwriteSchema.ts b/src/util/schemas/ChannelPermissionOverwriteSchema.ts
index 62d0ad14..d85dbe4e 100644
--- a/src/util/schemas/ChannelPermissionOverwriteSchema.ts
+++ b/src/util/schemas/ChannelPermissionOverwriteSchema.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/schemas/ChannelReorderSchema.ts b/src/util/schemas/ChannelReorderSchema.ts
index f579ae6a..6af58105 100644
--- a/src/util/schemas/ChannelReorderSchema.ts
+++ b/src/util/schemas/ChannelReorderSchema.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/schemas/CodesVerificationSchema.ts b/src/util/schemas/CodesVerificationSchema.ts
index 5bbc0713..1028cb26 100644
--- a/src/util/schemas/CodesVerificationSchema.ts
+++ b/src/util/schemas/CodesVerificationSchema.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/schemas/DmChannelCreateSchema.ts b/src/util/schemas/DmChannelCreateSchema.ts
index 2078ac3f..afcc7fe5 100644
--- a/src/util/schemas/DmChannelCreateSchema.ts
+++ b/src/util/schemas/DmChannelCreateSchema.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/schemas/EmojiCreateSchema.ts b/src/util/schemas/EmojiCreateSchema.ts
index 645c0ab5..295a70ff 100644
--- a/src/util/schemas/EmojiCreateSchema.ts
+++ b/src/util/schemas/EmojiCreateSchema.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/schemas/EmojiModifySchema.ts b/src/util/schemas/EmojiModifySchema.ts
index c6132708..5b219b1b 100644
--- a/src/util/schemas/EmojiModifySchema.ts
+++ b/src/util/schemas/EmojiModifySchema.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/schemas/ForgotPasswordSchema.ts b/src/util/schemas/ForgotPasswordSchema.ts
index 9a28bd18..b9d74549 100644
--- a/src/util/schemas/ForgotPasswordSchema.ts
+++ b/src/util/schemas/ForgotPasswordSchema.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/schemas/GatewayBotResponse.ts b/src/util/schemas/GatewayBotResponse.ts
index 30f1f57f..11915162 100644
--- a/src/util/schemas/GatewayBotResponse.ts
+++ b/src/util/schemas/GatewayBotResponse.ts
@@ -1,3 +1,21 @@
+/*
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
+	Copyright (C) 2023 Fosscord and Fosscord Contributors
+	
+	This program is free software: you can redistribute it and/or modify
+	it under the terms of the GNU Affero General Public License as published
+	by the Free Software Foundation, either version 3 of the License, or
+	(at your option) any later version.
+	
+	This program is distributed in the hope that it will be useful,
+	but WITHOUT ANY WARRANTY; without even the implied warranty of
+	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+	GNU Affero General Public License for more details.
+	
+	You should have received a copy of the GNU Affero General Public License
+	along with this program.  If not, see <https://www.gnu.org/licenses/>.
+*/
+
 export interface GatewayBotResponse {
 	url: string;
 	shards: number;
diff --git a/src/util/schemas/GatewayPayloadSchema.ts b/src/util/schemas/GatewayPayloadSchema.ts
index 5eb34052..9d7151a0 100644
--- a/src/util/schemas/GatewayPayloadSchema.ts
+++ b/src/util/schemas/GatewayPayloadSchema.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/schemas/GatewayResponse.ts b/src/util/schemas/GatewayResponse.ts
index e909f7bd..4d2d06bb 100644
--- a/src/util/schemas/GatewayResponse.ts
+++ b/src/util/schemas/GatewayResponse.ts
@@ -1,3 +1,21 @@
+/*
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
+	Copyright (C) 2023 Fosscord and Fosscord Contributors
+	
+	This program is free software: you can redistribute it and/or modify
+	it under the terms of the GNU Affero General Public License as published
+	by the Free Software Foundation, either version 3 of the License, or
+	(at your option) any later version.
+	
+	This program is distributed in the hope that it will be useful,
+	but WITHOUT ANY WARRANTY; without even the implied warranty of
+	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+	GNU Affero General Public License for more details.
+	
+	You should have received a copy of the GNU Affero General Public License
+	along with this program.  If not, see <https://www.gnu.org/licenses/>.
+*/
+
 export interface GatewayResponse {
 	url: string;
 }
diff --git a/src/util/schemas/GuildCreateSchema.ts b/src/util/schemas/GuildCreateSchema.ts
index 61519244..8f423cee 100644
--- a/src/util/schemas/GuildCreateSchema.ts
+++ b/src/util/schemas/GuildCreateSchema.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/schemas/GuildTemplateCreateSchema.ts b/src/util/schemas/GuildTemplateCreateSchema.ts
index 2ea96ead..94fb0716 100644
--- a/src/util/schemas/GuildTemplateCreateSchema.ts
+++ b/src/util/schemas/GuildTemplateCreateSchema.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/schemas/GuildUpdateSchema.ts b/src/util/schemas/GuildUpdateSchema.ts
index b9c923b0..d857dfa4 100644
--- a/src/util/schemas/GuildUpdateSchema.ts
+++ b/src/util/schemas/GuildUpdateSchema.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/schemas/GuildUpdateWelcomeScreenSchema.ts b/src/util/schemas/GuildUpdateWelcomeScreenSchema.ts
index e930fd01..e073f6f1 100644
--- a/src/util/schemas/GuildUpdateWelcomeScreenSchema.ts
+++ b/src/util/schemas/GuildUpdateWelcomeScreenSchema.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/schemas/IdentifySchema.ts b/src/util/schemas/IdentifySchema.ts
index 9bb14ca3..a8a541a9 100644
--- a/src/util/schemas/IdentifySchema.ts
+++ b/src/util/schemas/IdentifySchema.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/schemas/InviteCreateSchema.ts b/src/util/schemas/InviteCreateSchema.ts
index bb0955ce..8d6a92c2 100644
--- a/src/util/schemas/InviteCreateSchema.ts
+++ b/src/util/schemas/InviteCreateSchema.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/schemas/LazyRequestSchema.ts b/src/util/schemas/LazyRequestSchema.ts
index 9d25eb37..f37e2194 100644
--- a/src/util/schemas/LazyRequestSchema.ts
+++ b/src/util/schemas/LazyRequestSchema.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/schemas/LoginSchema.ts b/src/util/schemas/LoginSchema.ts
index 872c8db3..b77268b1 100644
--- a/src/util/schemas/LoginSchema.ts
+++ b/src/util/schemas/LoginSchema.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/schemas/MemberChangeProfileSchema.ts b/src/util/schemas/MemberChangeProfileSchema.ts
index f9f7f72c..c652ac59 100644
--- a/src/util/schemas/MemberChangeProfileSchema.ts
+++ b/src/util/schemas/MemberChangeProfileSchema.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/schemas/MemberChangeSchema.ts b/src/util/schemas/MemberChangeSchema.ts
index 6d028d80..328eda15 100644
--- a/src/util/schemas/MemberChangeSchema.ts
+++ b/src/util/schemas/MemberChangeSchema.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/schemas/MemberNickChangeSchema.ts b/src/util/schemas/MemberNickChangeSchema.ts
index daefb32a..d7f0b35d 100644
--- a/src/util/schemas/MemberNickChangeSchema.ts
+++ b/src/util/schemas/MemberNickChangeSchema.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/schemas/MessageAcknowledgeSchema.ts b/src/util/schemas/MessageAcknowledgeSchema.ts
index c63d529d..89701ff6 100644
--- a/src/util/schemas/MessageAcknowledgeSchema.ts
+++ b/src/util/schemas/MessageAcknowledgeSchema.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/schemas/MessageCreateSchema.ts b/src/util/schemas/MessageCreateSchema.ts
index 4ee6e738..d10773e4 100644
--- a/src/util/schemas/MessageCreateSchema.ts
+++ b/src/util/schemas/MessageCreateSchema.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/schemas/MessageEditSchema.ts b/src/util/schemas/MessageEditSchema.ts
index 6f241402..11dabdc8 100644
--- a/src/util/schemas/MessageEditSchema.ts
+++ b/src/util/schemas/MessageEditSchema.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/schemas/MfaCodesSchema.ts b/src/util/schemas/MfaCodesSchema.ts
index eb088471..82ba8c2a 100644
--- a/src/util/schemas/MfaCodesSchema.ts
+++ b/src/util/schemas/MfaCodesSchema.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/schemas/ModifyGuildStickerSchema.ts b/src/util/schemas/ModifyGuildStickerSchema.ts
index 1c558b2e..1127a531 100644
--- a/src/util/schemas/ModifyGuildStickerSchema.ts
+++ b/src/util/schemas/ModifyGuildStickerSchema.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/schemas/PasswordResetSchema.ts b/src/util/schemas/PasswordResetSchema.ts
index 9cc74940..c586cbc5 100644
--- a/src/util/schemas/PasswordResetSchema.ts
+++ b/src/util/schemas/PasswordResetSchema.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/schemas/PruneSchema.ts b/src/util/schemas/PruneSchema.ts
index 531213fe..928f84ec 100644
--- a/src/util/schemas/PruneSchema.ts
+++ b/src/util/schemas/PruneSchema.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/schemas/PurgeSchema.ts b/src/util/schemas/PurgeSchema.ts
index d83251c7..1495c0d9 100644
--- a/src/util/schemas/PurgeSchema.ts
+++ b/src/util/schemas/PurgeSchema.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/schemas/RegisterSchema.ts b/src/util/schemas/RegisterSchema.ts
index 0c8fb923..4e41be23 100644
--- a/src/util/schemas/RegisterSchema.ts
+++ b/src/util/schemas/RegisterSchema.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/schemas/RelationshipPostSchema.ts b/src/util/schemas/RelationshipPostSchema.ts
index 1ce27ca9..eb4e0362 100644
--- a/src/util/schemas/RelationshipPostSchema.ts
+++ b/src/util/schemas/RelationshipPostSchema.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/schemas/RelationshipPutSchema.ts b/src/util/schemas/RelationshipPutSchema.ts
index 1c45e245..38a31b9e 100644
--- a/src/util/schemas/RelationshipPutSchema.ts
+++ b/src/util/schemas/RelationshipPutSchema.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/schemas/RoleModifySchema.ts b/src/util/schemas/RoleModifySchema.ts
index 34518633..164a4df8 100644
--- a/src/util/schemas/RoleModifySchema.ts
+++ b/src/util/schemas/RoleModifySchema.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/schemas/RolePositionUpdateSchema.ts b/src/util/schemas/RolePositionUpdateSchema.ts
index 8401e2eb..c1f6f5f0 100644
--- a/src/util/schemas/RolePositionUpdateSchema.ts
+++ b/src/util/schemas/RolePositionUpdateSchema.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/schemas/SelectProtocolSchema.ts b/src/util/schemas/SelectProtocolSchema.ts
index 063462ee..cba25417 100644
--- a/src/util/schemas/SelectProtocolSchema.ts
+++ b/src/util/schemas/SelectProtocolSchema.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/schemas/TemplateCreateSchema.ts b/src/util/schemas/TemplateCreateSchema.ts
index 99ce111e..2ed14827 100644
--- a/src/util/schemas/TemplateCreateSchema.ts
+++ b/src/util/schemas/TemplateCreateSchema.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/schemas/TemplateModifySchema.ts b/src/util/schemas/TemplateModifySchema.ts
index 34bd40a1..ec9a70ec 100644
--- a/src/util/schemas/TemplateModifySchema.ts
+++ b/src/util/schemas/TemplateModifySchema.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/schemas/TotpDisableSchema.ts b/src/util/schemas/TotpDisableSchema.ts
index 004f0bf7..db42dfcb 100644
--- a/src/util/schemas/TotpDisableSchema.ts
+++ b/src/util/schemas/TotpDisableSchema.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/schemas/TotpEnableSchema.ts b/src/util/schemas/TotpEnableSchema.ts
index b6cdd17c..4af4d50a 100644
--- a/src/util/schemas/TotpEnableSchema.ts
+++ b/src/util/schemas/TotpEnableSchema.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/schemas/TotpSchema.ts b/src/util/schemas/TotpSchema.ts
index 0ebc6d3c..9ee26884 100644
--- a/src/util/schemas/TotpSchema.ts
+++ b/src/util/schemas/TotpSchema.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/schemas/UserDeleteSchema.ts b/src/util/schemas/UserDeleteSchema.ts
index 6e6b15ac..cf56a602 100644
--- a/src/util/schemas/UserDeleteSchema.ts
+++ b/src/util/schemas/UserDeleteSchema.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/schemas/UserGuildSettingsSchema.ts b/src/util/schemas/UserGuildSettingsSchema.ts
index 6458c56e..91b6826e 100644
--- a/src/util/schemas/UserGuildSettingsSchema.ts
+++ b/src/util/schemas/UserGuildSettingsSchema.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/schemas/UserModifySchema.ts b/src/util/schemas/UserModifySchema.ts
index 7851ec22..33be1ec7 100644
--- a/src/util/schemas/UserModifySchema.ts
+++ b/src/util/schemas/UserModifySchema.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/schemas/UserProfileModifySchema.ts b/src/util/schemas/UserProfileModifySchema.ts
index 5239a9ad..fbb4f423 100644
--- a/src/util/schemas/UserProfileModifySchema.ts
+++ b/src/util/schemas/UserProfileModifySchema.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/schemas/UserProfileResponse.ts b/src/util/schemas/UserProfileResponse.ts
index 467d787f..c6f39588 100644
--- a/src/util/schemas/UserProfileResponse.ts
+++ b/src/util/schemas/UserProfileResponse.ts
@@ -1,3 +1,21 @@
+/*
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
+	Copyright (C) 2023 Fosscord and Fosscord Contributors
+	
+	This program is free software: you can redistribute it and/or modify
+	it under the terms of the GNU Affero General Public License as published
+	by the Free Software Foundation, either version 3 of the License, or
+	(at your option) any later version.
+	
+	This program is distributed in the hope that it will be useful,
+	but WITHOUT ANY WARRANTY; without even the implied warranty of
+	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+	GNU Affero General Public License for more details.
+	
+	You should have received a copy of the GNU Affero General Public License
+	along with this program.  If not, see <https://www.gnu.org/licenses/>.
+*/
+
 import { PublicConnectedAccount, UserPublic } from "..";
 
 export interface UserProfileResponse {
diff --git a/src/util/schemas/UserRelationsResponse.ts b/src/util/schemas/UserRelationsResponse.ts
index 1ec15eca..e6392ee4 100644
--- a/src/util/schemas/UserRelationsResponse.ts
+++ b/src/util/schemas/UserRelationsResponse.ts
@@ -1,3 +1,21 @@
+/*
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
+	Copyright (C) 2023 Fosscord and Fosscord Contributors
+	
+	This program is free software: you can redistribute it and/or modify
+	it under the terms of the GNU Affero General Public License as published
+	by the Free Software Foundation, either version 3 of the License, or
+	(at your option) any later version.
+	
+	This program is distributed in the hope that it will be useful,
+	but WITHOUT ANY WARRANTY; without even the implied warranty of
+	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+	GNU Affero General Public License for more details.
+	
+	You should have received a copy of the GNU Affero General Public License
+	along with this program.  If not, see <https://www.gnu.org/licenses/>.
+*/
+
 export interface UserRelationsResponse {
 	object: {
 		id?: string;
diff --git a/src/util/schemas/UserSettingsSchema.ts b/src/util/schemas/UserSettingsSchema.ts
index f315892e..f71cfd7a 100644
--- a/src/util/schemas/UserSettingsSchema.ts
+++ b/src/util/schemas/UserSettingsSchema.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/schemas/Validator.ts b/src/util/schemas/Validator.ts
index 3190dd05..a055ad82 100644
--- a/src/util/schemas/Validator.ts
+++ b/src/util/schemas/Validator.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/schemas/VanityUrlSchema.ts b/src/util/schemas/VanityUrlSchema.ts
index 4550208f..9d87cd11 100644
--- a/src/util/schemas/VanityUrlSchema.ts
+++ b/src/util/schemas/VanityUrlSchema.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/schemas/VerifyEmailSchema.ts b/src/util/schemas/VerifyEmailSchema.ts
index d94fbbc1..84a101b5 100644
--- a/src/util/schemas/VerifyEmailSchema.ts
+++ b/src/util/schemas/VerifyEmailSchema.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/schemas/VoiceIdentifySchema.ts b/src/util/schemas/VoiceIdentifySchema.ts
index 8d4b3966..732d9ac0 100644
--- a/src/util/schemas/VoiceIdentifySchema.ts
+++ b/src/util/schemas/VoiceIdentifySchema.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/schemas/VoiceStateUpdateSchema.ts b/src/util/schemas/VoiceStateUpdateSchema.ts
index 467588b0..42b668b3 100644
--- a/src/util/schemas/VoiceStateUpdateSchema.ts
+++ b/src/util/schemas/VoiceStateUpdateSchema.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/schemas/VoiceVideoSchema.ts b/src/util/schemas/VoiceVideoSchema.ts
index a8015881..f2839c34 100644
--- a/src/util/schemas/VoiceVideoSchema.ts
+++ b/src/util/schemas/VoiceVideoSchema.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/schemas/WebAuthnSchema.ts b/src/util/schemas/WebAuthnSchema.ts
index 03e173a7..a6395db1 100644
--- a/src/util/schemas/WebAuthnSchema.ts
+++ b/src/util/schemas/WebAuthnSchema.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/schemas/WebhookCreateSchema.ts b/src/util/schemas/WebhookCreateSchema.ts
index 8089ad69..32b894e2 100644
--- a/src/util/schemas/WebhookCreateSchema.ts
+++ b/src/util/schemas/WebhookCreateSchema.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/schemas/WidgetModifySchema.ts b/src/util/schemas/WidgetModifySchema.ts
index 3ff0d856..ad44e5b4 100644
--- a/src/util/schemas/WidgetModifySchema.ts
+++ b/src/util/schemas/WidgetModifySchema.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/schemas/index.ts b/src/util/schemas/index.ts
index 150a2dea..bf8fdb54 100644
--- a/src/util/schemas/index.ts
+++ b/src/util/schemas/index.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/util/ApiError.ts b/src/util/util/ApiError.ts
index dc33e718..714a5052 100644
--- a/src/util/util/ApiError.ts
+++ b/src/util/util/ApiError.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/util/Array.ts b/src/util/util/Array.ts
index dbc75b85..cb8377f9 100644
--- a/src/util/util/Array.ts
+++ b/src/util/util/Array.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/util/AutoUpdate.ts b/src/util/util/AutoUpdate.ts
index a4a97f3f..a4f071de 100644
--- a/src/util/util/AutoUpdate.ts
+++ b/src/util/util/AutoUpdate.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/util/Categories.ts b/src/util/util/Categories.ts
index 5343739c..ebdaef56 100644
--- a/src/util/util/Categories.ts
+++ b/src/util/util/Categories.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/util/Config.ts b/src/util/util/Config.ts
index bbe2f962..7bb77901 100644
--- a/src/util/util/Config.ts
+++ b/src/util/util/Config.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/util/Constants.ts b/src/util/util/Constants.ts
index 1afdce49..0ff3350a 100644
--- a/src/util/util/Constants.ts
+++ b/src/util/util/Constants.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/util/Database.ts b/src/util/util/Database.ts
index 64d7ca14..67299fad 100644
--- a/src/util/util/Database.ts
+++ b/src/util/util/Database.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/util/Event.ts b/src/util/util/Event.ts
index 79be1a10..fd21eabf 100644
--- a/src/util/util/Event.ts
+++ b/src/util/util/Event.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/util/FieldError.ts b/src/util/util/FieldError.ts
index eff793a8..ab0fbbb7 100644
--- a/src/util/util/FieldError.ts
+++ b/src/util/util/FieldError.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/util/Intents.ts b/src/util/util/Intents.ts
index e31f50c2..f5de7df4 100644
--- a/src/util/util/Intents.ts
+++ b/src/util/util/Intents.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/util/InvisibleCharacters.ts b/src/util/util/InvisibleCharacters.ts
index ae4817bc..dbe7e9a9 100644
--- a/src/util/util/InvisibleCharacters.ts
+++ b/src/util/util/InvisibleCharacters.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/util/JSON.ts b/src/util/util/JSON.ts
index b092eb88..a69bbc18 100644
--- a/src/util/util/JSON.ts
+++ b/src/util/util/JSON.ts
@@ -1,3 +1,21 @@
+/*
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
+	Copyright (C) 2023 Fosscord and Fosscord Contributors
+	
+	This program is free software: you can redistribute it and/or modify
+	it under the terms of the GNU Affero General Public License as published
+	by the Free Software Foundation, either version 3 of the License, or
+	(at your option) any later version.
+	
+	This program is distributed in the hope that it will be useful,
+	but WITHOUT ANY WARRANTY; without even the implied warranty of
+	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+	GNU Affero General Public License for more details.
+	
+	You should have received a copy of the GNU Affero General Public License
+	along with this program.  If not, see <https://www.gnu.org/licenses/>.
+*/
+
 // Discord.com sends ISO strings with +00:00 extension, not Z
 // This causes issues with Python bot libs
 const JSONReplacer = function (
diff --git a/src/util/util/RabbitMQ.ts b/src/util/util/RabbitMQ.ts
index 30f5ee5c..2db6a736 100644
--- a/src/util/util/RabbitMQ.ts
+++ b/src/util/util/RabbitMQ.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/util/Regex.ts b/src/util/util/Regex.ts
index cf973f47..3b514182 100644
--- a/src/util/util/Regex.ts
+++ b/src/util/util/Regex.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/util/Rights.ts b/src/util/util/Rights.ts
index 383f07ec..6eee4d39 100644
--- a/src/util/util/Rights.ts
+++ b/src/util/util/Rights.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/util/Sentry.ts b/src/util/util/Sentry.ts
index e1248353..727aa9ab 100644
--- a/src/util/util/Sentry.ts
+++ b/src/util/util/Sentry.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/util/String.ts b/src/util/util/String.ts
index 74fd0295..6ffd51be 100644
--- a/src/util/util/String.ts
+++ b/src/util/util/String.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/util/Token.ts b/src/util/util/Token.ts
index ffc442aa..14b3c863 100644
--- a/src/util/util/Token.ts
+++ b/src/util/util/Token.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/util/TraverseDirectory.ts b/src/util/util/TraverseDirectory.ts
index 223e3ee0..e02df822 100644
--- a/src/util/util/TraverseDirectory.ts
+++ b/src/util/util/TraverseDirectory.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/util/WebAuthn.ts b/src/util/util/WebAuthn.ts
index 1bac5b98..791893ce 100644
--- a/src/util/util/WebAuthn.ts
+++ b/src/util/util/WebAuthn.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/util/cdn.ts b/src/util/util/cdn.ts
index 69d50159..45cf3fd0 100644
--- a/src/util/util/cdn.ts
+++ b/src/util/util/cdn.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/util/email/index.ts b/src/util/util/email/index.ts
index b9786e4f..8f65f8c0 100644
--- a/src/util/util/email/index.ts
+++ b/src/util/util/email/index.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/util/util/email/transports/MailGun.ts b/src/util/util/email/transports/MailGun.ts
index 3a5be13c..adafa470 100644
--- a/src/util/util/email/transports/MailGun.ts
+++ b/src/util/util/email/transports/MailGun.ts
@@ -1,3 +1,21 @@
+/*
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
+	Copyright (C) 2023 Fosscord and Fosscord Contributors
+	
+	This program is free software: you can redistribute it and/or modify
+	it under the terms of the GNU Affero General Public License as published
+	by the Free Software Foundation, either version 3 of the License, or
+	(at your option) any later version.
+	
+	This program is distributed in the hope that it will be useful,
+	but WITHOUT ANY WARRANTY; without even the implied warranty of
+	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+	GNU Affero General Public License for more details.
+	
+	You should have received a copy of the GNU Affero General Public License
+	along with this program.  If not, see <https://www.gnu.org/licenses/>.
+*/
+
 import { Config } from "@fosscord/util";
 import nodemailer from "nodemailer";
 
diff --git a/src/util/util/email/transports/MailJet.ts b/src/util/util/email/transports/MailJet.ts
index 561d13ea..b5551d46 100644
--- a/src/util/util/email/transports/MailJet.ts
+++ b/src/util/util/email/transports/MailJet.ts
@@ -1,3 +1,21 @@
+/*
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
+	Copyright (C) 2023 Fosscord and Fosscord Contributors
+	
+	This program is free software: you can redistribute it and/or modify
+	it under the terms of the GNU Affero General Public License as published
+	by the Free Software Foundation, either version 3 of the License, or
+	(at your option) any later version.
+	
+	This program is distributed in the hope that it will be useful,
+	but WITHOUT ANY WARRANTY; without even the implied warranty of
+	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+	GNU Affero General Public License for more details.
+	
+	You should have received a copy of the GNU Affero General Public License
+	along with this program.  If not, see <https://www.gnu.org/licenses/>.
+*/
+
 import { Config } from "@fosscord/util";
 import nodemailer from "nodemailer";
 
diff --git a/src/util/util/email/transports/SMTP.ts b/src/util/util/email/transports/SMTP.ts
index 7d8e1e20..7f863ec9 100644
--- a/src/util/util/email/transports/SMTP.ts
+++ b/src/util/util/email/transports/SMTP.ts
@@ -1,3 +1,21 @@
+/*
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
+	Copyright (C) 2023 Fosscord and Fosscord Contributors
+	
+	This program is free software: you can redistribute it and/or modify
+	it under the terms of the GNU Affero General Public License as published
+	by the Free Software Foundation, either version 3 of the License, or
+	(at your option) any later version.
+	
+	This program is distributed in the hope that it will be useful,
+	but WITHOUT ANY WARRANTY; without even the implied warranty of
+	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+	GNU Affero General Public License for more details.
+	
+	You should have received a copy of the GNU Affero General Public License
+	along with this program.  If not, see <https://www.gnu.org/licenses/>.
+*/
+
 import { Config } from "@fosscord/util";
 import nodemailer from "nodemailer";
 
diff --git a/src/util/util/email/transports/SendGrid.ts b/src/util/util/email/transports/SendGrid.ts
index 7b46c7be..be039ddd 100644
--- a/src/util/util/email/transports/SendGrid.ts
+++ b/src/util/util/email/transports/SendGrid.ts
@@ -1,3 +1,21 @@
+/*
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
+	Copyright (C) 2023 Fosscord and Fosscord Contributors
+	
+	This program is free software: you can redistribute it and/or modify
+	it under the terms of the GNU Affero General Public License as published
+	by the Free Software Foundation, either version 3 of the License, or
+	(at your option) any later version.
+	
+	This program is distributed in the hope that it will be useful,
+	but WITHOUT ANY WARRANTY; without even the implied warranty of
+	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+	GNU Affero General Public License for more details.
+	
+	You should have received a copy of the GNU Affero General Public License
+	along with this program.  If not, see <https://www.gnu.org/licenses/>.
+*/
+
 import { Config } from "@fosscord/util";
 import nodemailer from "nodemailer";
 
diff --git a/src/util/util/email/transports/index.ts b/src/util/util/email/transports/index.ts
index d14acbf0..992de54b 100644
--- a/src/util/util/email/transports/index.ts
+++ b/src/util/util/email/transports/index.ts
@@ -1 +1,19 @@
+/*
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
+	Copyright (C) 2023 Fosscord and Fosscord Contributors
+	
+	This program is free software: you can redistribute it and/or modify
+	it under the terms of the GNU Affero General Public License as published
+	by the Free Software Foundation, either version 3 of the License, or
+	(at your option) any later version.
+	
+	This program is distributed in the hope that it will be useful,
+	but WITHOUT ANY WARRANTY; without even the implied warranty of
+	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+	GNU Affero General Public License for more details.
+	
+	You should have received a copy of the GNU Affero General Public License
+	along with this program.  If not, see <https://www.gnu.org/licenses/>.
+*/
+
 export * from "./SMTP";
diff --git a/src/util/util/index.ts b/src/util/util/index.ts
index 93656ecb..f7102ba6 100644
--- a/src/util/util/index.ts
+++ b/src/util/util/index.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/webrtc/Server.ts b/src/webrtc/Server.ts
index 850992e7..423b6264 100644
--- a/src/webrtc/Server.ts
+++ b/src/webrtc/Server.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/webrtc/events/Close.ts b/src/webrtc/events/Close.ts
index 4aed4ee0..346a5d88 100644
--- a/src/webrtc/events/Close.ts
+++ b/src/webrtc/events/Close.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/webrtc/events/Connection.ts b/src/webrtc/events/Connection.ts
index c362c97a..fa3bc85b 100644
--- a/src/webrtc/events/Connection.ts
+++ b/src/webrtc/events/Connection.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/webrtc/events/Message.ts b/src/webrtc/events/Message.ts
index 6b0c1a3a..98d4b6ca 100644
--- a/src/webrtc/events/Message.ts
+++ b/src/webrtc/events/Message.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/webrtc/index.ts b/src/webrtc/index.ts
index ab13c113..25fddee2 100644
--- a/src/webrtc/index.ts
+++ b/src/webrtc/index.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/webrtc/opcodes/BackendVersion.ts b/src/webrtc/opcodes/BackendVersion.ts
index ada3786e..055764a9 100644
--- a/src/webrtc/opcodes/BackendVersion.ts
+++ b/src/webrtc/opcodes/BackendVersion.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/webrtc/opcodes/Heartbeat.ts b/src/webrtc/opcodes/Heartbeat.ts
index e7da338b..2aaa9472 100644
--- a/src/webrtc/opcodes/Heartbeat.ts
+++ b/src/webrtc/opcodes/Heartbeat.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/webrtc/opcodes/Identify.ts b/src/webrtc/opcodes/Identify.ts
index 13fa647a..99a30339 100644
--- a/src/webrtc/opcodes/Identify.ts
+++ b/src/webrtc/opcodes/Identify.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/webrtc/opcodes/SelectProtocol.ts b/src/webrtc/opcodes/SelectProtocol.ts
index cdb5ad91..ea2c5f3e 100644
--- a/src/webrtc/opcodes/SelectProtocol.ts
+++ b/src/webrtc/opcodes/SelectProtocol.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/webrtc/opcodes/Speaking.ts b/src/webrtc/opcodes/Speaking.ts
index e0d52e08..a6504c95 100644
--- a/src/webrtc/opcodes/Speaking.ts
+++ b/src/webrtc/opcodes/Speaking.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/webrtc/opcodes/Video.ts b/src/webrtc/opcodes/Video.ts
index 7c7eec21..4ab39bb8 100644
--- a/src/webrtc/opcodes/Video.ts
+++ b/src/webrtc/opcodes/Video.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/webrtc/opcodes/index.ts b/src/webrtc/opcodes/index.ts
index b8be13a8..d631499f 100644
--- a/src/webrtc/opcodes/index.ts
+++ b/src/webrtc/opcodes/index.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/webrtc/start.ts b/src/webrtc/start.ts
index cceb399b..cf3c8450 100644
--- a/src/webrtc/start.ts
+++ b/src/webrtc/start.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/webrtc/util/Constants.ts b/src/webrtc/util/Constants.ts
index fcf806f5..be31a181 100644
--- a/src/webrtc/util/Constants.ts
+++ b/src/webrtc/util/Constants.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/webrtc/util/MediaServer.ts b/src/webrtc/util/MediaServer.ts
index a8c928bc..309652f7 100644
--- a/src/webrtc/util/MediaServer.ts
+++ b/src/webrtc/util/MediaServer.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify
diff --git a/src/webrtc/util/index.ts b/src/webrtc/util/index.ts
index 893e96d2..584b0c38 100644
--- a/src/webrtc/util/index.ts
+++ b/src/webrtc/util/index.ts
@@ -1,5 +1,5 @@
 /*
-	Fosscord: A FOSS re-implementation and extension of the Discord.com backend.
+	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
 	Copyright (C) 2023 Fosscord and Fosscord Contributors
 	
 	This program is free software: you can redistribute it and/or modify