Full Code of pantasystem/Milktea for AI

develop c3ebf4aabb94 cached
2173 files
15.0 MB
4.1M tokens
286 symbols
1 requests
Copy disabled (too large) Download .txt
Showing preview only (16,481K chars total). Download the full file to get everything.
Repository: pantasystem/Milktea
Branch: develop
Commit: c3ebf4aabb94
Files: 2173
Total size: 15.0 MB

Directory structure:
gitextract_c5wa7o3u/

├── .github/
│   ├── ISSUE_TEMPLATE/
│   │   ├── -------.md
│   │   ├── -----.md
│   │   ├── bug_report.md
│   │   ├── feature_request.md
│   │   └── other.md
│   ├── dependabot.yml
│   └── workflows/
│       ├── android-unit-test.yml
│       ├── release.yml
│       └── release2github.yml
├── .gitignore
├── .idea/
│   ├── .gitignore
│   ├── AndroidProjectSystem.xml
│   ├── GitLink.xml
│   ├── deploymentTargetSelector.xml
│   ├── deviceManager.xml
│   ├── encodings.xml
│   ├── jarRepositories.xml
│   ├── kotlinc.xml
│   └── markdown.xml
├── CLAUDE.md
├── CONTRIBUTING.md
├── LICENSE
├── PushToFCM/
│   ├── .dockerignore
│   ├── .gitignore
│   ├── README.md
│   ├── docker/
│   │   ├── Dockerfile
│   │   └── node/
│   │       └── Dockerfile
│   ├── docker-compose.yml
│   ├── index.js
│   ├── key/
│   │   └── .gitignore
│   ├── keyGenerator.js
│   ├── locales/
│   │   ├── en.json
│   │   └── ja.json
│   ├── notification_builder.js
│   ├── package.json
│   └── webPushDecipher.js
├── README-EN.md
├── README.md
├── app/
│   ├── .gitignore
│   ├── build.gradle
│   ├── google-services.json
│   ├── proguard-rules.pro
│   ├── schemas/
│   │   └── jp.panta.misskeyandroidclient.model.DataBase/
│   │       ├── 10.json
│   │       ├── 11.json
│   │       ├── 12.json
│   │       ├── 3.json
│   │       ├── 4.json
│   │       ├── 5.json
│   │       ├── 6.json
│   │       ├── 7.json
│   │       ├── 8.json
│   │       └── 9.json
│   └── src/
│       ├── androidTest/
│       │   └── java/
│       │       ├── jp/
│       │       │   └── panta/
│       │       │       └── misskeyandroidclient/
│       │       │           ├── ExampleInstrumentedTest.kt
│       │       │           └── model/
│       │       │               ├── account/
│       │       │               │   └── db/
│       │       │               │       └── RoomAccountRepositoryTest.kt
│       │       │               └── instance/
│       │       │                   └── db/
│       │       │                       └── RoomMetaDataSourceTest.kt
│       │       └── net/
│       │           └── pantasystem/
│       │               └── milktea/
│       │                   └── model/
│       │                       └── filter/
│       │                           └── MastodonFilterServiceTest.kt
│       ├── benchmark/
│       │   └── java/
│       │       └── jp/
│       │           └── panta/
│       │               └── misskeyandroidclient/
│       │                   ├── di/
│       │                   │   └── module/
│       │                   │       ├── ReleaseAPIModule.kt
│       │                   │       └── ReleaseAppModule.kt
│       │                   └── util/
│       │                       └── EmptyDebuggerSetupManagerImpl.kt
│       ├── debug/
│       │   └── java/
│       │       └── jp/
│       │           └── panta/
│       │               └── misskeyandroidclient/
│       │                   └── util/
│       │                       └── di/
│       │                           └── module/
│       │                               ├── DebugAPIModule.kt
│       │                               └── DebugAppModule.kt
│       ├── main/
│       │   ├── AndroidManifest.xml
│       │   ├── java/
│       │   │   └── jp/
│       │   │       └── panta/
│       │   │           └── misskeyandroidclient/
│       │   │               ├── AlarmNotePostReceiver.kt
│       │   │               ├── FCMService.kt
│       │   │               ├── MainActivity.kt
│       │   │               ├── MiApplication.kt
│       │   │               ├── ThemeUtil.kt
│       │   │               ├── di/
│       │   │               │   ├── entorypoint/
│       │   │               │   │   └── InitializerEntryPoint.kt
│       │   │               │   └── module/
│       │   │               │       ├── AccountModule.kt
│       │   │               │       ├── AppLoggerModule.kt
│       │   │               │       ├── CoroutineScopeModule.kt
│       │   │               │       ├── CustomAuthStoreModule.kt
│       │   │               │       ├── EmojiModule.kt
│       │   │               │       ├── EncryptionModule.kt
│       │   │               │       ├── NavigationModule.kt
│       │   │               │       ├── NoteModule.kt
│       │   │               │       ├── PageableModule.kt
│       │   │               │       ├── PushSubscriptionModule.kt
│       │   │               │       ├── TaskExecutorsModule.kt
│       │   │               │       └── ThemeModule.kt
│       │   │               ├── impl/
│       │   │               │   ├── AndroidDefaultLogger.kt
│       │   │               │   ├── AndroidNoteReservationPostExecutor.kt
│       │   │               │   ├── CheckEmojiAndroidImpl.kt
│       │   │               │   ├── NavigationModule.kt
│       │   │               │   ├── OkHttpClientProviderImpl.kt
│       │   │               │   └── PageDefaultStringsOnAndroid.kt
│       │   │               ├── media/
│       │   │               │   └── CoilApngDecoder.kt
│       │   │               ├── setup/
│       │   │               │   └── AppStateController.kt
│       │   │               ├── startup/
│       │   │               │   ├── DebuggerSetupInitializer.kt
│       │   │               │   └── EmojiCompatInitializer.kt
│       │   │               ├── ui/
│       │   │               │   ├── BottomNavigationLongClickListener.kt
│       │   │               │   ├── PageableFragmentFactoryImpl.kt
│       │   │               │   ├── main/
│       │   │               │   │   ├── AccountViewModelHandler.kt
│       │   │               │   │   ├── ChangeNavMenuVisibilityFromAPIVersion.kt
│       │   │               │   │   ├── ConfirmCrashlyticsDialog.kt
│       │   │               │   │   ├── ConfirmGoogleAnalyticsDialog.kt
│       │   │               │   │   ├── FabClickHandler.kt
│       │   │               │   │   ├── IntentToAddAccountHandler.kt
│       │   │               │   │   ├── MainActivityEventHandler.kt
│       │   │               │   │   ├── MainActivityInitialIntentHandler.kt
│       │   │               │   │   ├── MainActivityMenuProvider.kt
│       │   │               │   │   ├── MainActivityNavigationDrawerMenuItemClickListener.kt
│       │   │               │   │   ├── NoteCreateResultHandler.kt
│       │   │               │   │   ├── NotePostFailedDialogFragment.kt
│       │   │               │   │   ├── SafeSearchDescriptionDialog.kt
│       │   │               │   │   ├── SetSimpleEditor.kt
│       │   │               │   │   ├── SetUpNavHeader.kt
│       │   │               │   │   ├── SetupOnBackPressedDispatcherHandler.kt
│       │   │               │   │   ├── ShowBottomNavigationBadgeDelegate.kt
│       │   │               │   │   ├── ShowRequestSchedulePostResultSnackBar.kt
│       │   │               │   │   ├── ToggleNavigationDrawerDelegate.kt
│       │   │               │   │   └── viewmodel/
│       │   │               │   │       └── MainViewModel.kt
│       │   │               │   ├── strings_helper/
│       │   │               │   │   └── web_socket_error.kt
│       │   │               │   └── tab/
│       │   │               │       ├── TabFragment.kt
│       │   │               │       ├── TabViewModel.kt
│       │   │               │       └── TimelinePagerAdapter.kt
│       │   │               ├── util/
│       │   │               │   ├── DebuggerSetupManager.kt
│       │   │               │   ├── DoubleBackPressedFinishDelegate.kt
│       │   │               │   └── task/
│       │   │               │       └── task_coroutines_util.kt
│       │   │               └── worker/
│       │   │                   └── WorkerJobInitializer.kt
│       │   └── res/
│       │       ├── layout/
│       │       │   ├── activity_main.xml
│       │       │   ├── app_bar_main.xml
│       │       │   ├── content_main.xml
│       │       │   ├── fragment_tab.xml
│       │       │   └── nav_header_main.xml
│       │       ├── mipmap-anydpi-v26/
│       │       │   ├── ic_launcher.xml
│       │       │   └── ic_launcher_round.xml
│       │       ├── navigation/
│       │       │   └── main_nav.xml
│       │       ├── values/
│       │       │   └── values.xml
│       │       ├── values-v21/
│       │       │   └── styles.xml
│       │       ├── values-v23/
│       │       │   ├── styles.xml
│       │       │   └── themes.xml
│       │       ├── values-v27/
│       │       │   └── themes.xml
│       │       ├── values-w320dp/
│       │       │   └── values.xml
│       │       ├── values-w480dp/
│       │       │   └── values.xml
│       │       ├── values-w600dp/
│       │       │   └── values.xml
│       │       ├── values-w720dp/
│       │       │   └── values.xml
│       │       └── xml/
│       │           └── shortcuts.xml
│       ├── release/
│       │   └── java/
│       │       └── jp/
│       │           └── panta/
│       │               └── misskeyandroidclient/
│       │                   └── di/
│       │                       └── module/
│       │                           ├── EmptyDebuggerSetupManagerImpl.kt
│       │                           ├── ReleaseAPIModule.kt
│       │                           └── ReleaseAppModule.kt
│       └── test/
│           └── java/
│               ├── jp/
│               │   └── panta/
│               │       └── misskeyandroidclient/
│               │           ├── GsonNullInstantTest.kt
│               │           ├── api/
│               │           │   ├── APIErrorTest.kt
│               │           │   ├── mastodon/
│               │           │   │   ├── emojis/
│               │           │   │   │   └── TootEmojiDTOTest.kt
│               │           │   │   └── instance/
│               │           │   │       └── InstanceTest.kt
│               │           │   ├── misskey/
│               │           │   │   └── v12/
│               │           │   │       └── channel/
│               │           │   │           └── ChannelDTOTest.kt
│               │           │   └── notes/
│               │           │       └── NoteDTOTest.kt
│               │           ├── logger/
│               │           │   └── TestLogger.kt
│               │           ├── model/
│               │           │   ├── account/
│               │           │   │   ├── AccountInstanceTypeConverterTest.kt
│               │           │   │   ├── AccountStateTest.kt
│               │           │   │   ├── AccountTest.kt
│               │           │   │   ├── MakeDefaultPagesUseCaseTest.kt
│               │           │   │   ├── TestAccountRepository.kt
│               │           │   │   └── page/
│               │           │   │       └── PageableChannelTimelineTest.kt
│               │           │   ├── api/
│               │           │   │   ├── GetUsersTest.kt
│               │           │   │   ├── HashTagListTest.kt
│               │           │   │   └── VersionTest.kt
│               │           │   ├── channel/
│               │           │   │   └── ChannelStateTest.kt
│               │           │   ├── file/
│               │           │   │   └── AppFileTest.kt
│               │           │   ├── instance/
│               │           │   │   └── MetaCacheTest.kt
│               │           │   ├── notes/
│               │           │   │   ├── impl/
│               │           │   │   │   ├── InMemoryNoteDataSourceTest.kt
│               │           │   │   │   └── NoteCaptureAPIAdapterTest.kt
│               │           │   │   └── poll/
│               │           │   │       └── PollTest.kt
│               │           │   ├── reaction/
│               │           │   │   └── impl/
│               │           │   │       └── ReactionHistoryPaginatorImplTest.kt
│               │           │   └── users/
│               │           │       ├── UserTest.kt
│               │           │       └── nickname/
│               │           │           ├── DeleteNicknameUseCaseTest.kt
│               │           │           └── UpdateNicknameUseCaseTest.kt
│               │           ├── streaming/
│               │           │   ├── SendBodyTest.kt
│               │           │   ├── StreamingEventTest.kt
│               │           │   ├── TestSocketImpl.kt
│               │           │   ├── TestSocketWithAccountProviderImpl.kt
│               │           │   ├── channel/
│               │           │   │   └── ChannelAPITest.kt
│               │           │   └── network/
│               │           │       └── SocketImplTest.kt
│               │           ├── ui/
│               │           │   └── users/
│               │           │       └── viewmodel/
│               │           │           └── search/
│               │           │               └── SearchUserTest.kt
│               │           └── util/
│               │               ├── EncryptionStub.kt
│               │               └── StringIndexTest.kt
│               └── net/
│                   └── pantasystem/
│                       └── milktea/
│                           ├── data/
│                           │   └── infrastructure/
│                           │       ├── emoji/
│                           │       │   └── CustomEmojiInserterTest.kt
│                           │       └── note/
│                           │           └── draft/
│                           │               └── db/
│                           │                   └── DraftNoteDTOTest.kt
│                           └── note/
│                               ├── editor/
│                               │   └── viewmodel/
│                               │       └── NoteEditorUiStateKtTest.kt
│                               └── media/
│                                   └── viewmodel/
│                                       └── MediaViewDataTest.kt
├── benchmark/
│   ├── .gitignore
│   ├── build.gradle
│   └── src/
│       └── main/
│           ├── AndroidManifest.xml
│           └── java/
│               └── systems/
│                   └── panta/
│                       └── benchmark/
│                           └── ExampleStartupBenchmark.kt
├── build.gradle
├── csae_policy_ja.md
├── docs/
│   ├── mfm-decorator-implementation-guide.md
│   ├── migrate-dynamic-feature-flag-plan.md
│   ├── note-editor-compose-migration-plan.md
│   └── note-editor-reply-preview-mfm-plan.md
├── gradle/
│   └── wrapper/
│       ├── gradle-wrapper.jar
│       └── gradle-wrapper.properties
├── gradle.properties
├── gradlew
├── gradlew.bat
├── libs.versions.toml
├── modules/
│   ├── api/
│   │   ├── .gitignore
│   │   ├── build.gradle
│   │   ├── consumer-rules.pro
│   │   ├── proguard-rules.pro
│   │   └── src/
│   │       ├── main/
│   │       │   ├── AndroidManifest.xml
│   │       │   └── java/
│   │       │       └── net/
│   │       │           └── pantasystem/
│   │       │               └── milktea/
│   │       │                   └── api/
│   │       │                       ├── activitypub/
│   │       │                       │   ├── NodeInfoAPI.kt
│   │       │                       │   ├── NodeInfoDTO.kt
│   │       │                       │   ├── WellKnownNodeInfo.kt
│   │       │                       │   └── WellKnownNodeInfoAPI.kt
│   │       │                       ├── mastodon/
│   │       │                       │   ├── MastodonAPI.kt
│   │       │                       │   ├── accounts/
│   │       │                       │   │   ├── FollowParamsRequest.kt
│   │       │                       │   │   ├── MastodonAccountDTO.kt
│   │       │                       │   │   └── MuteAccountRequest.kt
│   │       │                       │   ├── apps/
│   │       │                       │   │   └── App.kt
│   │       │                       │   ├── context/
│   │       │                       │   │   └── ContextDTO.kt
│   │       │                       │   ├── emojis/
│   │       │                       │   │   └── TootEmojiDTO.kt
│   │       │                       │   ├── filter/
│   │       │                       │   │   ├── FilterContext.kt
│   │       │                       │   │   ├── FilterResultDTO.kt
│   │       │                       │   │   ├── V1FilterDTO.kt
│   │       │                       │   │   └── V2FilterDTO.kt
│   │       │                       │   ├── instance/
│   │       │                       │   │   └── Instance.kt
│   │       │                       │   ├── list/
│   │       │                       │   │   ├── AddAccountsToList.kt
│   │       │                       │   │   ├── CreateListRequest.kt
│   │       │                       │   │   └── ListDTO.kt
│   │       │                       │   ├── marker/
│   │       │                       │   │   └── MarkerDTO.kt
│   │       │                       │   ├── media/
│   │       │                       │   │   ├── TootMediaAttachment.kt
│   │       │                       │   │   └── UpdateMediaAttachment.kt
│   │       │                       │   ├── notification/
│   │       │                       │   │   └── MstNotificationDTO.kt
│   │       │                       │   ├── poll/
│   │       │                       │   │   └── TootPollDTO.kt
│   │       │                       │   ├── report/
│   │       │                       │   │   ├── CreateReportRequest.kt
│   │       │                       │   │   └── MstReportDTO.kt
│   │       │                       │   ├── rule/
│   │       │                       │   │   └── RuleDTO.kt
│   │       │                       │   ├── search/
│   │       │                       │   │   └── SearchResponse.kt
│   │       │                       │   ├── status/
│   │       │                       │   │   ├── CreateStatus.kt
│   │       │                       │   │   ├── ScheduledStatus.kt
│   │       │                       │   │   ├── TootPreviewCardDTO.kt
│   │       │                       │   │   └── TootStatusDTO.kt
│   │       │                       │   ├── subscription/
│   │       │                       │   │   ├── SubscribePushNotification.kt
│   │       │                       │   │   ├── WebPushSubscription.kt
│   │       │                       │   │   └── WebPushSubscriptionAlerts.kt
│   │       │                       │   ├── suggestion/
│   │       │                       │   │   └── SuggestionDTO.kt
│   │       │                       │   └── tag/
│   │       │                       │       └── MastodonTagDTO.kt
│   │       │                       ├── milktea/
│   │       │                       │   ├── CreateInstanceRequest.kt
│   │       │                       │   ├── InstanceInfoResponse.kt
│   │       │                       │   ├── MilkteaAPIService.kt
│   │       │                       │   ├── MilkteaAPIServiceBuilder.kt
│   │       │                       │   └── instance/
│   │       │                       │       └── ticker/
│   │       │                       │           ├── InstanceTickerAPIService.kt
│   │       │                       │           ├── InstanceTickerAPIServiceBuilder.kt
│   │       │                       │           └── InstanceTickerNetworkDTO.kt
│   │       │                       └── misskey/
│   │       │                           ├── EmptyRequest.kt
│   │       │                           ├── I.kt
│   │       │                           ├── InstanceInfosAPI.kt
│   │       │                           ├── MisskeyAPI.kt
│   │       │                           ├── MisskeyAPIServiceBuilder.kt
│   │       │                           ├── MisskeyAuthAPI.kt
│   │       │                           ├── ap/
│   │       │                           │   ├── ApResolveRequest.kt
│   │       │                           │   └── ApResolveResult.kt
│   │       │                           ├── app/
│   │       │                           │   ├── CreateApp.kt
│   │       │                           │   └── ShowApp.kt
│   │       │                           ├── auth/
│   │       │                           │   ├── AccessToken.kt
│   │       │                           │   ├── App.kt
│   │       │                           │   ├── AppSecret.kt
│   │       │                           │   ├── Session.kt
│   │       │                           │   ├── SignInRequest.kt
│   │       │                           │   ├── SignInResponse.kt
│   │       │                           │   └── UserKey.kt
│   │       │                           ├── clip/
│   │       │                           │   ├── AddNoteToClipRequest.kt
│   │       │                           │   ├── ClipDTO.kt
│   │       │                           │   ├── CreateClipRequest.kt
│   │       │                           │   ├── DeleteClipRequest.kt
│   │       │                           │   ├── FindNotesClip.kt
│   │       │                           │   ├── FindUsersClipRequest.kt
│   │       │                           │   └── ShowClipRequest.kt
│   │       │                           ├── drive/
│   │       │                           │   ├── CreateFolder.kt
│   │       │                           │   ├── DeleteFileReq.kt
│   │       │                           │   ├── DirectoryNetworkDTO.kt
│   │       │                           │   ├── FilePropertyDTO.kt
│   │       │                           │   ├── RequestFile.kt
│   │       │                           │   ├── RequestFolder.kt
│   │       │                           │   ├── ShowFile.kt
│   │       │                           │   ├── ShowFolderRequest.kt
│   │       │                           │   └── UpdateFileDTO.kt
│   │       │                           ├── emoji/
│   │       │                           │   ├── CustomEmojiNetworkDTO.kt
│   │       │                           │   └── EmojisType.kt
│   │       │                           ├── favorite/
│   │       │                           │   └── Favorite.kt
│   │       │                           ├── groups/
│   │       │                           │   ├── Actions.kt
│   │       │                           │   ├── GroupDTO.kt
│   │       │                           │   └── InvitationDTO.kt
│   │       │                           ├── hashtag/
│   │       │                           │   ├── RequestHashTagList.kt
│   │       │                           │   └── SearchHashtagRequest.kt
│   │       │                           ├── infos/
│   │       │                           │   ├── InstanceInfosResponse.kt
│   │       │                           │   └── SimpleInstanceInfo.kt
│   │       │                           ├── instance/
│   │       │                           │   ├── MetaNetworkDTO.kt
│   │       │                           │   └── RequestMeta.kt
│   │       │                           ├── list/
│   │       │                           │   ├── CreateList.kt
│   │       │                           │   ├── ListId.kt
│   │       │                           │   ├── ListUserOperation.kt
│   │       │                           │   ├── UpdateList.kt
│   │       │                           │   └── UserListDTO.kt
│   │       │                           ├── messaging/
│   │       │                           │   ├── MessageAction.kt
│   │       │                           │   ├── MessageDTO.kt
│   │       │                           │   ├── RequestMessage.kt
│   │       │                           │   └── RequestMessageHistory.kt
│   │       │                           ├── notes/
│   │       │                           │   ├── CreateNote.kt
│   │       │                           │   ├── CreateReactionDTO.kt
│   │       │                           │   ├── DeleteNote.kt
│   │       │                           │   ├── FindRenotes.kt
│   │       │                           │   ├── GetNoteChildrenRequest.kt
│   │       │                           │   ├── NoteDTO.kt
│   │       │                           │   ├── NoteRequest.kt
│   │       │                           │   ├── NoteStateResponse.kt
│   │       │                           │   ├── PollDTO.kt
│   │       │                           │   ├── Vote.kt
│   │       │                           │   ├── favorite/
│   │       │                           │   │   ├── CreateFavorite.kt
│   │       │                           │   │   └── DeleteFavorite.kt
│   │       │                           │   ├── mute/
│   │       │                           │   │   └── ToggleThreadMuteRequest.kt
│   │       │                           │   ├── reaction/
│   │       │                           │   │   ├── ReactionHistoryDTO.kt
│   │       │                           │   │   └── RequestReactionHistoryDTO.kt
│   │       │                           │   └── translation/
│   │       │                           │       ├── Translate.kt
│   │       │                           │       └── TranslationResult.kt
│   │       │                           ├── notification/
│   │       │                           │   ├── NotificationDTO.kt
│   │       │                           │   └── NotificationRequest.kt
│   │       │                           ├── online/
│   │       │                           │   └── user/
│   │       │                           │       └── OnlineUserCount.kt
│   │       │                           ├── register/
│   │       │                           │   ├── WebConfigReactions.kt
│   │       │                           │   └── subscription.kt
│   │       │                           ├── trend/
│   │       │                           │   └── HashtagTrend.kt
│   │       │                           ├── users/
│   │       │                           │   ├── AcceptFollowRequest.kt
│   │       │                           │   ├── CancelFollow.kt
│   │       │                           │   ├── CreateMuteUserRequest.kt
│   │       │                           │   ├── FollowFollowerUser.kt
│   │       │                           │   ├── FollowRequestDTO.kt
│   │       │                           │   ├── GetFollowRequest.kt
│   │       │                           │   ├── RejectFollowRequest.kt
│   │       │                           │   ├── RequestUser.kt
│   │       │                           │   ├── SearchByUserAndHost.kt
│   │       │                           │   ├── UserDTO.kt
│   │       │                           │   ├── follow/
│   │       │                           │   │   ├── FollowUserRequest.kt
│   │       │                           │   │   ├── UnFollowUserRequest.kt
│   │       │                           │   │   └── UpdateUserFollowRequest.kt
│   │       │                           │   ├── renote/
│   │       │                           │   │   └── mute/
│   │       │                           │   │       ├── CreateRenoteMuteRequest.kt
│   │       │                           │   │       ├── DeleteRenoteMuteRequest.kt
│   │       │                           │   │       └── RenoteMuteDTO.kt
│   │       │                           │   └── report/
│   │       │                           │       └── ReportDTO.kt
│   │       │                           ├── v10/
│   │       │                           │   ├── FollowFollowerUsers.kt
│   │       │                           │   └── RequestFollowFollower.kt
│   │       │                           ├── v12/
│   │       │                           │   ├── MisskeyAPIV12.kt
│   │       │                           │   ├── MisskeyAPIV12Diff.kt
│   │       │                           │   ├── antenna/
│   │       │                           │   │   ├── AntennaDTO.kt
│   │       │                           │   │   ├── AntennaQuery.kt
│   │       │                           │   │   └── AntennaToAdd.kt
│   │       │                           │   ├── channel/
│   │       │                           │   │   └── channels.kt
│   │       │                           │   └── user/
│   │       │                           │       └── reaction/
│   │       │                           │           ├── UserReaction.kt
│   │       │                           │           └── UserReactionRequest.kt
│   │       │                           ├── v12_75_0/
│   │       │                           │   └── gallery.kt
│   │       │                           └── v13/
│   │       │                               └── EmojisResponse.kt
│   │       └── test/
│   │           ├── java/
│   │           │   └── net/
│   │           │       └── pantasystem/
│   │           │           └── milktea/
│   │           │               └── api/
│   │           │                   ├── CurrentClassLoader.kt
│   │           │                   ├── mastodon/
│   │           │                   │   ├── instance/
│   │           │                   │   │   └── InstanceTest.kt
│   │           │                   │   └── status/
│   │           │                   │       └── TootStatusDTOTest.kt
│   │           │                   └── misskey/
│   │           │                       ├── ap/
│   │           │                       │   └── ApResolveResultTest.kt
│   │           │                       ├── infos/
│   │           │                       │   └── InstanceInfosResponseTest.kt
│   │           │                       ├── users/
│   │           │                       │   ├── BaseUserDTOTest.kt
│   │           │                       │   └── UserDTOTest.kt
│   │           │                       └── v10/
│   │           │                           ├── FollowFollowerUsersTest.kt
│   │           │                           └── RequestFollowFollowerTest.kt
│   │           └── resources/
│   │               ├── fedibird_instance_info.json
│   │               ├── mastodonsocial_instance_info.json
│   │               ├── mstdnjp_instance_info.json
│   │               ├── pawoonet_instance_info.json
│   │               ├── toot_fedibird_com_home_has_quote_timeline.json
│   │               ├── toot_fedibird_com_home_timeline.json
│   │               ├── toot_fedibird_com_home_timeline_2.json
│   │               ├── toot_fedibird_com_home_timeline_3.json
│   │               ├── toot_fedibird_com_home_timeline_4.json
│   │               ├── toot_fedibird_com_home_timeline_5.json
│   │               ├── toot_fedibird_com_home_timeline_6.json
│   │               ├── toot_fedibird_com_home_timeline_7.json
│   │               ├── toot_fedibird_com_home_timeline_8.json
│   │               ├── toot_mstdn_jp_public_timeline.json
│   │               ├── user_dto_give_harunon_case1.json
│   │               ├── user_dto_list_case1.json
│   │               ├── v10_followers_case1.json
│   │               └── v10_user_dto_give_harunon_case1.json
│   ├── api_streaming/
│   │   ├── .gitignore
│   │   ├── build.gradle
│   │   ├── consumer-rules.pro
│   │   ├── proguard-rules.pro
│   │   └── src/
│   │       └── main/
│   │           ├── AndroidManifest.xml
│   │           └── java/
│   │               └── net/
│   │                   └── pantasystem/
│   │                       └── milktea/
│   │                           └── api_streaming/
│   │                               ├── NoteCaptureAPI.kt
│   │                               ├── Socket.kt
│   │                               ├── SocketEventListener.kt
│   │                               ├── channel/
│   │                               │   ├── ChannelAPI.kt
│   │                               │   └── user_timeline_extenstion.kt
│   │                               ├── events.kt
│   │                               ├── mastodon/
│   │                               │   ├── Event.kt
│   │                               │   ├── StreamingAPI.kt
│   │                               │   └── StreamingAPIImpl.kt
│   │                               ├── network/
│   │                               │   └── SocketImpl.kt
│   │                               ├── pollings.kt
│   │                               └── sends.kt
│   ├── app_store/
│   │   ├── .gitignore
│   │   ├── build.gradle
│   │   ├── consumer-rules.pro
│   │   ├── proguard-rules.pro
│   │   └── src/
│   │       └── main/
│   │           ├── AndroidManifest.xml
│   │           └── java/
│   │               └── net/
│   │                   └── pantasystem/
│   │                       └── milktea/
│   │                           └── app_store/
│   │                               ├── account/
│   │                               │   ├── AccountState.kt
│   │                               │   └── AccountStore.kt
│   │                               ├── drive/
│   │                               │   ├── DriveDirectoryPagingStore.kt
│   │                               │   └── FilePropertyPagingStore.kt
│   │                               ├── gallery/
│   │                               │   ├── GalleryPostSendFavoriteStore.kt
│   │                               │   └── GalleryPostsStore.kt
│   │                               ├── handler/
│   │                               │   └── UserActionAppGlobalErrorStore.kt
│   │                               ├── messaging/
│   │                               │   └── MessagePagingStore.kt
│   │                               ├── notes/
│   │                               │   ├── NoteTranslationStore.kt
│   │                               │   └── TimelineStore.kt
│   │                               ├── setting/
│   │                               │   └── SettingStore.kt
│   │                               └── user/
│   │                                   ├── FollowFollowerPagingStore.kt
│   │                                   └── UserReactionPagingStore.kt
│   ├── common/
│   │   ├── .gitignore
│   │   ├── build.gradle
│   │   ├── consumer-rules.pro
│   │   ├── proguard-rules.pro
│   │   └── src/
│   │       ├── main/
│   │       │   ├── AndroidManifest.xml
│   │       │   ├── java/
│   │       │   │   └── net/
│   │       │   │       └── pantasystem/
│   │       │   │           └── milktea/
│   │       │   │               └── common/
│   │       │   │                   ├── ByteSizeHelper.kt
│   │       │   │                   ├── ColorUtil.kt
│   │       │   │                   ├── Encryption.kt
│   │       │   │                   ├── Hash.kt
│   │       │   │                   ├── Logger.kt
│   │       │   │                   ├── MastodonLinkHeaderDecoder.kt
│   │       │   │                   ├── ResultHelper.kt
│   │       │   │                   ├── SharedPreferenceUtil.kt
│   │       │   │                   ├── collection/
│   │       │   │                   │   └── LRUCache.kt
│   │       │   │                   ├── coroutines/
│   │       │   │                   │   ├── CombineExt.kt
│   │       │   │                   │   ├── PessimisticCollectiveMutex.kt
│   │       │   │                   │   └── Throttle.kt
│   │       │   │                   ├── dhash/
│   │       │   │                   │   └── ImageDHash.kt
│   │       │   │                   ├── errors.kt
│   │       │   │                   ├── glide/
│   │       │   │                   │   ├── GlideUtils.kt
│   │       │   │                   │   ├── MiGlideModule.kt
│   │       │   │                   │   ├── apng/
│   │       │   │                   │   │   ├── ApngDecoder.kt
│   │       │   │                   │   │   ├── FrameSeqDecoderBitmapTranscoder.kt
│   │       │   │                   │   │   ├── FrameSeqDecoderDrawableTranscoder.kt
│   │       │   │                   │   │   └── StreamApngDecoder.kt
│   │       │   │                   │   ├── blurhash/
│   │       │   │                   │   │   ├── BlurHash.kt
│   │       │   │                   │   │   ├── BlurHashModelLoader.kt
│   │       │   │                   │   │   ├── BlurHashResourceDecoder.kt
│   │       │   │                   │   │   ├── BlurHashSource.kt
│   │       │   │                   │   │   └── BlurhashDecoder.kt
│   │       │   │                   │   └── svg/
│   │       │   │                   │       ├── SvgDecoder.kt
│   │       │   │                   │       └── SvgDrawableTranscoder.kt
│   │       │   │                   ├── paginator/
│   │       │   │                   │   ├── EntityConverter.kt
│   │       │   │                   │   ├── FutureCacheSaver.kt
│   │       │   │                   │   ├── FutureLoader.kt
│   │       │   │                   │   ├── FuturePaginator.kt
│   │       │   │                   │   ├── FuturePagingController.kt
│   │       │   │                   │   ├── IdFutureLoader.kt
│   │       │   │                   │   ├── IdGetter.kt
│   │       │   │                   │   ├── IdPreviousLoader.kt
│   │       │   │                   │   ├── MediatorFuturePagingController.kt
│   │       │   │                   │   ├── MediatorPreviousPagingController.kt
│   │       │   │                   │   ├── PaginationState.kt
│   │       │   │                   │   ├── PreviousCacheSaver.kt
│   │       │   │                   │   ├── PreviousLoader.kt
│   │       │   │                   │   ├── PreviousPaginator.kt
│   │       │   │                   │   ├── PreviousPagingController.kt
│   │       │   │                   │   └── StateLocker.kt
│   │       │   │                   ├── serializations/
│   │       │   │                   │   ├── DateSerializer.kt
│   │       │   │                   │   ├── EnumIgnoreUnknownSerializer.kt
│   │       │   │                   │   └── FallbackDefaultValueSerializer.kt
│   │       │   │                   ├── state_helper.kt
│   │       │   │                   ├── suspend_state_util.kt
│   │       │   │                   ├── text/
│   │       │   │                   │   ├── Levenshtein.kt
│   │       │   │                   │   └── UrlPatternChecker.kt
│   │       │   │                   └── ui/
│   │       │   │                       ├── ApplyTheme.kt
│   │       │   │                       ├── AvatarIconView.kt
│   │       │   │                       ├── CircleImageIconHelper.kt
│   │       │   │                       ├── LazyColumnScrollStateHelper.kt
│   │       │   │                       ├── PageableView.kt
│   │       │   │                       ├── SimpleElapsedTime.kt
│   │       │   │                       └── ToolbarSetter.kt
│   │       │   └── res/
│   │       │       ├── drawable/
│   │       │       │   ├── ic_cloud_off_black_24dp.xml
│   │       │       │   └── ic_content_copy_black_24dp.xml
│   │       │       ├── values/
│   │       │       │   ├── attrs.xml
│   │       │       │   └── strings.xml
│   │       │       ├── values-ja/
│   │       │       │   └── strings.xml
│   │       │       └── values-zh/
│   │       │           └── strings.xml
│   │       └── test/
│   │           └── java/
│   │               └── net/
│   │                   └── pantasystem/
│   │                       └── milktea/
│   │                           └── common/
│   │                               ├── ByteSizeHelperKtTest.kt
│   │                               ├── coroutines/
│   │                               │   └── PessimisticCollectiveMutexTest.kt
│   │                               ├── paginator/
│   │                               │   ├── FuturePagingControllerTest.kt
│   │                               │   └── PreviousPagingControllerTest.kt
│   │                               └── ui/
│   │                                   └── SimpleElapsedTimeTest.kt
│   ├── common_android/
│   │   ├── .gitignore
│   │   ├── build.gradle
│   │   ├── consumer-rules.pro
│   │   ├── proguard-rules.pro
│   │   └── src/
│   │       └── main/
│   │           ├── AndroidManifest.xml
│   │           ├── java/
│   │           │   └── net/
│   │           │       └── pantasystem/
│   │           │           └── milktea/
│   │           │               └── common_android/
│   │           │                   ├── debug/
│   │           │                   │   └── DebugFeatureFlags.kt
│   │           │                   ├── emoji/
│   │           │                   │   └── V13EmojiUrlResolver.kt
│   │           │                   ├── hilt/
│   │           │                   │   ├── HiltCoroutineDispatcherAnnotation.kt
│   │           │                   │   └── di/
│   │           │                   │       └── module/
│   │           │                   │           └── CoroutineDispatcherModule.kt
│   │           │                   ├── html/
│   │           │                   │   └── MastodonHTML.kt
│   │           │                   ├── mfm/
│   │           │                   │   └── MFMParser.kt
│   │           │                   ├── notification/
│   │           │                   │   └── NotificationUtil.kt
│   │           │                   ├── nyaize/
│   │           │                   │   └── Nyaize.kt
│   │           │                   ├── platform/
│   │           │                   │   ├── FlowBroadcastReceiver.kt
│   │           │                   │   ├── NetworkEventFlow.kt
│   │           │                   │   ├── NetworkStatusUtil.kt
│   │           │                   │   └── PermissionUtil.kt
│   │           │                   ├── resource/
│   │           │                   │   ├── DpHelper.kt
│   │           │                   │   └── StringResource.kt
│   │           │                   └── ui/
│   │           │                       ├── ActivityUtils.kt
│   │           │                       ├── AutoCollapsingLayout.kt
│   │           │                       ├── BottomSheetViewPager.kt
│   │           │                       ├── CircleOutlineHelper.kt
│   │           │                       ├── FontSizeUnitConverter.kt
│   │           │                       ├── MediaLayout.kt
│   │           │                       ├── RoundedOutlineProvider.kt
│   │           │                       ├── SafeUnbox.kt
│   │           │                       ├── StringHelper.kt
│   │           │                       ├── VisibilityHelper.kt
│   │           │                       ├── haptic/
│   │           │                       │   └── HapticFeedbackController.kt
│   │           │                       ├── listview/
│   │           │                       │   └── FlexBoxLayoutHelper.kt
│   │           │                       └── text/
│   │           │                           ├── CustomEmojiDecorator.kt
│   │           │                           ├── CustomEmojiTokenizer.kt
│   │           │                           ├── DateFormatHelper.kt
│   │           │                           ├── DrawableEmojiSpan.kt
│   │           │                           ├── EmojiAdapter.kt
│   │           │                           ├── EmojiSpan.kt
│   │           │                           └── GetElapsedTimeStringSource.kt
│   │           └── res/
│   │               ├── drawable/
│   │               │   └── ic_close_black_24dp.xml
│   │               └── values/
│   │                   └── attrs.xml
│   ├── common_android_ui/
│   │   ├── .gitignore
│   │   ├── build.gradle
│   │   ├── consumer-rules.pro
│   │   ├── proguard-rules.pro
│   │   └── src/
│   │       └── main/
│   │           ├── AndroidManifest.xml
│   │           ├── java/
│   │           │   ├── StringSourceHelper.kt
│   │           │   └── net/
│   │           │       └── pantasystem/
│   │           │           └── milktea/
│   │           │               └── common_android_ui/
│   │           │                   ├── APIErrorStringConverter.kt
│   │           │                   ├── AvatarIconViewBindingAdapter.kt
│   │           │                   ├── BindingProvider.kt
│   │           │                   ├── DecorateTextHelper.kt
│   │           │                   ├── DrawableTintCompat.kt
│   │           │                   ├── EmojiText.kt
│   │           │                   ├── MFMDecorator.kt
│   │           │                   ├── MediaPreviewAspectLayout.kt
│   │           │                   ├── MfmBorderSpan.kt
│   │           │                   ├── MfmFlipSpan.kt
│   │           │                   ├── MfmRotateSpan.kt
│   │           │                   ├── MfmRubySpan.kt
│   │           │                   ├── MfmText.kt
│   │           │                   ├── PageableFragmentFactory.kt
│   │           │                   ├── ReactionViewHelper.kt
│   │           │                   ├── TextType.kt
│   │           │                   ├── UserPinnedNotesFragmentFactory.kt
│   │           │                   ├── UserTransitionHelper.kt
│   │           │                   ├── ViewBackgroundColorHelper.kt
│   │           │                   ├── account/
│   │           │                   │   ├── AccountSwitchingDialog.kt
│   │           │                   │   ├── AccountSwitchingDialogLayout.kt
│   │           │                   │   ├── AccountTile.kt
│   │           │                   │   ├── page/
│   │           │                   │   │   └── PageTypeHelper.kt
│   │           │                   │   └── viewmodel/
│   │           │                   │       ├── AccountViewModel.kt
│   │           │                   │       ├── AccountViewModelUiState.kt
│   │           │                   │       └── AccountViewModelUiStateHelper.kt
│   │           │                   ├── error/
│   │           │                   │   └── UserActionAppGlobalErrorListener.kt
│   │           │                   ├── reaction/
│   │           │                   │   ├── ReactionAutoCompleteArrayAdapter.kt
│   │           │                   │   └── ReactionChoicesAdapter.kt
│   │           │                   ├── report/
│   │           │                   │   ├── ReportDialog.kt
│   │           │                   │   └── ReportViewModel.kt
│   │           │                   ├── tab/
│   │           │                   │   ├── TabViewCompositeClickListener.kt
│   │           │                   │   └── TabbedFlexboxListMediator.kt
│   │           │                   └── user/
│   │           │                       ├── FollowRequestsFragmentFactory.kt
│   │           │                       ├── UserChipListAdapter.kt
│   │           │                       └── UserTextHelper.kt
│   │           └── res/
│   │               ├── layout/
│   │               │   ├── dialog_report.xml
│   │               │   ├── dialog_switch_account.xml
│   │               │   ├── item_reaction_choice.xml
│   │               │   ├── item_reaction_preview.xml
│   │               │   └── item_user_chip.xml
│   │               └── values/
│   │                   └── tags.xml
│   ├── common_compose/
│   │   ├── .gitignore
│   │   ├── build.gradle
│   │   ├── consumer-rules.pro
│   │   ├── proguard-rules.pro
│   │   └── src/
│   │       └── main/
│   │           ├── AndroidManifest.xml
│   │           ├── java/
│   │           │   └── net/
│   │           │       └── pantasystem/
│   │           │           └── milktea/
│   │           │               └── common_compose/
│   │           │                   ├── AvatarIcon.kt
│   │           │                   ├── BlurhashPainter.kt
│   │           │                   ├── CircleCheckbox.kt
│   │           │                   ├── ComposeAndFragment.kt
│   │           │                   ├── CustomEmojiText.kt
│   │           │                   ├── ElapsedTimeUtil.kt
│   │           │                   ├── FavoriteButton.kt
│   │           │                   ├── HorizontalFilePreviewList.kt
│   │           │                   ├── MilkteaTheme.kt
│   │           │                   ├── RadioTile.kt
│   │           │                   ├── SensitiveIcon.kt
│   │           │                   ├── Spinner.kt
│   │           │                   ├── SwitchTile.kt
│   │           │                   ├── drive/
│   │           │                   │   ├── EditCaptionDialogLayout.kt
│   │           │                   │   └── EditFileNameDialogLayout.kt
│   │           │                   └── haptic/
│   │           │                       └── HapticFeedback.kt
│   │           └── res/
│   │               ├── values/
│   │               │   └── strings.xml
│   │               ├── values-ja-rJP/
│   │               │   └── strings.xml
│   │               └── values-zh/
│   │                   └── strings.xml
│   ├── common_navigation/
│   │   ├── .gitignore
│   │   ├── build.gradle
│   │   ├── consumer-rules.pro
│   │   ├── proguard-rules.pro
│   │   └── src/
│   │       └── main/
│   │           ├── AndroidManifest.xml
│   │           └── java/
│   │               └── net/
│   │                   └── pantasystem/
│   │                       └── milktea/
│   │                           └── common_navigation/
│   │                               ├── AccountSettingNavigation.kt
│   │                               ├── ActivityNavigation.kt
│   │                               ├── AntennaNavigation.kt
│   │                               ├── AuthorizationNavigation.kt
│   │                               ├── ChannelNavigation.kt
│   │                               ├── ClipNavigation.kt
│   │                               ├── DriveNavigation.kt
│   │                               ├── MainNavigation.kt
│   │                               ├── MediaNavigation.kt
│   │                               ├── MessageNavigation.kt
│   │                               ├── SearchAndSelectUserNavigation.kt
│   │                               ├── SearchNavigation.kt
│   │                               ├── TimelineMachineNavigation.kt
│   │                               ├── UserDetailNavigation.kt
│   │                               └── UserListNavigation.kt
│   ├── common_resource/
│   │   ├── .gitignore
│   │   ├── build.gradle
│   │   ├── consumer-rules.pro
│   │   ├── proguard-rules.pro
│   │   └── src/
│   │       └── main/
│   │           ├── AndroidManifest.xml
│   │           └── res/
│   │               ├── drawable/
│   │               │   ├── bottom_navigation_colors.xml
│   │               │   ├── ic_access_time_black_24dp.xml
│   │               │   ├── ic_account_circle_24px.xml
│   │               │   ├── ic_account_circle_40px.xml
│   │               │   ├── ic_account_circle_48px.xml
│   │               │   ├── ic_add_black_24dp.xml
│   │               │   ├── ic_add_circle_outline_black_24dp.xml
│   │               │   ├── ic_add_to_tab_24px.xml
│   │               │   ├── ic_arrow_back_black_24dp.xml
│   │               │   ├── ic_attach_file_black_24dp.xml
│   │               │   ├── ic_attachment_24px.xml
│   │               │   ├── ic_baseline_edit_calendar_24.xml
│   │               │   ├── ic_baseline_favorite_border_24.xml
│   │               │   ├── ic_baseline_hide_image_24.xml
│   │               │   ├── ic_baseline_image_24.xml
│   │               │   ├── ic_baseline_keyboard_arrow_down_24.xml
│   │               │   ├── ic_baseline_radio_24.xml
│   │               │   ├── ic_baseline_report_gmailerrorred_24.xml
│   │               │   ├── ic_baseline_report_problem_24.xml
│   │               │   ├── ic_baseline_translate_24.xml
│   │               │   ├── ic_call_received_black_24dp.xml
│   │               │   ├── ic_chat_bubble_outline_black_24dp.xml
│   │               │   ├── ic_check_black_24dp.xml
│   │               │   ├── ic_chevron_right_black_24dp.xml
│   │               │   ├── ic_clear_black_24dp.xml
│   │               │   ├── ic_cloud_black_24dp.xml
│   │               │   ├── ic_cloud_queue_black_24dp.xml
│   │               │   ├── ic_compass.xml
│   │               │   ├── ic_delete_black_24dp.xml
│   │               │   ├── ic_done_black_24dp.xml
│   │               │   ├── ic_drafts_black_24dp.xml
│   │               │   ├── ic_edit_black_24dp.xml
│   │               │   ├── ic_email_black_24dp.xml
│   │               │   ├── ic_expand_less_black_24dp.xml
│   │               │   ├── ic_expand_more_black_24dp.xml
│   │               │   ├── ic_folder_black_24dp.xml
│   │               │   ├── ic_folder_open_black_24dp.xml
│   │               │   ├── ic_follow.xml
│   │               │   ├── ic_format_list_bulleted_black_24dp.xml
│   │               │   ├── ic_format_quote_black_24dp.xml
│   │               │   ├── ic_groups.xml
│   │               │   ├── ic_history_black_24dp.xml
│   │               │   ├── ic_home_black_24dp.xml
│   │               │   ├── ic_info_black_24dp.xml
│   │               │   ├── ic_insert_emoticon_black_24dp.xml
│   │               │   ├── ic_insert_link_black_24dp.xml
│   │               │   ├── ic_keyboard_arrow_right_black_24dp.xml
│   │               │   ├── ic_keyboard_black_24dp.xml
│   │               │   ├── ic_language_black_24dp.xml
│   │               │   ├── ic_launcher_background.xml
│   │               │   ├── ic_light.xml
│   │               │   ├── ic_lightbulb_outline_black_24dp.xml
│   │               │   ├── ic_list_add_black_24dp.xml
│   │               │   ├── ic_lock_black_24dp.xml
│   │               │   ├── ic_mention.xml
│   │               │   ├── ic_menu_black_24dp.xml
│   │               │   ├── ic_menu_camera.xml
│   │               │   ├── ic_menu_gallery.xml
│   │               │   ├── ic_menu_manage.xml
│   │               │   ├── ic_menu_send.xml
│   │               │   ├── ic_menu_share.xml
│   │               │   ├── ic_menu_slideshow.xml
│   │               │   ├── ic_message_black_24dp.xml
│   │               │   ├── ic_mode_edit_black_24dp.xml
│   │               │   ├── ic_more_horiz_black_24dp.xml
│   │               │   ├── ic_more_vert_black_24dp.xml
│   │               │   ├── ic_music_note_black_24dp.xml
│   │               │   ├── ic_notifications_black_24dp.xml
│   │               │   ├── ic_notifications_fill_40px.xml
│   │               │   ├── ic_notifications_fill_48px.xml
│   │               │   ├── ic_notifications_none_black_24dp.xml
│   │               │   ├── ic_notifications_outlined_40px.xml
│   │               │   ├── ic_notifications_outlined_48px.xml
│   │               │   ├── ic_person_add_black_24dp.xml
│   │               │   ├── ic_person_black_24dp.xml
│   │               │   ├── ic_play_circle_outline_black_24dp.xml
│   │               │   ├── ic_poll_black_24dp.xml
│   │               │   ├── ic_re_note.xml
│   │               │   ├── ic_refresh_black_24dp.xml
│   │               │   ├── ic_remove_black_24dp.xml
│   │               │   ├── ic_remove_circle_outline_black_24dp.xml
│   │               │   ├── ic_remove_to_tab_24px.xml
│   │               │   ├── ic_reply_black_24dp.xml
│   │               │   ├── ic_save_black_24dp.xml
│   │               │   ├── ic_search_40px.xml
│   │               │   ├── ic_search_48px.xml
│   │               │   ├── ic_search_black_24dp.xml
│   │               │   ├── ic_selectable_drive.xml
│   │               │   ├── ic_selectable_file.xml
│   │               │   ├── ic_selectable_message.xml
│   │               │   ├── ic_selectable_notification.xml
│   │               │   ├── ic_settings_black_24dp.xml
│   │               │   ├── ic_sharp.xml
│   │               │   ├── ic_star.xml
│   │               │   ├── ic_star_black_24dp.xml
│   │               │   ├── ic_star_border_black_24dp.xml
│   │               │   ├── ic_star_state.xml
│   │               │   ├── ic_supervisor_account_black_24dp.xml
│   │               │   ├── ic_sync_alt_24px.xml
│   │               │   ├── ic_visibility_off_black_24dp.xml
│   │               │   ├── ic_zoom_out_map_black_24dp.xml
│   │               │   ├── shape_chip.xml
│   │               │   ├── shape_message_recipient.xml
│   │               │   ├── shape_message_self.xml
│   │               │   ├── shape_messages_badge.xml
│   │               │   ├── shape_normal_reaction_backgruond.xml
│   │               │   ├── shape_rounded_square_line.xml
│   │               │   ├── shape_selected_reaction_background.xml
│   │               │   ├── side_nav_bar.xml
│   │               │   └── tab_dot_background.xml
│   │               ├── menu/
│   │               │   ├── activity_auth_menu.xml
│   │               │   ├── activity_custom_app_menu.xml
│   │               │   ├── activity_main_drawer.xml
│   │               │   ├── activity_search_menu.xml
│   │               │   ├── activity_sign_in_menu.xml
│   │               │   ├── activity_user_menu.xml
│   │               │   ├── bottom_menu.xml
│   │               │   ├── main.xml
│   │               │   ├── menu_drive.xml
│   │               │   ├── menu_search.xml
│   │               │   ├── menu_user_list_detail.xml
│   │               │   ├── note_detail_menu.xml
│   │               │   ├── search_top_menu.xml
│   │               │   ├── tab_pager_menu.xml
│   │               │   └── tab_setting_menu.xml
│   │               ├── values/
│   │               │   ├── arrays.xml
│   │               │   ├── attrs.xml
│   │               │   ├── colors.xml
│   │               │   ├── dimens.xml
│   │               │   ├── ic_launcher_background.xml
│   │               │   ├── strings.xml
│   │               │   ├── styles.xml
│   │               │   ├── themes.xml
│   │               │   └── values.xml
│   │               ├── values-ja/
│   │               │   └── strings.xml
│   │               └── values-zh/
│   │                   └── strings.xml
│   ├── common_viewmodel/
│   │   ├── .gitignore
│   │   ├── build.gradle
│   │   ├── consumer-rules.pro
│   │   ├── proguard-rules.pro
│   │   └── src/
│   │       └── main/
│   │           ├── AndroidManifest.xml
│   │           └── java/
│   │               └── net/
│   │                   └── pantasystem/
│   │                       └── milktea/
│   │                           └── common_viewmodel/
│   │                               ├── CurrentPageableTimelineViewModel.kt
│   │                               ├── ScrollToTopViewModel.kt
│   │                               └── UserViewData.kt
│   ├── data/
│   │   ├── .gitignore
│   │   ├── build.gradle
│   │   ├── consumer-rules.pro
│   │   ├── objectbox-models/
│   │   │   ├── default.json
│   │   │   └── default.json.bak
│   │   ├── proguard-rules.pro
│   │   ├── schemas/
│   │   │   ├── net.pantasystem.milktea.data.infrastructure.DataBase/
│   │   │   │   ├── 10.json
│   │   │   │   ├── 11.json
│   │   │   │   ├── 12.json
│   │   │   │   ├── 13.json
│   │   │   │   ├── 14.json
│   │   │   │   ├── 15.json
│   │   │   │   ├── 16.json
│   │   │   │   ├── 17.json
│   │   │   │   ├── 18.json
│   │   │   │   ├── 19.json
│   │   │   │   ├── 20.json
│   │   │   │   ├── 21.json
│   │   │   │   ├── 22.json
│   │   │   │   ├── 23.json
│   │   │   │   ├── 24.json
│   │   │   │   ├── 25.json
│   │   │   │   ├── 26.json
│   │   │   │   ├── 27.json
│   │   │   │   ├── 28.json
│   │   │   │   ├── 29.json
│   │   │   │   ├── 3.json
│   │   │   │   ├── 30.json
│   │   │   │   ├── 31.json
│   │   │   │   ├── 32.json
│   │   │   │   ├── 33.json
│   │   │   │   ├── 34.json
│   │   │   │   ├── 35.json
│   │   │   │   ├── 36.json
│   │   │   │   ├── 37.json
│   │   │   │   ├── 38.json
│   │   │   │   ├── 39.json
│   │   │   │   ├── 4.json
│   │   │   │   ├── 40.json
│   │   │   │   ├── 41.json
│   │   │   │   ├── 42.json
│   │   │   │   ├── 43.json
│   │   │   │   ├── 44.json
│   │   │   │   ├── 45.json
│   │   │   │   ├── 46.json
│   │   │   │   ├── 47.json
│   │   │   │   ├── 48.json
│   │   │   │   ├── 49.json
│   │   │   │   ├── 5.json
│   │   │   │   ├── 50.json
│   │   │   │   ├── 51.json
│   │   │   │   ├── 52.json
│   │   │   │   ├── 53.json
│   │   │   │   ├── 54.json
│   │   │   │   ├── 55.json
│   │   │   │   ├── 56.json
│   │   │   │   ├── 57.json
│   │   │   │   ├── 58.json
│   │   │   │   ├── 59.json
│   │   │   │   ├── 6.json
│   │   │   │   ├── 60.json
│   │   │   │   ├── 61.json
│   │   │   │   ├── 62.json
│   │   │   │   ├── 63.json
│   │   │   │   ├── 64.json
│   │   │   │   ├── 65.json
│   │   │   │   ├── 66.json
│   │   │   │   ├── 67.json
│   │   │   │   ├── 68.json
│   │   │   │   ├── 69.json
│   │   │   │   ├── 7.json
│   │   │   │   ├── 70.json
│   │   │   │   ├── 71.json
│   │   │   │   ├── 72.json
│   │   │   │   ├── 73.json
│   │   │   │   ├── 74.json
│   │   │   │   ├── 8.json
│   │   │   │   └── 9.json
│   │   │   ├── net.pantasystem.milktea.data.model.DataBase/
│   │   │   │   ├── 10.json
│   │   │   │   ├── 11.json
│   │   │   │   ├── 12.json
│   │   │   │   ├── 3.json
│   │   │   │   ├── 4.json
│   │   │   │   ├── 5.json
│   │   │   │   ├── 6.json
│   │   │   │   ├── 7.json
│   │   │   │   ├── 8.json
│   │   │   │   └── 9.json
│   │   │   └── schemas/
│   │   │       └── jp.panta.misskeyandroidclient.model.DataBase/
│   │   │           ├── 10.json
│   │   │           ├── 11.json
│   │   │           ├── 12.json
│   │   │           ├── 3.json
│   │   │           ├── 4.json
│   │   │           ├── 5.json
│   │   │           ├── 6.json
│   │   │           ├── 7.json
│   │   │           ├── 8.json
│   │   │           └── 9.json
│   │   └── src/
│   │       ├── androidTest/
│   │       │   └── java/
│   │       │       └── net/
│   │       │           └── pantasystem/
│   │       │               └── milktea/
│   │       │                   └── data/
│   │       │                       └── infrastructure/
│   │       │                           ├── DatabaseMigrationTest.kt
│   │       │                           ├── image/
│   │       │                           │   └── ImageCacheRepositoryImplTest.kt
│   │       │                           ├── note/
│   │       │                           │   ├── timeline/
│   │       │                           │   │   └── TimelineCacheDAOTest.kt
│   │       │                           │   └── wordmute/
│   │       │                           │       └── WordFilterConfigRepositoryImplTest.kt
│   │       │                           └── settings/
│   │       │                               └── LocalConfigRepositoryImplTest.kt
│   │       ├── main/
│   │       │   ├── AndroidManifest.xml
│   │       │   └── java/
│   │       │       └── net/
│   │       │           └── pantasystem/
│   │       │               └── milktea/
│   │       │                   └── data/
│   │       │                       ├── api/
│   │       │                       │   ├── NodeInfoAPIBuilder.kt
│   │       │                       │   ├── mastodon/
│   │       │                       │   │   ├── MastodonAPIFactory.kt
│   │       │                       │   │   └── MastodonAPIProvider.kt
│   │       │                       │   └── misskey/
│   │       │                       │       └── MisskeyAPIProvider.kt
│   │       │                       ├── converters/
│   │       │                       │   ├── ClipDTOEntityConverter.kt
│   │       │                       │   ├── FilePropertyDTOEntityConverter.kt
│   │       │                       │   ├── GalleryPostDTOEntityConverter.kt
│   │       │                       │   ├── MastodonAccountDTOEntityConverter.kt
│   │       │                       │   ├── NoteDTOEntityConverter.kt
│   │       │                       │   ├── NotificationDTOEntityConverter.kt
│   │       │                       │   ├── TootDTOEntityConverter.kt
│   │       │                       │   └── UserDTOEntityConverter.kt
│   │       │                       ├── di/
│   │       │                       │   └── module/
│   │       │                       │       ├── AccountModule.kt
│   │       │                       │       ├── AntennaModule.kt
│   │       │                       │       ├── ApResolverModule.kt
│   │       │                       │       ├── BookmarkModule.kt
│   │       │                       │       ├── ChannelModule.kt
│   │       │                       │       ├── ClipModule.kt
│   │       │                       │       ├── CustomEmojiModule.kt
│   │       │                       │       ├── DbModule.kt
│   │       │                       │       ├── DriveDirectoryModule.kt
│   │       │                       │       ├── DriveFileModule.kt
│   │       │                       │       ├── FavoriteModule.kt
│   │       │                       │       ├── FileModule.kt
│   │       │                       │       ├── GalleryModule.kt
│   │       │                       │       ├── GetterModule.kt
│   │       │                       │       ├── GroupModule.kt
│   │       │                       │       ├── HashtagModule.kt
│   │       │                       │       ├── ImageCacheBindModule.kt
│   │       │                       │       ├── InstanceInfoModule.kt
│   │       │                       │       ├── InstanceTickerModule.kt
│   │       │                       │       ├── MarkerModule.kt
│   │       │                       │       ├── MastodonInstanceInfoModule.kt
│   │       │                       │       ├── MessagingModule.kt
│   │       │                       │       ├── MetaModule.kt
│   │       │                       │       ├── NodeInfoModule.kt
│   │       │                       │       ├── NoteModule.kt
│   │       │                       │       ├── NotificationModule.kt
│   │       │                       │       ├── ReactionModule.kt
│   │       │                       │       ├── RenoteMuteModule.kt
│   │       │                       │       ├── SearchModule.kt
│   │       │                       │       ├── SettingModule.kt
│   │       │                       │       ├── SocketModule.kt
│   │       │                       │       ├── UrlPreviewModule.kt
│   │       │                       │       ├── UserListModule.kt
│   │       │                       │       ├── UserModule.kt
│   │       │                       │       ├── UserNicknameModule.kt
│   │       │                       │       ├── WordFilterConfigModule.kt
│   │       │                       │       └── WordFilterModule.kt
│   │       │                       ├── infrastructure/
│   │       │                       │   ├── DataBase.kt
│   │       │                       │   ├── DateConverter.kt
│   │       │                       │   ├── MemoryCacheCleaner.kt
│   │       │                       │   ├── Migrations.kt
│   │       │                       │   ├── MisskeyEntityConverters.kt
│   │       │                       │   ├── TootEntityConverters.kt
│   │       │                       │   ├── account/
│   │       │                       │   │   ├── AuthImpl.kt
│   │       │                       │   │   ├── ClientIdRepositoryImpl.kt
│   │       │                       │   │   ├── SignOutUseCaseImpl.kt
│   │       │                       │   │   ├── converter.kt
│   │       │                       │   │   ├── db/
│   │       │                       │   │   │   ├── AccountDAO.kt
│   │       │                       │   │   │   ├── AccountRecord.kt
│   │       │                       │   │   │   ├── AccountRelation.kt
│   │       │                       │   │   │   ├── MediatorAccountRepository.kt
│   │       │                       │   │   │   └── RoomAccountRepository.kt
│   │       │                       │   │   └── page/
│   │       │                       │   │       └── db/
│   │       │                       │   │           ├── PageDAO.kt
│   │       │                       │   │           ├── PageRecord.kt
│   │       │                       │   │           ├── PageRecordParams.kt
│   │       │                       │   │           └── TimelinePageTypeConverter.kt
│   │       │                       │   ├── antenna/
│   │       │                       │   │   └── AntennaRepositoryImpl.kt
│   │       │                       │   ├── ap/
│   │       │                       │   │   └── ApResolverRepositoryImpl.kt
│   │       │                       │   ├── auth/
│   │       │                       │   │   ├── Authorization.kt
│   │       │                       │   │   ├── KeyStoreSystemEncryption.kt
│   │       │                       │   │   └── custom/
│   │       │                       │   │       ├── AccessToken.kt
│   │       │                       │   │       ├── CustomAuthBridge.kt
│   │       │                       │   │       └── CustomAuthStore.kt
│   │       │                       │   ├── channel/
│   │       │                       │   │   ├── ChannelAPIAdapter.kt
│   │       │                       │   │   ├── ChannelAPIAdapterWebImpl.kt
│   │       │                       │   │   ├── ChannelPagingModel.kt
│   │       │                       │   │   └── ChannelRepositoryImpl.kt
│   │       │                       │   ├── clip/
│   │       │                       │   │   └── ClipRepositoryImpl.kt
│   │       │                       │   ├── drive/
│   │       │                       │   │   ├── DriveDirectoryPagingStoreImpl.kt
│   │       │                       │   │   ├── DriveDirectoryRepositoryImpl.kt
│   │       │                       │   │   ├── DriveFileRecord.kt
│   │       │                       │   │   ├── DriveFileRecordDao.kt
│   │       │                       │   │   ├── DriveFileRepositoryImpl.kt
│   │       │                       │   │   ├── FilePaginator.kt
│   │       │                       │   │   ├── InMemoryFielPropertyDataSource.kt
│   │       │                       │   │   ├── InputStreamRequestBody.kt
│   │       │                       │   │   ├── MastodonOkHttpFileUploader.kt
│   │       │                       │   │   ├── MediatorFilePropertyDataSource.kt
│   │       │                       │   │   ├── MisskeyOkHttpDriveFileUploader.kt
│   │       │                       │   │   ├── UriRequestBody.kt
│   │       │                       │   │   └── uploaders.kt
│   │       │                       │   ├── emoji/
│   │       │                       │   │   ├── CustomEmojiApiAdapter.kt
│   │       │                       │   │   ├── CustomEmojiAspectRatioDAO.kt
│   │       │                       │   │   ├── CustomEmojiAspectRatioDataSourceImpl.kt
│   │       │                       │   │   ├── CustomEmojiAspectRatioEntity.kt
│   │       │                       │   │   ├── CustomEmojiCache.kt
│   │       │                       │   │   ├── CustomEmojiDAO.kt
│   │       │                       │   │   ├── CustomEmojiInserter.kt
│   │       │                       │   │   ├── CustomEmojiRecord.kt
│   │       │                       │   │   ├── CustomEmojiRepositoryImpl.kt
│   │       │                       │   │   ├── EmojiEventHandlerImpl.kt
│   │       │                       │   │   ├── UserEmojiConfigCache.kt
│   │       │                       │   │   └── UserEmojiConfigRepositoryImpl.kt
│   │       │                       │   ├── file/
│   │       │                       │   │   ├── CopyFileToAppDirRepositoryImpl.kt
│   │       │                       │   │   └── UriToAppFileUseCaseImpl.kt
│   │       │                       │   ├── filter/
│   │       │                       │   │   ├── MastodonWordFilterCache.kt
│   │       │                       │   │   ├── MastodonWordFilterRepositoryImpl.kt
│   │       │                       │   │   └── db/
│   │       │                       │   │       ├── MastodonFilterDao.kt
│   │       │                       │   │       └── MastodonWordFilterRecord.kt
│   │       │                       │   ├── gallery/
│   │       │                       │   │   ├── GalleryRepositoryImpl.kt
│   │       │                       │   │   ├── InMemoryGalleryDataSource.kt
│   │       │                       │   │   ├── MediatorGalleryPostPaginator.kt
│   │       │                       │   │   ├── gallery_posts_paginators.kt
│   │       │                       │   │   └── liked_gallery_posts_paginator.kt
│   │       │                       │   ├── group/
│   │       │                       │   │   ├── GroupDao.kt
│   │       │                       │   │   ├── GroupDataSourceImpl.kt
│   │       │                       │   │   ├── GroupRecord.kt
│   │       │                       │   │   └── GroupRepositoryImpl.kt
│   │       │                       │   ├── hashtag/
│   │       │                       │   │   └── HashtagRepositoryImpl.kt
│   │       │                       │   ├── image/
│   │       │                       │   │   ├── ImageCacheDAO.kt
│   │       │                       │   │   ├── ImageCacheEntity.kt
│   │       │                       │   │   └── ImageCacheRepositoryImpl.kt
│   │       │                       │   ├── instance/
│   │       │                       │   │   ├── FeatureEnablesImpl.kt
│   │       │                       │   │   ├── MastodonInstanceInfoCache.kt
│   │       │                       │   │   ├── MastodonInstanceInfoRepositoryImpl.kt
│   │       │                       │   │   ├── MetaCache.kt
│   │       │                       │   │   ├── MetaRepositoryImpl.kt
│   │       │                       │   │   ├── db/
│   │       │                       │   │   │   ├── InMemoryMetaDataSource.kt
│   │       │                       │   │   │   ├── InstanceInfoDao.kt
│   │       │                       │   │   │   ├── InstanceInfoRecord.kt
│   │       │                       │   │   │   ├── MastodonInstanceInfoDAO.kt
│   │       │                       │   │   │   ├── MastodonInstanceInfoRecord.kt
│   │       │                       │   │   │   ├── MediatorMetaDataSource.kt
│   │       │                       │   │   │   ├── MetaDAO.kt
│   │       │                       │   │   │   ├── MetaDTO.kt
│   │       │                       │   │   │   ├── MetaRelation.kt
│   │       │                       │   │   │   └── RoomMetaDataSource.kt
│   │       │                       │   │   ├── online/
│   │       │                       │   │   │   └── user/
│   │       │                       │   │   │       └── count/
│   │       │                       │   │   │           └── OnlineUserCountRepositoryImpl.kt
│   │       │                       │   │   └── ticker/
│   │       │                       │   │       ├── InstanceTickerRepositoryImpl.kt
│   │       │                       │   │       └── db/
│   │       │                       │   │           ├── InstanceTickerDAO.kt
│   │       │                       │   │           └── InstanceTickerRecord.kt
│   │       │                       │   ├── list/
│   │       │                       │   │   ├── UserListDao.kt
│   │       │                       │   │   ├── UserListRecord.kt
│   │       │                       │   │   └── UserListRepositoryWebAPIImpl.kt
│   │       │                       │   ├── markers/
│   │       │                       │   │   ├── MarkerCache.kt
│   │       │                       │   │   └── MarkerRepositoryImpl.kt
│   │       │                       │   ├── messaging/
│   │       │                       │   │   ├── MessageDataSource.kt
│   │       │                       │   │   ├── MessageObserverImpl.kt
│   │       │                       │   │   ├── MessagePagingStoreImpl.kt
│   │       │                       │   │   ├── MessageRelationGetterImpl.kt
│   │       │                       │   │   ├── MessageRepositoryImpl.kt
│   │       │                       │   │   └── MessagingRepositoryImpl.kt
│   │       │                       │   ├── nodeinfo/
│   │       │                       │   │   ├── NodeInfoCache.kt
│   │       │                       │   │   ├── NodeInfoFetcher.kt
│   │       │                       │   │   ├── NodeInfoRepositoryImpl.kt
│   │       │                       │   │   └── db/
│   │       │                       │   │       ├── NodeInfoDao.kt
│   │       │                       │   │       └── NodeInfoRecord.kt
│   │       │                       │   ├── note/
│   │       │                       │   │   ├── FavoriteNoteTimelinePagingStoreImpl.kt
│   │       │                       │   │   ├── MastodonTimelineStorePagingStoreImpl.kt
│   │       │                       │   │   ├── NoteCaptureAPIAdapterImpl.kt
│   │       │                       │   │   ├── NoteCaptureAPIWithAccountProvider.kt
│   │       │                       │   │   ├── NoteDataSourceAdder.kt
│   │       │                       │   │   ├── NoteEventReducer.kt
│   │       │                       │   │   ├── NoteStreamingImpl.kt
│   │       │                       │   │   ├── NoteTranslationStoreImpl.kt
│   │       │                       │   │   ├── PageParams.kt
│   │       │                       │   │   ├── ReplyStreamingImpl.kt
│   │       │                       │   │   ├── TimelinePagingStoreImpl.kt
│   │       │                       │   │   ├── TimelineScrollPositionRepositoryImpl.kt
│   │       │                       │   │   ├── TimelineStoreImpl.kt
│   │       │                       │   │   ├── UnusedPageReleaser.kt
│   │       │                       │   │   ├── bookmark/
│   │       │                       │   │   │   └── BookmarkRepositoryImpl.kt
│   │       │                       │   │   ├── draft/
│   │       │                       │   │   │   ├── DraftNoteRepositoryImpl.kt
│   │       │                       │   │   │   └── db/
│   │       │                       │   │   │       ├── DraftFileDTO.kt
│   │       │                       │   │   │       ├── DraftNoteDTO.kt
│   │       │                       │   │   │       ├── DraftNoteDao.kt
│   │       │                       │   │   │       ├── DraftNoteRelation.kt
│   │       │                       │   │   │       ├── DraftPollDTO.kt
│   │       │                       │   │   │       ├── PollChoiceDTO.kt
│   │       │                       │   │   │       └── UserIdDTO.kt
│   │       │                       │   │   ├── favorite/
│   │       │                       │   │   │   ├── FavoriteAPIAdapter.kt
│   │       │                       │   │   │   └── FavoriteRepositoryImpl.kt
│   │       │                       │   │   ├── impl/
│   │       │                       │   │   │   ├── DraftNoteServiceImpl.kt
│   │       │                       │   │   │   ├── InMemoryNoteDataSource.kt
│   │       │                       │   │   │   ├── NoteApiAdapter.kt
│   │       │                       │   │   │   ├── NoteRepositoryImpl.kt
│   │       │                       │   │   │   ├── PostNoteTask.kt
│   │       │                       │   │   │   ├── ThreadContextApiAdapter.kt
│   │       │                       │   │   │   └── sqlite/
│   │       │                       │   │   │       ├── NoteDAO.kt
│   │       │                       │   │   │       ├── NoteEntity.kt
│   │       │                       │   │   │       ├── NoteThreadDAO.kt
│   │       │                       │   │   │       ├── NoteThreadEntity.kt
│   │       │                       │   │   │       └── SQLiteNoteDataSource.kt
│   │       │                       │   │   ├── reaction/
│   │       │                       │   │   │   └── impl/
│   │       │                       │   │   │       ├── ReactionAuthorDAO.kt
│   │       │                       │   │   │       ├── ReactionAuthorEntity.kt
│   │       │                       │   │   │       ├── ReactionRepositoryImpl.kt
│   │       │                       │   │   │       ├── ReactionUserRepositoryImpl.kt
│   │       │                       │   │   │       ├── history/
│   │       │                       │   │   │       │   ├── FrequentlyReactionAndUnFollowedUserRecord.kt
│   │       │                       │   │   │       │   ├── ReactionHistoryCountRecord.kt
│   │       │                       │   │   │       │   ├── ReactionHistoryDao.kt
│   │       │                       │   │   │       │   ├── ReactionHistoryRecord.kt
│   │       │                       │   │   │       │   └── ReactionHistoryRepositoryImpl.kt
│   │       │                       │   │   │       └── usercustom/
│   │       │                       │   │   │           ├── ReactionUserSetting.kt
│   │       │                       │   │   │           └── ReactionUserSettingDao.kt
│   │       │                       │   │   ├── renote/
│   │       │                       │   │   │   └── RenotesPagingService.kt
│   │       │                       │   │   ├── timeline/
│   │       │                       │   │   │   ├── TimelineCacheDAO.kt
│   │       │                       │   │   │   ├── TimelineFetcher.kt
│   │       │                       │   │   │   ├── TimelineFetcherImpl.kt
│   │       │                       │   │   │   ├── TimelineItemEntity.kt
│   │       │                       │   │   │   ├── TimelineLocalDataSource.kt
│   │       │                       │   │   │   ├── TimelineLocalDataSourceImpl.kt
│   │       │                       │   │   │   ├── TimelineRepositoryImpl.kt
│   │       │                       │   │   │   └── favorite/
│   │       │                       │   │   │       └── FavoriteTimelineRepositoryImpl.kt
│   │       │                       │   │   └── wordmute/
│   │       │                       │   │       ├── WordFilterConditionRecord.kt
│   │       │                       │   │       ├── WordFilterConfigCache.kt
│   │       │                       │   │       ├── WordFilterConfigDao.kt
│   │       │                       │   │       └── WordFilterConfigRepositoryImpl.kt
│   │       │                       │   ├── notification/
│   │       │                       │   │   ├── db/
│   │       │                       │   │   │   ├── AccountNotificationCount.kt
│   │       │                       │   │   │   ├── NotificationCacheDAO.kt
│   │       │                       │   │   │   ├── NotificationEntity.kt
│   │       │                       │   │   │   ├── NotificationJsonCacheRecord.kt
│   │       │                       │   │   │   ├── NotificationJsonCacheRecordDAO.kt
│   │       │                       │   │   │   ├── NotificationTimelineEntity.kt
│   │       │                       │   │   │   ├── UnreadNotification.kt
│   │       │                       │   │   │   └── UnreadNotificationDAO.kt
│   │       │                       │   │   └── impl/
│   │       │                       │   │       ├── MediatorNotificationDataSource.kt
│   │       │                       │   │       ├── NotificationCacheAdder.kt
│   │       │                       │   │       ├── NotificationPagingStoreImpl.kt
│   │       │                       │   │       ├── NotificationRepositoryImpl.kt
│   │       │                       │   │       ├── NotificationStoreImpl.kt
│   │       │                       │   │       ├── NotificationStreamingImpl.kt
│   │       │                       │   │       └── NotificationTimelineRepositoryImpl.kt
│   │       │                       │   ├── report/
│   │       │                       │   │   └── ReportRepositoryImpl.kt
│   │       │                       │   ├── search/
│   │       │                       │   │   ├── SearchHistoryDao.kt
│   │       │                       │   │   ├── SearchHistoryRecord.kt
│   │       │                       │   │   └── SearchHistoryRepositoryImpl.kt
│   │       │                       │   ├── settings/
│   │       │                       │   │   ├── Config.kt
│   │       │                       │   │   ├── LocalConfigRepository.kt
│   │       │                       │   │   └── Theme.kt
│   │       │                       │   ├── streaming/
│   │       │                       │   │   ├── MediatorMainEventDispatcher.kt
│   │       │                       │   │   ├── StreamingMainEventDispatcher.kt
│   │       │                       │   │   ├── StreamingMainMessageEventDispatcher.kt
│   │       │                       │   │   ├── StreamingMainNotificationEventDispatcher.kt
│   │       │                       │   │   ├── StreamingMainUserEventDispatcher.kt
│   │       │                       │   │   └── socket_state.kt
│   │       │                       │   ├── sw/
│   │       │                       │   │   └── register/
│   │       │                       │   │       ├── DeviceTokenRepositoryImpl.kt
│   │       │                       │   │       ├── EndpointBuilder.kt
│   │       │                       │   │       ├── SubscriptionRegistrationImpl.kt
│   │       │                       │   │       └── SubscriptionUnRegistration.kt
│   │       │                       │   ├── url/
│   │       │                       │   │   ├── MisskeyUrlPreviewStore.kt
│   │       │                       │   │   ├── RetrofitMisskeyUrlPreview.kt
│   │       │                       │   │   ├── UrlPreviewMediatorStore.kt
│   │       │                       │   │   ├── UrlPreviewStoreFactory.kt
│   │       │                       │   │   ├── UrlPreviewStoreProvider.kt
│   │       │                       │   │   └── db/
│   │       │                       │   │       ├── UrlPreviewDAO.kt
│   │       │                       │   │       └── UrlPreviewRecord.kt
│   │       │                       │   └── user/
│   │       │                       │       ├── FollowFollowerPagingModel.kt
│   │       │                       │       ├── FollowRequestApiAdapter.kt
│   │       │                       │       ├── FollowRequestRepositoryImpl.kt
│   │       │                       │       ├── InMemoryUserDataSource.kt
│   │       │                       │       ├── MediatorUserDataSource.kt
│   │       │                       │       ├── UserActionResult.kt
│   │       │                       │       ├── UserApiAdapter.kt
│   │       │                       │       ├── UserNicknameDAO.kt
│   │       │                       │       ├── UserNicknameRepositoryOnMemoryImpl.kt
│   │       │                       │       ├── UserNicknameRepositorySQLiteImpl.kt
│   │       │                       │       ├── UserReactionPagingStoreImpl.kt
│   │       │                       │       ├── UserRepositoryImpl.kt
│   │       │                       │       ├── block/
│   │       │                       │       │   ├── BlockApiAdapter.kt
│   │       │                       │       │   └── BlockRepositoryImpl.kt
│   │       │                       │       ├── db/
│   │       │                       │       │   ├── UserDao.kt
│   │       │                       │       │   └── UserRecord.kt
│   │       │                       │       ├── follow/
│   │       │                       │       │   ├── FollowApiAdapter.kt
│   │       │                       │       │   └── FollowRepositoryImpl.kt
│   │       │                       │       ├── mute/
│   │       │                       │       │   ├── MuteApiAdapter.kt
│   │       │                       │       │   └── MuteRepositoryImpl.kt
│   │       │                       │       └── renote/
│   │       │                       │           └── mute/
│   │       │                       │               ├── FindAllRemoteRenoteMutes.kt
│   │       │                       │               ├── IsSupportRenoteMuteInstance.kt
│   │       │                       │               ├── RenoteMuteApiAdapter.kt
│   │       │                       │               ├── RenoteMuteCache.kt
│   │       │                       │               ├── RenoteMuteRepositoryImpl.kt
│   │       │                       │               ├── UnPushedRenoteMutesDiffFilter.kt
│   │       │                       │               ├── db/
│   │       │                       │               │   ├── RenoteMuteDao.kt
│   │       │                       │               │   └── RenoteMuteRecord.kt
│   │       │                       │               └── delegate/
│   │       │                       │                   ├── CreateRenoteMuteAndPushToRemoteDelegate.kt
│   │       │                       │                   ├── FindRenoteMuteAndUpdateMemCacheDelegate.kt
│   │       │                       │                   └── SyncRenoteMuteDelegate.kt
│   │       │                       └── streaming/
│   │       │                           ├── ChannelAPIWithAccountProvider.kt
│   │       │                           ├── SocketWithAccountProvider.kt
│   │       │                           ├── StreamingAPIProvider.kt
│   │       │                           └── impl/
│   │       │                               └── SocketWithAccountProviderImpl.kt
│   │       └── test/
│   │           └── java/
│   │               └── net/
│   │                   └── pantasystem/
│   │                       └── milktea/
│   │                           ├── api/
│   │                           │   ├── milktea/
│   │                           │   │   └── InstanceInfoResponseTest.kt
│   │                           │   └── misskey/
│   │                           │       └── notes/
│   │                           │           ├── CreateNoteTest.kt
│   │                           │           └── PollDTOTest.kt
│   │                           └── data/
│   │                               ├── converters/
│   │                               │   ├── NoteDTOEntityConverterTest.kt
│   │                               │   └── UserDTOEntityConverterTest.kt
│   │                               └── infrastructure/
│   │                                   ├── account/
│   │                                   │   ├── db/
│   │                                   │   │   └── AccountInstanceTypeConverterTest.kt
│   │                                   │   └── page/
│   │                                   │       └── db/
│   │                                   │           └── PageRecordParamsTest.kt
│   │                                   ├── instance/
│   │                                   │   └── FeatureEnablesImplTest.kt
│   │                                   ├── nodeinfo/
│   │                                   │   ├── NodeInfoFetcherImplTest.kt
│   │                                   │   └── NodeInfoRepositoryImplTest.kt
│   │                                   ├── note/
│   │                                   │   ├── NoteEventReducerKtTest.kt
│   │                                   │   ├── UnusedPageReleaserTest.kt
│   │                                   │   └── impl/
│   │                                   │       └── InMemoryNoteDataSourceTest.kt
│   │                                   ├── settings/
│   │                                   │   ├── ConfigKtTest.kt
│   │                                   │   ├── KeysKtTest.kt
│   │                                   │   └── ThemeKtTest.kt
│   │                                   └── user/
│   │                                       └── renote/
│   │                                           └── mute/
│   │                                               ├── FindAllRemoteRenoteMutesTest.kt
│   │                                               ├── RenoteMuteCacheTest.kt
│   │                                               ├── RenoteMuteRepositoryImplTest.kt
│   │                                               ├── UnPushedRenoteMutesDiffFilterTest.kt
│   │                                               ├── db/
│   │                                               │   └── RenoteMuteRecordTest.kt
│   │                                               └── delegate/
│   │                                                   ├── CreateRenoteMuteAndPushToRemoteDelegateTest.kt
│   │                                                   ├── FindRenoteMuteAndUpdateMemCacheDelegateTest.kt
│   │                                                   └── SyncRenoteMuteDelegateImplTest.kt
│   ├── features/
│   │   ├── account/
│   │   │   ├── .gitignore
│   │   │   ├── build.gradle
│   │   │   ├── consumer-rules.pro
│   │   │   ├── proguard-rules.pro
│   │   │   └── src/
│   │   │       └── main/
│   │   │           ├── AndroidManifest.xml
│   │   │           ├── java/
│   │   │           │   └── net/
│   │   │           │       └── pantasystem/
│   │   │           │           └── milktea/
│   │   │           │               └── account/
│   │   │           │                   ├── AccountFragment.kt
│   │   │           │                   ├── AccountInfoLayout.kt
│   │   │           │                   ├── AccountScreenViewModel.kt
│   │   │           │                   ├── AccountTabFragment.kt
│   │   │           │                   ├── AccountTabPagerAdapter.kt
│   │   │           │                   └── AccountTabViewModel.kt
│   │   │           └── res/
│   │   │               └── layout/
│   │   │                   └── fragment_account_tab.xml
│   │   ├── antenna/
│   │   │   ├── .gitignore
│   │   │   ├── build.gradle
│   │   │   ├── consumer-rules.pro
│   │   │   ├── proguard-rules.pro
│   │   │   └── src/
│   │   │       └── main/
│   │   │           ├── AndroidManifest.xml
│   │   │           ├── java/
│   │   │           │   └── net/
│   │   │           │       └── pantasystem/
│   │   │           │           └── milktea/
│   │   │           │               └── antenna/
│   │   │           │                   ├── AntennaEditorActivity.kt
│   │   │           │                   ├── AntennaEditorFragment.kt
│   │   │           │                   ├── AntennaListActivity.kt
│   │   │           │                   ├── AntennaListAdapter.kt
│   │   │           │                   ├── AntennaListFragment.kt
│   │   │           │                   ├── AntennaPagedStateHelper.kt
│   │   │           │                   └── viewmodel/
│   │   │           │                       ├── AntennaEditorViewModel.kt
│   │   │           │                       └── AntennaListViewModel.kt
│   │   │           └── res/
│   │   │               └── layout/
│   │   │                   ├── activity_antenna_editor.xml
│   │   │                   ├── activity_antenna_list.xml
│   │   │                   ├── fragment_antenna_editor.xml
│   │   │                   ├── fragment_antenna_list.xml
│   │   │                   └── item_antenna.xml
│   │   ├── auth/
│   │   │   ├── .gitignore
│   │   │   ├── build.gradle
│   │   │   ├── consumer-rules.pro
│   │   │   ├── proguard-rules.pro
│   │   │   └── src/
│   │   │       ├── main/
│   │   │       │   ├── AndroidManifest.xml
│   │   │       │   ├── java/
│   │   │       │   │   └── net/
│   │   │       │   │       └── pantasystem/
│   │   │       │   │           └── milktea/
│   │   │       │   │               └── auth/
│   │   │       │   │                   ├── AuthApprovedScreen.kt
│   │   │       │   │                   ├── AuthFormScreen.kt
│   │   │       │   │                   ├── AuthScreen.kt
│   │   │       │   │                   ├── AuthorizationActivity.kt
│   │   │       │   │                   ├── InstanceInfoCard.kt
│   │   │       │   │                   ├── JoinMilkteaActivity.kt
│   │   │       │   │                   ├── JoinMilkteaScreen.kt
│   │   │       │   │                   ├── SignUpActivity.kt
│   │   │       │   │                   ├── SignUpScreen.kt
│   │   │       │   │                   ├── Waiting4ApproveScreen.kt
│   │   │       │   │                   ├── WebViewAuthActivity.kt
│   │   │       │   │                   ├── di/
│   │   │       │   │                   │   └── module/
│   │   │       │   │                   │       └── NavigationModule.kt
│   │   │       │   │                   ├── suggestions/
│   │   │       │   │                   │   └── InstanceSuggestionsPagingModel.kt
│   │   │       │   │                   └── viewmodel/
│   │   │       │   │                       ├── Permissions.kt
│   │   │       │   │                       ├── SignUpViewModel.kt
│   │   │       │   │                       └── app/
│   │   │       │   │                           ├── AppAuthViewModel.kt
│   │   │       │   │                           ├── AuthStateHelper.kt
│   │   │       │   │                           ├── GetAccessToken.kt
│   │   │       │   │                           └── UIState.kt
│   │   │       │   └── res/
│   │   │       │       └── layout/
│   │   │       │           └── activity_web_view_auth.xml
│   │   │       └── test/
│   │   │           └── java/
│   │   │               └── net/
│   │   │                   └── pantasystem/
│   │   │                       └── milktea/
│   │   │                           └── auth/
│   │   │                               └── viewmodel/
│   │   │                                   └── app/
│   │   │                                       └── AuthUserInputStateTest.kt
│   │   ├── channel/
│   │   │   ├── .gitignore
│   │   │   ├── build.gradle
│   │   │   ├── consumer-rules.pro
│   │   │   ├── proguard-rules.pro
│   │   │   └── src/
│   │   │       └── main/
│   │   │           ├── AndroidManifest.xml
│   │   │           └── java/
│   │   │               └── net/
│   │   │                   └── pantasystem/
│   │   │                       └── milktea/
│   │   │                           └── channel/
│   │   │                               ├── ChannelActivity.kt
│   │   │                               ├── ChannelCard.kt
│   │   │                               ├── ChannelDetailScreen.kt
│   │   │                               ├── ChannelDetailViewModel.kt
│   │   │                               ├── ChannelListStatePage.kt
│   │   │                               ├── ChannelScreen.kt
│   │   │                               ├── ChannelViewModel.kt
│   │   │                               └── di/
│   │   │                                   └── module/
│   │   │                                       └── NavigationModule.kt
│   │   ├── clip/
│   │   │   ├── .gitignore
│   │   │   ├── build.gradle
│   │   │   ├── consumer-rules.pro
│   │   │   ├── proguard-rules.pro
│   │   │   └── src/
│   │   │       └── main/
│   │   │           ├── AndroidManifest.xml
│   │   │           └── java/
│   │   │               └── net/
│   │   │                   └── pantasystem/
│   │   │                       └── milktea/
│   │   │                           └── clip/
│   │   │                               ├── ClipDetailActivity.kt
│   │   │                               ├── ClipListActivity.kt
│   │   │                               ├── ClipListScreen.kt
│   │   │                               ├── ClipListViewModel.kt
│   │   │                               ├── ClipTile.kt
│   │   │                               └── NavigationModule.kt
│   │   ├── drive/
│   │   │   ├── .gitignore
│   │   │   ├── build.gradle
│   │   │   ├── consumer-rules.pro
│   │   │   ├── proguard-rules.pro
│   │   │   └── src/
│   │   │       └── main/
│   │   │           ├── AndroidManifest.xml
│   │   │           ├── java/
│   │   │           │   └── net/
│   │   │           │       └── pantasystem/
│   │   │           │           └── milktea/
│   │   │           │               └── drive/
│   │   │           │                   ├── CreateFolderDialog.kt
│   │   │           │                   ├── DirectoryListScreen.kt
│   │   │           │                   ├── DriveActivity.kt
│   │   │           │                   ├── DriveFileCard.kt
│   │   │           │                   ├── DriveFileScreen.kt
│   │   │           │                   ├── DriveScreen.kt
│   │   │           │                   ├── FileActionDropdownMenu.kt
│   │   │           │                   ├── FilePropertyGridItem.kt
│   │   │           │                   ├── FileUtils.kt
│   │   │           │                   ├── di/
│   │   │           │                   │   └── module/
│   │   │           │                   │       └── NavigationModule.kt
│   │   │           │                   └── viewmodel/
│   │   │           │                       ├── DriveUiStateBuilder.kt
│   │   │           │                       ├── DriveViewModel.kt
│   │   │           │                       └── FileViewData.kt
│   │   │           └── res/
│   │   │               └── layout/
│   │   │                   └── dialog_create_folder.xml
│   │   ├── favorite/
│   │   │   ├── .gitignore
│   │   │   ├── build.gradle
│   │   │   ├── consumer-rules.pro
│   │   │   ├── proguard-rules.pro
│   │   │   └── src/
│   │   │       └── main/
│   │   │           ├── AndroidManifest.xml
│   │   │           ├── java/
│   │   │           │   └── net/
│   │   │           │       └── pantasystem/
│   │   │           │           └── milktea/
│   │   │           │               └── favorite/
│   │   │           │                   └── FavoriteActivity.kt
│   │   │           └── res/
│   │   │               └── layout/
│   │   │                   └── activity_favorite.xml
│   │   ├── gallery/
│   │   │   ├── .gitignore
│   │   │   ├── build.gradle
│   │   │   ├── consumer-rules.pro
│   │   │   ├── proguard-rules.pro
│   │   │   └── src/
│   │   │       └── main/
│   │   │           ├── AndroidManifest.xml
│   │   │           ├── java/
│   │   │           │   └── net/
│   │   │           │       └── pantasystem/
│   │   │           │           └── milktea/
│   │   │           │               └── gallery/
│   │   │           │                   ├── GalleryEditorFragment.kt
│   │   │           │                   ├── GalleryEditorPage.kt
│   │   │           │                   ├── GalleryPostCard.kt
│   │   │           │                   ├── GalleryPostCardList.kt
│   │   │           │                   ├── GalleryPostTabFragment.kt
│   │   │           │                   ├── GalleryPostsActivity.kt
│   │   │           │                   ├── GalleryPostsFragment.kt
│   │   │           │                   ├── PickedImagePreview.kt
│   │   │           │                   ├── ThumbnailPreview.kt
│   │   │           │                   └── viewmodel/
│   │   │           │                       ├── GalleryEditorViewModel.kt
│   │   │           │                       ├── GalleryFavoriteable.kt
│   │   │           │                       ├── GalleryPostActionViewModel.kt
│   │   │           │                       ├── GalleryPostUiState.kt
│   │   │           │                       └── GalleryPostsViewModel.kt
│   │   │           └── res/
│   │   │               ├── drawable/
│   │   │               │   └── ic_baseline_add_photo_alternate_24.xml
│   │   │               └── layout/
│   │   │                   ├── activity_gallery_posts.xml
│   │   │                   └── fragment_gallery_post_tab.xml
│   │   ├── group/
│   │   │   ├── .gitignore
│   │   │   ├── build.gradle
│   │   │   ├── consumer-rules.pro
│   │   │   ├── proguard-rules.pro
│   │   │   └── src/
│   │   │       └── main/
│   │   │           ├── AndroidManifest.xml
│   │   │           └── java/
│   │   │               └── net/
│   │   │                   └── pantasystem/
│   │   │                       └── milktea/
│   │   │                           └── group/
│   │   │                               ├── GroupActivity.kt
│   │   │                               ├── GroupCard.kt
│   │   │                               ├── GroupCardListPage.kt
│   │   │                               ├── GroupDetailPage.kt
│   │   │                               ├── GroupDetailStatePage.kt
│   │   │                               ├── GroupDetailUiStateBuilder.kt
│   │   │                               ├── GroupDetailViewModel.kt
│   │   │                               ├── GroupEditorDialog.kt
│   │   │                               ├── GroupListViewModel.kt
│   │   │                               └── GroupMemberCard.kt
│   │   ├── media/
│   │   │   ├── .gitignore
│   │   │   ├── build.gradle
│   │   │   ├── consumer-rules.pro
│   │   │   ├── proguard-rules.pro
│   │   │   └── src/
│   │   │       └── main/
│   │   │           ├── AndroidManifest.xml
│   │   │           ├── java/
│   │   │           │   └── net/
│   │   │           │       └── pantasystem/
│   │   │           │           └── milktea/
│   │   │           │               └── media/
│   │   │           │                   ├── File.kt
│   │   │           │                   ├── ImageFragment.kt
│   │   │           │                   ├── ImageViewModel.kt
│   │   │           │                   ├── MediaActivity.kt
│   │   │           │                   ├── MediaPagerAdapter.kt
│   │   │           │                   ├── MediaViewModel.kt
│   │   │           │                   ├── PhotoViewViewPager.kt
│   │   │           │                   ├── PlayerFragment.kt
│   │   │           │                   ├── RemoteFileDownloadWorkManager.kt
│   │   │           │                   ├── SwipeFinishLayout.kt
│   │   │           │                   └── di/
│   │   │           │                       └── module/
│   │   │           │                           └── NavigationModule.kt
│   │   │           └── res/
│   │   │               ├── drawable/
│   │   │               │   └── ic_file_download_black_24dp.xml
│   │   │               ├── layout/
│   │   │               │   ├── activity_media.xml
│   │   │               │   ├── fragment_image.xml
│   │   │               │   └── fragment_player.xml
│   │   │               └── menu/
│   │   │                   └── menu_media.xml
│   │   ├── messaging/
│   │   │   ├── .gitignore
│   │   │   ├── build.gradle
│   │   │   ├── consumer-rules.pro
│   │   │   ├── proguard-rules.pro
│   │   │   └── src/
│   │   │       └── main/
│   │   │           ├── AndroidManifest.xml
│   │   │           ├── java/
│   │   │           │   └── net/
│   │   │           │       └── pantasystem/
│   │   │           │           └── milktea/
│   │   │           │               └── messaging/
│   │   │           │                   ├── MessageActivity.kt
│   │   │           │                   ├── MessageBubble.kt
│   │   │           │                   ├── MessageFragment.kt
│   │   │           │                   ├── MessageHistoryCard.kt
│   │   │           │                   ├── MessageHistoryScreen.kt
│   │   │           │                   ├── MessageScreen.kt
│   │   │           │                   ├── MessagingHistoryFragment.kt
│   │   │           │                   ├── MessagingListActivity.kt
│   │   │           │                   ├── di/
│   │   │           │                   │   └── NavigationModule.kt
│   │   │           │                   └── viewmodel/
│   │   │           │                       ├── MessageEditorViewModel.kt
│   │   │           │                       ├── MessageHistoryViewModel.kt
│   │   │           │                       └── MessageViewModel.kt
│   │   │           └── res/
│   │   │               └── layout/
│   │   │                   ├── activity_message.xml
│   │   │                   ├── activity_messaging_list.xml
│   │   │                   └── fragment_messaging_history.xml
│   │   ├── note/
│   │   │   ├── .gitignore
│   │   │   ├── CustomEmojiCompleteAdapter.kt
│   │   │   ├── build.gradle
│   │   │   ├── consumer-rules.pro
│   │   │   ├── proguard-rules.pro
│   │   │   └── src/
│   │   │       ├── main/
│   │   │       │   ├── AndroidManifest.xml
│   │   │       │   ├── java/
│   │   │       │   │   └── net/
│   │   │       │   │       └── pantasystem/
│   │   │       │   │           └── milktea/
│   │   │       │   │               └── note/
│   │   │       │   │                   ├── DraftNotesActivity.kt
│   │   │       │   │                   ├── EmojiPickerUiState.kt
│   │   │       │   │                   ├── NoteDetailActivity.kt
│   │   │       │   │                   ├── NoteEditorActivity.kt
│   │   │       │   │                   ├── clip/
│   │   │       │   │                   │   ├── ToggleAddNoteToClipDialog.kt
│   │   │       │   │                   │   ├── ToggleAddNoteToClipDialogLayout.kt
│   │   │       │   │                   │   ├── ToggleAddNoteToClipDialogViewModel.kt
│   │   │       │   │                   │   └── ToggleAddNoteToClipTile.kt
│   │   │       │   │                   ├── compose/
│   │   │       │   │                   │   ├── AutoCollapsingLayout.kt
│   │   │       │   │                   │   ├── ComposeTimeline.kt
│   │   │       │   │                   │   └── NoteCard.kt
│   │   │       │   │                   ├── detail/
│   │   │       │   │                   │   ├── NoteChildConversationAdapter.kt
│   │   │       │   │                   │   ├── NoteDetailAccountSwitchDialog.kt
│   │   │       │   │                   │   ├── NoteDetailAdapter.kt
│   │   │       │   │                   │   ├── NoteDetailFragment.kt
│   │   │       │   │                   │   ├── NoteDetailPagerFragment.kt
│   │   │       │   │                   │   ├── pager/
│   │   │       │   │                   │   │   └── NoteDetailViewPagerAdapter.kt
│   │   │       │   │                   │   └── viewmodel/
│   │   │       │   │                   │       ├── NoteConversationViewData.kt
│   │   │       │   │                   │       ├── NoteDetailNotesFlowBuilder.kt
│   │   │       │   │                   │       ├── NoteDetailPagerViewModel.kt
│   │   │       │   │                   │       ├── NoteDetailViewData.kt
│   │   │       │   │                   │       └── NoteDetailViewModel.kt
│   │   │       │   │                   ├── dialog/
│   │   │       │   │                   │   ├── ConfirmDeleteAndEditNoteDialog.kt
│   │   │       │   │                   │   └── ConfirmDeleteNoteDialog.kt
│   │   │       │   │                   ├── draft/
│   │   │       │   │                   │   ├── DraftNoteCard.kt
│   │   │       │   │                   │   ├── DraftNotesFragment.kt
│   │   │       │   │                   │   ├── DraftNotesScreen.kt
│   │   │       │   │                   │   └── viewmodel/
│   │   │       │   │                   │       └── DraftNotesViewModel.kt
│   │   │       │   │                   ├── editor/
│   │   │       │   │                   │   ├── ConfirmSaveAsDraftDialog.kt
│   │   │       │   │                   │   ├── CustomEmojiCompleteAdapter.kt
│   │   │       │   │                   │   ├── EmojiAutoCompleteTextField.kt
│   │   │       │   │                   │   ├── NoteEditorAddressSection.kt
│   │   │       │   │                   │   ├── NoteEditorFileSizeWarningDialog.kt
│   │   │       │   │                   │   ├── NoteEditorReplyPreview.kt
│   │   │       │   │                   │   ├── NoteEditorScheduleSection.kt
│   │   │       │   │                   │   ├── NoteEditorScreen.kt
│   │   │       │   │                   │   ├── NoteEditorTextInputSection.kt
│   │   │       │   │                   │   ├── NoteEditorToolbar.kt
│   │   │       │   │                   │   ├── NoteEditorToolbarBinding.kt
│   │   │       │   │                   │   ├── NoteEditorUserActionMenuLayout.kt
│   │   │       │   │                   │   ├── NoteVisibilityIconHelper.kt
│   │   │       │   │                   │   ├── ReservationPostDatePickerDialog.kt
│   │   │       │   │                   │   ├── ReservationPostTimePickerDialog.kt
│   │   │       │   │                   │   ├── SimpleEditorFragment.kt
│   │   │       │   │                   │   ├── UriImageHelper.kt
│   │   │       │   │                   │   ├── account/
│   │   │       │   │                   │   │   └── NoteEditorSwitchAccountDialog.kt
│   │   │       │   │                   │   ├── file/
│   │   │       │   │                   │   │   ├── EditFileCaptionDialog.kt
│   │   │       │   │                   │   │   └── EditFileNameDialog.kt
│   │   │       │   │                   │   ├── note_file_preview.kt
│   │   │       │   │                   │   ├── poll/
│   │   │       │   │                   │   │   ├── PollDatePickerDialog.kt
│   │   │       │   │                   │   │   ├── PollEditorFragment.kt
│   │   │       │   │                   │   │   ├── PollEditorLayout.kt
│   │   │       │   │                   │   │   └── PollTimePickerDialog.kt
│   │   │       │   │                   │   ├── viewmodel/
│   │   │       │   │                   │   │   ├── NoteEditorFilePreviewSourcesMapper.kt
│   │   │       │   │                   │   │   ├── NoteEditorSavedHandlerHelper.kt
│   │   │       │   │                   │   │   ├── NoteEditorSwitchAccountExecutor.kt
│   │   │       │   │                   │   │   ├── NoteEditorUiState.kt
│   │   │       │   │                   │   │   ├── NoteEditorUiStateBuilder.kt
│   │   │       │   │                   │   │   ├── NoteEditorViewModel.kt
│   │   │       │   │                   │   │   └── NoteEditorVisibilityCombiner.kt
│   │   │       │   │                   │   └── visibility/
│   │   │       │   │                   │       ├── ReactionAcceptanceSelection.kt
│   │   │       │   │                   │       ├── VisibilityChannelSelection.kt
│   │   │       │   │                   │       ├── VisibilityDialogSectionTitles.kt
│   │   │       │   │                   │       ├── VisibilityResource.kt
│   │   │       │   │                   │       ├── VisibilitySelectionDialogV2.kt
│   │   │       │   │                   │       └── VisibilitySelectionTile.kt
│   │   │       │   │                   ├── emojis/
│   │   │       │   │                   │   ├── AddEmojiToUserConfigDialog.kt
│   │   │       │   │                   │   ├── CustomEmojiPickerDialog.kt
│   │   │       │   │                   │   ├── EmojiPickerFragment.kt
│   │   │       │   │                   │   └── viewmodel/
│   │   │       │   │                   │       ├── AddEmojiToUserConfigViewModel.kt
│   │   │       │   │                   │       ├── EmojiPickerViewModel.kt
│   │   │       │   │                   │       └── EmojiSelection.kt
│   │   │       │   │                   ├── media/
│   │   │       │   │                   │   ├── MediaPreviewHelper.kt
│   │   │       │   │                   │   └── viewmodel/
│   │   │       │   │                   │       ├── MediaViewData.kt
│   │   │       │   │                   │       └── PreviewAbleFile.kt
│   │   │       │   │                   ├── option/
│   │   │       │   │                   │   ├── NoteOptionDialog.kt
│   │   │       │   │                   │   ├── NoteOptionDialogLayout.kt
│   │   │       │   │                   │   └── NoteOptionViewModel.kt
│   │   │       │   │                   ├── pinned/
│   │   │       │   │                   │   ├── PinnedNoteFragment.kt
│   │   │       │   │                   │   └── PinnedNotesViewModel.kt
│   │   │       │   │                   ├── poll/
│   │   │       │   │                   │   ├── PollHelper.kt
│   │   │       │   │                   │   ├── PollListAdapter.kt
│   │   │       │   │                   │   └── PollListLinearLayoutBinder.kt
│   │   │       │   │                   ├── reaction/
│   │   │       │   │                   │   ├── CustomEmojiImageViewSizeHelper.kt
│   │   │       │   │                   │   ├── ImageAspectRatioCache.kt
│   │   │       │   │                   │   ├── NoteReactionViewHelper.kt
│   │   │       │   │                   │   ├── ReactionButtonHelper.kt
│   │   │       │   │                   │   ├── ReactionCountAdapter.kt
│   │   │       │   │                   │   ├── ReactionHelper.kt
│   │   │       │   │                   │   ├── ReactionSelectionDialog.kt
│   │   │       │   │                   │   ├── ReactionViewData.kt
│   │   │       │   │                   │   ├── RemoteReactionEmojiSuggestionDialog.kt
│   │   │       │   │                   │   ├── SaveImageAspectRequestListener.kt
│   │   │       │   │                   │   ├── choices/
│   │   │       │   │                   │   │   └── EmojiListItemsAdapter.kt
│   │   │       │   │                   │   ├── history/
│   │   │       │   │                   │   │   ├── ReactionHistoryListAdapter.kt
│   │   │       │   │                   │   │   ├── ReactionHistoryListFragment.kt
│   │   │       │   │                   │   │   ├── ReactionHistoryPagerAdapter.kt
│   │   │       │   │                   │   │   ├── ReactionHistoryPagerDialog.kt
│   │   │       │   │                   │   │   └── ReactionHistoryViewModel.kt
│   │   │       │   │                   │   ├── picker/
│   │   │       │   │                   │   │   ├── ReactionPickerDialog.kt
│   │   │       │   │                   │   │   └── ReactionPickerDialogViewModel.kt
│   │   │       │   │                   │   └── viewmodel/
│   │   │       │   │                   │       ├── ReactionHistoryPagerViewModel.kt
│   │   │       │   │                   │       └── RemoteReactionEmojiSuggestionViewModel.kt
│   │   │       │   │                   ├── renote/
│   │   │       │   │                   │   ├── RenoteBottomSheetDialog.kt
│   │   │       │   │                   │   ├── RenoteDialogLayout.kt
│   │   │       │   │                   │   ├── RenoteResultHandler.kt
│   │   │       │   │                   │   ├── RenoteTargetAccountList.kt
│   │   │       │   │                   │   ├── RenoteUiState.kt
│   │   │       │   │                   │   ├── RenoteUiStateBuilder.kt
│   │   │       │   │                   │   ├── RenoteUserItem.kt
│   │   │       │   │                   │   ├── RenoteUsers.kt
│   │   │       │   │                   │   ├── RenoteViewModel.kt
│   │   │       │   │                   │   ├── RenotesBottomSheetDialog.kt
│   │   │       │   │                   │   └── RenotesViewModel.kt
│   │   │       │   │                   ├── timeline/
│   │   │       │   │                   │   ├── NoteFontSizeBinder.kt
│   │   │       │   │                   │   ├── ReactionCountItemsInflater.kt
│   │   │       │   │                   │   ├── TimeMachineDialog.kt
│   │   │       │   │                   │   ├── TimelineErrorHandler.kt
│   │   │       │   │                   │   ├── TimelineFragment.kt
│   │   │       │   │                   │   ├── TimelineListAdapter.kt
│   │   │       │   │                   │   ├── TimelineListAdapterViewHolders.kt
│   │   │       │   │                   │   └── viewmodel/
│   │   │       │   │                   │       ├── NoteStreamingCollector.kt
│   │   │       │   │                   │       ├── TimeMachineDialogViewModel.kt
│   │   │       │   │                   │       ├── TimeMachineEventViewModel.kt
│   │   │       │   │                   │       ├── TimelineFilterService.kt
│   │   │       │   │                   │       ├── TimelineListItem.kt
│   │   │       │   │                   │       ├── TimelineViewModel.kt
│   │   │       │   │                   │       └── filter/
│   │   │       │   │                   │           ├── ExcludeIfExistsSensitiveMediaFilter.kt
│   │   │       │   │                   │           └── ExcludeRepostOrReplyFilter.kt
│   │   │       │   │                   ├── url/
│   │   │       │   │                   │   ├── OtherFileView.kt
│   │   │       │   │                   │   ├── UrlPreviewHelper.kt
│   │   │       │   │                   │   └── UrlPreviewView.kt
│   │   │       │   │                   ├── view/
│   │   │       │   │                   │   ├── ContentFoldingHelper.kt
│   │   │       │   │                   │   ├── CwAnimationHelper.kt
│   │   │       │   │                   │   ├── InstanceInfoHelper.kt
│   │   │       │   │                   │   ├── MastodonFavoriteButtonHelper.kt
│   │   │       │   │                   │   ├── NormalBottomSheetDialogSelectionLayout.kt
│   │   │       │   │                   │   ├── NoteActionHandler.kt
│   │   │       │   │                   │   ├── NoteAutoCollapsingLayoutHelper.kt
│   │   │       │   │                   │   ├── NoteBadgeRoleData.kt
│   │   │       │   │                   │   ├── NoteCardActionHandler.kt
│   │   │       │   │                   │   ├── NoteCardActionListenerAdapter.kt
│   │   │       │   │                   │   ├── NoteTransitionHelper.kt
│   │   │       │   │                   │   ├── NoteUserRoleBadgeBinder.kt
│   │   │       │   │                   │   ├── RenoteButtonHelper.kt
│   │   │       │   │                   │   ├── StatusMessageHelper.kt
│   │   │       │   │                   │   └── TranslationHelper.kt
│   │   │       │   │                   └── viewmodel/
│   │   │       │   │                       ├── CwTextGenerator.kt
│   │   │       │   │                       ├── HasReplyToNoteViewData.kt
│   │   │       │   │                       ├── NoteStatusMessageTextGenerator.kt
│   │   │       │   │                       ├── NoteViewData.kt
│   │   │       │   │                       ├── NotesViewModel.kt
│   │   │       │   │                       ├── PlaneNoteViewData.kt
│   │   │       │   │                       ├── PlaneNoteViewDataCache.kt
│   │   │       │   │                       └── Preview.kt
│   │   │       │   └── res/
│   │   │       │       ├── drawable/
│   │   │       │       │   ├── ic_baseline_timeline_24.xml
│   │   │       │       │   └── shape_media_message_background.xml
│   │   │       │       ├── layout/
│   │   │       │       │   ├── activity_draft_notes.xml
│   │   │       │       │   ├── activity_note_detail.xml
│   │   │       │       │   ├── dialog_custom_emoji_picker.xml
│   │   │       │       │   ├── dialog_reaction_history_pager.xml
│   │   │       │       │   ├── dialog_reaction_picker.xml
│   │   │       │       │   ├── dialog_remote_reaction_emoji_suggestion.xml
│   │   │       │       │   ├── dialog_select_reaction.xml
│   │   │       │       │   ├── dialog_time_machine.xml
│   │   │       │       │   ├── fragment_emoji_picker.xml
│   │   │       │       │   ├── fragment_note_detail.xml
│   │   │       │       │   ├── fragment_note_detail_pager.xml
│   │   │       │       │   ├── fragment_pinned_notes.xml
│   │   │       │       │   ├── fragment_reaction_history_list.xml
│   │   │       │       │   ├── fragment_simple_editor.xml
│   │   │       │       │   ├── fragment_timeline.xml
│   │   │       │       │   ├── item_category_with_list.xml
│   │   │       │       │   ├── item_choice.xml
│   │   │       │       │   ├── item_conversation.xml
│   │   │       │       │   ├── item_detail_note.xml
│   │   │       │       │   ├── item_emoji_choice.xml
│   │   │       │       │   ├── item_emoji_list_item_header.xml
│   │   │       │       │   ├── item_file_preview.xml
│   │   │       │       │   ├── item_has_reply_to_note.xml
│   │   │       │       │   ├── item_media_preview.xml
│   │   │       │       │   ├── item_note.xml
│   │   │       │       │   ├── item_note_editor_reply_to_note.xml
│   │   │       │       │   ├── item_reaction.xml
│   │   │       │       │   ├── item_reaction_history_header.xml
│   │   │       │       │   ├── item_reaction_history_loading.xml
│   │   │       │       │   ├── item_simple_note.xml
│   │   │       │       │   ├── item_simple_user.xml
│   │   │       │       │   ├── item_timeline_empty.xml
│   │   │       │       │   ├── item_timeline_error.xml
│   │   │       │       │   ├── item_timeline_loading.xml
│   │   │       │       │   ├── item_url_or_file_preview.xml
│   │   │       │       │   ├── item_url_preview.xml
│   │   │       │       │   ├── item_vote_result.xml
│   │   │       │       │   ├── view_other_file.xml
│   │   │       │       │   ├── view_translation.xml
│   │   │       │       │   └── view_url_preview.xml
│   │   │       │       ├── menu/
│   │   │       │       │   └── menu_timeline.xml
│   │   │       │       └── values/
│   │   │       │           └── dimens.xml
│   │   │       └── test/
│   │   │           └── java/
│   │   │               └── net/
│   │   │                   └── pantasystem/
│   │   │                       └── milktea/
│   │   │                           └── note/
│   │   │                               └── editor/
│   │   │                                   └── viewmodel/
│   │   │                                       └── NoteEditorUiStateTest.kt
│   │   ├── notification/
│   │   │   ├── .gitignore
│   │   │   ├── build.gradle
│   │   │   ├── consumer-rules.pro
│   │   │   ├── proguard-rules.pro
│   │   │   └── src/
│   │   │       └── main/
│   │   │           ├── AndroidManifest.xml
│   │   │           ├── java/
│   │   │           │   └── net/
│   │   │           │       └── pantasystem/
│   │   │           │           └── milktea/
│   │   │           │               └── notification/
│   │   │           │                   ├── NotificationErrorHandler.kt
│   │   │           │                   ├── NotificationFragment.kt
│   │   │           │                   ├── NotificationHelper.kt
│   │   │           │                   ├── NotificationListAdapter.kt
│   │   │           │                   ├── NotificationMentionFragment.kt
│   │   │           │                   ├── NotificationStatusIconHelper.kt
│   │   │           │                   ├── NotificationTabViewModel.kt
│   │   │           │                   ├── NotificationTitleHelper.kt
│   │   │           │                   ├── NotificationsActivity.kt
│   │   │           │                   ├── notification_message_helper.kt
│   │   │           │                   └── viewmodel/
│   │   │           │                       ├── NotificationViewData.kt
│   │   │           │                       └── NotificationViewModel.kt
│   │   │           └── res/
│   │   │               ├── layout/
│   │   │               │   ├── activity_notifications.xml
│   │   │               │   ├── fragment_notification.xml
│   │   │               │   ├── fragment_notification_mention.xml
│   │   │               │   ├── item_notification.xml
│   │   │               │   ├── item_notification_empty.xml
│   │   │               │   ├── item_notification_error.xml
│   │   │               │   └── item_notification_loading.xml
│   │   │               ├── menu/
│   │   │               │   └── notification_menu.xml
│   │   │               └── values/
│   │   │                   └── dimens.xml
│   │   ├── search/
│   │   │   ├── .gitignore
│   │   │   ├── build.gradle
│   │   │   ├── consumer-rules.pro
│   │   │   ├── proguard-rules.pro
│   │   │   └── src/
│   │   │       └── main/
│   │   │           ├── AndroidManifest.xml
│   │   │           ├── java/
│   │   │           │   └── net/
│   │   │           │       └── pantasystem/
│   │   │           │           └── milktea/
│   │   │           │               └── search/
│   │   │           │                   ├── SearchActivity.kt
│   │   │           │                   ├── SearchResultActivity.kt
│   │   │           │                   ├── SearchResultLayout.kt
│   │   │           │                   ├── SearchResultViewModel.kt
│   │   │           │                   ├── SearchResultViewPagerAdapter.kt
│   │   │           │                   ├── SearchTopFragment.kt
│   │   │           │                   ├── SearchTopTabsFactory.kt
│   │   │           │                   ├── SearchTopViewModel.kt
│   │   │           │                   ├── SearchViewModel.kt
│   │   │           │                   ├── explore/
│   │   │           │                   │   ├── ExploreFragment.kt
│   │   │           │                   │   └── ExploreViewModel.kt
│   │   │           │                   └── trend/
│   │   │           │                       ├── HashtagTrendItem.kt
│   │   │           │                       ├── TrendFragment.kt
│   │   │           │                       └── TrendViewModel.kt
│   │   │           └── res/
│   │   │               └── layout/
│   │   │                   ├── activity_search.xml
│   │   │                   ├── activity_search_result.xml
│   │   │                   └── fragment_search_top.xml
│   │   ├── setting/
│   │   │   ├── .gitignore
│   │   │   ├── build.gradle
│   │   │   ├── consumer-rules.pro
│   │   │   ├── proguard-rules.pro
│   │   │   └── src/
│   │   │       └── main/
│   │   │           ├── AndroidManifest.xml
│   │   │           ├── java/
│   │   │           │   └── net/
│   │   │           │       └── pantasystem/
│   │   │           │           └── milktea/
│   │   │           │               └── setting/
│   │   │           │                   ├── EditTabSettingDialog.kt
│   │   │           │                   ├── PageSettingActionDialog.kt
│   │   │           │                   ├── PageTypeNameMap.kt
│   │   │           │                   ├── SettingSection.kt
│   │   │           │                   ├── activities/
│   │   │           │                   │   ├── AboutMilkteaActivity.kt
│   │   │           │                   │   ├── AccountSettingActivity.kt
│   │   │           │                   │   ├── CacheSettingActivity.kt
│   │   │           │                   │   ├── ClientWordFilterSettingActivity.kt
│   │   │           │                   │   ├── DeveloperSettingActivity.kt
│   │   │           │                   │   ├── ImportReactionFromWebViewActivity.kt
│   │   │           │                   │   ├── PageSettingActivity.kt
│   │   │           │                   │   ├── ReactionSettingActivity.kt
│   │   │           │                   │   ├── RenoteMuteSettingActivity.kt
│   │   │           │                   │   ├── SecuritySettingActivity.kt
│   │   │           │                   │   ├── SettingAppearanceActivity.kt
│   │   │           │                   │   ├── SettingMovementActivity.kt
│   │   │           │                   │   └── SettingsActivity.kt
│   │   │           │                   ├── compose/
│   │   │           │                   │   ├── SettingRadioTile.kt
│   │   │           │                   │   ├── SettingSwitchTile.kt
│   │   │           │                   │   ├── SettingTIleLayoutBase.kt
│   │   │           │                   │   ├── SettingTitleTile.kt
│   │   │           │                   │   ├── account/
│   │   │           │                   │   │   └── AccountSettingScreen.kt
│   │   │           │                   │   ├── renote/
│   │   │           │                   │   │   └── mute/
│   │   │           │                   │   │       └── RenoteMuteSettingScreen.kt
│   │   │           │                   │   └── tab/
│   │   │           │                   │       ├── DragAndDropState.kt
│   │   │           │                   │       ├── TabItemSelectionDialog.kt
│   │   │           │                   │       ├── TabItemsList.kt
│   │   │           │                   │       └── TabItemsListScreen.kt
│   │   │           │                   └── viewmodel/
│   │   │           │                       ├── CacheSettingViewModel.kt
│   │   │           │                       ├── ImportReactionFromWebViewViewModel.kt
│   │   │           │                       ├── RenoteMuteSettingViewModel.kt
│   │   │           │                       ├── muteword/
│   │   │           │                       │   └── ClientWordFilterSettingViewModel.kt
│   │   │           │                       ├── page/
│   │   │           │                       │   ├── PageCandidateGenerator.kt
│   │   │           │                       │   ├── PageSettingAction.kt
│   │   │           │                       │   ├── PageSettingViewModel.kt
│   │   │           │                       │   └── SelectPageTypeToAdd.kt
│   │   │           │                       └── reaction/
│   │   │           │                           └── ReactionPickerSettingViewModel.kt
│   │   │           └── res/
│   │   │               └── layout/
│   │   │                   ├── activity_import_reaction_from_web_view.xml
│   │   │                   ├── activity_reaction_setting.xml
│   │   │                   ├── activity_settings.xml
│   │   │                   ├── dialog_edit_tab_name.xml
│   │   │                   ├── dialog_page_setting_action.xml
│   │   │                   └── settings_activity.xml
│   │   ├── user/
│   │   │   ├── .gitignore
│   │   │   ├── build.gradle
│   │   │   ├── consumer-rules.pro
│   │   │   ├── proguard-rules.pro
│   │   │   └── src/
│   │   │       └── main/
│   │   │           ├── AndroidManifest.xml
│   │   │           ├── java/
│   │   │           │   └── net/
│   │   │           │       └── pantasystem/
│   │   │           │           └── milktea/
│   │   │           │               └── user/
│   │   │           │                   ├── FollowButton.kt
│   │   │           │                   ├── ReportStateHandler.kt
│   │   │           │                   ├── UserCardListActionHandler.kt
│   │   │           │                   ├── compose/
│   │   │           │                   │   ├── SimpleUsers.kt
│   │   │           │                   │   ├── UserDetailCard.kt
│   │   │           │                   │   ├── UserDetailCardList.kt
│   │   │           │                   │   ├── UserDetailCardPageableList.kt
│   │   │           │                   │   └── screen/
│   │   │           │                   │       └── FollowFollowerScreen.kt
│   │   │           │                   ├── di/
│   │   │           │                   │   └── module/
│   │   │           │                   │       └── FollowRequestModule.kt
│   │   │           │                   ├── followlist/
│   │   │           │                   │   ├── FollowFollowerActivity.kt
│   │   │           │                   │   └── FollowFollowerViewModel.kt
│   │   │           │                   ├── followrequests/
│   │   │           │                   │   ├── FollowRequestItem.kt
│   │   │           │                   │   ├── FollowRequestsErrorHandler.kt
│   │   │           │                   │   ├── FollowRequestsFragment.kt
│   │   │           │                   │   ├── FollowRequestsScreen.kt
│   │   │           │                   │   └── FollowRequestsViewModel.kt
│   │   │           │                   ├── helper/
│   │   │           │                   │   └── HeaderImageHelper.kt
│   │   │           │                   ├── nickname/
│   │   │           │                   │   └── EditNicknameDialog.kt
│   │   │           │                   ├── profile/
│   │   │           │                   │   ├── ConfirmUserBlockDialog.kt
│   │   │           │                   │   ├── ProfileAccountSwitchDialog.kt
│   │   │           │                   │   ├── ProfileTabPagerAdapter.kt
│   │   │           │                   │   ├── UserDetailActivity.kt
│   │   │           │                   │   ├── UserDetailActivityMenuBinder.kt
│   │   │           │                   │   ├── UserDetailErrorHandler.kt
│   │   │           │                   │   ├── UserProfileFieldListAdapter.kt
│   │   │           │                   │   ├── mute/
│   │   │           │                   │   │   ├── MuteUserViewModel.kt
│   │   │           │                   │   │   ├── SpecifyMuteExpiredAtDialog.kt
│   │   │           │                   │   │   └── SpecifyMuteExpiredAtDialogContent.kt
│   │   │           │                   │   ├── view/
│   │   │           │                   │   │   └── ProfileBadgeRoles.kt
│   │   │           │                   │   └── viewmodel/
│   │   │           │                   │       ├── UserDetailTabType.kt
│   │   │           │                   │       ├── UserDetailViewModel.kt
│   │   │           │                   │       ├── UserIdResolver.kt
│   │   │           │                   │       └── UserProfileArgTypeCombiner.kt
│   │   │           │                   ├── qrshare/
│   │   │           │                   │   ├── QRCodeBitmapGenerator.kt
│   │   │           │                   │   └── QRShareDialog.kt
│   │   │           │                   ├── reaction/
│   │   │           │                   │   ├── UserReactionBindingModel.kt
│   │   │           │                   │   ├── UserReactionsFragment.kt
│   │   │           │                   │   ├── UserReactionsListAdapter.kt
│   │   │           │                   │   └── UserReactionsViewModel.kt
│   │   │           │                   ├── search/
│   │   │           │                   │   ├── SearchAndSelectUserActivity.kt
│   │   │           │                   │   ├── SearchAndSelectUserScreen.kt
│   │   │           │                   │   ├── SearchUserFragment.kt
│   │   │           │                   │   ├── SearchUserViewModel.kt
│   │   │           │                   │   └── SelectedUserViewModel.kt
│   │   │           │                   └── viewmodel/
│   │   │           │                       └── ToggleFollowViewModel.kt
│   │   │           └── res/
│   │   │               ├── drawable/
│   │   │               │   ├── ic_baseline_cake_24.xml
│   │   │               │   ├── ic_baseline_calendar_month_24.xml
│   │   │               │   └── shape_follower_state_background.xml
│   │   │               └── layout/
│   │   │                   ├── activity_user_detail.xml
│   │   │                   ├── dialog_edit_nickname.xml
│   │   │                   ├── fragment_user_reactions.xml
│   │   │                   ├── item_user_profile_field.xml
│   │   │                   └── item_user_reaction.xml
│   │   └── userlist/
│   │       ├── .gitignore
│   │       ├── build.gradle
│   │       ├── consumer-rules.pro
│   │       ├── proguard-rules.pro
│   │       └── src/
│   │           └── main/
│   │               ├── AndroidManifest.xml
│   │               ├── java/
│   │               │   └── net/
│   │               │       └── pantasystem/
│   │               │           └── milktea/
│   │               │               └── userlist/
│   │               │                   ├── ListListActivity.kt
│   │               │                   ├── UserListDetailActivity.kt
│   │               │                   ├── UserListEditorDialog.kt
│   │               │                   ├── compose/
│   │               │                   │   ├── RemovableSimpleUserCard.kt
│   │               │                   │   ├── RemovableSimpleUserCardList.kt
│   │               │                   │   ├── UserListCard.kt
│   │               │                   │   ├── UserListCardScreen.kt
│   │               │                   │   └── UserListDetailScreen.kt
│   │               │                   └── viewmodel/
│   │               │                       ├── ListListViewModel.kt
│   │               │                       └── UserListDetailViewModel.kt
│   │               └── res/
│   │                   └── layout/
│   │                       └── dialog_user_list_editor.xml
│   ├── model/
│   │   ├── .gitignore
│   │   ├── build.gradle
│   │   ├── consumer-rules.pro
│   │   ├── proguard-rules.pro
│   │   └── src/
│   │       ├── main/
│   │       │   ├── AndroidManifest.xml
│   │       │   └── java/
│   │       │       └── net/
│   │       │           └── pantasystem/
│   │       │               └── milktea/
│   │       │                   └── model/
│   │       │                       ├── AddResult.kt
│   │       │                       ├── Entity.kt
│   │       │                       ├── UseCase.kt
│   │       │                       ├── account/
│   │       │                       │   ├── Account.kt
│   │       │                       │   ├── AccountExceptions.kt
│   │       │                       │   ├── AccountRepository.kt
│   │       │                       │   ├── Auth.kt
│   │       │                       │   ├── ClientId.kt
│   │       │                       │   ├── ClientIdRepository.kt
│   │       │                       │   ├── CurrentAccountWatcher.kt
│   │       │                       │   ├── MakeDefaultPagesUseCase.kt
│   │       │                       │   ├── SignOutUseCase.kt
│   │       │                       │   ├── SyncAccountInfoUseCase.kt
│   │       │                       │   ├── UnauthorizedException.kt
│   │       │                       │   └── page/
│   │       │                       │       ├── Page.kt
│   │       │                       │       ├── PageParams.kt
│   │       │                       │       ├── PageType.kt
│   │       │                       │       ├── Pageable.kt
│   │       │                       │       ├── PageableTemplate.kt
│   │       │                       │       └── Pagenate.kt
│   │       │                       ├── antenna/
│   │       │                       │   ├── AccountService.kt
│   │       │                       │   ├── Antenna.kt
│   │       │                       │   ├── AntennaRepository.kt
│   │       │                       │   ├── AntennaToggleAddToTabUseCase.kt
│   │       │                       │   └── SaveAntennaParam.kt
│   │       │                       ├── ap/
│   │       │                       │   ├── ApResolver.kt
│   │       │                       │   ├── ApResolverRepository.kt
│   │       │                       │   └── ApResolverService.kt
│   │       │                       ├── app/
│   │       │                       │   └── AppType.kt
│   │       │                       ├── channel/
│   │       │                       │   ├── Channel.kt
│   │       │                       │   ├── ChannelRepository.kt
│   │       │                       │   ├── ChannelStateModel.kt
│   │       │                       │   ├── CreateChannel.kt
│   │       │                       │   └── UpdateChannel.kt
│   │       │                       ├── clip/
│   │       │                       │   ├── Clip.kt
│   │       │                       │   ├── ClipRepository.kt
│   │       │                       │   ├── CreateClip.kt
│   │       │                       │   └── ToggleClipAddToTabUseCase.kt
│   │       │                       ├── drive/
│   │       │                       │   ├── CreateDirectory.kt
│   │       │                       │   ├── Directory.kt
│   │       │                       │   ├── DriveDirectoryRepository.kt
│   │       │                       │   ├── DriveFileRepository.kt
│   │       │                       │   ├── FileProperty.kt
│   │       │                       │   ├── FilePropertyDataSource.kt
│   │       │                       │   └── UpdateFileProperty.kt
│   │       │                       ├── emoji/
│   │       │                       │   ├── AddEmojiToUserConfigUseCase.kt
│   │       │                       │   ├── CustomEmoji.kt
│   │       │                       │   ├── CustomEmojiAspectRatioDataSource.kt
│   │       │                       │   ├── CustomEmojiAspectRatioStore.kt
│   │       │                       │   ├── CustomEmojiRepository.kt
│   │       │                       │   ├── EmojiEventHandler.kt
│   │       │                       │   ├── EmojiImageCacheStore.kt
│   │       │                       │   ├── SaveCustomEmojiImageUseCase.kt
│   │       │                       │   ├── SimpleCustomEmojiParser.kt
│   │       │                       │   ├── UserEmojiConfig.kt
│   │       │                       │   └── UserEmojiConfigRepository.kt
│   │       │                       ├── file/
│   │       │                       │   ├── AppFile.kt
│   │       │                       │   ├── CopyFileToAppDirRepository.kt
│   │       │                       │   ├── CopyFileToAppDirUseCase.kt
│   │       │                       │   ├── FileUploadFailedException.kt
│   │       │                       │   ├── UpdateAppFileSensitiveUseCase.kt
│   │       │                       │   └── UriToAppFileUseCase.kt
│   │       │                       ├── filter/
│   │       │                       │   ├── ClientWordFilterService.kt
│   │       │                       │   ├── FilterPatternCache.kt
│   │       │                       │   ├── GetMatchContextFilters.kt
│   │       │                       │   ├── MastodonFilterService.kt
│   │       │                       │   ├── MastodonWordFilter.kt
│   │       │                       │   ├── MastodonWordFilterRepository.kt
│   │       │                       │   └── WordFilterService.kt
│   │       │                       ├── gallery/
│   │       │                       │   ├── CreateGalleryPost.kt
│   │       │                       │   ├── GalleryDataSource.kt
│   │       │                       │   ├── GalleryNotFoundException.kt
│   │       │                       │   ├── GalleryPost.kt
│   │       │                       │   ├── GalleryRepository.kt
│   │       │                       │   └── UpdateGalleryPost.kt
│   │       │                       ├── group/
│   │       │                       │   ├── AcceptGroupInvitationUseCase.kt
│   │       │                       │   ├── CreateGroup.kt
│   │       │                       │   ├── Group.kt
│   │       │                       │   ├── GroupDataSource.kt
│   │       │                       │   ├── GroupNotFoundException.kt
│   │       │                       │   ├── GroupRepository.kt
│   │       │                       │   ├── InvitationId.kt
│   │       │                       │   ├── Invite.kt
│   │       │                       │   ├── Pull.kt
│   │       │                       │   ├── RejectGroupInvitationUseCase.kt
│   │       │                       │   ├── Transfer.kt
│   │       │                       │   └── UpdateGroup.kt
│   │       │                       ├── hashtag/
│   │       │                       │   ├── HashTag.kt
│   │       │                       │   └── HashtagRepository.kt
│   │       │                       ├── image/
│   │       │                       │   ├── ImageCache.kt
│   │       │                       │   └── ImageCacheRepository.kt
│   │       │                       ├── instance/
│   │       │                       │   ├── FeatureEnables.kt
│   │       │                       │   ├── HostWithVersion.kt
│   │       │                       │   ├── IllegalVersionException.kt
│   │       │                       │   ├── InstanceInfo.kt
│   │       │                       │   ├── InstanceInfoService.kt
│   │       │                       │   ├── InstanceInfoType.kt
│   │       │                       │   ├── MastodonInstanceInfo.kt
│   │       │                       │   ├── MastodonInstanceInfoRepository.kt
│   │       │                       │   ├── Meta.kt
│   │       │                       │   ├── MetaDataSource.kt
│   │       │                       │   ├── MetaRepository.kt
│   │       │                       │   ├── SyncMetaExecutor.kt
│   │       │                       │   ├── Version.kt
│   │       │                       │   ├── online/
│   │       │                       │   │   └── user/
│   │       │                       │   │       └── count/
│   │       │                       │   │           └── OnlineUserCountRepository.kt
│   │       │                       │   └── ticker/
│   │       │                       │       ├── InstanceTicker.kt
│   │       │                       │       └── InstanceTickerRepository.kt
│   │       │                       ├── list/
│   │       │                       │   ├── UserList.kt
│   │       │                       │   ├── UserListRepository.kt
│   │       │                       │   └── UserListTabToggleAddToTabUseCase.kt
│   │       │                       ├── markers/
│   │       │                       │   └── MarkerRepository.kt
│   │       │                       ├── messaging/
│   │       │                       │   ├── Message.kt
│   │       │                       │   ├── MessageNotFoundException.kt
│   │       │                       │   ├── MessageObserver.kt
│   │       │                       │   ├── MessageRelationGetter.kt
│   │       │                       │   ├── MessageRepository.kt
│   │       │                       │   ├── MessagingId.kt
│   │       │                       │   ├── MessagingRepository.kt
│   │       │                       │   └── UnReadMessages.kt
│   │       │                       ├── nodeinfo/
│   │       │                       │   ├── NodeInfo.kt
│   │       │                       │   └── NodeInfoRepository.kt
│   │       │                       ├── note/
│   │       │                       │   ├── CreateNote.kt
│   │       │                       │   ├── CreateNoteUseCase.kt
│   │       │                       │   ├── DeleteAndEditUseCase.kt
│   │       │                       │   ├── DeleteNoteUseCase.kt
│   │       │                       │   ├── FindPinnedNoteUseCase.kt
│   │       │                       │   ├── GetAllMentionUsersUseCase.kt
│   │       │                       │   ├── GetShareNoteUrlUseCase.kt
│   │       │                       │   ├── Note.kt
│   │       │                       │   ├── NoteCaptureAPIAdapter.kt
│   │       │                       │   ├── NoteDataSource.kt
│   │       │                       │   ├── NoteDeletedException.kt
│   │       │                       │   ├── NoteEditingState.kt
│   │       │                       │   ├── NoteNotFoundException.kt
│   │       │                       │   ├── NoteRelationGetter.kt
│   │       │                       │   ├── NoteRepository.kt
│   │       │                       │   ├── NoteResult.kt
│   │       │                       │   ├── NoteService.kt
│   │       │                       │   ├── NoteState.kt
│   │       │                       │   ├── NoteStreaming.kt
│   │       │                       │   ├── NoteThreadContext.kt
│   │       │                       │   ├── ReactionAcceptanceType.kt
│   │       │                       │   ├── ReplyStreaming.kt
│   │       │                       │   ├── TimelineScrollPositionRepository.kt
│   │       │                       │   ├── Translation.kt
│   │       │                       │   ├── Visibility.kt
│   │       │                       │   ├── bookmark/
│   │       │                       │   │   ├── BookmarkRepository.kt
│   │       │                       │   │   ├── CreateBookmarkUseCase.kt
│   │       │                       │   │   └── DeleteBookmarkUseCase.kt
│   │       │                       │   ├── draft/
│   │       │                       │   │   ├── DraftNote.kt
│   │       │                       │   │   ├── DraftNoteRepository.kt
│   │       │                       │   │   ├── DraftNoteService.kt
│   │       │                       │   │   └── DraftPoll.kt
│   │       │                       │   ├── favorite/
│   │       │                       │   │   ├── CreateFavoriteUseCase.kt
│   │       │                       │   │   ├── DeleteFavoriteUseCase.kt
│   │       │                       │   │   ├── FavoriteRepository.kt
│   │       │                       │   │   └── ToggleFavoriteUseCase.kt
│   │       │                       │   ├── muteword/
│   │       │                       │   │   ├── FilterConditionType.kt
│   │       │                       │   │   ├── WordFilterConfig.kt
│   │       │                       │   │   ├── WordFilterConfigRepository.kt
│   │       │                       │   │   └── WordFilterConfigTextParser.kt
│   │       │                       │   ├── poll/
│   │       │                       │   │   ├── CreatePoll.kt
│   │       │                       │   │   ├── Poll.kt
│   │       │                       │   │   └── VoteUseCase.kt
│   │       │                       │   ├── reaction/
│   │       │                       │   │   ├── CreateReaction.kt
│   │       │                       │   │   ├── DeleteReaction.kt
│   │       │                       │   │   ├── DeleteReactionsUseCase.kt
│   │       │                       │   │   ├── LegacyReaction.kt
│   │       │                       │   │   ├── Reaction.kt
│   │       │                       │   │   ├── ReactionCount.kt
│   │       │                       │   │   ├── ReactionHistoryRequest.kt
│   │       │                       │   │   ├── ReactionRepository.kt
│   │       │                       │   │   ├── ReactionSelection.kt
│   │       │                       │   │   ├── ReactionUserRepository.kt
│   │       │                       │   │   ├── ToggleReactionUseCase.kt
│   │       │                       │   │   └── history/
│   │       │                       │   │       ├── ReactionHistory.kt
│   │       │                       │   │       ├── ReactionHistoryCount.kt
│   │       │                       │   │       └── ReactionHistoryRepository.kt
│   │       │                       │   ├── repost/
│   │       │                       │   │   ├── CheckCanRepostService.kt
│   │       │                       │   │   ├── CreateRenote.kt
│   │       │                       │   │   ├── CreateRenoteMultipleAccountUseCase.kt
│   │       │                       │   │   ├── QuoteRenoteData.kt
│   │       │                       │   │   ├── Renotes.kt
│   │       │                       │   │   └── RenotesPagingService.kt
│   │       │                       │   ├── reservation/
│   │       │                       │   │   └── NoteReservationPostExecutor.kt
│   │       │                       │   └── timeline/
│   │       │                       │       ├── SyncTimelineFromLatestToCurrentUseCase.kt
│   │       │                       │       ├── SyncTimelineUseCase.kt
│   │       │                       │       ├── TimelineItem.kt
│   │       │                       │       ├── TimelineRepository.kt
│   │       │                       │       └── favorite/
│   │       │                       │           └── FavoriteTimelineRepository.kt
│   │       │                       ├── notification/
│   │       │                       │   ├── Notification.kt
│   │       │                       │   ├── NotificationDataSource.kt
│   │       │                       │   ├── NotificationNotFoundException.kt
│   │       │                       │   ├── NotificationPagingStore.kt
│   │       │                       │   ├── NotificationRelation.kt
│   │       │                       │   ├── NotificationRelationGetter.kt
│   │       │                       │   ├── NotificationRepository.kt
│   │       │                       │   ├── NotificationStreaming.kt
│   │       │                       │   ├── NotificationTimelineRepository.kt
│   │       │                       │   └── PushNotification.kt
│   │       │                       ├── search/
│   │       │                       │   ├── SearchHistory.kt
│   │       │                       │   └── SearchHistoryRepository.kt
│   │       │                       ├── setting/
│   │       │                       │   ├── ColorSettingStore.kt
│   │       │                       │   ├── Config.kt
│   │       │                       │   ├── Keys.kt
│   │       │                       │   ├── LocalConfigRepository.kt
│   │       │                       │   ├── NoteExpandedHeightSize.kt
│   │       │                       │   ├── PrefType.kt
│   │       │                       │   ├── Theme.kt
│   │       │                       │   └── WebClientBaseCache.kt
│   │       │                       ├── sw/
│   │       │                       │   └── register/
│   │       │                       │       ├── DeviceTokenRepository.kt
│   │       │                       │       ├── SubscriptionRegistration.kt
│   │       │                       │       ├── SubscriptionState.kt
│   │       │                       │       └── SubscriptionUnRegistration.kt
│   │       │                       ├── task_executor.kt
│   │       │                       ├── url/
│   │       │                       │   ├── UrlPreview.kt
│   │       │                       │   ├── UrlPreviewLoadTask.kt
│   │       │                       │   └── UrlPreviewStore.kt
│   │       │                       └── user/
│   │       │                           ├── Acct.kt
│   │       │                           ├── FollowRequestRepository.kt
│   │       │                           ├── ToggleFollowUseCase.kt
│   │       │                           ├── ToggleUserTimelineAddTabUseCase.kt
│   │       │                           ├── User.kt
│   │       │                           ├── UserDataSource.kt
│   │       │                           ├── UserNotFoundException.kt
│   │       │                           ├── UserRepository.kt
│   │       │                           ├── block/
│   │       │                           │   ├── BlockRepository.kt
│   │       │                           │   ├── BlockUserUseCase.kt
│   │       │                           │   └── UnBlockUserUseCase.kt
│   │       │                           ├── follow/
│   │       │                           │   ├── FollowRepository.kt
│   │       │                           │   ├── FollowUpdateParams.kt
│   │       │                           │   ├── ToggleNotifyUserPostsUseCase.kt
│   │       │                           │   └── requests/
│   │       │                           │       ├── AcceptFollowRequestUseCase.kt
│   │       │                           │       ├── FollowRequestPagingStore.kt
│   │       │                           │       └── RejectFollowRequestUseCase.kt
│   │       │                           ├── mute/
│   │       │                           │   ├── CreateMute.kt
│   │       │                           │   ├── MuteRepository.kt
│   │       │                           │   ├── MuteUserUseCase.kt
│   │       │                           │   └── UnMuteUserUseCase.kt
│   │       │                           ├── nickname/
│   │       │                           │   ├── DeleteNicknameUseCase.kt
│   │       │                           │   ├── UpdateNickname.kt
│   │       │                           │   ├── UserNickname.kt
│   │       │                           │   ├── UserNicknameNotFoundException.kt
│   │       │                           │   └── UserNicknameRepository.kt
│   │       │                           ├── query/
│   │       │                           │   └── FindUsersQuery.kt
│   │       │                           ├── reaction/
│   │       │                           │   └── UserReaction.kt
│   │       │                           ├── renote/
│   │       │                           │   └── mute/
│   │       │                           │       ├── RenoteMute.kt
│   │       │                           │       └── RenoteMuteRepository.kt
│   │       │                           └── report/
│   │       │                               ├── Report.kt
│   │       │                               ├── ReportRepository.kt
│   │       │                               ├── ReportState.kt
│   │       │                               └── SendReportUseCase.kt
│   │       └── test/
│   │           ├── java/
│   │           │   └── net/
│   │           │       └── pantasystem/
│   │           │           └── milktea/
│   │           │               └── model/
│   │           │                   ├── account/
│   │           │                   │   ├── AccountTest.kt
│   │           │                   │   ├── SyncAccountInfoUseCaseTest.kt
│   │           │                   │   └── page/
│   │           │                   │       ├── PageTypeTest.kt
│   │           │                   │       └── PageableTest.kt
│   │           │                   ├── filter/
│   │           │                   │   ├── ClientWordFilterServiceTest.kt
│   │           │                   │   ├── GetMatchContextFiltersTest.kt
│   │           │                   │   └── MastodonWordFilterTest.kt
│   │           │                   ├── instance/
│   │           │                   │   └── MetaTest.kt
│   │           │                   ├── nodeinfo/
│   │           │                   │   └── NodeInfoTest.kt
│   │           │                   ├── note/
│   │           │                   │   ├── NoteTest.kt
│   │           │                   │   ├── NoteTestUtil.kt
│   │           │                   │   ├── muteword/
│   │           │                   │   │   ├── WordFilterConfigTest.kt
│   │           │                   │   │   └── WordFilterConfigTextParserTest.kt
│   │           │                   │   └── reaction/
│   │           │                   │       ├── ReactionTest.kt
│   │           │                   │       └── ToggleReactionUseCaseTest.kt
│   │           │                   └── user/
│   │           │                       └── AcctTest.kt
│   │           └── resources/
│   │               ├── v10_meta_case1.json
│   │               └── v12_meta_case1.json
│   └── worker/
│       ├── .gitignore
│       ├── build.gradle
│       ├── consumer-rules.pro
│       ├── proguard-rules.pro
│       └── src/
│           └── main/
│               ├── AndroidManifest.xml
│               └── java/
│                   └── net/
│                       └── pantasystem/
│                           └── milktea/
│                               └── worker/
│                                   ├── SyncAccountInfoWorker.kt
│                                   ├── SyncNodeInfoCacheWorker.kt
│                                   ├── WorkerIdsModel.kt
│                                   ├── WorkerTags.kt
│                                   ├── di/
│                                   │   └── module/
│                                   │       └── ExecutorModule.kt
│                                   ├── drive/
│                                   │   └── CleanupUnusedCacheWorker.kt
│                                   ├── emoji/
│                                   │   └── cache/
│                                   │       └── CacheCustomEmojiImageWorker.kt
│                                   ├── filter/
│                                   │   └── SyncMastodonFilterWorker.kt
│                                   ├── meta/
│                                   │   ├── SpecifiedSyncMetaWorker.kt
│                                   │   └── SyncMetaWorker.kt
│                                   ├── note/
│                                   │   ├── BackgroundSyncTimelineWorker.kt
│                                   │   ├── CreateNoteWorker.kt
│                                   │   ├── CreateNoteWorkerExecutor.kt
│                                   │   └── SyncTimelineWorker.kt
│                                   ├── sw/
│                                   │   ├── RegisterAllSubscriptionRegistration.kt
│                                   │   └── SubscriptionRegistrationWorker.kt
│                                   └── user/
│                                       ├── SyncLoggedInUserInfoWorker.kt
│                                       └── renote/
│                                           └── mute/
│                                               └── SyncRenoteMutesWorker.kt
├── privacy_policy_ch.md
├── privacy_policy_en.md
├── privacy_policy_ja.md
├── pull_request_template.md
├── push-to-fcm/
│   ├── .air.toml
│   ├── .gitignore
│   ├── Dockerfile
│   ├── docker-compose.yml
│   ├── go.mod
│   ├── go.sum
│   ├── main.go
│   └── pkg/
│       ├── api/
│       │   ├── mastodon/
│       │   │   ├── account.go
│       │   │   ├── emoji.go
│       │   │   ├── notification.go
│       │   │   ├── notification_subscription.go
│       │   │   ├── report.go
│       │   │   └── status.go
│       │   ├── misskey/
│       │   │   ├── account.go
│       │   │   ├── account_test.go
│       │   │   ├── drive_file.go
│       │   │   ├── note.go
│       │   │   ├── notification.go
│       │   │   └── sw_subscription.go
│       │   ├── module.go
│       │   └── well_known/
│       │       ├── nodeinfo.go
│       │       ├── nodeinfo_test.go
│       │       ├── well_known.go
│       │       └── well_known_test.go
│       ├── config/
│       │   └── config.go
│       ├── dao/
│       │   ├── client_account.go
│       │   ├── module.go
│       │   └── push_subscription.go
│       ├── entity/
│       │   ├── client_account.go
│       │   └── push_subscription.go
│       ├── handler/
│       │   ├── client_account.go
│       │   ├── middleware/
│       │   │   └── client_account_auth.go
│       │   └── subscription.go
│       ├── repository/
│       │   ├── client_account.go
│       │   ├── module.go
│       │   └── push_notification.go
│       ├── root/
│       │   ├── impl/
│       │   │   └── module.go
│       │   └── module.go
│       ├── service/
│       │   ├── client_account.go
│       │   ├── module.go
│       │   ├── push_notification.go
│       │   └── push_notification_test.go
│       └── util/
│           ├── webpush_decrypter.go
│           └── webpush_decrypter_test.go
├── server/
│   ├── Dockerfile
│   ├── Dockerfile.production
│   ├── api/
│   │   ├── .air.toml
│   │   ├── .gitignore
│   │   ├── cli/
│   │   │   └── create_admin_account/
│   │   │       └── main.go
│   │   ├── config/
│   │   │   └── .gitignore
│   │   ├── go.mod
│   │   ├── go.sum
│   │   ├── main.go
│   │   └── pkg/
│   │       ├── config/
│   │       │   └── config.go
│   │       ├── dao/
│   │       │   ├── account_dao.go
│   │       │   ├── dao.go
│   │       │   ├── instance_dao.go
│   │       │   └── meta_dao.go
│   │       ├── domain/
│   │       │   ├── account.go
│   │       │   ├── instance.go
│   │       │   ├── instance_info.go
│   │       │   ├── meta.go
│   │       │   ├── token.go
│   │       │   ├── webpush_decrypter.go
│   │       │   └── webpush_decrypter_test.go
│   │       ├── handler/
│   │       │   ├── admin/
│   │       │   │   ├── account.go
│   │       │   │   ├── admin_auth_middleware.go
│   │       │   │   └── admin_instance.go
│   │       │   ├── instances.go
│   │       │   └── push_to_fcm.go
│   │       └── repository/
│   │           ├── account_repository.go
│   │           ├── instance_repository.go
│   │           └── meta_repository.go
│   ├── client/
│   │   ├── .gitignore
│   │   ├── README.md
│   │   ├── package.json
│   │   ├── public/
│   │   │   ├── index.html
│   │   │   ├── manifest.json
│   │   │   └── robots.txt
│   │   ├── src/
│   │   │   ├── App.test.tsx
│   │   │   ├── App.tsx
│   │   │   ├── data/
│   │   │   │   └── instances.ts
│   │   │   ├── index.css
│   │   │   ├── index.tsx
│   │   │   ├── layout/
│   │   │   │   ├── app-bar-layout.tsx
│   │   │   │   ├── app-layout.tsx
│   │   │   │   ├── body-layout.tsx
│   │   │   │   ├── scroll-layout.tsx
│   │   │   │   └── side-menu-item-layout.tsx
│   │   │   ├── models/
│   │   │   │   ├── account.tsx
│   │   │   │   ├── date-schema.tsx
│   │   │   │   ├── instance-info.tsx
│   │   │   │   ├── instance.tsx
│   │   │   │   └── token.tsx
│   │   │   ├── pages/
│   │   │   │   └── admin/
│   │   │   │       ├── admin-root-page.tsx
│   │   │   │       ├── all-instances.tsx
│   │   │   │       ├── approved-instances-page.tsx
│   │   │   │       ├── components/
│   │   │   │       │   ├── instances-state-page.tsx
│   │   │   │       │   └── instances-table.tsx
│   │   │   │       ├── instance-client-max-body-size-form.tsx
│   │   │   │       ├── instance-detail-page.tsx
│   │   │   │       ├── instance-register-page.tsx
│   │   │   │       ├── instances-page.tsx
│   │   │   │       ├── login.tsx
│   │   │   │       └── unapproved-instances-page.tsx
│   │   │   ├── react-app-env.d.ts
│   │   │   ├── reportWebVitals.ts
│   │   │   ├── repositories/
│   │   │   │   ├── index.ts
│   │   │   │   ├── instance-repository.ts
│   │   │   │   └── token-repository.ts
│   │   │   ├── setupTests.ts
│   │   │   └── state/
│   │   │       └── auth.tsx
│   │   ├── tailwind.config.js
│   │   └── tsconfig.json
│   ├── docker/
│   │   ├── client/
│   │   │   ├── Dockerfile
│   │   │   └── Dockerfile.production
│   │   ├── nginx/
│   │   │   └── config/
│   │   │       └── default.conf
│   │   └── production/
│   │       └── nginx/
│   │           └── config/
│   │               └── default.conf
│   ├── docker-compose.production.yaml
│   └── docker-compose.yaml
├── settings.gradle
├── terms_of_service_ch.md
├── terms_of_service_en.md
└── terms_of_service_jp.md

================================================
FILE CONTENTS
================================================

================================================
FILE: .github/ISSUE_TEMPLATE/-------.md
================================================
---
name: 質問&サポート
about: わからないことや質問
title: ''
labels: ''
assignees: ''

---

## 困っていること

## 画面名、機能名など(任意)


================================================
FILE: .github/ISSUE_TEMPLATE/-----.md
================================================
---
name: 不具合報告
about: Create a report to help us improve
title: ''
labels: ''
assignees: ''

---

## 不具合の概要

## 再現方法
**不具合の再現方法を箇条書きで記述してください**
## 期待する動作

## Screenshots
**不具合が発生した時のスクリーンショットやキャプチャー**

## 不具合が発生した時の端末
 - Device:
 - OS Version:
 - App Version:

## 備考 


================================================
FILE: .github/ISSUE_TEMPLATE/bug_report.md
================================================
---
name: Bug report
about: Create a report to help us improve
title: ''
labels: ''
assignees: ''

---

## 不具合の概要

## 再現方法
**不具合の再現方法を箇条書きで記述してください**
## 期待する動作

## Screenshots
**不具合が発生した時のスクリーンショットやキャプチャー**

## 不具合が発生した時の端末
 - Device:
 - OS Version:
 - App Version:

## 備考 


================================================
FILE: .github/ISSUE_TEMPLATE/feature_request.md
================================================
---
name: Feature request
about: Suggest an idea for this project
title: ''
labels: ''
assignees: ''

---

**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]

**Describe the solution you'd like**
A clear and concise description of what you want to happen.

**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.

**Additional context**
Add any other context or screenshots about the feature request here.


================================================
FILE: .github/ISSUE_TEMPLATE/other.md
================================================
---
name: Other
about: Describe this issue template's purpose here.
title: ''
labels: ''
assignees: ''

---




================================================
FILE: .github/dependabot.yml
================================================
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates

version: 2
updates:
  - package-ecosystem: "gradle" # See documentation for possible values
    directory: "/" # Location of package manifests
    schedule:
      interval: "weekly"


================================================
FILE: .github/workflows/android-unit-test.yml
================================================
name: Android Unit Test
on:
  push:
    branches:
      - master
      - develop
  pull_request:
    branches:
      - master
      - develop

jobs:
  build:
    runs-on: ubuntu-latest
    timeout-minutes: 45
    steps:
      - uses: actions/checkout@v4
      - name: Set up JDK 17
        uses: actions/setup-java@v4
        with:
          java-version: '17'
          distribution: zulu
          cache: gradle

      - name: Generate secret.properties
        env:
          PUSH_TO_FCM_AUTH: ${{ secrets.PUSH_TO_FCM_AUTH }}
          PUSH_TO_FCM_PUBLIC_KEY: ${{ secrets.PUSH_TO_FCM_PUBLIC_KEY }}
          PUSH_TO_FCM_SERVER_BASE_URL: ${{ secrets.PUSH_TO_FCM_SERVER_BASE_URL }}
        run: |
          echo "push_to_fcm.server_base_url=${PUSH_TO_FCM_SERVER_BASE_URL}" >> ./secret.properties
          echo "push_to_fcm.public_key=${PUSH_TO_FCM_PUBLIC_KEY}" >> ./secret.properties
          echo "push_to_fcm.auth=${PUSH_TO_FCM_AUTH}" >> ./secret.properties
      - name: Grant execute permission for gradlew
        run: chmod +x gradlew
      - name: Run unit-test
        run: ./gradlew lint testDebug --continue
      - name: Build with Gradle
        run: ./gradlew assembleRelease
      - uses: actions/upload-artifact@v4
        with:
          name: outputs
          path: app/build/outputs/

================================================
FILE: .github/workflows/release.yml
================================================
name: Release Android to Google Play Store
on:
  push:
    branches-ignore:
      - '**'
    tags:
      - 'v*'

jobs:
  build:
    runs-on: ubuntu-latest
    timeout-minutes: 45
    steps:
      - uses: actions/checkout@v4
      - name: Set up JDK 17
        uses: actions/setup-java@v4
        with:
          java-version: '17'
          distribution: zulu
          cache: gradle
      - name: Decode Keystore
        run: |
          echo "${{ secrets.KEYSTORE_BASE64 }}" | base64 --decode > app/keystore.jks
          echo "KEYSTORE_PATH=$(pwd)/app/keystore.jks" >> $GITHUB_ENV
      - name: Generate secret.properties
        env:
          PUSH_TO_FCM_AUTH: ${{ secrets.PUSH_TO_FCM_AUTH }}
          PUSH_TO_FCM_PUBLIC_KEY: ${{ secrets.PUSH_TO_FCM_PUBLIC_KEY }}
          PUSH_TO_FCM_SERVER_BASE_URL: ${{ secrets.PUSH_TO_FCM_SERVER_BASE_URL }}
        run: |
          echo "push_to_fcm.server_base_url=${PUSH_TO_FCM_SERVER_BASE_URL}" >> ./secret.properties
          echo "push_to_fcm.public_key=${PUSH_TO_FCM_PUBLIC_KEY}" >> ./secret.properties
          echo "push_to_fcm.auth=${PUSH_TO_FCM_AUTH}" >> ./secret.properties
      - name: Get the version tag
        run: echo "ORG_GRADLE_PROJECT_VERSION_NAME=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV
      - name: Grant execute permission for gradlew
        run: chmod +x gradlew
      - name: Restore publish json key and write to ANDROID_PUBLISHER_CREDENTIALS
        run: |
            echo "${{ secrets.ANDROID_PUBLISHER_CREDENTIALS_BASE64 }}" | base64 --decode > app/google-play-publisher.json
            echo "ANDROID_PUBLISHER_CREDENTIALS_FILE=$(pwd)/app/google-play-publisher.json" >> $GITHUB_ENV
#        run: |
#          JSON_CONTENT="$(echo "${{ secrets.ANDROID_PUBLISHER_CREDENTIALS_BASE64 }}" | base64 --decode)"
#          echo "ANDROID_PUBLISHER_CREDENTIALS=$JSON_CONTENT" >> $GITHUB_ENV

      - name: Calculate version code
        run: echo "ORG_GRADLE_PROJECT_VERSION_CODE=$((${{ github.run_number }} + 3000))" >> $GITHUB_ENV
      - name: Assemble release build and publish
        env:
          KEYSTORE_PASSWORD: ${{ secrets.KEYSTORE_PASSWORD }}
          KEY_PASSWORD: ${{ secrets.KEY_PASSWORD }}
          ALIAS: ${{ secrets.ALIAS }}
        run: |
          ./gradlew publishBundle \
          -Pandroid.injected.signing.store.file=$KEYSTORE_PATH \
          -Pandroid.injected.signing.store.password=$KEYSTORE_PASSWORD \
          -Pandroid.injected.signing.key.alias=$ALIAS \
          -Pandroid.injected.signing.key.password=$KEY_PASSWORD
          







================================================
FILE: .github/workflows/release2github.yml
================================================
name: Release Android to Github Releases
on:
  push:
    branches-ignore:
      - '**'
    tags:
      - 'v*'

jobs:
  build:
    runs-on: ubuntu-latest
    timeout-minutes: 45
    steps:
      - uses: actions/checkout@v4
      - name: Set up JDK 17
        uses: actions/setup-java@v4
        with:
          java-version: '17'
          distribution: zulu
          cache: gradle
      - name: Decode Keystore
        run: |
          echo "${{ secrets.KEYSTORE_BASE64 }}" | base64 --decode > app/keystore.jks
          echo "KEYSTORE_PATH=$(pwd)/app/keystore.jks" >> $GITHUB_ENV
      - name: Generate secret.properties
        env:
          PUSH_TO_FCM_AUTH: ${{ secrets.PUSH_TO_FCM_AUTH }}
          PUSH_TO_FCM_PUBLIC_KEY: ${{ secrets.PUSH_TO_FCM_PUBLIC_KEY }}
          PUSH_TO_FCM_SERVER_BASE_URL: ${{ secrets.PUSH_TO_FCM_SERVER_BASE_URL }}
        run: |
          echo "push_to_fcm.server_base_url=${PUSH_TO_FCM_SERVER_BASE_URL}" >> ./secret.properties
          echo "push_to_fcm.public_key=${PUSH_TO_FCM_PUBLIC_KEY}" >> ./secret.properties
          echo "push_to_fcm.auth=${PUSH_TO_FCM_AUTH}" >> ./secret.properties
      - name: Get the version tag
        run: echo "ORG_GRADLE_PROJECT_VERSION_NAME=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV
      - name: Grant execute permission for gradlew
        run: chmod +x gradlew

      - name: Calculate version code
        run: echo "ORG_GRADLE_PROJECT_VERSION_CODE=$((${{ github.run_number }} + 3000))" >> $GITHUB_ENV
      - name: build apk
        env:
          KEYSTORE_PASSWORD: ${{ secrets.KEYSTORE_PASSWORD }}
          KEY_PASSWORD: ${{ secrets.KEY_PASSWORD }}
          ALIAS: ${{ secrets.ALIAS }}
        run: |
          ./gradlew assembleRelease \
          -Pandroid.injected.signing.store.file=$KEYSTORE_PATH \
          -Pandroid.injected.signing.store.password=$KEYSTORE_PASSWORD \
          -Pandroid.injected.signing.key.alias=$ALIAS \
          -Pandroid.injected.signing.key.password=$KEY_PASSWORD
      - name: release to github releases
        uses: ncipollo/release-action@v1
        with:
          artifacts: "app/build/outputs/**/*.apk"
          token: ${{ secrets.GITHUB_TOKEN }}








================================================
FILE: .gitignore
================================================
# Built application files
*.apk
*.ap_
*.aab

# Files for the ART/Dalvik VM
*.dex

# Java class files
*.class

# Generated files
bin/
gen/
out/
#  Uncomment the following line in case you need and you don't have the release build type files in your app
# release/

# Gradle files
.gradle/
build/

# Local configuration file (sdk path, etc)
local.properties
secret.properties
benchmark.properties
# Proguard folder generated by Eclipse
proguard/

# Log Files
*.log

# Android Studio Navigation editor temp files
.navigation/

# Android Studio captures folder
captures/

# IntelliJ
*.iml
.idea/workspace.xml
.idea/tasks.xml
.idea/gradle.xml
.idea/assetWizardSettings.xml
.idea/dictionaries
.idea/libraries
# Android Studio 3 in .gitignore file.
.idea/caches
.idea/modules.xml
# Comment next line if keeping position of elements in Navigation Editor is relevant for you
.idea/navEditor.xml

.idea/codeStyles/*
# User-specific configurations
.idea/caches/build_file_checksums.ser
.idea/codeStyles/
.idea/compiler.xml
.idea/copyright/profiles_settings.xml
.idea/dictionaries/
.idea/libraries/
.idea/misc.xml
.idea/scopes/scope_settings.xml
.idea/.name

# Keystore files
# Uncomment the following lines if you do not want to check your keystore files in.
#*.jks
#*.keystore

# External native build folder generated in Android Studio 2.2 and later
.externalNativeBuild

# Google Services (e.g. APIs or Firebase)
# google-services.json

# Freeline
freeline.py
freeline/
freeline_project_description.json

# fastlane
fastlane/report.xml
fastlane/Preview.html
fastlane/screenshots
fastlane/test_output
fastlane/readme.md

# Version control
vcs.xml

# lint
lint/intermediates/
lint/generated/
lint/outputs/
lint/tmp/
# lint/reports/

SecretConstant.java
SecretConstantTest.java
MisskeyAndroidClient.zip

.DS_Store
*.jks

================================================
FILE: .idea/.gitignore
================================================
runConfigurations.xml
deploymentTargetDropDown.xml
!.gitignore
androidTestResultsUserPreferences.xml
/inspectionProfiles

================================================
FILE: .idea/AndroidProjectSystem.xml
================================================
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
  <component name="AndroidProjectSystem">
    <option name="providerId" value="com.android.tools.idea.GradleProjectSystem" />
  </component>
</project>

================================================
FILE: .idea/GitLink.xml
================================================
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
  <component name="uk.co.ben_gibson.git.link.SettingsState">
    <option name="fallbackBranch" value="develop" />
    <option name="host" value="72037fcc-cb9c-4c22-960a-ffe73fd5e229" />
  </component>
</project>

================================================
FILE: .idea/deploymentTargetSelector.xml
================================================
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
  <component name="deploymentTargetSelector">
    <selectionStates>
      <SelectionState runConfigName="app">
        <option name="selectionMode" value="DROPDOWN" />
        <DropdownSelection timestamp="2026-04-11T07:25:48.537794Z">
          <Target type="DEFAULT_BOOT">
            <handle>
              <DeviceId pluginId="LocalEmulator" identifier="path=/Users/panta/.android/avd/Pixel_7_Pro_API_34.avd" />
            </handle>
          </Target>
        </DropdownSelection>
        <DialogSelection />
      </SelectionState>
      <SelectionState runConfigName="TimelineCacheDAOTest">
        <option name="selectionMode" value="DROPDOWN" />
      </SelectionState>
      <SelectionState runConfigName="getTimelineItems()">
        <option name="selectionMode" value="DROPDOWN" />
      </SelectionState>
      <SelectionState runConfigName="findLastPreviousId()">
        <option name="selectionMode" value="DROPDOWN" />
      </SelectionState>
    </selectionStates>
  </component>
</project>

================================================
FILE: .idea/deviceManager.xml
================================================
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
  <component name="DeviceTable">
    <option name="columnSorters">
      <list>
        <ColumnSorterState>
          <option name="column" value="Name" />
          <option name="order" value="ASCENDING" />
        </ColumnSorterState>
      </list>
    </option>
  </component>
</project>

================================================
FILE: .idea/encodings.xml
================================================
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
  <component name="Encoding" addBOMForNewFiles="with NO BOM" />
</project>

================================================
FILE: .idea/jarRepositories.xml
================================================
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
  <component name="RemoteRepositoriesConfiguration">
    <remote-repository>
      <option name="id" value="central" />
      <option name="name" value="Maven Central repository" />
      <option name="url" value="https://repo1.maven.org/maven2" />
    </remote-repository>
    <remote-repository>
      <option name="id" value="jboss.community" />
      <option name="name" value="JBoss Community repository" />
      <option name="url" value="https://repository.jboss.org/nexus/content/repositories/public/" />
    </remote-repository>
    <remote-repository>
      <option name="id" value="BintrayJCenter" />
      <option name="name" value="BintrayJCenter" />
      <option name="url" value="https://jcenter.bintray.com/" />
    </remote-repository>
    <remote-repository>
      <option name="id" value="maven" />
      <option name="name" value="maven" />
      <option name="url" value="https://jitpack.io" />
    </remote-repository>
    <remote-repository>
      <option name="id" value="Google" />
      <option name="name" value="Google" />
      <option name="url" value="https://dl.google.com/dl/android/maven2/" />
    </remote-repository>
    <remote-repository>
      <option name="id" value="MavenRepo" />
      <option name="name" value="MavenRepo" />
      <option name="url" value="https://repo.maven.apache.org/maven2/" />
    </remote-repository>
    <remote-repository>
      <option name="id" value="maven2" />
      <option name="name" value="maven2" />
      <option name="url" value="https://maven.google.com" />
    </remote-repository>
  </component>
</project>

================================================
FILE: .idea/kotlinc.xml
================================================
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
  <component name="KotlinJpsPluginSettings">
    <option name="version" value="2.0.0" />
  </component>
</project>

================================================
FILE: .idea/markdown.xml
================================================
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
  <component name="MarkdownSettings">
    <option name="previewPanelProviderInfo">
      <ProviderInfo name="Compose (experimental)" className="com.intellij.markdown.compose.preview.ComposePanelProvider" />
    </option>
  </component>
</project>

================================================
FILE: CLAUDE.md
================================================
# Milktea Android SDK 対応チェックリスト

このファイルはAndroid最新SDK対応の進捗管理用です。
作業完了したタスクは `- [ ]` を `- [x]` に変えてください。

---

## Phase 1: M3 テーマ基盤の構築

**全 Compose 作業の前提条件。最初に完了させる。**

### 1-1. XML テーマを Material3 に移行
- [x] `app/src/main/res/values-v23/themes.xml` — `Theme.MaterialComponents` → `Theme.Material3`、システムバー色属性を削除
- [x] `app/src/main/res/values-v27/themes.xml` — 同上
- [x] `modules/common_resource/src/main/res/values/themes.xml` — 同上(Dark/Black/Bread/ElephantDark テーマ)
- [x] `app/src/main/res/values-v21/styles.xml` — 古いスタイル整理
- [x] `modules/common_resource/src/main/res/values/styles.xml` — Widget.MaterialComponents.* → Widget.Material3.* に更新

### 1-2. Compose M3 テーマラッパーの作成
現在 `MdcTheme`(Material2 ブリッジ)を使用中 → M3 の `MaterialTheme` に置き換える。
- [x] `modules/common_compose/MilkteaTheme.kt` に M3 用 `ColorScheme` を 5テーマ分定義
  - White / Dark / Black / Bread / ElephantDark
  - `Theme.toColorScheme()` 拡張関数で ThemeUtil.kt の Theme enum と同期
- [x] `MdcTheme { }` → `MaterialTheme(colorScheme = ...) { }` に置き換え
- [x] `libs.versions.toml` に `compose-material3 = "1.3.1"` を追加
- [x] `common_compose/build.gradle` で material2 → material3 に差し替え、MdcTheme アダプター削除
- [x] ビルド確認(Phase 2 の import 置き換え前なのでコンパイルエラーが大量に出る想定)

---

## Phase 2: Compose 全体の M3 移行

**ビルドエラーを潰しながら進める。一気にやらず機能モジュール単位で対応。**

### 2-1. 全ファイルの import 置き換え
- [x] `androidx.compose.material.` → `androidx.compose.material3.` に一括置換(注意: API が変わるものがある)

### 2-2. API 変更対応(M2 → M3 で変わる主要コンポーネント)

| M2 | M3 | 対応ファイル数 |
|----|-----|------------|
| `MaterialTheme.colors.*` | `MaterialTheme.colorScheme.*` | 多数 |
| `TopAppBar(backgroundColor=)` | `TopAppBar(colors=TopAppBarDefaults.*)` | 多数 |
| `ModalBottomSheetLayout` | `ModalBottomSheet` | 3ファイル |
| `Scaffold(backgroundColor=)` | `Scaffold(containerColor=)` | 33ファイル |
| `Card(backgroundColor=)` | `Card(colors=CardDefaults.*)` | 多数 |
| `Divider` | `HorizontalDivider` | 複数 |
| `TabRow` | `TabRow`(ほぼ同じだが色指定が変わる) | 複数 |

### 2-3. `ModalBottomSheetLayout` → `ModalBottomSheet` の書き換え(API が別物)
- [x] `SearchAndSelectUserScreen.kt`
- [x] `TabItemsListScreen.kt`
- [x] `AccountSettingScreen.kt`

### 2-4. モジュール別動作確認
- [x] `features/auth` — AuthScreen, SignUpScreen 等
- [x] `features/setting` — 22ファイル(最多)
- [x] `features/note` — エディタ周り
- [x] `features/channel` — ChannelScreen
- [x] `features/drive` — DriveScreen
- [x] `features/user` — ユーザー画面
- [x] `features/messaging` — MessageScreen
- [x] `features/gallery` — GalleryEditorPage
- [x] `features/clip`, `group`, `userlist`, `search`, `account`
- [x] `common_compose`, `common_android_ui` — 共通コンポーネント

### ビルド確認
- [x] `./gradlew :app:assembleDebug` BUILD SUCCESSFUL

---

## Phase 3: Accompanist 廃止ライブラリの置き換え

M3 移行後に対応(M3 の PullToRefreshBox を使うため)。

- [x] `accompanist-swiperefresh`(0.25.1)→ Material3 `PullToRefreshBox` に置き換え(`user/followrequests/FollowRequestsScreen.kt` 等)
- [x] `accompanist-pager`(0.14.0)→ Compose Foundation の `HorizontalPager` / `VerticalPager` に置き換え
  - `ChannelScreen.kt`(`ExperimentalPagerApi` 使用中)
  - `DriveScreen.kt`(`ExperimentalPagerApi` 使用中)

---

## Phase 4: enableEdgeToEdge() 追加 + テーマのシステムバー色設定を削除

`enableEdgeToEdge()` がシステムバー色を管理するため、テーマ側の設定と競合する(Phase 1 で XML テーマから削除済みのはず)。

- [x] 全 Activity に `enableEdgeToEdge()` を追加(`onCreate` の `setContentView` より前)

---

## Phase 5: Compose 画面の Insets 対応

Phase 4 で `enableEdgeToEdge()` が有効になった後、Compose 側の Insets を整備する。

- [x] 全 `Scaffold` に `contentWindowInsets = WindowInsets.safeDrawing` を設定(33ファイル)
- [x] `AuthScreen.kt` — 既存の `windowInsetsPadding` を `safeDrawing` に統一
- [x] `MessageScreen.kt` — 同上

---

## Phase 6: 簡単な Android View Activity の個別 Insets 対応

`adjustResize` → `adjustNothing` への変更 + `ViewCompat.setOnApplyWindowInsetsListener` で Insets を手動適用。

- [x] `AuthorizationActivity` — `windowSoftInputMode` 変更 + Insets 対応
- [x] `SearchActivity` — `windowSoftInputMode` 変更 + Insets 対応
- [x] `GalleryPostsActivity` — `windowSoftInputMode` 変更 + Insets 対応
- [x] `SearchAndSelectUserActivity` — `windowSoftInputMode` 変更 + Insets 対応

---

## Phase 7: MainActivity(DrawerLayout)対応

DrawerLayout は `fitsSystemWindows` の挙動が変わるため個別対応が必要。

> **注意: ViewPager2 の Insets 非伝播問題**
> ViewPager2 は内部の `RecyclerView` が Window Insets を子 View に伝播しない既知の問題がある。
> 各 Fragment が独自に Insets を処理するか、以下のワークアラウンドが必要:
> ```kotlin
> ViewCompat.setOnApplyWindowInsetsListener(viewPager) { _, insets ->
>     for (i in 0 until viewPager.childCount) {
>         ViewCompat.dispatchApplyWindowInsets(viewPager.getChildAt(i), insets)
>     }
>     insets
> }
> ```
>
> **ViewPager2 使用箇所(要個別確認):**
> - `TabFragment` — メインタブ(MainActivity 内)
> - `SearchTopFragment` — 検索タブ
> - `SearchResultActivity` — 検索結果タブ
> - `MediaActivity` — メディアビューア
> - `NoteDetailPagerFragment` — ノート詳細
> - `UserDetailActivity` — ユーザープロフィールタブ
> - `GalleryPostTabFragment` — ギャラリータブ
> - `NotificationMentionFragment` — 通知タブ
> - `EmojiPickerFragment` — 絵文字ピッカー
> - `ReactionHistoryPagerDialog` — リアクション履歴
> - `BottomSheetViewPager` — ボトムシート内 ViewPager

- [x] `activity_main.xml` の DrawerLayout から `android:fitsSystemWindows="true"` を削除(NavigationView は保持)
- [x] `MainActivity` に `enableEdgeToEdge()` 追加(Phase 4 で対応済み)
- [x] `MainActivity` に `ViewCompat.setOnApplyWindowInsetsListener` を追加、BottomNavigationView に bottom inset を適用
- [x] `fragment_tab.xml` の AppBarLayout に `fitsSystemWindows="true"` を追加して status bar inset を処理
- [ ] ナビゲーションドロワーの表示確認(要実機確認)
- [ ] `windowSoftInputMode="adjustPan"` → `adjustNothing` への変更検討
- [ ] `TabFragment` の ViewPager2 に Insets dispatch ワークアラウンドを追加(TabFragment は旧 ViewPager を使用、不要)

---

## Phase 8: キーボード絡みの Activity 対応

IME(ソフトキーボード)表示時のレイアウト調整が必要な Activity。

- [x] `NoteEditorActivity` — `adjustResize` → `adjustNothing` + `WindowInsetsCompat.Type.ime()` で対応
- [x] `MessageActivity` — `adjustResize` → `adjustNothing` + IME Insets でチャット UI を押し上げ(MessageScreen.kt の contentWindowInsets を safeContent に変更)

---

## Phase 9: SDK・ライブラリバージョン更新

### SDK
- [x] `compileSdk` 34 → 35
- [x] `targetSdk` 34 → 35

### AGP・ビルドツール
- [x] AGP `8.1.3` → `8.7.3` / Gradle `8.4` → `8.9`
- [x] Google Services Plugin `4.3.15` → `4.4.2`
- [x] Firebase Crashlytics Gradle `2.9.7` → `3.0.3`

### ライブラリ
- [ ] Kotlin `2.0.0` → `2.1.x`(**要 kapt → KSP 移行**。Dagger/Hilt の kapt が Kotlin 2.1.x メタデータ形式未対応)
- [ ] Compose BOM 最新化(現在 `1.7.1`)
- [x] Hilt `2.48.1` → `2.56` / hilt-work, hilt-compiler `1.0.0` → `1.2.0`
- [x] Room `2.6.0` → `2.7.0`
- [ ] Coil `2.4.0` → `3.x`(API 変更あり、要注意)
- [x] OkHttp `4.10.0` → `4.12.0`
- [x] Retrofit `2.9.0` → `2.11.0`
- [x] Firebase BOM `32.2.2` → `33.12.0`
- [x] kotlinx.datetime `0.4.0` → `0.6.1`
- [x] kotlinx.serialization `1.6.3` → `1.7.3`
- [x] coroutines `1.7.3` → `1.8.1`(新たに libs.versions.toml 管理へ)
- [x] `swiperefreshlayout` `1.2.0-alpha01` → `1.1.0`(安定版)
- [x] desugar_jdk_libs `1.1.5` → `2.1.3`

### benchmark モジュール
- [x] `benchmark/build.gradle` の Java バージョンを `1.8` → `17` に統一

### その他対応
- [x] バージョン定義を `libs.versions.toml` に一元化(room/retrofit/coroutines/nav/firebase-bom を ext ブロックから移行)
- [x] SDK 35 対応: `Bitmap.Config` nullable 化 (`QRCodeBitmapGenerator.kt`)
- [x] Firebase BOM 33.x 対応: `play-services-base` を data module に明示追加

### 残タスク(Phase 10 候補)
- [ ] Kotlin `2.1.x` 移行(kapt → KSP への全モジュール移行が必要)
- [ ] Coil `3.x` 移行(アーティファクト ID 変更 + API 変更)
- [ ] Compose BOM 最新化

---

## Phase 10: 16KB ページサイズ対応

Android 15 以降で 16KB ページサイズデバイスに対応するための変更。

- [x] `AndroidManifest.xml` に `android:extractNativeLibs="false"` を追加(.so を APK 内で非圧縮格納し直接 mmap 可能にする)
- [x] Flipper を削除(16KB 非対応のネイティブライブラリ libflipper.so 等を除去)
  - `app/build.gradle` から `com.facebook.flipper:flipper`, `soloader`, `flipper-network-plugin` を削除
  - `FlipperSetupManagerImpl.kt` を削除
  - `DebugAppModule.kt` / `DebugAPIModule.kt` を no-op 実装に置き換え
  - `EmptyDebuggerSetupManagerImpl` を `main` ソースセットに移動

---

## 参考:主要ファイルパス

| 内容 | パス |
|------|------|
| アプリ build.gradle | `app/build.gradle` |
| バージョンカタログ | `libs.versions.toml` |
| AndroidManifest | `app/src/main/AndroidManifest.xml` |
| Compose テーマ | `modules/common_compose/src/main/java/net/pantasystem/milktea/common_compose/MilkteaTheme.kt` |
| テーマユーティリティ | `app/src/main/java/jp/panta/misskeyandroidclient/ThemeUtil.kt` |
| MainActivity | `app/src/main/java/jp/panta/misskeyandroidclient/MainActivity.kt` |
| メインレイアウト | `app/src/main/res/layout/activity_main.xml` |
| テーマ(v23) | `app/src/main/res/values-v23/themes.xml` |
| テーマ(v27) | `app/src/main/res/values-v27/themes.xml` |
| 共通テーマ | `modules/common_resource/src/main/res/values/themes.xml` |
| AuthScreen | `modules/features/auth/src/main/java/net/pantasystem/milktea/auth/AuthScreen.kt` |
| MessageScreen | `modules/features/messaging/src/main/java/net/pantasystem/milktea/messaging/MessageScreen.kt` |
| ChannelScreen | `modules/features/channel/src/main/java/net/pantasystem/milktea/channel/ChannelScreen.kt` |
| DriveScreen | `modules/features/drive/src/main/java/net/pantasystem/milktea/drive/DriveScreen.kt` |
| 設定 Compose | `modules/features/setting/src/main/java/net/pantasystem/milktea/setting/` |


================================================
FILE: CONTRIBUTING.md
================================================
# Contribution Guide
Milkteaにコントリビュートするためのガイドです。  

## Issue
下記のIssueを受け付けています。  
- 不具合報告
- 新機能要望
- 機能強化要望
- 質問

## Pull Request
Pull Requestはいつでも大歓迎です!  
IssueからPull Requestを作成するときは、必ずAssignするようにしてください。  
Pull Requestを作成するときは下記ルールに従い作成するようにしてください。  
- ライセンスや法を遵守したコードであること
- アーキテクチャやコーディング規約が存在する場合はそれらに従ったコードを書くこと
- テンプレートに従いPRを作成すること
- 動作するコードであること(CI/CDが完了する&エミュレーターで動作することを確認してください)

## ブランチの命名規則
### 機能開発&リファクタリング
Issueが存在しない場合はfeatureで初めてスラッシュで区切って、作業名や機能名で分割するようにしてください  
`feature/機能名`  
機能ブランチかつIssueが存在する場合はfeatureスラッシュ、で初めて次にシャープIssue番号、次にスラッシュで区切って作業名や機能名で分割するようにしてください。  
`feature/#Issue番号/機能名`

### 不具合修正系
hotfixで始めるようにして、Issueが存在する場合はIssue番号を入れて、
存在しない場合はそのまま修正する機能名や不具合名で始めるようにしてください。  
`hotfix/#Issue番号/機能名or不具合名`  
`hotfix/機能名or不具合名`

# アーキテクチャ
現在MilkteaではMVVMアーキテクチャをベースとしたアーキテクチャを採用しています。  
非同期系の処理にはCoroutinesを採用しています。  
リアクティブ系の処理にはCoroutines Flowを使用して処理をしています。  

## ディレクトリ構成
Milkteaではマルチモジュール構成になっていて、以下のような構造になっています。
```
.  
├──app  
├──modules  
   ├──api  
   ├──api_streaming
   ├──app_store
   ├──common
   ├──common_android
   ├──common_android_ui
   ├──common_compose
   ├──common_navigation
   ├──common_resource
   ├──common_viewmodel
   ├──data
   ├──features
      ├──antenna
      ├──auth
      ├──channel
      ├──drive
      ├──favorite
      ├──gallery
      ├──group
      ├──media
      ├──messaging
      ├──note
      ├──notification
      ├──search
      ├──setting
      ├──user
      ├──userlist
   ├──model
```
### app
MainActivityなどの初回起動系のActivityやその関連の処理が入っています。
### modules
各種モジュールが入っているモジュールディレクトリです。
### api
Retrofit2のインターフェースや、通信のためのDTOなどのオブジェクトがここに入っています。
### api_streaming
MisskeyのStreaming APIに関する処理のモジュールです。
### app_store
アプリ全体で共有したい状態を管理する機能のことをMilkteaでは.*Storeと呼んでいて、
app_storeモジュールはそれら機能を配置するためのモジュールです。
### common
Android, プロジェクトに依存しないような共通で使われる機能用のモジュールです。
### common_android
Androidに関する共通機能を内包したモジュールです。  
UIに関する機能は後述するcommon_android_uiかcommon_composeに分類しています。

### common_android_ui
AndroidのUIに関する共通機能などをここに分類しています。 
### common_compose
Jetpack Composeに関する共通機能をここに分類しています。
### common_navigation
マルチモジュールを実現するために、遷移先の実装を抽象化する必要がありました。
common_navigationは画面繊維や、その抽象のためのインターフェースが分類されています。

### common_resource
drawableやstringsなどで共通して使いたいリソースをここに分類しています。

### common_viewmodel
本来ViewModelは画面:1で存在するべきものですが、  
確認ダイアログやアプリ全体で共通して使う必要のあるViewModel実装をここに分類しています。  
基本的には.*Storeで事足りるので、滅多に使わないものだと思ってください。

### data
API通信やDB処理に関する実装クラスがここに入っています。  
後述するmodelに作成された抽象をここで実装することが多いです。  

### features
このディレクトリには、各種機能ごとのUIのモジュールが格納されています。  
各種機能のモジュールには、viewmodelやそのUIに関する処理が格納されています。  

### model
ビジネスロジックや、APIやDB処理やキャッシュ処理などの抽象がここに入っています。  
一般的にはここに抽象が作成され、dataモジュールで実装され、HiltというDIコンテナーで依存性の解決を行うことが多いです。

## 代表的な役割クラス
MilkteaではMVVMアーキテクチャを採用しています。  
その中でもMilktea内でよく使われる概念や用語の説明をします。  

### リソース名(Entity)
UserやNoteなどのリソース名を直接指定したオブジェクトをEntityと呼称しています。  
主にそのリソースに関するフィールドを持っていたり、そのデータに関連する振る舞いの実装を持っていることが多いです。  

### リソース名Repository(Repository)
永続化処理に関する抽象クラスです。  
主にAPIへの取得、更新リクエストや、DBへの取得更新リクエストを行なっています。  
またMilkteaでは後述するDataSourceというサーバキャッシュ層を持っており、それらの更新をRepositoryが担っていたりします。  

### リソース名DataSource(DataSource)
サーバーから取得したデータ(Entity)のキャッシュを行なっています。  
実際には実装クラスがあり、メモリ上やSQLite上に実装されることがあります。

### リソース名Relation
複数のEntityを組み合わせた構造体です。

### 機能名,画面名ViewModel(ViewModel)
ViewModelです。

### 機能名,画面名Activity(Activity)
Activityです。

### 機能名,画面名Fragment(Fragment)
Fragmentです。

### 要素名Adapter(RecyclerView.Adapter)
RecyclerView.Adapterの実装クラスです。  
ごく稀に諸事情でListViewのAdapter実装クラスの場合もあります。  

### リソース名ViewData
EntityやRelationをよりViewに最適化した構造のことをViewDataと呼称しています。  
レイヤーとしてはViewModelやアプリケーション層に分類されると思っています。

## ビルドするには

プロジェクトをgit cloneします。  
secret.propertiesを作成します。  
```
touch secret.properties
```
secret.propertiesには  
以下のような属性を追加してプッシュ通知の中継鯖についての設定をします。  
プッシュ通知中継サーバについて  
https://github.com/pantasystem/MisskeyAndroidClient/blob/develop/PushToFCM/README.md  

push_to_fcm.server_base_urlにはプッシュ通知サーバのベースURLを設定します。  
push_to_fcm.public_keyにはPushToFCMで生成したpublicを設定します。  
push_to_fcm.authにはPushToFCMで生成したauthを設定します。  

```
push_to_fcm.server_base_url=https://hogehogehoge-pus
push_to_fcm.public_key=中継鯖(PushToFCM)に設定したpublic_keyを設定します
push_to_fcm.auth=中継鯖に設定したauth_secret.txtを設定します
```
Android SDK, AndroidStudioでビルドします。  

================================================
FILE: LICENSE
================================================
                    GNU GENERAL PUBLIC LICENSE
                       Version 3, 29 June 2007

 Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
 Everyone is permitted to copy and distribute verbatim copies
 of this license document, but changing it is not allowed.

                            Preamble

  The GNU General Public License is a free, copyleft license for
software and other kinds of works.

  The licenses for most software and other practical works are designed
to take away your freedom to share and change the works.  By contrast,
the GNU General Public License is intended to guarantee your freedom to
share and change all versions of a program--to make sure it remains free
software for all its users.  We, the Free Software Foundation, use the
GNU General Public License for most of our software; it applies also to
any other work released this way by its authors.  You can apply it to
your programs, too.

  When we speak of free software, we are referring to freedom, not
price.  Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
them if you wish), that you receive source code or can get it if you
want it, that you can change the software or use pieces of it in new
free programs, and that you know you can do these things.

  To protect your rights, we need to prevent others from denying you
these rights or asking you to surrender the rights.  Therefore, you have
certain responsibilities if you distribute copies of the software, or if
you modify it: responsibilities to respect the freedom of others.

  For example, if you distribute copies of such a program, whether
gratis or for a fee, you must pass on to the recipients the same
freedoms that you received.  You must make sure that they, too, receive
or can get the source code.  And you must show them these terms so they
know their rights.

  Developers that use the GNU GPL protect your rights with two steps:
(1) assert copyright on the software, and (2) offer you this License
giving you legal permission to copy, distribute and/or modify it.

  For the developers' and authors' protection, the GPL clearly explains
that there is no warranty for this free software.  For both users' and
authors' sake, the GPL requires that modified versions be marked as
changed, so that their problems will not be attributed erroneously to
authors of previous versions.

  Some devices are designed to deny users access to install or run
modified versions of the software inside them, although the manufacturer
can do so.  This is fundamentally incompatible with the aim of
protecting users' freedom to change the software.  The systematic
pattern of such abuse occurs in the area of products for individuals to
use, which is precisely where it is most unacceptable.  Therefore, we
have designed this version of the GPL to prohibit the practice for those
products.  If such problems arise substantially in other domains, we
stand ready to extend this provision to those domains in future versions
of the GPL, as needed to protect the freedom of users.

  Finally, every program is threatened constantly by software patents.
States should not allow patents to restrict development and use of
software on general-purpose computers, but in those that do, we wish to
avoid the special danger that patents applied to a free program could
make it effectively proprietary.  To prevent this, the GPL assures that
patents cannot be used to render the program non-free.

  The precise terms and conditions for copying, distribution and
modification follow.

                       TERMS AND CONDITIONS

  0. Definitions.

  "This License" refers to version 3 of the GNU General Public License.

  "Copyright" also means copyright-like laws that apply to other kinds of
works, such as semiconductor masks.

  "The Program" refers to any copyrightable work licensed under this
License.  Each licensee is addressed as "you".  "Licensees" and
"recipients" may be individuals or organizations.

  To "modify" a work means to copy from or adapt all or part of the work
in a fashion requiring copyright permission, other than the making of an
exact copy.  The resulting work is called a "modified version" of the
earlier work or a work "based on" the earlier work.

  A "covered work" means either the unmodified Program or a work based
on the Program.

  To "propagate" a work means to do anything with it that, without
permission, would make you directly or secondarily liable for
infringement under applicable copyright law, except executing it on a
computer or modifying a private copy.  Propagation includes copying,
distribution (with or without modification), making available to the
public, and in some countries other activities as well.

  To "convey" a work means any kind of propagation that enables other
parties to make or receive copies.  Mere interaction with a user through
a computer network, with no transfer of a copy, is not conveying.

  An interactive user interface displays "Appropriate Legal Notices"
to the extent that it includes a convenient and prominently visible
feature that (1) displays an appropriate copyright notice, and (2)
tells the user that there is no warranty for the work (except to the
extent that warranties are provided), that licensees may convey the
work under this License, and how to view a copy of this License.  If
the interface presents a list of user commands or options, such as a
menu, a prominent item in the list meets this criterion.

  1. Source Code.

  The "source code" for a work means the preferred form of the work
for making modifications to it.  "Object code" means any non-source
form of a work.

  A "Standard Interface" means an interface that either is an official
standard defined by a recognized standards body, or, in the case of
interfaces specified for a particular programming language, one that
is widely used among developers working in that language.

  The "System Libraries" of an executable work include anything, other
than the work as a whole, that (a) is included in the normal form of
packaging a Major Component, but which is not part of that Major
Component, and (b) serves only to enable use of the work with that
Major Component, or to implement a Standard Interface for which an
implementation is available to the public in source code form.  A
"Major Component", in this context, means a major essential component
(kernel, window system, and so on) of the specific operating system
(if any) on which the executable work runs, or a compiler used to
produce the work, or an object code interpreter used to run it.

  The "Corresponding Source" for a work in object code form means all
the source code needed to generate, install, and (for an executable
work) run the object code and to modify the work, including scripts to
control those activities.  However, it does not include the work's
System Libraries, or general-purpose tools or generally available free
programs which are used unmodified in performing those activities but
which are not part of the work.  For example, Corresponding Source
includes interface definition files associated with source files for
the work, and the source code for shared libraries and dynamically
linked subprograms that the work is specifically designed to require,
such as by intimate data communication or control flow between those
subprograms and other parts of the work.

  The Corresponding Source need not include anything that users
can regenerate automatically from other parts of the Corresponding
Source.

  The Corresponding Source for a work in source code form is that
same work.

  2. Basic Permissions.

  All rights granted under this License are granted for the term of
copyright on the Program, and are irrevocable provided the stated
conditions are met.  This License explicitly affirms your unlimited
permission to run the unmodified Program.  The output from running a
covered work is covered by this License only if the output, given its
content, constitutes a covered work.  This License acknowledges your
rights of fair use or other equivalent, as provided by copyright law.

  You may make, run and propagate covered works that you do not
convey, without conditions so long as your license otherwise remains
in force.  You may convey covered works to others for the sole purpose
of having them make modifications exclusively for you, or provide you
with facilities for running those works, provided that you comply with
the terms of this License in conveying all material for which you do
not control copyright.  Those thus making or running the covered works
for you must do so exclusively on your behalf, under your direction
and control, on terms that prohibit them from making any copies of
your copyrighted material outside their relationship with you.

  Conveying under any other circumstances is permitted solely under
the conditions stated below.  Sublicensing is not allowed; section 10
makes it unnecessary.

  3. Protecting Users' Legal Rights From Anti-Circumvention Law.

  No covered work shall be deemed part of an effective technological
measure under any applicable law fulfilling obligations under article
11 of the WIPO copyright treaty adopted on 20 December 1996, or
similar laws prohibiting or restricting circumvention of such
measures.

  When you convey a covered work, you waive any legal power to forbid
circumvention of technological measures to the extent such circumvention
is effected by exercising rights under this License with respect to
the covered work, and you disclaim any intention to limit operation or
modification of the work as a means of enforcing, against the work's
users, your or third parties' legal rights to forbid circumvention of
technological measures.

  4. Conveying Verbatim Copies.

  You may convey verbatim copies of the Program's source code as you
receive it, in any medium, provided that you conspicuously and
appropriately publish on each copy an appropriate copyright notice;
keep intact all notices stating that this License and any
non-permissive terms added in accord with section 7 apply to the code;
keep intact all notices of the absence of any warranty; and give all
recipients a copy of this License along with the Program.

  You may charge any price or no price for each copy that you convey,
and you may offer support or warranty protection for a fee.

  5. Conveying Modified Source Versions.

  You may convey a work based on the Program, or the modifications to
produce it from the Program, in the form of source code under the
terms of section 4, provided that you also meet all of these conditions:

    a) The work must carry prominent notices stating that you modified
    it, and giving a relevant date.

    b) The work must carry prominent notices stating that it is
    released under this License and any conditions added under section
    7.  This requirement modifies the requirement in section 4 to
    "keep intact all notices".

    c) You must license the entire work, as a whole, under this
    License to anyone who comes into possession of a copy.  This
    License will therefore apply, along with any applicable section 7
    additional terms, to the whole of the work, and all its parts,
    regardless of how they are packaged.  This License gives no
    permission to license the work in any other way, but it does not
    invalidate such permission if you have separately received it.

    d) If the work has interactive user interfaces, each must display
    Appropriate Legal Notices; however, if the Program has interactive
    interfaces that do not display Appropriate Legal Notices, your
    work need not make them do so.

  A compilation of a covered work with other separate and independent
works, which are not by their nature extensions of the covered work,
and which are not combined with it such as to form a larger program,
in or on a volume of a storage or distribution medium, is called an
"aggregate" if the compilation and its resulting copyright are not
used to limit the access or legal rights of the compilation's users
beyond what the individual works permit.  Inclusion of a covered work
in an aggregate does not cause this License to apply to the other
parts of the aggregate.

  6. Conveying Non-Source Forms.

  You may convey a covered work in object code form under the terms
of sections 4 and 5, provided that you also convey the
machine-readable Corresponding Source under the terms of this License,
in one of these ways:

    a) Convey the object code in, or embodied in, a physical product
    (including a physical distribution medium), accompanied by the
    Corresponding Source fixed on a durable physical medium
    customarily used for software interchange.

    b) Convey the object code in, or embodied in, a physical product
    (including a physical distribution medium), accompanied by a
    written offer, valid for at least three years and valid for as
    long as you offer spare parts or customer support for that product
    model, to give anyone who possesses the object code either (1) a
    copy of the Corresponding Source for all the software in the
    product that is covered by this License, on a durable physical
    medium customarily used for software interchange, for a price no
    more than your reasonable cost of physically performing this
    conveying of source, or (2) access to copy the
    Corresponding Source from a network server at no charge.

    c) Convey individual copies of the object code with a copy of the
    written offer to provide the Corresponding Source.  This
    alternative is allowed only occasionally and noncommercially, and
    only if you received the object code with such an offer, in accord
    with subsection 6b.

    d) Convey the object code by offering access from a designated
    place (gratis or for a charge), and offer equivalent access to the
    Corresponding Source in the same way through the same place at no
    further charge.  You need not require recipients to copy the
    Corresponding Source along with the object code.  If the place to
    copy the object code is a network server, the Corresponding Source
    may be on a different server (operated by you or a third party)
    that supports equivalent copying facilities, provided you maintain
    clear directions next to the object code saying where to find the
    Corresponding Source.  Regardless of what server hosts the
    Corresponding Source, you remain obligated to ensure that it is
    available for as long as needed to satisfy these requirements.

    e) Convey the object code using peer-to-peer transmission, provided
    you inform other peers where the object code and Corresponding
    Source of the work are being offered to the general public at no
    charge under subsection 6d.

  A separable portion of the object code, whose source code is excluded
from the Corresponding Source as a System Library, need not be
included in conveying the object code work.

  A "User Product" is either (1) a "consumer product", which means any
tangible personal property which is normally used for personal, family,
or household purposes, or (2) anything designed or sold for incorporation
into a dwelling.  In determining whether a product is a consumer product,
doubtful cases shall be resolved in favor of coverage.  For a particular
product received by a particular user, "normally used" refers to a
typical or common use of that class of product, regardless of the status
of the particular user or of the way in which the particular user
actually uses, or expects or is expected to use, the product.  A product
is a consumer product regardless of whether the product has substantial
commercial, industrial or non-consumer uses, unless such uses represent
the only significant mode of use of the product.

  "Installation Information" for a User Product means any methods,
procedures, authorization keys, or other information required to install
and execute modified versions of a covered work in that User Product from
a modified version of its Corresponding Source.  The information must
suffice to ensure that the continued functioning of the modified object
code is in no case prevented or interfered with solely because
modification has been made.

  If you convey an object code work under this section in, or with, or
specifically for use in, a User Product, and the conveying occurs as
part of a transaction in which the right of possession and use of the
User Product is transferred to the recipient in perpetuity or for a
fixed term (regardless of how the transaction is characterized), the
Corresponding Source conveyed under this section must be accompanied
by the Installation Information.  But this requirement does not apply
if neither you nor any third party retains the ability to install
modified object code on the User Product (for example, the work has
been installed in ROM).

  The requirement to provide Installation Information does not include a
requirement to continue to provide support service, warranty, or updates
for a work that has been modified or installed by the recipient, or for
the User Product in which it has been modified or installed.  Access to a
network may be denied when the modification itself materially and
adversely affects the operation of the network or violates the rules and
protocols for communication across the network.

  Corresponding Source conveyed, and Installation Information provided,
in accord with this section must be in a format that is publicly
documented (and with an implementation available to the public in
source code form), and must require no special password or key for
unpacking, reading or copying.

  7. Additional Terms.

  "Additional permissions" are terms that supplement the terms of this
License by making exceptions from one or more of its conditions.
Additional permissions that are applicable to the entire Program shall
be treated as though they were included in this License, to the extent
that they are valid under applicable law.  If additional permissions
apply only to part of the Program, that part may be used separately
under those permissions, but the entire Program remains governed by
this License without regard to the additional permissions.

  When you convey a copy of a covered work, you may at your option
remove any additional permissions from that copy, or from any part of
it.  (Additional permissions may be written to require their own
removal in certain cases when you modify the work.)  You may place
additional permissions on material, added by you to a covered work,
for which you have or can give appropriate copyright permission.

  Notwithstanding any other provision of this License, for material you
add to a covered work, you may (if authorized by the copyright holders of
that material) supplement the terms of this License with terms:

    a) Disclaiming warranty or limiting liability differently from the
    terms of sections 15 and 16 of this License; or

    b) Requiring preservation of specified reasonable legal notices or
    author attributions in that material or in the Appropriate Legal
    Notices displayed by works containing it; or

    c) Prohibiting misrepresentation of the origin of that material, or
    requiring that modified versions of such material be marked in
    reasonable ways as different from the original version; or

    d) Limiting the use for publicity purposes of names of licensors or
    authors of the material; or

    e) Declining to grant rights under trademark law for use of some
    trade names, trademarks, or service marks; or

    f) Requiring indemnification of licensors and authors of that
    material by anyone who conveys the material (or modified versions of
    it) with contractual assumptions of liability to the recipient, for
    any liability that these contractual assumptions directly impose on
    those licensors and authors.

  All other non-permissive additional terms are considered "further
restrictions" within the meaning of section 10.  If the Program as you
received it, or any part of it, contains a notice stating that it is
governed by this License along with a term that is a further
restriction, you may remove that term.  If a license document contains
a further restriction but permits relicensing or conveying under this
License, you may add to a covered work material governed by the terms
of that license document, provided that the further restriction does
not survive such relicensing or conveying.

  If you add terms to a covered work in accord with this section, you
must place, in the relevant source files, a statement of the
additional terms that apply to those files, or a notice indicating
where to find the applicable terms.

  Additional terms, permissive or non-permissive, may be stated in the
form of a separately written license, or stated as exceptions;
the above requirements apply either way.

  8. Termination.

  You may not propagate or modify a covered work except as expressly
provided under this License.  Any attempt otherwise to propagate or
modify it is void, and will automatically terminate your rights under
this License (including any patent licenses granted under the third
paragraph of section 11).

  However, if you cease all violation of this License, then your
license from a particular copyright holder is reinstated (a)
provisionally, unless and until the copyright holder explicitly and
finally terminates your license, and (b) permanently, if the copyright
holder fails to notify you of the violation by some reasonable means
prior to 60 days after the cessation.

  Moreover, your license from a particular copyright holder is
reinstated permanently if the copyright holder notifies you of the
violation by some reasonable means, this is the first time you have
received notice of violation of this License (for any work) from that
copyright holder, and you cure the violation prior to 30 days after
your receipt of the notice.

  Termination of your rights under this section does not terminate the
licenses of parties who have received copies or rights from you under
this License.  If your rights have been terminated and not permanently
reinstated, you do not qualify to receive new licenses for the same
material under section 10.

  9. Acceptance Not Required for Having Copies.

  You are not required to accept this License in order to receive or
run a copy of the Program.  Ancillary propagation of a covered work
occurring solely as a consequence of using peer-to-peer transmission
to receive a copy likewise does not require acceptance.  However,
nothing other than this License grants you permission to propagate or
modify any covered work.  These actions infringe copyright if you do
not accept this License.  Therefore, by modifying or propagating a
covered work, you indicate your acceptance of this License to do so.

  10. Automatic Licensing of Downstream Recipients.

  Each time you convey a covered work, the recipient automatically
receives a license from the original licensors, to run, modify and
propagate that work, subject to this License.  You are not responsible
for enforcing compliance by third parties with this License.

  An "entity transaction" is a transaction transferring control of an
organization, or substantially all assets of one, or subdividing an
organization, or merging organizations.  If propagation of a covered
work results from an entity transaction, each party to that
transaction who receives a copy of the work also receives whatever
licenses to the work the party's predecessor in interest had or could
give under the previous paragraph, plus a right to possession of the
Corresponding Source of the work from the predecessor in interest, if
the predecessor has it or can get it with reasonable efforts.

  You may not impose any further restrictions on the exercise of the
rights granted or affirmed under this License.  For example, you may
not impose a license fee, royalty, or other charge for exercise of
rights granted under this License, and you may not initiate litigation
(including a cross-claim or counterclaim in a lawsuit) alleging that
any patent claim is infringed by making, using, selling, offering for
sale, or importing the Program or any portion of it.

  11. Patents.

  A "contributor" is a copyright holder who authorizes use under this
License of the Program or a work on which the Program is based.  The
work thus licensed is called the contributor's "contributor version".

  A contributor's "essential patent claims" are all patent claims
owned or controlled by the contributor, whether already acquired or
hereafter acquired, that would be infringed by some manner, permitted
by this License, of making, using, or selling its contributor version,
but do not include claims that would be infringed only as a
consequence of further modification of the contributor version.  For
purposes of this definition, "control" includes the right to grant
patent sublicenses in a manner consistent with the requirements of
this License.

  Each contributor grants you a non-exclusive, worldwide, royalty-free
patent license under the contributor's essential patent claims, to
make, use, sell, offer for sale, import and otherwise run, modify and
propagate the contents of its contributor version.

  In the following three paragraphs, a "patent license" is any express
agreement or commitment, however denominated, not to enforce a patent
(such as an express permission to practice a patent or covenant not to
sue for patent infringement).  To "grant" such a patent license to a
party means to make such an agreement or commitment not to enforce a
patent against the party.

  If you convey a covered work, knowingly relying on a patent license,
and the Corresponding Source of the work is not available for anyone
to copy, free of charge and under the terms of this License, through a
publicly available network server or other readily accessible means,
then you must either (1) cause the Corresponding Source to be so
available, or (2) arrange to deprive yourself of the benefit of the
patent license for this particular work, or (3) arrange, in a manner
consistent with the requirements of this License, to extend the patent
license to downstream recipients.  "Knowingly relying" means you have
actual knowledge that, but for the patent license, your conveying the
covered work in a country, or your recipient's use of the covered work
in a country, would infringe one or more identifiable patents in that
country that you have reason to believe are valid.

  If, pursuant to or in connection with a single transaction or
arrangement, you convey, or propagate by procuring conveyance of, a
covered work, and grant a patent license to some of the parties
receiving the covered work authorizing them to use, propagate, modify
or convey a specific copy of the covered work, then the patent license
you grant is automatically extended to all recipients of the covered
work and works based on it.

  A patent license is "discriminatory" if it does not include within
the scope of its coverage, prohibits the exercise of, or is
conditioned on the non-exercise of one or more of the rights that are
specifically granted under this License.  You may not convey a covered
work if you are a party to an arrangement with a third party that is
in the business of distributing software, under which you make payment
to the third party based on the extent of your activity of conveying
the work, and under which the third party grants, to any of the
parties who would receive the covered work from you, a discriminatory
patent license (a) in connection with copies of the covered work
conveyed by you (or copies made from those copies), or (b) primarily
for and in connection with specific products or compilations that
contain the covered work, unless you entered into that arrangement,
or that patent license was granted, prior to 28 March 2007.

  Nothing in this License shall be construed as excluding or limiting
any implied license or other defenses to infringement that may
otherwise be available to you under applicable patent law.

  12. No Surrender of Others' Freedom.

  If conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License.  If you cannot convey a
covered work so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you may
not convey it at all.  For example, if you agree to terms that obligate you
to collect a royalty for further conveying from those to whom you convey
the Program, the only way you could satisfy both those terms and this
License would be to refrain entirely from conveying the Program.

  13. Use with the GNU Affero General Public License.

  Notwithstanding any other provision of this License, you have
permission to link or combine any covered work with a work licensed
under version 3 of the GNU Affero General Public License into a single
combined work, and to convey the resulting work.  The terms of this
License will continue to apply to the part which is the covered work,
but the special requirements of the GNU Affero General Public License,
section 13, concerning interaction through a network will apply to the
combination as such.

  14. Revised Versions of this License.

  The Free Software Foundation may publish revised and/or new versions of
the GNU General Public License from time to time.  Such new versions will
be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.

  Each version is given a distinguishing version number.  If the
Program specifies that a certain numbered version of the GNU General
Public License "or any later version" applies to it, you have the
option of following the terms and conditions either of that numbered
version or of any later version published by the Free Software
Foundation.  If the Program does not specify a version number of the
GNU General Public License, you may choose any version ever published
by the Free Software Foundation.

  If the Program specifies that a proxy can decide which future
versions of the GNU General Public License can be used, that proxy's
public statement of acceptance of a version permanently authorizes you
to choose that version for the Program.

  Later license versions may give you additional or different
permissions.  However, no additional obligations are imposed on any
author or copyright holder as a result of your choosing to follow a
later version.

  15. Disclaimer of Warranty.

  THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
APPLICABLE LAW.  EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
IS WITH YOU.  SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.

  16. Limitation of Liability.

  IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
SUCH DAMAGES.

  17. Interpretation of Sections 15 and 16.

  If the disclaimer of warranty and limitation of liability provided
above cannot be given local legal effect according to their terms,
reviewing courts shall apply local law that most closely approximates
an absolute waiver of all civil liability in connection with the
Program, unless a warranty or assumption of liability accompanies a
copy of the Program in return for a fee.

                     END OF TERMS AND CONDITIONS

            How to Apply These Terms to Your New Programs

  If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these terms.

  To do so, attach the following notices to the program.  It is safest
to attach them to the start of each source file to most effectively
state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.

    <one line to give the program's name and a brief idea of what it does.>
    Copyright (C) <year>  <name of author>

    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU 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 General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <https://www.gnu.org/licenses/>.

Also add information on how to contact you by electronic and paper mail.

  If the program does terminal interaction, make it output a short
notice like this when it starts in an interactive mode:

    <program>  Copyright (C) <year>  <name of author>
    This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
    This is free software, and you are welcome to redistribute it
    under certain conditions; type `show c' for details.

The hypothetical commands `show w' and `show c' should show the appropriate
parts of the General Public License.  Of course, your program's commands
might be different; for a GUI interface, you would use an "about box".

  You should also get your employer (if you work as a programmer) or school,
if any, to sign a "copyright disclaimer" for the program, if necessary.
For more information on this, and how to apply and follow the GNU GPL, see
<https://www.gnu.org/licenses/>.

  The GNU General Public License does not permit incorporating your program
into proprietary programs.  If your program is a subroutine library, you
may consider it more useful to permit linking proprietary applications with
the library.  If this is what you want to do, use the GNU Lesser General
Public License instead of this License.  But first, please read
<https://www.gnu.org/licenses/why-not-lgpl.html>.


================================================
FILE: PushToFCM/.dockerignore
================================================
node_modules
npm-debug.log

================================================
FILE: PushToFCM/.gitignore
================================================
/node_modules

================================================
FILE: PushToFCM/README.md
================================================
# プッシュ通知中継サーバ
これはプッシュ通知を受信するための中継サーバプログラムです。

## 説明
Misskeyからプッシュ通知を受信するには
中継サーバを構築して、そこからFirebase Cloud Massaging経由で通知を送信します。

## 使用方法
### secretとkeyの生成
初めにkeyGenerator.jsをnode.jsで実行してプッシュ通知を使用するための鍵を取得します。<br>

```
node keyGenerator.js 
public: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
private: yyyyyyyyyyyyyyyyyyyyyyyyyyyyy
auth: vvvvvvvvvvvvvv
```

keyディレクトリに以下のファイルを作成します。<br>
auth_secret.txt<br>
private_key.txt<br>
public_key.txt<br>
```
touch ./key/auth_secret.txt
touch ./key/private_key.txt
touch ./key/public_key.txt
```

それぞれのファイルにkeyGenerator.jsで生成した値を設定します。<br>
publicを./key/public_key.txt<br>
privateを./key/private_key.txt<br>
authを./key/auth_secret.txt<br>
```
echo xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx > ./key/public_key.txt
echo yyyyyyyyyyyyyyyyyyyyyyyyyyyyy > ./key/private_key.txt
echo vvvvvvvvvvvvvv > ./key/auth_secret.txt
```

### Firebase adminの設定
Firebase Cloud Messagingに接続するために<br>
サーバーにFirebase Adminの設定をする必要があります。
https://firebase.google.cn/docs/admin/setup?hl=ja<br>
```
export GOOGLE_APPLICATION_CREDENTIALS=firebase-adminのjsonファイル.json
```

index.jsを起動します。<br>
あとはnginxなどで中継するように設定してください。


================================================
FILE: PushToFCM/docker/Dockerfile
================================================
from node:12
WORKDIR /usr/src/app
COPY package*.json ./
RUN npm install --only=production
COPY . .
EXPOSE 3000
CMD ["node", "index.js"]

================================================
FILE: PushToFCM/docker/node/Dockerfile
================================================
FROM node:16
WORKDIR /usr/src/app



================================================
FILE: PushToFCM/docker-compose.yml
================================================
version: "3"
services:
    push-server:
        build: ./docker/node
        user: ${user}
        ports:
            - 3000:3000
        volumes:
            - ./:/usr/src/app
        command: ["node", "index.js"]
        healthcheck:
            test: ["CMD-SHELL", "curl -fSsO /dev/null http://localhost:3000/health || exit 1"]
            interval: "1s"
            timeout: "1s"
            retries: "2"



================================================
FILE: PushToFCM/index.js
================================================
const express = require('express');
const app = express();
const Concat = require('concat-stream');
const fs = require('fs');
const i18n = require('i18n');
const notificationBuilder = require('./notification_builder');

const webPushDecipher = require('./webPushDecipher.js');

const AUTH_SECRET = fs.readFileSync('./key/auth_secret.txt', 'utf8');
const PUBLIC_KEY = fs.readFileSync('./key/public_key.txt', 'utf8');
const PRIVATE_KEY = fs.readFileSync('./key/private_key.txt', 'utf8');

const admin = require('firebase-admin');
const { resourceUsage } = require('process');
admin.initializeApp({
    credential: admin.credential.applicationDefault(),
});
const messaging = admin.messaging();

i18n.configure({
    locales: ['ja', 'en'],
    defaultLocal: 'en',
    directory: __dirname + "/locales",
    objectNotation: true
});


console.log('start server');

app.use(i18n.init);

const switchLangMiddleware = (req, _, next) => {
    if(req.query.lang) {
        i18n.setLocale(req, req.query.lang);
    }else{
        i18n.setLocale(req, 'en');
    }
    next();
}

const rawBodyMiddlware = (req, _, next) => {
    req.pipe(new Concat(function(data) {
        req.rawBody = data;
        next();
    }))
}

const decodeBodyMiddleware = (req, res, next) => {
    let rawBody = req.rawBody;
    if (!rawBody) { 
        console.log('Invalid Body');
        return res.status(200).send('Invalid Body.').end(); 
    }
    const converted = rawBody.toString('base64');
    const key = webPushDecipher.buildReciverKey(PUBLIC_KEY, PRIVATE_KEY, AUTH_SECRET);
    //console.log(`public_key:${PUBLIC_KEY}, private_key:${PRIVATE_KEY}, auth_secret:${AUTH_SECRET}`);
    try {
        let decrypted = webPushDecipher.decrypt(converted, key, false);
        req.rawJson = decrypted;
    } catch (e) {
        console.log(`Decrypt Error: ${e}, request original url: ${req.originalUrl}, headers:${JSON.stringify(req.headers)}`);
        throw e;
    }
    
    next();
}

const decodeMastodonWebPushMiddleware = (req, res, next) => {
    let rawBody = req.rawBody;
    if (!rawBody) { 
        console.log('Invalid Body');
        return res.status(200).send('Invalid Body.').end(); 
    }
    const converted = rawBody.toString('base64');
    const key = webPushDecipher.buildReciverKey(PUBLIC_KEY, PRIVATE_KEY, AUTH_SECRET);
    //console.log(`public_key:${PUBLIC_KEY}, private_key:${PRIVATE_KEY}, auth_secret:${AUTH_SECRET}`);
    try {
        const saltInHeader = req.headers['encryption'];
        const keyidInHeader = req.headers['crypto-key'];
        const salt = webPushDecipher.decodeBase64(saltInHeader.substring("salt=".length, saltInHeader.length));
        const keyid = webPushDecipher.decodeBase64(keyidInHeader.substring("keyid=".length, keyidInHeader.length));
        console.log(`salt:${salt.length}, keyid:${keyid.length}`);
        let decrypted = webPushDecipher.decryptContent(converted, key, salt, keyid, false);
        req.rawJson = decrypted;
    } catch (e) {
        console.log(`Decrypt Error: ${e}, request original url: ${req.originalUrl}`);
        throw e;
    }
    
    next();
}
const parseJsonMiddleware = (req, res, next) => {
    try {
        req.decodeJson = JSON.parse(req.rawJson);
        next();
    }catch(e) {
        console.log('parse error', req.rawJson, e);
        return res.status(400).end();
    }
}

app.post('/webpushcallback', rawBodyMiddlware, decodeBodyMiddleware, parseJsonMiddleware, switchLangMiddleware ,async (req, res, next)=>{
    let deviceToken = req.query.deviceToken;
    let accountId = req.query.accountId;
    console.log('call webpushcallback');
    if(!(deviceToken && accountId)) {
        console.warn('無効な値');
        return res.status(410).end();
    }

    if(req.decodeJson.type != 'notification') {
        return res.status(500).end();
    }
    let convertedNotification;
    try {
        convertedNotification = notificationBuilder.generateNotification(res, req.decodeJson.body);
    } catch (e) {
        return res.status(500).end();
    }


    const msgData = {
        title: convertedNotification.title,
        body: convertedNotification.body,
        type: convertedNotification.type,
        notificationId: req.decodeJson.body.id,
        accountId: accountId
    }
    
    const message = {
        token: deviceToken,
        notification: {
            title: convertedNotification.title,
            body: convertedNotification.body
        }
    };
    if(req.decodeJson.body.note != null) {
        msgData.noteId = req.decodeJson.body.note.id;
    }
    if(req.decodeJson.body.userId != null) {
        msgData.userId = req.decodeJson.body.userId;
    }
    message.data = msgData;
    // console.log(message);
    try {
        await messaging.send(message);
        res.status(204).end();
        return;
    } catch (e) {
        if (
            [
              'The registration token is not a valid FCM registration token',
              'Requested entity was not found.',
              'NotRegistered.'
            ].includes(e.message)
        ) {
            console.log('トークン切れ');
            res.status(410).end();
        } else {
            console.error("未知のエラー", e);
            res.status(500).end();
        }
        return;
    }

});

app.post("/webpushcallback-4-mastodon", rawBodyMiddlware, decodeMastodonWebPushMiddleware, parseJsonMiddleware, switchLangMiddleware ,async (req, res)=>{
    let deviceToken = req.query.deviceToken;
    let accountId = req.query.accountId;
    if(!(deviceToken && accountId)) {
        console.warn('無効な値');
        return res.status(410).end();
    }
    const title = req.decodeJson.title;
    const body = req.decodeJson.body;
    const message = {
        token: deviceToken,
        notification: {
            title: title,
            body: body
        }
    };
    message.data = {
        title: title,
        body: body,
        type: req.decodeJson.notification_type,
        notificationId: req.decodeJson.notification_id,
        accountId: accountId
    }
    console.log(message);
    try {
        await messaging.send(message);
        res.status(204).end();
        return;
    } catch (e) {
        if (
            [
              'The registration token is not a valid FCM registration token',
              'Requested entity was not found.',
              'NotRegistered.'
            ].includes(e.message)
        ) {
            console.log('トークン切れ');
            res.status(410).end();
        } else {
            console.error("未知のエラー", e);
            res.status(500).end();
        }
        return;
    }
});

app.get('/health', switchLangMiddleware,(req, res)=>{
    let msg= res.__('test.message');
    res.json({'msg': msg});
})
app.listen(3000);

================================================
FILE: PushToFCM/key/.gitignore
================================================
*
!.gitignore

================================================
FILE: PushToFCM/keyGenerator.js
================================================
const crypto = require('crypto');
const util = require('util');
const urlsafeBase64 = require('urlsafe-base64');

const keyCurve = crypto.createECDH('prime256v1');
keyCurve.generateKeys();

console.log("public:", urlsafeBase64.encode(keyCurve.getPublicKey()));
console.log("private:", urlsafeBase64.encode(keyCurve.getPrivateKey()));
console.log("auth:", urlsafeBase64.encode(crypto.randomBytes(16)));

================================================
FILE: PushToFCM/locales/en.json
================================================
{
    "title": {
        "follow": "Followed",
        "mention": "Mentioned by {{name}}",
        "reply": "Replied by {{name}}",
        "renote": "Renoted by {{name}",
        "quote": "Quoted by {{name}}",
        "reaction": "{{reaction}}:{{name}}",
        "pollVote": "Voted by {{name}}",
        "receiveFollowRequest": "Receive follow request",
        "followRequestAccepted": "Accepted the follow request"
    },
    
    "test": {
        "message": "Test"
    }
}

================================================
FILE: PushToFCM/locales/ja.json
================================================
{
    "title": {
        "follow": "フォローされました",
        "mention": "{{name}}からメンションがきました",
        "reply": "{{name}}さんから返信がきました",
        "renote": "{{name}}さんにリノートされました",
        "quote": "{{name}}さんに引用されました",
        "reaction": "{{reaction}}:{{name}}",
        "pollVote": "{{name}}さんが投票しました",
        "receiveFollowRequest": "フォローリクエストを受け取りました",
        "followRequestAccepted": "フォローリクエストを承認しました"
    },
    "test": {
        "message": "てすと"
    }
}

================================================
FILE: PushToFCM/notification_builder.js
================================================

const notificationType = {
    follow: "follow",
    mention: "mention",
    reply: "reply",
    renote: "renote",
    quote: "quote",
    reaction: "reaction",
    pollVote: "pollVote",
    receiveFollowRequest: "receiveFollowRequest",
    followRequestAccepted: "followRequestAccepted"

};

function buildTitle(res, notification) {
    if(notification.type == 'reaction')  {
        return res.__('title.reaction', {name : getDisplayUserName(notification.user), reaction: notification.reaction });
    }

    if(notification.type == notificationType.follow 
        || notification.type == notificationType.receiveFollowRequest
        || notification.type == notificationType.followRequestAccepted
        || notification.type == notificationType.followRequestAccepted
    ) {
        return res.__(`title.${notification.type}`);
    } 
    return res.__(`title.${notification.type}`, {name: getDisplayUserName(notification.user)});
}

function getShortMessageFromNote(note) {
    if(note.text || note.cw) {
        return note.cw ?? note.text;
    }
    if(note.files && note.files.length) {
        return `files: ${note.files.length}`;
    }
    if(note.poll != null) {
        return `choices: ${note.poll.choices}`;
    }
}

function buildBody(_, notification) {
    let type = notification.type;
    if(type == notificationType.follow) {
        return getDisplayUserName(notification.user);
    }
    if(type == notificationType.mention) {
        return getShortMessageFromNote(notification.note);
    }
    if(type == notificationType.reply) {
        return getShortMessageFromNote(notification.note);
    }
    if(type == notificationType.renote) {
        return getShortMessageFromNote(notification.note.renote);
    }
    if(type == notificationType.quote) {
        return getShortMessageFromNote(notification.note);
    }
    if(type == notificationType.reaction) {
        return getShortMessageFromNote(notification.note);
    }
    if(type == notificationType.pollVote) {
        return getShortMessageFromNote(notification.note);
    }
    return null;
}

class MessagingNotification {
    constructor(type, title, body) {
        this.type = type;
        this.title = title;
        this.body = body;
    }
}


exports.generateNotification = function (res, notification) {

    let type = notification.type;
    let title = buildTitle(res, notification);
    let body = buildBody(res, notification);
    return new MessagingNotification(type, title, body);
}

function getDisplayUserName(user) {
    if(user.name) {
        return user.name;
    }
    return user.userName;
}

================================================
FILE: PushToFCM/package.json
================================================
{
  "name": "pushtofcm",
  "version": "1.0.0",
  "description": "Misskey Push to fcm server",
  "main": "index.js",
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1",
    "start": "node index.js"
  },
  "author": "",
  "license": "ISC",
  "dependencies": {
    "concat-stream": "^2.0.0",
    "crypt": "^0.0.2",
    "encoding-japanese": "^1.0.30",
    "express": "^4.17.3",
    "firebase-admin": "^11.5.0",
    "fs": "^0.0.1-security",
    "i18n": "^0.13.3",
    "node-forge": ">=1.3.0",
    "urlsafe-base64": "^1.0.0",
    "util": "^0.12.4"
  }
}


================================================
FILE: PushToFCM/webPushDecipher.js
================================================
//
// WebPushをdecryptするヤツ(on Node.js)
//
// **参考**
// https://tools.ietf.org/html/rfc8188
// https://tools.ietf.org/html/rfc8291
// https://tools.ietf.org/html/rfc8291#appendix-A
// https://gist.github.com/tateisu/685eab242549d9c9ffc85020f09a4b71
// ↑一部 @tateisu氏のコードを参考にしています
// (アドバイスありがとうございました!→ https://mastodon.juggler.jp/@tateisu/104098620591598243)
// こちらのコードは@YuigaWadaさんのコードを一部改変して利用しています。
// https://github.com/YuigaWada/MissCat/blob/develop/ApiServer/api.js
const util = require("util");
const crypto = require("crypto");
const encoding = require('encoding-japanese');

function decodeBase64(src) {
  return Buffer.from(src, "base64");
}

function sha256(key, data) {
  return crypto.createHmac("sha256", key).update(data).digest();
}

function log(verbose, label, text) {
  if (!verbose) { return; }
  console.log(label, text);
}

// 通知を受け取る側で生成したキーを渡す
exports.buildReciverKey = function (public, private, authSecret) {
  this.public = decodeBase64(public);
  this.private = decodeBase64(private);
  this.authSecret = decodeBase64(authSecret);
  return this;
};

// WebPushで流れてきた通知をdecrypt
exports.decrypt = function (body64, receiverKey, verbose) {
  let body = decodeBase64(body64);

  // bodyを分解してsalt, keyid, 暗号化されたcontentsを取り出す
  // bodyの構造は以下の通り↓
  /*
  https://tools.ietf.org/id/draft-ietf-httpbis-encryption-encoding-09.xml#header
	+-----------+--------+-----------+---------------+
	| salt (16) | rs (4) | idlen (1) | keyid (idlen) |
	+-----------+--------+-----------+---------------+
	*/

  const salt = body.slice(0, 16);
  const rs = body.slice(16, 16 + 4);

  const idlen_hex = body.slice(16 + 4, 16 + 4 + 1).toString("hex");
  const idlen = parseInt(idlen_hex, 16); // keyidの長さ
  const keyid = body.slice(16 + 4 + 1, 16 + 4 + 1 + idlen);

  const content = body.slice(16 + 4 + 1 + idlen, body.length);

  // For Verbose Mode
  log(verbose, "salt", salt.toString("base64"));
  log(verbose, "rs", rs.toString("hex"));
  log(verbose, "idlen_hex", idlen_hex);
  log(verbose, "idlen", idlen);
  log(verbose, "keyid", keyid.toString("base64"));

  return decryptContent(content, receiverKey, salt, keyid, verbose);
};

function decryptContent(content, receiverKey, salt, keyid ,verbose) {
  let auth_secret = receiverKey.authSecret;
  let receiver_public = receiverKey.public;
  let receiver_private = receiverKey.private;

  const sender_public = decodeBase64(keyid.toString("base64"));

  // 共有秘密鍵を生成(ECDH)
  let receiver_curve = crypto.createECDH("prime256v1");
  receiver_curve.setPrivateKey(receiver_private);
  const sharedSecret = receiver_curve.computeSecret(keyid);

  /*
	  # HKDF-Extract(salt=auth_secret, IKM=ecdh_secret)
	  PRK_key = HMAC-SHA-256(auth_secret, ecdh_secret)
	  # HKDF-Expand(PRK_key, key_info, L_key=32)
	  key_info = "WebPush: info" || 0x00 || ua_public || as_public
	  IKM = HMAC-SHA-256(PRK_key, key_info || 0x01)
	  ## HKDF calculations from RFC 8188
	  # HKDF-Extract(salt, IKM)
	  PRK = HMAC-SHA-256(salt, IKM)
	  # HKDF-Expand(PRK, cek_info, L_cek=16)
	  cek_info = "Content-Encoding: aes128gcm" || 0x00
	  CEK = HMAC-SHA-256(PRK, cek_info || 0x01)[0..15]
	  # HKDF-Expand(PRK, nonce_info, L_nonce=12)
	  nonce_info = "Content-Encoding: nonce" || 0x00
	  NONCE = HMAC-SHA-256(PRK, nonce_info || 0x01)[0..11]
	*/

  // key
  const prk_key = sha256(auth_secret, sharedSecret);
  const keyInfo = Buffer.concat([
    Buffer.from("WebPush: info\0"),
    receiver_public,
    sender_public,
    Buffer.from("\1")
  ]);
  const ikm = sha256(prk_key, keyInfo);

  // prk
  // https://tools.ietf.org/id/draft-ietf-httpbis-encryption-encoding-09.xml#derivation
  const prk = sha256(salt, ikm);
  log(verbose, "prk", prk.toString("base64"));

  // cek
  // https://tools.ietf.org/id/draft-ietf-httpbis-encryption-encoding-09.xml#derivation
  const cekInfo = Buffer.from("Content-Encoding: aes128gcm\0\1");
  const cek = sha256(prk, cekInfo).slice(0, 16);
  log(verbose, "cek", cek.toString("base64"));

  // initialization vector
  // https://tools.ietf.org/id/draft-ietf-httpbis-encryption-encoding-09.xml#nonce
  const nonceInfo = Buffer.from("Content-Encoding: nonce\0\1");
  const nonce = sha256(prk, nonceInfo).slice(0, 12);
  const iv = nonce;
  log(verbose, "nonce:", nonce.toString("base64"));

  // aes-128-gcm
  const decipher = crypto.createDecipheriv("aes-128-gcm", cek, iv);
  let result = decipher.update(content);
  log(verbose, 'type:', typeof(result));
  log(verbose, '文字コード:', encoding.detect(result));
  log(verbose, "decrypted: ", result.toString("utf8"));

  // remove padding and GCM auth tag
  while (result.slice(result.length-1,result.length) != "}") { // jsonの末端が見えるまで一文字ずつ消していく
    result = result.slice(0,result.length-1);
  }

  log(verbose, "shaped:", result.toString("utf8"));
  return result.toString("utf8");
}

exports.decryptContent = decryptContent;
exports.decodeBase64 = decodeBase64;

================================================
FILE: README-EN.md
================================================
# Milktea

<img src="https://github.com/Kinoshita0623/MisskeyAndroidClient/blob/master/app/src/main/ic_launcher-web.png?raw=true" width="100px">
Would you like Milktea with Misskey?<br>
Misskey Android client app<br>

## Introduction
Milktea is Android client app for [Misskey](https://github.com/misskey-dev/misskey)<br>

## Purpose
Milktea was developed to achieve following purposes.
- Provide as like Android UI
- Support as many Misskey features as possible
- Comfortable touch even if you have migrated from other social network apps 
- Unique features to make Milktea easier to use
- Get more people to use Misskey
- Develop Milktea on an ongoing basis

## Features
### Timeline
Milktea can displaies Timeline from Misskey instance in real time.<br>

### Timeline Tab function
You can fix and rearrange the most frequently viewed Timeline at the top of tabs.<br>
The tab function can be used to fix below Timeline.
- Global Timeline
- Social Timeline
- Local Timeline
- Home Timeline
- User List Timeline
- List of user's Notes
- Search result
- Antenna Timeline
- Gallery
- List of Threads
- Favorite
- Notification
### Posting Note
You can create and post Notes from Milktea.<br>
There is no need to wait until the finish of its upload when posting Notes, because its upload is done asynchronously.<br>

### Reaction Picker
The function of making a reaction for Notes.<br>
Reaction picker is categorized by (custom)emojis on the tabs.<br>
- Pinned user's setting
- Frequently used emojis
- Several (custom)emoji categories

### Save drafts of Notes
This is one of the unique feature for Milktea.<br>
You can save a draft of Notes while creating it.
### Drive
You can see your own files in Misskey Drive.

### Overwrite display name
In Misskey, there was a case that the Name displayed on the screen was different from the nickname which used in the conversation between Misskey users. It was very complicated to have a difference of Name and the nickname. So, I implemented a function to overwrite the nickname and only display it on Milktea.<br>


## Installation
Download from [Google Play Store](https://play.google.com/store/apps/details?id=jp.panta.misskeyandroidclient) and install into your device.

Create your account on the instance you wish to use.<br>
[About Misskey](https://misskey-hub.net/en/docs/misskey.html) /
[List of Instances](https://misskey-hub.net/en/instances.html)

Launch the app after its installation is complete.
When "Authentication" screen appears, type Misskey instance URL you're trying to use.
For example, when you want to use misskey.io, type `misskey.io` .

You can freely change "App name".<br>
"App name" maybe displaied with "via" on the instance depending on a Misskey version of it.<br>

Press AUTHENTICATION when you're ready.<br><br>
<img src="https://user-images.githubusercontent.com/38454985/81928170-d03c8080-961f-11ea-8acc-b1d752d72de7.png" width="320px">

The authentication screen will appear in your default browser. If there is no problem, click "Accept".<br>
If you're not redirected to the app, press the "Back" button and press "I have given permission".<br><br>
<img src="https://user-images.githubusercontent.com/38454985/81928454-3cb77f80-9620-11ea-839b-ea28962a0a92.png" width="320px">

If successful, you will be redirected to Milktea and press "CONTINUE" to complete.<br><br>
<img src="https://user-images.githubusercontent.com/38454985/81928572-6c668780-9620-11ea-800a-bbb03721ce8e.png" width="320px">

## Build

`git clone` this repo and create a file `secret.properties`.<br>
```
touch secret.properties
```
Add the following attributes to secret.properties to configure the settings about the relay server for push notifications.<br>
To read more about the relay server for push notifications, please check below link.<br>
https://github.com/pantasystem/MisskeyAndroidClient/blob/develop/PushToFCM/README.md<br>

Set these settings for each variables:<br>
Base URL for the push notification server for `push_to_fcm.server_base_url`<br>
`public_key` generated by PushToFCM for `push_to_fcm.public_key`<br>
`auth_secret.txt` generated by PushToFCM for `push_to_fcm.auth`

For example:<br>
```
push_to_fcm.server_base_url=https://FooBarFooBar-pus
push_to_fcm.public_key=public_key
push_to_fcm.auth=auth_secret.txt
```
And then, build Milktea on Android SDK or AndroidStudio.


================================================
FILE: README.md
================================================
# Milktea

<img src="https://github.com/Kinoshita0623/MisskeyAndroidClient/blob/master/app/src/main/ic_launcher-web.png?raw=true" width="100px">
<br>
FediverseにMilkteaはいかが?<br>
Misskey, MastodonのAndroidクライアント<br>

## 説明
MilkteaはMastodonと[Misskey](https://github.com/misskey-dev/misskey)のためのAndroidクライアントアプリケーションです。<br>

## 目標
Milkteaでは以下のことを達成することを目標とし開発をしました。
- ソフトウェアの差をできる限り意識させることなくFediverseライフをおくれるようにすること
- AndroidらしいUIで提供すること
- 競合サービスから移住してきても違和感なく触れるUIであること
- 独自機能を追加してより使いやすくすること
- 継続的な開発ができること
- Fediverseの存在を意識せずにFediverse lifeをおくれるようにすること

## 機能
### タイムライン
Mastodon, Misskeyから流れてきたタイムラインを、<br>
リアルタイムで表示することができます。<br>

### タイムラインタブ機能
よく表示するタイムラインを上部のタブに固定&並び替えをすることができます。<br>
タブ機能は以下のタイムラインの項目を固定することができます。
- グローバルタイムライン
- ソーシャルタイムライン
- ローカルタイムライン
- ホームタイムライン
- ユーザーリストタイムライン
- ユーザーの投稿一覧
- 検索結果
- アンテナタイムライン
- ギャラリー
- スレッド一覧
- お気に入り
- 通知
### ノート投稿
Milkteaから投稿を作成することができます。<br>
ファイルのアップロードが非同期で行われるため、<br>
投稿時にファイルアップロードを待つ必要がありません。<br>

### リアクションピッカー
ノートにリアクションを付けるときのための機能です。<br>
リアクションピッカーはタブ状にカスタム絵文字、絵文字が分類されています。<br>
- ユーザー固定
- よく使うリアクション
- カテゴリ別(複数)

### ノートの下書き機能
Milkteaの独自機能で、<br>
ノートを途中で下書き保存することができます。
### ドライブ
Misskeyのドライブのファイルを表示することができます。

### ニックネームの上書き
Misskeyでは表記上のニックネームと、<br>
実際にユーザー間の会話で用いられる呼び名が異なることがありました。<br>
表示名と呼び名が異なるのは非常にややこしかったので、<br>
表面的にニックネームを上書き&表示する機能を実装しました。<br>


## インストール方法
[GooglePlayストア](https://play.google.com/store/apps/details?id=jp.panta.misskeyandroidclient)でダウンロード&インストール

利用するインスタンスで事前にアカウントを作成してください。<br>
[はじめに](https://join.misskey.page/ja/wiki/first)
[インスタンス一覧](https://join.misskey.page/ja/wiki/instances/)

インストールが完了したらアプリを起動します。
認可画面が表示されるので、利用しようとしているインスタンスのURLを入力します。<br>
例えばmisskey.ioを利用する場合は、「misskey.io」と入力します。

app nameは自由に設定することがでます。<br>
app nameはインスタンスのバージョンによってはvia名として公開される場合があります。<br>

準備ができれば AUTHENTICATION (認証)を押します。<br>
<img src="https://user-images.githubusercontent.com/38454985/81928170-d03c8080-961f-11ea-8acc-b1d752d72de7.png" width="320px">

認証画面がブラウザに表示されるので、問題がなければ許可(Accept)を押します。<br>
もし、リダイレクトしない場合は戻るボタンを押して、「私は許可をしました」を押してください。<br>
<img src="https://user-images.githubusercontent.com/38454985/81928454-3cb77f80-9620-11ea-839b-ea28962a0a92.png" width="320px"><br>

成功すればMilkteaにリダイレクトするので[続行(CONTINUE)]を押し完了です。<br>
<img src="https://user-images.githubusercontent.com/38454985/81928572-6c668780-9620-11ea-800a-bbb03721ce8e.png" width="320px"><br>





================================================
FILE: app/.gitignore
================================================
/build


================================================
FILE: app/build.gradle
================================================
plugins {
    id('com.android.application')
    id('kotlin-android')
    id('kotlin-kapt')
    alias libs.plugins.kotlin.serialization.plugin
    id('com.google.gms.google-services')
    id('com.google.android.gms.oss-licenses-plugin')
    id('dagger.hilt.android.plugin')
    id('com.github.triplet.play') version("3.7.0")
    id('com.google.firebase.crashlytics')
    alias(libs.plugins.compose.compiler)
}


play {
    track = "internal"
    enabled = (System.getenv("ANDROID_PUBLISHER_CREDENTIALS_FILE") != null)
    if (System.getenv("ANDROID_PUBLISHER_CREDENTIALS_FILE") != null) {
        serviceAccountCredentials.set(file(System.getenv("ANDROID_PUBLISHER_CREDENTIALS_FILE")))
    }
}

android {
    compileSdk 35
    defaultConfig {
        applicationId "jp.panta.misskeyandroidclient"
        minSdkVersion 21
        targetSdkVersion 35
        multiDexEnabled true
        versionCode VERSION_CODE as int
        versionName VERSION_NAME
        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
        javaCompileOptions {
            annotationProcessorOptions {
                arguments += ["room.schemaLocation": "$projectDir/schemas".toString()]
            }
        }

        // プッシュ通知関連のデータをlocal.propertiesからBuildConfigへ書き込んでいます。
        def properties = new Properties()
        properties.load(project.rootProject.file('secret.properties').newDataInputStream())
        def PUSH_TO_FCM_SERVER_BASE_URL = properties.getProperty('push_to_fcm.server_base_url')
        def PUSH_TO_FCM_PUBLIC_KEY = properties.getProperty('push_to_fcm.public_key')
        def PUSH_TO_FCM_AUTH = properties.getProperty('push_to_fcm.auth')
        buildConfigField('String', 'PUSH_TO_FCM_SERVER_BASE_URL', "\"${PUSH_TO_FCM_SERVER_BASE_URL}\"")
        buildConfigField('String', 'PUSH_TO_FCM_PUBLIC_KEY', "\"${PUSH_TO_FCM_PUBLIC_KEY}\"")
        buildConfigField('String', 'PUSH_TO_FCM_AUTH', "\"${PUSH_TO_FCM_AUTH}\"")

    }
    buildTypes {
        release {
            minifyEnabled true
            shrinkResources true
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
        benchmark {
            initWith release
            signingConfig signingConfigs.debug
            matchingFallbacks = ['release']
            debuggable false
        }
    }

    compileOptions {
        coreLibraryDesugaringEnabled true
        sourceCompatibility JavaVersion.VERSION_17
        targetCompatibility JavaVersion.VERSION_17
    }

    buildFeatures {
        compose true
        dataBinding true
    }
    kotlinOptions {
        jvmTarget = '17'
        freeCompilerArgs += "-Xopt-in=kotlin.RequiresOptIn"
    }


    composeCompiler {
        enableStrongSkippingMode = true
    }
    // for junit5
    testOptions {
        unitTests.all {
            useJUnitPlatform()
        }
    }
    namespace 'jp.panta.misskeyandroidclient'

    packagingOptions {
        jniLibs {
            useLegacyPackaging = false
        }
    }
}



dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation project(path: ':modules:data')
    implementation project(path: ':modules:common')
    implementation project(path: ':modules:model')
    implementation project(path: ':modules:api')
    implementation project(path: ':modules:app_store')
    implementation project(path: ':modules:features:auth')
    implementation project(path: ':modules:features:channel')
    implementation project(path: ':modules:features:drive')
    implementation project(path: ':modules:features:media')
    implementation project(path: ':modules:common_compose')
    implementation project(path: ':modules:common_resource')
    implementation project(path: ':modules:common_compose')
    implementation project(path: ':modules:features:messaging')
    implementation project(path: ':modules:common_navigation')
    implementation project(path: ':modules:common_viewmodel')
    implementation project(path: ':modules:features:gallery')
    implementation project(path: ':modules:api_streaming')
    implementation project(path: ':modules:features:group')
    implementation project(path: ':modules:features:note')
    implementation project(path: ':modules:common_android_ui')
    implementation project(path: ':modules:features:antenna')
    implementation project(path: ':modules:features:user')
    implementation project(path: ':modules:features:notification')
    implementation project(path: ':modules:features:search')
    implementation project(path: ':modules:features:favorite')
    implementation project(path: ':modules:features:account')
    implementation project(path: ':modules:worker')
    implementation project(path: ':modules:features:clip')


    testImplementation project(path: ':modules:api_streaming')
    implementation project(path: ':modules:common_android')
    implementation project(path: ':modules:features:setting')
    implementation project(path: ':modules:features:userlist')


    coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:2.1.3'

    //noinspection GradleCompatible
    implementation 'androidx.legacy:legacy-support-v4:1.0.0'
    implementation libs.appcompat.appcompat

    implementation libs.androidx.emoji2
    implementation libs.androidx.emoji2.bundled


    // NOTE: リアクションピッカーなどでリフレクションを行っているのでバージョンを変更しないこと
    implementation libs.android.material.material
    implementation libs.androidx.constraintlayout

    implementation 'androidx.preference:preference-ktx:1.2.0'
    //noinspection GradleDynamicVersion
    testImplementation 'junit:junit:4.+'
    androidTestImplementation libs.androidx.test.ext.junit


    // Required for instrumented tests
    androidTestImplementation 'com.android.support:support-annotations:28.0.0'
    androidTestImplementation 'com.android.support.test:runner:1.0.2'
    androidTestImplementation libs.androidx.test.espresso.core
    androidTestImplementation 'com.android.support.test:rules:1.0.2'



    implementation libs.room.runtime
    kapt libs.room.compiler

    // optional - Kotlin Extensions and Coroutines support for Room
    implementation libs.room.ktx

    // optional - Test helpers
    testImplementation libs.room.testing


    implementation libs.lifecycle.runtime
    kapt libs.lifecycle.compiler
    implementation libs.lifecycle.viewmodel


    //Kotlin coroutines用ライブラリ(async, await)
    implementation libs.coroutines.android
    testImplementation libs.coroutines.test
    testImplementation libs.arch.core.testing

    implementation libs.recyclerview

    //retrofit
    implementation libs.retrofit
    implementation libs.okhttp3.logging.inspector



    //glide
    //implementation 'com.github.bumptech.glide:glide:3.7.0'
    implementation libs.glide.glide
    kapt libs.glide.compiler
    implementation libs.accompanist.glide
    implementation libs.animation.apng



    //CardView
    //implementation "com.android.support:cardview-v7:28.0.0"
    implementation 'androidx.cardview:cardview:1.0.0'

    //svg
    implementation 'com.caverock:androidsvg-aar:1.4'


    implementation libs.flexbox

    implementation 'com.google.android.gms:play-services-oss-licenses:17.0.1'

    // Swipe refresh
    implementation libs.androidx.swiperefreshlayout


    // ViewPager2
    implementation libs.androidx.viewpager2



    implementation libs.kotlin.serialization

    implementation libs.wada811.databinding

    implementation libs.fragment.ktx
    implementation platform(libs.firebase.bom)
    implementation 'com.google.firebase:firebase-messaging'
    implementation 'com.google.firebase:firebase-crashlytics'
    implementation 'com.google.firebase:firebase-analytics-ktx'

    implementation libs.androidx.core.ktx

    implementation libs.androidx.work.ktx
    implementation libs.kotlin.datetime

    implementation libs.lifecycle.livedata

    // compose
    implementation libs.compose.ui.ui
    implementation libs.compose.ui.ui.tooling

    implementation libs.compose.foundation.foundation
    implementation libs.compose.material.material
    implementation libs.compose.material.material.icons.core
    implementation libs.compose.material.material.icons.extended

    androidTestImplementation libs.compose.ui.ui.test.junit4
    implementation libs.compose.runtime.runtime.livedata
    implementation libs.android.material.compose.theme.adapter
    implementation libs.activity.compose
    implementation libs.coil.compose
    implementation libs.coil.gif
    implementation libs.compose.constraintlayout

    // hilt
    implementation libs.hilt.android
    kapt libs.hilt.compiler
    androidTestImplementation  libs.hilt.android.testing
    kaptAndroidTest libs.hilt.compiler
    testImplementation libs.hilt.android.testing
    kaptTest libs.hilt.compiler

    implementation libs.retrofit.serialization.converter


    // Java language implementation
    implementation libs.navigation.fragment.ktx
    implementation libs.navigation.ui.ktx

    // Kotlin
    implementation libs.navigation.fragment.ktx
    implementation libs.navigation.ui.ktx

    // Feature module Support
    implementation libs.navigation.dynamic.features

    // Testing Navigation
    androidTestImplementation libs.navigation.testing

    // Jetpack Compose Integration
    implementation libs.navigation.compose

//    implementation libs.activity.ktx
    implementation libs.activity.ktx

    implementation libs.hilt.work
    kapt libs.androidx.hilt.compiler

    implementation libs.androidx.appstartup

    testImplementation libs.junit.jupiter.api
    testRuntimeOnly libs.junit.jupiter.engine

    debugImplementation 'com.squareup.leakcanary:leakcanary-android:2.10'

    testImplementation "org.mockito.kotlin:mockito-kotlin:4.1.0"

}

kapt {
    correctErrorTypes true
}

================================================
FILE: app/google-services.json
================================================
{
  "project_info": {
    "project_number": "488937418039",
    "project_id": "milktea-38a76",
    "storage_bucket": "milktea-38a76.appspot.com"
  },
  "client": [
    {
      "client_info": {
        "mobilesdk_app_id": "1:488937418039:android:e7eff50ab73cb4560f3eb2",
        "android_client_info": {
          "package_name": "jp.panta.misskeyandroidclient"
        }
      },
      "oauth_client": [
        {
          "client_id": "488937418039-7a3aos75ncb4u8l5dpsbn6u2t6i7gj1a.apps.googleusercontent.com",
          "client_type": 1,
          "android_info": {
            "package_name": "jp.panta.misskeyandroidclient",
            "certificate_hash": "305007c09b8c6d454c4aac5c88dfa92362c5ce88"
          }
        },
        {
          "client_id": "488937418039-ohoqu72vcf056djpqlitem3jch0cdjgb.apps.googleusercontent.com",
          "client_type": 1,
          "android_info": {
            "package_name": "jp.panta.misskeyandroidclient",
            "certificate_hash": "a0829916db5a5dd7f72264ea3a0550e6ae57b012"
          }
        },
        {
          "client_id": "488937418039-qvdak1q6k7n67e0jvi4lc19gtkjvhbnh.apps.googleusercontent.com",
          "client_type": 1,
          "android_info": {
            "package_name": "jp.panta.misskeyandroidclient",
            "certificate_hash": "2defef4045b7a3626f4441ee74b61746e5048e46"
          }
        },
        {
          "client_id": "488937418039-8utt6eghs42mg99lsc3eepb279pu9d1c.apps.googleusercontent.com",
          "client_type": 3
        }
      ],
      "api_key": [
        {
          "current_key": "AIzaSyAGbZBLasgeDN9cziJnlaV1kBxSScWVYYA"
        }
      ],
      "services": {
        "appinvite_service": {
          "other_platform_oauth_client": [
            {
              "client_id": "488937418039-8utt6eghs42mg99lsc3eepb279pu9d1c.apps.googleusercontent.com",
              "client_type": 3
            }
          ]
        }
      }
    }
  ],
  "configuration_version": "1"
}

================================================
FILE: app/proguard-rules.pro
================================================

# flipperの除外設定
-keep class com.facebook.jni.**  {  *;  }
-keep class com.facebook.flipper.** {  *;  }

-dontwarn com.facebook.litho.**
-dontwarn com.facebook.flipper.**
-dontwarn com.facebook.yoga.**
-dontwarn org.mozilla.**
-dontwarn  com.facebook.fbui.**


# retrofitの設定
-keepattributes Signature, InnerClasses, EnclosingMethod

# Retrofit does reflection on method and parameter annotations.
-keepattributes RuntimeVisibleAnnotations, RuntimeVisibleParameterAnnotations

# Keep annotation default values (e.g., retrofit2.http.Field.encoded).
-keepattributes AnnotationDefault

# Retain service method parameters when optimizing.
-keepclassmembers,allowshrinking,allowobfuscation interface * {
    @retrofit2.http.* <methods>;
}


# Ignore JSR 305 annotations for embedding nullability information.
-dontwarn javax.annotation.**

# Guarded by a NoClassDefFoundError try/catch and only used when on the classpath.
-dontwarn kotlin.Unit

# Top-level functions that can only be used by Kotlin.
-dontwarn retrofit2.KotlinExtensions
-dontwarn retrofit2.KotlinExtensions$*

# With R8 full mode, it sees no subtypes of Retrofit interfaces since they are created with a Proxy
# and replaces all potential values with null. Explicitly keeping the interfaces prevents this.
-if interface * { @retrofit2.http.* <methods>; }
-keep,allowobfuscation interface <1>

# Keep inherited services.
-if interface * { @retrofit2.http.* <methods>; }
-keep,allowobfuscation interface * extends <1>

# Keep generic signature of Call, Response (R8 full mode strips signatures from non-kept items).
-keep,allowobfuscation,allowshrinking interface retrofit2.Call
-keep,allowobfuscation,allowshrinking class retrofit2.Response

# With R8 full mode generic signatures are stripped for classes that are not
# kept. Suspend functions are wrapped in continuations where the type argument
# is used.
-keep,allowobfuscation,allowshrinking class kotlin.coroutines.Continuation


# Kotlin serializationの設定
# Kotlin serialization looks up the generated serializer classes through a function on companion
# objects. The companions are looked up reflectively so we need to explicitly keep these functions.
-keepclasseswithmembers class **.*$Companion {
    kotlinx.serialization.KSerializer serializer(...);
}
# If a companion has the serializer function, keep the companion field on the original type so that
# the reflective lookup succeeds.
-if class **.*$Companion {
  kotlinx.serialization.KSerializer serializer(...);
}
-keepclassmembers class <1>.<2> {
  <1>.<2>$Companion Companion;
}


# glideの設定
-keep public class * implements com.bumptech.glide.module.GlideModule
-keep class * extends com.bumptech.glide.module.AppGlideModule {
 <init>(...);
}
-keep public enum com.bumptech.glide.load.ImageHeaderParser$** {
  **[] $VALUES;
  public *;
}
-keep class com.bumptech.glide.load.data.ParcelFileDescriptorRewinder$InternalRewinder {
  *** rewind();
}

# ViewPagerの設定
-keep class androidx.viewpager.widget.ViewPager$LayoutParams { int position; }
-keep class com.google.android.material.bottomsheet.BottomSheetBehavior { *** findScrollingChild(...); }

-keepclassmembers enum * {
    public *;
}

# databinding
-dontwarn androidx.databinding.**
-keep class androidx.databinding.** { *; }
-keep class * extends androidx.databinding.DataBinderMapper

# glide
-keep public class * implements com.bumptech.glide.module.GlideModule
-keep class * extends com.bumptech.glide.module.AppGlideModule {
 <init>(...);
}
-keep public enum com.bumptech.glide.load.ImageHeaderParser$** {
  **[] $VALUES;
  public *;
}
-keep class com.bumptech.glide.load.data.ParcelFileDescriptorRewinder$InternalRewinder {
  *** rewind();
}


================================================
FILE: app/schemas/jp.panta.misskeyandroidclient.model.DataBase/10.json
================================================
{
  "formatVersion": 1,
  "database": {
    "version": 10,
    "identityHash": "e57ecde54b614792af12c09f03436dc1",
    "entities": [
      {
        "tableName": "connection_information",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`accountId` TEXT NOT NULL, `instanceBaseUrl` TEXT NOT NULL, `encryptedI` TEXT NOT NULL, `viaName` TEXT, `createdAt` TEXT NOT NULL, `isDirect` INTEGER NOT NULL, `updatedAt` TEXT NOT NULL, PRIMARY KEY(`accountId`, `encryptedI`, `instanceBaseUrl`), FOREIGN KEY(`accountId`) REFERENCES `Account`(`id`) ON UPDATE NO ACTION ON DELETE CASCADE )",
        "fields": [
          {
            "fieldPath": "accountId",
            "columnName": "accountId",
            "affinity": "TEXT",
            "notNull": true
          },
          {
            "fieldPath": "instanceBaseUrl",
            "columnName": "instanceBaseUrl",
            "affinity": "TEXT",
            "notNull": true
          },
          {
            "fieldPath": "encryptedI",
            "columnName": "encryptedI",
            "affinity": "TEXT",
            "notNull": true
          },
          {
            "fieldPath": "viaName",
            "columnName": "viaName",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "createdAt",
            "columnName": "createdAt",
            "affinity": "TEXT",
            "notNull": true
          },
          {
            "fieldPath": "isDirect",
            "columnName": "isDirect",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "updatedAt",
            "columnName": "updatedAt",
            "affinity": "TEXT",
            "notNull": true
          }
        ],
        "primaryKey": {
          "columnNames": [
            "accountId",
            "encryptedI",
            "instanceBaseUrl"
          ],
          "autoGenerate": false
        },
        "indices": [],
        "foreignKeys": [
          {
            "table": "Account",
            "onDelete": "CASCADE",
            "onUpdate": "NO ACTION",
            "columns": [
              "accountId"
            ],
            "referencedColumns": [
              "id"
            ]
          }
        ]
      },
      {
        "tableName": "reaction_history",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`reaction` TEXT NOT NULL, `instance_domain` TEXT NOT NULL, `id` INTEGER PRIMARY KEY AUTOINCREMENT)",
        "fields": [
          {
            "fieldPath": "reaction",
            "columnName": "reaction",
            "affinity": "TEXT",
            "notNull": true
          },
          {
            "fieldPath": "instanceDomain",
            "columnName": "instance_domain",
            "affinity": "TEXT",
            "notNull": true
          },
          {
            "fieldPath": "id",
            "columnName": "id",
            "affinity": "INTEGER",
            "notNull": false
          }
        ],
        "primaryKey": {
          "columnNames": [
            "id"
          ],
          "autoGenerate": true
        },
        "indices": [],
        "foreignKeys": []
      },
      {
        "tableName": "Account",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` TEXT NOT NULL, PRIMARY KEY(`id`))",
        "fields": [
          {
            "fieldPath": "id",
            "columnName": "id",
            "affinity": "TEXT",
            "notNull": true
          }
        ],
        "primaryKey": {
          "columnNames": [
            "id"
          ],
          "autoGenerate": false
        },
        "indices": [],
        "foreignKeys": []
      },
      {
        "tableName": "reaction_user_setting",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`reaction` TEXT NOT NULL, `instance_domain` TEXT NOT NULL, `weight` INTEGER NOT NULL, PRIMARY KEY(`reaction`, `instance_domain`))",
        "fields": [
          {
            "fieldPath": "reaction",
            "columnName": "reaction",
            "affinity": "TEXT",
            "notNull": true
          },
          {
            "fieldPath": "instanceDomain",
            "columnName": "instance_domain",
            "affinity": "TEXT",
            "notNull": true
          },
          {
            "fieldPath": "weight",
            "columnName": "weight",
            "affinity": "INTEGER",
            "notNull": true
          }
        ],
        "primaryKey": {
          "columnNames": [
            "reaction",
            "instance_domain"
          ],
          "autoGenerate": false
        },
        "indices": [],
        "foreignKeys": []
      },
      {
        "tableName": "page",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`accountId` TEXT, `title` TEXT NOT NULL, `pageNumber` INTEGER, `id` INTEGER PRIMARY KEY AUTOINCREMENT, `global_timeline_with_files` INTEGER, `global_timeline_type` TEXT, `local_timeline_with_files` INTEGER, `local_timeline_exclude_nsfw` INTEGER, `local_timeline_type` TEXT, `hybrid_timeline_withFiles` INTEGER, `hybrid_timeline_includeLocalRenotes` INTEGER, `hybrid_timeline_includeMyRenotes` INTEGER, `hybrid_timeline_includeRenotedMyRenotes` INTEGER, `hybrid_timeline_type` TEXT, `home_timeline_withFiles` INTEGER, `home_timeline_includeLocalRenotes` INTEGER, `home_timeline_includeMyRenotes` INTEGER, `home_timeline_includeRenotedMyRenotes` INTEGER, `home_timeline_type` TEXT, `user_list_timeline_listId` TEXT, `user_list_timeline_withFiles` INTEGER, `user_list_timeline_includeLocalRenotes` INTEGER, `user_list_timeline_includeMyRenotes` INTEGER, `user_list_timeline_includeRenotedMyRenotes` INTEGER, `user_list_timeline_type` TEXT, `mention_following` INTEGER, `mention_visibility` TEXT, `mention_type` TEXT, `show_noteId` TEXT, `show_type` TEXT, `tag_tag` TEXT, `tag_reply` INTEGER, `tag_renote` INTEGER, `tag_withFiles` INTEGER, `tag_poll` INTEGER, `tag_type` TEXT, `featured_offset` INTEGER, `featured_type` TEXT, `notification_following` INTEGER, `notification_markAsRead` INTEGER, `notification_type` TEXT, `user_userId` TEXT, `user_includeReplies` INTEGER, `user_includeMyRenotes` INTEGER, `user_withFiles` INTEGER, `user_type` TEXT, `search_query` TEXT, `search_host` TEXT, `search_userId` TEXT, `search_type` TEXT, `favorite_type` TEXT, `antenna_antennaId` TEXT, `antenna_type` TEXT, FOREIGN KEY(`accountId`) REFERENCES `Account`(`id`) ON UPDATE NO ACTION ON DELETE NO ACTION )",
        "fields": [
          {
            "fieldPath": "accountId",
            "columnName": "accountId",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "title",
            "columnName": "title",
            "affinity": "TEXT",
            "notNull": true
          },
          {
            "fieldPath": "pageNumber",
            "columnName": "pageNumber",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "id",
            "columnName": "id",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "globalTimeline.withFiles",
            "columnName": "global_timeline_with_files",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "globalTimeline.type",
            "columnName": "global_timeline_type",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "localTimeline.withFiles",
            "columnName": "local_timeline_with_files",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "localTimeline.excludeNsfw",
            "columnName": "local_timeline_exclude_nsfw",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "localTimeline.type",
            "columnName": "local_timeline_type",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "hybridTimeline.withFiles",
            "columnName": "hybrid_timeline_withFiles",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "hybridTimeline.includeLocalRenotes",
            "columnName": "hybrid_timeline_includeLocalRenotes",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "hybridTimeline.includeMyRenotes",
            "columnName": "hybrid_timeline_includeMyRenotes",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "hybridTimeline.includeRenotedMyRenotes",
            "columnName": "hybrid_timeline_includeRenotedMyRenotes",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "hybridTimeline.type",
            "columnName": "hybrid_timeline_type",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "homeTimeline.withFiles",
            "columnName": "home_timeline_withFiles",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "homeTimeline.includeLocalRenotes",
            "columnName": "home_timeline_includeLocalRenotes",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "homeTimeline.includeMyRenotes",
            "columnName": "home_timeline_includeMyRenotes",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "homeTimeline.includeRenotedMyRenotes",
            "columnName": "home_timeline_includeRenotedMyRenotes",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "homeTimeline.type",
            "columnName": "home_timeline_type",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "userListTimeline.listId",
            "columnName": "user_list_timeline_listId",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "userListTimeline.withFiles",
            "columnName": "user_list_timeline_withFiles",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "userListTimeline.includeLocalRenotes",
            "columnName": "user_list_timeline_includeLocalRenotes",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "userListTimeline.includeMyRenotes",
            "columnName": "user_list_timeline_includeMyRenotes",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "userListTimeline.includeRenotedMyRenotes",
            "columnName": "user_list_timeline_includeRenotedMyRenotes",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "userListTimeline.type",
            "columnName": "user_list_timeline_type",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "mention.following",
            "columnName": "mention_following",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "mention.visibility",
            "columnName": "mention_visibility",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "mention.type",
            "columnName": "mention_type",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "show.noteId",
            "columnName": "show_noteId",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "show.type",
            "columnName": "show_type",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "searchByTag.tag",
            "columnName": "tag_tag",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "searchByTag.reply",
            "columnName": "tag_reply",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "searchByTag.renote",
            "columnName": "tag_renote",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "searchByTag.withFiles",
            "columnName": "tag_withFiles",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "searchByTag.poll",
            "columnName": "tag_poll",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "searchByTag.type",
            "columnName": "tag_type",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "featured.offset",
            "columnName": "featured_offset",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "featured.type",
            "columnName": "featured_type",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "notification.following",
            "columnName": "notification_following",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "notification.markAsRead",
            "columnName": "notification_markAsRead",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "notification.type",
            "columnName": "notification_type",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "userTimeline.userId",
            "columnName": "user_userId",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "userTimeline.includeReplies",
            "columnName": "user_includeReplies",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "userTimeline.includeMyRenotes",
            "columnName": "user_includeMyRenotes",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "userTimeline.withFiles",
            "columnName": "user_withFiles",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "userTimeline.type",
            "columnName": "user_type",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "search.query",
            "columnName": "search_query",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "search.host",
            "columnName": "search_host",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "search.userId",
            "columnName": "search_userId",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "search.type",
            "columnName": "search_type",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "favorite.type",
            "columnName": "favorite_type",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "antenna.antennaId",
            "columnName": "antenna_antennaId",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "antenna.type",
            "columnName": "antenna_type",
            "affinity": "TEXT",
            "notNull": false
          }
        ],
        "primaryKey": {
          "columnNames": [
            "id"
          ],
          "autoGenerate": true
        },
        "indices": [],
        "foreignKeys": [
          {
            "table": "Account",
            "onDelete": "NO ACTION",
            "onUpdate": "NO ACTION",
            "columns": [
              "accountId"
            ],
            "referencedColumns": [
              "id"
            ]
          }
        ]
      },
      {
        "tableName": "poll_choice_table",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`choice` TEXT NOT NULL, `draft_note_id` INTEGER NOT NULL, `weight` INTEGER NOT NULL, PRIMARY KEY(`choice`, `weight`, `draft_note_id`), FOREIGN KEY(`draft_note_id`) REFERENCES `draft_note_table`(`draft_note_id`) ON UPDATE CASCADE ON DELETE CASCADE )",
        "fields": [
          {
            "fieldPath": "choice",
            "columnName": "choice",
            "affinity": "TEXT",
            "notNull": true
          },
          {
            "fieldPath": "draftNoteId",
            "columnName": "draft_note_id",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "weight",
            "columnName": "weight",
            "affinity": "INTEGER",
            "notNull": true
          }
        ],
        "primaryKey": {
          "columnNames": [
            "choice",
            "weight",
            "draft_note_id"
          ],
          "autoGenerate": false
        },
        "indices": [
          {
            "name": "index_poll_choice_table_draft_note_id_choice",
            "unique": false,
            "columnNames": [
              "draft_note_id",
              "choice"
            ],
            "orders": [],
            "createSql": "CREATE INDEX IF NOT EXISTS `index_poll_choice_table_draft_note_id_choice` ON `${TABLE_NAME}` (`draft_note_id`, `choice`)"
          }
        ],
        "foreignKeys": [
          {
            "table": "draft_note_table",
            "onDelete": "CASCADE",
            "onUpdate": "CASCADE",
            "columns": [
              "draft_note_id"
            ],
            "referencedColumns": [
              "draft_note_id"
            ]
          }
        ]
      },
      {
        "tableName": "user_id",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`userId` TEXT NOT NULL, `draft_note_id` INTEGER NOT NULL, PRIMARY KEY(`userId`, `draft_note_id`), FOREIGN KEY(`draft_note_id`) REFERENCES `draft_note_table`(`draft_note_id`) ON UPDATE CASCADE ON DELETE CASCADE )",
        "fields": [
          {
            "fieldPath": "userId",
            "columnName": "userId",
            "affinity": "TEXT",
            "notNull": true
          },
          {
            "fieldPath": "draftNoteId",
            "columnName": "draft_note_id",
            "affinity": "INTEGER",
            "notNull": true
          }
        ],
        "primaryKey": {
          "columnNames": [
            "userId",
            "draft_note_id"
          ],
          "autoGenerate": false
        },
        "indices": [
          {
            "name": "index_user_id_draft_note_id",
            "unique": false,
            "columnNames": [
              "draft_note_id"
            ],
            "orders": [],
            "createSql": "CREATE INDEX IF NOT EXISTS `index_user_id_draft_note_id` ON `${TABLE_NAME}` (`draft_note_id`)"
          }
        ],
        "foreignKeys": [
          {
            "table": "draft_note_table",
            "onDelete": "CASCADE",
            "onUpdate": "CASCADE",
            "columns": [
              "draft_note_id"
            ],
            "referencedColumns": [
              "draft_note_id"
            ]
          }
        ]
      },
      {
        "tableName": "draft_file_table",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`name` TEXT NOT NULL DEFAULT 'name none', `remote_file_id` TEXT, `file_path` TEXT, `is_sensitive` INTEGER, `type` TEXT, `thumbnailUrl` TEXT, `draft_note_id` INTEGER NOT NULL, `folder_id` TEXT, `file_id` INTEGER PRIMARY KEY AUTOINCREMENT, FOREIGN KEY(`draft_note_id`) REFERENCES `draft_note_table`(`draft_note_id`) ON UPDATE CASCADE ON DELETE CASCADE )",
        "fields": [
          {
            "fieldPath": "name",
            "columnName": "name",
            "affinity": "TEXT",
            "notNull": true,
            "defaultValue": "'name none'"
          },
          {
            "fieldPath": "remoteFileId",
            "columnName": "remote_file_id",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "filePath",
            "columnName": "file_path",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "isSensitive",
            "columnName": "is_sensitive",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "type",
            "columnName": "type",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "thumbnailUrl",
            "columnName": "thumbnailUrl",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "draftNoteId",
            "columnName": "draft_note_id",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "folderId",
            "columnName": "folder_id",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "fileId",
            "columnName": "file_id",
            "affinity": "INTEGER",
            "notNull": false
          }
        ],
        "primaryKey": {
          "columnNames": [
            "file_id"
          ],
          "autoGenerate": true
        },
        "indices": [
          {
            "name": "index_draft_file_table_draft_note_id",
            "unique": false,
            "columnNames": [
              "draft_note_id"
            ],
            "orders": [],
            "createSql": "CREATE INDEX IF NOT EXISTS `index_draft_file_table_draft_note_id` ON `${TABLE_NAME}` (`draft_note_id`)"
          }
        ],
        "foreignKeys": [
          {
            "table": "draft_note_table",
            "onDelete": "CASCADE",
            "onUpdate": "CASCADE",
            "columns": [
              "draft_note_id"
            ],
            "referencedColumns": [
              "draft_note_id"
            ]
          }
        ]
      },
      {
        "tableName": "draft_note_table",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`accountId` INTEGER NOT NULL, `visibility` TEXT NOT NULL, `text` TEXT, `cw` TEXT, `viaMobile` INTEGER, `localOnly` INTEGER, `noExtractMentions` INTEGER, `noExtractHashtags` INTEGER, `noExtractEmojis` INTEGER, `replyId` TEXT, `renoteId` TEXT, `draft_note_id` INTEGER PRIMARY KEY AUTOINCREMENT, `multiple` INTEGER, `expiresAt` INTEGER, FOREIGN KEY(`accountId`) REFERENCES `account_table`(`accountId`) ON UPDATE CASCADE ON DELETE CASCADE )",
        "fields": [
          {
            "fieldPath": "accountId",
            "columnName": "accountId",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "visibility",
            "columnName": "visibility",
            "affinity": "TEXT",
            "notNull": true
          },
          {
            "fieldPath": "text",
            "columnName": "text",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "cw",
            "columnName": "cw",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "viaMobile",
            "columnName": "viaMobile",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "localOnly",
            "columnName": "localOnly",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "noExtractMentions",
            "columnName": "noExtractMentions",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "noExtractHashtags",
            "columnName": "noExtractHashtags",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "noExtractEmojis",
            "columnName": "noExtractEmojis",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "replyId",
            "columnName": "replyId",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "renoteId",
            "columnName": "renoteId",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "draftNoteId",
            "columnName": "draft_note_id",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "poll.multiple",
            "columnName": "multiple",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "poll.expiresAt",
            "columnName": "expiresAt",
            "affinity": "INTEGER",
            "notNull": false
          }
        ],
        "primaryKey": {
          "columnNames": [
            "draft_note_id"
          ],
          "autoGenerate": true
        },
        "indices": [
          {
            "name": "index_draft_note_table_accountId_text",
            "unique": false,
            "columnNames": [
              "accountId",
              "text"
            ],
            "orders": [],
            "createSql": "CREATE INDEX IF NOT EXISTS `index_draft_note_table_accountId_text` ON `${TABLE_NAME}` (`accountId`, `text`)"
          }
        ],
        "foreignKeys": [
          {
            "table": "account_table",
            "onDelete": "CASCADE",
            "onUpdate": "CASCADE",
            "columns": [
              "accountId"
            ],
            "referencedColumns": [
              "accountId"
            ]
          }
        ]
      },
      {
        "tableName": "url_preview",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`url` TEXT NOT NULL, `title` TEXT NOT NULL, `icon` TEXT, `description` TEXT, `thumbnail` TEXT, `siteName` TEXT, PRIMARY KEY(`url`))",
        "fields": [
          {
            "fieldPath": "url",
            "columnName": "url",
            "affinity": "TEXT",
            "notNull": true
          },
          {
            "fieldPath": "title",
            "columnName": "title",
            "affinity": "TEXT",
            "notNull": true
          },
          {
            "fieldPath": "icon",
            "columnName": "icon",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "description",
            "columnName": "description",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "thumbnail",
            "columnName": "thumbnail",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "siteName",
            "columnName": "siteName",
            "affinity": "TEXT",
            "notNull": false
          }
        ],
        "primaryKey": {
          "columnNames": [
            "url"
          ],
          "autoGenerate": false
        },
        "indices": [],
        "foreignKeys": []
      },
      {
        "tableName": "account_table",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`remoteId` TEXT NOT NULL, `instanceDomain` TEXT NOT NULL, `userName` TEXT NOT NULL, `encryptedToken` TEXT NOT NULL, `accountId` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)",
        "fields": [
          {
            "fieldPath": "remoteId",
            "columnName": "remoteId",
            "affinity": "TEXT",
            "notNull": true
          },
          {
            "fieldPath": "instanceDomain",
            "columnName": "instanceDomain",
            "affinity": "TEXT",
            "notNull": true
          },
          {
            "fieldPath": "userName",
            "columnName": "userName",
            "affinity": "TEXT",
            "notNull": true
          },
          {
            "fieldPath": "encryptedToken",
            "columnName": "encryptedToken",
            "affinity": "TEXT",
            "notNull": true
          },
          {
            "fieldPath": "accountId",
            "columnName": "accountId",
            "affinity": "INTEGER",
            "notNull": true
          }
        ],
        "primaryKey": {
          "columnNames": [
            "accountId"
          ],
          "autoGenerate": true
        },
        "indices": [
          {
            "name": "index_account_table_remoteId",
            "unique": false,
            "columnNames": [
              "remoteId"
            ],
            "orders": [],
            "createSql": "CREATE INDEX IF NOT EXISTS `index_account_table_remoteId` ON `${TABLE_NAME}` (`remoteId`)"
          },
          {
            "name": "index_account_table_instanceDomain",
            "unique": false,
            "columnNames": [
              "instanceDomain"
            ],
            "orders": [],
            "createSql": "CREATE INDEX IF NOT EXISTS `index_account_table_instanceDomain` ON `${TABLE_NAME}` (`instanceDomain`)"
          },
          {
            "name": "index_account_table_userName",
            "unique": false,
            "columnNames": [
              "userName"
            ],
            "orders": [],
            "createSql": "CREATE INDEX IF NOT EXISTS `index_account_table_userName` ON `${TABLE_NAME}` (`userName`)"
          }
        ],
        "foreignKeys": []
      },
      {
        "tableName": "page_table",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`accountId` INTEGER NOT NULL, `title` TEXT NOT NULL, `weight` INTEGER NOT NULL, `pageId` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `type` TEXT NOT NULL, `withFiles` INTEGER, `excludeNsfw` INTEGER, `includeLocalRenotes` INTEGER, `includeMyRenotes` INTEGER, `includeRenotedMyRenotes` INTEGER, `listId` TEXT, `following` INTEGER, `visibility` TEXT, `noteId` TEXT, `tag` TEXT, `reply` INTEGER, `renote` INTEGER, `poll` INTEGER, `offset` INTEGER, `markAsRead` INTEGER, `userId` TEXT, `includeReplies` INTEGER, `query` TEXT, `host` TEXT, `antennaId` TEXT)",
        "fields": [
          {
            "fieldPath": "accountId",
            "columnName": "accountId",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "title",
            "columnName": "title",
            "affinity": "TEXT",
            "notNull": true
          },
          {
            "fieldPath": "weight",
            "columnName": "weight",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "pageId",
            "columnName": "pageId",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "pageParams.type",
            "columnName": "type",
            "affinity": "TEXT",
            "notNull": true
          },
          {
            "fieldPath": "pageParams.withFiles",
            "columnName": "withFiles",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "pageParams.excludeNsfw",
            "columnName": "excludeNsfw",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "pageParams.includeLocalRenotes",
            "columnName": "includeLocalRenotes",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "pageParams.includeMyRenotes",
            "columnName": "includeMyRenotes",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "pageParams.includeRenotedMyRenotes",
            "columnName": "includeRenotedMyRenotes",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "pageParams.listId",
            "columnName": "listId",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "pageParams.following",
            "columnName": "following",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "pageParams.visibility",
            "columnName": "visibility",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "pageParams.noteId",
            "columnName": "noteId",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "pageParams.tag",
            "columnName": "tag",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "pageParams.reply",
            "columnName": "reply",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "pageParams.renote",
            "columnName": "renote",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "pageParams.poll",
            "columnName": "poll",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "pageParams.offset",
            "columnName": "offset",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "pageParams.markAsRead",
            "columnName": "markAsRead",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "pageParams.userId",
            "columnName": "userId",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "pageParams.includeReplies",
            "columnName": "includeReplies",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "pageParams.query",
            "columnName": "query",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "pageParams.host",
            "columnName": "host",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "pageParams.antennaId",
            "columnName": "antennaId",
            "affinity": "TEXT",
            "notNull": false
          }
        ],
        "primaryKey": {
          "columnNames": [
            "pageId"
          ],
          "autoGenerate": true
        },
        "indices": [
          {
            "name": "index_page_table_weight",
            "unique": false,
            "columnNames": [
              "weight"
            ],
            "orders": [],
            "createSql": "CREATE INDEX IF NOT EXISTS `index_page_table_weight` ON `${TABLE_NAME}` (`weight`)"
          },
          {
            "name": "index_page_table_accountId",
            "unique": false,
            "columnNames": [
              "accountId"
            ],
            "orders": [],
            "createSql": "CREATE INDEX IF NOT EXISTS `index_page_table_accountId` ON `${TABLE_NAME}` (`accountId`)"
          }
        ],
        "foreignKeys": []
      },
      {
        "tableName": "meta_table",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`uri` TEXT NOT NULL, `bannerUrl` TEXT, `cacheRemoteFiles` INTEGER, `description` TEXT, `disableGlobalTimeline` INTEGER, `disableLocalTimeline` INTEGER, `disableRegistration` INTEGER, `driveCapacityPerLocalUserMb` INTEGER, `driveCapacityPerRemoteUserMb` INTEGER, `enableDiscordIntegration` INTEGER, `enableEmail` INTEGER, `enableEmojiReaction` INTEGER, `enableGithubIntegration` INTEGER, `enableRecaptcha` INTEGER, `enableServiceWorker` INTEGER, `enableTwitterIntegration` INTEGER, `errorImageUrl` TEXT, `feedbackUrl` TEXT, `iconUrl` TEXT, `maintainerEmail` TEXT, `maintainerName` TEXT, `mascotImageUrl` TEXT, `maxNoteTextLength` INTEGER, `name` TEXT, `recaptchaSiteKey` TEXT, `secure` INTEGER, `swPublicKey` TEXT, `toSUrl` TEXT, `version` TEXT NOT NULL, PRIMARY KEY(`uri`))",
        "fields": [
          {
            "fieldPath": "uri",
            "columnName": "uri",
            "affinity": "TEXT",
            "notNull": true
          },
          {
            "fieldPath": "bannerUrl",
            "columnName": "bannerUrl",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "cacheRemoteFiles",
            "columnName": "cacheRemoteFiles",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "description",
            "columnName": "description",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "disableGlobalTimeline",
            "columnName": "disableGlobalTimeline",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "disableLocalTimeline",
            "columnName": "disableLocalTimeline",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "disableRegistration",
            "columnName": "disableRegistration",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "driveCapacityPerLocalUserMb",
            "columnName": "driveCapacityPerLocalUserMb",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "driveCapacityPerRemoteUserMb",
            "columnName": "driveCapacityPerRemoteUserMb",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "enableDiscordIntegration",
            "columnName": "enableDiscordIntegration",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "enableEmail",
            "columnName": "enableEmail",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "enableEmojiReaction",
            "columnName": "enableEmojiReaction",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "enableGithubIntegration",
            "columnName": "enableGithubIntegration",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "enableRecaptcha",
            "columnName": "enableRecaptcha",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "enableServiceWorker",
            "columnName": "enableServiceWorker",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "enableTwitterIntegration",
            "columnName": "enableTwitterIntegration",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "errorImageUrl",
            "columnName": "errorImageUrl",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "feedbackUrl",
            "columnName": "feedbackUrl",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "iconUrl",
            "columnName": "iconUrl",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "maintainerEmail",
            "columnName": "maintainerEmail",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "maintainerName",
            "columnName": "maintainerName",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "mascotImageUrl",
            "columnName": "mascotImageUrl",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "maxNoteTextLength",
            "columnName": "maxNoteTextLength",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "name",
            "columnName": "name",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "recaptchaSiteKey",
            "columnName": "recaptchaSiteKey",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "secure",
            "columnName": "secure",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "swPublicKey",
            "columnName": "swPublicKey",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "toSUrl",
            "columnName": "toSUrl",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "version",
            "columnName": "version",
            "affinity": "TEXT",
            "notNull": true
          }
        ],
        "primaryKey": {
          "columnNames": [
            "uri"
          ],
          "autoGenerate": false
        },
        "indices": [],
        "foreignKeys": []
      },
      {
        "tableName": "emoji_table",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`name` TEXT NOT NULL, `instanceDomain` TEXT NOT NULL, `host` TEXT, `url` TEXT, `uri` TEXT, `type` TEXT, `category` TEXT, `id` TEXT, PRIMARY KEY(`name`, `instanceDomain`), FOREIGN KEY(`instanceDomain`) REFERENCES `meta_table`(`uri`) ON UPDATE CASCADE ON DELETE CASCADE )",
        "fields": [
          {
            "fieldPath": "name",
            "columnName": "name",
            "affinity": "TEXT",
            "notNull": true
          },
          {
            "fieldPath": "instanceDomain",
            "columnName": "instanceDomain",
            "affinity": "TEXT",
            "notNull": true
          },
          {
            "fieldPath": "host",
            "columnName": "host",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "url",
            "columnName": "url",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "uri",
            "columnName": "uri",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "type",
            "columnName": "type",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "category",
            "columnName": "category",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "id",
            "columnName": "id",
            "affinity": "TEXT",
            "notNull": false
          }
        ],
        "primaryKey": {
          "columnNames": [
            "name",
            "instanceDomain"
          ],
          "autoGenerate": false
        },
        "indices": [
          {
            "name": "index_emoji_table_instanceDomain",
            "unique": false,
            "columnNames": [
              "instanceDomain"
            ],
            "orders": [],
            "createSql": "CREATE INDEX IF NOT EXISTS `index_emoji_table_instanceDomain` ON `${TABLE_NAME}` (`instanceDomain`)"
          },
          {
            "name": "index_emoji_table_name",
            "unique": false,
            "columnNames": [
              "name"
            ],
            "orders": [],
            "createSql": "CREATE INDEX IF NOT EXISTS `index_emoji_table_name` ON `${TABLE_NAME}` (`name`)"
          }
        ],
        "foreignKeys": [
          {
            "table": "meta_table",
            "onDelete": "CASCADE",
            "onUpdate": "CASCADE",
            "columns": [
              "instanceDomain"
            ],
            "referencedColumns": [
              "uri"
            ]
          }
        ]
      },
      {
        "tableName": "emoji_alias_table",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`alias` TEXT NOT NULL, `name` TEXT NOT NULL, `instanceDomain` TEXT NOT NULL, PRIMARY KEY(`alias`, `name`, `instanceDomain`), FOREIGN KEY(`name`, `instanceDomain`) REFERENCES `emoji_table`(`name`, `instanceDomain`) ON UPDATE CASCADE ON DELETE CASCADE )",
        "fields": [
          {
            "fieldPath": "alias",
            "columnName": "alias",
            "affinity": "TEXT",
            "notNull": true
          },
          {
            "fieldPath": "name",
            "columnName": "name",
            "affinity": "TEXT",
            "notNull": true
          },
          {
            "fieldPath": "instanceDomain",
            "columnName": "instanceDomain",
            "affinity": "TEXT",
            "notNull": true
          }
        ],
        "primaryKey": {
          "columnNames": [
            "alias",
            "name",
            "instanceDomain"
          ],
          "autoGenerate": false
        },
        "indices": [],
        "foreignKeys": [
          {
            "table": "emoji_table",
            "onDelete": "CASCADE",
            "onUpdate": "CASCADE",
            "columns": [
              "name",
              "instanceDomain"
            ],
            "referencedColumns": [
              "name",
              "instanceDomain"
            ]
          }
        ]
      },
      {
        "tableName": "unread_notifications_table",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`accountId` INTEGER NOT NULL, `notificationId` TEXT NOT NULL, PRIMARY KEY(`accountId`, `notificationId`), FOREIGN KEY(`accountId`) REFERENCES `account_table`(`accountId`) ON UPDATE CASCADE ON DELETE CASCADE )",
        "fields": [
          {
            "fieldPath": "accountId",
            "columnName": "accountId",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "notificationId",
            "columnName": "notificationId",
            "affinity": "TEXT",
            "notNull": true
          }
        ],
        "primaryKey": {
          "columnNames": [
            "accountId",
            "notificationId"
          ],
          "autoGenerate": false
        },
        "indices": [],
        "foreignKeys": [
          {
            "table": "account_table",
            "onDelete": "CASCADE",
            "onUpdate": "CASCADE",
            "columns": [
              "accountId"
            ],
            "referencedColumns": [
              "accountId"
            ]
          }
        ]
      },
      {
        "tableName": "nicknames",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`nickname` TEXT NOT NULL, `username` TEXT NOT NULL, `host` TEXT NOT NULL, `id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)",
        "fields": [
          {
            "fieldPath": "nickname",
            "columnName": "nickname",
            "affinity": "TEXT",
            "notNull": true
          },
          {
            "fieldPath": "userName",
            "columnName": "username",
            "affinity": "TEXT",
            "notNull": true
          },
          {
            "fieldPath": "host",
            "columnName": "host",
            "affinity": "TEXT",
            "notNull": true
          },
          {
            "fieldPath": "id",
            "columnName": "id",
            "affinity": "INTEGER",
            "notNull": true
          }
        ],
        "primaryKey": {
          "columnNames": [
            "id"
          ],
          "autoGenerate": true
        },
        "indices": [
          {
            "name": "index_nicknames_username_host",
            "unique": true,
            "columnNames": [
              "username",
              "host"
            ],
            "orders": [],
            "createSql": "CREATE UNIQUE INDEX IF NOT EXISTS `index_nicknames_username_host` ON `${TABLE_NAME}` (`username`, `host`)"
          }
        ],
        "foreignKeys": []
      }
    ],
    "views": [],
    "setupQueries": [
      "CREATE TABLE IF NOT EXISTS room_master_table (id INTEGER PRIMARY KEY,identity_hash TEXT)",
      "INSERT OR REPLACE INTO room_master_table (id,identity_hash) VALUES(42, 'e57ecde54b614792af12c09f03436dc1')"
    ]
  }
}

================================================
FILE: app/schemas/jp.panta.misskeyandroidclient.model.DataBase/11.json
================================================
{
  "formatVersion": 1,
  "database": {
    "version": 11,
    "identityHash": "c50ce2972f355ed260b3b30b300c8a9f",
    "entities": [
      {
        "tableName": "connection_information",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`accountId` TEXT NOT NULL, `instanceBaseUrl` TEXT NOT NULL, `encryptedI` TEXT NOT NULL, `viaName` TEXT, `createdAt` TEXT NOT NULL, `isDirect` INTEGER NOT NULL, `updatedAt` TEXT NOT NULL, PRIMARY KEY(`accountId`, `encryptedI`, `instanceBaseUrl`), FOREIGN KEY(`accountId`) REFERENCES `Account`(`id`) ON UPDATE NO ACTION ON DELETE CASCADE )",
        "fields": [
          {
            "fieldPath": "accountId",
            "columnName": "accountId",
            "affinity": "TEXT",
            "notNull": true
          },
          {
            "fieldPath": "instanceBaseUrl",
            "columnName": "instanceBaseUrl",
            "affinity": "TEXT",
            "notNull": true
          },
          {
            "fieldPath": "encryptedI",
            "columnName": "encryptedI",
            "affinity": "TEXT",
            "notNull": true
          },
          {
            "fieldPath": "viaName",
            "columnName": "viaName",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "createdAt",
            "columnName": "createdAt",
            "affinity": "TEXT",
            "notNull": true
          },
          {
            "fieldPath": "isDirect",
            "columnName": "isDirect",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "updatedAt",
            "columnName": "updatedAt",
            "affinity": "TEXT",
            "notNull": true
          }
        ],
        "primaryKey": {
          "columnNames": [
            "accountId",
            "encryptedI",
            "instanceBaseUrl"
          ],
          "autoGenerate": false
        },
        "indices": [],
        "foreignKeys": [
          {
            "table": "Account",
            "onDelete": "CASCADE",
            "onUpdate": "NO ACTION",
            "columns": [
              "accountId"
            ],
            "referencedColumns": [
              "id"
            ]
          }
        ]
      },
      {
        "tableName": "reaction_history",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`reaction` TEXT NOT NULL, `instance_domain` TEXT NOT NULL, `id` INTEGER PRIMARY KEY AUTOINCREMENT)",
        "fields": [
          {
            "fieldPath": "reaction",
            "columnName": "reaction",
            "affinity": "TEXT",
            "notNull": true
          },
          {
            "fieldPath": "instanceDomain",
            "columnName": "instance_domain",
            "affinity": "TEXT",
            "notNull": true
          },
          {
            "fieldPath": "id",
            "columnName": "id",
            "affinity": "INTEGER",
            "notNull": false
          }
        ],
        "primaryKey": {
          "columnNames": [
            "id"
          ],
          "autoGenerate": true
        },
        "indices": [],
        "foreignKeys": []
      },
      {
        "tableName": "Account",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` TEXT NOT NULL, PRIMARY KEY(`id`))",
        "fields": [
          {
            "fieldPath": "id",
            "columnName": "id",
            "affinity": "TEXT",
            "notNull": true
          }
        ],
        "primaryKey": {
          "columnNames": [
            "id"
          ],
          "autoGenerate": false
        },
        "indices": [],
        "foreignKeys": []
      },
      {
        "tableName": "reaction_user_setting",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`reaction` TEXT NOT NULL, `instance_domain` TEXT NOT NULL, `weight` INTEGER NOT NULL, PRIMARY KEY(`reaction`, `instance_domain`))",
        "fields": [
          {
            "fieldPath": "reaction",
            "columnName": "reaction",
            "affinity": "TEXT",
            "notNull": true
          },
          {
            "fieldPath": "instanceDomain",
            "columnName": "instance_domain",
            "affinity": "TEXT",
            "notNull": true
          },
          {
            "fieldPath": "weight",
            "columnName": "weight",
            "affinity": "INTEGER",
            "notNull": true
          }
        ],
        "primaryKey": {
          "columnNames": [
            "reaction",
            "instance_domain"
          ],
          "autoGenerate": false
        },
        "indices": [],
        "foreignKeys": []
      },
      {
        "tableName": "page",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`accountId` TEXT, `title` TEXT NOT NULL, `pageNumber` INTEGER, `id` INTEGER PRIMARY KEY AUTOINCREMENT, `global_timeline_with_files` INTEGER, `global_timeline_type` TEXT, `local_timeline_with_files` INTEGER, `local_timeline_exclude_nsfw` INTEGER, `local_timeline_type` TEXT, `hybrid_timeline_withFiles` INTEGER, `hybrid_timeline_includeLocalRenotes` INTEGER, `hybrid_timeline_includeMyRenotes` INTEGER, `hybrid_timeline_includeRenotedMyRenotes` INTEGER, `hybrid_timeline_type` TEXT, `home_timeline_withFiles` INTEGER, `home_timeline_includeLocalRenotes` INTEGER, `home_timeline_includeMyRenotes` INTEGER, `home_timeline_includeRenotedMyRenotes` INTEGER, `home_timeline_type` TEXT, `user_list_timeline_listId` TEXT, `user_list_timeline_withFiles` INTEGER, `user_list_timeline_includeLocalRenotes` INTEGER, `user_list_timeline_includeMyRenotes` INTEGER, `user_list_timeline_includeRenotedMyRenotes` INTEGER, `user_list_timeline_type` TEXT, `mention_following` INTEGER, `mention_visibility` TEXT, `mention_type` TEXT, `show_noteId` TEXT, `show_type` TEXT, `tag_tag` TEXT, `tag_reply` INTEGER, `tag_renote` INTEGER, `tag_withFiles` INTEGER, `tag_poll` INTEGER, `tag_type` TEXT, `featured_offset` INTEGER, `featured_type` TEXT, `notification_following` INTEGER, `notification_markAsRead` INTEGER, `notification_type` TEXT, `user_userId` TEXT, `user_includeReplies` INTEGER, `user_includeMyRenotes` INTEGER, `user_withFiles` INTEGER, `user_type` TEXT, `search_query` TEXT, `search_host` TEXT, `search_userId` TEXT, `search_type` TEXT, `favorite_type` TEXT, `antenna_antennaId` TEXT, `antenna_type` TEXT, FOREIGN KEY(`accountId`) REFERENCES `Account`(`id`) ON UPDATE NO ACTION ON DELETE NO ACTION )",
        "fields": [
          {
            "fieldPath": "accountId",
            "columnName": "accountId",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "title",
            "columnName": "title",
            "affinity": "TEXT",
            "notNull": true
          },
          {
            "fieldPath": "pageNumber",
            "columnName": "pageNumber",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "id",
            "columnName": "id",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "globalTimeline.withFiles",
            "columnName": "global_timeline_with_files",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "globalTimeline.type",
            "columnName": "global_timeline_type",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "localTimeline.withFiles",
            "columnName": "local_timeline_with_files",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "localTimeline.excludeNsfw",
            "columnName": "local_timeline_exclude_nsfw",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "localTimeline.type",
            "columnName": "local_timeline_type",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "hybridTimeline.withFiles",
            "columnName": "hybrid_timeline_withFiles",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "hybridTimeline.includeLocalRenotes",
            "columnName": "hybrid_timeline_includeLocalRenotes",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "hybridTimeline.includeMyRenotes",
            "columnName": "hybrid_timeline_includeMyRenotes",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "hybridTimeline.includeRenotedMyRenotes",
            "columnName": "hybrid_timeline_includeRenotedMyRenotes",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "hybridTimeline.type",
            "columnName": "hybrid_timeline_type",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "homeTimeline.withFiles",
            "columnName": "home_timeline_withFiles",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "homeTimeline.includeLocalRenotes",
            "columnName": "home_timeline_includeLocalRenotes",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "homeTimeline.includeMyRenotes",
            "columnName": "home_timeline_includeMyRenotes",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "homeTimeline.includeRenotedMyRenotes",
            "columnName": "home_timeline_includeRenotedMyRenotes",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "homeTimeline.type",
            "columnName": "home_timeline_type",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "userListTimeline.listId",
            "columnName": "user_list_timeline_listId",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "userListTimeline.withFiles",
            "columnName": "user_list_timeline_withFiles",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "userListTimeline.includeLocalRenotes",
            "columnName": "user_list_timeline_includeLocalRenotes",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "userListTimeline.includeMyRenotes",
            "columnName": "user_list_timeline_includeMyRenotes",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "userListTimeline.includeRenotedMyRenotes",
            "columnName": "user_list_timeline_includeRenotedMyRenotes",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "userListTimeline.type",
            "columnName": "user_list_timeline_type",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "mention.following",
            "columnName": "mention_following",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "mention.visibility",
            "columnName": "mention_visibility",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "mention.type",
            "columnName": "mention_type",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "show.noteId",
            "columnName": "show_noteId",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "show.type",
            "columnName": "show_type",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "searchByTag.tag",
            "columnName": "tag_tag",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "searchByTag.reply",
            "columnName": "tag_reply",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "searchByTag.renote",
            "columnName": "tag_renote",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "searchByTag.withFiles",
            "columnName": "tag_withFiles",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "searchByTag.poll",
            "columnName": "tag_poll",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "searchByTag.type",
            "columnName": "tag_type",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "featured.offset",
            "columnName": "featured_offset",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "featured.type",
            "columnName": "featured_type",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "notification.following",
            "columnName": "notification_following",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "notification.markAsRead",
            "columnName": "notification_markAsRead",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "notification.type",
            "columnName": "notification_type",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "userTimeline.userId",
            "columnName": "user_userId",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "userTimeline.includeReplies",
            "columnName": "user_includeReplies",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "userTimeline.includeMyRenotes",
            "columnName": "user_includeMyRenotes",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "userTimeline.withFiles",
            "columnName": "user_withFiles",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "userTimeline.type",
            "columnName": "user_type",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "search.query",
            "columnName": "search_query",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "search.host",
            "columnName": "search_host",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "search.userId",
            "columnName": "search_userId",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "search.type",
            "columnName": "search_type",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "favorite.type",
            "columnName": "favorite_type",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "antenna.antennaId",
            "columnName": "antenna_antennaId",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "antenna.type",
            "columnName": "antenna_type",
            "affinity": "TEXT",
            "notNull": false
          }
        ],
        "primaryKey": {
          "columnNames": [
            "id"
          ],
          "autoGenerate": true
        },
        "indices": [],
        "foreignKeys": [
          {
            "table": "Account",
            "onDelete": "NO ACTION",
            "onUpdate": "NO ACTION",
            "columns": [
              "accountId"
            ],
            "referencedColumns": [
              "id"
            ]
          }
        ]
      },
      {
        "tableName": "poll_choice_table",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`choice` TEXT NOT NULL, `draft_note_id` INTEGER NOT NULL, `weight` INTEGER NOT NULL, PRIMARY KEY(`choice`, `weight`, `draft_note_id`), FOREIGN KEY(`draft_note_id`) REFERENCES `draft_note_table`(`draft_note_id`) ON UPDATE CASCADE ON DELETE CASCADE )",
        "fields": [
          {
            "fieldPath": "choice",
            "columnName": "choice",
            "affinity": "TEXT",
            "notNull": true
          },
          {
            "fieldPath": "draftNoteId",
            "columnName": "draft_note_id",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "weight",
            "columnName": "weight",
            "affinity": "INTEGER",
            "notNull": true
          }
        ],
        "primaryKey": {
          "columnNames": [
            "choice",
            "weight",
            "draft_note_id"
          ],
          "autoGenerate": false
        },
        "indices": [
          {
            "name": "index_poll_choice_table_draft_note_id_choice",
            "unique": false,
            "columnNames": [
              "draft_note_id",
              "choice"
            ],
            "orders": [],
            "createSql": "CREATE INDEX IF NOT EXISTS `index_poll_choice_table_draft_note_id_choice` ON `${TABLE_NAME}` (`draft_note_id`, `choice`)"
          }
        ],
        "foreignKeys": [
          {
            "table": "draft_note_table",
            "onDelete": "CASCADE",
            "onUpdate": "CASCADE",
            "columns": [
              "draft_note_id"
            ],
            "referencedColumns": [
              "draft_note_id"
            ]
          }
        ]
      },
      {
        "tableName": "user_id",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`userId` TEXT NOT NULL, `draft_note_id` INTEGER NOT NULL, PRIMARY KEY(`userId`, `draft_note_id`), FOREIGN KEY(`draft_note_id`) REFERENCES `draft_note_table`(`draft_note_id`) ON UPDATE CASCADE ON DELETE CASCADE )",
        "fields": [
          {
            "fieldPath": "userId",
            "columnName": "userId",
            "affinity": "TEXT",
            "notNull": true
          },
          {
            "fieldPath": "draftNoteId",
            "columnName": "draft_note_id",
            "affinity": "INTEGER",
            "notNull": true
          }
        ],
        "primaryKey": {
          "columnNames": [
            "userId",
            "draft_note_id"
          ],
          "autoGenerate": false
        },
        "indices": [
          {
            "name": "index_user_id_draft_note_id",
            "unique": false,
            "columnNames": [
              "draft_note_id"
            ],
            "orders": [],
            "createSql": "CREATE INDEX IF NOT EXISTS `index_user_id_draft_note_id` ON `${TABLE_NAME}` (`draft_note_id`)"
          }
        ],
        "foreignKeys": [
          {
            "table": "draft_note_table",
            "onDelete": "CASCADE",
            "onUpdate": "CASCADE",
            "columns": [
              "draft_note_id"
            ],
            "referencedColumns": [
              "draft_note_id"
            ]
          }
        ]
      },
      {
        "tableName": "draft_file_table",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`name` TEXT NOT NULL DEFAULT 'name none', `remote_file_id` TEXT, `file_path` TEXT, `is_sensitive` INTEGER, `type` TEXT, `thumbnailUrl` TEXT, `draft_note_id` INTEGER NOT NULL, `folder_id` TEXT, `file_id` INTEGER PRIMARY KEY AUTOINCREMENT, FOREIGN KEY(`draft_note_id`) REFERENCES `draft_note_table`(`draft_note_id`) ON UPDATE CASCADE ON DELETE CASCADE )",
        "fields": [
          {
            "fieldPath": "name",
            "columnName": "name",
            "affinity": "TEXT",
            "notNull": true,
            "defaultValue": "'name none'"
          },
          {
            "fieldPath": "remoteFileId",
            "columnName": "remote_file_id",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "filePath",
            "columnName": "file_path",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "isSensitive",
            "columnName": "is_sensitive",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "type",
            "columnName": "type",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "thumbnailUrl",
            "columnName": "thumbnailUrl",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "draftNoteId",
            "columnName": "draft_note_id",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "folderId",
            "columnName": "folder_id",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "fileId",
            "columnName": "file_id",
            "affinity": "INTEGER",
            "notNull": false
          }
        ],
        "primaryKey": {
          "columnNames": [
            "file_id"
          ],
          "autoGenerate": true
        },
        "indices": [
          {
            "name": "index_draft_file_table_draft_note_id",
            "unique": false,
            "columnNames": [
              "draft_note_id"
            ],
            "orders": [],
            "createSql": "CREATE INDEX IF NOT EXISTS `index_draft_file_table_draft_note_id` ON `${TABLE_NAME}` (`draft_note_id`)"
          }
        ],
        "foreignKeys": [
          {
            "table": "draft_note_table",
            "onDelete": "CASCADE",
            "onUpdate": "CASCADE",
            "columns": [
              "draft_note_id"
            ],
            "referencedColumns": [
              "draft_note_id"
            ]
          }
        ]
      },
      {
        "tableName": "draft_note_table",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`accountId` INTEGER NOT NULL, `visibility` TEXT NOT NULL, `text` TEXT, `cw` TEXT, `viaMobile` INTEGER, `localOnly` INTEGER, `noExtractMentions` INTEGER, `noExtractHashtags` INTEGER, `noExtractEmojis` INTEGER, `replyId` TEXT, `renoteId` TEXT, `draft_note_id` INTEGER PRIMARY KEY AUTOINCREMENT, `multiple` INTEGER, `expiresAt` INTEGER, FOREIGN KEY(`accountId`) REFERENCES `account_table`(`accountId`) ON UPDATE CASCADE ON DELETE CASCADE )",
        "fields": [
          {
            "fieldPath": "accountId",
            "columnName": "accountId",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "visibility",
            "columnName": "visibility",
            "affinity": "TEXT",
            "notNull": true
          },
          {
            "fieldPath": "text",
            "columnName": "text",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "cw",
            "columnName": "cw",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "viaMobile",
            "columnName": "viaMobile",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "localOnly",
            "columnName": "localOnly",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "noExtractMentions",
            "columnName": "noExtractMentions",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "noExtractHashtags",
            "columnName": "noExtractHashtags",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "noExtractEmojis",
            "columnName": "noExtractEmojis",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "replyId",
            "columnName": "replyId",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "renoteId",
            "columnName": "renoteId",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "draftNoteId",
            "columnName": "draft_note_id",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "poll.multiple",
            "columnName": "multiple",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "poll.expiresAt",
            "columnName": "expiresAt",
            "affinity": "INTEGER",
            "notNull": false
          }
        ],
        "primaryKey": {
          "columnNames": [
            "draft_note_id"
          ],
          "autoGenerate": true
        },
        "indices": [
          {
            "name": "index_draft_note_table_accountId_text",
            "unique": false,
            "columnNames": [
              "accountId",
              "text"
            ],
            "orders": [],
            "createSql": "CREATE INDEX IF NOT EXISTS `index_draft_note_table_accountId_text` ON `${TABLE_NAME}` (`accountId`, `text`)"
          }
        ],
        "foreignKeys": [
          {
            "table": "account_table",
            "onDelete": "CASCADE",
            "onUpdate": "CASCADE",
            "columns": [
              "accountId"
            ],
            "referencedColumns": [
              "accountId"
            ]
          }
        ]
      },
      {
        "tableName": "url_preview",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`url` TEXT NOT NULL, `title` TEXT NOT NULL, `icon` TEXT, `description` TEXT, `thumbnail` TEXT, `siteName` TEXT, PRIMARY KEY(`url`))",
        "fields": [
          {
            "fieldPath": "url",
            "columnName": "url",
            "affinity": "TEXT",
            "notNull": true
          },
          {
            "fieldPath": "title",
            "columnName": "title",
            "affinity": "TEXT",
            "notNull": true
          },
          {
            "fieldPath": "icon",
            "columnName": "icon",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "description",
            "columnName": "description",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "thumbnail",
            "columnName": "thumbnail",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "siteName",
            "columnName": "siteName",
            "affinity": "TEXT",
            "notNull": false
          }
        ],
        "primaryKey": {
          "columnNames": [
            "url"
          ],
          "autoGenerate": false
        },
        "indices": [],
        "foreignKeys": []
      },
      {
        "tableName": "account_table",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`remoteId` TEXT NOT NULL, `instanceDomain` TEXT NOT NULL, `userName` TEXT NOT NULL, `encryptedToken` TEXT NOT NULL, `instanceType` TEXT NOT NULL DEFAULT 'misskey', `accountId` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)",
        "fields": [
          {
            "fieldPath": "remoteId",
            "columnName": "remoteId",
            "affinity": "TEXT",
            "notNull": true
          },
          {
            "fieldPath": "instanceDomain",
            "columnName": "instanceDomain",
            "affinity": "TEXT",
            "notNull": true
          },
          {
            "fieldPath": "userName",
            "columnName": "userName",
            "affinity": "TEXT",
            "notNull": true
          },
          {
            "fieldPath": "encryptedToken",
            "columnName": "encryptedToken",
            "affinity": "TEXT",
            "notNull": true
          },
          {
            "fieldPath": "instanceType",
            "columnName": "instanceType",
            "affinity": "TEXT",
            "notNull": true,
            "defaultValue": "'misskey'"
          },
          {
            "fieldPath": "accountId",
            "columnName": "accountId",
            "affinity": "INTEGER",
            "notNull": true
          }
        ],
        "primaryKey": {
          "columnNames": [
            "accountId"
          ],
          "autoGenerate": true
        },
        "indices": [
          {
            "name": "index_account_table_remoteId",
            "unique": false,
            "columnNames": [
              "remoteId"
            ],
            "orders": [],
            "createSql": "CREATE INDEX IF NOT EXISTS `index_account_table_remoteId` ON `${TABLE_NAME}` (`remoteId`)"
          },
          {
            "name": "index_account_table_instanceDomain",
            "unique": false,
            "columnNames": [
              "instanceDomain"
            ],
            "orders": [],
            "createSql": "CREATE INDEX IF NOT EXISTS `index_account_table_instanceDomain` ON `${TABLE_NAME}` (`instanceDomain`)"
          },
          {
            "name": "index_account_table_userName",
            "unique": false,
            "columnNames": [
              "userName"
            ],
            "orders": [],
            "createSql": "CREATE INDEX IF NOT EXISTS `index_account_table_userName` ON `${TABLE_NAME}` (`userName`)"
          }
        ],
        "foreignKeys": []
      },
      {
        "tableName": "page_table",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`accountId` INTEGER NOT NULL, `title` TEXT NOT NULL, `weight` INTEGER NOT NULL, `pageId` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `type` TEXT NOT NULL, `withFiles` INTEGER, `excludeNsfw` INTEGER, `includeLocalRenotes` INTEGER, `includeMyRenotes` INTEGER, `includeRenotedMyRenotes` INTEGER, `listId` TEXT, `following` INTEGER, `visibility` TEXT, `noteId` TEXT, `tag` TEXT, `reply` INTEGER, `renote` INTEGER, `poll` INTEGER, `offset` INTEGER, `markAsRead` INTEGER, `userId` TEXT, `includeReplies` INTEGER, `query` TEXT, `host` TEXT, `antennaId` TEXT)",
        "fields": [
          {
            "fieldPath": "accountId",
            "columnName": "accountId",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "title",
            "columnName": "title",
            "affinity": "TEXT",
            "notNull": true
          },
          {
            "fieldPath": "weight",
            "columnName": "weight",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "pageId",
            "columnName": "pageId",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "pageParams.type",
            "columnName": "type",
            "affinity": "TEXT",
            "notNull": true
          },
          {
            "fieldPath": "pageParams.withFiles",
            "columnName": "withFiles",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "pageParams.excludeNsfw",
            "columnName": "excludeNsfw",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "pageParams.includeLocalRenotes",
            "columnName": "includeLocalRenotes",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "pageParams.includeMyRenotes",
            "columnName": "includeMyRenotes",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "pageParams.includeRenotedMyRenotes",
            "columnName": "includeRenotedMyRenotes",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "pageParams.listId",
            "columnName": "listId",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "pageParams.following",
            "columnName": "following",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "pageParams.visibility",
            "columnName": "visibility",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "pageParams.noteId",
            "columnName": "noteId",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "pageParams.tag",
            "columnName": "tag",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "pageParams.reply",
            "columnName": "reply",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "pageParams.renote",
            "columnName": "renote",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "pageParams.poll",
            "columnName": "poll",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "pageParams.offset",
            "columnName": "offset",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "pageParams.markAsRead",
            "columnName": "markAsRead",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "pageParams.userId",
            "columnName": "userId",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "pageParams.includeReplies",
            "columnName": "includeReplies",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "pageParams.query",
            "columnName": "query",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "pageParams.host",
            "columnName": "host",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "pageParams.antennaId",
            "columnName": "antennaId",
            "affinity": "TEXT",
            "notNull": false
          }
        ],
        "primaryKey": {
          "columnNames": [
            "pageId"
          ],
          "autoGenerate": true
        },
        "indices": [
          {
            "name": "index_page_table_weight",
            "unique": false,
            "columnNames": [
              "weight"
            ],
            "orders": [],
            "createSql": "CREATE INDEX IF NOT EXISTS `index_page_table_weight` ON `${TABLE_NAME}` (`weight`)"
          },
          {
            "name": "index_page_table_accountId",
            "unique": false,
            "columnNames": [
              "accountId"
            ],
            "orders": [],
            "createSql": "CREATE INDEX IF NOT EXISTS `index_page_table_accountId` ON `${TABLE_NAME}` (`accountId`)"
          }
        ],
        "foreignKeys": []
      },
      {
        "tableName": "meta_table",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`uri` TEXT NOT NULL, `bannerUrl` TEXT, `cacheRemoteFiles` INTEGER, `description` TEXT, `disableGlobalTimeline` INTEGER, `disableLocalTimeline` INTEGER, `disableRegistration` INTEGER, `driveCapacityPerLocalUserMb` INTEGER, `driveCapacityPerRemoteUserMb` INTEGER, `enableDiscordIntegration` INTEGER, `enableEmail` INTEGER, `enableEmojiReaction` INTEGER, `enableGithubIntegration` INTEGER, `enableRecaptcha` INTEGER, `enableServiceWorker` INTEGER, `enableTwitterIntegration` INTEGER, `errorImageUrl` TEXT, `feedbackUrl` TEXT, `iconUrl` TEXT, `maintainerEmail` TEXT, `maintainerName` TEXT, `mascotImageUrl` TEXT, `maxNoteTextLength` INTEGER, `name` TEXT, `recaptchaSiteKey` TEXT, `secure` INTEGER, `swPublicKey` TEXT, `toSUrl` TEXT, `version` TEXT NOT NULL, PRIMARY KEY(`uri`))",
        "fields": [
          {
            "fieldPath": "uri",
            "columnName": "uri",
            "affinity": "TEXT",
            "notNull": true
          },
          {
            "fieldPath": "bannerUrl",
            "columnName": "bannerUrl",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "cacheRemoteFiles",
            "columnName": "cacheRemoteFiles",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "description",
            "columnName": "description",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "disableGlobalTimeline",
            "columnName": "disableGlobalTimeline",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "disableLocalTimeline",
            "columnName": "disableLocalTimeline",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "disableRegistration",
            "columnName": "disableRegistration",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "driveCapacityPerLocalUserMb",
            "columnName": "driveCapacityPerLocalUserMb",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "driveCapacityPerRemoteUserMb",
            "columnName": "driveCapacityPerRemoteUserMb",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "enableDiscordIntegration",
            "columnName": "enableDiscordIntegration",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "enableEmail",
            "columnName": "enableEmail",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "enableEmojiReaction",
            "columnName": "enableEmojiReaction",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "enableGithubIntegration",
            "columnName": "enableGithubIntegration",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "enableRecaptcha",
            "columnName": "enableRecaptcha",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "enableServiceWorker",
            "columnName": "enableServiceWorker",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "enableTwitterIntegration",
            "columnName": "enableTwitterIntegration",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "errorImageUrl",
            "columnName": "errorImageUrl",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "feedbackUrl",
            "columnName": "feedbackUrl",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "iconUrl",
            "columnName": "iconUrl",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "maintainerEmail",
            "columnName": "maintainerEmail",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "maintainerName",
            "columnName": "maintainerName",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "mascotImageUrl",
            "columnName": "mascotImageUrl",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "maxNoteTextLength",
            "columnName": "maxNoteTextLength",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "name",
            "columnName": "name",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "recaptchaSiteKey",
            "columnName": "recaptchaSiteKey",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "secure",
            "columnName": "secure",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "swPublicKey",
        
Download .txt
Showing preview only (207K chars total). Download the full file or copy to clipboard to get everything.
gitextract_c5wa7o3u/

├── .github/
│   ├── ISSUE_TEMPLATE/
│   │   ├── -------.md
│   │   ├── -----.md
│   │   ├── bug_report.md
│   │   ├── feature_request.md
│   │   └── other.md
│   ├── dependabot.yml
│   └── workflows/
│       ├── android-unit-test.yml
│       ├── release.yml
│       └── release2github.yml
├── .gitignore
├── .idea/
│   ├── .gitignore
│   ├── AndroidProjectSystem.xml
│   ├── GitLink.xml
│   ├── deploymentTargetSelector.xml
│   ├── deviceManager.xml
│   ├── encodings.xml
│   ├── jarRepositories.xml
│   ├── kotlinc.xml
│   └── markdown.xml
├── CLAUDE.md
├── CONTRIBUTING.md
├── LICENSE
├── PushToFCM/
│   ├── .dockerignore
│   ├── .gitignore
│   ├── README.md
│   ├── docker/
│   │   ├── Dockerfile
│   │   └── node/
│   │       └── Dockerfile
│   ├── docker-compose.yml
│   ├── index.js
│   ├── key/
│   │   └── .gitignore
│   ├── keyGenerator.js
│   ├── locales/
│   │   ├── en.json
│   │   └── ja.json
│   ├── notification_builder.js
│   ├── package.json
│   └── webPushDecipher.js
├── README-EN.md
├── README.md
├── app/
│   ├── .gitignore
│   ├── build.gradle
│   ├── google-services.json
│   ├── proguard-rules.pro
│   ├── schemas/
│   │   └── jp.panta.misskeyandroidclient.model.DataBase/
│   │       ├── 10.json
│   │       ├── 11.json
│   │       ├── 12.json
│   │       ├── 3.json
│   │       ├── 4.json
│   │       ├── 5.json
│   │       ├── 6.json
│   │       ├── 7.json
│   │       ├── 8.json
│   │       └── 9.json
│   └── src/
│       ├── androidTest/
│       │   └── java/
│       │       ├── jp/
│       │       │   └── panta/
│       │       │       └── misskeyandroidclient/
│       │       │           ├── ExampleInstrumentedTest.kt
│       │       │           └── model/
│       │       │               ├── account/
│       │       │               │   └── db/
│       │       │               │       └── RoomAccountRepositoryTest.kt
│       │       │               └── instance/
│       │       │                   └── db/
│       │       │                       └── RoomMetaDataSourceTest.kt
│       │       └── net/
│       │           └── pantasystem/
│       │               └── milktea/
│       │                   └── model/
│       │                       └── filter/
│       │                           └── MastodonFilterServiceTest.kt
│       ├── benchmark/
│       │   └── java/
│       │       └── jp/
│       │           └── panta/
│       │               └── misskeyandroidclient/
│       │                   ├── di/
│       │                   │   └── module/
│       │                   │       ├── ReleaseAPIModule.kt
│       │                   │       └── ReleaseAppModule.kt
│       │                   └── util/
│       │                       └── EmptyDebuggerSetupManagerImpl.kt
│       ├── debug/
│       │   └── java/
│       │       └── jp/
│       │           └── panta/
│       │               └── misskeyandroidclient/
│       │                   └── util/
│       │                       └── di/
│       │                           └── module/
│       │                               ├── DebugAPIModule.kt
│       │                               └── DebugAppModule.kt
│       ├── main/
│       │   ├── AndroidManifest.xml
│       │   ├── java/
│       │   │   └── jp/
│       │   │       └── panta/
│       │   │           └── misskeyandroidclient/
│       │   │               ├── AlarmNotePostReceiver.kt
│       │   │               ├── FCMService.kt
│       │   │               ├── MainActivity.kt
│       │   │               ├── MiApplication.kt
│       │   │               ├── ThemeUtil.kt
│       │   │               ├── di/
│       │   │               │   ├── entorypoint/
│       │   │               │   │   └── InitializerEntryPoint.kt
│       │   │               │   └── module/
│       │   │               │       ├── AccountModule.kt
│       │   │               │       ├── AppLoggerModule.kt
│       │   │               │       ├── CoroutineScopeModule.kt
│       │   │               │       ├── CustomAuthStoreModule.kt
│       │   │               │       ├── EmojiModule.kt
│       │   │               │       ├── EncryptionModule.kt
│       │   │               │       ├── NavigationModule.kt
│       │   │               │       ├── NoteModule.kt
│       │   │               │       ├── PageableModule.kt
│       │   │               │       ├── PushSubscriptionModule.kt
│       │   │               │       ├── TaskExecutorsModule.kt
│       │   │               │       └── ThemeModule.kt
│       │   │               ├── impl/
│       │   │               │   ├── AndroidDefaultLogger.kt
│       │   │               │   ├── AndroidNoteReservationPostExecutor.kt
│       │   │               │   ├── CheckEmojiAndroidImpl.kt
│       │   │               │   ├── NavigationModule.kt
│       │   │               │   ├── OkHttpClientProviderImpl.kt
│       │   │               │   └── PageDefaultStringsOnAndroid.kt
│       │   │               ├── media/
│       │   │               │   └── CoilApngDecoder.kt
│       │   │               ├── setup/
│       │   │               │   └── AppStateController.kt
│       │   │               ├── startup/
│       │   │               │   ├── DebuggerSetupInitializer.kt
│       │   │               │   └── EmojiCompatInitializer.kt
│       │   │               ├── ui/
│       │   │               │   ├── BottomNavigationLongClickListener.kt
│       │   │               │   ├── PageableFragmentFactoryImpl.kt
│       │   │               │   ├── main/
│       │   │               │   │   ├── AccountViewModelHandler.kt
│       │   │               │   │   ├── ChangeNavMenuVisibilityFromAPIVersion.kt
│       │   │               │   │   ├── ConfirmCrashlyticsDialog.kt
│       │   │               │   │   ├── ConfirmGoogleAnalyticsDialog.kt
│       │   │               │   │   ├── FabClickHandler.kt
│       │   │               │   │   ├── IntentToAddAccountHandler.kt
│       │   │               │   │   ├── MainActivityEventHandler.kt
│       │   │               │   │   ├── MainActivityInitialIntentHandler.kt
│       │   │               │   │   ├── MainActivityMenuProvider.kt
│       │   │               │   │   ├── MainActivityNavigationDrawerMenuItemClickListener.kt
│       │   │               │   │   ├── NoteCreateResultHandler.kt
│       │   │               │   │   ├── NotePostFailedDialogFragment.kt
│       │   │               │   │   ├── SafeSearchDescriptionDialog.kt
│       │   │               │   │   ├── SetSimpleEditor.kt
│       │   │               │   │   ├── SetUpNavHeader.kt
│       │   │               │   │   ├── SetupOnBackPressedDispatcherHandler.kt
│       │   │               │   │   ├── ShowBottomNavigationBadgeDelegate.kt
│       │   │               │   │   ├── ShowRequestSchedulePostResultSnackBar.kt
│       │   │               │   │   ├── ToggleNavigationDrawerDelegate.kt
│       │   │               │   │   └── viewmodel/
│       │   │               │   │       └── MainViewModel.kt
│       │   │               │   ├── strings_helper/
│       │   │               │   │   └── web_socket_error.kt
│       │   │               │   └── tab/
│       │   │               │       ├── TabFragment.kt
│       │   │               │       ├── TabViewModel.kt
│       │   │               │       └── TimelinePagerAdapter.kt
│       │   │               ├── util/
│       │   │               │   ├── DebuggerSetupManager.kt
│       │   │               │   ├── DoubleBackPressedFinishDelegate.kt
│       │   │               │   └── task/
│       │   │               │       └── task_coroutines_util.kt
│       │   │               └── worker/
│       │   │                   └── WorkerJobInitializer.kt
│       │   └── res/
│       │       ├── layout/
│       │       │   ├── activity_main.xml
│       │       │   ├── app_bar_main.xml
│       │       │   ├── content_main.xml
│       │       │   ├── fragment_tab.xml
│       │       │   └── nav_header_main.xml
│       │       ├── mipmap-anydpi-v26/
│       │       │   ├── ic_launcher.xml
│       │       │   └── ic_launcher_round.xml
│       │       ├── navigation/
│       │       │   └── main_nav.xml
│       │       ├── values/
│       │       │   └── values.xml
│       │       ├── values-v21/
│       │       │   └── styles.xml
│       │       ├── values-v23/
│       │       │   ├── styles.xml
│       │       │   └── themes.xml
│       │       ├── values-v27/
│       │       │   └── themes.xml
│       │       ├── values-w320dp/
│       │       │   └── values.xml
│       │       ├── values-w480dp/
│       │       │   └── values.xml
│       │       ├── values-w600dp/
│       │       │   └── values.xml
│       │       ├── values-w720dp/
│       │       │   └── values.xml
│       │       └── xml/
│       │           └── shortcuts.xml
│       ├── release/
│       │   └── java/
│       │       └── jp/
│       │           └── panta/
│       │               └── misskeyandroidclient/
│       │                   └── di/
│       │                       └── module/
│       │                           ├── EmptyDebuggerSetupManagerImpl.kt
│       │                           ├── ReleaseAPIModule.kt
│       │                           └── ReleaseAppModule.kt
│       └── test/
│           └── java/
│               ├── jp/
│               │   └── panta/
│               │       └── misskeyandroidclient/
│               │           ├── GsonNullInstantTest.kt
│               │           ├── api/
│               │           │   ├── APIErrorTest.kt
│               │           │   ├── mastodon/
│               │           │   │   ├── emojis/
│               │           │   │   │   └── TootEmojiDTOTest.kt
│               │           │   │   └── instance/
│               │           │   │       └── InstanceTest.kt
│               │           │   ├── misskey/
│               │           │   │   └── v12/
│               │           │   │       └── channel/
│               │           │   │           └── ChannelDTOTest.kt
│               │           │   └── notes/
│               │           │       └── NoteDTOTest.kt
│               │           ├── logger/
│               │           │   └── TestLogger.kt
│               │           ├── model/
│               │           │   ├── account/
│               │           │   │   ├── AccountInstanceTypeConverterTest.kt
│               │           │   │   ├── AccountStateTest.kt
│               │           │   │   ├── AccountTest.kt
│               │           │   │   ├── MakeDefaultPagesUseCaseTest.kt
│               │           │   │   ├── TestAccountRepository.kt
│               │           │   │   └── page/
│               │           │   │       └── PageableChannelTimelineTest.kt
│               │           │   ├── api/
│               │           │   │   ├── GetUsersTest.kt
│               │           │   │   ├── HashTagListTest.kt
│               │           │   │   └── VersionTest.kt
│               │           │   ├── channel/
│               │           │   │   └── ChannelStateTest.kt
│               │           │   ├── file/
│               │           │   │   └── AppFileTest.kt
│               │           │   ├── instance/
│               │           │   │   └── MetaCacheTest.kt
│               │           │   ├── notes/
│               │           │   │   ├── impl/
│               │           │   │   │   ├── InMemoryNoteDataSourceTest.kt
│               │           │   │   │   └── NoteCaptureAPIAdapterTest.kt
│               │           │   │   └── poll/
│               │           │   │       └── PollTest.kt
│               │           │   ├── reaction/
│               │           │   │   └── impl/
│               │           │   │       └── ReactionHistoryPaginatorImplTest.kt
│               │           │   └── users/
│               │           │       ├── UserTest.kt
│               │           │       └── nickname/
│               │           │           ├── DeleteNicknameUseCaseTest.kt
│               │           │           └── UpdateNicknameUseCaseTest.kt
│               │           ├── streaming/
│               │           │   ├── SendBodyTest.kt
│               │           │   ├── StreamingEventTest.kt
│               │           │   ├── TestSocketImpl.kt
│               │           │   ├── TestSocketWithAccountProviderImpl.kt
│               │           │   ├── channel/
│               │           │   │   └── ChannelAPITest.kt
│               │           │   └── network/
│               │           │       └── SocketImplTest.kt
│               │           ├── ui/
│               │           │   └── users/
│               │           │       └── viewmodel/
│               │           │           └── search/
│               │           │               └── SearchUserTest.kt
│               │           └── util/
│               │               ├── EncryptionStub.kt
│               │               └── StringIndexTest.kt
│               └── net/
│                   └── pantasystem/
│                       └── milktea/
│                           ├── data/
│                           │   └── infrastructure/
│                           │       ├── emoji/
│                           │       │   └── CustomEmojiInserterTest.kt
│                           │       └── note/
│                           │           └── draft/
│                           │               └── db/
│                           │                   └── DraftNoteDTOTest.kt
│                           └── note/
│                               ├── editor/
│                               │   └── viewmodel/
│                               │       └── NoteEditorUiStateKtTest.kt
│                               └── media/
│                                   └── viewmodel/
│                                       └── MediaViewDataTest.kt
├── benchmark/
│   ├── .gitignore
│   ├── build.gradle
│   └── src/
│       └── main/
│           ├── AndroidManifest.xml
│           └── java/
│               └── systems/
│                   └── panta/
│                       └── benchmark/
│                           └── ExampleStartupBenchmark.kt
├── build.gradle
├── csae_policy_ja.md
├── docs/
│   ├── mfm-decorator-implementation-guide.md
│   ├── migrate-dynamic-feature-flag-plan.md
│   ├── note-editor-compose-migration-plan.md
│   └── note-editor-reply-preview-mfm-plan.md
├── gradle/
│   └── wrapper/
│       ├── gradle-wrapper.jar
│       └── gradle-wrapper.properties
├── gradle.properties
├── gradlew
├── gradlew.bat
├── libs.versions.toml
├── modules/
│   ├── api/
│   │   ├── .gitignore
│   │   ├── build.gradle
│   │   ├── consumer-rules.pro
│   │   ├── proguard-rules.pro
│   │   └── src/
│   │       ├── main/
│   │       │   ├── AndroidManifest.xml
│   │       │   └── java/
│   │       │       └── net/
│   │       │           └── pantasystem/
│   │       │               └── milktea/
│   │       │                   └── api/
│   │       │                       ├── activitypub/
│   │       │                       │   ├── NodeInfoAPI.kt
│   │       │                       │   ├── NodeInfoDTO.kt
│   │       │                       │   ├── WellKnownNodeInfo.kt
│   │       │                       │   └── WellKnownNodeInfoAPI.kt
│   │       │                       ├── mastodon/
│   │       │                       │   ├── MastodonAPI.kt
│   │       │                       │   ├── accounts/
│   │       │                       │   │   ├── FollowParamsRequest.kt
│   │       │                       │   │   ├── MastodonAccountDTO.kt
│   │       │                       │   │   └── MuteAccountRequest.kt
│   │       │                       │   ├── apps/
│   │       │                       │   │   └── App.kt
│   │       │                       │   ├── context/
│   │       │                       │   │   └── ContextDTO.kt
│   │       │                       │   ├── emojis/
│   │       │                       │   │   └── TootEmojiDTO.kt
│   │       │                       │   ├── filter/
│   │       │                       │   │   ├── FilterContext.kt
│   │       │                       │   │   ├── FilterResultDTO.kt
│   │       │                       │   │   ├── V1FilterDTO.kt
│   │       │                       │   │   └── V2FilterDTO.kt
│   │       │                       │   ├── instance/
│   │       │                       │   │   └── Instance.kt
│   │       │                       │   ├── list/
│   │       │                       │   │   ├── AddAccountsToList.kt
│   │       │                       │   │   ├── CreateListRequest.kt
│   │       │                       │   │   └── ListDTO.kt
│   │       │                       │   ├── marker/
│   │       │                       │   │   └── MarkerDTO.kt
│   │       │                       │   ├── media/
│   │       │                       │   │   ├── TootMediaAttachment.kt
│   │       │                       │   │   └── UpdateMediaAttachment.kt
│   │       │                       │   ├── notification/
│   │       │                       │   │   └── MstNotificationDTO.kt
│   │       │                       │   ├── poll/
│   │       │                       │   │   └── TootPollDTO.kt
│   │       │                       │   ├── report/
│   │       │                       │   │   ├── CreateReportRequest.kt
│   │       │                       │   │   └── MstReportDTO.kt
│   │       │                       │   ├── rule/
│   │       │                       │   │   └── RuleDTO.kt
│   │       │                       │   ├── search/
│   │       │                       │   │   └── SearchResponse.kt
│   │       │                       │   ├── status/
│   │       │                       │   │   ├── CreateStatus.kt
│   │       │                       │   │   ├── ScheduledStatus.kt
│   │       │                       │   │   ├── TootPreviewCardDTO.kt
│   │       │                       │   │   └── TootStatusDTO.kt
│   │       │                       │   ├── subscription/
│   │       │                       │   │   ├── SubscribePushNotification.kt
│   │       │                       │   │   ├── WebPushSubscription.kt
│   │       │                       │   │   └── WebPushSubscriptionAlerts.kt
│   │       │                       │   ├── suggestion/
│   │       │                       │   │   └── SuggestionDTO.kt
│   │       │                       │   └── tag/
│   │       │                       │       └── MastodonTagDTO.kt
│   │       │                       ├── milktea/
│   │       │                       │   ├── CreateInstanceRequest.kt
│   │       │                       │   ├── InstanceInfoResponse.kt
│   │       │                       │   ├── MilkteaAPIService.kt
│   │       │                       │   ├── MilkteaAPIServiceBuilder.kt
│   │       │                       │   └── instance/
│   │       │                       │       └── ticker/
│   │       │                       │           ├── InstanceTickerAPIService.kt
│   │       │                       │           ├── InstanceTickerAPIServiceBuilder.kt
│   │       │                       │           └── InstanceTickerNetworkDTO.kt
│   │       │                       └── misskey/
│   │       │                           ├── EmptyRequest.kt
│   │       │                           ├── I.kt
│   │       │                           ├── InstanceInfosAPI.kt
│   │       │                           ├── MisskeyAPI.kt
│   │       │                           ├── MisskeyAPIServiceBuilder.kt
│   │       │                           ├── MisskeyAuthAPI.kt
│   │       │                           ├── ap/
│   │       │                           │   ├── ApResolveRequest.kt
│   │       │                           │   └── ApResolveResult.kt
│   │       │                           ├── app/
│   │       │                           │   ├── CreateApp.kt
│   │       │                           │   └── ShowApp.kt
│   │       │                           ├── auth/
│   │       │                           │   ├── AccessToken.kt
│   │       │                           │   ├── App.kt
│   │       │                           │   ├── AppSecret.kt
│   │       │                           │   ├── Session.kt
│   │       │                           │   ├── SignInRequest.kt
│   │       │                           │   ├── SignInResponse.kt
│   │       │                           │   └── UserKey.kt
│   │       │                           ├── clip/
│   │       │                           │   ├── AddNoteToClipRequest.kt
│   │       │                           │   ├── ClipDTO.kt
│   │       │                           │   ├── CreateClipRequest.kt
│   │       │                           │   ├── DeleteClipRequest.kt
│   │       │                           │   ├── FindNotesClip.kt
│   │       │                           │   ├── FindUsersClipRequest.kt
│   │       │                           │   └── ShowClipRequest.kt
│   │       │                           ├── drive/
│   │       │                           │   ├── CreateFolder.kt
│   │       │                           │   ├── DeleteFileReq.kt
│   │       │                           │   ├── DirectoryNetworkDTO.kt
│   │       │                           │   ├── FilePropertyDTO.kt
│   │       │                           │   ├── RequestFile.kt
│   │       │                           │   ├── RequestFolder.kt
│   │       │                           │   ├── ShowFile.kt
│   │       │                           │   ├── ShowFolderRequest.kt
│   │       │                           │   └── UpdateFileDTO.kt
│   │       │                           ├── emoji/
│   │       │                           │   ├── CustomEmojiNetworkDTO.kt
│   │       │                           │   └── EmojisType.kt
│   │       │                           ├── favorite/
│   │       │                           │   └── Favorite.kt
│   │       │                           ├── groups/
│   │       │                           │   ├── Actions.kt
│   │       │                           │   ├── GroupDTO.kt
│   │       │                           │   └── InvitationDTO.kt
│   │       │                           ├── hashtag/
│   │       │                           │   ├── RequestHashTagList.kt
│   │       │                           │   └── SearchHashtagRequest.kt
│   │       │                           ├── infos/
│   │       │                           │   ├── InstanceInfosResponse.kt
│   │       │                           │   └── SimpleInstanceInfo.kt
│   │       │                           ├── instance/
│   │       │                           │   ├── MetaNetworkDTO.kt
│   │       │                           │   └── RequestMeta.kt
│   │       │                           ├── list/
│   │       │                           │   ├── CreateList.kt
│   │       │                           │   ├── ListId.kt
│   │       │                           │   ├── ListUserOperation.kt
│   │       │                           │   ├── UpdateList.kt
│   │       │                           │   └── UserListDTO.kt
│   │       │                           ├── messaging/
│   │       │                           │   ├── MessageAction.kt
│   │       │                           │   ├── MessageDTO.kt
│   │       │                           │   ├── RequestMessage.kt
│   │       │                           │   └── RequestMessageHistory.kt
│   │       │                           ├── notes/
│   │       │                           │   ├── CreateNote.kt
│   │       │                           │   ├── CreateReactionDTO.kt
│   │       │                           │   ├── DeleteNote.kt
│   │       │                           │   ├── FindRenotes.kt
│   │       │                           │   ├── GetNoteChildrenRequest.kt
│   │       │                           │   ├── NoteDTO.kt
│   │       │                           │   ├── NoteRequest.kt
│   │       │                           │   ├── NoteStateResponse.kt
│   │       │                           │   ├── PollDTO.kt
│   │       │                           │   ├── Vote.kt
│   │       │                           │   ├── favorite/
│   │       │                           │   │   ├── CreateFavorite.kt
│   │       │                           │   │   └── DeleteFavorite.kt
│   │       │                           │   ├── mute/
│   │       │                           │   │   └── ToggleThreadMuteRequest.kt
│   │       │                           │   ├── reaction/
│   │       │                           │   │   ├── ReactionHistoryDTO.kt
│   │       │                           │   │   └── RequestReactionHistoryDTO.kt
│   │       │                           │   └── translation/
│   │       │                           │       ├── Translate.kt
│   │       │                           │       └── TranslationResult.kt
│   │       │                           ├── notification/
│   │       │                           │   ├── NotificationDTO.kt
│   │       │                           │   └── NotificationRequest.kt
│   │       │                           ├── online/
│   │       │                           │   └── user/
│   │       │                           │       └── OnlineUserCount.kt
│   │       │                           ├── register/
│   │       │                           │   ├── WebConfigReactions.kt
│   │       │                           │   └── subscription.kt
│   │       │                           ├── trend/
│   │       │                           │   └── HashtagTrend.kt
│   │       │                           ├── users/
│   │       │                           │   ├── AcceptFollowRequest.kt
│   │       │                           │   ├── CancelFollow.kt
│   │       │                           │   ├── CreateMuteUserRequest.kt
│   │       │                           │   ├── FollowFollowerUser.kt
│   │       │                           │   ├── FollowRequestDTO.kt
│   │       │                           │   ├── GetFollowRequest.kt
│   │       │                           │   ├── RejectFollowRequest.kt
│   │       │                           │   ├── RequestUser.kt
│   │       │                           │   ├── SearchByUserAndHost.kt
│   │       │                           │   ├── UserDTO.kt
│   │       │                           │   ├── follow/
│   │       │                           │   │   ├── FollowUserRequest.kt
│   │       │                           │   │   ├── UnFollowUserRequest.kt
│   │       │                           │   │   └── UpdateUserFollowRequest.kt
│   │       │                           │   ├── renote/
│   │       │                           │   │   └── mute/
│   │       │                           │   │       ├── CreateRenoteMuteRequest.kt
│   │       │                           │   │       ├── DeleteRenoteMuteRequest.kt
│   │       │                           │   │       └── RenoteMuteDTO.kt
│   │       │                           │   └── report/
│   │       │                           │       └── ReportDTO.kt
│   │       │                           ├── v10/
│   │       │                           │   ├── FollowFollowerUsers.kt
│   │       │                           │   └── RequestFollowFollower.kt
│   │       │                           ├── v12/
│   │       │                           │   ├── MisskeyAPIV12.kt
│   │       │                           │   ├── MisskeyAPIV12Diff.kt
│   │       │                           │   ├── antenna/
│   │       │                           │   │   ├── AntennaDTO.kt
│   │       │                           │   │   ├── AntennaQuery.kt
│   │       │                           │   │   └── AntennaToAdd.kt
│   │       │                           │   ├── channel/
│   │       │                           │   │   └── channels.kt
│   │       │                           │   └── user/
│   │       │                           │       └── reaction/
│   │       │                           │           ├── UserReaction.kt
│   │       │                           │           └── UserReactionRequest.kt
│   │       │                           ├── v12_75_0/
│   │       │                           │   └── gallery.kt
│   │       │                           └── v13/
│   │       │                               └── EmojisResponse.kt
│   │       └── test/
│   │           ├── java/
│   │           │   └── net/
│   │           │       └── pantasystem/
│   │           │           └── milktea/
│   │           │               └── api/
│   │           │                   ├── CurrentClassLoader.kt
│   │           │                   ├── mastodon/
│   │           │                   │   ├── instance/
│   │           │                   │   │   └── InstanceTest.kt
│   │           │                   │   └── status/
│   │           │                   │       └── TootStatusDTOTest.kt
│   │           │                   └── misskey/
│   │           │                       ├── ap/
│   │           │                       │   └── ApResolveResultTest.kt
│   │           │                       ├── infos/
│   │           │                       │   └── InstanceInfosResponseTest.kt
│   │           │                       ├── users/
│   │           │                       │   ├── BaseUserDTOTest.kt
│   │           │                       │   └── UserDTOTest.kt
│   │           │                       └── v10/
│   │           │                           ├── FollowFollowerUsersTest.kt
│   │           │                           └── RequestFollowFollowerTest.kt
│   │           └── resources/
│   │               ├── fedibird_instance_info.json
│   │               ├── mastodonsocial_instance_info.json
│   │               ├── mstdnjp_instance_info.json
│   │               ├── pawoonet_instance_info.json
│   │               ├── toot_fedibird_com_home_has_quote_timeline.json
│   │               ├── toot_fedibird_com_home_timeline.json
│   │               ├── toot_fedibird_com_home_timeline_2.json
│   │               ├── toot_fedibird_com_home_timeline_3.json
│   │               ├── toot_fedibird_com_home_timeline_4.json
│   │               ├── toot_fedibird_com_home_timeline_5.json
│   │               ├── toot_fedibird_com_home_timeline_6.json
│   │               ├── toot_fedibird_com_home_timeline_7.json
│   │               ├── toot_fedibird_com_home_timeline_8.json
│   │               ├── toot_mstdn_jp_public_timeline.json
│   │               ├── user_dto_give_harunon_case1.json
│   │               ├── user_dto_list_case1.json
│   │               ├── v10_followers_case1.json
│   │               └── v10_user_dto_give_harunon_case1.json
│   ├── api_streaming/
│   │   ├── .gitignore
│   │   ├── build.gradle
│   │   ├── consumer-rules.pro
│   │   ├── proguard-rules.pro
│   │   └── src/
│   │       └── main/
│   │           ├── AndroidManifest.xml
│   │           └── java/
│   │               └── net/
│   │                   └── pantasystem/
│   │                       └── milktea/
│   │                           └── api_streaming/
│   │                               ├── NoteCaptureAPI.kt
│   │                               ├── Socket.kt
│   │                               ├── SocketEventListener.kt
│   │                               ├── channel/
│   │                               │   ├── ChannelAPI.kt
│   │                               │   └── user_timeline_extenstion.kt
│   │                               ├── events.kt
│   │                               ├── mastodon/
│   │                               │   ├── Event.kt
│   │                               │   ├── StreamingAPI.kt
│   │                               │   └── StreamingAPIImpl.kt
│   │                               ├── network/
│   │                               │   └── SocketImpl.kt
│   │                               ├── pollings.kt
│   │                               └── sends.kt
│   ├── app_store/
│   │   ├── .gitignore
│   │   ├── build.gradle
│   │   ├── consumer-rules.pro
│   │   ├── proguard-rules.pro
│   │   └── src/
│   │       └── main/
│   │           ├── AndroidManifest.xml
│   │           └── java/
│   │               └── net/
│   │                   └── pantasystem/
│   │                       └── milktea/
│   │                           └── app_store/
│   │                               ├── account/
│   │                               │   ├── AccountState.kt
│   │                               │   └── AccountStore.kt
│   │                               ├── drive/
│   │                               │   ├── DriveDirectoryPagingStore.kt
│   │                               │   └── FilePropertyPagingStore.kt
│   │                               ├── gallery/
│   │                               │   ├── GalleryPostSendFavoriteStore.kt
│   │                               │   └── GalleryPostsStore.kt
│   │                               ├── handler/
│   │                               │   └── UserActionAppGlobalErrorStore.kt
│   │                               ├── messaging/
│   │                               │   └── MessagePagingStore.kt
│   │                               ├── notes/
│   │                               │   ├── NoteTranslationStore.kt
│   │                               │   └── TimelineStore.kt
│   │                               ├── setting/
│   │                               │   └── SettingStore.kt
│   │                               └── user/
│   │                                   ├── FollowFollowerPagingStore.kt
│   │                                   └── UserReactionPagingStore.kt
│   ├── common/
│   │   ├── .gitignore
│   │   ├── build.gradle
│   │   ├── consumer-rules.pro
│   │   ├── proguard-rules.pro
│   │   └── src/
│   │       ├── main/
│   │       │   ├── AndroidManifest.xml
│   │       │   ├── java/
│   │       │   │   └── net/
│   │       │   │       └── pantasystem/
│   │       │   │           └── milktea/
│   │       │   │               └── common/
│   │       │   │                   ├── ByteSizeHelper.kt
│   │       │   │                   ├── ColorUtil.kt
│   │       │   │                   ├── Encryption.kt
│   │       │   │                   ├── Hash.kt
│   │       │   │                   ├── Logger.kt
│   │       │   │                   ├── MastodonLinkHeaderDecoder.kt
│   │       │   │                   ├── ResultHelper.kt
│   │       │   │                   ├── SharedPreferenceUtil.kt
│   │       │   │                   ├── collection/
│   │       │   │                   │   └── LRUCache.kt
│   │       │   │                   ├── coroutines/
│   │       │   │                   │   ├── CombineExt.kt
│   │       │   │                   │   ├── PessimisticCollectiveMutex.kt
│   │       │   │                   │   └── Throttle.kt
│   │       │   │                   ├── dhash/
│   │       │   │                   │   └── ImageDHash.kt
│   │       │   │                   ├── errors.kt
│   │       │   │                   ├── glide/
│   │       │   │                   │   ├── GlideUtils.kt
│   │       │   │                   │   ├── MiGlideModule.kt
│   │       │   │                   │   ├── apng/
│   │       │   │                   │   │   ├── ApngDecoder.kt
│   │       │   │                   │   │   ├── FrameSeqDecoderBitmapTranscoder.kt
│   │       │   │                   │   │   ├── FrameSeqDecoderDrawableTranscoder.kt
│   │       │   │                   │   │   └── StreamApngDecoder.kt
│   │       │   │                   │   ├── blurhash/
│   │       │   │                   │   │   ├── BlurHash.kt
│   │       │   │                   │   │   ├── BlurHashModelLoader.kt
│   │       │   │                   │   │   ├── BlurHashResourceDecoder.kt
│   │       │   │                   │   │   ├── BlurHashSource.kt
│   │       │   │                   │   │   └── BlurhashDecoder.kt
│   │       │   │                   │   └── svg/
│   │       │   │                   │       ├── SvgDecoder.kt
│   │       │   │                   │       └── SvgDrawableTranscoder.kt
│   │       │   │                   ├── paginator/
│   │       │   │                   │   ├── EntityConverter.kt
│   │       │   │                   │   ├── FutureCacheSaver.kt
│   │       │   │                   │   ├── FutureLoader.kt
│   │       │   │                   │   ├── FuturePaginator.kt
│   │       │   │                   │   ├── FuturePagingController.kt
│   │       │   │                   │   ├── IdFutureLoader.kt
│   │       │   │                   │   ├── IdGetter.kt
│   │       │   │                   │   ├── IdPreviousLoader.kt
│   │       │   │                   │   ├── MediatorFuturePagingController.kt
│   │       │   │                   │   ├── MediatorPreviousPagingController.kt
│   │       │   │                   │   ├── PaginationState.kt
│   │       │   │                   │   ├── PreviousCacheSaver.kt
│   │       │   │                   │   ├── PreviousLoader.kt
│   │       │   │                   │   ├── PreviousPaginator.kt
│   │       │   │                   │   ├── PreviousPagingController.kt
│   │       │   │                   │   └── StateLocker.kt
│   │       │   │                   ├── serializations/
│   │       │   │                   │   ├── DateSerializer.kt
│   │       │   │                   │   ├── EnumIgnoreUnknownSerializer.kt
│   │       │   │                   │   └── FallbackDefaultValueSerializer.kt
│   │       │   │                   ├── state_helper.kt
│   │       │   │                   ├── suspend_state_util.kt
│   │       │   │                   ├── text/
│   │       │   │                   │   ├── Levenshtein.kt
│   │       │   │                   │   └── UrlPatternChecker.kt
│   │       │   │                   └── ui/
│   │       │   │                       ├── ApplyTheme.kt
│   │       │   │                       ├── AvatarIconView.kt
│   │       │   │                       ├── CircleImageIconHelper.kt
│   │       │   │                       ├── LazyColumnScrollStateHelper.kt
│   │       │   │                       ├── PageableView.kt
│   │       │   │                       ├── SimpleElapsedTime.kt
│   │       │   │                       └── ToolbarSetter.kt
│   │       │   └── res/
│   │       │       ├── drawable/
│   │       │       │   ├── ic_cloud_off_black_24dp.xml
│   │       │       │   └── ic_content_copy_black_24dp.xml
│   │       │       ├── values/
│   │       │       │   ├── attrs.xml
│   │       │       │   └── strings.xml
│   │       │       ├── values-ja/
│   │       │       │   └── strings.xml
│   │       │       └── values-zh/
│   │       │           └── strings.xml
│   │       └── test/
│   │           └── java/
│   │               └── net/
│   │                   └── pantasystem/
│   │                       └── milktea/
│   │                           └── common/
│   │                               ├── ByteSizeHelperKtTest.kt
│   │                               ├── coroutines/
│   │                               │   └── PessimisticCollectiveMutexTest.kt
│   │                               ├── paginator/
│   │                               │   ├── FuturePagingControllerTest.kt
│   │                               │   └── PreviousPagingControllerTest.kt
│   │                               └── ui/
│   │                                   └── SimpleElapsedTimeTest.kt
│   ├── common_android/
│   │   ├── .gitignore
│   │   ├── build.gradle
│   │   ├── consumer-rules.pro
│   │   ├── proguard-rules.pro
│   │   └── src/
│   │       └── main/
│   │           ├── AndroidManifest.xml
│   │           ├── java/
│   │           │   └── net/
│   │           │       └── pantasystem/
│   │           │           └── milktea/
│   │           │               └── common_android/
│   │           │                   ├── debug/
│   │           │                   │   └── DebugFeatureFlags.kt
│   │           │                   ├── emoji/
│   │           │                   │   └── V13EmojiUrlResolver.kt
│   │           │                   ├── hilt/
│   │           │                   │   ├── HiltCoroutineDispatcherAnnotation.kt
│   │           │                   │   └── di/
│   │           │                   │       └── module/
│   │           │                   │           └── CoroutineDispatcherModule.kt
│   │           │                   ├── html/
│   │           │                   │   └── MastodonHTML.kt
│   │           │                   ├── mfm/
│   │           │                   │   └── MFMParser.kt
│   │           │                   ├── notification/
│   │           │                   │   └── NotificationUtil.kt
│   │           │                   ├── nyaize/
│   │           │                   │   └── Nyaize.kt
│   │           │                   ├── platform/
│   │           │                   │   ├── FlowBroadcastReceiver.kt
│   │           │                   │   ├── NetworkEventFlow.kt
│   │           │                   │   ├── NetworkStatusUtil.kt
│   │           │                   │   └── PermissionUtil.kt
│   │           │                   ├── resource/
│   │           │                   │   ├── DpHelper.kt
│   │           │                   │   └── StringResource.kt
│   │           │                   └── ui/
│   │           │                       ├── ActivityUtils.kt
│   │           │                       ├── AutoCollapsingLayout.kt
│   │           │                       ├── BottomSheetViewPager.kt
│   │           │                       ├── CircleOutlineHelper.kt
│   │           │                       ├── FontSizeUnitConverter.kt
│   │           │                       ├── MediaLayout.kt
│   │           │                       ├── RoundedOutlineProvider.kt
│   │           │                       ├── SafeUnbox.kt
│   │           │                       ├── StringHelper.kt
│   │           │                       ├── VisibilityHelper.kt
│   │           │                       ├── haptic/
│   │           │                       │   └── HapticFeedbackController.kt
│   │           │                       ├── listview/
│   │           │                       │   └── FlexBoxLayoutHelper.kt
│   │           │                       └── text/
│   │           │                           ├── CustomEmojiDecorator.kt
│   │           │                           ├── CustomEmojiTokenizer.kt
│   │           │                           ├── DateFormatHelper.kt
│   │           │                           ├── DrawableEmojiSpan.kt
│   │           │                           ├── EmojiAdapter.kt
│   │           │                           ├── EmojiSpan.kt
│   │           │                           └── GetElapsedTimeStringSource.kt
│   │           └── res/
│   │               ├── drawable/
│   │               │   └── ic_close_black_24dp.xml
│   │               └── values/
│   │                   └── attrs.xml
│   ├── common_android_ui/
│   │   ├── .gitignore
│   │   ├── build.gradle
│   │   ├── consumer-rules.pro
│   │   ├── proguard-rules.pro
│   │   └── src/
│   │       └── main/
│   │           ├── AndroidManifest.xml
│   │           ├── java/
│   │           │   ├── StringSourceHelper.kt
│   │           │   └── net/
│   │           │       └── pantasystem/
│   │           │           └── milktea/
│   │           │               └── common_android_ui/
│   │           │                   ├── APIErrorStringConverter.kt
│   │           │                   ├── AvatarIconViewBindingAdapter.kt
│   │           │                   ├── BindingProvider.kt
│   │           │                   ├── DecorateTextHelper.kt
│   │           │                   ├── DrawableTintCompat.kt
│   │           │                   ├── EmojiText.kt
│   │           │                   ├── MFMDecorator.kt
│   │           │                   ├── MediaPreviewAspectLayout.kt
│   │           │                   ├── MfmBorderSpan.kt
│   │           │                   ├── MfmFlipSpan.kt
│   │           │                   ├── MfmRotateSpan.kt
│   │           │                   ├── MfmRubySpan.kt
│   │           │                   ├── MfmText.kt
│   │           │                   ├── PageableFragmentFactory.kt
│   │           │                   ├── ReactionViewHelper.kt
│   │           │                   ├── TextType.kt
│   │           │                   ├── UserPinnedNotesFragmentFactory.kt
│   │           │                   ├── UserTransitionHelper.kt
│   │           │                   ├── ViewBackgroundColorHelper.kt
│   │           │                   ├── account/
│   │           │                   │   ├── AccountSwitchingDialog.kt
│   │           │                   │   ├── AccountSwitchingDialogLayout.kt
│   │           │                   │   ├── AccountTile.kt
│   │           │                   │   ├── page/
│   │           │                   │   │   └── PageTypeHelper.kt
│   │           │                   │   └── viewmodel/
│   │           │                   │       ├── AccountViewModel.kt
│   │           │                   │       ├── AccountViewModelUiState.kt
│   │           │                   │       └── AccountViewModelUiStateHelper.kt
│   │           │                   ├── error/
│   │           │                   │   └── UserActionAppGlobalErrorListener.kt
│   │           │                   ├── reaction/
│   │           │                   │   ├── ReactionAutoCompleteArrayAdapter.kt
│   │           │                   │   └── ReactionChoicesAdapter.kt
│   │           │                   ├── report/
│   │           │                   │   ├── ReportDialog.kt
│   │           │                   │   └── ReportViewModel.kt
│   │           │                   ├── tab/
│   │           │                   │   ├── TabViewCompositeClickListener.kt
│   │           │                   │   └── TabbedFlexboxListMediator.kt
│   │           │                   └── user/
│   │           │                       ├── FollowRequestsFragmentFactory.kt
│   │           │                       ├── UserChipListAdapter.kt
│   │           │                       └── UserTextHelper.kt
│   │           └── res/
│   │               ├── layout/
│   │               │   ├── dialog_report.xml
│   │               │   ├── dialog_switch_account.xml
│   │               │   ├── item_reaction_choice.xml
│   │               │   ├── item_reaction_preview.xml
│   │               │   └── item_user_chip.xml
│   │               └── values/
│   │                   └── tags.xml
│   ├── common_compose/
│   │   ├── .gitignore
│   │   ├── build.gradle
│   │   ├── consumer-rules.pro
│   │   ├── proguard-rules.pro
│   │   └── src/
│   │       └── main/
│   │           ├── AndroidManifest.xml
│   │           ├── java/
│   │           │   └── net/
│   │           │       └── pantasystem/
│   │           │           └── milktea/
│   │           │               └── common_compose/
│   │           │                   ├── AvatarIcon.kt
│   │           │                   ├── BlurhashPainter.kt
│   │           │                   ├── CircleCheckbox.kt
│   │           │                   ├── ComposeAndFragment.kt
│   │           │                   ├── CustomEmojiText.kt
│   │           │                   ├── ElapsedTimeUtil.kt
│   │           │                   ├── FavoriteButton.kt
│   │           │                   ├── HorizontalFilePreviewList.kt
│   │           │                   ├── MilkteaTheme.kt
│   │           │                   ├── RadioTile.kt
│   │           │                   ├── SensitiveIcon.kt
│   │           │                   ├── Spinner.kt
│   │           │                   ├── SwitchTile.kt
│   │           │                   ├── drive/
│   │           │                   │   ├── EditCaptionDialogLayout.kt
│   │           │                   │   └── EditFileNameDialogLayout.kt
│   │           │                   └── haptic/
│   │           │                       └── HapticFeedback.kt
│   │           └── res/
│   │               ├── values/
│   │               │   └── strings.xml
│   │               ├── values-ja-rJP/
│   │               │   └── strings.xml
│   │               └── values-zh/
│   │                   └── strings.xml
│   ├── common_navigation/
│   │   ├── .gitignore
│   │   ├── build.gradle
│   │   ├── consumer-rules.pro
│   │   ├── proguard-rules.pro
│   │   └── src/
│   │       └── main/
│   │           ├── AndroidManifest.xml
│   │           └── java/
│   │               └── net/
│   │                   └── pantasystem/
│   │                       └── milktea/
│   │                           └── common_navigation/
│   │                               ├── AccountSettingNavigation.kt
│   │                               ├── ActivityNavigation.kt
│   │                               ├── AntennaNavigation.kt
│   │                               ├── AuthorizationNavigation.kt
│   │                               ├── ChannelNavigation.kt
│   │                               ├── ClipNavigation.kt
│   │                               ├── DriveNavigation.kt
│   │                               ├── MainNavigation.kt
│   │                               ├── MediaNavigation.kt
│   │                               ├── MessageNavigation.kt
│   │                               ├── SearchAndSelectUserNavigation.kt
│   │                               ├── SearchNavigation.kt
│   │                               ├── TimelineMachineNavigation.kt
│   │                               ├── UserDetailNavigation.kt
│   │                               └── UserListNavigation.kt
│   ├── common_resource/
│   │   ├── .gitignore
│   │   ├── build.gradle
│   │   ├── consumer-rules.pro
│   │   ├── proguard-rules.pro
│   │   └── src/
│   │       └── main/
│   │           ├── AndroidManifest.xml
│   │           └── res/
│   │               ├── drawable/
│   │               │   ├── bottom_navigation_colors.xml
│   │               │   ├── ic_access_time_black_24dp.xml
│   │               │   ├── ic_account_circle_24px.xml
│   │               │   ├── ic_account_circle_40px.xml
│   │               │   ├── ic_account_circle_48px.xml
│   │               │   ├── ic_add_black_24dp.xml
│   │               │   ├── ic_add_circle_outline_black_24dp.xml
│   │               │   ├── ic_add_to_tab_24px.xml
│   │               │   ├── ic_arrow_back_black_24dp.xml
│   │               │   ├── ic_attach_file_black_24dp.xml
│   │               │   ├── ic_attachment_24px.xml
│   │               │   ├── ic_baseline_edit_calendar_24.xml
│   │               │   ├── ic_baseline_favorite_border_24.xml
│   │               │   ├── ic_baseline_hide_image_24.xml
│   │               │   ├── ic_baseline_image_24.xml
│   │               │   ├── ic_baseline_keyboard_arrow_down_24.xml
│   │               │   ├── ic_baseline_radio_24.xml
│   │               │   ├── ic_baseline_report_gmailerrorred_24.xml
│   │               │   ├── ic_baseline_report_problem_24.xml
│   │               │   ├── ic_baseline_translate_24.xml
│   │               │   ├── ic_call_received_black_24dp.xml
│   │               │   ├── ic_chat_bubble_outline_black_24dp.xml
│   │               │   ├── ic_check_black_24dp.xml
│   │               │   ├── ic_chevron_right_black_24dp.xml
│   │               │   ├── ic_clear_black_24dp.xml
│   │               │   ├── ic_cloud_black_24dp.xml
│   │               │   ├── ic_cloud_queue_black_24dp.xml
│   │               │   ├── ic_compass.xml
│   │               │   ├── ic_delete_black_24dp.xml
│   │               │   ├── ic_done_black_24dp.xml
│   │               │   ├── ic_drafts_black_24dp.xml
│   │               │   ├── ic_edit_black_24dp.xml
│   │               │   ├── ic_email_black_24dp.xml
│   │               │   ├── ic_expand_less_black_24dp.xml
│   │               │   ├── ic_expand_more_black_24dp.xml
│   │               │   ├── ic_folder_black_24dp.xml
│   │               │   ├── ic_folder_open_black_24dp.xml
│   │               │   ├── ic_follow.xml
│   │               │   ├── ic_format_list_bulleted_black_24dp.xml
│   │               │   ├── ic_format_quote_black_24dp.xml
│   │               │   ├── ic_groups.xml
│   │               │   ├── ic_history_black_24dp.xml
│   │               │   ├── ic_home_black_24dp.xml
│   │               │   ├── ic_info_black_24dp.xml
│   │               │   ├── ic_insert_emoticon_black_24dp.xml
│   │               │   ├── ic_insert_link_black_24dp.xml
│   │               │   ├── ic_keyboard_arrow_right_black_24dp.xml
│   │               │   ├── ic_keyboard_black_24dp.xml
│   │               │   ├── ic_language_black_24dp.xml
│   │               │   ├── ic_launcher_background.xml
│   │               │   ├── ic_light.xml
│   │               │   ├── ic_lightbulb_outline_black_24dp.xml
│   │               │   ├── ic_list_add_black_24dp.xml
│   │               │   ├── ic_lock_black_24dp.xml
│   │               │   ├── ic_mention.xml
│   │               │   ├── ic_menu_black_24dp.xml
│   │               │   ├── ic_menu_camera.xml
│   │               │   ├── ic_menu_gallery.xml
│   │               │   ├── ic_menu_manage.xml
│   │               │   ├── ic_menu_send.xml
│   │               │   ├── ic_menu_share.xml
│   │               │   ├── ic_menu_slideshow.xml
│   │               │   ├── ic_message_black_24dp.xml
│   │               │   ├── ic_mode_edit_black_24dp.xml
│   │               │   ├── ic_more_horiz_black_24dp.xml
│   │               │   ├── ic_more_vert_black_24dp.xml
│   │               │   ├── ic_music_note_black_24dp.xml
│   │               │   ├── ic_notifications_black_24dp.xml
│   │               │   ├── ic_notifications_fill_40px.xml
│   │               │   ├── ic_notifications_fill_48px.xml
│   │               │   ├── ic_notifications_none_black_24dp.xml
│   │               │   ├── ic_notifications_outlined_40px.xml
│   │               │   ├── ic_notifications_outlined_48px.xml
│   │               │   ├── ic_person_add_black_24dp.xml
│   │               │   ├── ic_person_black_24dp.xml
│   │               │   ├── ic_play_circle_outline_black_24dp.xml
│   │               │   ├── ic_poll_black_24dp.xml
│   │               │   ├── ic_re_note.xml
│   │               │   ├── ic_refresh_black_24dp.xml
│   │               │   ├── ic_remove_black_24dp.xml
│   │               │   ├── ic_remove_circle_outline_black_24dp.xml
│   │               │   ├── ic_remove_to_tab_24px.xml
│   │               │   ├── ic_reply_black_24dp.xml
│   │               │   ├── ic_save_black_24dp.xml
│   │               │   ├── ic_search_40px.xml
│   │               │   ├── ic_search_48px.xml
│   │               │   ├── ic_search_black_24dp.xml
│   │               │   ├── ic_selectable_drive.xml
│   │               │   ├── ic_selectable_file.xml
│   │               │   ├── ic_selectable_message.xml
│   │               │   ├── ic_selectable_notification.xml
│   │               │   ├── ic_settings_black_24dp.xml
│   │               │   ├── ic_sharp.xml
│   │               │   ├── ic_star.xml
│   │               │   ├── ic_star_black_24dp.xml
│   │               │   ├── ic_star_border_black_24dp.xml
│   │               │   ├── ic_star_state.xml
│   │               │   ├── ic_supervisor_account_black_24dp.xml
│   │               │   ├── ic_sync_alt_24px.xml
│   │               │   ├── ic_visibility_off_black_24dp.xml
│   │               │   ├── ic_zoom_out_map_black_24dp.xml
│   │               │   ├── shape_chip.xml
│   │               │   ├── shape_message_recipient.xml
│   │               │   ├── shape_message_self.xml
│   │               │   ├── shape_messages_badge.xml
│   │               │   ├── shape_normal_reaction_backgruond.xml
│   │               │   ├── shape_rounded_square_line.xml
│   │               │   ├── shape_selected_reaction_background.xml
│   │               │   ├── side_nav_bar.xml
│   │               │   └── tab_dot_background.xml
│   │               ├── menu/
│   │               │   ├── activity_auth_menu.xml
│   │               │   ├── activity_custom_app_menu.xml
│   │               │   ├── activity_main_drawer.xml
│   │               │   ├── activity_search_menu.xml
│   │               │   ├── activity_sign_in_menu.xml
│   │               │   ├── activity_user_menu.xml
│   │               │   ├── bottom_menu.xml
│   │               │   ├── main.xml
│   │               │   ├── menu_drive.xml
│   │               │   ├── menu_search.xml
│   │               │   ├── menu_user_list_detail.xml
│   │               │   ├── note_detail_menu.xml
│   │               │   ├── search_top_menu.xml
│   │               │   ├── tab_pager_menu.xml
│   │               │   └── tab_setting_menu.xml
│   │               ├── values/
│   │               │   ├── arrays.xml
│   │               │   ├── attrs.xml
│   │               │   ├── colors.xml
│   │               │   ├── dimens.xml
│   │               │   ├── ic_launcher_background.xml
│   │               │   ├── strings.xml
│   │               │   ├── styles.xml
│   │               │   ├── themes.xml
│   │               │   └── values.xml
│   │               ├── values-ja/
│   │               │   └── strings.xml
│   │               └── values-zh/
│   │                   └── strings.xml
│   ├── common_viewmodel/
│   │   ├── .gitignore
│   │   ├── build.gradle
│   │   ├── consumer-rules.pro
│   │   ├── proguard-rules.pro
│   │   └── src/
│   │       └── main/
│   │           ├── AndroidManifest.xml
│   │           └── java/
│   │               └── net/
│   │                   └── pantasystem/
│   │                       └── milktea/
│   │                           └── common_viewmodel/
│   │                               ├── CurrentPageableTimelineViewModel.kt
│   │                               ├── ScrollToTopViewModel.kt
│   │                               └── UserViewData.kt
│   ├── data/
│   │   ├── .gitignore
│   │   ├── build.gradle
│   │   ├── consumer-rules.pro
│   │   ├── objectbox-models/
│   │   │   ├── default.json
│   │   │   └── default.json.bak
│   │   ├── proguard-rules.pro
│   │   ├── schemas/
│   │   │   ├── net.pantasystem.milktea.data.infrastructure.DataBase/
│   │   │   │   ├── 10.json
│   │   │   │   ├── 11.json
│   │   │   │   ├── 12.json
│   │   │   │   ├── 13.json
│   │   │   │   ├── 14.json
│   │   │   │   ├── 15.json
│   │   │   │   ├── 16.json
│   │   │   │   ├── 17.json
│   │   │   │   ├── 18.json
│   │   │   │   ├── 19.json
│   │   │   │   ├── 20.json
│   │   │   │   ├── 21.json
│   │   │   │   ├── 22.json
│   │   │   │   ├── 23.json
│   │   │   │   ├── 24.json
│   │   │   │   ├── 25.json
│   │   │   │   ├── 26.json
│   │   │   │   ├── 27.json
│   │   │   │   ├── 28.json
│   │   │   │   ├── 29.json
│   │   │   │   ├── 3.json
│   │   │   │   ├── 30.json
│   │   │   │   ├── 31.json
│   │   │   │   ├── 32.json
│   │   │   │   ├── 33.json
│   │   │   │   ├── 34.json
│   │   │   │   ├── 35.json
│   │   │   │   ├── 36.json
│   │   │   │   ├── 37.json
│   │   │   │   ├── 38.json
│   │   │   │   ├── 39.json
│   │   │   │   ├── 4.json
│   │   │   │   ├── 40.json
│   │   │   │   ├── 41.json
│   │   │   │   ├── 42.json
│   │   │   │   ├── 43.json
│   │   │   │   ├── 44.json
│   │   │   │   ├── 45.json
│   │   │   │   ├── 46.json
│   │   │   │   ├── 47.json
│   │   │   │   ├── 48.json
│   │   │   │   ├── 49.json
│   │   │   │   ├── 5.json
│   │   │   │   ├── 50.json
│   │   │   │   ├── 51.json
│   │   │   │   ├── 52.json
│   │   │   │   ├── 53.json
│   │   │   │   ├── 54.json
│   │   │   │   ├── 55.json
│   │   │   │   ├── 56.json
│   │   │   │   ├── 57.json
│   │   │   │   ├── 58.json
│   │   │   │   ├── 59.json
│   │   │   │   ├── 6.json
│   │   │   │   ├── 60.json
│   │   │   │   ├── 61.json
│   │   │   │   ├── 62.json
│   │   │   │   ├── 63.json
│   │   │   │   ├── 64.json
│   │   │   │   ├── 65.json
│   │   │   │   ├── 66.json
│   │   │   │   ├── 67.json
│   │   │   │   ├── 68.json
│   │   │   │   ├── 69.json
│   │   │   │   ├── 7.json
│   │   │   │   ├── 70.json
│   │   │   │   ├── 71.json
│   │   │   │   ├── 72.json
│   │   │   │   ├── 73.json
│   │   │   │   ├── 74.json
│   │   │   │   ├── 8.json
│   │   │   │   └── 9.json
│   │   │   ├── net.pantasystem.milktea.data.model.DataBase/
│   │   │   │   ├── 10.json
│   │   │   │   ├── 11.json
│   │   │   │   ├── 12.json
│   │   │   │   ├── 3.json
│   │   │   │   ├── 4.json
│   │   │   │   ├── 5.json
│   │   │   │   ├── 6.json
│   │   │   │   ├── 7.json
│   │   │   │   ├── 8.json
│   │   │   │   └── 9.json
│   │   │   └── schemas/
│   │   │       └── jp.panta.misskeyandroidclient.model.DataBase/
│   │   │           ├── 10.json
│   │   │           ├── 11.json
│   │   │           ├── 12.json
│   │   │           ├── 3.json
│   │   │           ├── 4.json
│   │   │           ├── 5.json
│   │   │           ├── 6.json
│   │   │           ├── 7.json
│   │   │           ├── 8.json
│   │   │           └── 9.json
│   │   └── src/
│   │       ├── androidTest/
│   │       │   └── java/
│   │       │       └── net/
│   │       │           └── pantasystem/
│   │       │               └── milktea/
│   │       │                   └── data/
│   │       │                       └── infrastructure/
│   │       │                           ├── DatabaseMigrationTest.kt
│   │       │                           ├── image/
│   │       │                           │   └── ImageCacheRepositoryImplTest.kt
│   │       │                           ├── note/
│   │       │                           │   ├── timeline/
│   │       │                           │   │   └── TimelineCacheDAOTest.kt
│   │       │                           │   └── wordmute/
│   │       │                           │       └── WordFilterConfigRepositoryImplTest.kt
│   │       │                           └── settings/
│   │       │                               └── LocalConfigRepositoryImplTest.kt
│   │       ├── main/
│   │       │   ├── AndroidManifest.xml
│   │       │   └── java/
│   │       │       └── net/
│   │       │           └── pantasystem/
│   │       │               └── milktea/
│   │       │                   └── data/
│   │       │                       ├── api/
│   │       │                       │   ├── NodeInfoAPIBuilder.kt
│   │       │                       │   ├── mastodon/
│   │       │                       │   │   ├── MastodonAPIFactory.kt
│   │       │                       │   │   └── MastodonAPIProvider.kt
│   │       │                       │   └── misskey/
│   │       │                       │       └── MisskeyAPIProvider.kt
│   │       │                       ├── converters/
│   │       │                       │   ├── ClipDTOEntityConverter.kt
│   │       │                       │   ├── FilePropertyDTOEntityConverter.kt
│   │       │                       │   ├── GalleryPostDTOEntityConverter.kt
│   │       │                       │   ├── MastodonAccountDTOEntityConverter.kt
│   │       │                       │   ├── NoteDTOEntityConverter.kt
│   │       │                       │   ├── NotificationDTOEntityConverter.kt
│   │       │                       │   ├── TootDTOEntityConverter.kt
│   │       │                       │   └── UserDTOEntityConverter.kt
│   │       │                       ├── di/
│   │       │                       │   └── module/
│   │       │                       │       ├── AccountModule.kt
│   │       │                       │       ├── AntennaModule.kt
│   │       │                       │       ├── ApResolverModule.kt
│   │       │                       │       ├── BookmarkModule.kt
│   │       │                       │       ├── ChannelModule.kt
│   │       │                       │       ├── ClipModule.kt
│   │       │                       │       ├── CustomEmojiModule.kt
│   │       │                       │       ├── DbModule.kt
│   │       │                       │       ├── DriveDirectoryModule.kt
│   │       │                       │       ├── DriveFileModule.kt
│   │       │                       │       ├── FavoriteModule.kt
│   │       │                       │       ├── FileModule.kt
│   │       │                       │       ├── GalleryModule.kt
│   │       │                       │       ├── GetterModule.kt
│   │       │                       │       ├── GroupModule.kt
│   │       │                       │       ├── HashtagModule.kt
│   │       │                       │       ├── ImageCacheBindModule.kt
│   │       │                       │       ├── InstanceInfoModule.kt
│   │       │                       │       ├── InstanceTickerModule.kt
│   │       │                       │       ├── MarkerModule.kt
│   │       │                       │       ├── MastodonInstanceInfoModule.kt
│   │       │                       │       ├── MessagingModule.kt
│   │       │                       │       ├── MetaModule.kt
│   │       │                       │       ├── NodeInfoModule.kt
│   │       │                       │       ├── NoteModule.kt
│   │       │                       │       ├── NotificationModule.kt
│   │       │                       │       ├── ReactionModule.kt
│   │       │                       │       ├── RenoteMuteModule.kt
│   │       │                       │       ├── SearchModule.kt
│   │       │                       │       ├── SettingModule.kt
│   │       │                       │       ├── SocketModule.kt
│   │       │                       │       ├── UrlPreviewModule.kt
│   │       │                       │       ├── UserListModule.kt
│   │       │                       │       ├── UserModule.kt
│   │       │                       │       ├── UserNicknameModule.kt
│   │       │                       │       ├── WordFilterConfigModule.kt
│   │       │                       │       └── WordFilterModule.kt
│   │       │                       ├── infrastructure/
│   │       │                       │   ├── DataBase.kt
│   │       │                       │   ├── DateConverter.kt
│   │       │                       │   ├── MemoryCacheCleaner.kt
│   │       │                       │   ├── Migrations.kt
│   │       │                       │   ├── MisskeyEntityConverters.kt
│   │       │                       │   ├── TootEntityConverters.kt
│   │       │                       │   ├── account/
│   │       │                       │   │   ├── AuthImpl.kt
│   │       │                       │   │   ├── ClientIdRepositoryImpl.kt
│   │       │                       │   │   ├── SignOutUseCaseImpl.kt
│   │       │                       │   │   ├── converter.kt
│   │       │                       │   │   ├── db/
│   │       │                       │   │   │   ├── AccountDAO.kt
│   │       │                       │   │   │   ├── AccountRecord.kt
│   │       │                       │   │   │   ├── AccountRelation.kt
│   │       │                       │   │   │   ├── MediatorAccountRepository.kt
│   │       │                       │   │   │   └── RoomAccountRepository.kt
│   │       │                       │   │   └── page/
│   │       │                       │   │       └── db/
│   │       │                       │   │           ├── PageDAO.kt
│   │       │                       │   │           ├── PageRecord.kt
│   │       │                       │   │           ├── PageRecordParams.kt
│   │       │                       │   │           └── TimelinePageTypeConverter.kt
│   │       │                       │   ├── antenna/
│   │       │                       │   │   └── AntennaRepositoryImpl.kt
│   │       │                       │   ├── ap/
│   │       │                       │   │   └── ApResolverRepositoryImpl.kt
│   │       │                       │   ├── auth/
│   │       │                       │   │   ├── Authorization.kt
│   │       │                       │   │   ├── KeyStoreSystemEncryption.kt
│   │       │                       │   │   └── custom/
│   │       │                       │   │       ├── AccessToken.kt
│   │       │                       │   │       ├── CustomAuthBridge.kt
│   │       │                       │   │       └── CustomAuthStore.kt
│   │       │                       │   ├── channel/
│   │       │                       │   │   ├── ChannelAPIAdapter.kt
│   │       │                       │   │   ├── ChannelAPIAdapterWebImpl.kt
│   │       │                       │   │   ├── ChannelPagingModel.kt
│   │       │                       │   │   └── ChannelRepositoryImpl.kt
│   │       │                       │   ├── clip/
│   │       │                       │   │   └── ClipRepositoryImpl.kt
│   │       │                       │   ├── drive/
│   │       │                       │   │   ├── DriveDirectoryPagingStoreImpl.kt
│   │       │                       │   │   ├── DriveDirectoryRepositoryImpl.kt
│   │       │                       │   │   ├── DriveFileRecord.kt
│   │       │                       │   │   ├── DriveFileRecordDao.kt
│   │       │                       │   │   ├── DriveFileRepositoryImpl.kt
│   │       │                       │   │   ├── FilePaginator.kt
│   │       │                       │   │   ├── InMemoryFielPropertyDataSource.kt
│   │       │                       │   │   ├── InputStreamRequestBody.kt
│   │       │                       │   │   ├── MastodonOkHttpFileUploader.kt
│   │       │                       │   │   ├── MediatorFilePropertyDataSource.kt
│   │       │                       │   │   ├── MisskeyOkHttpDriveFileUploader.kt
│   │       │                       │   │   ├── UriRequestBody.kt
│   │       │                       │   │   └── uploaders.kt
│   │       │                       │   ├── emoji/
│   │       │                       │   │   ├── CustomEmojiApiAdapter.kt
│   │       │                       │   │   ├── CustomEmojiAspectRatioDAO.kt
│   │       │                       │   │   ├── CustomEmojiAspectRatioDataSourceImpl.kt
│   │       │                       │   │   ├── CustomEmojiAspectRatioEntity.kt
│   │       │                       │   │   ├── CustomEmojiCache.kt
│   │       │                       │   │   ├── CustomEmojiDAO.kt
│   │       │                       │   │   ├── CustomEmojiInserter.kt
│   │       │                       │   │   ├── CustomEmojiRecord.kt
│   │       │                       │   │   ├── CustomEmojiRepositoryImpl.kt
│   │       │                       │   │   ├── EmojiEventHandlerImpl.kt
│   │       │                       │   │   ├── UserEmojiConfigCache.kt
│   │       │                       │   │   └── UserEmojiConfigRepositoryImpl.kt
│   │       │                       │   ├── file/
│   │       │                       │   │   ├── CopyFileToAppDirRepositoryImpl.kt
│   │       │                       │   │   └── UriToAppFileUseCaseImpl.kt
│   │       │                       │   ├── filter/
│   │       │                       │   │   ├── MastodonWordFilterCache.kt
│   │       │                       │   │   ├── MastodonWordFilterRepositoryImpl.kt
│   │       │                       │   │   └── db/
│   │       │                       │   │       ├── MastodonFilterDao.kt
│   │       │                       │   │       └── MastodonWordFilterRecord.kt
│   │       │                       │   ├── gallery/
│   │       │                       │   │   ├── GalleryRepositoryImpl.kt
│   │       │                       │   │   ├── InMemoryGalleryDataSource.kt
│   │       │                       │   │   ├── MediatorGalleryPostPaginator.kt
│   │       │                       │   │   ├── gallery_posts_paginators.kt
│   │       │                       │   │   └── liked_gallery_posts_paginator.kt
│   │       │                       │   ├── group/
│   │       │                       │   │   ├── GroupDao.kt
│   │       │                       │   │   ├── GroupDataSourceImpl.kt
│   │       │                       │   │   ├── GroupRecord.kt
│   │       │                       │   │   └── GroupRepositoryImpl.kt
│   │       │                       │   ├── hashtag/
│   │       │                       │   │   └── HashtagRepositoryImpl.kt
│   │       │                       │   ├── image/
│   │       │                       │   │   ├── ImageCacheDAO.kt
│   │       │                       │   │   ├── ImageCacheEntity.kt
│   │       │                       │   │   └── ImageCacheRepositoryImpl.kt
│   │       │                       │   ├── instance/
│   │       │                       │   │   ├── FeatureEnablesImpl.kt
│   │       │                       │   │   ├── MastodonInstanceInfoCache.kt
│   │       │                       │   │   ├── MastodonInstanceInfoRepositoryImpl.kt
│   │       │                       │   │   ├── MetaCache.kt
│   │       │                       │   │   ├── MetaRepositoryImpl.kt
│   │       │                       │   │   ├── db/
│   │       │                       │   │   │   ├── InMemoryMetaDataSource.kt
│   │       │                       │   │   │   ├── InstanceInfoDao.kt
│   │       │                       │   │   │   ├── InstanceInfoRecord.kt
│   │       │                       │   │   │   ├── MastodonInstanceInfoDAO.kt
│   │       │                       │   │   │   ├── MastodonInstanceInfoRecord.kt
│   │       │                       │   │   │   ├── MediatorMetaDataSource.kt
│   │       │                       │   │   │   ├── MetaDAO.kt
│   │       │                       │   │   │   ├── MetaDTO.kt
│   │       │                       │   │   │   ├── MetaRelation.kt
│   │       │                       │   │   │   └── RoomMetaDataSource.kt
│   │       │                       │   │   ├── online/
│   │       │                       │   │   │   └── user/
│   │       │                       │   │   │       └── count/
│   │       │                       │   │   │           └── OnlineUserCountRepositoryImpl.kt
│   │       │                       │   │   └── ticker/
│   │       │                       │   │       ├── InstanceTickerRepositoryImpl.kt
│   │       │                       │   │       └── db/
│   │       │                       │   │           ├── InstanceTickerDAO.kt
│   │       │                       │   │           └── InstanceTickerRecord.kt
│   │       │                       │   ├── list/
│   │       │                       │   │   ├── UserListDao.kt
│   │       │                       │   │   ├── UserListRecord.kt
│   │       │                       │   │   └── UserListRepositoryWebAPIImpl.kt
│   │       │                       │   ├── markers/
│   │       │                       │   │   ├── MarkerCache.kt
│   │       │                       │   │   └── MarkerRepositoryImpl.kt
│   │       │                       │   ├── messaging/
│   │       │                       │   │   ├── MessageDataSource.kt
│   │       │                       │   │   ├── MessageObserverImpl.kt
│   │       │                       │   │   ├── MessagePagingStoreImpl.kt
│   │       │                       │   │   ├── MessageRelationGetterImpl.kt
│   │       │                       │   │   ├── MessageRepositoryImpl.kt
│   │       │                       │   │   └── MessagingRepositoryImpl.kt
│   │       │                       │   ├── nodeinfo/
│   │       │                       │   │   ├── NodeInfoCache.kt
│   │       │                       │   │   ├── NodeInfoFetcher.kt
│   │       │                       │   │   ├── NodeInfoRepositoryImpl.kt
│   │       │                       │   │   └── db/
│   │       │                       │   │       ├── NodeInfoDao.kt
│   │       │                       │   │       └── NodeInfoRecord.kt
│   │       │                       │   ├── note/
│   │       │                       │   │   ├── FavoriteNoteTimelinePagingStoreImpl.kt
│   │       │                       │   │   ├── MastodonTimelineStorePagingStoreImpl.kt
│   │       │                       │   │   ├── NoteCaptureAPIAdapterImpl.kt
│   │       │                       │   │   ├── NoteCaptureAPIWithAccountProvider.kt
│   │       │                       │   │   ├── NoteDataSourceAdder.kt
│   │       │                       │   │   ├── NoteEventReducer.kt
│   │       │                       │   │   ├── NoteStreamingImpl.kt
│   │       │                       │   │   ├── NoteTranslationStoreImpl.kt
│   │       │                       │   │   ├── PageParams.kt
│   │       │                       │   │   ├── ReplyStreamingImpl.kt
│   │       │                       │   │   ├── TimelinePagingStoreImpl.kt
│   │       │                       │   │   ├── TimelineScrollPositionRepositoryImpl.kt
│   │       │                       │   │   ├── TimelineStoreImpl.kt
│   │       │                       │   │   ├── UnusedPageReleaser.kt
│   │       │                       │   │   ├── bookmark/
│   │       │                       │   │   │   └── BookmarkRepositoryImpl.kt
│   │       │                       │   │   ├── draft/
│   │       │                       │   │   │   ├── DraftNoteRepositoryImpl.kt
│   │       │                       │   │   │   └── db/
│   │       │                       │   │   │       ├── DraftFileDTO.kt
│   │       │                       │   │   │       ├── DraftNoteDTO.kt
│   │       │                       │   │   │       ├── DraftNoteDao.kt
│   │       │                       │   │   │       ├── DraftNoteRelation.kt
│   │       │                       │   │   │       ├── DraftPollDTO.kt
│   │       │                       │   │   │       ├── PollChoiceDTO.kt
│   │       │                       │   │   │       └── UserIdDTO.kt
│   │       │                       │   │   ├── favorite/
│   │       │                       │   │   │   ├── FavoriteAPIAdapter.kt
│   │       │                       │   │   │   └── FavoriteRepositoryImpl.kt
│   │       │                       │   │   ├── impl/
│   │       │                       │   │   │   ├── DraftNoteServiceImpl.kt
│   │       │                       │   │   │   ├── InMemoryNoteDataSource.kt
│   │       │                       │   │   │   ├── NoteApiAdapter.kt
│   │       │                       │   │   │   ├── NoteRepositoryImpl.kt
│   │       │                       │   │   │   ├── PostNoteTask.kt
│   │       │                       │   │   │   ├── ThreadContextApiAdapter.kt
│   │       │                       │   │   │   └── sqlite/
│   │       │                       │   │   │       ├── NoteDAO.kt
│   │       │                       │   │   │       ├── NoteEntity.kt
│   │       │                       │   │   │       ├── NoteThreadDAO.kt
│   │       │                       │   │   │       ├── NoteThreadEntity.kt
│   │       │                       │   │   │       └── SQLiteNoteDataSource.kt
│   │       │                       │   │   ├── reaction/
│   │       │                       │   │   │   └── impl/
│   │       │                       │   │   │       ├── ReactionAuthorDAO.kt
│   │       │                       │   │   │       ├── ReactionAuthorEntity.kt
│   │       │                       │   │   │       ├── ReactionRepositoryImpl.kt
│   │       │                       │   │   │       ├── ReactionUserRepositoryImpl.kt
│   │       │                       │   │   │       ├── history/
│   │       │                       │   │   │       │   ├── FrequentlyReactionAndUnFollowedUserRecord.kt
│   │       │                       │   │   │       │   ├── ReactionHistoryCountRecord.kt
│   │       │                       │   │   │       │   ├── ReactionHistoryDao.kt
│   │       │                       │   │   │       │   ├── ReactionHistoryRecord.kt
│   │       │                       │   │   │       │   └── ReactionHistoryRepositoryImpl.kt
│   │       │                       │   │   │       └── usercustom/
│   │       │                       │   │   │           ├── ReactionUserSetting.kt
│   │       │                       │   │   │           └── ReactionUserSettingDao.kt
│   │       │                       │   │   ├── renote/
│   │       │                       │   │   │   └── RenotesPagingService.kt
│   │       │                       │   │   ├── timeline/
│   │       │                       │   │   │   ├── TimelineCacheDAO.kt
│   │       │                       │   │   │   ├── TimelineFetcher.kt
│   │       │                       │   │   │   ├── TimelineFetcherImpl.kt
│   │       │                       │   │   │   ├── TimelineItemEntity.kt
│   │       │                       │   │   │   ├── TimelineLocalDataSource.kt
│   │       │                       │   │   │   ├── TimelineLocalDataSourceImpl.kt
│   │       │                       │   │   │   ├── TimelineRepositoryImpl.kt
│   │       │                       │   │   │   └── favorite/
│   │       │                       │   │   │       └── FavoriteTimelineRepositoryImpl.kt
│   │       │                       │   │   └── wordmute/
│   │       │                       │   │       ├── WordFilterConditionRecord.kt
│   │       │                       │   │       ├── WordFilterConfigCache.kt
│   │       │                       │   │       ├── WordFilterConfigDao.kt
│   │       │                       │   │       └── WordFilterConfigRepositoryImpl.kt
│   │       │                       │   ├── notification/
│   │       │                       │   │   ├── db/
│   │       │                       │   │   │   ├── AccountNotificationCount.kt
│   │       │                       │   │   │   ├── NotificationCacheDAO.kt
│   │       │                       │   │   │   ├── NotificationEntity.kt
│   │       │                       │   │   │   ├── NotificationJsonCacheRecord.kt
│   │       │                       │   │   │   ├── NotificationJsonCacheRecordDAO.kt
│   │       │                       │   │   │   ├── NotificationTimelineEntity.kt
│   │       │                       │   │   │   ├── UnreadNotification.kt
│   │       │                       │   │   │   └── UnreadNotificationDAO.kt
│   │       │                       │   │   └── impl/
│   │       │                       │   │       ├── MediatorNotificationDataSource.kt
│   │       │                       │   │       ├── NotificationCacheAdder.kt
│   │       │                       │   │       ├── NotificationPagingStoreImpl.kt
│   │       │                       │   │       ├── NotificationRepositoryImpl.kt
│   │       │                       │   │       ├── NotificationStoreImpl.kt
│   │       │                       │   │       ├── NotificationStreamingImpl.kt
│   │       │                       │   │       └── NotificationTimelineRepositoryImpl.kt
│   │       │                       │   ├── report/
│   │       │                       │   │   └── ReportRepositoryImpl.kt
│   │       │                       │   ├── search/
│   │       │                       │   │   ├── SearchHistoryDao.kt
│   │       │                       │   │   ├── SearchHistoryRecord.kt
│   │       │                       │   │   └── SearchHistoryRepositoryImpl.kt
│   │       │                       │   ├── settings/
│   │       │                       │   │   ├── Config.kt
│   │       │                       │   │   ├── LocalConfigRepository.kt
│   │       │                       │   │   └── Theme.kt
│   │       │                       │   ├── streaming/
│   │       │                       │   │   ├── MediatorMainEventDispatcher.kt
│   │       │                       │   │   ├── StreamingMainEventDispatcher.kt
│   │       │                       │   │   ├── StreamingMainMessageEventDispatcher.kt
│   │       │                       │   │   ├── StreamingMainNotificationEventDispatcher.kt
│   │       │                       │   │   ├── StreamingMainUserEventDispatcher.kt
│   │       │                       │   │   └── socket_state.kt
│   │       │                       │   ├── sw/
│   │       │                       │   │   └── register/
│   │       │                       │   │       ├── DeviceTokenRepositoryImpl.kt
│   │       │                       │   │       ├── EndpointBuilder.kt
│   │       │                       │   │       ├── SubscriptionRegistrationImpl.kt
│   │       │                       │   │       └── SubscriptionUnRegistration.kt
│   │       │                       │   ├── url/
│   │       │                       │   │   ├── MisskeyUrlPreviewStore.kt
│   │       │                       │   │   ├── RetrofitMisskeyUrlPreview.kt
│   │       │                       │   │   ├── UrlPreviewMediatorStore.kt
│   │       │                       │   │   ├── UrlPreviewStoreFactory.kt
│   │       │                       │   │   ├── UrlPreviewStoreProvider.kt
│   │       │                       │   │   └── db/
│   │       │                       │   │       ├── UrlPreviewDAO.kt
│   │       │                       │   │       └── UrlPreviewRecord.kt
│   │       │                       │   └── user/
│   │       │                       │       ├── FollowFollowerPagingModel.kt
│   │       │                       │       ├── FollowRequestApiAdapter.kt
│   │       │                       │       ├── FollowRequestRepositoryImpl.kt
│   │       │                       │       ├── InMemoryUserDataSource.kt
│   │       │                       │       ├── MediatorUserDataSource.kt
│   │       │                       │       ├── UserActionResult.kt
│   │       │                       │       ├── UserApiAdapter.kt
│   │       │                       │       ├── UserNicknameDAO.kt
│   │       │                       │       ├── UserNicknameRepositoryOnMemoryImpl.kt
│   │       │                       │       ├── UserNicknameRepositorySQLiteImpl.kt
│   │       │                       │       ├── UserReactionPagingStoreImpl.kt
│   │       │                       │       ├── UserRepositoryImpl.kt
│   │       │                       │       ├── block/
│   │       │                       │       │   ├── BlockApiAdapter.kt
│   │       │                       │       │   └── BlockRepositoryImpl.kt
│   │       │                       │       ├── db/
│   │       │                       │       │   ├── UserDao.kt
│   │       │                       │       │   └── UserRecord.kt
│   │       │                       │       ├── follow/
│   │       │                       │       │   ├── FollowApiAdapter.kt
│   │       │                       │       │   └── FollowRepositoryImpl.kt
│   │       │                       │       ├── mute/
│   │       │                       │       │   ├── MuteApiAdapter.kt
│   │       │                       │       │   └── MuteRepositoryImpl.kt
│   │       │                       │       └── renote/
│   │       │                       │           └── mute/
│   │       │                       │               ├── FindAllRemoteRenoteMutes.kt
│   │       │                       │               ├── IsSupportRenoteMuteInstance.kt
│   │       │                       │               ├── RenoteMuteApiAdapter.kt
│   │       │                       │               ├── RenoteMuteCache.kt
│   │       │                       │               ├── RenoteMuteRepositoryImpl.kt
│   │       │                       │               ├── UnPushedRenoteMutesDiffFilter.kt
│   │       │                       │               ├── db/
│   │       │                       │               │   ├── RenoteMuteDao.kt
│   │       │                       │               │   └── RenoteMuteRecord.kt
│   │       │                       │               └── delegate/
│   │       │                       │                   ├── CreateRenoteMuteAndPushToRemoteDelegate.kt
│   │       │                       │                   ├── FindRenoteMuteAndUpdateMemCacheDelegate.kt
│   │       │                       │                   └── SyncRenoteMuteDelegate.kt
│   │       │                       └── streaming/
│   │       │                           ├── ChannelAPIWithAccountProvider.kt
│   │       │                           ├── SocketWithAccountProvider.kt
│   │       │                           ├── StreamingAPIProvider.kt
│   │       │                           └── impl/
│   │       │                               └── SocketWithAccountProviderImpl.kt
│   │       └── test/
│   │           └── java/
│   │               └── net/
│   │                   └── pantasystem/
│   │                       └── milktea/
│   │                           ├── api/
│   │                           │   ├── milktea/
│   │                           │   │   └── InstanceInfoResponseTest.kt
│   │                           │   └── misskey/
│   │                           │       └── notes/
│   │                           │           ├── CreateNoteTest.kt
│   │                           │           └── PollDTOTest.kt
│   │                           └── data/
│   │                               ├── converters/
│   │                               │   ├── NoteDTOEntityConverterTest.kt
│   │                               │   └── UserDTOEntityConverterTest.kt
│   │                               └── infrastructure/
│   │                                   ├── account/
│   │                                   │   ├── db/
│   │                                   │   │   └── AccountInstanceTypeConverterTest.kt
│   │                                   │   └── page/
│   │                                   │       └── db/
│   │                                   │           └── PageRecordParamsTest.kt
│   │                                   ├── instance/
│   │                                   │   └── FeatureEnablesImplTest.kt
│   │                                   ├── nodeinfo/
│   │                                   │   ├── NodeInfoFetcherImplTest.kt
│   │                                   │   └── NodeInfoRepositoryImplTest.kt
│   │                                   ├── note/
│   │                                   │   ├── NoteEventReducerKtTest.kt
│   │                                   │   ├── UnusedPageReleaserTest.kt
│   │                                   │   └── impl/
│   │                                   │       └── InMemoryNoteDataSourceTest.kt
│   │                                   ├── settings/
│   │                                   │   ├── ConfigKtTest.kt
│   │                                   │   ├── KeysKtTest.kt
│   │                                   │   └── ThemeKtTest.kt
│   │                                   └── user/
│   │                                       └── renote/
│   │                                           └── mute/
│   │                                               ├── FindAllRemoteRenoteMutesTest.kt
│   │                                               ├── RenoteMuteCacheTest.kt
│   │                                               ├── RenoteMuteRepositoryImplTest.kt
│   │                                               ├── UnPushedRenoteMutesDiffFilterTest.kt
│   │                                               ├── db/
│   │                                               │   └── RenoteMuteRecordTest.kt
│   │                                               └── delegate/
│   │                                                   ├── CreateRenoteMuteAndPushToRemoteDelegateTest.kt
│   │                                                   ├── FindRenoteMuteAndUpdateMemCacheDelegateTest.kt
│   │                                                   └── SyncRenoteMuteDelegateImplTest.kt
│   ├── features/
│   │   ├── account/
│   │   │   ├── .gitignore
│   │   │   ├── build.gradle
│   │   │   ├── consumer-rules.pro
│   │   │   ├── proguard-rules.pro
│   │   │   └── src/
│   │   │       └── main/
│   │   │           ├── AndroidManifest.xml
│   │   │           ├── java/
│   │   │           │   └── net/
│   │   │           │       └── pantasystem/
│   │   │           │           └── milktea/
│   │   │           │               └── account/
│   │   │           │                   ├── AccountFragment.kt
│   │   │           │                   ├── AccountInfoLayout.kt
│   │   │           │                   ├── AccountScreenViewModel.kt
│   │   │           │                   ├── AccountTabFragment.kt
│   │   │           │                   ├── AccountTabPagerAdapter.kt
│   │   │           │                   └── AccountTabViewModel.kt
│   │   │           └── res/
│   │   │               └── layout/
│   │   │                   └── fragment_account_tab.xml
│   │   ├── antenna/
│   │   │   ├── .gitignore
│   │   │   ├── build.gradle
│   │   │   ├── consumer-rules.pro
│   │   │   ├── proguard-rules.pro
│   │   │   └── src/
│   │   │       └── main/
│   │   │           ├── AndroidManifest.xml
│   │   │           ├── java/
│   │   │           │   └── net/
│   │   │           │       └── pantasystem/
│   │   │           │           └── milktea/
│   │   │           │               └── antenna/
│   │   │           │                   ├── AntennaEditorActivity.kt
│   │   │           │                   ├── AntennaEditorFragment.kt
│   │   │           │                   ├── AntennaListActivity.kt
│   │   │           │                   ├── AntennaListAdapter.kt
│   │   │           │                   ├── AntennaListFragment.kt
│   │   │           │                   ├── AntennaPagedStateHelper.kt
│   │   │           │                   └── viewmodel/
│   │   │           │                       ├── AntennaEditorViewModel.kt
│   │   │           │                       └── AntennaListViewModel.kt
│   │   │           └── res/
│   │   │               └── layout/
│   │   │                   ├── activity_antenna_editor.xml
│   │   │                   ├── activity_antenna_list.xml
│   │   │                   ├── fragment_antenna_editor.xml
│   │   │                   ├── fragment_antenna_list.xml
│   │   │                   └── item_antenna.xml
│   │   ├── auth/
│   │   │   ├── .gitignore
│   │   │   ├── build.gradle
│   │   │   ├── consumer-rules.pro
│   │   │   ├── proguard-rules.pro
│   │   │   └── src/
│   │   │       ├── main/
│   │   │       │   ├── AndroidManifest.xml
│   │   │       │   ├── java/
│   │   │       │   │   └── net/
│   │   │       │   │       └── pantasystem/
│   │   │       │   │           └── milktea/
│   │   │       │   │               └── auth/
│   │   │       │   │                   ├── AuthApprovedScreen.kt
│   │   │       │   │                   ├── AuthFormScreen.kt
│   │   │       │   │                   ├── AuthScreen.kt
│   │   │       │   │                   ├── AuthorizationActivity.kt
│   │   │       │   │                   ├── InstanceInfoCard.kt
│   │   │       │   │                   ├── JoinMilkteaActivity.kt
│   │   │       │   │                   ├── JoinMilkteaScreen.kt
│   │   │       │   │                   ├── SignUpActivity.kt
│   │   │       │   │                   ├── SignUpScreen.kt
│   │   │       │   │                   ├── Waiting4ApproveScreen.kt
│   │   │       │   │                   ├── WebViewAuthActivity.kt
│   │   │       │   │                   ├── di/
│   │   │       │   │                   │   └── module/
│   │   │       │   │                   │       └── NavigationModule.kt
│   │   │       │   │                   ├── suggestions/
│   │   │       │   │                   │   └── InstanceSuggestionsPagingModel.kt
│   │   │       │   │                   └── viewmodel/
│   │   │       │   │                       ├── Permissions.kt
│   │   │       │   │                       ├── SignUpViewModel.kt
│   │   │       │   │                       └── app/
│   │   │       │   │                           ├── AppAuthViewModel.kt
│   │   │       │   │                           ├── AuthStateHelper.kt
│   │   │       │   │                           ├── GetAccessToken.kt
│   │   │       │   │                           └── UIState.kt
│   │   │       │   └── res/
│   │   │       │       └── layout/
│   │   │       │           └── activity_web_view_auth.xml
│   │   │       └── test/
│   │   │           └── java/
│   │   │               └── net/
│   │   │                   └── pantasystem/
│   │   │                       └── milktea/
│   │   │                           └── auth/
│   │   │                               └── viewmodel/
│   │   │                                   └── app/
│   │   │                                       └── AuthUserInputStateTest.kt
│   │   ├── channel/
│   │   │   ├── .gitignore
│   │   │   ├── build.gradle
│   │   │   ├── consumer-rules.pro
│   │   │   ├── proguard-rules.pro
│   │   │   └── src/
│   │   │       └── main/
│   │   │           ├── AndroidManifest.xml
│   │   │           └── java/
│   │   │               └── net/
│   │   │                   └── pantasystem/
│   │   │                       └── milktea/
│   │   │                           └── channel/
│   │   │                               ├── ChannelActivity.kt
│   │   │                               ├── ChannelCard.kt
│   │   │                               ├── ChannelDetailScreen.kt
│   │   │                               ├── ChannelDetailViewModel.kt
│   │   │                               ├── ChannelListStatePage.kt
│   │   │                               ├── ChannelScreen.kt
│   │   │                               ├── ChannelViewModel.kt
│   │   │                               └── di/
│   │   │                                   └── module/
│   │   │                                       └── NavigationModule.kt
│   │   ├── clip/
│   │   │   ├── .gitignore
│   │   │   ├── build.gradle
│   │   │   ├── consumer-rules.pro
│   │   │   ├── proguard-rules.pro
│   │   │   └── src/
│   │   │       └── main/
│   │   │           ├── AndroidManifest.xml
│   │   │           └── java/
│   │   │               └── net/
│   │   │                   └── pantasystem/
│   │   │                       └── milktea/
│   │   │                           └── clip/
│   │   │                               ├── ClipDetailActivity.kt
│   │   │                               ├── ClipListActivity.kt
│   │   │                               ├── ClipListScreen.kt
│   │   │                               ├── ClipListViewModel.kt
│   │   │                               ├── ClipTile.kt
│   │   │                               └── NavigationModule.kt
│   │   ├── drive/
│   │   │   ├── .gitignore
│   │   │   ├── build.gradle
│   │   │   ├── consumer-rules.pro
│   │   │   ├── proguard-rules.pro
│   │   │   └── src/
│   │   │       └── main/
│   │   │           ├── AndroidManifest.xml
│   │   │           ├── java/
│   │   │           │   └── net/
│   │   │           │       └── pantasystem/
│   │   │           │           └── milktea/
│   │   │           │               └── drive/
│   │   │           │                   ├── CreateFolderDialog.kt
│   │   │           │                   ├── DirectoryListScreen.kt
│   │   │           │                   ├── DriveActivity.kt
│   │   │           │                   ├── DriveFileCard.kt
│   │   │           │                   ├── DriveFileScreen.kt
│   │   │           │                   ├── DriveScreen.kt
│   │   │           │                   ├── FileActionDropdownMenu.kt
│   │   │           │                   ├── FilePropertyGridItem.kt
│   │   │           │                   ├── FileUtils.kt
│   │   │           │                   ├── di/
│   │   │           │                   │   └── module/
│   │   │           │                   │       └── NavigationModule.kt
│   │   │           │                   └── viewmodel/
│   │   │           │                       ├── DriveUiStateBuilder.kt
│   │   │           │                       ├── DriveViewModel.kt
│   │   │           │                       └── FileViewData.kt
│   │   │           └── res/
│   │   │               └── layout/
│   │   │                   └── dialog_create_folder.xml
│   │   ├── favorite/
│   │   │   ├── .gitignore
│   │   │   ├── build.gradle
│   │   │   ├── consumer-rules.pro
│   │   │   ├── proguard-rules.pro
│   │   │   └── src/
│   │   │       └── main/
│   │   │           ├── AndroidManifest.xml
│   │   │           ├── java/
│   │   │           │   └── net/
│   │   │           │       └── pantasystem/
│   │   │           │           └── milktea/
│   │   │           │               └── favorite/
│   │   │           │                   └── FavoriteActivity.kt
│   │   │           └── res/
│   │   │               └── layout/
│   │   │                   └── activity_favorite.xml
│   │   ├── gallery/
│   │   │   ├── .gitignore
│   │   │   ├── build.gradle
│   │   │   ├── consumer-rules.pro
│   │   │   ├── proguard-rules.pro
│   │   │   └── src/
│   │   │       └── main/
│   │   │           ├── AndroidManifest.xml
│   │   │           ├── java/
│   │   │           │   └── net/
│   │   │           │       └── pantasystem/
│   │   │           │           └── milktea/
│   │   │           │               └── gallery/
│   │   │           │                   ├── GalleryEditorFragment.kt
│   │   │           │                   ├── GalleryEditorPage.kt
│   │   │           │                   ├── GalleryPostCard.kt
│   │   │           │                   ├── GalleryPostCardList.kt
│   │   │           │                   ├── GalleryPostTabFragment.kt
│   │   │           │                   ├── GalleryPostsActivity.kt
│   │   │           │                   ├── GalleryPostsFragment.kt
│   │   │           │                   ├── PickedImagePreview.kt
│   │   │           │                   ├── ThumbnailPreview.kt
│   │   │           │                   └── viewmodel/
│   │   │           │                       ├── GalleryEditorViewModel.kt
│   │   │           │                       ├── GalleryFavoriteable.kt
│   │   │           │                       ├── GalleryPostActionViewModel.kt
│   │   │           │                       ├── GalleryPostUiState.kt
│   │   │           │                       └── GalleryPostsViewModel.kt
│   │   │           └── res/
│   │   │               ├── drawable/
│   │   │               │   └── ic_baseline_add_photo_alternate_24.xml
│   │   │               └── layout/
│   │   │                   ├── activity_gallery_posts.xml
│   │   │                   └── fragment_gallery_post_tab.xml
│   │   ├── group/
│   │   │   ├── .gitignore
│   │   │   ├── build.gradle
│   │   │   ├── consumer-rules.pro
│   │   │   ├── proguard-rules.pro
│   │   │   └── src/
│   │   │       └── main/
│   │   │           ├── AndroidManifest.xml
│   │   │           └── java/
│   │   │               └── net/
│   │   │                   └── pantasystem/
│   │   │                       └── milktea/
│   │   │                           └── group/
│   │   │                               ├── GroupActivity.kt
│   │   │                               ├── GroupCard.kt
│   │   │                               ├── GroupCardListPage.kt
│   │   │                               ├── GroupDetailPage.kt
│   │   │                               ├── GroupDetailStatePage.kt
│   │   │                               ├── GroupDetailUiStateBuilder.kt
│   │   │                               ├── GroupDetailViewModel.kt
│   │   │                               ├── GroupEditorDialog.kt
│   │   │                               ├── GroupListViewModel.kt
│   │   │                               └── GroupMemberCard.kt
│   │   ├── media/
│   │   │   ├── .gitignore
│   │   │   ├── build.gradle
│   │   │   ├── consumer-rules.pro
│   │   │   ├── proguard-rules.pro
│   │   │   └── src/
│   │   │       └── main/
│   │   │           ├── AndroidManifest.xml
│   │   │           ├── java/
│   │   │           │   └── net/
│   │   │           │       └── pantasystem/
│   │   │           │           └── milktea/
│   │   │           │               └── media/
│   │   │           │                   ├── File.kt
│   │   │           │                   ├── ImageFragment.kt
│   │   │           │                   ├── ImageViewModel.kt
│   │   │           │                   ├── MediaActivity.kt
│   │   │           │                   ├── MediaPagerAdapter.kt
│   │   │           │                   ├── MediaViewModel.kt
│   │   │           │                   ├── PhotoViewViewPager.kt
│   │   │           │                   ├── PlayerFragment.kt
│   │   │           │                   ├── RemoteFileDownloadWorkManager.kt
│   │   │           │                   ├── SwipeFinishLayout.kt
│   │   │           │                   └── di/
│   │   │           │                       └── module/
│   │   │           │                           └── NavigationModule.kt
│   │   │           └── res/
│   │   │               ├── drawable/
│   │   │               │   └── ic_file_download_black_24dp.xml
│   │   │               ├── layout/
│   │   │               │   ├── activity_media.xml
│   │   │               │   ├── fragment_image.xml
│   │   │               │   └── fragment_player.xml
│   │   │               └── menu/
│   │   │                   └── menu_media.xml
│   │   ├── messaging/
│   │   │   ├── .gitignore
│   │   │   ├── build.gradle
│   │   │   ├── consumer-rules.pro
│   │   │   ├── proguard-rules.pro
│   │   │   └── src/
│   │   │       └── main/
│   │   │           ├── AndroidManifest.xml
│   │   │           ├── java/
│   │   │           │   └── net/
│   │   │           │       └── pantasystem/
│   │   │           │           └── milktea/
│   │   │           │               └── messaging/
│   │   │           │                   ├── MessageActivity.kt
│   │   │           │                   ├── MessageBubble.kt
│   │   │           │                   ├── MessageFragment.kt
│   │   │           │                   ├── MessageHistoryCard.kt
│   │   │           │                   ├── MessageHistoryScreen.kt
│   │   │           │                   ├── MessageScreen.kt
│   │   │           │                   ├── MessagingHistoryFragment.kt
│   │   │           │                   ├── MessagingListActivity.kt
│   │   │           │                   ├── di/
│   │   │           │                   │   └── NavigationModule.kt
│   │   │           │                   └── viewmodel/
│   │   │           │                       ├── MessageEditorViewModel.kt
│   │   │           │                       ├── MessageHistoryViewModel.kt
│   │   │           │                       └── MessageViewModel.kt
│   │   │           └── res/
│   │   │               └── layout/
│   │   │                   ├── activity_message.xml
│   │   │                   ├── activity_messaging_list.xml
│   │   │                   └── fragment_messaging_history.xml
│   │   ├── note/
│   │   │   ├── .gitignore
│   │   │   ├── CustomEmojiCompleteAdapter.kt
│   │   │   ├── build.gradle
│   │   │   ├── consumer-rules.pro
│   │   │   ├── proguard-rules.pro
│   │   │   └── src/
│   │   │       ├── main/
│   │   │       │   ├── AndroidManifest.xml
│   │   │       │   ├── java/
│   │   │       │   │   └── net/
│   │   │       │   │       └── pantasystem/
│   │   │       │   │           └── milktea/
│   │   │       │   │               └── note/
│   │   │       │   │                   ├── DraftNotesActivity.kt
│   │   │       │   │                   ├── EmojiPickerUiState.kt
│   │   │       │   │                   ├── NoteDetailActivity.kt
│   │   │       │   │                   ├── NoteEditorActivity.kt
│   │   │       │   │                   ├── clip/
│   │   │       │   │                   │   ├── ToggleAddNoteToClipDialog.kt
│   │   │       │   │                   │   ├── ToggleAddNoteToClipDialogLayout.kt
│   │   │       │   │                   │   ├── ToggleAddNoteToClipDialogViewModel.kt
│   │   │       │   │                   │   └── ToggleAddNoteToClipTile.kt
│   │   │       │   │                   ├── compose/
│   │   │       │   │                   │   ├── AutoCollapsingLayout.kt
│   │   │       │   │                   │   ├── ComposeTimeline.kt
│   │   │       │   │                   │   └── NoteCard.kt
│   │   │       │   │                   ├── detail/
│   │   │       │   │                   │   ├── NoteChildConversationAdapter.kt
│   │   │       │   │                   │   ├── NoteDetailAccountSwitchDialog.kt
│   │   │       │   │                   │   ├── NoteDetailAdapter.kt
│   │   │       │   │                   │   ├── NoteDetailFragment.kt
│   │   │       │   │                   │   ├── NoteDetailPagerFragment.kt
│   │   │       │   │                   │   ├── pager/
│   │   │       │   │                   │   │   └── NoteDetailViewPagerAdapter.kt
│   │   │       │   │                   │   └── viewmodel/
│   │   │       │   │                   │       ├── NoteConversationViewData.kt
│   │   │       │   │                   │       ├── NoteDetailNotesFlowBuilder.kt
│   │   │       │   │                   │       ├── NoteDetailPagerViewModel.kt
│   │   │       │   │                   │       ├── NoteDetailViewData.kt
│   │   │       │   │                   │       └── NoteDetailViewModel.kt
│   │   │       │   │                   ├── dialog/
│   │   │       │   │                   │   ├── ConfirmDeleteAndEditNoteDialog.kt
│   │   │       │   │                   │   └── ConfirmDeleteNoteDialog.kt
│   │   │       │   │                   ├── draft/
│   │   │       │   │                   │   ├── DraftNoteCard.kt
│   │   │       │   │                   │   ├── DraftNotesFragment.kt
│   │   │       │   │                   │   ├── DraftNotesScreen.kt
│   │   │       │   │                   │   └── viewmodel/
│   │   │       │   │                   │       └── DraftNotesViewModel.kt
│   │   │       │   │                   ├── editor/
│   │   │       │   │                   │   ├── ConfirmSaveAsDraftDialog.kt
│   │   │       │   │                   │   ├── CustomEmojiCompleteAdapter.kt
│   │   │       │   │                   │   ├── EmojiAutoCompleteTextField.kt
│   │   │       │   │                   │   ├── NoteEditorAddressSection.kt
│   │   │       │   │                   │   ├── NoteEditorFileSizeWarningDialog.kt
│   │   │       │   │                   │   ├── NoteEditorReplyPreview.kt
│   │   │       │   │                   │   ├── NoteEditorScheduleSection.kt
│   │   │       │   │                   │   ├── NoteEditorScreen.kt
│   │   │       │   │                   │   ├── NoteEditorTextInputSection.kt
│   │   │       │   │                   │   ├── NoteEditorToolbar.kt
│   │   │       │   │                   │   ├── NoteEditorToolbarBinding.kt
│   │   │       │   │                   │   ├── NoteEditorUserActionMenuLayout.kt
│   │   │       │   │                   │   ├── NoteVisibilityIconHelper.kt
│   │   │       │   │                   │   ├── ReservationPostDatePickerDialog.kt
│   │   │       │   │                   │   ├── ReservationPostTimePickerDialog.kt
│   │   │       │   │                   │   ├── SimpleEditorFragment.kt
│   │   │       │   │                   │   ├── UriImageHelper.kt
│   │   │       │   │                   │   ├── account/
│   │   │       │   │                   │   │   └── NoteEditorSwitchAccountDialog.kt
│   │   │       │   │                   │   ├── file/
│   │   │       │   │                   │   │   ├── EditFileCaptionDialog.kt
│   │   │       │   │                   │   │   └── EditFileNameDialog.kt
│   │   │       │   │                   │   ├── note_file_preview.kt
│   │   │       │   │                   │   ├── poll/
│   │   │       │   │                   │   │   ├── PollDatePickerDialog.kt
│   │   │       │   │                   │   │   ├── PollEditorFragment.kt
│   │   │       │   │                   │   │   ├── PollEditorLayout.kt
│   │   │       │   │                   │   │   └── PollTimePickerDialog.kt
│   │   │       │   │                   │   ├── viewmodel/
│   │   │       │   │                   │   │   ├── NoteEditorFilePreviewSourcesMapper.kt
│   │   │       │   │                   │   │   ├── NoteEditorSavedHandlerHelper.kt
│   │   │       │   │                   │   │   ├── NoteEditorSwitchAccountExecutor.kt
│   │   │       │   │                   │   │   ├── NoteEditorUiState.kt
│   │   │       │   │                   │   │   ├── NoteEditorUiStateBuilder.kt
│   │   │       │   │                   │   │   ├── NoteEditorViewModel.kt
│   │   │       │   │                   │   │   └── NoteEditorVisibilityCombiner.kt
│   │   │       │   │                   │   └── visibility/
│   │   │       │   │                   │       ├── ReactionAcceptanceSelection.kt
│   │   │       │   │                   │       ├── VisibilityChannelSelection.kt
│   │   │       │   │                   │       ├── VisibilityDialogSectionTitles.kt
│   │   │       │   │                   │       ├── VisibilityResource.kt
│   │   │       │   │                   │       ├── VisibilitySelectionDialogV2.kt
│   │   │       │   │                   │       └── VisibilitySelectionTile.kt
│   │   │       │   │                   ├── emojis/
│   │   │       │   │                   │   ├── AddEmojiToUserConfigDialog.kt
│   │   │       │   │                   │   ├── CustomEmojiPickerDialog.kt
│   │   │       │   │                   │   ├── EmojiPickerFragment.kt
│   │   │       │   │                   │   └── viewmodel/
│   │   │       │   │                   │       ├── AddEmojiToUserConfigViewModel.kt
│   │   │       │   │                   │       ├── EmojiPickerViewModel.kt
│   │   │       │   │                   │       └── EmojiSelection.kt
│   │   │       │   │                   ├── media/
│   │   │       │   │                   │   ├── MediaPreviewHelper.kt
│   │   │       │   │                   │   └── viewmodel/
│   │   │       │   │                   │       ├── MediaViewData.kt
│   │   │       │   │                   │       └── PreviewAbleFile.kt
│   │   │       │   │                   ├── option/
│   │   │       │   │                   │   ├── NoteOptionDialog.kt
│   │   │       │   │                   │   ├── NoteOptionDialogLayout.kt
│   │   │       │   │                   │   └── NoteOptionViewModel.kt
│   │   │       │   │                   ├── pinned/
│   │   │       │   │                   │   ├── PinnedNoteFragment.kt
│   │   │       │   │                   │   └── PinnedNotesViewModel.kt
│   │   │       │   │                   ├── poll/
│   │   │       │   │                   │   ├── PollHelper.kt
│   │   │       │   │                   │   ├── PollListAdapter.kt
│   │   │       │   │                   │   └── PollListLinearLayoutBinder.kt
│   │   │       │   │                   ├── reaction/
│   │   │       │   │                   │   ├── CustomEmojiImageViewSizeHelper.kt
│   │   │       │   │                   │   ├── ImageAspectRatioCache.kt
│   │   │       │   │                   │   ├── NoteReactionViewHelper.kt
│   │   │       │   │                   │   ├── ReactionButtonHelper.kt
│   │   │       │   │                   │   ├── ReactionCountAdapter.kt
│   │   │       │   │                   │   ├── ReactionHelper.kt
│   │   │       │   │                   │   ├── ReactionSelectionDialog.kt
│   │   │       │   │                   │   ├── ReactionViewData.kt
│   │   │       │   │                   │   ├── RemoteReactionEmojiSuggestionDialog.kt
│   │   │       │   │                   │   ├── SaveImageAspectRequestListener.kt
│   │   │       │   │                   │   ├── choices/
│   │   │       │   │                   │   │   └── EmojiListItemsAdapter.kt
│   │   │       │   │                   │   ├── history/
│   │   │       │   │                   │   │   ├── ReactionHistoryListAdapter.kt
│   │   │       │   │                   │   │   ├── ReactionHistoryListFragment.kt
│   │   │       │   │                   │   │   ├── ReactionHistoryPagerAdapter.kt
│   │   │       │   │                   │   │   ├── ReactionHistoryPagerDialog.kt
│   │   │       │   │                   │   │   └── ReactionHistoryViewModel.kt
│   │   │       │   │                   │   ├── picker/
│   │   │       │   │                   │   │   ├── ReactionPickerDialog.kt
│   │   │       │   │                   │   │   └── ReactionPickerDialogViewModel.kt
│   │   │       │   │                   │   └── viewmodel/
│   │   │       │   │                   │       ├── ReactionHistoryPagerViewModel.kt
│   │   │       │   │                   │       └── RemoteReactionEmojiSuggestionViewModel.kt
│   │   │       │   │                   ├── renote/
│   │   │       │   │                   │   ├── RenoteBottomSheetDialog.kt
│   │   │       │   │                   │   ├── RenoteDialogLayout.kt
│   │   │       │   │                   │   ├── RenoteResultHandler.kt
│   │   │       │   │                   │   ├── RenoteTargetAccountList.kt
│   │   │       │   │                   │   ├── RenoteUiState.kt
│   │   │       │   │                   │   ├── RenoteUiStateBuilder.kt
│   │   │       │   │                   │   ├── RenoteUserItem.kt
│   │   │       │   │                   │   ├── RenoteUsers.kt
│   │   │       │   │                   │   ├── RenoteViewModel.kt
│   │   │       │   │                   │   ├── RenotesBottomSheetDialog.kt
│   │   │       │   │                   │   └── RenotesViewModel.kt
│   │   │       │   │                   ├── timeline/
│   │   │       │   │                   │   ├── NoteFontSizeBinder.kt
│   │   │       │   │                   │   ├── ReactionCountItemsInflater.kt
│   │   │       │   │                   │   ├── TimeMachineDialog.kt
│   │   │       │   │                   │   ├── TimelineErrorHandler.kt
│   │   │       │   │                   │   ├── TimelineFragment.kt
│   │   │       │   │                   │   ├── TimelineListAdapter.kt
│   │   │       │   │                   │   ├── TimelineListAdapterViewHolders.kt
│   │   │       │   │                   │   └── viewmodel/
│   │   │       │   │                   │       ├── NoteStreamingCollector.kt
│   │   │       │   │                   │       ├── TimeMachineDialogViewModel.kt
│   │   │       │   │                   │       ├── TimeMachineEventViewModel.kt
│   │   │       │   │                   │       ├── TimelineFilterService.kt
│   │   │       │   │                   │       ├── TimelineListItem.kt
│   │   │       │   │                   │       ├── TimelineViewModel.kt
│   │   │       │   │                   │       └── filter/
│   │   │       │   │                   │           ├── ExcludeIfExistsSensitiveMediaFilter.kt
│   │   │       │   │                   │           └── ExcludeRepostOrReplyFilter.kt
│   │   │       │   │                   ├── url/
│   │   │       │   │                   │   ├── OtherFileView.kt
│   │   │       │   │                   │   ├── UrlPreviewHelper.kt
│   │   │       │   │                   │   └── UrlPreviewView.kt
│   │   │       │   │                   ├── view/
│   │   │       │   │                   │   ├── ContentFoldingHelper.kt
│   │   │       │   │                   │   ├── CwAnimationHelper.kt
│   │   │       │   │                   │   ├── InstanceInfoHelper.kt
│   │   │       │   │                   │   ├── MastodonFavoriteButtonHelper.kt
│   │   │       │   │                   │   ├── NormalBottomSheetDialogSelectionLayout.kt
│   │   │       │   │                   │   ├── NoteActionHandler.kt
│   │   │       │   │                   │   ├── NoteAutoCollapsingLayoutHelper.kt
│   │   │       │   │                   │   ├── NoteBadgeRoleData.kt
│   │   │       │   │                   │   ├── NoteCardActionHandler.kt
│   │   │       │   │                   │   ├── NoteCardActionListenerAdapter.kt
│   │   │       │   │                   │   ├── NoteTransitionHelper.kt
│   │   │       │   │                   │   ├── NoteUserRoleBadgeBinder.kt
│   │   │       │   │                   │   ├── RenoteButtonHelper.kt
│   │   │       │   │                   │   ├── StatusMessageHelper.kt
│   │   │       │   │                   │   └── TranslationHelper.kt
│   │   │       │   │                   └── viewmodel/
│   │   │       │   │                       ├── CwTextGenerator.kt
│   │   │       │   │                       ├── HasReplyToNoteViewData.kt
│   │   │       │   │                       ├── NoteStatusMessageTextGenerator.kt
│   │   │       │   │                       ├── NoteViewData.kt
│   │   │       │   │                       ├── NotesViewModel.kt
│   │   │       │   │                       ├── PlaneNoteViewData.kt
│   │   │       │   │                       ├── PlaneNoteViewDataCache.kt
│   │   │       │   │                       └── Preview.kt
│   │   │       │   └── res/
│   │   │       │       ├── drawable/
│   │   │       │       │   ├── ic_baseline_timeline_24.xml
│   │   │       │       │   └── shape_media_message_background.xml
│   │   │       │       ├── layout/
│   │   │       │       │   ├── activity_draft_notes.xml
│   │   │       │       │   ├── activity_note_detail.xml
│   │   │       │       │   ├── dialog_custom_emoji_picker.xml
│   │   │       │       │   ├── dialog_reaction_history_pager.xml
│   │   │       │       │   ├── dialog_reaction_picker.xml
│   │   │       │       │   ├── dialog_remote_reaction_emoji_suggestion.xml
│   │   │       │       │   ├── dialog_select_reaction.xml
│   │   │       │       │   ├── dialog_time_machine.xml
│   │   │       │       │   ├── fragment_emoji_picker.xml
│   │   │       │       │   ├── fragment_note_detail.xml
│   │   │       │       │   ├── fragment_note_detail_pager.xml
│   │   │       │       │   ├── fragment_pinned_notes.xml
│   │   │       │       │   ├── fragment_reaction_history_list.xml
│   │   │       │       │   ├── fragment_simple_editor.xml
│   │   │       │       │   ├── fragment_timeline.xml
│   │   │       │       │   ├── item_category_with_list.xml
│   │   │       │       │   ├── item_choice.xml
│   │   │       │       │   ├── item_conversation.xml
│   │   │       │       │   ├── item_detail_note.xml
│   │   │       │       │   ├── item_emoji_choice.xml
│   │   │       │       │   ├── item_emoji_list_item_header.xml
│   │   │       │       │   ├── item_file_preview.xml
│   │   │       │       │   ├── item_has_reply_to_note.xml
│   │   │       │       │   ├── item_media_preview.xml
│   │   │       │       │   ├── item_note.xml
│   │   │       │       │   ├── item_note_editor_reply_to_note.xml
│   │   │       │       │   ├── item_reaction.xml
│   │   │       │       │   ├── item_reaction_history_header.xml
│   │   │       │       │   ├── item_reaction_history_loading.xml
│   │   │       │       │   ├── item_simple_note.xml
│   │   │       │       │   ├── item_simple_user.xml
│   │   │       │       │   ├── item_timeline_empty.xml
│   │   │       │       │   ├── item_timeline_error.xml
│   │   │       │       │   ├── item_timeline_loading.xml
│   │   │       │       │   ├── item_url_or_file_preview.xml
│   │   │       │       │   ├── item_url_preview.xml
│   │   │       │       │   ├── item_vote_result.xml
│   │   │       │       │   ├── view_other_file.xml
│   │   │       │       │   ├── view_translation.xml
│   │   │       │       │   └── view_url_preview.xml
│   │   │       │       ├── menu/
│   │   │       │       │   └── menu_timeline.xml
│   │   │       │       └── values/
│   │   │       │           └── dimens.xml
│   │   │       └── test/
│   │   │           └── java/
│   │   │               └── net/
│   │   │                   └── pantasystem/
│   │   │                       └── milktea/
│   │   │                           └── note/
│   │   │                               └── editor/
│   │   │                                   └── viewmodel/
│   │   │                                       └── NoteEditorUiStateTest.kt
│   │   ├── notification/
│   │   │   ├── .gitignore
│   │   │   ├── build.gradle
│   │   │   ├── consumer-rules.pro
│   │   │   ├── proguard-rules.pro
│   │   │   └── src/
│   │   │       └── main/
│   │   │           ├── AndroidManifest.xml
│   │   │           ├── java/
│   │   │           │   └── net/
│   │   │           │       └── pantasystem/
│   │   │           │           └── milktea/
│   │   │           │               └── notification/
│   │   │           │                   ├── NotificationErrorHandler.kt
│   │   │           │                   ├── NotificationFragment.kt
│   │   │           │                   ├── NotificationHelper.kt
│   │   │           │                   ├── NotificationListAdapter.kt
│   │   │           │                   ├── NotificationMentionFragment.kt
│   │   │           │                   ├── NotificationStatusIconHelper.kt
│   │   │           │                   ├── NotificationTabViewModel.kt
│   │   │           │                   ├── NotificationTitleHelper.kt
│   │   │           │                   ├── NotificationsActivity.kt
│   │   │           │                   ├── notification_message_helper.kt
│   │   │           │                   └── viewmodel/
│   │   │           │                       ├── NotificationViewData.kt
│   │   │           │                       └── NotificationViewModel.kt
│   │   │           └── res/
│   │   │               ├── layout/
│   │   │               │   ├── activity_notifications.xml
│   │   │               │   ├── fragment_notification.xml
│   │   │               │   ├── fragment_notification_mention.xml
│   │   │               │   ├── item_notification.xml
│   │   │               │   ├── item_notification_empty.xml
│   │   │               │   ├── item_notification_error.xml
│   │   │               │   └── item_notification_loading.xml
│   │   │               ├── menu/
│   │   │               │   └── notification_menu.xml
│   │   │               └── values/
│   │   │                   └── dimens.xml
│   │   ├── search/
│   │   │   ├── .gitignore
│   │   │   ├── build.gradle
│   │   │   ├── consumer-rules.pro
│   │   │   ├── proguard-rules.pro
│   │   │   └── src/
│   │   │       └── main/
│   │   │           ├── AndroidManifest.xml
│   │   │           ├── java/
│   │   │           │   └── net/
│   │   │           │       └── pantasystem/
│   │   │           │           └── milktea/
│   │   │           │               └── search/
│   │   │           │                   ├── SearchActivity.kt
│   │   │           │                   ├── SearchResultActivity.kt
│   │   │           │                   ├── SearchResultLayout.kt
│   │   │           │                   ├── SearchResultViewModel.kt
│   │   │           │                   ├── SearchResultViewPagerAdapter.kt
│   │   │           │                   ├── SearchTopFragment.kt
│   │   │           │                   ├── SearchTopTabsFactory.kt
│   │   │           │                   ├── SearchTopViewModel.kt
│   │   │           │                   ├── SearchViewModel.kt
│   │   │           │                   ├── explore/
│   │   │           │                   │   ├── ExploreFragment.kt
│   │   │           │                   │   └── ExploreViewModel.kt
│   │   │           │                   └── trend/
│   │   │           │                       ├── HashtagTrendItem.kt
│   │   │           │                       ├── TrendFragment.kt
│   │   │           │                       └── TrendViewModel.kt
│   │   │           └── res/
│   │   │               └── layout/
│   │   │                   ├── activity_search.xml
│   │   │                   ├── activity_search_result.xml
│   │   │                   └── fragment_search_top.xml
│   │   ├── setting/
│   │   │   ├── .gitignore
│   │   │   ├── build.gradle
│   │   │   ├── consumer-rules.pro
│   │   │   ├── proguard-rules.pro
│   │   │   └── src/
│   │   │       └── main/
│   │   │           ├── AndroidManifest.xml
│   │   │           ├── java/
│   │   │           │   └── net/
│   │   │           │       └── pantasystem/
│   │   │           │           └── milktea/
│   │   │           │               └── setting/
│   │   │           │                   ├── EditTabSettingDialog.kt
│   │   │           │                   ├── PageSettingActionDialog.kt
│   │   │           │                   ├── PageTypeNameMap.kt
│   │   │           │                   ├── SettingSection.kt
│   │   │           │                   ├── activities/
│   │   │           │                   │   ├── AboutMilkteaActivity.kt
│   │   │           │                   │   ├── AccountSettingActivity.kt
│   │   │           │                   │   ├── CacheSettingActivity.kt
│   │   │           │                   │   ├── ClientWordFilterSettingActivity.kt
│   │   │           │                   │   ├── DeveloperSettingActivity.kt
│   │   │           │                   │   ├── ImportReactionFromWebViewActivity.kt
│   │   │           │                   │   ├── PageSettingActivity.kt
│   │   │           │                   │   ├── ReactionSettingActivity.kt
│   │   │           │                   │   ├── RenoteMuteSettingActivity.kt
│   │   │           │                   │   ├── SecuritySettingActivity.kt
│   │   │           │                   │   ├── SettingAppearanceActivity.kt
│   │   │           │                   │   ├── SettingMovementActivity.kt
│   │   │           │                   │   └── SettingsActivity.kt
│   │   │           │                   ├── compose/
│   │   │           │                   │   ├── SettingRadioTile.kt
│   │   │           │                   │   ├── SettingSwitchTile.kt
│   │   │           │                   │   ├── SettingTIleLayoutBase.kt
│   │   │           │                   │   ├── SettingTitleTile.kt
│   │   │           │                   │   ├── account/
│   │   │           │                   │   │   └── AccountSettingScreen.kt
│   │   │           │                   │   ├── renote/
│   │   │           │                   │   │   └── mute/
│   │   │           │                   │   │       └── RenoteMuteSettingScreen.kt
│   │   │           │                   │   └── tab/
│   │   │           │                   │       ├── DragAndDropState.kt
│   │   │           │                   │       ├── TabItemSelectionDialog.kt
│   │   │           │                   │       ├── TabItemsList.kt
│   │   │           │                   │       └── TabItemsListScreen.kt
│   │   │           │                   └── viewmodel/
│   │   │           │                       ├── CacheSettingViewModel.kt
│   │   │           │                       ├── ImportReactionFromWebViewViewModel.kt
│   │   │           │                       ├── RenoteMuteSettingViewModel.kt
│   │   │           │                       ├── muteword/
│   │   │           │                       │   └── ClientWordFilterSettingViewModel.kt
│   │   │           │                       ├── page/
│   │   │           │                       │   ├── PageCandidateGenerator.kt
│   │   │           │                       │   ├── PageSettingAction.kt
│   │   │           │                       │   ├── PageSettingViewModel.kt
│   │   │           │                       │   └── SelectPageTypeToAdd.kt
│   │   │           │                       └── reaction/
│   │   │           │                           └── ReactionPickerSettingViewModel.kt
│   │   │           └── res/
│   │   │               └── layout/
│   │   │                   ├── activity_import_reaction_from_web_view.xml
│   │   │                   ├── activity_reaction_setting.xml
│   │   │                   ├── activity_settings.xml
│   │   │                   ├── dialog_edit_tab_name.xml
│   │   │                   ├── dialog_page_setting_action.xml
│   │   │                   └── settings_activity.xml
│   │   ├── user/
│   │   │   ├── .gitignore
│   │   │   ├── build.gradle
│   │   │   ├── consumer-rules.pro
│   │   │   ├── proguard-rules.pro
│   │   │   └── src/
│   │   │       └── main/
│   │   │           ├── AndroidManifest.xml
│   │   │           ├── java/
│   │   │           │   └── net/
│   │   │           │       └── pantasystem/
│   │   │           │           └── milktea/
│   │   │           │               └── user/
│   │   │           │                   ├── FollowButton.kt
│   │   │           │                   ├── ReportStateHandler.kt
│   │   │           │                   ├── UserCardListActionHandler.kt
│   │   │           │                   ├── compose/
│   │   │           │                   │   ├── SimpleUsers.kt
│   │   │           │                   │   ├── UserDetailCard.kt
│   │   │           │                   │   ├── UserDetailCardList.kt
│   │   │           │                   │   ├── UserDetailCardPageableList.kt
│   │   │           │                   │   └── screen/
│   │   │           │                   │       └── FollowFollowerScreen.kt
│   │   │           │                   ├── di/
│   │   │           │                   │   └── module/
│   │   │           │                   │       └── FollowRequestModule.kt
│   │   │           │                   ├── followlist/
│   │   │           │                   │   ├── FollowFollowerActivity.kt
│   │   │           │                   │   └── FollowFollowerViewModel.kt
│   │   │           │                   ├── followrequests/
│   │   │           │                   │   ├── FollowRequestItem.kt
│   │   │           │                   │   ├── FollowRequestsErrorHandler.kt
│   │   │           │                   │   ├── FollowRequestsFragment.kt
│   │   │           │                   │   ├── FollowRequestsScreen.kt
│   │   │           │                   │   └── FollowRequestsViewModel.kt
│   │   │           │                   ├── helper/
│   │   │           │                   │   └── HeaderImageHelper.kt
│   │   │           │                   ├── nickname/
│   │   │           │                   │   └── EditNicknameDialog.kt
│   │   │           │                   ├── profile/
│   │   │           │                   │   ├── ConfirmUserBlockDialog.kt
│   │   │           │                   │   ├── ProfileAccountSwitchDialog.kt
│   │   │           │                   │   ├── ProfileTabPagerAdapter.kt
│   │   │           │                   │   ├── UserDetailActivity.kt
│   │   │           │                   │   ├── UserDetailActivityMenuBinder.kt
│   │   │           │                   │   ├── UserDetailErrorHandler.kt
│   │   │           │                   │   ├── UserProfileFieldListAdapter.kt
│   │   │           │                   │   ├── mute/
│   │   │           │                   │   │   ├── MuteUserViewModel.kt
│   │   │           │                   │   │   ├── SpecifyMuteExpiredAtDialog.kt
│   │   │           │                   │   │   └── SpecifyMuteExpiredAtDialogContent.kt
│   │   │           │                   │   ├── view/
│   │   │           │                   │   │   └── ProfileBadgeRoles.kt
│   │   │           │                   │   └── viewmodel/
│   │   │           │                   │       ├── UserDetailTabType.kt
│   │   │           │                   │       ├── UserDetailViewModel.kt
│   │   │           │                   │       ├── UserIdResolver.kt
│   │   │           │                   │       └── UserProfileArgTypeCombiner.kt
│   │   │           │                   ├── qrshare/
│   │   │           │                   │   ├── QRCodeBitmapGenerator.kt
│   │   │           │                   │   └── QRShareDialog.kt
│   │   │           │                   ├── reaction/
│   │   │           │                   │   ├── UserReactionBindingModel.kt
│   │   │           │                   │   ├── UserReactionsFragment.kt
│   │   │           │                   │   ├── UserReactionsListAdapter.kt
│   │   │           │                   │   └── UserReactionsViewModel.kt
│   │   │           │                   ├── search/
│   │   │           │                   │   ├── SearchAndSelectUserActivity.kt
│   │   │           │                   │   ├── SearchAndSelectUserScreen.kt
│   │   │           │                   │   ├── SearchUserFragment.kt
│   │   │           │                   │   ├── SearchUserViewModel.kt
│   │   │           │                   │   └── SelectedUserViewModel.kt
│   │   │           │                   └── viewmodel/
│   │   │           │                       └── ToggleFollowViewModel.kt
│   │   │           └── res/
│   │   │               ├── drawable/
│   │   │               │   ├── ic_baseline_cake_24.xml
│   │   │               │   ├── ic_baseline_calendar_month_24.xml
│   │   │               │   └── shape_follower_state_background.xml
│   │   │               └── layout/
│   │   │                   ├── activity_user_detail.xml
│   │   │                   ├── dialog_edit_nickname.xml
│   │   │                   ├── fragment_user_reactions.xml
│   │   │                   ├── item_user_profile_field.xml
│   │   │                   └── item_user_reaction.xml
│   │   └── userlist/
│   │       ├── .gitignore
│   │       ├── build.gradle
│   │       ├── consumer-rules.pro
│   │       ├── proguard-rules.pro
│   │       └── src/
│   │           └── main/
│   │               ├── AndroidManifest.xml
│   │               ├── java/
│   │               │   └── net/
│   │               │       └── pantasystem/
│   │               │           └── milktea/
│   │               │               └── userlist/
│   │               │                   ├── ListListActivity.kt
│   │               │                   ├── UserListDetailActivity.kt
│   │               │                   ├── UserListEditorDialog.kt
│   │               │                   ├── compose/
│   │               │                   │   ├── RemovableSimpleUserCard.kt
│   │               │                   │   ├── RemovableSimpleUserCardList.kt
│   │               │                   │   ├── UserListCard.kt
│   │               │                   │   ├── UserListCardScreen.kt
│   │               │                   │   └── UserListDetailScreen.kt
│   │               │                   └── viewmodel/
│   │               │                       ├── ListListViewModel.kt
│   │               │                       └── UserListDetailViewModel.kt
│   │               └── res/
│   │                   └── layout/
│   │                       └── dialog_user_list_editor.xml
│   ├── model/
│   │   ├── .gitignore
│   │   ├── build.gradle
│   │   ├── consumer-rules.pro
│   │   ├── proguard-rules.pro
│   │   └── src/
│   │       ├── main/
│   │       │   ├── AndroidManifest.xml
│   │       │   └── java/
│   │       │       └── net/
│   │       │           └── pantasystem/
│   │       │               └── milktea/
│   │       │                   └── model/
│   │       │                       ├── AddResult.kt
│   │       │                       ├── Entity.kt
│   │       │                       ├── UseCase.kt
│   │       │                       ├── account/
│   │       │                       │   ├── Account.kt
│   │       │                       │   ├── AccountExceptions.kt
│   │       │                       │   ├── AccountRepository.kt
│   │       │                       │   ├── Auth.kt
│   │       │                       │   ├── ClientId.kt
│   │       │                       │   ├── ClientIdRepository.kt
│   │       │                       │   ├── CurrentAccountWatcher.kt
│   │       │                       │   ├── MakeDefaultPagesUseCase.kt
│   │       │                       │   ├── SignOutUseCase.kt
│   │       │                       │   ├── SyncAccountInfoUseCase.kt
│   │       │                       │   ├── UnauthorizedException.kt
│   │       │                       │   └── page/
│   │       │                       │       ├── Page.kt
│   │       │                       │       ├── PageParams.kt
│   │       │                       │       ├── PageType.kt
│   │       │                       │       ├── Pageable.kt
│   │       │                       │       ├── PageableTemplate.kt
│   │       │                       │       └── Pagenate.kt
│   │       │                       ├── antenna/
│   │       │                       │   ├── AccountService.kt
│   │       │                       │   ├── Antenna.kt
│   │       │                       │   ├── AntennaRepository.kt
│   │       │                       │   ├── AntennaToggleAddToTabUseCase.kt
│   │       │                       │   └── SaveAntennaParam.kt
│   │       │                       ├── ap/
│   │       │                       │   ├── ApResolver.kt
│   │       │                       │   ├── ApResolverRepository.kt
│   │       │                       │   └── ApResolverService.kt
│   │       │                       ├── app/
│   │       │                       │   └── AppType.kt
│   │       │                       ├── channel/
│   │       │                       │   ├── Channel.kt
│   │       │                       │   ├── ChannelRepository.kt
│   │       │                       │   ├── ChannelStateModel.kt
│   │       │                       │   ├── CreateChannel.kt
│   │       │                       │   └── UpdateChannel.kt
│   │       │                       ├── clip/
│   │       │                       │   ├── Clip.kt
│   │       │                       │   ├── ClipRepository.kt
│   │       │                       │   ├── CreateClip.kt
│   │       │                       │   └── ToggleClipAddToTabUseCase.kt
│   │       │                       ├── drive/
│   │       │                       │   ├── CreateDirectory.kt
│   │       │                       │   ├── Directory.kt
│   │       │                       │   ├── DriveDirectoryRepository.kt
│   │       │                       │   ├── DriveFileRepository.kt
│   │       │                       │   ├── FileProperty.kt
│   │       │                       │   ├── FilePropertyDataSource.kt
│   │       │                       │   └── UpdateFileProperty.kt
│   │       │                       ├── emoji/
│   │       │                       │   ├── AddEmojiToUserConfigUseCase.kt
│   │       │                       │   ├── CustomEmoji.kt
│   │       │                       │   ├── CustomEmojiAspectRatioDataSource.kt
│   │       │                       │   ├── CustomEmojiAspectRatioStore.kt
│   │       │                       │   ├── CustomEmojiRepository.kt
│   │       │                       │   ├── EmojiEventHandler.kt
│   │       │                       │   ├── EmojiImageCacheStore.kt
│   │       │                       │   ├── SaveCustomEmojiImageUseCase.kt
│   │       │                       │   ├── SimpleCustomEmojiParser.kt
│   │       │                       │   ├── UserEmojiConfig.kt
│   │       │                       │   └── UserEmojiConfigRepository.kt
│   │       │                       ├── file/
│   │       │                       │   ├── AppFile.kt
│   │       │                       │   ├── CopyFileToAppDirRepository.kt
│   │       │                       │   ├── CopyFileToAppDirUseCase.kt
│   │       │                       │   ├── FileUploadFailedException.kt
│   │       │                       │   ├── UpdateAppFileSensitiveUseCase.kt
│   │       │                       │   └── UriToAppFileUseCase.kt
│   │       │                       ├── filter/
│   │       │                       │   ├── ClientWordFilterService.kt
│   │       │                       │   ├── FilterPatternCache.kt
│   │       │                       │   ├── GetMatchContextFilters.kt
│   │       │                       │   ├── MastodonFilterService.kt
│   │       │                       │   ├── MastodonWordFilter.kt
│   │       │                       │   ├── MastodonWordFilterRepository.kt
│   │       │                       │   └── WordFilterService.kt
│   │       │                       ├── gallery/
│   │       │                       │   ├── CreateGalleryPost.kt
│   │       │                       │   ├── GalleryDataSource.kt
│   │       │                       │   ├── GalleryNotFoundException.kt
│   │       │                       │   ├── GalleryPost.kt
│   │       │                       │   ├── GalleryRepository.kt
│   │       │                       │   └── UpdateGalleryPost.kt
│   │       │                       ├── group/
│   │       │                       │   ├── AcceptGroupInvitationUseCase.kt
│   │       │                       │   ├── CreateGroup.kt
│   │       │                       │   ├── Group.kt
│   │       │                       │   ├── GroupDataSource.kt
│   │       │                       │   ├── GroupNotFoundException.kt
│   │       │                       │   ├── GroupRepository.kt
│   │       │                       │   ├── InvitationId.kt
│   │       │                       │   ├── Invite.kt
│   │       │                       │   ├── Pull.kt
│   │       │                       │   ├── RejectGroupInvitationUseCase.kt
│   │       │                       │   ├── Transfer.kt
│   │       │                       │   └── UpdateGroup.kt
│   │       │                       ├── hashtag/
│   │       │                       │   ├── HashTag.kt
│   │       │                       │   └── HashtagRepository.kt
│   │       │                       ├── image/
│   │       │                       │   ├── ImageCache.kt
│   │       │                       │   └── ImageCacheRepository.kt
│   │       │                       ├── instance/
│   │       │                       │   ├── FeatureEnables.kt
│   │       │                       │   ├── HostWithVersion.kt
│   │       │                       │   ├── IllegalVersionException.kt
│   │       │                       │   ├── InstanceInfo.kt
│   │       │                       │   ├── InstanceInfoService.kt
│   │       │                       │   ├── InstanceInfoType.kt
│   │       │                       │   ├── MastodonInstanceInfo.kt
│   │       │                       │   ├── MastodonInstanceInfoRepository.kt
│   │       │                       │   ├── Meta.kt
│   │       │                       │   ├── MetaDataSource.kt
│   │       │                       │   ├── MetaRepository.kt
│   │       │                       │   ├── SyncMetaExecutor.kt
│   │       │                       │   ├── Version.kt
│   │       │                       │   ├── online/
│   │       │                       │   │   └── user/
│   │       │                       │   │       └── count/
│   │       │                       │   │           └── OnlineUserCountRepository.kt
│   │       │                       │   └── ticker/
│   │       │                       │       ├── InstanceTicker.kt
│   │       │                       │       └── InstanceTickerRepository.kt
│   │       │                       ├── list/
│   │       │                       │   ├── UserList.kt
│   │       │                       │   ├── UserListRepository.kt
│   │       │                       │   └── UserListTabToggleAddToTabUseCase.kt
│   │       │                       ├── markers/
│   │       │                       │   └── MarkerRepository.kt
│   │       │                       ├── messaging/
│   │       │                       │   ├── Message.kt
│   │       │                       │   ├── MessageNotFoundException.kt
│   │       │                       │   ├── MessageObserver.kt
│   │       │                       │   ├── MessageRelationGetter.kt
│   │       │                       │   ├── MessageRepository.kt
│   │       │                       │   ├── MessagingId.kt
│   │       │                       │   ├── MessagingRepository.kt
│   │       │                       │   └── UnReadMessages.kt
│   │       │                       ├── nodeinfo/
│   │       │                       │   ├── NodeInfo.kt
│   │       │                       │   └── NodeInfoRepository.kt
│   │       │                       ├── note/
│   │       │                       │   ├── CreateNote.kt
│   │       │                       │   ├── CreateNoteUseCase.kt
│   │       │                       │   ├── DeleteAndEditUseCase.kt
│   │       │                       │   ├── DeleteNoteUseCase.kt
│   │       │                       │   ├── FindPinnedNoteUseCase.kt
│   │       │                       │   ├── GetAllMentionUsersUseCase.kt
│   │       │                       │   ├── GetShareNoteUrlUseCase.kt
│   │       │                       │   ├── Note.kt
│   │       │                       │   ├── NoteCaptureAPIAdapter.kt
│   │       │                       │   ├── NoteDataSource.kt
│   │       │                       │   ├── NoteDeletedException.kt
│   │       │                       │   ├── NoteEditingState.kt
│   │       │                       │   ├── NoteNotFoundException.kt
│   │       │                       │   ├── NoteRelationGetter.kt
│   │       │                       │   ├── NoteRepository.kt
│   │       │                       │   ├── NoteResult.kt
│   │       │                       │   ├── NoteService.kt
│   │       │                       │   ├── NoteState.kt
│   │       │                       │   ├── NoteStreaming.kt
│   │       │                       │   ├── NoteThreadContext.kt
│   │       │                       │   ├── ReactionAcceptanceType.kt
│   │       │                       │   ├── ReplyStreaming.kt
│   │       │                       │   ├── TimelineScrollPositionRepository.kt
│   │       │                       │   ├── Translation.kt
│   │       │                       │   ├── Visibility.kt
│   │       │                       │   ├── bookmark/
│   │       │                       │   │   ├── BookmarkRepository.kt
│   │       │                       │   │   ├── CreateBookmarkUseCase.kt
│   │       │                       │   │   └── DeleteBookmarkUseCase.kt
│   │       │                       │   ├── draft/
│   │       │                       │   │   ├── DraftNote.kt
│   │       │                       │   │   ├── DraftNoteRepository.kt
│   │       │                       │   │   ├── DraftNoteService.kt
│   │       │                       │   │   └── DraftPoll.kt
│   │       │                       │   ├── favorite/
│   │       │                       │   │   ├── CreateFavoriteUseCase.kt
│   │       │                       │   │   ├── DeleteFavoriteUseCase.kt
│   │       │                       │   │   ├── FavoriteRepository.kt
│   │       │                       │   │   └── ToggleFavoriteUseCase.kt
│   │       │                       │   ├── muteword/
│   │       │                       │   │   ├── FilterConditionType.kt
│   │       │                       │   │   ├── WordFilterConfig.kt
│   │       │                       │   │   ├── WordFilterConfigRepository.kt
│   │       │                       │   │   └── WordFilterConfigTextParser.kt
│   │       │                       │   ├── poll/
│   │       │                       │   │   ├── CreatePoll.kt
│   │       │                       │   │   ├── Poll.kt
│   │       │                       │   │   └── VoteUseCase.kt
│   │       │                       │   ├── reaction/
│   │       │                       │   │   ├── CreateReaction.kt
│   │       │                       │   │   ├── DeleteReaction.kt
│   │       │                       │   │   ├── DeleteReactionsUseCase.kt
│   │       │                       │   │   ├── LegacyReaction.kt
│   │       │                       │   │   ├── Reaction.kt
│   │       │                       │   │   ├── ReactionCount.kt
│   │       │                       │   │   ├── ReactionHistoryRequest.kt
│   │       │                       │   │   ├── ReactionRepository.kt
│   │       │                       │   │   ├── ReactionSelection.kt
│   │       │                       │   │   ├── ReactionUserRepository.kt
│   │       │                       │   │   ├── ToggleReactionUseCase.kt
│   │       │                       │   │   └── history/
│   │       │                       │   │       ├── ReactionHistory.kt
│   │       │                       │   │       ├── ReactionHistoryCount.kt
│   │       │                       │   │       └── ReactionHistoryRepository.kt
│   │       │                       │   ├── repost/
│   │       │                       │   │   ├── CheckCanRepostService.kt
│   │       │                       │   │   ├── CreateRenote.kt
│   │       │                       │   │   ├── CreateRenoteMultipleAccountUseCase.kt
│   │       │                       │   │   ├── QuoteRenoteData.kt
│   │       │                       │   │   ├── Renotes.kt
│   │       │                       │   │   └── RenotesPagingService.kt
│   │       │                       │   ├── reservation/
│   │       │                       │   │   └── NoteReservationPostExecutor.kt
│   │       │                       │   └── timeline/
│   │       │                       │       ├── SyncTimelineFromLatestToCurrentUseCase.kt
│   │       │                       │       ├── SyncTimelineUseCase.kt
│   │       │                       │       ├── TimelineItem.kt
│   │       │                       │       ├── TimelineRepository.kt
│   │       │                       │       └── favorite/
│   │       │                       │           └── FavoriteTimelineRepository.kt
│   │       │                       ├── notification/
│   │       │                       │   ├── Notification.kt
│   │       │                       │   ├── NotificationDataSource.kt
│   │       │                       │   ├── NotificationNotFoundException.kt
│   │       │                       │   ├── NotificationPagingStore.kt
│   │       │                       │   ├── NotificationRelation.kt
│   │       │                       │   ├── NotificationRelationGetter.kt
│   │       │                       │   ├── NotificationRepository.kt
│   │       │                       │   ├── NotificationStreaming.kt
│   │       │                       │   ├── NotificationTimelineRepository.kt
│   │       │                       │   └── PushNotification.kt
│   │       │                       ├── search/
│   │       │                       │   ├── SearchHistory.kt
│   │       │                       │   └── SearchHistoryRepository.kt
│   │       │                       ├── setting/
│   │       │                       │   ├── ColorSettingStore.kt
│   │       │                       │   ├── Config.kt
│   │       │                       │   ├── Keys.kt
│   │       │                       │   ├── LocalConfigRepository.kt
│   │       │                       │   ├── NoteExpandedHeightSize.kt
│   │       │                       │   ├── PrefType.kt
│   │       │                       │   ├── Theme.kt
│   │       │                       │   └── WebClientBaseCache.kt
│   │       │                       ├── sw/
│   │       │                       │   └── register/
│   │       │                       │       ├── DeviceTokenRepository.kt
│   │       │                       │       ├── SubscriptionRegistration.kt
│   │       │                       │       ├── SubscriptionState.kt
│   │       │                       │       └── SubscriptionUnRegistration.kt
│   │       │                       ├── task_executor.kt
│   │       │                       ├── url/
│   │       │                       │   ├── UrlPreview.kt
│   │       │                       │   ├── UrlPreviewLoadTask.kt
│   │       │                       │   └── UrlPreviewStore.kt
│   │       │                       └── user/
│   │       │                           ├── Acct.kt
│   │       │                           ├── FollowRequestRepository.kt
│   │       │                           ├── ToggleFollowUseCase.kt
│   │       │                           ├── ToggleUserTimelineAddTabUseCase.kt
│   │       │                           ├── User.kt
│   │       │                           ├── UserDataSource.kt
│   │       │                           ├── UserNotFoundException.kt
│   │       │                           ├── UserRepository.kt
│   │       │                           ├── block/
│   │       │                           │   ├── BlockRepository.kt
│   │       │                           │   ├── BlockUserUseCase.kt
│   │       │                           │   └── UnBlockUserUseCase.kt
│   │       │                           ├── follow/
│   │       │                           │   ├── FollowRepository.kt
│   │       │                           │   ├── FollowUpdateParams.kt
│   │       │                           │   ├── ToggleNotifyUserPostsUseCase.kt
│   │       │                           │   └── requests/
│   │       │                           │       ├── AcceptFollowRequestUseCase.kt
│   │       │                           │       ├── FollowRequestPagingStore.kt
│   │       │                           │       └── RejectFollowRequestUseCase.kt
│   │       │                           ├── mute/
│   │       │                           │   ├── CreateMute.kt
│   │       │                           │   ├── MuteRepository.kt
│   │       │                           │   ├── MuteUserUseCase.kt
│   │       │                           │   └── UnMuteUserUseCase.kt
│   │       │                           ├── nickname/
│   │       │                           │   ├── DeleteNicknameUseCase.kt
│   │       │                           │   ├── UpdateNickname.kt
│   │       │                           │   ├── UserNickname.kt
│   │       │                           │   ├── UserNicknameNotFoundException.kt
│   │       │                           │   └── UserNicknameRepository.kt
│   │       │                           ├── query/
│   │       │                           │   └── FindUsersQuery.kt
│   │       │                           ├── reaction/
│   │       │                           │   └── UserReaction.kt
│   │       │                           ├── renote/
│   │       │                           │   └── mute/
│   │       │                           │       ├── RenoteMute.kt
│   │       │                           │       └── RenoteMuteRepository.kt
│   │       │                           └── report/
│   │       │                               ├── Report.kt
│   │       │                               ├── ReportRepository.kt
│   │       │                               ├── ReportState.kt
│   │       │                               └── SendReportUseCase.kt
│   │       └── test/
│   │           ├── java/
│   │           │   └── net/
│   │           │       └── pantasystem/
│   │           │           └── milktea/
│   │           │               └── model/
│   │           │                   ├── account/
│   │           │                   │   ├── AccountTest.kt
│   │           │                   │   ├── SyncAccountInfoUseCaseTest.kt
│   │           │                   │   └── page/
│   │           │                   │       ├── PageTypeTest.kt
│   │           │                   │       └── PageableTest.kt
│   │           │                   ├── filter/
│   │           │                   │   ├── ClientWordFilterServiceTest.kt
│   │           │                   │   ├── GetMatchContextFiltersTest.kt
│   │           │                   │   └── MastodonWordFilterTest.kt
│   │           │                   ├── instance/
│   │           │                   │   └── MetaTest.kt
│   │           │                   ├── nodeinfo/
│   │           │                   │   └── NodeInfoTest.kt
│   │           │                   ├── note/
│   │           │                   │   ├── NoteTest.kt
│   │           │                   │   ├── NoteTestUtil.kt
│   │           │                   │   ├── muteword/
│   │           │                   │   │   ├── WordFilterConfigTest.kt
│   │           │                   │   │   └── WordFilterConfigTextParserTest.kt
│   │           │                   │   └── reaction/
│   │           │                   │       ├── ReactionTest.kt
│   │           │                   │       └── ToggleReactionUseCaseTest.kt
│   │           │                   └── user/
│   │           │                       └── AcctTest.kt
│   │           └── resources/
│   │               ├── v10_meta_case1.json
│   │               └── v12_meta_case1.json
│   └── worker/
│       ├── .gitignore
│       ├── build.gradle
│       ├── consumer-rules.pro
│       ├── proguard-rules.pro
│       └── src/
│           └── main/
│               ├── AndroidManifest.xml
│               └── java/
│                   └── net/
│                       └── pantasystem/
│                           └── milktea/
│                               └── worker/
│                                   ├── SyncAccountInfoWorker.kt
│                                   ├── SyncNodeInfoCacheWorker.kt
│                                   ├── WorkerIdsModel.kt
│                                   ├── WorkerTags.kt
│                                   ├── di/
│                                   │   └── module/
│                                   │       └── ExecutorModule.kt
│                                   ├── drive/
│                                   │   └── CleanupUnusedCacheWorker.kt
│                                   ├── emoji/
│                                   │   └── cache/
│                                   │       └── CacheCustomEmojiImageWorker.kt
│                                   ├── filter/
│                                   │   └── SyncMastodonFilterWorker.kt
│                                   ├── meta/
│                                   │   ├── SpecifiedSyncMetaWorker.kt
│                                   │   └── SyncMetaWorker.kt
│                                   ├── note/
│                                   │   ├── BackgroundSyncTimelineWorker.kt
│                                   │   ├── CreateNoteWorker.kt
│                                   │   ├── CreateNoteWorkerExecutor.kt
│                                   │   └── SyncTimelineWorker.kt
│                                   ├── sw/
│                                   │   ├── RegisterAllSubscriptionRegistration.kt
│                                   │   └── SubscriptionRegistrationWorker.kt
│                                   └── user/
│                                       ├── SyncLoggedInUserInfoWorker.kt
│                                       └── renote/
│                                           └── mute/
│                                               └── SyncRenoteMutesWorker.kt
├── privacy_policy_ch.md
├── privacy_policy_en.md
├── privacy_policy_ja.md
├── pull_request_template.md
├── push-to-fcm/
│   ├── .air.toml
│   ├── .gitignore
│   ├── Dockerfile
│   ├── docker-compose.yml
│   ├── go.mod
│   ├── go.sum
│   ├── main.go
│   └── pkg/
│       ├── api/
│       │   ├── mastodon/
│       │   │   ├── account.go
│       │   │   ├── emoji.go
│       │   │   ├── notification.go
│       │   │   ├── notification_subscription.go
│       │   │   ├── report.go
│       │   │   └── status.go
│       │   ├── misskey/
│       │   │   ├── account.go
│       │   │   ├── account_test.go
│       │   │   ├── drive_file.go
│       │   │   ├── note.go
│       │   │   ├── notification.go
│       │   │   └── sw_subscription.go
│       │   ├── module.go
│       │   └── well_known/
│       │       ├── nodeinfo.go
│       │       ├── nodeinfo_test.go
│       │       ├── well_known.go
│       │       └── well_known_test.go
│       ├── config/
│       │   └── config.go
│       ├── dao/
│       │   ├── client_account.go
│       │   ├── module.go
│       │   └── push_subscription.go
│       ├── entity/
│       │   ├── client_account.go
│       │   └── push_subscription.go
│       ├── handler/
│       │   ├── client_account.go
│       │   ├── middleware/
│       │   │   └── client_account_auth.go
│       │   └── subscription.go
│       ├── repository/
│       │   ├── client_account.go
│       │   ├── module.go
│       │   └── push_notification.go
│       ├── root/
│       │   ├── impl/
│       │   │   └── module.go
│       │   └── module.go
│       ├── service/
│       │   ├── client_account.go
│       │   ├── module.go
│       │   ├── push_notification.go
│       │   └── push_notification_test.go
│       └── util/
│           ├── webpush_decrypter.go
│           └── webpush_decrypter_test.go
├── server/
│   ├── Dockerfile
│   ├── Dockerfile.production
│   ├── api/
│   │   ├── .air.toml
│   │   ├── .gitignore
│   │   ├── cli/
│   │   │   └── create_admin_account/
│   │   │       └── main.go
│   │   ├── config/
│   │   │   └── .gitignore
│   │   ├── go.mod
│   │   ├── go.sum
│   │   ├── main.go
│   │   └── pkg/
│   │       ├── config/
│   │       │   └── config.go
│   │       ├── dao/
│   │       │   ├── account_dao.go
│   │       │   ├── dao.go
│   │       │   ├── instance_dao.go
│   │       │   └── meta_dao.go
│   │       ├── domain/
│   │       │   ├── account.go
│   │       │   ├── instance.go
│   │       │   ├── instance_info.go
│   │       │   ├── meta.go
│   │       │   ├── token.go
│   │       │   ├── webpush_decrypter.go
│   │       │   └── webpush_decrypter_test.go
│   │       ├── handler/
│   │       │   ├── admin/
│   │       │   │   ├── account.go
│   │       │   │   ├── admin_auth_middleware.go
│   │       │   │   └── admin_instance.go
│   │       │   ├── instances.go
│   │       │   └── push_to_fcm.go
│   │       └── repository/
│   │           ├── account_repository.go
│   │           ├── instance_repository.go
│   │           └── meta_repository.go
│   ├── client/
│   │   ├── .gitignore
│   │   ├── README.md
│   │   ├── package.json
│   │   ├── public/
│   │   │   ├── index.html
│   │   │   ├── manifest.json
│   │   │   └── robots.txt
│   │   ├── src/
│   │   │   ├── App.test.tsx
│   │   │   ├── App.tsx
│   │   │   ├── data/
│   │   │   │   └── instances.ts
│   │   │   ├── index.css
│   │   │   ├── index.tsx
│   │   │   ├── layout/
│   │   │   │   ├── app-bar-layout.tsx
│   │   │   │   ├── app-layout.tsx
│   │   │   │   ├── body-layout.tsx
│   │   │   │   ├── scroll-layout.tsx
│   │   │   │   └── side-menu-item-layout.tsx
│   │   │   ├── models/
│   │   │   │   ├── account.tsx
│   │   │   │   ├── date-schema.tsx
│   │   │   │   ├── instance-info.tsx
│   │   │   │   ├── instance.tsx
│   │   │   │   └── token.tsx
│   │   │   ├── pages/
│   │   │   │   └── admin/
│   │   │   │       ├── admin-root-page.tsx
│   │   │   │       ├── all-instances.tsx
│   │   │   │       ├── approved-instances-page.tsx
│   │   │   │       ├── components/
│   │   │   │       │   ├── instances-state-page.tsx
│   │   │   │       │   └── instances-table.tsx
│   │   │   │       ├── instance-client-max-body-size-form.tsx
│   │   │   │       ├── instance-detail-page.tsx
│   │   │   │       ├── instance-register-page.tsx
│   │   │   │       ├── instances-page.tsx
│   │   │   │       ├── login.tsx
│   │   │   │       └── unapproved-instances-page.tsx
│   │   │   ├── react-app-env.d.ts
│   │   │   ├── reportWebVitals.ts
│   │   │   ├── repositories/
│   │   │   │   ├── index.ts
│   │   │   │   ├── instance-repository.ts
│   │   │   │   └── token-repository.ts
│   │   │   ├── setupTests.ts
│   │   │   └── state/
│   │   │       └── auth.tsx
│   │   ├── tailwind.config.js
│   │   └── tsconfig.json
│   ├── docker/
│   │   ├── client/
│   │   │   ├── Dockerfile
│   │   │   └── Dockerfile.production
│   │   ├── nginx/
│   │   │   └── config/
│   │   │       └── default.conf
│   │   └── production/
│   │       └── nginx/
│   │           └── config/
│   │               └── default.conf
│   ├── docker-compose.production.yaml
│   └── docker-compose.yaml
├── settings.gradle
├── terms_of_service_ch.md
├── terms_of_service_en.md
└── terms_of_service_jp.md
Download .txt
SYMBOL INDEX (286 symbols across 83 files)

FILE: PushToFCM/index.js
  constant AUTH_SECRET (line 10) | const AUTH_SECRET = fs.readFileSync('./key/auth_secret.txt', 'utf8');
  constant PUBLIC_KEY (line 11) | const PUBLIC_KEY = fs.readFileSync('./key/public_key.txt', 'utf8');
  constant PRIVATE_KEY (line 12) | const PRIVATE_KEY = fs.readFileSync('./key/private_key.txt', 'utf8');

FILE: PushToFCM/notification_builder.js
  function buildTitle (line 15) | function buildTitle(res, notification) {
  function getShortMessageFromNote (line 30) | function getShortMessageFromNote(note) {
  function buildBody (line 42) | function buildBody(_, notification) {
  class MessagingNotification (line 68) | class MessagingNotification {
    method constructor (line 69) | constructor(type, title, body) {
  function getDisplayUserName (line 85) | function getDisplayUserName(user) {

FILE: PushToFCM/webPushDecipher.js
  function decodeBase64 (line 17) | function decodeBase64(src) {
  function sha256 (line 21) | function sha256(key, data) {
  function log (line 25) | function log(verbose, label, text) {
  function decryptContent (line 70) | function decryptContent(content, receiverKey, salt, keyid ,verbose) {

FILE: push-to-fcm/main.go
  function main (line 16) | func main() {

FILE: push-to-fcm/pkg/api/mastodon/account.go
  type AccountClient (line 11) | type AccountClient struct
    method VerifyCredentials (line 16) | func (r *AccountClient) VerifyCredentials(ctx context.Context) (*Accou...
  type Account (line 41) | type Account struct

FILE: push-to-fcm/pkg/api/mastodon/emoji.go
  type TootEmojiDTO (line 3) | type TootEmojiDTO struct

FILE: push-to-fcm/pkg/api/mastodon/notification.go
  type MstNotificationDTO (line 7) | type MstNotificationDTO struct
  type NotificationType (line 17) | type NotificationType
  constant Mention (line 20) | Mention         NotificationType = "mention"
  constant Status (line 21) | Status          NotificationType = "status"
  constant Reblog (line 22) | Reblog          NotificationType = "reblog"
  constant Follow (line 23) | Follow          NotificationType = "follow"
  constant FollowRequest (line 24) | FollowRequest   NotificationType = "follow_request"
  constant Favourite (line 25) | Favourite       NotificationType = "favourite"
  constant Poll (line 26) | Poll            NotificationType = "poll"
  constant Update (line 27) | Update          NotificationType = "update"
  constant AdminSignUp (line 28) | AdminSignUp     NotificationType = "admin.sign_up"
  constant AdminReport (line 29) | AdminReport     NotificationType = "admin.report"
  constant EmojiReactionNT (line 30) | EmojiReactionNT NotificationType = "emoji_reaction"
  type EmojiReaction (line 33) | type EmojiReaction struct

FILE: push-to-fcm/pkg/api/mastodon/notification_subscription.go
  type NotificationSubscriptionClient (line 12) | type NotificationSubscriptionClient struct
    method Subscribe (line 17) | func (r *NotificationSubscriptionClient) Subscribe(ctx context.Context...
  type PushSubscription (line 56) | type PushSubscription struct
  type PushSubscriptionRequest (line 74) | type PushSubscriptionRequest struct
  type Subscrption (line 79) | type Subscrption struct
  type Keys (line 84) | type Keys struct
  type Data (line 89) | type Data struct
  type Alerts (line 94) | type Alerts struct

FILE: push-to-fcm/pkg/api/mastodon/report.go
  type MstReportDTO (line 5) | type MstReportDTO struct

FILE: push-to-fcm/pkg/api/mastodon/status.go
  type TootStatusDTO (line 5) | type TootStatusDTO struct
  type EmojiReactionCount (line 37) | type EmojiReactionCount struct
  type TootPollDTO (line 47) | type TootPollDTO struct
  type Option (line 64) | type Option struct
  type TootMediaAttachment (line 69) | type TootMediaAttachment struct

FILE: push-to-fcm/pkg/api/misskey/account.go
  type AccountClient (line 11) | type AccountClient struct
    method FindSelf (line 16) | func (r *AccountClient) FindSelf(ctx context.Context) (*Account, error) {
  type Account (line 51) | type Account struct
  type FindSelfRequest (line 57) | type FindSelfRequest struct

FILE: push-to-fcm/pkg/api/misskey/account_test.go
  function TestFindSelf (line 13) | func TestFindSelf(t *testing.T) {

FILE: push-to-fcm/pkg/api/misskey/drive_file.go
  type DriveFile (line 5) | type DriveFile struct

FILE: push-to-fcm/pkg/api/misskey/note.go
  type NoteDTO (line 5) | type NoteDTO struct
  type ChannelInfo (line 38) | type ChannelInfo struct
  type NoteVisibilityType (line 43) | type NoteVisibilityType
  constant Public (line 46) | Public    NoteVisibilityType = "public"
  constant Home (line 47) | Home      NoteVisibilityType = "home"
  constant Followers (line 48) | Followers NoteVisibilityType = "followers"
  constant Specified (line 49) | Specified NoteVisibilityType = "specified"
  type ReactionAcceptanceType (line 52) | type ReactionAcceptanceType
  constant LikeOnly (line 55) | LikeOnly ReactionAcceptanceType = iota
  constant LikeOnly4Remote (line 56) | LikeOnly4Remote
  type EmojisType (line 59) | type EmojisType struct
  type Emoji (line 66) | type Emoji struct
  type PollDTO (line 72) | type PollDTO struct
  type ChoiceDTO (line 78) | type ChoiceDTO struct

FILE: push-to-fcm/pkg/api/misskey/notification.go
  type NotificationDTO (line 5) | type NotificationDTO struct

FILE: push-to-fcm/pkg/api/misskey/sw_subscription.go
  type State (line 13) | type State
  constant StateAlreadySubscribed (line 16) | StateAlreadySubscribed State = "already-subscribed"
  constant StateSubscribed (line 17) | StateSubscribed        State = "subscribed"
  type SWSubscription (line 20) | type SWSubscription struct
    method Subscribe (line 47) | func (r *SWSubscription) Subscribe(ctx context.Context, req SubscribeR...
    method Unsubscribe (line 87) | func (r *SWSubscription) Unsubscribe(ctx context.Context, endpoint str...
  type SubscribeRequest (line 25) | type SubscribeRequest struct
  type InternalSubscribeRequest (line 31) | type InternalSubscribeRequest struct
  type InternalUnSubRequest (line 38) | type InternalUnSubRequest struct
  type SubscribeResponse (line 42) | type SubscribeResponse struct

FILE: push-to-fcm/pkg/api/well_known/nodeinfo.go
  type NodeInfo (line 3) | type NodeInfo struct
    method IsMastodon (line 52) | func (r *NodeInfo) IsMastodon() bool {
    method IsMisskey (line 57) | func (r *NodeInfo) IsMisskey() bool {
  type Software (line 14) | type Software struct
  type Usage (line 19) | type Usage struct
  type UserUsage (line 26) | type UserUsage struct
  type UserCount (line 33) | type UserCount struct
  type LocalUsage (line 38) | type LocalUsage struct
  type TotalUsage (line 44) | type TotalUsage struct
  type NodeInfoMeta (line 48) | type NodeInfoMeta struct

FILE: push-to-fcm/pkg/api/well_known/nodeinfo_test.go
  function TestNodeInfo_GiveMisskeyPantasystemCom (line 12) | func TestNodeInfo_GiveMisskeyPantasystemCom(t *testing.T) {
  function TestNodeInfo_GiveFedibirdCom (line 45) | func TestNodeInfo_GiveFedibirdCom(t *testing.T) {
  function TestNodeInfo_GiveMastodonSocial (line 88) | func TestNodeInfo_GiveMastodonSocial(t *testing.T) {
  function TestNodeInfo_GiveCalckey (line 126) | func TestNodeInfo_GiveCalckey(t *testing.T) {
  function TestNodeInfo_GiveMeisskey (line 159) | func TestNodeInfo_GiveMeisskey(t *testing.T) {

FILE: push-to-fcm/pkg/api/well_known/well_known.go
  type WellKnown (line 9) | type WellKnown struct
    method FindNodeInfo (line 13) | func (r *WellKnown) FindNodeInfo() (*NodeInfo, error) {

FILE: push-to-fcm/pkg/api/well_known/well_known_test.go
  function TestFindNodeInfo (line 9) | func TestFindNodeInfo(t *testing.T) {

FILE: push-to-fcm/pkg/config/config.go
  type Config (line 8) | type Config struct
    method LoadFromEnv (line 14) | func (c *Config) LoadFromEnv() error {

FILE: push-to-fcm/pkg/dao/client_account.go
  type ClientAccountRepositoryImpl (line 11) | type ClientAccountRepositoryImpl struct
    method Create (line 15) | func (r *ClientAccountRepositoryImpl) Create(ctx context.Context, enti...
    method FindByToken (line 23) | func (r *ClientAccountRepositoryImpl) FindByToken(ctx context.Context,...
    method Delete (line 32) | func (r *ClientAccountRepositoryImpl) Delete(ctx context.Context, id u...
    method FindById (line 40) | func (r *ClientAccountRepositoryImpl) FindById(ctx context.Context, id...
    method Update (line 49) | func (r *ClientAccountRepositoryImpl) Update(ctx context.Context, e *e...

FILE: push-to-fcm/pkg/dao/module.go
  type RepositoryModuleImpl (line 8) | type RepositoryModuleImpl struct
    method GetClientAccountRepository (line 12) | func (r *RepositoryModuleImpl) GetClientAccountRepository() repository...
    method GetPushNotificationRepository (line 18) | func (r *RepositoryModuleImpl) GetPushNotificationRepository() reposit...

FILE: push-to-fcm/pkg/dao/push_subscription.go
  type PushSubscriptionRepositoryImpl (line 13) | type PushSubscriptionRepositoryImpl struct
    method Create (line 17) | func (r *PushSubscriptionRepositoryImpl) Create(ctx context.Context, e...
    method FindBy (line 26) | func (r *PushSubscriptionRepositoryImpl) FindBy(ctx context.Context, q...
    method Delete (line 38) | func (r *PushSubscriptionRepositoryImpl) Delete(ctx context.Context, i...
    method FindOne (line 46) | func (r *PushSubscriptionRepositoryImpl) FindOne(ctx context.Context, ...

FILE: push-to-fcm/pkg/entity/client_account.go
  type ClientAccount (line 12) | type ClientAccount struct
    method BeforeCreate (line 21) | func (r *ClientAccount) BeforeCreate(tx *gorm.DB) error {
  function getSHA256Binary (line 38) | func getSHA256Binary(s string) []byte {

FILE: push-to-fcm/pkg/entity/push_subscription.go
  type PushSubscription (line 10) | type PushSubscription struct
    method BeforeCreate (line 31) | func (r *PushSubscription) BeforeCreate(tx *gorm.DB) error {
  type ProviderType (line 24) | type ProviderType
  constant ProviderTypeMisskey (line 27) | ProviderTypeMisskey  ProviderType = "misskey"
  constant ProviderTypeMastodon (line 28) | ProviderTypeMastodon ProviderType = "mastodon"

FILE: push-to-fcm/pkg/handler/client_account.go
  type ClientAccountHandler (line 11) | type ClientAccountHandler struct
    method RegisterHandlers (line 16) | func (r *ClientAccountHandler) RegisterHandlers(gin *gin.Engine) {
    method GetOrRegisterClientAccount (line 24) | func (r *ClientAccountHandler) GetOrRegisterClientAccount() gin.Handle...
    method UpdateClientAccount (line 40) | func (r *ClientAccountHandler) UpdateClientAccount() gin.HandlerFunc {
  type GetOrRegisterClientAccountRes (line 77) | type GetOrRegisterClientAccountRes struct
  type UpdateClientAccountReq (line 82) | type UpdateClientAccountReq struct

FILE: push-to-fcm/pkg/handler/middleware/client_account_auth.go
  constant CLIENT_ACCOUNT_ID (line 12) | CLIENT_ACCOUNT_ID = "client_account_id"
  constant CLIENT_ACCOUNT (line 13) | CLIENT_ACCOUNT    = "client_account"
  constant IS_AUTHENTICATED (line 14) | IS_AUTHENTICATED  = "is_authenticated"
  type ClientAccountAuthMiddleware (line 17) | type ClientAccountAuthMiddleware struct
    method GetTokenWithAccount (line 21) | func (r *ClientAccountAuthMiddleware) GetTokenWithAccount() gin.Handle...
    method CheckToken (line 44) | func (r *ClientAccountAuthMiddleware) CheckToken() gin.HandlerFunc {
  function GetToken (line 66) | func GetToken(c *gin.Context) *string {

FILE: push-to-fcm/pkg/handler/subscription.go
  type SubscriptionHandler (line 18) | type SubscriptionHandler struct
    method RegisterHandlers (line 23) | func (r *SubscriptionHandler) RegisterHandlers(gin *gin.Engine) {
    method Subscribe (line 32) | func (r *SubscriptionHandler) Subscribe() gin.HandlerFunc {
    method Unsubscribe (line 71) | func (r *SubscriptionHandler) Unsubscribe() gin.HandlerFunc {
    method OnRecieveNotification (line 76) | func (r *SubscriptionHandler) OnRecieveNotification() gin.HandlerFunc {
  type SubscribeRequest (line 124) | type SubscribeRequest struct

FILE: push-to-fcm/pkg/repository/client_account.go
  type ClientAccountRepository (line 10) | type ClientAccountRepository interface

FILE: push-to-fcm/pkg/repository/module.go
  type Module (line 3) | type Module interface

FILE: push-to-fcm/pkg/repository/push_notification.go
  type PushNotificationRepository (line 10) | type PushNotificationRepository interface
  type FindByQuery (line 17) | type FindByQuery struct

FILE: push-to-fcm/pkg/root/impl/module.go
  type RootModuleImpl (line 12) | type RootModuleImpl struct
    method GetRepositoryModule (line 24) | func (r *RootModuleImpl) GetRepositoryModule() repository.Module {
    method GetServiceModule (line 31) | func (r *RootModuleImpl) GetServiceModule() service.Module {
  function NewModule (line 17) | func NewModule(db *gorm.DB, config *config.Config) root.Module {

FILE: push-to-fcm/pkg/root/module.go
  type Module (line 8) | type Module interface

FILE: push-to-fcm/pkg/service/client_account.go
  type ClientAccountService (line 12) | type ClientAccountService struct
    method GetOrRegisterClientAccount (line 16) | func (r *ClientAccountService) GetOrRegisterClientAccount(ctx context....

FILE: push-to-fcm/pkg/service/module.go
  type Module (line 8) | type Module struct
    method GetClientAccountService (line 13) | func (r *Module) GetClientAccountService() *ClientAccountService {
    method GetPushNotificationService (line 19) | func (r *Module) GetPushNotificationService() *PushNotificationService {

FILE: push-to-fcm/pkg/service/push_notification.go
  type PushNotificationService (line 21) | type PushNotificationService struct
    method Subscribe (line 27) | func (s *PushNotificationService) Subscribe(ctx context.Context, clien...
    method GenerateKey (line 113) | func (s *PushNotificationService) GenerateKey() (*Keys, error) {
    method rollback (line 139) | func (s *PushNotificationService) rollback(ctx context.Context, sub *e...
  type Keys (line 143) | type Keys struct
  type SubscribeArgs (line 149) | type SubscribeArgs struct

FILE: push-to-fcm/pkg/service/push_notification_test.go
  function TestPushNotificationService_GenerateKey (line 11) | func TestPushNotificationService_GenerateKey(t *testing.T) {

FILE: push-to-fcm/pkg/util/webpush_decrypter.go
  type Decrypter (line 17) | type Decrypter struct
    method Decrypt (line 71) | func (r Decrypter) Decrypt(base64Body string) (*string, error) {
    method GetKeyId (line 149) | func (r Decrypter) GetKeyId(body []byte, idlen int64) []byte {
    method GetIdlen (line 153) | func (r Decrypter) GetIdlen(body []byte) (int64, error) {
    method GenerateSharedKey (line 157) | func (r Decrypter) GenerateSharedKey(keyId []byte) ([]byte, error) {
  function Sha256 (line 23) | func Sha256(key []byte, data []byte) []byte {
  function DecodeBase64 (line 29) | func DecodeBase64(src string) ([]byte, error) {
  function NewDecrypter (line 47) | func NewDecrypter(authSecret string, receiverPublic string, receiverPriv...

FILE: push-to-fcm/pkg/util/webpush_decrypter_test.go
  function TestSha256 (line 25) | func TestSha256(t *testing.T) {
  function TestDecodeBase64 (line 31) | func TestDecodeBase64(t *testing.T) {
  function TestDecodeBase642 (line 37) | func TestDecodeBase642(t *testing.T) {
  function TestDecrypt (line 57) | func TestDecrypt(t *testing.T) {
  function TestGenerateSharedSecret2 (line 81) | func TestGenerateSharedSecret2(t *testing.T) {
  function TestHex (line 107) | func TestHex(t *testing.T) {
  function TestIdlen (line 116) | func TestIdlen(t *testing.T) {
  function TestGetKeyId (line 135) | func TestGetKeyId(t *testing.T) {
  function TestByteConvert (line 153) | func TestByteConvert(t *testing.T) {

FILE: server/api/cli/create_admin_account/main.go
  function main (line 10) | func main() {

FILE: server/api/main.go
  function main (line 15) | func main() {

FILE: server/api/pkg/config/config.go
  type Config (line 8) | type Config struct
  function LoadConfig (line 14) | func LoadConfig() (*Config, error) {

FILE: server/api/pkg/dao/account_dao.go
  type AdAccountDAO (line 11) | type AdAccountDAO struct
    method FindByEmail (line 15) | func (r AdAccountDAO) FindByEmail(email string) (*domain.AdAccount, er...
    method Create (line 26) | func (r AdAccountDAO) Create(account *domain.AdAccount) (*domain.AdAcc...
    method Delete (line 33) | func (r AdAccountDAO) Delete(id uuid.UUID) error {
    method FindOne (line 40) | func (r AdAccountDAO) FindOne(id uuid.UUID) (*domain.AdAccount, error) {
    method FindByToken (line 48) | func (r AdAccountDAO) FindByToken(token string) (*domain.AdAccount, er...
    method CreateToken (line 56) | func (r AdAccountDAO) CreateToken(accountId uuid.UUID, ipAddress strin...
    method RemoveToken (line 67) | func (r AdAccountDAO) RemoveToken(token domain.Token) error {
  function NewAccountDAO (line 72) | func NewAccountDAO(db gorm.DB) repository.AdAccountRepository {

FILE: server/api/pkg/dao/dao.go
  type Dao (line 10) | type Dao struct
    method NewInstanceRepository (line 29) | func (r *Dao) NewInstanceRepository() repository.InstanceRepository {
    method NewMetaRepository (line 33) | func (r *Dao) NewMetaRepository() repository.MetaRepository {
    method NewAdAccountRepository (line 37) | func (r *Dao) NewAdAccountRepository() repository.AdAccountRepository {
  function Init (line 14) | func Init() Dao {

FILE: server/api/pkg/dao/instance_dao.go
  type InstanceDao (line 12) | type InstanceDao struct
    method Approve (line 25) | func (r InstanceDao) Approve(instance domain.Instance) (*domain.Instan...
    method Request (line 42) | func (r InstanceDao) Request(instance domain.Instance) (*domain.Instan...
    method FindByPublishedInstances (line 57) | func (r InstanceDao) FindByPublishedInstances() ([]domain.InstanceInfo...
    method FindById (line 74) | func (r InstanceDao) FindById(instanceId uuid.UUID) (*domain.Instance,...
    method Create (line 82) | func (r InstanceDao) Create(instance domain.Instance) (*domain.Instanc...
    method FindByHost (line 90) | func (r InstanceDao) FindByHost(host string) (*domain.Instance, error) {
    method FindAll (line 98) | func (r InstanceDao) FindAll() ([]*domain.Instance, error) {
    method Update (line 106) | func (r InstanceDao) Update(instance domain.Instance) error {
    method FindInstanceInfoByHost (line 119) | func (r InstanceDao) FindInstanceInfoByHost(host string, published boo...
  function NewInstanceRepository (line 135) | func NewInstanceRepository(db gorm.DB) repository.InstanceRepository {

FILE: server/api/pkg/dao/meta_dao.go
  type MetaDao (line 14) | type MetaDao struct
    method Sync (line 18) | func (r MetaDao) Sync(host string) (*domain.Meta, error) {
    method FindByHost (line 54) | func (r MetaDao) FindByHost(host string) (*domain.Meta, error) {
    method Save (line 63) | func (r MetaDao) Save(meta domain.Meta) (*domain.Meta, error) {
  function NewMetaDao (line 78) | func NewMetaDao(db gorm.DB) repository.MetaRepository {
  type MisskeyMeta (line 84) | type MisskeyMeta struct

FILE: server/api/pkg/domain/account.go
  type AdAccount (line 11) | type AdAccount struct
    method BeforeCreate (line 20) | func (r *AdAccount) BeforeCreate(tx *gorm.DB) (err error) {
    method SetPassword (line 30) | func (r *AdAccount) SetPassword(password string) bool {
    method CheckPassword (line 39) | func (r *AdAccount) CheckPassword(password string) error {
    method GetToken (line 43) | func (r *AdAccount) GetToken(token string) *Token {

FILE: server/api/pkg/domain/instance.go
  type Instance (line 10) | type Instance struct
    method Approve (line 20) | func (r *Instance) Approve() {
    method BeforeCreate (line 25) | func (r *Instance) BeforeCreate(tx *gorm.DB) (err error) {

FILE: server/api/pkg/domain/instance_info.go
  type InstanceInfo (line 3) | type InstanceInfo struct

FILE: server/api/pkg/domain/meta.go
  type Meta (line 3) | type Meta struct

FILE: server/api/pkg/domain/token.go
  type Token (line 10) | type Token struct
    method BeforeCreate (line 20) | func (t *Token) BeforeCreate(tx *gorm.DB) (err error) {

FILE: server/api/pkg/domain/webpush_decrypter.go
  type Decrypter (line 17) | type Decrypter struct
    method Decrypt (line 70) | func (r Decrypter) Decrypt(base64Body string) (*string, error) {
    method GetKeyId (line 148) | func (r Decrypter) GetKeyId(body []byte, idlen int64) []byte {
    method GetIdlen (line 152) | func (r Decrypter) GetIdlen(body []byte) (int64, error) {
    method GenerateSharedKey (line 156) | func (r Decrypter) GenerateSharedKey(keyId []byte) ([]byte, error) {
  function Sha256 (line 23) | func Sha256(key []byte, data []byte) []byte {
  function DecodeBase64 (line 29) | func DecodeBase64(src string) ([]byte, error) {
  function NewDecrypter (line 46) | func NewDecrypter(authSecret string, receiverPublic string, receiverPriv...

FILE: server/api/pkg/domain/webpush_decrypter_test.go
  function TestSha256 (line 25) | func TestSha256(t *testing.T) {
  function TestDecodeBase64 (line 31) | func TestDecodeBase64(t *testing.T) {
  function TestDecodeBase642 (line 37) | func TestDecodeBase642(t *testing.T) {
  function TestDecrypt (line 57) | func TestDecrypt(t *testing.T) {
  function TestGenerateSharedSecret2 (line 81) | func TestGenerateSharedSecret2(t *testing.T) {
  function TestHex (line 106) | func TestHex(t *testing.T) {
  function TestIdlen (line 115) | func TestIdlen(t *testing.T) {
  function TestGetKeyId (line 133) | func TestGetKeyId(t *testing.T) {
  function TestByteConvert (line 151) | func TestByteConvert(t *testing.T) {

FILE: server/api/pkg/handler/admin/account.go
  type AccountHandler (line 10) | type AccountHandler struct
    method Setup (line 23) | func (r AccountHandler) Setup(engine *gin.Engine) {
  type LoginRequest (line 14) | type LoginRequest struct
  type UpdateClientMaxBodySizeRequest (line 19) | type UpdateClientMaxBodySizeRequest struct

FILE: server/api/pkg/handler/admin/admin_auth_middleware.go
  type DefaultAuthMiddleware (line 12) | type DefaultAuthMiddleware struct
    method CheckToken (line 16) | func (r *DefaultAuthMiddleware) CheckToken() gin.HandlerFunc {
  function GetToken (line 36) | func GetToken(c *gin.Context) *string {
  function GetCurrentUser (line 50) | func GetCurrentUser(dao *dao.Dao, c *gin.Context) (*domain.AdAccount, er...

FILE: server/api/pkg/handler/admin/admin_instance.go
  type AdminInstanceHandler (line 13) | type AdminInstanceHandler struct
    method Setup (line 22) | func (r *AdminInstanceHandler) Setup(engine *gin.Engine) {
    method GetInstance (line 151) | func (r AdminInstanceHandler) GetInstance(c *gin.Context, instanceId u...
  type CreateInstanceRequest (line 17) | type CreateInstanceRequest struct

FILE: server/api/pkg/handler/instances.go
  type InstanceHandler (line 13) | type InstanceHandler struct
    method Setup (line 29) | func (r InstanceHandler) Setup(e *gin.Engine) {
  type CreateInstanceRequest (line 17) | type CreateInstanceRequest struct
  type MisskeyMeta (line 21) | type MisskeyMeta struct

FILE: server/api/pkg/handler/push_to_fcm.go
  type PushToFCMHandler (line 13) | type PushToFCMHandler struct
    method Setup (line 18) | func (r PushToFCMHandler) Setup(e *gin.Engine) {

FILE: server/api/pkg/repository/account_repository.go
  type AdAccountRepository (line 8) | type AdAccountRepository interface

FILE: server/api/pkg/repository/instance_repository.go
  type InstanceRepository (line 8) | type InstanceRepository interface

FILE: server/api/pkg/repository/meta_repository.go
  type MetaRepository (line 7) | type MetaRepository interface

FILE: server/client/src/App.tsx
  function App (line 64) | function App() {

FILE: server/client/src/data/instances.ts
  type FilterType (line 4) | type FilterType = "all" | "approved" | "unapproved";

FILE: server/client/src/layout/app-bar-layout.tsx
  type Props (line 3) | type Props = {

FILE: server/client/src/layout/app-layout.tsx
  type AppLayoutProps (line 4) | type AppLayoutProps = {

FILE: server/client/src/layout/body-layout.tsx
  type Props (line 4) | type Props = {

FILE: server/client/src/layout/scroll-layout.tsx
  type Props (line 3) | type Props = {

FILE: server/client/src/layout/side-menu-item-layout.tsx
  type Props (line 4) | type Props = {

FILE: server/client/src/models/account.tsx
  type Account (line 10) | type Account = z.infer<typeof AccountSchema>;

FILE: server/client/src/models/instance-info.tsx
  type InstanceInfo (line 12) | type InstanceInfo = z.infer<typeof InstanceInfoSchema>;

FILE: server/client/src/models/instance.tsx
  type Instance (line 14) | type Instance = z.infer<typeof InstanceSchema>;

FILE: server/client/src/models/token.tsx
  type Token (line 12) | type Token = z.infer<typeof TokenSchema>;

FILE: server/client/src/pages/admin/admin-root-page.tsx
  type AdminRootPageLayoutProps (line 36) | type AdminRootPageLayoutProps = {

FILE: server/client/src/pages/admin/components/instances-state-page.tsx
  type Props (line 9) | type Props = {

FILE: server/client/src/pages/admin/components/instances-table.tsx
  type OnPublishButtonClicked (line 6) | type OnPublishButtonClicked = (instance: Instance) => void;
  type InstancesTableProps (line 7) | type InstancesTableProps = {

FILE: server/client/src/pages/admin/instance-client-max-body-size-form.tsx
  type Props (line 6) | type Props = {
  type Inputs (line 10) | type Inputs = {

FILE: server/client/src/pages/admin/instance-detail-page.tsx
  type InstanceDetailContentProps (line 11) | type InstanceDetailContentProps = {

FILE: server/client/src/pages/admin/instance-register-page.tsx
  type Inputs (line 8) | type Inputs = {

FILE: server/client/src/pages/admin/login.tsx
  type Inputs (line 11) | type Inputs = {

FILE: server/client/src/repositories/instance-repository.ts
  class InstanceRepository (line 6) | class InstanceRepository {

FILE: server/client/src/repositories/token-repository.ts
  class TokenRepository (line 1) | class TokenRepository {
    method getToken (line 2) | getToken(): string | null {
    method setToken (line 6) | setToken(token: string | null) {

FILE: server/client/src/state/auth.tsx
  type AuthState (line 4) | type AuthState = "Loading" | "Unauthorized" | "Authorized";
Copy disabled (too large) Download .json
Condensed preview — 2173 files, each showing path, character count, and a content snippet. Download the .json file for the full structured content (17,317K chars).
[
  {
    "path": ".github/ISSUE_TEMPLATE/-------.md",
    "chars": 106,
    "preview": "---\nname: 質問&サポート\nabout: わからないことや質問\ntitle: ''\nlabels: ''\nassignees: ''\n\n---\n\n## 困っていること\n\n## 画面名、機能名など(任意)\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/-----.md",
    "chars": 269,
    "preview": "---\nname: 不具合報告\nabout: Create a report to help us improve\ntitle: ''\nlabels: ''\nassignees: ''\n\n---\n\n## 不具合の概要\n\n## 再現方法\n**"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/bug_report.md",
    "chars": 274,
    "preview": "---\nname: Bug report\nabout: Create a report to help us improve\ntitle: ''\nlabels: ''\nassignees: ''\n\n---\n\n## 不具合の概要\n\n## 再現"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/feature_request.md",
    "chars": 595,
    "preview": "---\nname: Feature request\nabout: Suggest an idea for this project\ntitle: ''\nlabels: ''\nassignees: ''\n\n---\n\n**Is your fea"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/other.md",
    "chars": 110,
    "preview": "---\nname: Other\nabout: Describe this issue template's purpose here.\ntitle: ''\nlabels: ''\nassignees: ''\n\n---\n\n\n"
  },
  {
    "path": ".github/dependabot.yml",
    "chars": 505,
    "preview": "# To get started with Dependabot version updates, you'll need to specify which\n# package ecosystems to update and where "
  },
  {
    "path": ".github/workflows/android-unit-test.yml",
    "chars": 1305,
    "preview": "name: Android Unit Test\non:\n  push:\n    branches:\n      - master\n      - develop\n  pull_request:\n    branches:\n      - m"
  },
  {
    "path": ".github/workflows/release.yml",
    "chars": 2545,
    "preview": "name: Release Android to Google Play Store\non:\n  push:\n    branches-ignore:\n      - '**'\n    tags:\n      - 'v*'\n\njobs:\n "
  },
  {
    "path": ".github/workflows/release2github.yml",
    "chars": 2176,
    "preview": "name: Release Android to Github Releases\non:\n  push:\n    branches-ignore:\n      - '**'\n    tags:\n      - 'v*'\n\njobs:\n  b"
  },
  {
    "path": ".gitignore",
    "chars": 1910,
    "preview": "# Built application files\r\n*.apk\r\n*.ap_\r\n*.aab\r\n\r\n# Files for the ART/Dalvik VM\r\n*.dex\r\n\r\n# Java class files\r\n*.class\r\n\r"
  },
  {
    "path": ".idea/.gitignore",
    "chars": 120,
    "preview": "runConfigurations.xml\ndeploymentTargetDropDown.xml\n!.gitignore\nandroidTestResultsUserPreferences.xml\n/inspectionProfiles"
  },
  {
    "path": ".idea/AndroidProjectSystem.xml",
    "chars": 212,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project version=\"4\">\n  <component name=\"AndroidProjectSystem\">\n    <option name="
  },
  {
    "path": ".idea/GitLink.xml",
    "chars": 272,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project version=\"4\">\n  <component name=\"uk.co.ben_gibson.git.link.SettingsState\""
  },
  {
    "path": ".idea/deploymentTargetSelector.xml",
    "chars": 1068,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project version=\"4\">\n  <component name=\"deploymentTargetSelector\">\n    <selectio"
  },
  {
    "path": ".idea/deviceManager.xml",
    "chars": 351,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project version=\"4\">\n  <component name=\"DeviceTable\">\n    <option name=\"columnSo"
  },
  {
    "path": ".idea/encodings.xml",
    "chars": 138,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n<project version=\"4\">\r\n  <component name=\"Encoding\" addBOMForNewFiles=\"with NO B"
  },
  {
    "path": ".idea/jarRepositories.xml",
    "chars": 1690,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n<project version=\"4\">\r\n  <component name=\"RemoteRepositoriesConfiguration\">\r\n   "
  },
  {
    "path": ".idea/kotlinc.xml",
    "chars": 175,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project version=\"4\">\n  <component name=\"KotlinJpsPluginSettings\">\n    <option na"
  },
  {
    "path": ".idea/markdown.xml",
    "chars": 307,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project version=\"4\">\n  <component name=\"MarkdownSettings\">\n    <option name=\"pre"
  },
  {
    "path": "CLAUDE.md",
    "chars": 8892,
    "preview": "# Milktea Android SDK 対応チェックリスト\n\nこのファイルはAndroid最新SDK対応の進捗管理用です。\n作業完了したタスクは `- [ ]` を `- [x]` に変えてください。\n\n---\n\n## Phase 1:"
  },
  {
    "path": "CONTRIBUTING.md",
    "chars": 4169,
    "preview": "# Contribution Guide\nMilkteaにコントリビュートするためのガイドです。  \n\n## Issue\n下記のIssueを受け付けています。  \n- 不具合報告\n- 新機能要望\n- 機能強化要望\n- 質問\n\n## Pull"
  },
  {
    "path": "LICENSE",
    "chars": 35149,
    "preview": "                    GNU GENERAL PUBLIC LICENSE\n                       Version 3, 29 June 2007\n\n Copyright (C) 2007 Free "
  },
  {
    "path": "PushToFCM/.dockerignore",
    "chars": 26,
    "preview": "node_modules\nnpm-debug.log"
  },
  {
    "path": "PushToFCM/.gitignore",
    "chars": 13,
    "preview": "/node_modules"
  },
  {
    "path": "PushToFCM/README.md",
    "chars": 1141,
    "preview": "# プッシュ通知中継サーバ\nこれはプッシュ通知を受信するための中継サーバプログラムです。\n\n## 説明\nMisskeyからプッシュ通知を受信するには\n中継サーバを構築して、そこからFirebase Cloud Massaging経由で通知を"
  },
  {
    "path": "PushToFCM/docker/Dockerfile",
    "chars": 135,
    "preview": "from node:12\nWORKDIR /usr/src/app\nCOPY package*.json ./\nRUN npm install --only=production\nCOPY . .\nEXPOSE 3000\nCMD [\"nod"
  },
  {
    "path": "PushToFCM/docker/node/Dockerfile",
    "chars": 35,
    "preview": "FROM node:16\nWORKDIR /usr/src/app\n\n"
  },
  {
    "path": "PushToFCM/docker-compose.yml",
    "chars": 410,
    "preview": "version: \"3\"\nservices:\n    push-server:\n        build: ./docker/node\n        user: ${user}\n        ports:\n            - "
  },
  {
    "path": "PushToFCM/index.js",
    "chars": 6733,
    "preview": "const express = require('express');\nconst app = express();\nconst Concat = require('concat-stream');\nconst fs = require('"
  },
  {
    "path": "PushToFCM/key/.gitignore",
    "chars": 13,
    "preview": "*\n!.gitignore"
  },
  {
    "path": "PushToFCM/keyGenerator.js",
    "chars": 401,
    "preview": "const crypto = require('crypto');\nconst util = require('util');\nconst urlsafeBase64 = require('urlsafe-base64');\n\nconst "
  },
  {
    "path": "PushToFCM/locales/en.json",
    "chars": 476,
    "preview": "{\n    \"title\": {\n        \"follow\": \"Followed\",\n        \"mention\": \"Mentioned by {{name}}\",\n        \"reply\": \"Replied by "
  },
  {
    "path": "PushToFCM/locales/ja.json",
    "chars": 456,
    "preview": "{\n    \"title\": {\n        \"follow\": \"フォローされました\",\n        \"mention\": \"{{name}}からメンションがきました\",\n        \"reply\": \"{{name}}さんか"
  },
  {
    "path": "PushToFCM/notification_builder.js",
    "chars": 2601,
    "preview": "\nconst notificationType = {\n    follow: \"follow\",\n    mention: \"mention\",\n    reply: \"reply\",\n    renote: \"renote\",\n    "
  },
  {
    "path": "PushToFCM/package.json",
    "chars": 570,
    "preview": "{\n  \"name\": \"pushtofcm\",\n  \"version\": \"1.0.0\",\n  \"description\": \"Misskey Push to fcm server\",\n  \"main\": \"index.js\",\n  \"s"
  },
  {
    "path": "PushToFCM/webPushDecipher.js",
    "chars": 4868,
    "preview": "//\n// WebPushをdecryptするヤツ(on Node.js)\n//\n// **参考**\n// https://tools.ietf.org/html/rfc8188\n// https://tools.ietf.org/html"
  },
  {
    "path": "README-EN.md",
    "chars": 4348,
    "preview": "# Milktea\n\n<img src=\"https://github.com/Kinoshita0623/MisskeyAndroidClient/blob/master/app/src/main/ic_launcher-web.png?"
  },
  {
    "path": "README.md",
    "chars": 2342,
    "preview": "# Milktea\n\n<img src=\"https://github.com/Kinoshita0623/MisskeyAndroidClient/blob/master/app/src/main/ic_launcher-web.png?"
  },
  {
    "path": "app/.gitignore",
    "chars": 7,
    "preview": "/build\n"
  },
  {
    "path": "app/build.gradle",
    "chars": 9809,
    "preview": "plugins {\n    id('com.android.application')\n    id('kotlin-android')\n    id('kotlin-kapt')\n    alias libs.plugins.kotlin"
  },
  {
    "path": "app/google-services.json",
    "chars": 1975,
    "preview": "{\n  \"project_info\": {\n    \"project_number\": \"488937418039\",\n    \"project_id\": \"milktea-38a76\",\n    \"storage_bucket\": \"mi"
  },
  {
    "path": "app/proguard-rules.pro",
    "chars": 3680,
    "preview": "\n# flipperの除外設定\n-keep class com.facebook.jni.**  {  *;  }\n-keep class com.facebook.flipper.** {  *;  }\n\n-dontwarn com.fa"
  },
  {
    "path": "app/schemas/jp.panta.misskeyandroidclient.model.DataBase/10.json",
    "chars": 49652,
    "preview": "{\n  \"formatVersion\": 1,\n  \"database\": {\n    \"version\": 10,\n    \"identityHash\": \"e57ecde54b614792af12c09f03436dc1\",\n    \""
  },
  {
    "path": "app/schemas/jp.panta.misskeyandroidclient.model.DataBase/11.json",
    "chars": 49909,
    "preview": "{\n  \"formatVersion\": 1,\n  \"database\": {\n    \"version\": 11,\n    \"identityHash\": \"c50ce2972f355ed260b3b30b300c8a9f\",\n    \""
  },
  {
    "path": "app/schemas/jp.panta.misskeyandroidclient.model.DataBase/12.json",
    "chars": 50282,
    "preview": "{\n  \"formatVersion\": 1,\n  \"database\": {\n    \"version\": 12,\n    \"identityHash\": \"d16f596614a6ec0c5703e7719b14256b\",\n    \""
  },
  {
    "path": "app/schemas/jp.panta.misskeyandroidclient.model.DataBase/3.json",
    "chars": 26799,
    "preview": "{\n  \"formatVersion\": 1,\n  \"database\": {\n    \"version\": 3,\n    \"identityHash\": \"786087deeceb0d1e04244116153de219\",\n    \"e"
  },
  {
    "path": "app/schemas/jp.panta.misskeyandroidclient.model.DataBase/4.json",
    "chars": 28204,
    "preview": "{\n  \"formatVersion\": 1,\n  \"database\": {\n    \"version\": 4,\n    \"identityHash\": \"522c0549c443474673b33153ce928a8c\",\n    \"e"
  },
  {
    "path": "app/schemas/jp.panta.misskeyandroidclient.model.DataBase/5.json",
    "chars": 36339,
    "preview": "{\n  \"formatVersion\": 1,\n  \"database\": {\n    \"version\": 5,\n    \"identityHash\": \"4d4ea06174551643c866184ef5de6130\",\n    \"e"
  },
  {
    "path": "app/schemas/jp.panta.misskeyandroidclient.model.DataBase/6.json",
    "chars": 45283,
    "preview": "{\n  \"formatVersion\": 1,\n  \"database\": {\n    \"version\": 6,\n    \"identityHash\": \"f0b44b577de14e836e23b7ff464647a6\",\n    \"e"
  },
  {
    "path": "app/schemas/jp.panta.misskeyandroidclient.model.DataBase/7.json",
    "chars": 46730,
    "preview": "{\n  \"formatVersion\": 1,\n  \"database\": {\n    \"version\": 7,\n    \"identityHash\": \"75b46cd180746b997e83291bf1013d1a\",\n    \"e"
  },
  {
    "path": "app/schemas/jp.panta.misskeyandroidclient.model.DataBase/8.json",
    "chars": 47934,
    "preview": "{\n  \"formatVersion\": 1,\n  \"database\": {\n    \"version\": 8,\n    \"identityHash\": \"7a5223ff0728af36a89dccaed48f97ec\",\n    \"e"
  },
  {
    "path": "app/schemas/jp.panta.misskeyandroidclient.model.DataBase/9.json",
    "chars": 49645,
    "preview": "{\n  \"formatVersion\": 1,\n  \"database\": {\n    \"version\": 9,\n    \"identityHash\": \"9ca4eba1d0228c9795b0c3a2995db32a\",\n    \"e"
  },
  {
    "path": "app/src/androidTest/java/jp/panta/misskeyandroidclient/ExampleInstrumentedTest.kt",
    "chars": 646,
    "preview": "package jp.panta.misskeyandroidclient\n\nimport androidx.test.InstrumentationRegistry\nimport androidx.test.runner.AndroidJ"
  },
  {
    "path": "app/src/androidTest/java/jp/panta/misskeyandroidclient/model/account/db/RoomAccountRepositoryTest.kt",
    "chars": 5251,
    "preview": "package jp.panta.misskeyandroidclient.model.account.db\n\nimport android.content.Context\nimport androidx.room.Room\nimport "
  },
  {
    "path": "app/src/androidTest/java/jp/panta/misskeyandroidclient/model/instance/db/RoomMetaDataSourceTest.kt",
    "chars": 2416,
    "preview": "package jp.panta.misskeyandroidclient.model.instance.db\n\nimport android.content.Context\nimport androidx.room.Room\nimport"
  },
  {
    "path": "app/src/androidTest/java/net/pantasystem/milktea/model/filter/MastodonFilterServiceTest.kt",
    "chars": 12351,
    "preview": "package net.pantasystem.milktea.model.filter\n\nimport net.pantasystem.milktea.model.account.page.Pageable\nimport net.pant"
  },
  {
    "path": "app/src/benchmark/java/jp/panta/misskeyandroidclient/di/module/ReleaseAPIModule.kt",
    "chars": 503,
    "preview": "package jp.panta.misskeyandroidclient.di.module\n\nimport dagger.Binds\nimport dagger.Module\nimport dagger.hilt.InstallIn\ni"
  },
  {
    "path": "app/src/benchmark/java/jp/panta/misskeyandroidclient/di/module/ReleaseAppModule.kt",
    "chars": 548,
    "preview": "package jp.panta.misskeyandroidclient.di.module\n\nimport dagger.Binds\nimport dagger.Module\nimport dagger.hilt.InstallIn\ni"
  },
  {
    "path": "app/src/benchmark/java/jp/panta/misskeyandroidclient/util/EmptyDebuggerSetupManagerImpl.kt",
    "chars": 238,
    "preview": "package jp.panta.misskeyandroidclient.util\n\nimport android.content.Context\nimport javax.inject.Inject\n\nclass EmptyDebugg"
  },
  {
    "path": "app/src/debug/java/jp/panta/misskeyandroidclient/util/di/module/DebugAPIModule.kt",
    "chars": 507,
    "preview": "package jp.panta.misskeyandroidclient.util.di.module\n\nimport dagger.Binds\nimport dagger.Module\nimport dagger.hilt.Instal"
  },
  {
    "path": "app/src/debug/java/jp/panta/misskeyandroidclient/util/di/module/DebugAppModule.kt",
    "chars": 672,
    "preview": "package jp.panta.misskeyandroidclient.util.di.module\n\nimport android.content.Context\nimport dagger.Binds\nimport dagger.M"
  },
  {
    "path": "app/src/main/AndroidManifest.xml",
    "chars": 11058,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    xmlns:to"
  },
  {
    "path": "app/src/main/java/jp/panta/misskeyandroidclient/AlarmNotePostReceiver.kt",
    "chars": 5121,
    "preview": "package jp.panta.misskeyandroidclient\n\nimport android.app.NotificationManager\nimport android.app.PendingIntent\nimport an"
  },
  {
    "path": "app/src/main/java/jp/panta/misskeyandroidclient/FCMService.kt",
    "chars": 5600,
    "preview": "package jp.panta.misskeyandroidclient\n\nimport android.app.NotificationChannel\nimport android.app.NotificationManager\nimp"
  },
  {
    "path": "app/src/main/java/jp/panta/misskeyandroidclient/MainActivity.kt",
    "chars": 11104,
    "preview": "package jp.panta.misskeyandroidclient\n\nimport android.app.Activity\nimport android.content.Intent\nimport android.os.Bundl"
  },
  {
    "path": "app/src/main/java/jp/panta/misskeyandroidclient/MiApplication.kt",
    "chars": 4996,
    "preview": "package jp.panta.misskeyandroidclient\n\nimport android.app.Application\nimport android.os.Build\nimport android.os.Looper\ni"
  },
  {
    "path": "app/src/main/java/jp/panta/misskeyandroidclient/ThemeUtil.kt",
    "chars": 1775,
    "preview": "package jp.panta.misskeyandroidclient\n\nimport android.app.Activity\nimport android.content.Context\nimport android.util.Ty"
  },
  {
    "path": "app/src/main/java/jp/panta/misskeyandroidclient/di/entorypoint/InitializerEntryPoint.kt",
    "chars": 783,
    "preview": "package jp.panta.misskeyandroidclient.di.entorypoint\n\nimport android.content.Context\nimport dagger.hilt.EntryPoint\nimpor"
  },
  {
    "path": "app/src/main/java/jp/panta/misskeyandroidclient/di/module/AccountModule.kt",
    "chars": 1029,
    "preview": "package jp.panta.misskeyandroidclient.di.module\n\nimport android.content.Context\nimport dagger.Module\nimport dagger.Provi"
  },
  {
    "path": "app/src/main/java/jp/panta/misskeyandroidclient/di/module/AppLoggerModule.kt",
    "chars": 503,
    "preview": "package jp.panta.misskeyandroidclient.di.module\n\nimport dagger.Module\nimport dagger.Provides\nimport dagger.hilt.InstallI"
  },
  {
    "path": "app/src/main/java/jp/panta/misskeyandroidclient/di/module/CoroutineScopeModule.kt",
    "chars": 872,
    "preview": "package jp.panta.misskeyandroidclient.di.module\n\nimport com.google.firebase.crashlytics.FirebaseCrashlytics\nimport dagge"
  },
  {
    "path": "app/src/main/java/jp/panta/misskeyandroidclient/di/module/CustomAuthStoreModule.kt",
    "chars": 650,
    "preview": "package jp.panta.misskeyandroidclient.di.module\n\nimport android.content.Context\nimport dagger.Module\nimport dagger.Provi"
  },
  {
    "path": "app/src/main/java/jp/panta/misskeyandroidclient/di/module/EmojiModule.kt",
    "chars": 521,
    "preview": "package jp.panta.misskeyandroidclient.di.module\n\nimport dagger.Module\nimport dagger.Provides\nimport dagger.hilt.InstallI"
  },
  {
    "path": "app/src/main/java/jp/panta/misskeyandroidclient/di/module/EncryptionModule.kt",
    "chars": 649,
    "preview": "package jp.panta.misskeyandroidclient.di.module\n\nimport android.content.Context\nimport dagger.Module\nimport dagger.Provi"
  },
  {
    "path": "app/src/main/java/jp/panta/misskeyandroidclient/di/module/NavigationModule.kt",
    "chars": 1215,
    "preview": "package jp.panta.misskeyandroidclient.di.module\n\nimport dagger.Binds\nimport dagger.Module\nimport dagger.hilt.InstallIn\ni"
  },
  {
    "path": "app/src/main/java/jp/panta/misskeyandroidclient/di/module/NoteModule.kt",
    "chars": 1424,
    "preview": "package jp.panta.misskeyandroidclient.di.module\n\nimport android.content.Context\nimport dagger.Binds\nimport dagger.Module"
  },
  {
    "path": "app/src/main/java/jp/panta/misskeyandroidclient/di/module/PageableModule.kt",
    "chars": 553,
    "preview": "package jp.panta.misskeyandroidclient.di.module\n\nimport dagger.Binds\nimport dagger.Module\nimport dagger.hilt.InstallIn\ni"
  },
  {
    "path": "app/src/main/java/jp/panta/misskeyandroidclient/di/module/PushSubscriptionModule.kt",
    "chars": 3189,
    "preview": "package jp.panta.misskeyandroidclient.di.module\n\nimport android.content.Context\nimport dagger.Module\nimport dagger.Provi"
  },
  {
    "path": "app/src/main/java/jp/panta/misskeyandroidclient/di/module/TaskExecutorsModule.kt",
    "chars": 1039,
    "preview": "package jp.panta.misskeyandroidclient.di.module\n\nimport dagger.Module\nimport dagger.Provides\nimport dagger.hilt.InstallI"
  },
  {
    "path": "app/src/main/java/jp/panta/misskeyandroidclient/di/module/ThemeModule.kt",
    "chars": 832,
    "preview": "package jp.panta.misskeyandroidclient.di.module\n\nimport android.app.Activity\nimport dagger.Module\nimport dagger.Provides"
  },
  {
    "path": "app/src/main/java/jp/panta/misskeyandroidclient/impl/AndroidDefaultLogger.kt",
    "chars": 1425,
    "preview": "package jp.panta.misskeyandroidclient.impl\n\nimport android.util.Log\nimport com.google.firebase.crashlytics.FirebaseCrash"
  },
  {
    "path": "app/src/main/java/jp/panta/misskeyandroidclient/impl/AndroidNoteReservationPostExecutor.kt",
    "chars": 2166,
    "preview": "package jp.panta.misskeyandroidclient.impl\n\nimport android.annotation.SuppressLint\nimport android.app.AlarmManager\nimpor"
  },
  {
    "path": "app/src/main/java/jp/panta/misskeyandroidclient/impl/CheckEmojiAndroidImpl.kt",
    "chars": 430,
    "preview": "package jp.panta.misskeyandroidclient.impl\n\nimport net.pantasystem.milktea.model.note.reaction.CheckEmoji\nimport javax.i"
  },
  {
    "path": "app/src/main/java/jp/panta/misskeyandroidclient/impl/NavigationModule.kt",
    "chars": 714,
    "preview": "package jp.panta.misskeyandroidclient.impl\n\nimport dagger.Binds\nimport dagger.Module\nimport dagger.hilt.InstallIn\nimport"
  },
  {
    "path": "app/src/main/java/jp/panta/misskeyandroidclient/impl/OkHttpClientProviderImpl.kt",
    "chars": 994,
    "preview": "package jp.panta.misskeyandroidclient.impl\n\nimport android.os.Build\nimport jp.panta.misskeyandroidclient.BuildConfig\nimp"
  },
  {
    "path": "app/src/main/java/jp/panta/misskeyandroidclient/impl/PageDefaultStringsOnAndroid.kt",
    "chars": 857,
    "preview": "package jp.panta.misskeyandroidclient.impl\n\nimport android.content.Context\nimport jp.panta.misskeyandroidclient.R\nimport"
  },
  {
    "path": "app/src/main/java/jp/panta/misskeyandroidclient/media/CoilApngDecoder.kt",
    "chars": 4190,
    "preview": "package jp.panta.misskeyandroidclient.media\n\nimport android.graphics.BitmapFactory\nimport android.graphics.drawable.Bitm"
  },
  {
    "path": "app/src/main/java/jp/panta/misskeyandroidclient/setup/AppStateController.kt",
    "chars": 2238,
    "preview": "package jp.panta.misskeyandroidclient.setup\n\nimport android.content.Context\nimport com.google.firebase.analytics.Firebas"
  },
  {
    "path": "app/src/main/java/jp/panta/misskeyandroidclient/startup/DebuggerSetupInitializer.kt",
    "chars": 498,
    "preview": "package jp.panta.misskeyandroidclient.startup\n\nimport android.content.Context\nimport androidx.startup.Initializer\nimport"
  },
  {
    "path": "app/src/main/java/jp/panta/misskeyandroidclient/startup/EmojiCompatInitializer.kt",
    "chars": 705,
    "preview": "package jp.panta.misskeyandroidclient.startup\n\nimport android.content.Context\nimport androidx.emoji2.bundled.BundledEmoj"
  },
  {
    "path": "app/src/main/java/jp/panta/misskeyandroidclient/ui/BottomNavigationLongClickListener.kt",
    "chars": 865,
    "preview": "package jp.panta.misskeyandroidclient.ui\n\nimport android.annotation.SuppressLint\nimport android.view.ViewGroup\nimport an"
  },
  {
    "path": "app/src/main/java/jp/panta/misskeyandroidclient/ui/PageableFragmentFactoryImpl.kt",
    "chars": 2428,
    "preview": "package jp.panta.misskeyandroidclient.ui\n\nimport androidx.fragment.app.Fragment\nimport net.pantasystem.milktea.common_an"
  },
  {
    "path": "app/src/main/java/jp/panta/misskeyandroidclient/ui/main/AccountViewModelHandler.kt",
    "chars": 2920,
    "preview": "package jp.panta.misskeyandroidclient.ui.main\n\nimport androidx.annotation.MainThread\nimport androidx.appcompat.app.AppCo"
  },
  {
    "path": "app/src/main/java/jp/panta/misskeyandroidclient/ui/main/ChangeNavMenuVisibilityFromAPIVersion.kt",
    "chars": 1269,
    "preview": "package jp.panta.misskeyandroidclient.ui.main\n\nimport com.google.android.material.navigation.NavigationView\nimport jp.pa"
  },
  {
    "path": "app/src/main/java/jp/panta/misskeyandroidclient/ui/main/ConfirmCrashlyticsDialog.kt",
    "chars": 1229,
    "preview": "package jp.panta.misskeyandroidclient.ui.main\n\nimport android.app.Dialog\nimport android.os.Bundle\nimport androidx.appcom"
  },
  {
    "path": "app/src/main/java/jp/panta/misskeyandroidclient/ui/main/ConfirmGoogleAnalyticsDialog.kt",
    "chars": 1221,
    "preview": "package jp.panta.misskeyandroidclient.ui.main\n\nimport android.app.Dialog\nimport android.os.Bundle\nimport androidx.fragme"
  },
  {
    "path": "app/src/main/java/jp/panta/misskeyandroidclient/ui/main/FabClickHandler.kt",
    "chars": 3574,
    "preview": "package jp.panta.misskeyandroidclient.ui.main\n\nimport android.content.Intent\nimport androidx.appcompat.app.AppCompatActi"
  },
  {
    "path": "app/src/main/java/jp/panta/misskeyandroidclient/ui/main/IntentToAddAccountHandler.kt",
    "chars": 2652,
    "preview": "package jp.panta.misskeyandroidclient.ui.main\n\nimport android.content.Intent\nimport jp.panta.misskeyandroidclient.BuildC"
  },
  {
    "path": "app/src/main/java/jp/panta/misskeyandroidclient/ui/main/MainActivityEventHandler.kt",
    "chars": 15160,
    "preview": "package jp.panta.misskeyandroidclient.ui.main\n\nimport android.Manifest\nimport android.content.Context\nimport android.con"
  },
  {
    "path": "app/src/main/java/jp/panta/misskeyandroidclient/ui/main/MainActivityInitialIntentHandler.kt",
    "chars": 4777,
    "preview": "package jp.panta.misskeyandroidclient.ui.main\n\nimport android.content.Intent\nimport androidx.appcompat.app.AppCompatActi"
  },
  {
    "path": "app/src/main/java/jp/panta/misskeyandroidclient/ui/main/MainActivityMenuProvider.kt",
    "chars": 1928,
    "preview": "package jp.panta.misskeyandroidclient.ui.main\n\nimport android.content.Intent\nimport android.view.Menu\nimport android.vie"
  },
  {
    "path": "app/src/main/java/jp/panta/misskeyandroidclient/ui/main/MainActivityNavigationDrawerMenuItemClickListener.kt",
    "chars": 1962,
    "preview": "package jp.panta.misskeyandroidclient.ui.main\n\nimport android.content.Intent\nimport android.view.MenuItem\nimport jp.pant"
  },
  {
    "path": "app/src/main/java/jp/panta/misskeyandroidclient/ui/main/NoteCreateResultHandler.kt",
    "chars": 3235,
    "preview": "package jp.panta.misskeyandroidclient.ui.main\n\nimport android.view.View\nimport androidx.appcompat.app.AppCompatActivity\n"
  },
  {
    "path": "app/src/main/java/jp/panta/misskeyandroidclient/ui/main/NotePostFailedDialogFragment.kt",
    "chars": 6326,
    "preview": "package jp.panta.misskeyandroidclient.ui.main\n\nimport android.app.Dialog\nimport android.os.Bundle\nimport androidx.appcom"
  },
  {
    "path": "app/src/main/java/jp/panta/misskeyandroidclient/ui/main/SafeSearchDescriptionDialog.kt",
    "chars": 2043,
    "preview": "package jp.panta.misskeyandroidclient.ui.main\n\nimport android.app.Dialog\nimport android.content.Context\nimport android.c"
  },
  {
    "path": "app/src/main/java/jp/panta/misskeyandroidclient/ui/main/SetSimpleEditor.kt",
    "chars": 1082,
    "preview": "package jp.panta.misskeyandroidclient.ui.main\n\nimport android.view.View\nimport androidx.fragment.app.FragmentManager\nimp"
  },
  {
    "path": "app/src/main/java/jp/panta/misskeyandroidclient/ui/main/SetUpNavHeader.kt",
    "chars": 876,
    "preview": "package jp.panta.misskeyandroidclient.ui.main\n\nimport androidx.databinding.DataBindingUtil\nimport androidx.lifecycle.Lif"
  },
  {
    "path": "app/src/main/java/jp/panta/misskeyandroidclient/ui/main/SetupOnBackPressedDispatcherHandler.kt",
    "chars": 1752,
    "preview": "package jp.panta.misskeyandroidclient.ui.main\n\nimport androidx.activity.addCallback\nimport androidx.appcompat.app.AppCom"
  },
  {
    "path": "app/src/main/java/jp/panta/misskeyandroidclient/ui/main/ShowBottomNavigationBadgeDelegate.kt",
    "chars": 1124,
    "preview": "package jp.panta.misskeyandroidclient.ui.main\n\nimport com.google.android.material.bottomnavigation.BottomNavigationView\n"
  },
  {
    "path": "app/src/main/java/jp/panta/misskeyandroidclient/ui/main/ShowRequestSchedulePostResultSnackBar.kt",
    "chars": 894,
    "preview": "package jp.panta.misskeyandroidclient.ui.main\n\nimport android.app.Activity\nimport android.view.View\nimport com.google.an"
  },
  {
    "path": "app/src/main/java/jp/panta/misskeyandroidclient/ui/main/ToggleNavigationDrawerDelegate.kt",
    "chars": 871,
    "preview": "package jp.panta.misskeyandroidclient.ui.main\n\nimport android.app.Activity\nimport androidx.annotation.MainThread\nimport "
  },
  {
    "path": "app/src/main/java/jp/panta/misskeyandroidclient/ui/main/viewmodel/MainViewModel.kt",
    "chars": 7364,
    "preview": "package jp.panta.misskeyandroidclient.ui.main.viewmodel\n\nimport androidx.lifecycle.ViewModel\nimport androidx.lifecycle.v"
  },
  {
    "path": "app/src/main/java/jp/panta/misskeyandroidclient/ui/strings_helper/web_socket_error.kt",
    "chars": 1256,
    "preview": "package jp.panta.misskeyandroidclient.ui.strings_helper\n\nimport android.content.Context\nimport android.widget.Toast\nimpo"
  },
  {
    "path": "app/src/main/java/jp/panta/misskeyandroidclient/ui/tab/TabFragment.kt",
    "chars": 7955,
    "preview": "package jp.panta.misskeyandroidclient.ui.tab\n\nimport android.content.Intent\nimport android.os.Bundle\nimport android.view"
  },
  {
    "path": "app/src/main/java/jp/panta/misskeyandroidclient/ui/tab/TabViewModel.kt",
    "chars": 2447,
    "preview": "package jp.panta.misskeyandroidclient.ui.tab\n\nimport androidx.lifecycle.ViewModel\nimport androidx.lifecycle.viewModelSco"
  },
  {
    "path": "app/src/main/java/jp/panta/misskeyandroidclient/ui/tab/TimelinePagerAdapter.kt",
    "chars": 2947,
    "preview": "@file:Suppress(\"DEPRECATION\")\npackage jp.panta.misskeyandroidclient.ui.tab\n\nimport android.os.Bundle\nimport android.os.P"
  },
  {
    "path": "app/src/main/java/jp/panta/misskeyandroidclient/util/DebuggerSetupManager.kt",
    "chars": 142,
    "preview": "package jp.panta.misskeyandroidclient.util\n\nimport android.content.Context\n\ninterface DebuggerSetupManager {\n    fun set"
  },
  {
    "path": "app/src/main/java/jp/panta/misskeyandroidclient/util/DoubleBackPressedFinishDelegate.kt",
    "chars": 584,
    "preview": "package jp.panta.misskeyandroidclient.util\n\nimport android.os.Handler\nimport android.os.Looper\nimport java.util.concurre"
  },
  {
    "path": "app/src/main/java/jp/panta/misskeyandroidclient/util/task/task_coroutines_util.kt",
    "chars": 165,
    "preview": "package jp.panta.misskeyandroidclient.util.task\n\nimport com.google.android.gms.tasks.Task\nimport kotlin.coroutines.resum"
  },
  {
    "path": "app/src/main/java/jp/panta/misskeyandroidclient/worker/WorkerJobInitializer.kt",
    "chars": 3061,
    "preview": "package jp.panta.misskeyandroidclient.worker\n\nimport android.content.Context\nimport androidx.work.ExistingPeriodicWorkPo"
  },
  {
    "path": "app/src/main/res/layout/activity_main.xml",
    "chars": 1106,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<layout\n        xmlns:android=\"http://schemas.android.com/apk/res/android\"\n      "
  },
  {
    "path": "app/src/main/res/layout/app_bar_main.xml",
    "chars": 3067,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<layout xmlns:android=\"http://schemas.android.com/apk/res/android\"\n        xmlns:"
  },
  {
    "path": "app/src/main/res/layout/content_main.xml",
    "chars": 1553,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<layout>\n\n    <FrameLayout\n            xmlns:android=\"http://schemas.android.com/"
  },
  {
    "path": "app/src/main/res/layout/fragment_tab.xml",
    "chars": 4141,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<layout xmlns:tools=\"http://schemas.android.com/tools\">\n\n    <androidx.coordinato"
  },
  {
    "path": "app/src/main/res/layout/nav_header_main.xml",
    "chars": 5741,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<layout xmlns:android=\"http://schemas.android.com/apk/res/android\"\n        xmlns:"
  },
  {
    "path": "app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml",
    "chars": 265,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<adaptive-icon xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <b"
  },
  {
    "path": "app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml",
    "chars": 265,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<adaptive-icon xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <b"
  },
  {
    "path": "app/src/main/res/navigation/main_nav.xml",
    "chars": 1047,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<navigation xmlns:android=\"http://schemas.android.com/apk/res/android\"\n        xm"
  },
  {
    "path": "app/src/main/res/values/values.xml",
    "chars": 120,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <integer name=\"reaction_choices_columns\">6</integer>\n</resources>"
  },
  {
    "path": "app/src/main/res/values-v21/styles.xml",
    "chars": 175,
    "preview": "<resources>\n    <style name=\"AppTheme.NoActionBar\">\n        <item name=\"windowActionBar\">false</item>\n        <item name"
  },
  {
    "path": "app/src/main/res/values-v23/styles.xml",
    "chars": 65,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n\n\n</resources>"
  },
  {
    "path": "app/src/main/res/values-v23/themes.xml",
    "chars": 2747,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n\n    <style name=\"AppTheme.NoActionBar\">\n        <item name=\"windowAc"
  },
  {
    "path": "app/src/main/res/values-v27/themes.xml",
    "chars": 1171,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n\n    <style name=\"AppTheme\" parent=\"Theme.Material3.Light.NoActionBar"
  },
  {
    "path": "app/src/main/res/values-w320dp/values.xml",
    "chars": 120,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <integer name=\"reaction_choices_columns\">6</integer>\n</resources>"
  },
  {
    "path": "app/src/main/res/values-w480dp/values.xml",
    "chars": 120,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <integer name=\"reaction_choices_columns\">8</integer>\n</resources>"
  },
  {
    "path": "app/src/main/res/values-w600dp/values.xml",
    "chars": 121,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <integer name=\"reaction_choices_columns\">10</integer>\n</resources"
  },
  {
    "path": "app/src/main/res/values-w720dp/values.xml",
    "chars": 121,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <integer name=\"reaction_choices_columns\">14</integer>\n</resources"
  },
  {
    "path": "app/src/main/res/xml/shortcuts.xml",
    "chars": 1963,
    "preview": "<shortcuts xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <shortcut\n            android:shortcutId=\"not"
  },
  {
    "path": "app/src/release/java/jp/panta/misskeyandroidclient/di/module/EmptyDebuggerSetupManagerImpl.kt",
    "chars": 240,
    "preview": "package jp.panta.misskeyandroidclient.util\n\nimport android.content.Context\nimport javax.inject.Inject\n\nclass EmptyDebugg"
  },
  {
    "path": "app/src/release/java/jp/panta/misskeyandroidclient/di/module/ReleaseAPIModule.kt",
    "chars": 503,
    "preview": "package jp.panta.misskeyandroidclient.di.module\n\nimport dagger.Binds\nimport dagger.Module\nimport dagger.hilt.InstallIn\ni"
  },
  {
    "path": "app/src/release/java/jp/panta/misskeyandroidclient/di/module/ReleaseAppModule.kt",
    "chars": 548,
    "preview": "package jp.panta.misskeyandroidclient.di.module\n\nimport dagger.Binds\nimport dagger.Module\nimport dagger.hilt.InstallIn\ni"
  },
  {
    "path": "app/src/test/java/jp/panta/misskeyandroidclient/GsonNullInstantTest.kt",
    "chars": 1572,
    "preview": "package jp.panta.misskeyandroidclient\n\nimport kotlinx.serialization.decodeFromString\nimport kotlinx.serialization.json.J"
  },
  {
    "path": "app/src/test/java/jp/panta/misskeyandroidclient/api/APIErrorTest.kt",
    "chars": 1510,
    "preview": "package jp.panta.misskeyandroidclient.api\n\nimport kotlinx.coroutines.runBlocking\nimport net.pantasystem.milktea.api.miss"
  },
  {
    "path": "app/src/test/java/jp/panta/misskeyandroidclient/api/mastodon/emojis/TootEmojiDTOTest.kt",
    "chars": 33944,
    "preview": "package jp.panta.misskeyandroidclient.api.mastodon.emojis\n\nimport kotlinx.serialization.decodeFromString\nimport kotlinx."
  },
  {
    "path": "app/src/test/java/jp/panta/misskeyandroidclient/api/mastodon/instance/InstanceTest.kt",
    "chars": 4169,
    "preview": "package jp.panta.misskeyandroidclient.api.mastodon.instance\n\nimport kotlinx.serialization.decodeFromString\nimport kotlin"
  },
  {
    "path": "app/src/test/java/jp/panta/misskeyandroidclient/api/misskey/v12/channel/ChannelDTOTest.kt",
    "chars": 4223,
    "preview": "package jp.panta.misskeyandroidclient.api.misskey.v12.channel\n\nimport kotlinx.serialization.decodeFromString\nimport kotl"
  },
  {
    "path": "app/src/test/java/jp/panta/misskeyandroidclient/api/notes/NoteDTOTest.kt",
    "chars": 38287,
    "preview": "package jp.panta.misskeyandroidclient.api.notes\n\n\nimport kotlinx.serialization.decodeFromString\nimport kotlinx.serializa"
  },
  {
    "path": "app/src/test/java/jp/panta/misskeyandroidclient/logger/TestLogger.kt",
    "chars": 910,
    "preview": "package jp.panta.misskeyandroidclient.logger\n\nimport net.pantasystem.milktea.common.Logger\n\nclass TestLogger(\n    overri"
  },
  {
    "path": "app/src/test/java/jp/panta/misskeyandroidclient/model/account/AccountInstanceTypeConverterTest.kt",
    "chars": 857,
    "preview": "package jp.panta.misskeyandroidclient.model.account\n\nimport net.pantasystem.milktea.data.infrastructure.account.db.Accou"
  },
  {
    "path": "app/src/test/java/jp/panta/misskeyandroidclient/model/account/AccountStateTest.kt",
    "chars": 5804,
    "preview": "package jp.panta.misskeyandroidclient.model.account\n\nimport net.pantasystem.milktea.app_store.account.AccountState\nimpor"
  },
  {
    "path": "app/src/test/java/jp/panta/misskeyandroidclient/model/account/AccountTest.kt",
    "chars": 9328,
    "preview": "package jp.panta.misskeyandroidclient.model.account\n\nimport net.pantasystem.milktea.model.account.Account\nimport org.jun"
  },
  {
    "path": "app/src/test/java/jp/panta/misskeyandroidclient/model/account/MakeDefaultPagesUseCaseTest.kt",
    "chars": 8392,
    "preview": "package jp.panta.misskeyandroidclient.model.account\n\nimport kotlinx.coroutines.test.runTest\nimport net.pantasystem.milkt"
  },
  {
    "path": "app/src/test/java/jp/panta/misskeyandroidclient/model/account/TestAccountRepository.kt",
    "chars": 2219,
    "preview": "package jp.panta.misskeyandroidclient.model.account\n\nimport net.pantasystem.milktea.common.runCancellableCatching\nimport"
  },
  {
    "path": "app/src/test/java/jp/panta/misskeyandroidclient/model/account/page/PageableChannelTimelineTest.kt",
    "chars": 1006,
    "preview": "package jp.panta.misskeyandroidclient.model.account.page\n\nimport net.pantasystem.milktea.data.infrastructure.note.toNote"
  },
  {
    "path": "app/src/test/java/jp/panta/misskeyandroidclient/model/api/GetUsersTest.kt",
    "chars": 3654,
    "preview": "package jp.panta.misskeyandroidclient.model.api\n\nclass GetUsersTest {\n\n//    private lateinit var misskeyAPI: MisskeyAPI"
  },
  {
    "path": "app/src/test/java/jp/panta/misskeyandroidclient/model/api/HashTagListTest.kt",
    "chars": 1645,
    "preview": "package jp.panta.misskeyandroidclient.model.api\n\nclass HashTagListTest {\n\n//    @Test\n//    suspend fun testM544(){\n//  "
  },
  {
    "path": "app/src/test/java/jp/panta/misskeyandroidclient/model/api/VersionTest.kt",
    "chars": 882,
    "preview": "package jp.panta.misskeyandroidclient.model.api\n\nimport net.pantasystem.milktea.model.instance.Version\nimport org.junit."
  },
  {
    "path": "app/src/test/java/jp/panta/misskeyandroidclient/model/channel/ChannelStateTest.kt",
    "chars": 2717,
    "preview": "package jp.panta.misskeyandroidclient.model.channel\n\nimport kotlinx.datetime.Clock\nimport net.pantasystem.milktea.model."
  },
  {
    "path": "app/src/test/java/jp/panta/misskeyandroidclient/model/file/AppFileTest.kt",
    "chars": 884,
    "preview": "package jp.panta.misskeyandroidclient.model.file\n\nimport net.pantasystem.milktea.model.file.AppFile\nimport org.junit.jup"
  },
  {
    "path": "app/src/test/java/jp/panta/misskeyandroidclient/model/instance/MetaCacheTest.kt",
    "chars": 989,
    "preview": "package jp.panta.misskeyandroidclient.model.instance\n\nimport kotlinx.coroutines.runBlocking\nimport net.pantasystem.milkt"
  },
  {
    "path": "app/src/test/java/jp/panta/misskeyandroidclient/model/notes/impl/InMemoryNoteDataSourceTest.kt",
    "chars": 1738,
    "preview": "package jp.panta.misskeyandroidclient.model.notes.impl\n\nimport jp.panta.misskeyandroidclient.logger.TestLogger\nimport ko"
  },
  {
    "path": "app/src/test/java/jp/panta/misskeyandroidclient/model/notes/impl/NoteCaptureAPIAdapterTest.kt",
    "chars": 4187,
    "preview": "package jp.panta.misskeyandroidclient.model.notes.impl\n\n\nimport jp.panta.misskeyandroidclient.logger.TestLogger\nimport j"
  },
  {
    "path": "app/src/test/java/jp/panta/misskeyandroidclient/model/notes/poll/PollTest.kt",
    "chars": 7276,
    "preview": "package jp.panta.misskeyandroidclient.model.notes.poll\n\nimport kotlinx.datetime.Clock\nimport net.pantasystem.milktea.mod"
  },
  {
    "path": "app/src/test/java/jp/panta/misskeyandroidclient/model/reaction/impl/ReactionHistoryPaginatorImplTest.kt",
    "chars": 4591,
    "preview": "package jp.panta.misskeyandroidclient.model.reaction.impl\n\n//import net.pantasystem.milktea.api.misskey.MisskeyAPIProvid"
  },
  {
    "path": "app/src/test/java/jp/panta/misskeyandroidclient/model/users/UserTest.kt",
    "chars": 3122,
    "preview": "package jp.panta.misskeyandroidclient.model.users\n\nimport net.pantasystem.milktea.model.account.Account\nimport net.panta"
  },
  {
    "path": "app/src/test/java/jp/panta/misskeyandroidclient/model/users/nickname/DeleteNicknameUseCaseTest.kt",
    "chars": 2462,
    "preview": "package jp.panta.misskeyandroidclient.model.users.nickname\n\nimport kotlinx.coroutines.runBlocking\nimport net.pantasystem"
  },
  {
    "path": "app/src/test/java/jp/panta/misskeyandroidclient/model/users/nickname/UpdateNicknameUseCaseTest.kt",
    "chars": 1999,
    "preview": "package jp.panta.misskeyandroidclient.model.users.nickname\n\nimport kotlinx.coroutines.runBlocking\nimport net.pantasystem"
  },
  {
    "path": "app/src/test/java/jp/panta/misskeyandroidclient/streaming/SendBodyTest.kt",
    "chars": 1279,
    "preview": "package jp.panta.misskeyandroidclient.streaming\n\nimport kotlinx.serialization.decodeFromString\nimport kotlinx.serializat"
  },
  {
    "path": "app/src/test/java/jp/panta/misskeyandroidclient/streaming/StreamingEventTest.kt",
    "chars": 5629,
    "preview": "package jp.panta.misskeyandroidclient.streaming\n\nimport kotlinx.serialization.decodeFromString\nimport kotlinx.serializat"
  },
  {
    "path": "app/src/test/java/jp/panta/misskeyandroidclient/streaming/TestSocketImpl.kt",
    "chars": 1767,
    "preview": "package jp.panta.misskeyandroidclient.streaming\n\nimport net.pantasystem.milktea.api_streaming.Socket\nimport net.pantasys"
  },
  {
    "path": "app/src/test/java/jp/panta/misskeyandroidclient/streaming/TestSocketWithAccountProviderImpl.kt",
    "chars": 559,
    "preview": "package jp.panta.misskeyandroidclient.streaming\n\nimport net.pantasystem.milktea.api_streaming.Socket\nimport net.pantasys"
  },
  {
    "path": "app/src/test/java/jp/panta/misskeyandroidclient/streaming/channel/ChannelAPITest.kt",
    "chars": 2983,
    "preview": "package jp.panta.misskeyandroidclient.streaming.channel\n\nimport jp.panta.misskeyandroidclient.logger.TestLogger\nimport k"
  },
  {
    "path": "app/src/test/java/jp/panta/misskeyandroidclient/streaming/network/SocketImplTest.kt",
    "chars": 2597,
    "preview": "package jp.panta.misskeyandroidclient.streaming.network\n\nimport jp.panta.misskeyandroidclient.logger.TestLogger\nimport k"
  },
  {
    "path": "app/src/test/java/jp/panta/misskeyandroidclient/ui/users/viewmodel/search/SearchUserTest.kt",
    "chars": 603,
    "preview": "package jp.panta.misskeyandroidclient.ui.users.viewmodel.search\n\nimport net.pantasystem.milktea.user.search.SearchUser\ni"
  },
  {
    "path": "app/src/test/java/jp/panta/misskeyandroidclient/util/EncryptionStub.kt",
    "chars": 340,
    "preview": "package jp.panta.misskeyandroidclient.util\n\nimport net.pantasystem.milktea.common.Encryption\n\nclass EncryptionStub : Enc"
  },
  {
    "path": "app/src/test/java/jp/panta/misskeyandroidclient/util/StringIndexTest.kt",
    "chars": 600,
    "preview": "package jp.panta.misskeyandroidclient.util\n\nimport org.junit.jupiter.api.Test\n\n\nclass StringIndexTest {\n\n    @Test\n    f"
  },
  {
    "path": "app/src/test/java/net/pantasystem/milktea/data/infrastructure/emoji/CustomEmojiInserterTest.kt",
    "chars": 4767,
    "preview": "package net.pantasystem.milktea.data.infrastructure.emoji\n\nimport kotlinx.coroutines.test.runTest\nimport net.pantasystem"
  },
  {
    "path": "app/src/test/java/net/pantasystem/milktea/data/infrastructure/note/draft/db/DraftNoteDTOTest.kt",
    "chars": 1662,
    "preview": "import net.pantasystem.milktea.data.infrastructure.note.draft.db.DraftNoteDTO\nimport net.pantasystem.milktea.data.infras"
  },
  {
    "path": "app/src/test/java/net/pantasystem/milktea/note/editor/viewmodel/NoteEditorUiStateKtTest.kt",
    "chars": 1772,
    "preview": "package net.pantasystem.milktea.note.editor.viewmodel\n\nimport kotlinx.datetime.Clock\nimport net.pantasystem.milktea.mode"
  },
  {
    "path": "app/src/test/java/net/pantasystem/milktea/note/media/viewmodel/MediaViewDataTest.kt",
    "chars": 14966,
    "preview": "package net.pantasystem.milktea.note.media.viewmodel\n\nimport kotlinx.coroutines.test.runTest\nimport net.pantasystem.milk"
  },
  {
    "path": "benchmark/.gitignore",
    "chars": 6,
    "preview": "/build"
  },
  {
    "path": "benchmark/build.gradle",
    "chars": 2355,
    "preview": "plugins {\n    id 'com.android.test'\n    id 'org.jetbrains.kotlin.android'\n}\n\nandroid {\n    namespace 'systems.panta.benc"
  },
  {
    "path": "benchmark/src/main/AndroidManifest.xml",
    "chars": 12,
    "preview": "<manifest />"
  },
  {
    "path": "benchmark/src/main/java/systems/panta/benchmark/ExampleStartupBenchmark.kt",
    "chars": 1751,
    "preview": "package systems.panta.benchmark\n\nimport android.content.ComponentName\nimport android.content.Intent\nimport androidx.benc"
  },
  {
    "path": "build.gradle",
    "chars": 1269,
    "preview": "// Top-level build file where you can add configuration options common to all sub-projects/modules.\n\n\nbuildscript {\n    "
  },
  {
    "path": "csae_policy_ja.md",
    "chars": 1502,
    "preview": "# 児童の性的虐待・搾取(CSAE)に関するポリシー\n\nPantasystem(以下「開発者」)が開発・提供する Fediverse クライアントアプリ「Milktea」(以下「本アプリ」)は、児童の安全を最優先事項のひとつとして位置づけ、"
  },
  {
    "path": "docs/mfm-decorator-implementation-guide.md",
    "chars": 8942,
    "preview": "# MFM デコレーター 未実装構文 実装ガイド\n\n対象ファイル: `modules/common_android_ui/src/main/java/net/pantasystem/milktea/common_android_ui/MFM"
  },
  {
    "path": "docs/migrate-dynamic-feature-flag-plan.md",
    "chars": 3998,
    "preview": "# 概要\n前提として当アプリは複数のSNSのAPIやそれらフォークをサポートしている。  \nSNSによって使える機能やAPIやエンドポイントが異なるため、  \nアプリではこれを識別し、ロジックの制御やUIの表示分けを行っていた。  \nより多"
  },
  {
    "path": "docs/note-editor-compose-migration-plan.md",
    "chars": 14143,
    "preview": "# NoteEditorActivity Jetpack Compose 移行計画\n\nこのドキュメントは Claude が作業を進めるための実装計画書です。\n完了したタスクは `- [ ]` を `- [x]` に変えてください。\n各フェー"
  },
  {
    "path": "docs/note-editor-reply-preview-mfm-plan.md",
    "chars": 5896,
    "preview": "# NoteEditorReplyPreview MFM リッチ表示 実装計画書\n\n## 概要\n\n`NoteEditorReplyPreview` のノート本文表示を、現在のプレーンテキストから MFM 構文対応のリッチ表示に変更する。\nC"
  },
  {
    "path": "gradle/wrapper/gradle-wrapper.properties",
    "chars": 230,
    "preview": "#Tue Jan 04 01:27:04 JST 2022\ndistributionBase=GRADLE_USER_HOME\ndistributionUrl=https\\://services.gradle.org/distributio"
  },
  {
    "path": "gradle.properties",
    "chars": 1071,
    "preview": "## For more details on how to configure your build environment visit\n# http://www.gradle.org/docs/current/userguide/buil"
  },
  {
    "path": "gradlew",
    "chars": 5296,
    "preview": "#!/usr/bin/env sh\n\n##############################################################################\n##\n##  Gradle start up"
  },
  {
    "path": "gradlew.bat",
    "chars": 2176,
    "preview": "@if \"%DEBUG%\" == \"\" @echo off\n@rem ##########################################################################\n@rem\n@rem "
  },
  {
    "path": "libs.versions.toml",
    "chars": 8735,
    "preview": "[versions]\nmfm-kt = \"0.2.3\"\nkotlin-version = \"2.0.0\"\ndate-time = \"0.6.1\"\ncompose = \"1.7.1\"\ncompose-material-icons = \"1.7"
  },
  {
    "path": "modules/api/.gitignore",
    "chars": 6,
    "preview": "/build"
  },
  {
    "path": "modules/api/build.gradle",
    "chars": 1897,
    "preview": "plugins {\n    id 'com.android.library'\n    id 'org.jetbrains.kotlin.android'\n    alias libs.plugins.kotlin.serialization"
  },
  {
    "path": "modules/api/consumer-rules.pro",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "modules/api/proguard-rules.pro",
    "chars": 750,
    "preview": "# Add project specific ProGuard rules here.\n# You can control the set of applied configuration files using the\n# proguar"
  },
  {
    "path": "modules/api/src/main/AndroidManifest.xml",
    "chars": 62,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<manifest>\n\n</manifest>"
  }
]

// ... and 1973 more files (download for full content)

About this extraction

This page contains the full source code of the pantasystem/Milktea GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 2173 files (15.0 MB), approximately 4.1M tokens, and a symbol index with 286 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!