├── .github ├── ISSUE_TEMPLATE │ └── -issue-template.md └── pull_request_template.md ├── .gitignore ├── Offroad-iOS ├── NotificationServiceExtension.entitlements ├── NotificationServiceExtension │ ├── Info.plist │ ├── NotificationService.swift │ └── NotificationServiceExtensionDebug.entitlements ├── Offroad-iOS.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── swiftpm │ │ │ └── Package.resolved │ └── xcshareddata │ │ └── xcschemes │ │ ├── ORB.xcscheme │ │ └── ORB_Dev.xcscheme ├── Offroad-iOS │ ├── Application │ │ ├── AppDelegate.swift │ │ └── SceneDelegate.swift │ ├── Global │ │ ├── Amplitude │ │ │ └── AmplitudeManager.swift │ │ ├── Components │ │ │ ├── AppUtility.swift │ │ │ ├── Chat │ │ │ │ ├── ChatTextDisplay │ │ │ │ │ └── ChatTextDisplayView.swift │ │ │ │ └── ChatTextInput │ │ │ │ │ └── ChatTextInputView.swift │ │ │ ├── CollectionView │ │ │ │ └── EmptyStateCollectionView.swift │ │ │ ├── CustomButton │ │ │ │ ├── NavigationPopButton.swift │ │ │ │ ├── ShrinkableButton.swift │ │ │ │ └── StateToggleButton.swift │ │ │ ├── CustomView │ │ │ │ ├── CustomIntensityBlurView.swift │ │ │ │ ├── MemoryLightGradientView.swift │ │ │ │ ├── ShrinkableCollectionViewCell.swift │ │ │ │ └── TermsConsentPopupView.swift │ │ │ ├── NavigationController │ │ │ │ ├── ChatLogNavigationAnimator.swift │ │ │ │ └── ORBNavigationController.swift │ │ │ ├── ORBMap │ │ │ │ ├── ORBMapView.swift │ │ │ │ └── PlaceInfoTooltip │ │ │ │ │ ├── PlaceInfoTooltip.swift │ │ │ │ │ └── PlaceInfoTooltipHelper.swift │ │ │ ├── ORBRecommendationGradient │ │ │ │ ├── ORBRecommendationBaseBackground.swift │ │ │ │ ├── ORBRecommendationGradientLayer.swift │ │ │ │ └── ORBRecommendationGradientStyle.swift │ │ │ ├── Overlay │ │ │ │ ├── Alert │ │ │ │ │ ├── AlertView │ │ │ │ │ │ ├── ORBAlertBaseView.swift │ │ │ │ │ │ ├── ORBAlertViewAcquiredEmblem.swift │ │ │ │ │ │ ├── ORBAlertViewCouponRedemptionFailure.swift │ │ │ │ │ │ ├── ORBAlertViewExplorationResult.swift │ │ │ │ │ │ ├── ORBAlertViewMessageOnly.swift │ │ │ │ │ │ ├── ORBAlertViewNormal.swift │ │ │ │ │ │ ├── ORBAlertViewScrollableContent.swift │ │ │ │ │ │ ├── ORBAlertViewTextField.swift │ │ │ │ │ │ └── ORBAlertViewTextFieldWithSubMessage.swift │ │ │ │ │ ├── EmblemPopupViewController.swift │ │ │ │ │ ├── ORBAlertAction.swift │ │ │ │ │ ├── ORBAlertBackgroundView.swift │ │ │ │ │ ├── ORBAlertButton.swift │ │ │ │ │ ├── ORBAlertController.swift │ │ │ │ │ ├── ORBAlertType.swift │ │ │ │ │ ├── ORBAlertViewModel.swift │ │ │ │ │ └── Protocols │ │ │ │ │ │ ├── ORBAlertViewBaseUI.swift │ │ │ │ │ │ ├── ORBAlertViewType.swift │ │ │ │ │ │ └── ORBPopup.swift │ │ │ │ ├── Loading │ │ │ │ │ ├── LoadingView.swift │ │ │ │ │ ├── ScrollLoading.swift │ │ │ │ │ ├── ScrollLoadingCollectionView.swift │ │ │ │ │ └── ScrollLoadingView.swift │ │ │ │ ├── LogPrinter │ │ │ │ │ ├── LogPrinterManager.swift │ │ │ │ │ ├── LogPrinterView.swift │ │ │ │ │ ├── LogPrinterViewController.swift │ │ │ │ │ ├── LogPrinterWindow.swift │ │ │ │ │ └── PrintLogInDevApp.swift │ │ │ │ ├── ORBOverlayViewController.swift │ │ │ │ ├── Toast │ │ │ │ │ ├── ORBToastManager.swift │ │ │ │ │ ├── ORBToastView.swift │ │ │ │ │ └── ORBToastWindow.swift │ │ │ │ ├── ZeroDurationAnimator.swift │ │ │ │ └── ZeroDurationTransitionDelegate.swift │ │ │ └── SegmentedControl │ │ │ │ ├── ORBSegmentedControl.swift │ │ │ │ └── ORBSegmentedControlButton.swift │ │ ├── Extensions │ │ │ ├── .gitkeep │ │ │ ├── Character+.swift │ │ │ ├── LottieAnimationView+.swift │ │ │ ├── NSObject+.swift │ │ │ ├── SVGKImage+.swift │ │ │ ├── String+.swift │ │ │ ├── UIButton+.swift │ │ │ ├── UICollectionView+.swift │ │ │ ├── UIColor+.swift │ │ │ ├── UIImage+.swift │ │ │ ├── UIImageView+.swift │ │ │ ├── UILabel+.swift │ │ │ ├── UIScreen+.swift │ │ │ ├── UIStackView+.swift │ │ │ ├── UITabBar+.swift │ │ │ ├── UITextField+.swift │ │ │ ├── UITextView+.swift │ │ │ ├── UIView+.swift │ │ │ ├── UIViewController+.swift │ │ │ ├── UIWindow+.swift │ │ │ └── UIWindowScene+.swift │ │ ├── Literals │ │ │ ├── .gitkeep │ │ │ ├── ColorLiterals.swift │ │ │ ├── FontLiterals.swift │ │ │ └── StringLiterals.swift │ │ ├── MyInfoManager │ │ │ └── MyInfoManager.swift │ │ ├── NetworkMonitoring │ │ │ └── NetworkMonitoringManager.swift │ │ ├── Protocols │ │ │ ├── .gitkeep │ │ │ ├── ORBCenterLoadingStyle.swift │ │ │ ├── ORBEmptyCaseStyle.swift │ │ │ ├── ORBScrollLoadingStyle.swift │ │ │ ├── PlaceProtocols.swift │ │ │ ├── SVGFetchable.swift │ │ │ └── Shrinkable.swift │ │ ├── Resources │ │ │ ├── Assets.xcassets │ │ │ │ ├── AccentColor.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── AppIcon_Dark.png │ │ │ │ │ ├── AppIcon_Light.png │ │ │ │ │ ├── AppIcon_Tinted.png │ │ │ │ │ └── Contents.json │ │ │ │ ├── AppIcon_Dev.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── ios_1024_1024_Dev 1.jpg │ │ │ │ │ ├── ios_1024_1024_Dev 2.jpg │ │ │ │ │ └── ios_1024_1024_Dev.jpg │ │ │ │ ├── Character │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── img_basic_indicator.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_basic_indicator.svg │ │ │ │ │ ├── img_current_indicator.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_current_indicator.svg │ │ │ │ │ ├── img_left_button.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_left_button.svg │ │ │ │ │ └── img_right_button.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_right_button.svg │ │ │ │ ├── ChatView │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── icn_chatView_chevron_down.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── icn_characterChatBox_chevron_down.svg │ │ │ │ │ └── icn_chatView_sendButton.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── icn_chatView_sendButton.svg │ │ │ │ ├── ChoosingCharacter │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── img_complete_choosing_background.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── img_complete_choosing_background.png │ │ │ │ │ │ ├── img_complete_choosing_background@2x.png │ │ │ │ │ │ └── img_complete_choosing_background@3x.png │ │ │ │ ├── CollectedCharacters │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── check.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── icon-check-circle-line-mono.svg │ │ │ │ │ └── icn_characterDetail_orbCharacter.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── icn_characterDetail_orbCharacter.svg │ │ │ │ ├── CollectedTitles │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── icon_check_circle.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── icon_check_circle.svg │ │ │ │ │ ├── icon_lock.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── icon_lock.svg │ │ │ │ │ └── img_tag.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_tag.svg │ │ │ │ ├── Contents.json │ │ │ │ ├── CouponDetail │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── icn_couponDetail_exclamationMarkCircle.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── icn_couponDetail_exclamationMarkCircle.svg │ │ │ │ │ ├── icn_couponDetail_keyAndLock.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── icn_couponDetail_keyAndLock.svg │ │ │ │ │ └── icn_couponDetail_ticket.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── icn_couponDetail_ticket.svg │ │ │ │ ├── CouponList │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── icn_couponList_checkmark.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── icn_couponList_checkmark.svg │ │ │ │ ├── CourseQuest │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── icnGreenIndicator.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── icnGreenIndicator.svg │ │ │ │ │ ├── icnYellowIndicator.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── icnYellowIndicator.svg │ │ │ │ │ ├── icn_blue_indicator.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── icn_blue_indicator.svg │ │ │ │ │ ├── icn_check_filled.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── icn_check_filled.svg │ │ │ │ │ ├── icn_clear_stamp.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── icn_clear_stamp.svg │ │ │ │ │ ├── icn_orange_indicator.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── icn_orange_indicator.svg │ │ │ │ │ ├── icn_pink_indicator.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── icn_pink_indicator.svg │ │ │ │ │ ├── icn_purple_calendar.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── icn_purple_calendar.svg │ │ │ │ │ └── icn_purple_category.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── icn_purple_category.svg │ │ │ │ ├── Diary │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── icon_close_white.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── icon_close_white.svg │ │ │ │ │ ├── icon_guide.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── icon_guide.svg │ │ │ │ │ ├── img_arrow_left_diary.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_arrow_left_diary.svg │ │ │ │ │ ├── img_arrow_right_diary.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_arrow_right_diary.svg │ │ │ │ │ ├── img_character_diary_guide.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── img_character_diary_guide.png │ │ │ │ │ │ ├── img_character_diary_guide@2x.png │ │ │ │ │ │ └── img_character_diary_guide@3x.png │ │ │ │ │ ├── img_memory_light.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── img_memory_light.png │ │ │ │ │ │ ├── img_memory_light@2x.png │ │ │ │ │ │ └── img_memory_light@3x.png │ │ │ │ │ └── img_sparkle.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_sparkle.svg │ │ │ │ ├── Home │ │ │ │ │ ├── .DS_Store │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── btn_change_character.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── btn_change_character.svg │ │ │ │ │ ├── btn_change_title.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── btn_change_title.svg │ │ │ │ │ ├── btn_chat.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── btn_chat.svg │ │ │ │ │ ├── btn_diary_home.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── btn_diary_home.svg │ │ │ │ │ ├── btn_orbRecommendation_home.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── btn_orbRecommendation_home.svg │ │ │ │ │ ├── btn_recommend.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── btn_recommend.svg │ │ │ │ │ ├── btn_share.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── btn_share.svg │ │ │ │ │ ├── icon_close.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── icon_close.svg │ │ │ │ │ ├── img_compass.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_compass.svg │ │ │ │ │ ├── img_fire.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_fire.svg │ │ │ │ │ └── img_home_background.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── img_home_background.jpg │ │ │ │ │ │ ├── img_home_background@2x.png │ │ │ │ │ │ └── img_home_background@3x.png │ │ │ │ ├── Login │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── img_apple_logo.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── apple_logo_img.svg │ │ │ │ │ ├── img_kakao_logo.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── kakao_logo_img.svg │ │ │ │ │ └── img_orb_logo_login.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_orb_logo_login.svg │ │ │ │ ├── MemoryLight │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── icon_share.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── icon_share.svg │ │ │ │ │ └── img_recommend_category.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_recommend_category.svg │ │ │ │ ├── MyPage │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── btn_character.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── btn_character.png │ │ │ │ │ │ ├── btn_character@2x.png │ │ │ │ │ │ └── btn_character@3x.png │ │ │ │ │ ├── btn_coupon.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── btn_coupon.png │ │ │ │ │ │ ├── btn_coupon@2x.png │ │ │ │ │ │ └── btn_coupon@3x.png │ │ │ │ │ ├── btn_diary.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── btn_diary.svg │ │ │ │ │ ├── btn_setting.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── btn_setting.png │ │ │ │ │ │ ├── btn_setting@2x.png │ │ │ │ │ │ └── btn_setting@3x.png │ │ │ │ │ ├── btn_title.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── btn_title.png │ │ │ │ │ │ ├── btn_title@2x.png │ │ │ │ │ │ └── btn_title@3x.png │ │ │ │ │ ├── img_crown_tag.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_crown_tag.svg │ │ │ │ │ ├── img_flag.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_flag.svg │ │ │ │ │ ├── img_lock.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_lock.svg │ │ │ │ │ └── img_title_frame.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_title_frame.svg │ │ │ │ ├── Mypage │ │ │ │ │ └── img_new_tag.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_new_tag.svg │ │ │ │ ├── ORBRecommendation │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── icn_orbRecommendationMain_external_link.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── icn_orbRecommendationMain_external_link.svg │ │ │ │ │ ├── icn_orbRecommendationMain_message.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── icn_orbRecommendationMain_message.svg │ │ │ │ │ └── icn_orbRecommendationMain_title.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── icn_orbRecommendationMain_title.svg │ │ │ │ ├── Onboarding │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── btn_checked.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── btn_checked.svg │ │ │ │ │ ├── btn_unchecked.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── btn_unchecked.svg │ │ │ │ │ ├── img_optional.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_optional.svg │ │ │ │ │ └── img_required.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_required.svg │ │ │ │ ├── PlaceInfoPopup │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── btn_placeInfoPopup_close.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── btn_placeInfoPopup_close.svg │ │ │ │ │ ├── icn_placeInfoPopup_tooltip.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── icn_placeInfoPopup_tooltip.svg │ │ │ │ │ └── icn_placeInfoTooltip_orbLogo.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── icn_placeInfoTooltip_orbLogo.svg │ │ │ │ ├── PlaceList │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── icn_placeList_expendableCellChevron.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── icn_placeList_expendableCellChevron.svg │ │ │ │ ├── Profile │ │ │ │ │ └── Contents.json │ │ │ │ ├── QuestList │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── icn_questList_cafe.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── Frame 1261161495.svg │ │ │ │ │ ├── icn_questList_checkBox.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── icn_questList_checkBox.svg │ │ │ │ │ ├── icn_questList_dday_bubble.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── Rectangle 509268.svg │ │ │ │ │ ├── icn_questList_expendableCellChevron.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── icn_placeList_expendableCellChevron.svg │ │ │ │ │ ├── icn_questList_giftBox.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── icn_questList_giftBox.svg │ │ │ │ │ ├── icn_questList_park.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── 🏞️.svg │ │ │ │ │ ├── icn_questList_restaurant.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── 🍽️.svg │ │ │ │ │ ├── icn_questList_show.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── 🤹🏻‍♀️.svg │ │ │ │ │ └── img_quest.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_quest.svg │ │ │ │ ├── QuestMap │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── btn_dot_scope.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ios_dot_scope.svg │ │ │ │ │ ├── icn_questMap_circle_in_whiteBorder.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── icn_circle_in_whiteBorder.svg │ │ │ │ │ ├── icn_questMap_navermapLocationOverlay_subIcon 1.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── icn_navermapLocationOverlay_subIcon.svg │ │ │ │ │ ├── icn_questMap_placeMarker.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── icn_questMap_placeMarker.svg │ │ │ │ │ ├── icn_reload_arrow.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── icn_reload_arrow.svg │ │ │ │ │ ├── icon_list_bullet.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── icon_list_bullet.svg │ │ │ │ │ ├── icon_place_marker.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── icon_place_marker.svg │ │ │ │ │ ├── img_category_cafe.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_category_cafe.svg │ │ │ │ │ ├── img_category_culture.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_category_culture.svg │ │ │ │ │ ├── img_category_park.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_category_park.svg │ │ │ │ │ ├── img_category_restaurant.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_category_restaurant.svg │ │ │ │ │ └── img_category_sports.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_category_sports.svg │ │ │ │ ├── QuestQR │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── icn_chevron_left.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── icn_chevron_left.svg │ │ │ │ │ └── icn_square_dashed_cornerLeft.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── icn_square_dashed_cornerLeft.svg │ │ │ │ ├── Setting │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── icon_arrow.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── icon_arrow.svg │ │ │ │ │ ├── img_ cogwheel.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_ cogwheel.svg │ │ │ │ │ ├── img_chat.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_chat.svg │ │ │ │ │ ├── img_clock.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_clock.svg │ │ │ │ │ ├── img_diary_time_character.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── img_diary_time_character.png │ │ │ │ │ │ ├── img_diary_time_character@2x.png │ │ │ │ │ │ └── img_diary_time_character@3x.png │ │ │ │ │ └── img_loudspeaker.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_loudspeaker.svg │ │ │ │ ├── Splash │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── img_orb_logo_splash.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_orb_logo_splash.svg │ │ │ │ ├── TabBar │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── icn_tabBar_home_selected.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── icn_tabBar_home_selected.png │ │ │ │ │ │ ├── icn_tabBar_home_selected@2x.png │ │ │ │ │ │ └── icn_tabBar_home_selected@3x.png │ │ │ │ │ ├── icn_tabBar_home_unselected.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── icn_tabBar_home_unselected.png │ │ │ │ │ │ ├── icn_tabBar_home_unselected@2x.png │ │ │ │ │ │ └── icn_tabBar_home_unselected@3x.png │ │ │ │ │ ├── icn_tabBar_my_selected.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── icn_tabBar_my_selected.png │ │ │ │ │ │ ├── icn_tabBar_my_selected@2x.png │ │ │ │ │ │ └── icn_tabBar_my_selected@3x.png │ │ │ │ │ ├── icn_tabBar_my_unselected.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── icn_tabBar_my_unselected.png │ │ │ │ │ │ ├── icn_tabBar_my_unselected@2x.png │ │ │ │ │ │ └── icn_tabBar_my_unselected@3x.png │ │ │ │ │ └── icn_tabBar_orbLogo.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── icn_tabBar_orbLogo.svg │ │ │ │ ├── backBarButton.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── backBarButton.svg │ │ │ │ ├── img_emptyCase_nova.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── img_emptyCase_nova.png │ │ │ │ └── ofrAlert │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── ios_ofrAlert_xmark.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── ios_ofrAlert_xmark.svg │ │ │ ├── Fonts │ │ │ │ ├── Optician-Sans.otf │ │ │ │ ├── Pretendard-Black.otf │ │ │ │ ├── Pretendard-Bold.otf │ │ │ │ ├── Pretendard-ExtraBold.otf │ │ │ │ ├── Pretendard-ExtraLight.otf │ │ │ │ ├── Pretendard-Light.otf │ │ │ │ ├── Pretendard-Medium.otf │ │ │ │ ├── Pretendard-Regular.otf │ │ │ │ ├── Pretendard-SemiBold.otf │ │ │ │ └── Pretendard-Thin.otf │ │ │ ├── Info.plist │ │ │ ├── Info_Dev.plist │ │ │ └── Lotties │ │ │ │ ├── loading1.json │ │ │ │ └── loading2.json │ │ └── SupportingFiles │ │ │ └── Base.lproj │ │ │ └── LaunchScreen.storyboard │ ├── Network │ │ ├── Adventure │ │ │ ├── AdventureAPI.swift │ │ │ ├── AdventureService.swift │ │ │ └── DTO │ │ │ │ ├── Request │ │ │ │ ├── AdventuresPlaceAuthenticationRequestDTO.swift │ │ │ │ └── AdventuresQRAuthenticationRequestDTO.swift │ │ │ │ └── Response │ │ │ │ ├── AdventureInfoResponseDTO.swift │ │ │ │ ├── AdventuresPlaceAuthenticationResponsetDTO.swift │ │ │ │ └── AdventuresQRAuthenticationResponseDTO.swift │ │ ├── Auth │ │ │ ├── AuthAPI.swift │ │ │ ├── AuthService.swift │ │ │ └── DTO │ │ │ │ ├── Request │ │ │ │ └── SocialLoginRequestDTO.swift │ │ │ │ └── Response │ │ │ │ ├── RefreshTokenResponseDTO.swift │ │ │ │ └── SocialLoginResponseDTO.swift │ │ ├── Base │ │ │ ├── .gitkeep │ │ │ ├── BaseService.swift │ │ │ ├── BaseTargetType.swift │ │ │ ├── ErrorResponseDTO.swift │ │ │ ├── MoyaPlugin.swift │ │ │ ├── NetworkResult.swift │ │ │ ├── NetworkResultError.swift │ │ │ ├── NetworkResultHandler.swift │ │ │ └── NetworkService.swift │ │ ├── Character │ │ │ ├── CharacterAPI.swift │ │ │ ├── CharacterService.swift │ │ │ └── DTO │ │ │ │ └── Response │ │ │ │ ├── CharacterChoosingResponseDTO.swift │ │ │ │ ├── CharacterDetailResponseDTO.swift │ │ │ │ ├── CharacterListResponseDTO.swift │ │ │ │ ├── CharacterMotionResponseDTO.swift │ │ │ │ └── StartingCharacterResponseDTO.swift │ │ ├── CharacterChat │ │ │ ├── CharacterChatAPI.swift │ │ │ ├── CharacterChatService.swift │ │ │ └── DTO │ │ │ │ ├── Request │ │ │ │ └── CharacterChatPostRequestDTO.swift │ │ │ │ └── Response │ │ │ │ ├── CharacterChatGetResponseDTO.swift │ │ │ │ ├── CharacterChatPostResponseDTO.swift │ │ │ │ └── CharacterChatReadGetResponseDTO.swift │ │ ├── Coupon │ │ │ ├── CouponAPI.swift │ │ │ ├── CouponService.swift │ │ │ └── DTO │ │ │ │ ├── Request │ │ │ │ └── CouponRedemptionRequestDTO.swift │ │ │ │ └── Response │ │ │ │ ├── CouponListResponseDTO.swift │ │ │ │ └── CouponRedemptionResponseDTO.swift │ │ ├── CourseQuest │ │ │ ├── CourseQuestDetailAPI.swift │ │ │ ├── CourseQuestDetailService.swift │ │ │ └── DTO │ │ │ │ └── Response │ │ │ │ └── CourseQuestDetailResponseDTO.swift │ │ ├── Diary │ │ │ ├── DTO │ │ │ │ └── Response │ │ │ │ │ ├── DiaryCheckStatusResponseDTO.swift │ │ │ │ │ ├── DiaryColorsResponseDTO.swift │ │ │ │ │ ├── DiaryInitialDateResponseDTO.swift │ │ │ │ │ └── DiaryResponseDTO.swift │ │ │ ├── DiaryAPI.swift │ │ │ └── DiaryService.swift │ │ ├── DiarySetting │ │ │ ├── DTO │ │ │ │ └── Response │ │ │ │ │ └── DiarySettingCheckedResponseDTO.swift │ │ │ ├── DiarySettingAPI.swift │ │ │ └── DiarySettingService.swift │ │ ├── Emblem │ │ │ ├── DTO │ │ │ │ └── Response │ │ │ │ │ ├── ChangeEmblemResponseDTO.swift │ │ │ │ │ ├── EmblemInfoResponseDTO.swift │ │ │ │ │ └── EmblemListResponseDTO.swift │ │ │ ├── EmblemAPI.swift │ │ │ └── EmblemService.swift │ │ ├── MinimumSupportedVersion │ │ │ ├── DTO │ │ │ │ └── MinimumSupportedVersionResponseDTO.swift │ │ │ ├── MinimumSupportedVersionAPI.swift │ │ │ └── MinimumSupportedVersionService.swift │ │ ├── Nickname │ │ │ ├── DTO │ │ │ │ └── Response │ │ │ │ │ └── NicknameCheckResponseDTO.swift │ │ │ ├── NicknameAPI.swift │ │ │ └── NicknameService.swift │ │ ├── Notice │ │ │ ├── DTO │ │ │ │ └── Response │ │ │ │ │ └── NoticeResponseDTO.swift │ │ │ ├── NoticeAPI.swift │ │ │ └── NoticeService.swift │ │ ├── ORBRecommendation │ │ │ ├── DTO │ │ │ │ ├── Request │ │ │ │ │ └── ORBRecommendationChatRequestDTO.swift │ │ │ │ └── Response │ │ │ │ │ ├── ORBRecommendationChatResponseDTO.swift │ │ │ │ │ ├── ORBRecommendationFixedPhraseResponseDTO.swift │ │ │ │ │ └── ORBRecommendationPlacesResponseDTO.swift │ │ │ ├── ORBRecommendationAPI.swift │ │ │ └── ORBRecommendationService.swift │ │ ├── Place │ │ │ ├── DTO │ │ │ │ ├── Request │ │ │ │ │ └── RegisteredPlaceRequestDTO.swift │ │ │ │ └── Responce │ │ │ │ │ └── RegisteredPlaceResponseDTO.swift │ │ │ ├── PlaceAPI.swift │ │ │ └── PlaceService.swift │ │ ├── Profile │ │ │ ├── DTO │ │ │ │ ├── Request │ │ │ │ │ ├── DeleteAccountRequestDTO.swift │ │ │ │ │ ├── MarketingConsentRequestDTO.swift │ │ │ │ │ └── ProfileUpdateRequestDTO.swift │ │ │ │ └── Response │ │ │ │ │ ├── DeleteAccountResponseDTO.swift │ │ │ │ │ └── UserInfoResponseDTO.swift │ │ │ ├── ProfileAPI.swift │ │ │ └── ProfileService.swift │ │ ├── PushNotification │ │ │ ├── DTO │ │ │ │ └── Request │ │ │ │ │ └── FcmTokenRequestDTO.swift │ │ │ ├── PushNotificationAPI.swift │ │ │ └── PushNotificationService.swift │ │ ├── Quest │ │ │ ├── DTO │ │ │ │ └── Response │ │ │ │ │ └── QuestInfoResponseDTO.swift │ │ │ ├── QuestAPI.swift │ │ │ └── QuestService.swift │ │ └── QuestList │ │ │ ├── DTO │ │ │ └── Response │ │ │ │ └── QuestListResponseDTO.swift │ │ │ ├── QuestListAPI.swift │ │ │ └── QuestListService.swift │ ├── Offroad-iOS.entitlements │ └── Presentation │ │ ├── Character │ │ ├── ChoosingCharacter │ │ │ ├── .gitkeep │ │ │ ├── View │ │ │ │ ├── ChoosingCharacterCell.swift │ │ │ │ └── ChoosingCharacterView.swift │ │ │ └── ViewController │ │ │ │ └── ChoosingCharacterViewController.swift │ │ └── CompleteChoosingCharacter │ │ │ ├── .gitkeep │ │ │ ├── View │ │ │ └── CompleteChoosingCharacterView.swift │ │ │ └── ViewController │ │ │ └── CompleteChoosingCharacterViewController.swift │ │ ├── Chat │ │ ├── CharacterChat │ │ │ ├── ORBCharacterChatManager.swift │ │ │ ├── ViewControllers │ │ │ │ └── ORBCharacterChatViewController.swift │ │ │ └── Views │ │ │ │ ├── ORBCharacterChatBox.swift │ │ │ │ ├── ORBCharacterChatView.swift │ │ │ │ └── ORBCharacterChatWindow.swift │ │ └── ChatLog │ │ │ ├── Model │ │ │ ├── CharacterChatItem.swift │ │ │ └── CharacterChatMessageItem.swift │ │ │ ├── ViewControllers │ │ │ └── CharacterChatLogViewController.swift │ │ │ └── Views │ │ │ ├── CharacterChatLogView.swift │ │ │ ├── RecommendationButtonInChatLogCell.swift │ │ │ └── ReusableView │ │ │ ├── CharacterChatLogFooter.swift │ │ │ ├── ChatLogCellCharacter.swift │ │ │ ├── ChatLogCellCharacterLoading.swift │ │ │ ├── ChatLogCellCharacterRecommendation.swift │ │ │ └── ChatLogCellUser.swift │ │ ├── Common │ │ ├── .gitkeep │ │ ├── Model │ │ │ └── PushNotificationRedirectModel.swift │ │ └── UIComponents │ │ │ └── .gitkeep │ │ ├── CourseQuest │ │ ├── Components │ │ │ ├── CourseQuestPlaceCell.swift │ │ │ ├── CourseQuestToastManager.swift │ │ │ ├── CourseQuestToastView.swift │ │ │ └── CourseQuestToastWindow.swift │ │ ├── Models │ │ │ └── CourseQuestPlace.swift │ │ ├── ViewControllers │ │ │ └── CourseQuestViewController.swift │ │ └── Views │ │ │ ├── CourseQuestMapView.swift │ │ │ └── CourseQuestView.swift │ │ ├── Diary │ │ ├── Cell │ │ │ ├── CustomDiaryCalendarCell.swift │ │ │ └── GuideCollectionViewCell.swift │ │ ├── Modal │ │ │ └── MonthPickerModalView.swift │ │ ├── MyDiaryManager │ │ │ └── MyDiaryManager.swift │ │ ├── View │ │ │ ├── DiaryGuideView.swift │ │ │ └── DiaryView.swift │ │ ├── ViewController │ │ │ ├── DiaryGuideViewController.swift │ │ │ ├── DiaryViewController.swift │ │ │ └── MonthPickerModalViewController.swift │ │ └── ViewModel │ │ │ └── DiaryViewModel.swift │ │ ├── Home │ │ ├── Component │ │ │ ├── CustomAlmostDoneProgressView.swift │ │ │ ├── CustomQuestView.swift │ │ │ ├── CustomRecentProgressView.swift │ │ │ └── ShareableImageProvider.swift │ │ ├── TitlePopup │ │ │ ├── Model │ │ │ │ └── TitleModel.swift │ │ │ ├── View │ │ │ │ ├── Cell │ │ │ │ │ └── TitleCollectionViewCell.swift │ │ │ │ └── TitlePopupView.swift │ │ │ └── ViewController │ │ │ │ └── TitlePopupViewController.swift │ │ ├── View │ │ │ └── HomeView.swift │ │ └── ViewController │ │ │ └── HomeViewController.swift │ │ ├── Login │ │ ├── AuthManager │ │ │ ├── AppleAuthManager.swift │ │ │ ├── KakaoAuthManager.swift │ │ │ ├── KeychainManager.swift │ │ │ └── TokenIntercepter.swift │ │ ├── Model │ │ │ └── UserModel.swift │ │ ├── View │ │ │ └── LoginView.swift │ │ └── ViewController │ │ │ └── LoginViewController.swift │ │ ├── MemoryLight │ │ ├── Cell │ │ │ └── MemoryLightCollectionViewCell.swift │ │ ├── Model │ │ │ └── MemoryLightModel.swift │ │ ├── View │ │ │ └── MemoryLightView.swift │ │ ├── ViewController │ │ │ └── MemoryLightViewController.swift │ │ └── ViewModel │ │ │ └── MemoryLightViewModel.swift │ │ ├── MyPage │ │ ├── CharacterList │ │ │ ├── .gitkeep │ │ │ ├── Cell │ │ │ │ ├── CharacterDetailCell.swift │ │ │ │ └── CharacterListCell.swift │ │ │ ├── View │ │ │ │ ├── CharacterDetailView.swift │ │ │ │ └── CharacterListView.swift │ │ │ ├── ViewController │ │ │ │ ├── CharacterDetailViewController.swift │ │ │ │ └── CharacterListViewController.swift │ │ │ └── ViewModel │ │ │ │ ├── CharacterDetailViewModel.swift │ │ │ │ └── CharacterListViewModel.swift │ │ ├── Component │ │ │ ├── MyPageCustomButton.swift │ │ │ └── MyPageScrollView.swift │ │ ├── Coupon │ │ │ ├── .gitkeep │ │ │ ├── Cell │ │ │ │ └── CouponCell.swift │ │ │ ├── View │ │ │ │ ├── CouponDetailView.swift │ │ │ │ └── CouponListView.swift │ │ │ └── ViewController │ │ │ │ ├── CouponCollectionViewController.swift │ │ │ │ ├── CouponDetailViewController.swift │ │ │ │ └── CouponListViewController.swift │ │ ├── Settings │ │ │ ├── Component │ │ │ │ └── SettingBase │ │ │ │ │ ├── Cell │ │ │ │ │ └── SettingBaseCollectionViewCell.swift │ │ │ │ │ └── SettingBaseView.swift │ │ │ ├── CustomerInquiry │ │ │ │ ├── View │ │ │ │ │ └── CustomerInquiryView.swift │ │ │ │ └── ViewController │ │ │ │ │ └── CustomerInquiryViewController.swift │ │ │ ├── DeleteAccount │ │ │ │ ├── .gitkeep │ │ │ │ ├── View │ │ │ │ │ └── DeleteAccountView.swift │ │ │ │ └── ViewController │ │ │ │ │ └── DeleteAccountViewController.swift │ │ │ ├── DeveloperMode │ │ │ │ ├── Model │ │ │ │ │ └── DeveloperModeSettingModel.swift │ │ │ │ ├── ViewControllers │ │ │ │ │ └── DeveloperModeViewController.swift │ │ │ │ └── Views │ │ │ │ │ ├── DeveloperModeNormalCell.swift │ │ │ │ │ ├── DeveloperModeSwitchCell.swift │ │ │ │ │ └── DeveloperModeView.swift │ │ │ ├── DiaryTime │ │ │ │ ├── Enum │ │ │ │ │ └── TimePeriod.swift │ │ │ │ ├── View │ │ │ │ │ └── DiaryTimeView.swift │ │ │ │ └── ViewController │ │ │ │ │ └── DiaryTimeViewController.swift │ │ │ ├── Logout │ │ │ │ ├── View │ │ │ │ │ └── LogoutView.swift │ │ │ │ └── ViewController │ │ │ │ │ └── LogoutViewController.swift │ │ │ ├── MarketingConsent │ │ │ │ ├── .gitkeep │ │ │ │ └── ViewController │ │ │ │ │ └── MarketingConsentViewController.swift │ │ │ ├── Model │ │ │ │ └── SettingBaseModel.swift │ │ │ ├── Notice │ │ │ │ ├── NoticePost │ │ │ │ │ ├── View │ │ │ │ │ │ └── NoticePostView.swift │ │ │ │ │ └── ViewController │ │ │ │ │ │ └── NoticePostViewController.swift │ │ │ │ ├── View │ │ │ │ │ └── NoticeView.swift │ │ │ │ └── ViewController │ │ │ │ │ └── NoticeViewController.swift │ │ │ ├── View │ │ │ │ └── SettingView.swift │ │ │ └── ViewController │ │ │ │ └── SettingViewController.swift │ │ ├── Title │ │ │ ├── .gitkeep │ │ │ ├── Model │ │ │ │ └── CollectedTitleModel.swift │ │ │ ├── View │ │ │ │ ├── Cell │ │ │ │ │ └── CollectedTitleCollectionViewCell.swift │ │ │ │ └── CollectedTitlesView.swift │ │ │ └── ViewController │ │ │ │ └── CollectedTitlesViewController.swift │ │ ├── View │ │ │ └── MyPageView.swift │ │ └── ViewControllers │ │ │ └── MyPageViewController.swift │ │ ├── Nickname │ │ ├── View │ │ │ ├── BirthView.swift │ │ │ ├── GenderView.swift │ │ │ └── NicknameView.swift │ │ └── ViewController │ │ │ ├── BirthViewController.swift │ │ │ ├── GenderViewController.swift │ │ │ └── NicknameViewController.swift │ │ ├── ORBRecommendation │ │ ├── chat │ │ │ ├── Custom Transition │ │ │ │ ├── ORBRecommendationChatPresentationFloatingView.swift │ │ │ │ ├── ORBRecommendationChatViewDismissingTransition.swift │ │ │ │ ├── ORBRecommendationChatViewPresentingTransition.swift │ │ │ │ └── ORBRecommendationViewPresentationController.swift │ │ │ ├── DiffableDataSource │ │ │ │ └── ORBRecommendationChatDataSource.swift │ │ │ ├── Model │ │ │ │ └── ORBRecommendationChatReplyTexts.swift │ │ │ ├── ViewControllers │ │ │ │ └── ORBRecommendationChatViewController.swift │ │ │ └── Views │ │ │ │ ├── ORBRecommendationChatBackgroundView.swift │ │ │ │ ├── ORBRecommendationChatExampleQuestion.swift │ │ │ │ └── ORBRecommendationChatView.swift │ │ ├── main │ │ │ ├── ViewController │ │ │ │ └── ORBRecommendationMainViewController.swift │ │ │ └── Views │ │ │ │ ├── ORBRecommendationEmptyCaseView.swift │ │ │ │ ├── ORBRecommendationMainView.swift │ │ │ │ ├── ORBRecommendationMainViewToolBar.swift │ │ │ │ ├── ORBRecommendationMessageButton.swift │ │ │ │ └── ORBRecommendedContentView.swift │ │ ├── model │ │ │ └── ORBRecommendationPlaceModel.swift │ │ └── order │ │ │ ├── ORBRecommendationOrderView.swift │ │ │ └── ORBRecommendationOrderViewController.swift │ │ ├── Onboarding │ │ ├── Model │ │ │ └── TermsModel.swift │ │ ├── View │ │ │ ├── Cell │ │ │ │ └── TermsListTableViewCell.swift │ │ │ └── TermsConsentView.swift │ │ └── ViewController │ │ │ ├── TermsConsentPopupViewController.swift │ │ │ └── TermsConsentViewController.swift │ │ ├── PlaceList │ │ ├── .gitkeep │ │ ├── Model │ │ │ └── PlaceModel.swift │ │ ├── ViewControllers │ │ │ ├── PlaceListCollectionViewController.swift │ │ │ └── PlaceListViewController.swift │ │ └── Views │ │ │ ├── PlaceCollectionViewCell.swift │ │ │ ├── PlaceListCell.swift │ │ │ ├── PlaceListCollectionView.swift │ │ │ └── PlaceListView.swift │ │ ├── QuestList │ │ ├── .gitkeep │ │ ├── Models │ │ │ └── .gitkeep │ │ ├── ViewControllers │ │ │ └── QuestListViewControllers.swift │ │ └── Views │ │ │ ├── Components │ │ │ ├── CourseQuestCategoryIcon.swift │ │ │ ├── CourseQuestCollectionViewCell.swift │ │ │ ├── IconLabelStackView.swift │ │ │ └── QuestListEmptyPlaceholder.swift │ │ │ ├── QuestListCell.swift │ │ │ ├── QuestListCollectionView.swift │ │ │ ├── QuestListEmptyPlaceholder.swift │ │ │ └── QuestListView.swift │ │ ├── QuestMap │ │ ├── .gitkeep │ │ ├── Model │ │ │ └── AdventureResult.swift │ │ ├── UIComponents │ │ │ ├── ORBMapListButton.swift │ │ │ └── PlaceMapMarker.swift │ │ ├── ViewControllers │ │ │ └── AdventureMapViewController.swift │ │ ├── ViewModel │ │ │ └── AdventureMapViewModel.swift │ │ └── Views │ │ │ └── AdventureMapView.swift │ │ ├── QuestQR │ │ ├── .gitkeep │ │ ├── ViewControllers │ │ │ └── QuestQRViewController.swift │ │ └── Views │ │ │ ├── AVCameraPreview.swift │ │ │ └── QuestQRView.swift │ │ ├── QuestResult │ │ ├── ViewControllers │ │ │ └── QuestResultViewController.swift │ │ └── Views │ │ │ └── QuestResultView.swift │ │ ├── Splash │ │ ├── .gitkeep │ │ ├── View │ │ │ └── SplashView.swift │ │ └── ViewController │ │ │ └── SplashViewController.swift │ │ ├── TabBar │ │ ├── ViewControllers │ │ │ ├── OffroadTabBarController.swift │ │ │ └── OffroadTabBarViewController.swift │ │ └── Views │ │ │ └── ORBTabBarShapeView.swift │ │ └── ViewController.swift ├── Offroad-iOSTests │ └── Offroad_iOSTests.swift ├── Offroad-iOSUITests │ ├── Offroad_iOSUITests.swift │ └── Offroad_iOSUITestsLaunchTests.swift ├── Podfile └── Podfile.lock └── README.md /.github/ISSUE_TEMPLATE/-issue-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/.github/ISSUE_TEMPLATE/-issue-template.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/.gitignore -------------------------------------------------------------------------------- /Offroad-iOS/NotificationServiceExtension.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/NotificationServiceExtension.entitlements -------------------------------------------------------------------------------- /Offroad-iOS/NotificationServiceExtension/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/NotificationServiceExtension/Info.plist -------------------------------------------------------------------------------- /Offroad-iOS/NotificationServiceExtension/NotificationService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/NotificationServiceExtension/NotificationService.swift -------------------------------------------------------------------------------- /Offroad-iOS/NotificationServiceExtension/NotificationServiceExtensionDebug.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/NotificationServiceExtension/NotificationServiceExtensionDebug.entitlements -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS.xcodeproj/xcshareddata/xcschemes/ORB.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS.xcodeproj/xcshareddata/xcschemes/ORB.xcscheme -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS.xcodeproj/xcshareddata/xcschemes/ORB_Dev.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS.xcodeproj/xcshareddata/xcschemes/ORB_Dev.xcscheme -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Application/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Application/AppDelegate.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Application/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Application/SceneDelegate.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Amplitude/AmplitudeManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Amplitude/AmplitudeManager.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Components/AppUtility.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Components/AppUtility.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Components/Chat/ChatTextDisplay/ChatTextDisplayView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Components/Chat/ChatTextDisplay/ChatTextDisplayView.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Components/Chat/ChatTextInput/ChatTextInputView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Components/Chat/ChatTextInput/ChatTextInputView.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Components/CollectionView/EmptyStateCollectionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Components/CollectionView/EmptyStateCollectionView.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Components/CustomButton/NavigationPopButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Components/CustomButton/NavigationPopButton.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Components/CustomButton/ShrinkableButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Components/CustomButton/ShrinkableButton.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Components/CustomButton/StateToggleButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Components/CustomButton/StateToggleButton.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Components/CustomView/CustomIntensityBlurView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Components/CustomView/CustomIntensityBlurView.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Components/CustomView/MemoryLightGradientView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Components/CustomView/MemoryLightGradientView.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Components/CustomView/ShrinkableCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Components/CustomView/ShrinkableCollectionViewCell.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Components/CustomView/TermsConsentPopupView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Components/CustomView/TermsConsentPopupView.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Components/NavigationController/ChatLogNavigationAnimator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Components/NavigationController/ChatLogNavigationAnimator.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Components/NavigationController/ORBNavigationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Components/NavigationController/ORBNavigationController.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Components/ORBMap/ORBMapView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Components/ORBMap/ORBMapView.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Components/ORBMap/PlaceInfoTooltip/PlaceInfoTooltip.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Components/ORBMap/PlaceInfoTooltip/PlaceInfoTooltip.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Components/ORBMap/PlaceInfoTooltip/PlaceInfoTooltipHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Components/ORBMap/PlaceInfoTooltip/PlaceInfoTooltipHelper.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Components/ORBRecommendationGradient/ORBRecommendationBaseBackground.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Components/ORBRecommendationGradient/ORBRecommendationBaseBackground.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Components/ORBRecommendationGradient/ORBRecommendationGradientLayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Components/ORBRecommendationGradient/ORBRecommendationGradientLayer.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Components/ORBRecommendationGradient/ORBRecommendationGradientStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Components/ORBRecommendationGradient/ORBRecommendationGradientStyle.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Components/Overlay/Alert/AlertView/ORBAlertBaseView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Components/Overlay/Alert/AlertView/ORBAlertBaseView.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Components/Overlay/Alert/AlertView/ORBAlertViewAcquiredEmblem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Components/Overlay/Alert/AlertView/ORBAlertViewAcquiredEmblem.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Components/Overlay/Alert/AlertView/ORBAlertViewCouponRedemptionFailure.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Components/Overlay/Alert/AlertView/ORBAlertViewCouponRedemptionFailure.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Components/Overlay/Alert/AlertView/ORBAlertViewExplorationResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Components/Overlay/Alert/AlertView/ORBAlertViewExplorationResult.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Components/Overlay/Alert/AlertView/ORBAlertViewMessageOnly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Components/Overlay/Alert/AlertView/ORBAlertViewMessageOnly.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Components/Overlay/Alert/AlertView/ORBAlertViewNormal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Components/Overlay/Alert/AlertView/ORBAlertViewNormal.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Components/Overlay/Alert/AlertView/ORBAlertViewScrollableContent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Components/Overlay/Alert/AlertView/ORBAlertViewScrollableContent.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Components/Overlay/Alert/AlertView/ORBAlertViewTextField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Components/Overlay/Alert/AlertView/ORBAlertViewTextField.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Components/Overlay/Alert/AlertView/ORBAlertViewTextFieldWithSubMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Components/Overlay/Alert/AlertView/ORBAlertViewTextFieldWithSubMessage.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Components/Overlay/Alert/EmblemPopupViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Components/Overlay/Alert/EmblemPopupViewController.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Components/Overlay/Alert/ORBAlertAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Components/Overlay/Alert/ORBAlertAction.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Components/Overlay/Alert/ORBAlertBackgroundView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Components/Overlay/Alert/ORBAlertBackgroundView.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Components/Overlay/Alert/ORBAlertButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Components/Overlay/Alert/ORBAlertButton.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Components/Overlay/Alert/ORBAlertController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Components/Overlay/Alert/ORBAlertController.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Components/Overlay/Alert/ORBAlertType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Components/Overlay/Alert/ORBAlertType.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Components/Overlay/Alert/ORBAlertViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Components/Overlay/Alert/ORBAlertViewModel.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Components/Overlay/Alert/Protocols/ORBAlertViewBaseUI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Components/Overlay/Alert/Protocols/ORBAlertViewBaseUI.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Components/Overlay/Alert/Protocols/ORBAlertViewType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Components/Overlay/Alert/Protocols/ORBAlertViewType.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Components/Overlay/Alert/Protocols/ORBPopup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Components/Overlay/Alert/Protocols/ORBPopup.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Components/Overlay/Loading/LoadingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Components/Overlay/Loading/LoadingView.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Components/Overlay/Loading/ScrollLoading.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Components/Overlay/Loading/ScrollLoading.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Components/Overlay/Loading/ScrollLoadingCollectionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Components/Overlay/Loading/ScrollLoadingCollectionView.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Components/Overlay/Loading/ScrollLoadingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Components/Overlay/Loading/ScrollLoadingView.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Components/Overlay/LogPrinter/LogPrinterManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Components/Overlay/LogPrinter/LogPrinterManager.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Components/Overlay/LogPrinter/LogPrinterView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Components/Overlay/LogPrinter/LogPrinterView.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Components/Overlay/LogPrinter/LogPrinterViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Components/Overlay/LogPrinter/LogPrinterViewController.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Components/Overlay/LogPrinter/LogPrinterWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Components/Overlay/LogPrinter/LogPrinterWindow.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Components/Overlay/LogPrinter/PrintLogInDevApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Components/Overlay/LogPrinter/PrintLogInDevApp.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Components/Overlay/ORBOverlayViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Components/Overlay/ORBOverlayViewController.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Components/Overlay/Toast/ORBToastManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Components/Overlay/Toast/ORBToastManager.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Components/Overlay/Toast/ORBToastView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Components/Overlay/Toast/ORBToastView.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Components/Overlay/Toast/ORBToastWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Components/Overlay/Toast/ORBToastWindow.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Components/Overlay/ZeroDurationAnimator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Components/Overlay/ZeroDurationAnimator.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Components/Overlay/ZeroDurationTransitionDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Components/Overlay/ZeroDurationTransitionDelegate.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Components/SegmentedControl/ORBSegmentedControl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Components/SegmentedControl/ORBSegmentedControl.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Components/SegmentedControl/ORBSegmentedControlButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Components/SegmentedControl/ORBSegmentedControlButton.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Extensions/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Extensions/Character+.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Extensions/LottieAnimationView+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Extensions/LottieAnimationView+.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Extensions/NSObject+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Extensions/NSObject+.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Extensions/SVGKImage+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Extensions/SVGKImage+.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Extensions/String+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Extensions/String+.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Extensions/UIButton+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Extensions/UIButton+.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Extensions/UICollectionView+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Extensions/UICollectionView+.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Extensions/UIColor+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Extensions/UIColor+.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Extensions/UIImage+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Extensions/UIImage+.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Extensions/UIImageView+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Extensions/UIImageView+.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Extensions/UILabel+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Extensions/UILabel+.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Extensions/UIScreen+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Extensions/UIScreen+.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Extensions/UIStackView+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Extensions/UIStackView+.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Extensions/UITabBar+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Extensions/UITabBar+.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Extensions/UITextField+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Extensions/UITextField+.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Extensions/UITextView+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Extensions/UITextView+.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Extensions/UIView+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Extensions/UIView+.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Extensions/UIViewController+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Extensions/UIViewController+.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Extensions/UIWindow+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Extensions/UIWindow+.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Extensions/UIWindowScene+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Extensions/UIWindowScene+.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Literals/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Literals/ColorLiterals.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Literals/ColorLiterals.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Literals/FontLiterals.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Literals/FontLiterals.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Literals/StringLiterals.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Literals/StringLiterals.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/MyInfoManager/MyInfoManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/MyInfoManager/MyInfoManager.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/NetworkMonitoring/NetworkMonitoringManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/NetworkMonitoring/NetworkMonitoringManager.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Protocols/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Protocols/ORBCenterLoadingStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Protocols/ORBCenterLoadingStyle.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Protocols/ORBEmptyCaseStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Protocols/ORBEmptyCaseStyle.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Protocols/ORBScrollLoadingStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Protocols/ORBScrollLoadingStyle.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Protocols/PlaceProtocols.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Protocols/PlaceProtocols.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Protocols/SVGFetchable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Protocols/SVGFetchable.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Protocols/Shrinkable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Protocols/Shrinkable.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/AppIcon.appiconset/AppIcon_Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/AppIcon.appiconset/AppIcon_Dark.png -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/AppIcon.appiconset/AppIcon_Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/AppIcon.appiconset/AppIcon_Light.png -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/AppIcon.appiconset/AppIcon_Tinted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/AppIcon.appiconset/AppIcon_Tinted.png -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/AppIcon_Dev.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/AppIcon_Dev.appiconset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/AppIcon_Dev.appiconset/ios_1024_1024_Dev 1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/AppIcon_Dev.appiconset/ios_1024_1024_Dev 1.jpg -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/AppIcon_Dev.appiconset/ios_1024_1024_Dev 2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/AppIcon_Dev.appiconset/ios_1024_1024_Dev 2.jpg -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/AppIcon_Dev.appiconset/ios_1024_1024_Dev.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/AppIcon_Dev.appiconset/ios_1024_1024_Dev.jpg -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Character/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Character/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Character/img_basic_indicator.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Character/img_basic_indicator.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Character/img_basic_indicator.imageset/img_basic_indicator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Character/img_basic_indicator.imageset/img_basic_indicator.svg -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Character/img_current_indicator.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Character/img_current_indicator.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Character/img_current_indicator.imageset/img_current_indicator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Character/img_current_indicator.imageset/img_current_indicator.svg -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Character/img_left_button.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Character/img_left_button.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Character/img_left_button.imageset/img_left_button.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Character/img_left_button.imageset/img_left_button.svg -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Character/img_right_button.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Character/img_right_button.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Character/img_right_button.imageset/img_right_button.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Character/img_right_button.imageset/img_right_button.svg -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/ChatView/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/ChatView/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/ChatView/icn_chatView_chevron_down.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/ChatView/icn_chatView_chevron_down.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/ChatView/icn_chatView_sendButton.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/ChatView/icn_chatView_sendButton.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/ChoosingCharacter/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/ChoosingCharacter/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/CollectedCharacters/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/CollectedCharacters/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/CollectedCharacters/check.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/CollectedCharacters/check.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/CollectedCharacters/check.imageset/icon-check-circle-line-mono.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/CollectedCharacters/check.imageset/icon-check-circle-line-mono.svg -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/CollectedTitles/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/CollectedTitles/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/CollectedTitles/icon_check_circle.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/CollectedTitles/icon_check_circle.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/CollectedTitles/icon_check_circle.imageset/icon_check_circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/CollectedTitles/icon_check_circle.imageset/icon_check_circle.svg -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/CollectedTitles/icon_lock.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/CollectedTitles/icon_lock.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/CollectedTitles/icon_lock.imageset/icon_lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/CollectedTitles/icon_lock.imageset/icon_lock.svg -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/CollectedTitles/img_tag.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/CollectedTitles/img_tag.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/CollectedTitles/img_tag.imageset/img_tag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/CollectedTitles/img_tag.imageset/img_tag.svg -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/CouponDetail/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/CouponDetail/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/CouponDetail/icn_couponDetail_keyAndLock.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/CouponDetail/icn_couponDetail_keyAndLock.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/CouponDetail/icn_couponDetail_ticket.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/CouponDetail/icn_couponDetail_ticket.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/CouponList/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/CouponList/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/CouponList/icn_couponList_checkmark.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/CouponList/icn_couponList_checkmark.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/CourseQuest/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/CourseQuest/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/CourseQuest/icnGreenIndicator.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/CourseQuest/icnGreenIndicator.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/CourseQuest/icnGreenIndicator.imageset/icnGreenIndicator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/CourseQuest/icnGreenIndicator.imageset/icnGreenIndicator.svg -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/CourseQuest/icnYellowIndicator.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/CourseQuest/icnYellowIndicator.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/CourseQuest/icnYellowIndicator.imageset/icnYellowIndicator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/CourseQuest/icnYellowIndicator.imageset/icnYellowIndicator.svg -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/CourseQuest/icn_blue_indicator.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/CourseQuest/icn_blue_indicator.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/CourseQuest/icn_blue_indicator.imageset/icn_blue_indicator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/CourseQuest/icn_blue_indicator.imageset/icn_blue_indicator.svg -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/CourseQuest/icn_check_filled.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/CourseQuest/icn_check_filled.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/CourseQuest/icn_check_filled.imageset/icn_check_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/CourseQuest/icn_check_filled.imageset/icn_check_filled.svg -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/CourseQuest/icn_clear_stamp.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/CourseQuest/icn_clear_stamp.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/CourseQuest/icn_clear_stamp.imageset/icn_clear_stamp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/CourseQuest/icn_clear_stamp.imageset/icn_clear_stamp.svg -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/CourseQuest/icn_orange_indicator.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/CourseQuest/icn_orange_indicator.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/CourseQuest/icn_orange_indicator.imageset/icn_orange_indicator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/CourseQuest/icn_orange_indicator.imageset/icn_orange_indicator.svg -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/CourseQuest/icn_pink_indicator.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/CourseQuest/icn_pink_indicator.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/CourseQuest/icn_pink_indicator.imageset/icn_pink_indicator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/CourseQuest/icn_pink_indicator.imageset/icn_pink_indicator.svg -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/CourseQuest/icn_purple_calendar.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/CourseQuest/icn_purple_calendar.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/CourseQuest/icn_purple_calendar.imageset/icn_purple_calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/CourseQuest/icn_purple_calendar.imageset/icn_purple_calendar.svg -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/CourseQuest/icn_purple_category.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/CourseQuest/icn_purple_category.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/CourseQuest/icn_purple_category.imageset/icn_purple_category.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/CourseQuest/icn_purple_category.imageset/icn_purple_category.svg -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Diary/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Diary/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Diary/icon_close_white.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Diary/icon_close_white.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Diary/icon_close_white.imageset/icon_close_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Diary/icon_close_white.imageset/icon_close_white.svg -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Diary/icon_guide.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Diary/icon_guide.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Diary/icon_guide.imageset/icon_guide.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Diary/icon_guide.imageset/icon_guide.svg -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Diary/img_arrow_left_diary.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Diary/img_arrow_left_diary.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Diary/img_arrow_left_diary.imageset/img_arrow_left_diary.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Diary/img_arrow_left_diary.imageset/img_arrow_left_diary.svg -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Diary/img_arrow_right_diary.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Diary/img_arrow_right_diary.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Diary/img_arrow_right_diary.imageset/img_arrow_right_diary.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Diary/img_arrow_right_diary.imageset/img_arrow_right_diary.svg -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Diary/img_character_diary_guide.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Diary/img_character_diary_guide.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Diary/img_memory_light.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Diary/img_memory_light.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Diary/img_memory_light.imageset/img_memory_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Diary/img_memory_light.imageset/img_memory_light.png -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Diary/img_memory_light.imageset/img_memory_light@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Diary/img_memory_light.imageset/img_memory_light@2x.png -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Diary/img_memory_light.imageset/img_memory_light@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Diary/img_memory_light.imageset/img_memory_light@3x.png -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Diary/img_sparkle.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Diary/img_sparkle.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Diary/img_sparkle.imageset/img_sparkle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Diary/img_sparkle.imageset/img_sparkle.svg -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Home/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Home/.DS_Store -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Home/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Home/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Home/btn_change_character.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Home/btn_change_character.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Home/btn_change_character.imageset/btn_change_character.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Home/btn_change_character.imageset/btn_change_character.svg -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Home/btn_change_title.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Home/btn_change_title.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Home/btn_change_title.imageset/btn_change_title.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Home/btn_change_title.imageset/btn_change_title.svg -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Home/btn_chat.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Home/btn_chat.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Home/btn_chat.imageset/btn_chat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Home/btn_chat.imageset/btn_chat.svg -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Home/btn_diary_home.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Home/btn_diary_home.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Home/btn_diary_home.imageset/btn_diary_home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Home/btn_diary_home.imageset/btn_diary_home.svg -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Home/btn_orbRecommendation_home.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Home/btn_orbRecommendation_home.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Home/btn_recommend.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Home/btn_recommend.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Home/btn_recommend.imageset/btn_recommend.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Home/btn_recommend.imageset/btn_recommend.svg -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Home/btn_share.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Home/btn_share.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Home/btn_share.imageset/btn_share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Home/btn_share.imageset/btn_share.svg -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Home/icon_close.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Home/icon_close.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Home/icon_close.imageset/icon_close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Home/icon_close.imageset/icon_close.svg -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Home/img_compass.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Home/img_compass.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Home/img_compass.imageset/img_compass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Home/img_compass.imageset/img_compass.svg -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Home/img_fire.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Home/img_fire.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Home/img_fire.imageset/img_fire.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Home/img_fire.imageset/img_fire.svg -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Home/img_home_background.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Home/img_home_background.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Home/img_home_background.imageset/img_home_background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Home/img_home_background.imageset/img_home_background.jpg -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Home/img_home_background.imageset/img_home_background@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Home/img_home_background.imageset/img_home_background@2x.png -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Home/img_home_background.imageset/img_home_background@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Home/img_home_background.imageset/img_home_background@3x.png -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Login/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Login/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Login/img_apple_logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Login/img_apple_logo.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Login/img_apple_logo.imageset/apple_logo_img.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Login/img_apple_logo.imageset/apple_logo_img.svg -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Login/img_kakao_logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Login/img_kakao_logo.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Login/img_kakao_logo.imageset/kakao_logo_img.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Login/img_kakao_logo.imageset/kakao_logo_img.svg -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Login/img_orb_logo_login.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Login/img_orb_logo_login.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Login/img_orb_logo_login.imageset/img_orb_logo_login.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Login/img_orb_logo_login.imageset/img_orb_logo_login.svg -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/MemoryLight/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/MemoryLight/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/MemoryLight/icon_share.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/MemoryLight/icon_share.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/MemoryLight/icon_share.imageset/icon_share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/MemoryLight/icon_share.imageset/icon_share.svg -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/MemoryLight/img_recommend_category.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/MemoryLight/img_recommend_category.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/MyPage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/MyPage/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/MyPage/btn_character.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/MyPage/btn_character.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/MyPage/btn_character.imageset/btn_character.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/MyPage/btn_character.imageset/btn_character.png -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/MyPage/btn_character.imageset/btn_character@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/MyPage/btn_character.imageset/btn_character@2x.png -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/MyPage/btn_character.imageset/btn_character@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/MyPage/btn_character.imageset/btn_character@3x.png -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/MyPage/btn_coupon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/MyPage/btn_coupon.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/MyPage/btn_coupon.imageset/btn_coupon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/MyPage/btn_coupon.imageset/btn_coupon.png -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/MyPage/btn_coupon.imageset/btn_coupon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/MyPage/btn_coupon.imageset/btn_coupon@2x.png -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/MyPage/btn_coupon.imageset/btn_coupon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/MyPage/btn_coupon.imageset/btn_coupon@3x.png -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/MyPage/btn_diary.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/MyPage/btn_diary.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/MyPage/btn_diary.imageset/btn_diary.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/MyPage/btn_diary.imageset/btn_diary.svg -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/MyPage/btn_setting.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/MyPage/btn_setting.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/MyPage/btn_setting.imageset/btn_setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/MyPage/btn_setting.imageset/btn_setting.png -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/MyPage/btn_setting.imageset/btn_setting@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/MyPage/btn_setting.imageset/btn_setting@2x.png -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/MyPage/btn_setting.imageset/btn_setting@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/MyPage/btn_setting.imageset/btn_setting@3x.png -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/MyPage/btn_title.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/MyPage/btn_title.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/MyPage/btn_title.imageset/btn_title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/MyPage/btn_title.imageset/btn_title.png -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/MyPage/btn_title.imageset/btn_title@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/MyPage/btn_title.imageset/btn_title@2x.png -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/MyPage/btn_title.imageset/btn_title@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/MyPage/btn_title.imageset/btn_title@3x.png -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/MyPage/img_crown_tag.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/MyPage/img_crown_tag.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/MyPage/img_crown_tag.imageset/img_crown_tag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/MyPage/img_crown_tag.imageset/img_crown_tag.svg -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/MyPage/img_flag.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/MyPage/img_flag.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/MyPage/img_flag.imageset/img_flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/MyPage/img_flag.imageset/img_flag.svg -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/MyPage/img_lock.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/MyPage/img_lock.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/MyPage/img_lock.imageset/img_lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/MyPage/img_lock.imageset/img_lock.svg -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/MyPage/img_title_frame.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/MyPage/img_title_frame.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/MyPage/img_title_frame.imageset/img_title_frame.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/MyPage/img_title_frame.imageset/img_title_frame.svg -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Mypage/img_new_tag.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Mypage/img_new_tag.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Mypage/img_new_tag.imageset/img_new_tag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Mypage/img_new_tag.imageset/img_new_tag.svg -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/ORBRecommendation/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/ORBRecommendation/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Onboarding/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Onboarding/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Onboarding/btn_checked.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Onboarding/btn_checked.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Onboarding/btn_checked.imageset/btn_checked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Onboarding/btn_checked.imageset/btn_checked.svg -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Onboarding/btn_unchecked.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Onboarding/btn_unchecked.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Onboarding/btn_unchecked.imageset/btn_unchecked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Onboarding/btn_unchecked.imageset/btn_unchecked.svg -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Onboarding/img_optional.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Onboarding/img_optional.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Onboarding/img_optional.imageset/img_optional.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Onboarding/img_optional.imageset/img_optional.svg -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Onboarding/img_required.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Onboarding/img_required.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Onboarding/img_required.imageset/img_required.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Onboarding/img_required.imageset/img_required.svg -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/PlaceInfoPopup/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/PlaceInfoPopup/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/PlaceInfoPopup/btn_placeInfoPopup_close.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/PlaceInfoPopup/btn_placeInfoPopup_close.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/PlaceInfoPopup/icn_placeInfoPopup_tooltip.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/PlaceInfoPopup/icn_placeInfoPopup_tooltip.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/PlaceInfoPopup/icn_placeInfoTooltip_orbLogo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/PlaceInfoPopup/icn_placeInfoTooltip_orbLogo.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/PlaceList/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/PlaceList/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Profile/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Profile/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/QuestList/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/QuestList/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/QuestList/icn_questList_cafe.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/QuestList/icn_questList_cafe.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/QuestList/icn_questList_cafe.imageset/Frame 1261161495.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/QuestList/icn_questList_cafe.imageset/Frame 1261161495.svg -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/QuestList/icn_questList_checkBox.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/QuestList/icn_questList_checkBox.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/QuestList/icn_questList_dday_bubble.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/QuestList/icn_questList_dday_bubble.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/QuestList/icn_questList_giftBox.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/QuestList/icn_questList_giftBox.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/QuestList/icn_questList_park.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/QuestList/icn_questList_park.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/QuestList/icn_questList_park.imageset/🏞️.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/QuestList/icn_questList_park.imageset/🏞️.svg -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/QuestList/icn_questList_restaurant.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/QuestList/icn_questList_restaurant.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/QuestList/icn_questList_restaurant.imageset/🍽️.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/QuestList/icn_questList_restaurant.imageset/🍽️.svg -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/QuestList/icn_questList_show.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/QuestList/icn_questList_show.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/QuestList/icn_questList_show.imageset/🤹🏻‍♀️.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/QuestList/icn_questList_show.imageset/🤹🏻‍♀️.svg -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/QuestList/img_quest.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/QuestList/img_quest.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/QuestList/img_quest.imageset/img_quest.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/QuestList/img_quest.imageset/img_quest.svg -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/QuestMap/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/QuestMap/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/QuestMap/btn_dot_scope.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/QuestMap/btn_dot_scope.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/QuestMap/btn_dot_scope.imageset/ios_dot_scope.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/QuestMap/btn_dot_scope.imageset/ios_dot_scope.svg -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/QuestMap/icn_questMap_placeMarker.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/QuestMap/icn_questMap_placeMarker.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/QuestMap/icn_reload_arrow.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/QuestMap/icn_reload_arrow.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/QuestMap/icn_reload_arrow.imageset/icn_reload_arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/QuestMap/icn_reload_arrow.imageset/icn_reload_arrow.svg -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/QuestMap/icon_list_bullet.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/QuestMap/icon_list_bullet.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/QuestMap/icon_list_bullet.imageset/icon_list_bullet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/QuestMap/icon_list_bullet.imageset/icon_list_bullet.svg -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/QuestMap/icon_place_marker.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/QuestMap/icon_place_marker.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/QuestMap/icon_place_marker.imageset/icon_place_marker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/QuestMap/icon_place_marker.imageset/icon_place_marker.svg -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/QuestMap/img_category_cafe.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/QuestMap/img_category_cafe.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/QuestMap/img_category_cafe.imageset/img_category_cafe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/QuestMap/img_category_cafe.imageset/img_category_cafe.svg -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/QuestMap/img_category_culture.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/QuestMap/img_category_culture.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/QuestMap/img_category_culture.imageset/img_category_culture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/QuestMap/img_category_culture.imageset/img_category_culture.svg -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/QuestMap/img_category_park.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/QuestMap/img_category_park.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/QuestMap/img_category_park.imageset/img_category_park.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/QuestMap/img_category_park.imageset/img_category_park.svg -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/QuestMap/img_category_restaurant.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/QuestMap/img_category_restaurant.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/QuestMap/img_category_sports.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/QuestMap/img_category_sports.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/QuestMap/img_category_sports.imageset/img_category_sports.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/QuestMap/img_category_sports.imageset/img_category_sports.svg -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/QuestQR/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/QuestQR/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/QuestQR/icn_chevron_left.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/QuestQR/icn_chevron_left.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/QuestQR/icn_chevron_left.imageset/icn_chevron_left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/QuestQR/icn_chevron_left.imageset/icn_chevron_left.svg -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/QuestQR/icn_square_dashed_cornerLeft.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/QuestQR/icn_square_dashed_cornerLeft.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Setting/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Setting/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Setting/icon_arrow.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Setting/icon_arrow.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Setting/icon_arrow.imageset/icon_arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Setting/icon_arrow.imageset/icon_arrow.svg -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Setting/img_ cogwheel.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Setting/img_ cogwheel.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Setting/img_ cogwheel.imageset/img_ cogwheel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Setting/img_ cogwheel.imageset/img_ cogwheel.svg -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Setting/img_chat.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Setting/img_chat.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Setting/img_chat.imageset/img_chat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Setting/img_chat.imageset/img_chat.svg -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Setting/img_clock.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Setting/img_clock.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Setting/img_clock.imageset/img_clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Setting/img_clock.imageset/img_clock.svg -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Setting/img_diary_time_character.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Setting/img_diary_time_character.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Setting/img_loudspeaker.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Setting/img_loudspeaker.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Setting/img_loudspeaker.imageset/img_loudspeaker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Setting/img_loudspeaker.imageset/img_loudspeaker.svg -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Splash/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Splash/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Splash/img_orb_logo_splash.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Splash/img_orb_logo_splash.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Splash/img_orb_logo_splash.imageset/img_orb_logo_splash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/Splash/img_orb_logo_splash.imageset/img_orb_logo_splash.svg -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/TabBar/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/TabBar/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/TabBar/icn_tabBar_home_selected.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/TabBar/icn_tabBar_home_selected.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/TabBar/icn_tabBar_home_unselected.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/TabBar/icn_tabBar_home_unselected.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/TabBar/icn_tabBar_my_selected.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/TabBar/icn_tabBar_my_selected.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/TabBar/icn_tabBar_my_unselected.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/TabBar/icn_tabBar_my_unselected.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/TabBar/icn_tabBar_orbLogo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/TabBar/icn_tabBar_orbLogo.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/TabBar/icn_tabBar_orbLogo.imageset/icn_tabBar_orbLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/TabBar/icn_tabBar_orbLogo.imageset/icn_tabBar_orbLogo.svg -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/backBarButton.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/backBarButton.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/backBarButton.imageset/backBarButton.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/backBarButton.imageset/backBarButton.svg -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/img_emptyCase_nova.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/img_emptyCase_nova.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/img_emptyCase_nova.imageset/img_emptyCase_nova.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/img_emptyCase_nova.imageset/img_emptyCase_nova.png -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/ofrAlert/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/ofrAlert/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/ofrAlert/ios_ofrAlert_xmark.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/ofrAlert/ios_ofrAlert_xmark.imageset/Contents.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/ofrAlert/ios_ofrAlert_xmark.imageset/ios_ofrAlert_xmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Assets.xcassets/ofrAlert/ios_ofrAlert_xmark.imageset/ios_ofrAlert_xmark.svg -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Fonts/Optician-Sans.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Fonts/Optician-Sans.otf -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Fonts/Pretendard-Black.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Fonts/Pretendard-Black.otf -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Fonts/Pretendard-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Fonts/Pretendard-Bold.otf -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Fonts/Pretendard-ExtraBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Fonts/Pretendard-ExtraBold.otf -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Fonts/Pretendard-ExtraLight.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Fonts/Pretendard-ExtraLight.otf -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Fonts/Pretendard-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Fonts/Pretendard-Light.otf -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Fonts/Pretendard-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Fonts/Pretendard-Medium.otf -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Fonts/Pretendard-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Fonts/Pretendard-Regular.otf -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Fonts/Pretendard-SemiBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Fonts/Pretendard-SemiBold.otf -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Fonts/Pretendard-Thin.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Fonts/Pretendard-Thin.otf -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Info.plist -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Info_Dev.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Info_Dev.plist -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Lotties/loading1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Lotties/loading1.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/Resources/Lotties/loading2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/Resources/Lotties/loading2.json -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Global/SupportingFiles/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Global/SupportingFiles/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/Adventure/AdventureAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/Adventure/AdventureAPI.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/Adventure/AdventureService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/Adventure/AdventureService.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/Adventure/DTO/Request/AdventuresPlaceAuthenticationRequestDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/Adventure/DTO/Request/AdventuresPlaceAuthenticationRequestDTO.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/Adventure/DTO/Request/AdventuresQRAuthenticationRequestDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/Adventure/DTO/Request/AdventuresQRAuthenticationRequestDTO.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/Adventure/DTO/Response/AdventureInfoResponseDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/Adventure/DTO/Response/AdventureInfoResponseDTO.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/Adventure/DTO/Response/AdventuresPlaceAuthenticationResponsetDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/Adventure/DTO/Response/AdventuresPlaceAuthenticationResponsetDTO.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/Adventure/DTO/Response/AdventuresQRAuthenticationResponseDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/Adventure/DTO/Response/AdventuresQRAuthenticationResponseDTO.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/Auth/AuthAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/Auth/AuthAPI.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/Auth/AuthService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/Auth/AuthService.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/Auth/DTO/Request/SocialLoginRequestDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/Auth/DTO/Request/SocialLoginRequestDTO.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/Auth/DTO/Response/RefreshTokenResponseDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/Auth/DTO/Response/RefreshTokenResponseDTO.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/Auth/DTO/Response/SocialLoginResponseDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/Auth/DTO/Response/SocialLoginResponseDTO.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/Base/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/Base/BaseService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/Base/BaseService.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/Base/BaseTargetType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/Base/BaseTargetType.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/Base/ErrorResponseDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/Base/ErrorResponseDTO.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/Base/MoyaPlugin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/Base/MoyaPlugin.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/Base/NetworkResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/Base/NetworkResult.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/Base/NetworkResultError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/Base/NetworkResultError.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/Base/NetworkResultHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/Base/NetworkResultHandler.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/Base/NetworkService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/Base/NetworkService.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/Character/CharacterAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/Character/CharacterAPI.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/Character/CharacterService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/Character/CharacterService.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/Character/DTO/Response/CharacterChoosingResponseDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/Character/DTO/Response/CharacterChoosingResponseDTO.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/Character/DTO/Response/CharacterDetailResponseDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/Character/DTO/Response/CharacterDetailResponseDTO.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/Character/DTO/Response/CharacterListResponseDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/Character/DTO/Response/CharacterListResponseDTO.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/Character/DTO/Response/CharacterMotionResponseDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/Character/DTO/Response/CharacterMotionResponseDTO.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/Character/DTO/Response/StartingCharacterResponseDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/Character/DTO/Response/StartingCharacterResponseDTO.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/CharacterChat/CharacterChatAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/CharacterChat/CharacterChatAPI.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/CharacterChat/CharacterChatService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/CharacterChat/CharacterChatService.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/CharacterChat/DTO/Request/CharacterChatPostRequestDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/CharacterChat/DTO/Request/CharacterChatPostRequestDTO.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/CharacterChat/DTO/Response/CharacterChatGetResponseDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/CharacterChat/DTO/Response/CharacterChatGetResponseDTO.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/CharacterChat/DTO/Response/CharacterChatPostResponseDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/CharacterChat/DTO/Response/CharacterChatPostResponseDTO.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/CharacterChat/DTO/Response/CharacterChatReadGetResponseDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/CharacterChat/DTO/Response/CharacterChatReadGetResponseDTO.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/Coupon/CouponAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/Coupon/CouponAPI.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/Coupon/CouponService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/Coupon/CouponService.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/Coupon/DTO/Request/CouponRedemptionRequestDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/Coupon/DTO/Request/CouponRedemptionRequestDTO.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/Coupon/DTO/Response/CouponListResponseDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/Coupon/DTO/Response/CouponListResponseDTO.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/Coupon/DTO/Response/CouponRedemptionResponseDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/Coupon/DTO/Response/CouponRedemptionResponseDTO.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/CourseQuest/CourseQuestDetailAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/CourseQuest/CourseQuestDetailAPI.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/CourseQuest/CourseQuestDetailService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/CourseQuest/CourseQuestDetailService.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/CourseQuest/DTO/Response/CourseQuestDetailResponseDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/CourseQuest/DTO/Response/CourseQuestDetailResponseDTO.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/Diary/DTO/Response/DiaryCheckStatusResponseDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/Diary/DTO/Response/DiaryCheckStatusResponseDTO.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/Diary/DTO/Response/DiaryColorsResponseDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/Diary/DTO/Response/DiaryColorsResponseDTO.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/Diary/DTO/Response/DiaryInitialDateResponseDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/Diary/DTO/Response/DiaryInitialDateResponseDTO.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/Diary/DTO/Response/DiaryResponseDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/Diary/DTO/Response/DiaryResponseDTO.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/Diary/DiaryAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/Diary/DiaryAPI.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/Diary/DiaryService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/Diary/DiaryService.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/DiarySetting/DTO/Response/DiarySettingCheckedResponseDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/DiarySetting/DTO/Response/DiarySettingCheckedResponseDTO.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/DiarySetting/DiarySettingAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/DiarySetting/DiarySettingAPI.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/DiarySetting/DiarySettingService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/DiarySetting/DiarySettingService.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/Emblem/DTO/Response/ChangeEmblemResponseDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/Emblem/DTO/Response/ChangeEmblemResponseDTO.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/Emblem/DTO/Response/EmblemInfoResponseDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/Emblem/DTO/Response/EmblemInfoResponseDTO.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/Emblem/DTO/Response/EmblemListResponseDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/Emblem/DTO/Response/EmblemListResponseDTO.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/Emblem/EmblemAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/Emblem/EmblemAPI.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/Emblem/EmblemService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/Emblem/EmblemService.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/MinimumSupportedVersion/DTO/MinimumSupportedVersionResponseDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/MinimumSupportedVersion/DTO/MinimumSupportedVersionResponseDTO.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/MinimumSupportedVersion/MinimumSupportedVersionAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/MinimumSupportedVersion/MinimumSupportedVersionAPI.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/MinimumSupportedVersion/MinimumSupportedVersionService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/MinimumSupportedVersion/MinimumSupportedVersionService.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/Nickname/DTO/Response/NicknameCheckResponseDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/Nickname/DTO/Response/NicknameCheckResponseDTO.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/Nickname/NicknameAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/Nickname/NicknameAPI.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/Nickname/NicknameService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/Nickname/NicknameService.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/Notice/DTO/Response/NoticeResponseDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/Notice/DTO/Response/NoticeResponseDTO.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/Notice/NoticeAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/Notice/NoticeAPI.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/Notice/NoticeService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/Notice/NoticeService.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/ORBRecommendation/DTO/Request/ORBRecommendationChatRequestDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/ORBRecommendation/DTO/Request/ORBRecommendationChatRequestDTO.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/ORBRecommendation/DTO/Response/ORBRecommendationChatResponseDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/ORBRecommendation/DTO/Response/ORBRecommendationChatResponseDTO.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/ORBRecommendation/DTO/Response/ORBRecommendationFixedPhraseResponseDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/ORBRecommendation/DTO/Response/ORBRecommendationFixedPhraseResponseDTO.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/ORBRecommendation/DTO/Response/ORBRecommendationPlacesResponseDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/ORBRecommendation/DTO/Response/ORBRecommendationPlacesResponseDTO.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/ORBRecommendation/ORBRecommendationAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/ORBRecommendation/ORBRecommendationAPI.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/ORBRecommendation/ORBRecommendationService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/ORBRecommendation/ORBRecommendationService.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/Place/DTO/Request/RegisteredPlaceRequestDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/Place/DTO/Request/RegisteredPlaceRequestDTO.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/Place/DTO/Responce/RegisteredPlaceResponseDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/Place/DTO/Responce/RegisteredPlaceResponseDTO.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/Place/PlaceAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/Place/PlaceAPI.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/Place/PlaceService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/Place/PlaceService.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/Profile/DTO/Request/DeleteAccountRequestDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/Profile/DTO/Request/DeleteAccountRequestDTO.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/Profile/DTO/Request/MarketingConsentRequestDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/Profile/DTO/Request/MarketingConsentRequestDTO.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/Profile/DTO/Request/ProfileUpdateRequestDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/Profile/DTO/Request/ProfileUpdateRequestDTO.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/Profile/DTO/Response/DeleteAccountResponseDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/Profile/DTO/Response/DeleteAccountResponseDTO.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/Profile/DTO/Response/UserInfoResponseDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/Profile/DTO/Response/UserInfoResponseDTO.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/Profile/ProfileAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/Profile/ProfileAPI.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/Profile/ProfileService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/Profile/ProfileService.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/PushNotification/DTO/Request/FcmTokenRequestDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/PushNotification/DTO/Request/FcmTokenRequestDTO.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/PushNotification/PushNotificationAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/PushNotification/PushNotificationAPI.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/PushNotification/PushNotificationService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/PushNotification/PushNotificationService.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/Quest/DTO/Response/QuestInfoResponseDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/Quest/DTO/Response/QuestInfoResponseDTO.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/Quest/QuestAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/Quest/QuestAPI.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/Quest/QuestService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/Quest/QuestService.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/QuestList/DTO/Response/QuestListResponseDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/QuestList/DTO/Response/QuestListResponseDTO.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/QuestList/QuestListAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/QuestList/QuestListAPI.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Network/QuestList/QuestListService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Network/QuestList/QuestListService.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Offroad-iOS.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Offroad-iOS.entitlements -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/Character/ChoosingCharacter/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/Character/ChoosingCharacter/View/ChoosingCharacterCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/Character/ChoosingCharacter/View/ChoosingCharacterCell.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/Character/ChoosingCharacter/View/ChoosingCharacterView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/Character/ChoosingCharacter/View/ChoosingCharacterView.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/Character/ChoosingCharacter/ViewController/ChoosingCharacterViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/Character/ChoosingCharacter/ViewController/ChoosingCharacterViewController.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/Character/CompleteChoosingCharacter/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/Character/CompleteChoosingCharacter/View/CompleteChoosingCharacterView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/Character/CompleteChoosingCharacter/View/CompleteChoosingCharacterView.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/Chat/CharacterChat/ORBCharacterChatManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/Chat/CharacterChat/ORBCharacterChatManager.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/Chat/CharacterChat/ViewControllers/ORBCharacterChatViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/Chat/CharacterChat/ViewControllers/ORBCharacterChatViewController.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/Chat/CharacterChat/Views/ORBCharacterChatBox.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/Chat/CharacterChat/Views/ORBCharacterChatBox.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/Chat/CharacterChat/Views/ORBCharacterChatView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/Chat/CharacterChat/Views/ORBCharacterChatView.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/Chat/CharacterChat/Views/ORBCharacterChatWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/Chat/CharacterChat/Views/ORBCharacterChatWindow.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/Chat/ChatLog/Model/CharacterChatItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/Chat/ChatLog/Model/CharacterChatItem.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/Chat/ChatLog/Model/CharacterChatMessageItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/Chat/ChatLog/Model/CharacterChatMessageItem.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/Chat/ChatLog/ViewControllers/CharacterChatLogViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/Chat/ChatLog/ViewControllers/CharacterChatLogViewController.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/Chat/ChatLog/Views/CharacterChatLogView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/Chat/ChatLog/Views/CharacterChatLogView.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/Chat/ChatLog/Views/RecommendationButtonInChatLogCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/Chat/ChatLog/Views/RecommendationButtonInChatLogCell.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/Chat/ChatLog/Views/ReusableView/CharacterChatLogFooter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/Chat/ChatLog/Views/ReusableView/CharacterChatLogFooter.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/Chat/ChatLog/Views/ReusableView/ChatLogCellCharacter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/Chat/ChatLog/Views/ReusableView/ChatLogCellCharacter.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/Chat/ChatLog/Views/ReusableView/ChatLogCellCharacterLoading.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/Chat/ChatLog/Views/ReusableView/ChatLogCellCharacterLoading.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/Chat/ChatLog/Views/ReusableView/ChatLogCellCharacterRecommendation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/Chat/ChatLog/Views/ReusableView/ChatLogCellCharacterRecommendation.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/Chat/ChatLog/Views/ReusableView/ChatLogCellUser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/Chat/ChatLog/Views/ReusableView/ChatLogCellUser.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/Common/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/Common/Model/PushNotificationRedirectModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/Common/Model/PushNotificationRedirectModel.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/Common/UIComponents/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/CourseQuest/Components/CourseQuestPlaceCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/CourseQuest/Components/CourseQuestPlaceCell.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/CourseQuest/Components/CourseQuestToastManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/CourseQuest/Components/CourseQuestToastManager.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/CourseQuest/Components/CourseQuestToastView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/CourseQuest/Components/CourseQuestToastView.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/CourseQuest/Components/CourseQuestToastWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/CourseQuest/Components/CourseQuestToastWindow.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/CourseQuest/Models/CourseQuestPlace.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/CourseQuest/Models/CourseQuestPlace.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/CourseQuest/ViewControllers/CourseQuestViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/CourseQuest/ViewControllers/CourseQuestViewController.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/CourseQuest/Views/CourseQuestMapView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/CourseQuest/Views/CourseQuestMapView.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/CourseQuest/Views/CourseQuestView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/CourseQuest/Views/CourseQuestView.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/Diary/Cell/CustomDiaryCalendarCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/Diary/Cell/CustomDiaryCalendarCell.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/Diary/Cell/GuideCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/Diary/Cell/GuideCollectionViewCell.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/Diary/Modal/MonthPickerModalView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/Diary/Modal/MonthPickerModalView.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/Diary/MyDiaryManager/MyDiaryManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/Diary/MyDiaryManager/MyDiaryManager.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/Diary/View/DiaryGuideView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/Diary/View/DiaryGuideView.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/Diary/View/DiaryView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/Diary/View/DiaryView.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/Diary/ViewController/DiaryGuideViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/Diary/ViewController/DiaryGuideViewController.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/Diary/ViewController/DiaryViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/Diary/ViewController/DiaryViewController.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/Diary/ViewController/MonthPickerModalViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/Diary/ViewController/MonthPickerModalViewController.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/Diary/ViewModel/DiaryViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/Diary/ViewModel/DiaryViewModel.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/Home/Component/CustomAlmostDoneProgressView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/Home/Component/CustomAlmostDoneProgressView.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/Home/Component/CustomQuestView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/Home/Component/CustomQuestView.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/Home/Component/CustomRecentProgressView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/Home/Component/CustomRecentProgressView.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/Home/Component/ShareableImageProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/Home/Component/ShareableImageProvider.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/Home/TitlePopup/Model/TitleModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/Home/TitlePopup/Model/TitleModel.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/Home/TitlePopup/View/Cell/TitleCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/Home/TitlePopup/View/Cell/TitleCollectionViewCell.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/Home/TitlePopup/View/TitlePopupView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/Home/TitlePopup/View/TitlePopupView.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/Home/TitlePopup/ViewController/TitlePopupViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/Home/TitlePopup/ViewController/TitlePopupViewController.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/Home/View/HomeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/Home/View/HomeView.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/Home/ViewController/HomeViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/Home/ViewController/HomeViewController.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/Login/AuthManager/AppleAuthManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/Login/AuthManager/AppleAuthManager.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/Login/AuthManager/KakaoAuthManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/Login/AuthManager/KakaoAuthManager.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/Login/AuthManager/KeychainManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/Login/AuthManager/KeychainManager.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/Login/AuthManager/TokenIntercepter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/Login/AuthManager/TokenIntercepter.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/Login/Model/UserModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/Login/Model/UserModel.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/Login/View/LoginView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/Login/View/LoginView.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/Login/ViewController/LoginViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/Login/ViewController/LoginViewController.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/MemoryLight/Cell/MemoryLightCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/MemoryLight/Cell/MemoryLightCollectionViewCell.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/MemoryLight/Model/MemoryLightModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/MemoryLight/Model/MemoryLightModel.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/MemoryLight/View/MemoryLightView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/MemoryLight/View/MemoryLightView.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/MemoryLight/ViewController/MemoryLightViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/MemoryLight/ViewController/MemoryLightViewController.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/MemoryLight/ViewModel/MemoryLightViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/MemoryLight/ViewModel/MemoryLightViewModel.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/MyPage/CharacterList/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/MyPage/CharacterList/Cell/CharacterDetailCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/MyPage/CharacterList/Cell/CharacterDetailCell.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/MyPage/CharacterList/Cell/CharacterListCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/MyPage/CharacterList/Cell/CharacterListCell.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/MyPage/CharacterList/View/CharacterDetailView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/MyPage/CharacterList/View/CharacterDetailView.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/MyPage/CharacterList/View/CharacterListView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/MyPage/CharacterList/View/CharacterListView.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/MyPage/CharacterList/ViewController/CharacterDetailViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/MyPage/CharacterList/ViewController/CharacterDetailViewController.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/MyPage/CharacterList/ViewController/CharacterListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/MyPage/CharacterList/ViewController/CharacterListViewController.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/MyPage/CharacterList/ViewModel/CharacterDetailViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/MyPage/CharacterList/ViewModel/CharacterDetailViewModel.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/MyPage/CharacterList/ViewModel/CharacterListViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/MyPage/CharacterList/ViewModel/CharacterListViewModel.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/MyPage/Component/MyPageCustomButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/MyPage/Component/MyPageCustomButton.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/MyPage/Component/MyPageScrollView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/MyPage/Component/MyPageScrollView.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/MyPage/Coupon/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/MyPage/Coupon/Cell/CouponCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/MyPage/Coupon/Cell/CouponCell.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/MyPage/Coupon/View/CouponDetailView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/MyPage/Coupon/View/CouponDetailView.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/MyPage/Coupon/View/CouponListView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/MyPage/Coupon/View/CouponListView.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/MyPage/Coupon/ViewController/CouponCollectionViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/MyPage/Coupon/ViewController/CouponCollectionViewController.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/MyPage/Coupon/ViewController/CouponDetailViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/MyPage/Coupon/ViewController/CouponDetailViewController.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/MyPage/Coupon/ViewController/CouponListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/MyPage/Coupon/ViewController/CouponListViewController.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/MyPage/Settings/Component/SettingBase/Cell/SettingBaseCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/MyPage/Settings/Component/SettingBase/Cell/SettingBaseCollectionViewCell.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/MyPage/Settings/Component/SettingBase/SettingBaseView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/MyPage/Settings/Component/SettingBase/SettingBaseView.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/MyPage/Settings/CustomerInquiry /View/CustomerInquiryView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/MyPage/Settings/CustomerInquiry /View/CustomerInquiryView.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/MyPage/Settings/CustomerInquiry /ViewController/CustomerInquiryViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/MyPage/Settings/CustomerInquiry /ViewController/CustomerInquiryViewController.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/MyPage/Settings/DeleteAccount/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/MyPage/Settings/DeleteAccount/View/DeleteAccountView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/MyPage/Settings/DeleteAccount/View/DeleteAccountView.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/MyPage/Settings/DeleteAccount/ViewController/DeleteAccountViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/MyPage/Settings/DeleteAccount/ViewController/DeleteAccountViewController.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/MyPage/Settings/DeveloperMode/Model/DeveloperModeSettingModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/MyPage/Settings/DeveloperMode/Model/DeveloperModeSettingModel.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/MyPage/Settings/DeveloperMode/ViewControllers/DeveloperModeViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/MyPage/Settings/DeveloperMode/ViewControllers/DeveloperModeViewController.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/MyPage/Settings/DeveloperMode/Views/DeveloperModeNormalCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/MyPage/Settings/DeveloperMode/Views/DeveloperModeNormalCell.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/MyPage/Settings/DeveloperMode/Views/DeveloperModeSwitchCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/MyPage/Settings/DeveloperMode/Views/DeveloperModeSwitchCell.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/MyPage/Settings/DeveloperMode/Views/DeveloperModeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/MyPage/Settings/DeveloperMode/Views/DeveloperModeView.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/MyPage/Settings/DiaryTime/Enum/TimePeriod.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/MyPage/Settings/DiaryTime/Enum/TimePeriod.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/MyPage/Settings/DiaryTime/View/DiaryTimeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/MyPage/Settings/DiaryTime/View/DiaryTimeView.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/MyPage/Settings/DiaryTime/ViewController/DiaryTimeViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/MyPage/Settings/DiaryTime/ViewController/DiaryTimeViewController.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/MyPage/Settings/Logout/View/LogoutView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/MyPage/Settings/Logout/View/LogoutView.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/MyPage/Settings/Logout/ViewController/LogoutViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/MyPage/Settings/Logout/ViewController/LogoutViewController.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/MyPage/Settings/MarketingConsent/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/MyPage/Settings/MarketingConsent/ViewController/MarketingConsentViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/MyPage/Settings/MarketingConsent/ViewController/MarketingConsentViewController.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/MyPage/Settings/Model/SettingBaseModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/MyPage/Settings/Model/SettingBaseModel.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/MyPage/Settings/Notice/NoticePost/View/NoticePostView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/MyPage/Settings/Notice/NoticePost/View/NoticePostView.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/MyPage/Settings/Notice/NoticePost/ViewController/NoticePostViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/MyPage/Settings/Notice/NoticePost/ViewController/NoticePostViewController.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/MyPage/Settings/Notice/View/NoticeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/MyPage/Settings/Notice/View/NoticeView.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/MyPage/Settings/Notice/ViewController/NoticeViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/MyPage/Settings/Notice/ViewController/NoticeViewController.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/MyPage/Settings/View/SettingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/MyPage/Settings/View/SettingView.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/MyPage/Settings/ViewController/SettingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/MyPage/Settings/ViewController/SettingViewController.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/MyPage/Title/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/MyPage/Title/Model/CollectedTitleModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/MyPage/Title/Model/CollectedTitleModel.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/MyPage/Title/View/Cell/CollectedTitleCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/MyPage/Title/View/Cell/CollectedTitleCollectionViewCell.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/MyPage/Title/View/CollectedTitlesView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/MyPage/Title/View/CollectedTitlesView.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/MyPage/Title/ViewController/CollectedTitlesViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/MyPage/Title/ViewController/CollectedTitlesViewController.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/MyPage/View/MyPageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/MyPage/View/MyPageView.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/MyPage/ViewControllers/MyPageViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/MyPage/ViewControllers/MyPageViewController.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/Nickname/View/BirthView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/Nickname/View/BirthView.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/Nickname/View/GenderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/Nickname/View/GenderView.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/Nickname/View/NicknameView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/Nickname/View/NicknameView.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/Nickname/ViewController/BirthViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/Nickname/ViewController/BirthViewController.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/Nickname/ViewController/GenderViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/Nickname/ViewController/GenderViewController.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/Nickname/ViewController/NicknameViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/Nickname/ViewController/NicknameViewController.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/ORBRecommendation/chat/DiffableDataSource/ORBRecommendationChatDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/ORBRecommendation/chat/DiffableDataSource/ORBRecommendationChatDataSource.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/ORBRecommendation/chat/Model/ORBRecommendationChatReplyTexts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/ORBRecommendation/chat/Model/ORBRecommendationChatReplyTexts.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/ORBRecommendation/chat/ViewControllers/ORBRecommendationChatViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/ORBRecommendation/chat/ViewControllers/ORBRecommendationChatViewController.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/ORBRecommendation/chat/Views/ORBRecommendationChatBackgroundView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/ORBRecommendation/chat/Views/ORBRecommendationChatBackgroundView.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/ORBRecommendation/chat/Views/ORBRecommendationChatExampleQuestion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/ORBRecommendation/chat/Views/ORBRecommendationChatExampleQuestion.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/ORBRecommendation/chat/Views/ORBRecommendationChatView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/ORBRecommendation/chat/Views/ORBRecommendationChatView.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/ORBRecommendation/main/ViewController/ORBRecommendationMainViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/ORBRecommendation/main/ViewController/ORBRecommendationMainViewController.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/ORBRecommendation/main/Views/ORBRecommendationEmptyCaseView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/ORBRecommendation/main/Views/ORBRecommendationEmptyCaseView.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/ORBRecommendation/main/Views/ORBRecommendationMainView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/ORBRecommendation/main/Views/ORBRecommendationMainView.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/ORBRecommendation/main/Views/ORBRecommendationMainViewToolBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/ORBRecommendation/main/Views/ORBRecommendationMainViewToolBar.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/ORBRecommendation/main/Views/ORBRecommendationMessageButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/ORBRecommendation/main/Views/ORBRecommendationMessageButton.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/ORBRecommendation/main/Views/ORBRecommendedContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/ORBRecommendation/main/Views/ORBRecommendedContentView.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/ORBRecommendation/model/ORBRecommendationPlaceModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/ORBRecommendation/model/ORBRecommendationPlaceModel.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/ORBRecommendation/order/ORBRecommendationOrderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/ORBRecommendation/order/ORBRecommendationOrderView.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/ORBRecommendation/order/ORBRecommendationOrderViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/ORBRecommendation/order/ORBRecommendationOrderViewController.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/Onboarding/Model/TermsModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/Onboarding/Model/TermsModel.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/Onboarding/View/Cell/TermsListTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/Onboarding/View/Cell/TermsListTableViewCell.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/Onboarding/View/TermsConsentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/Onboarding/View/TermsConsentView.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/Onboarding/ViewController/TermsConsentPopupViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/Onboarding/ViewController/TermsConsentPopupViewController.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/Onboarding/ViewController/TermsConsentViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/Onboarding/ViewController/TermsConsentViewController.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/PlaceList/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/PlaceList/Model/PlaceModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/PlaceList/Model/PlaceModel.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/PlaceList/ViewControllers/PlaceListCollectionViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/PlaceList/ViewControllers/PlaceListCollectionViewController.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/PlaceList/ViewControllers/PlaceListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/PlaceList/ViewControllers/PlaceListViewController.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/PlaceList/Views/PlaceCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/PlaceList/Views/PlaceCollectionViewCell.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/PlaceList/Views/PlaceListCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/PlaceList/Views/PlaceListCell.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/PlaceList/Views/PlaceListCollectionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/PlaceList/Views/PlaceListCollectionView.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/PlaceList/Views/PlaceListView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/PlaceList/Views/PlaceListView.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/QuestList/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/QuestList/Models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/QuestList/ViewControllers/QuestListViewControllers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/QuestList/ViewControllers/QuestListViewControllers.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/QuestList/Views/Components/CourseQuestCategoryIcon.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/QuestList/Views/Components/CourseQuestCategoryIcon.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/QuestList/Views/Components/CourseQuestCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/QuestList/Views/Components/CourseQuestCollectionViewCell.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/QuestList/Views/Components/IconLabelStackView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/QuestList/Views/Components/IconLabelStackView.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/QuestList/Views/Components/QuestListEmptyPlaceholder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/QuestList/Views/Components/QuestListEmptyPlaceholder.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/QuestList/Views/QuestListCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/QuestList/Views/QuestListCell.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/QuestList/Views/QuestListCollectionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/QuestList/Views/QuestListCollectionView.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/QuestList/Views/QuestListEmptyPlaceholder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/QuestList/Views/QuestListEmptyPlaceholder.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/QuestList/Views/QuestListView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/QuestList/Views/QuestListView.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/QuestMap/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/QuestMap/Model/AdventureResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/QuestMap/Model/AdventureResult.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/QuestMap/UIComponents/ORBMapListButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/QuestMap/UIComponents/ORBMapListButton.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/QuestMap/UIComponents/PlaceMapMarker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/QuestMap/UIComponents/PlaceMapMarker.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/QuestMap/ViewControllers/AdventureMapViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/QuestMap/ViewControllers/AdventureMapViewController.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/QuestMap/ViewModel/AdventureMapViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/QuestMap/ViewModel/AdventureMapViewModel.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/QuestMap/Views/AdventureMapView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/QuestMap/Views/AdventureMapView.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/QuestQR/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/QuestQR/ViewControllers/QuestQRViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/QuestQR/ViewControllers/QuestQRViewController.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/QuestQR/Views/AVCameraPreview.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/QuestQR/Views/AVCameraPreview.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/QuestQR/Views/QuestQRView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/QuestQR/Views/QuestQRView.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/QuestResult/ViewControllers/QuestResultViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/QuestResult/ViewControllers/QuestResultViewController.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/QuestResult/Views/QuestResultView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/QuestResult/Views/QuestResultView.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/Splash/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/Splash/View/SplashView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/Splash/View/SplashView.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/Splash/ViewController/SplashViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/Splash/ViewController/SplashViewController.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/TabBar/ViewControllers/OffroadTabBarController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/TabBar/ViewControllers/OffroadTabBarController.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/TabBar/ViewControllers/OffroadTabBarViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/TabBar/ViewControllers/OffroadTabBarViewController.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/TabBar/Views/ORBTabBarShapeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/TabBar/Views/ORBTabBarShapeView.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOS/Presentation/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOS/Presentation/ViewController.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOSTests/Offroad_iOSTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOSTests/Offroad_iOSTests.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOSUITests/Offroad_iOSUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOSUITests/Offroad_iOSUITests.swift -------------------------------------------------------------------------------- /Offroad-iOS/Offroad-iOSUITests/Offroad_iOSUITestsLaunchTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Offroad-iOSUITests/Offroad_iOSUITestsLaunchTests.swift -------------------------------------------------------------------------------- /Offroad-iOS/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Podfile -------------------------------------------------------------------------------- /Offroad-iOS/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/Offroad-iOS/Podfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Offroad/Offroad-iOS/HEAD/README.md --------------------------------------------------------------------------------