├── .gitignore ├── AMap ├── AMapFoundationKit.framework │ ├── 1.1.0.af5d224 │ ├── AMapFoundationKit │ └── Headers │ │ ├── AMapFoundationKit.h │ │ ├── AMapFoundationVersion.h │ │ ├── AMapServices.h │ │ ├── AMapURLSearch.h │ │ ├── AMapURLSearchConfig.h │ │ ├── AMapURLSearchType.h │ │ └── AMapUtility.h ├── AMapLocationKit.framework │ ├── 2.1.0.598d05d │ ├── AMapLocationKit │ └── Headers │ │ ├── AMapLocationCommonObj.h │ │ ├── AMapLocationKit.h │ │ ├── AMapLocationManager.h │ │ ├── AMapLocationRegionObj.h │ │ └── AMapLocationVersion.h ├── AMapSearchKit.framework │ ├── 4.2.0.69211a9 │ ├── AMapSearchKit │ └── Headers │ │ ├── AMapCommonObj.h │ │ ├── AMapNearbySearchManager.h │ │ ├── AMapNearbyUploadInfo.h │ │ ├── AMapSearchAPI.h │ │ ├── AMapSearchError.h │ │ ├── AMapSearchKit.h │ │ ├── AMapSearchObj.h │ │ └── AMapSearchVersion.h └── MAMapKit.framework │ ├── 4.1.1.89ce287 │ ├── AMap.bundle │ └── images │ │ ├── greenPin.png │ │ ├── greenPin@2x.png │ │ ├── greenPin@3x.png │ │ ├── greenPin_lift.png │ │ ├── greenPin_lift@2x.png │ │ ├── greenPin_lift@3x.png │ │ ├── pin_shadow.png │ │ ├── pin_shadow@2x.png │ │ ├── pin_shadow@3x.png │ │ ├── purplePin.png │ │ ├── purplePin@2x.png │ │ ├── purplePin@3x.png │ │ ├── purplePin_lift.png │ │ ├── purplePin_lift@2x.png │ │ ├── purplePin_lift@3x.png │ │ ├── redPin.png │ │ ├── redPin@2x.png │ │ ├── redPin@3x.png │ │ ├── redPin_lift.png │ │ ├── redPin_lift@2x.png │ │ └── redPin_lift@3x.png │ ├── Headers │ ├── MAAnnotation.h │ ├── MAAnnotationView.h │ ├── MACircle.h │ ├── MACircleRenderer.h │ ├── MACircleView.h │ ├── MAGeodesicPolyline.h │ ├── MAGeometry.h │ ├── MAGroundOverlay.h │ ├── MAGroundOverlayRenderer.h │ ├── MAGroundOverlayView.h │ ├── MAHeatMapTileOverlay.h │ ├── MAMapKit.h │ ├── MAMapVersion.h │ ├── MAMapView.h │ ├── MAMultiColoredPolylineRenderer.h │ ├── MAMultiPoint.h │ ├── MAMultiPolyline.h │ ├── MAOverlay.h │ ├── MAOverlayPathRenderer.h │ ├── MAOverlayPathView.h │ ├── MAOverlayRenderer.h │ ├── MAOverlayView.h │ ├── MAPinAnnotationView.h │ ├── MAPointAnnotation.h │ ├── MAPolygon.h │ ├── MAPolygonRenderer.h │ ├── MAPolygonView.h │ ├── MAPolyline.h │ ├── MAPolylineRenderer.h │ ├── MAPolylineView.h │ ├── MAShape.h │ ├── MATileOverlay.h │ ├── MATileOverlayRenderer.h │ ├── MATileOverlayView.h │ ├── MAUserLocation.h │ └── MAUserLocationRepresentation.h │ └── MAMapKit ├── HyphenateSDK ├── include │ ├── EMCallLocalView.h │ ├── EMCallManagerDelegate.h │ ├── EMCallRemoteView.h │ ├── EMCallSession.h │ ├── EMChatManagerDelegate.h │ ├── EMChatroom.h │ ├── EMChatroomManagerDelegate.h │ ├── EMClient+Call.h │ ├── EMClient.h │ ├── EMClientDelegate.h │ ├── EMCmdMessageBody.h │ ├── EMContactManagerDelegate.h │ ├── EMConversation.h │ ├── EMCursorResult.h │ ├── EMError.h │ ├── EMErrorCode.h │ ├── EMFileMessageBody.h │ ├── EMGroup.h │ ├── EMGroupManagerDelegate.h │ ├── EMGroupOptions.h │ ├── EMImageMessageBody.h │ ├── EMLocationMessageBody.h │ ├── EMMessage.h │ ├── EMMessageBody.h │ ├── EMOptions+PrivateDeploy.h │ ├── EMOptions.h │ ├── EMPushOptions.h │ ├── EMSDK.h │ ├── EMSDKFull.h │ ├── EMTextMessageBody.h │ ├── EMVideoMessageBody.h │ ├── EMVoiceMessageBody.h │ ├── IEMCallManager.h │ ├── IEMChatManager.h │ ├── IEMChatroomManager.h │ ├── IEMContactManager.h │ ├── IEMGroupManager.h │ └── OpenGLView20.h └── lib │ ├── 3rdparty │ ├── libcrypto.a │ ├── libcurl.a │ └── libssl.a │ └── libHyphenateSDK.a ├── LLWeChat.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── LLWeChat.xcworkspace └── contents.xcworkspacedata ├── LLWeChat ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Client │ ├── Base │ │ ├── LLNavigationController.h │ │ ├── LLNavigationController.m │ │ ├── LLViewController.h │ │ └── LLViewController.m │ ├── Chat │ │ ├── Cell │ │ │ ├── LLMessageBaseCell.h │ │ │ ├── LLMessageBaseCell.m │ │ │ ├── LLMessageCellActionDelegate.h │ │ │ ├── LLMessageDateCell.h │ │ │ ├── LLMessageDateCell.m │ │ │ ├── LLMessageGifCell.h │ │ │ ├── LLMessageGifCell.m │ │ │ ├── LLMessageImageCell.h │ │ │ ├── LLMessageImageCell.m │ │ │ ├── LLMessageLocationCell.h │ │ │ ├── LLMessageLocationCell.m │ │ │ ├── LLMessageRecordingCell.h │ │ │ ├── LLMessageRecordingCell.m │ │ │ ├── LLMessageTextCell.h │ │ │ ├── LLMessageTextCell.m │ │ │ ├── LLMessageVideoCell.h │ │ │ ├── LLMessageVideoCell.m │ │ │ ├── LLMessageVoiceCell.h │ │ │ ├── LLMessageVoiceCell.m │ │ │ └── LLTextActionDelegate.h │ │ ├── ContentDisplay │ │ │ ├── Gif │ │ │ │ ├── LLGIFDisplayController.h │ │ │ │ └── LLGIFDisplayController.m │ │ │ ├── Image │ │ │ │ ├── LLChatImageScrollView.h │ │ │ │ ├── LLChatImageScrollView.m │ │ │ │ ├── LLImageAnimationView.h │ │ │ │ ├── LLImageAnimationView.m │ │ │ │ ├── LLImageBottomBar.h │ │ │ │ ├── LLImageBottomBar.m │ │ │ │ ├── LLImageBottomBar.xib │ │ │ │ └── LLImageDownloadFailView.xib │ │ │ ├── LLAssetDisplayView.h │ │ │ ├── LLChatAssetDisplayController.h │ │ │ ├── LLChatAssetDisplayController.m │ │ │ └── Video │ │ │ │ ├── LLVideoBarSlider.h │ │ │ │ ├── LLVideoBarSlider.m │ │ │ │ ├── LLVideoDisplayView.h │ │ │ │ ├── LLVideoDisplayView.m │ │ │ │ ├── LLVideoDownloadStatusHUD.h │ │ │ │ ├── LLVideoDownloadStatusHUD.m │ │ │ │ ├── LLVideoPlaybackController.h │ │ │ │ ├── LLVideoPlaybackController.m │ │ │ │ └── LLVideoPlaybackController.xib │ │ ├── Input │ │ │ ├── LLChatInputDelegate.h │ │ │ ├── LLChatInputView.h │ │ │ ├── LLChatInputView.m │ │ │ ├── LLChatShareDelegate.h │ │ │ ├── LLChatTextView.h │ │ │ ├── LLChatTextView.m │ │ │ ├── LLCollectionEmotionCell.h │ │ │ ├── LLCollectionEmotionCell.m │ │ │ ├── LLCollectionEmotionTip.h │ │ │ ├── LLCollectionEmotionTip.m │ │ │ ├── LLEmotionInputView.h │ │ │ ├── LLEmotionInputView.m │ │ │ ├── LLShareInputView.h │ │ │ └── LLShareInputView.m │ │ ├── LLChatViewController.h │ │ ├── LLChatViewController.m │ │ ├── Location │ │ │ ├── LLGDConfig.h │ │ │ ├── LLGaoDeLocationViewController.h │ │ │ ├── LLGaoDeLocationViewController.m │ │ │ ├── LLLocationManager.h │ │ │ ├── LLLocationManager.m │ │ │ ├── LLLocationSearchResultController.h │ │ │ ├── LLLocationSearchResultController.m │ │ │ ├── LLLocationShowController.h │ │ │ ├── LLLocationShowController.m │ │ │ ├── LLLocationTableViewCell.h │ │ │ └── LLLocationTableViewCell.m │ │ ├── Sight │ │ │ ├── LLSightCapatureController.h │ │ │ └── LLSightCapatureController.m │ │ ├── ViewControllers │ │ │ ├── LLTextDisplayController.h │ │ │ ├── LLTextDisplayController.m │ │ │ ├── LLWebViewController.h │ │ │ ├── LLWebViewController.m │ │ │ ├── MFMailComposeViewController_LL.h │ │ │ ├── MFMailComposeViewController_LL.m │ │ │ ├── UIImagePickerController_L1.h │ │ │ └── UIImagePickerController_L1.m │ │ └── Views │ │ │ ├── LLChatMoreBottomBar.h │ │ │ ├── LLChatMoreBottomBar.m │ │ │ ├── LLChatMoreBottomBar.xib │ │ │ ├── LLChatSharePanel.h │ │ │ ├── LLChatSharePanel.m │ │ │ ├── LLChatVoiceTipView.h │ │ │ ├── LLChatVoiceTipView.m │ │ │ ├── LLShareCollectionViewCell.h │ │ │ ├── LLShareCollectionViewCell.m │ │ │ ├── LLShareCollectionViewCell.xib │ │ │ ├── LLVoiceIndicatorView.h │ │ │ ├── LLVoiceIndicatorView.m │ │ │ └── LLVoiceIndicatorView.xib │ ├── Contact │ │ ├── LLContactAddController.h │ │ ├── LLContactAddController.m │ │ ├── LLContactApplyController.h │ │ ├── LLContactApplyController.m │ │ ├── LLContactController.h │ │ ├── LLContactController.m │ │ ├── LLContactSearchHeaderView.h │ │ ├── LLContactSearchHeaderView.m │ │ ├── LLContactSearchViews.xib │ │ ├── LLContactWeChatIdSearchController.h │ │ └── LLContactWeChatIdSearchController.m │ ├── Conversation │ │ ├── LLConversationListCell.h │ │ ├── LLConversationListCell.m │ │ ├── LLConversationListCell.xib │ │ ├── LLConversationListController.h │ │ └── LLConversationListController.m │ ├── Discovery │ │ ├── LLDiscoveryController.h │ │ └── LLDiscoveryController.m │ ├── LLMainViewController.h │ ├── LLMainViewController.m │ ├── Login │ │ ├── LLLoginViewController.h │ │ └── LLLoginViewController.m │ ├── Me │ │ ├── LLMeViewController.h │ │ ├── LLMeViewController.m │ │ ├── LLTableViewMeCell.h │ │ ├── LLTableViewMeCell.m │ │ └── Setting │ │ │ ├── LLGeneralSettingController.h │ │ │ ├── LLGeneralSettingController.m │ │ │ ├── LLMeSettingController.h │ │ │ ├── LLMeSettingController.m │ │ │ ├── LLNoDisturbTableViewController.h │ │ │ ├── LLNoDisturbTableViewController.m │ │ │ ├── LLPushNotificationController.h │ │ │ └── LLPushNotificationController.m │ └── Search │ │ ├── LLArticleSearchController.h │ │ ├── LLArticleSearchController.m │ │ ├── LLBrandContactSearchController.h │ │ ├── LLBrandContactSearchController.m │ │ ├── LLChatSearchController.h │ │ ├── LLChatSearchController.m │ │ ├── LLCollectionTextCell.h │ │ ├── LLCollectionTextCell.m │ │ ├── LLMessageSearchResultCell.h │ │ ├── LLMessageSearchResultCell.m │ │ ├── LLMessageSearchResultCell.xib │ │ ├── LLSNSSearchController.h │ │ ├── LLSNSSearchController.m │ │ ├── LLSearchResultTableController.h │ │ ├── LLSearchResultTableController.m │ │ ├── LLSubSearchBaseController.h │ │ └── LLSubSearchBaseController.m ├── Data │ ├── Cache │ │ ├── LLConversationModelManager.h │ │ ├── LLConversationModelManager.m │ │ ├── LLMessageCacheManager.h │ │ ├── LLMessageCacheManager.m │ │ ├── LLMessageCellManager.h │ │ ├── LLMessageCellManager.m │ │ ├── LLMessageModelManager.h │ │ ├── LLMessageModelManager.m │ │ ├── LLMessageThumbnailManager.h │ │ └── LLMessageThumbnailManager.m │ ├── Config │ │ ├── LLConfig.h │ │ └── LLConfig.m │ ├── Hyphenate │ │ ├── InvitationManager.h │ │ └── InvitationManager.m │ ├── LLEmotionModelManager.h │ ├── LLEmotionModelManager.m │ └── Model │ │ ├── LLConversationModel.h │ │ ├── LLConversationModel.m │ │ ├── LLEmotionModel.h │ │ ├── LLEmotionModel.m │ │ ├── LLMessageModel.h │ │ ├── LLMessageModel.m │ │ ├── LLMessageSearchResultModel.h │ │ ├── LLMessageSearchResultModel.m │ │ └── User │ │ ├── LLContactModel.h │ │ ├── LLContactModel.m │ │ ├── LLPushOptions.h │ │ ├── LLPushOptions.m │ │ ├── LLUserGeneralOptions.h │ │ ├── LLUserGeneralOptions.m │ │ ├── LLUserProfile.h │ │ └── LLUserProfile.m ├── General │ ├── Audio │ │ ├── LLAudioManager.h │ │ ├── LLAudioManager.m │ │ ├── LLAudioPlayDelegate.h │ │ ├── LLAudioRecordDelegate.h │ │ └── VoiceConvert │ │ │ ├── EMVoiceConverter.h │ │ │ ├── EMVoiceConverter.mm │ │ │ ├── amrwapper │ │ │ ├── amrFileCodec.h │ │ │ ├── amrFileCodec.mm │ │ │ ├── wav.h │ │ │ └── wav.mm │ │ │ ├── opencore-amrnb │ │ │ ├── interf_dec.h │ │ │ ├── interf_enc.h │ │ │ └── libopencore-amrnb.a │ │ │ └── opencore-amrwb │ │ │ ├── dec_if.h │ │ │ ├── if_rom.h │ │ │ └── libopencore-amrwb.a │ ├── ImagePicker │ │ ├── LLAssetManager.h │ │ ├── LLAssetManager.m │ │ ├── LLImagePickerConfig.h │ │ ├── LLImagePickerController.h │ │ ├── LLImagePickerController.m │ │ ├── LLImagePickerControllerDelegate.h │ │ ├── Model │ │ │ ├── LLAssetModel.h │ │ │ ├── LLAssetModel.m │ │ │ ├── LLAssetsGroupModel.h │ │ │ └── LLAssetsGroupModel.m │ │ ├── Resources │ │ │ ├── CellBlueSelected.png │ │ │ ├── CellBlueSelected@2x.png │ │ │ ├── CellGreySelected.png │ │ │ ├── CellGreySelected@2x.png │ │ │ ├── FriendsSendsPicturesNumberIcon.png │ │ │ ├── FriendsSendsPicturesNumberIcon@2x.png │ │ │ ├── FriendsSendsPicturesQuitBigIcon.png │ │ │ ├── FriendsSendsPicturesQuitBigIcon@2x.png │ │ │ ├── FriendsSendsPicturesSelectBigNIcon.png │ │ │ ├── FriendsSendsPicturesSelectBigNIcon@2x.png │ │ │ ├── FriendsSendsPicturesSelectBigYIcon.png │ │ │ ├── FriendsSendsPicturesSelectBigYIcon@2x.png │ │ │ ├── FriendsSendsPicturesSelectIcon.png │ │ │ ├── FriendsSendsPicturesSelectIcon@2x.png │ │ │ ├── FriendsSendsPicturesSelectYIcon.png │ │ │ ├── FriendsSendsPicturesSelectYIcon@2x.png │ │ │ ├── MMVideoPreviewPlay@2x.png │ │ │ ├── MMVideoPreviewPlay@3x.png │ │ │ ├── MMVideoPreviewPlayHL@2x.png │ │ │ ├── MMVideoPreviewPlayHL@3x.png │ │ │ └── VideoSendIcon@2x.png │ │ ├── View │ │ │ ├── LLAssetImageCell.h │ │ │ ├── LLAssetImageCell.m │ │ │ ├── LLAssetVideoCell.h │ │ │ ├── LLAssetVideoCell.m │ │ │ ├── LLImageNumberView.h │ │ │ ├── LLImageNumberView.m │ │ │ ├── LLImageScrollView.h │ │ │ ├── LLImageScrollView.m │ │ │ ├── LLImageSelectIndicator.h │ │ │ ├── LLImageSelectIndicator.m │ │ │ ├── LLPhotoToolbar.h │ │ │ └── LLPhotoToolbar.m │ │ └── ViewController │ │ │ ├── LLAlbumListController.h │ │ │ ├── LLAlbumListController.m │ │ │ ├── LLAssetListController.h │ │ │ ├── LLAssetListController.m │ │ │ ├── LLAuthorizationDeniedController.h │ │ │ ├── LLAuthorizationDeniedController.m │ │ │ ├── LLImageShowController.h │ │ │ ├── LLImageShowController.m │ │ │ ├── LLVideoDisPlayController.h │ │ │ └── LLVideoDisPlayController.m │ ├── ThirdParty │ │ └── MBProgressHUD │ │ │ ├── LICENSE │ │ │ ├── MBProgressHUD.h │ │ │ ├── MBProgressHUD.m │ │ │ └── README.mdown │ ├── UI │ │ ├── LLActionSheet.h │ │ ├── LLActionSheet.m │ │ ├── LLGIFImageView.h │ │ ├── LLGIFImageView.m │ │ ├── LLLeftAlignedCollectionViewFlowLayout.h │ │ ├── LLLeftAlignedCollectionViewFlowLayout.m │ │ ├── LLSearchBar.h │ │ ├── LLSearchBar.m │ │ ├── LLSearchControllerDelegate.h │ │ ├── LLSearchResultDelegate.h │ │ ├── LLSearchViewController.h │ │ ├── LLSearchViewController.m │ │ ├── LLSimpleTextLabel.h │ │ ├── LLSimpleTextLabel.m │ │ ├── LLTableViewCell.h │ │ ├── LLTableViewCell.m │ │ ├── LLTableViewCellData.h │ │ ├── LLTableViewCellData.m │ │ ├── LLTipDelegate.h │ │ ├── LLTipView.h │ │ ├── LLTipView.m │ │ ├── LLVideoPlaybackView.h │ │ ├── LLVideoPlaybackView.m │ │ ├── LLWebViewProgressView.h │ │ └── LLWebViewProgressView.m │ └── Utility │ │ ├── Category │ │ ├── NSDate+LLExt.h │ │ ├── NSDate+LLExt.m │ │ ├── NSString+encrypto.h │ │ ├── NSString+encrypto.m │ │ ├── UICollectionView+LLExt.h │ │ ├── UICollectionView+LLExt.m │ │ ├── UIColor+LLExt.h │ │ ├── UIColor+LLExt.m │ │ ├── UIImage+EMGIF.h │ │ ├── UIImage+EMGIF.m │ │ ├── UIImage+LLExt.h │ │ ├── UIImage+LLExt.m │ │ ├── UIKit+LLExt.h │ │ ├── UINavigationBar+LLExt.h │ │ ├── UINavigationBar+LLExt.m │ │ ├── UIScrollView+LLExt.h │ │ ├── UIScrollView+LLExt.m │ │ ├── UITableView+LLExt.h │ │ ├── UITableView+LLExt.m │ │ ├── UITextView+LLDebugOnly.h │ │ ├── UITextView+LLDebugOnly.m │ │ ├── UIView+LLExt.h │ │ └── UIView+LLExt.m │ │ ├── LLColors.h │ │ ├── LLDeviceManager.h │ │ ├── LLDeviceManager.m │ │ ├── LLMacro.h │ │ ├── LLUtils+Application.h │ │ ├── LLUtils+Application.m │ │ ├── LLUtils+Audio.h │ │ ├── LLUtils+Audio.m │ │ ├── LLUtils+CGHelper.h │ │ ├── LLUtils+CGHelper.m │ │ ├── LLUtils+File.h │ │ ├── LLUtils+File.m │ │ ├── LLUtils+IPhone.h │ │ ├── LLUtils+IPhone.m │ │ ├── LLUtils+Notification.h │ │ ├── LLUtils+Notification.m │ │ ├── LLUtils+Popover.h │ │ ├── LLUtils+Popover.m │ │ ├── LLUtils+Text.h │ │ ├── LLUtils+Text.m │ │ ├── LLUtils+Video.h │ │ ├── LLUtils+Video.m │ │ ├── LLUtils.h │ │ ├── LLUtils.m │ │ ├── Reachability.h │ │ └── Reachability.m ├── Info.plist ├── Resources │ ├── Audio │ │ └── in.caf │ ├── Emotion.bundle │ │ ├── EmoticonAddButton@2x.png │ │ ├── EmoticonAddButton@3x.png │ │ ├── Expression_100@2x.png │ │ ├── Expression_10@2x.png │ │ ├── Expression_11@2x.png │ │ ├── Expression_12@2x.png │ │ ├── Expression_13@2x.png │ │ ├── Expression_14@2x.png │ │ ├── Expression_15@2x.png │ │ ├── Expression_16@2x.png │ │ ├── Expression_17@2x.png │ │ ├── Expression_18@2x.png │ │ ├── Expression_19@2x.png │ │ ├── Expression_1@2x.png │ │ ├── Expression_20@2x.png │ │ ├── Expression_21@2x.png │ │ ├── Expression_22@2x.png │ │ ├── Expression_23@2x.png │ │ ├── Expression_24@2x.png │ │ ├── Expression_25@2x.png │ │ ├── Expression_26@2x.png │ │ ├── Expression_27@2x.png │ │ ├── Expression_28@2x.png │ │ ├── Expression_29@2x.png │ │ ├── Expression_2@2x.png │ │ ├── Expression_30@2x.png │ │ ├── Expression_31@2x.png │ │ ├── Expression_32@2x.png │ │ ├── Expression_33@2x.png │ │ ├── Expression_34@2x.png │ │ ├── Expression_35@2x.png │ │ ├── Expression_36@2x.png │ │ ├── Expression_37@2x.png │ │ ├── Expression_38@2x.png │ │ ├── Expression_39@2x.png │ │ ├── Expression_3@2x.png │ │ ├── Expression_40@2x.png │ │ ├── Expression_41@2x.png │ │ ├── Expression_42@2x.png │ │ ├── Expression_43@2x.png │ │ ├── Expression_44@2x.png │ │ ├── Expression_45@2x.png │ │ ├── Expression_46@2x.png │ │ ├── Expression_47@2x.png │ │ ├── Expression_48@2x.png │ │ ├── Expression_49@2x.png │ │ ├── Expression_4@2x.png │ │ ├── Expression_50@2x.png │ │ ├── Expression_51@2x.png │ │ ├── Expression_52@2x.png │ │ ├── Expression_53@2x.png │ │ ├── Expression_54@2x.png │ │ ├── Expression_55@2x.png │ │ ├── Expression_56@2x.png │ │ ├── Expression_57@2x.png │ │ ├── Expression_58@2x.png │ │ ├── Expression_59@2x.png │ │ ├── Expression_5@2x.png │ │ ├── Expression_60@2x.png │ │ ├── Expression_61@2x.png │ │ ├── Expression_62@2x.png │ │ ├── Expression_63@2x.png │ │ ├── Expression_64@2x.png │ │ ├── Expression_65@2x.png │ │ ├── Expression_66@2x.png │ │ ├── Expression_67@2x.png │ │ ├── Expression_68@2x.png │ │ ├── Expression_69@2x.png │ │ ├── Expression_6@2x.png │ │ ├── Expression_70@2x.png │ │ ├── Expression_71@2x.png │ │ ├── Expression_72@2x.png │ │ ├── Expression_73@2x.png │ │ ├── Expression_74@2x.png │ │ ├── Expression_75@2x.png │ │ ├── Expression_76@2x.png │ │ ├── Expression_77@2x.png │ │ ├── Expression_78@2x.png │ │ ├── Expression_79@2x.png │ │ ├── Expression_7@2x.png │ │ ├── Expression_80@2x.png │ │ ├── Expression_81@2x.png │ │ ├── Expression_82@2x.png │ │ ├── Expression_83@2x.png │ │ ├── Expression_84@2x.png │ │ ├── Expression_85@2x.png │ │ ├── Expression_86@2x.png │ │ ├── Expression_87@2x.png │ │ ├── Expression_88@2x.png │ │ ├── Expression_89@2x.png │ │ ├── Expression_8@2x.png │ │ ├── Expression_90@2x.png │ │ ├── Expression_91@2x.png │ │ ├── Expression_92@2x.png │ │ ├── Expression_93@2x.png │ │ ├── Expression_94@2x.png │ │ ├── Expression_95@2x.png │ │ ├── Expression_96@2x.png │ │ ├── Expression_97@2x.png │ │ ├── Expression_98@2x.png │ │ ├── Expression_99@2x.png │ │ ├── Expression_9@2x.png │ │ ├── Info.plist │ │ ├── Tuzki_1.gif │ │ ├── Tuzki_1.png │ │ ├── Tuzki_10.gif │ │ ├── Tuzki_10.png │ │ ├── Tuzki_11.gif │ │ ├── Tuzki_11.png │ │ ├── Tuzki_12.gif │ │ ├── Tuzki_12.png │ │ ├── Tuzki_13.gif │ │ ├── Tuzki_13.png │ │ ├── Tuzki_14.gif │ │ ├── Tuzki_14.png │ │ ├── Tuzki_15.gif │ │ ├── Tuzki_15.png │ │ ├── Tuzki_16.gif │ │ ├── Tuzki_16.png │ │ ├── Tuzki_2.gif │ │ ├── Tuzki_2.png │ │ ├── Tuzki_3.gif │ │ ├── Tuzki_3.png │ │ ├── Tuzki_4.gif │ │ ├── Tuzki_4.png │ │ ├── Tuzki_5.gif │ │ ├── Tuzki_5.png │ │ ├── Tuzki_6.gif │ │ ├── Tuzki_6.png │ │ ├── Tuzki_7.gif │ │ ├── Tuzki_7.png │ │ ├── Tuzki_8.gif │ │ ├── Tuzki_8.png │ │ ├── Tuzki_9.gif │ │ ├── Tuzki_9.png │ │ └── dice_Action_0.png │ ├── Emotions.plist │ ├── Media.xcassets │ │ ├── Contents.json │ │ ├── Record │ │ │ ├── Contents.json │ │ │ ├── MessageTooShort.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── MessageTooShort@2x.png │ │ │ │ └── MessageTooShort@3x.png │ │ │ ├── RecordCancel.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── RecordCancel@2x.png │ │ │ │ └── RecordCancel@3x.png │ │ │ ├── RecordingBkg.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── RecordingBkg@2x.png │ │ │ │ └── RecordingBkg@3x.png │ │ │ ├── RecordingSignal001.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── RecordingSignal001@2x.png │ │ │ │ └── RecordingSignal001@3x.png │ │ │ ├── RecordingSignal002.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── RecordingSignal002@2x.png │ │ │ │ └── RecordingSignal002@3x.png │ │ │ ├── RecordingSignal003.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── RecordingSignal003@2x.png │ │ │ │ └── RecordingSignal003@3x.png │ │ │ ├── RecordingSignal004.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── RecordingSignal004@2x.png │ │ │ │ └── RecordingSignal004@3x.png │ │ │ ├── RecordingSignal005.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── RecordingSignal005@2x.png │ │ │ │ └── RecordingSignal005@3x.png │ │ │ ├── RecordingSignal006.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── RecordingSignal006@2x.png │ │ │ │ └── RecordingSignal006@3x.png │ │ │ ├── RecordingSignal007.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── RecordingSignal007@2x.png │ │ │ │ └── RecordingSignal007@3x.png │ │ │ ├── RecordingSignal008.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── RecordingSignal008@2x.png │ │ │ │ └── RecordingSignal008@3x.png │ │ │ ├── bottomTipsBg.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── bottomTipsBg@2x.png │ │ │ ├── bottomTipsClose.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── bottomTipsClose@2x.png │ │ │ ├── bottomTipsGrayClose.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── bottomTipsGrayClose@2x.png │ │ │ ├── bottomTipsIcon_Ear.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── bottomTipsIcon_Ear@2x.png │ │ │ └── bottomTipsIcon_Voice.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── bottomTipsIcon_Voice@2x.png │ │ ├── bar_button │ │ │ ├── Contents.json │ │ │ ├── barbuttonicon_Camera.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── barbuttonicon_Camera.png │ │ │ │ ├── barbuttonicon_Camera@2x.png │ │ │ │ └── barbuttonicon_Camera@3x.png │ │ │ ├── barbuttonicon_Camera_Golden.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── barbuttonicon_Camera_Golden@2x.png │ │ │ │ └── barbuttonicon_Camera_Golden@3x.png │ │ │ ├── barbuttonicon_InfoMulti.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── barbuttonicon_InfoMulti.png │ │ │ │ ├── barbuttonicon_InfoMulti@2x.png │ │ │ │ └── barbuttonicon_InfoMulti@3x.png │ │ │ ├── barbuttonicon_InfoSingle.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── barbuttonicon_InfoSingle.png │ │ │ │ ├── barbuttonicon_InfoSingle@2x.png │ │ │ │ └── barbuttonicon_InfoSingle@3x.png │ │ │ ├── barbuttonicon_Luckymoney.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── barbuttonicon_Luckymoney@2x.png │ │ │ │ └── barbuttonicon_Luckymoney@3x.png │ │ │ ├── barbuttonicon_Operate.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── barbuttonicon_Operate.png │ │ │ │ ├── barbuttonicon_Operate@2x.png │ │ │ │ └── barbuttonicon_Operate@3x.png │ │ │ ├── barbuttonicon_add.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── barbuttonicon_add.png │ │ │ │ ├── barbuttonicon_add@2x.png │ │ │ │ └── barbuttonicon_add@3x.png │ │ │ ├── barbuttonicon_add_cube.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── barbuttonicon_add_cube@2x.png │ │ │ │ └── barbuttonicon_add_cube@3x.png │ │ │ ├── barbuttonicon_addfriends.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── barbuttonicon_addfriends@2x.png │ │ │ │ └── barbuttonicon_addfriends@3x.png │ │ │ ├── barbuttonicon_back.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── barbuttonicon_back.png │ │ │ │ ├── barbuttonicon_back@2x.png │ │ │ │ └── barbuttonicon_back@3x.png │ │ │ ├── barbuttonicon_call.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── barbuttonicon_call@2x.png │ │ │ │ └── barbuttonicon_call@3x.png │ │ │ ├── barbuttonicon_delete.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── barbuttonicon_delete.png │ │ │ │ ├── barbuttonicon_delete@2x.png │ │ │ │ └── barbuttonicon_delete@3x.png │ │ │ ├── barbuttonicon_mini_cube.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── barbuttonicon_mini_cube@2x.png │ │ │ │ └── barbuttonicon_mini_cube@3x.png │ │ │ ├── barbuttonicon_more.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── barbuttonicon_more.png │ │ │ │ ├── barbuttonicon_more@2x.png │ │ │ │ └── barbuttonicon_more@3x.png │ │ │ ├── barbuttonicon_more_black.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── barbuttonicon_more_black@2x.png │ │ │ │ └── barbuttonicon_more_black@3x.png │ │ │ ├── barbuttonicon_question.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── barbuttonicon_question@2x.png │ │ │ │ └── barbuttonicon_question@3x.png │ │ │ └── barbuttonicon_set.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── barbuttonicon_set.png │ │ │ │ ├── barbuttonicon_set@2x.png │ │ │ │ └── barbuttonicon_set@3x.png │ │ ├── chat │ │ │ ├── CellBlueSelected.imageset │ │ │ │ ├── CellBlueSelected@2x.png │ │ │ │ └── Contents.json │ │ │ ├── CellGreySelected.imageset │ │ │ │ ├── CellGreySelected@2x.png │ │ │ │ └── Contents.json │ │ │ ├── CellNotSelected.imageset │ │ │ │ ├── CellNotSelected@2x.png │ │ │ │ └── Contents.json │ │ │ ├── CellRedSelected.imageset │ │ │ │ ├── CellRedSelected@2x.png │ │ │ │ └── Contents.json │ │ │ ├── CellSelected.imageset │ │ │ │ ├── CellSelected@2x.png │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Fav_Search_Video.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Fav_Search_Video@2x.png │ │ │ │ └── Fav_Search_Video@3x.png │ │ │ ├── Fav_Search_pic.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Fav_Search_pic@2x.png │ │ │ │ └── Fav_Search_pic@3x.png │ │ │ ├── MessageListSending.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── MessageListSending@2x.png │ │ │ ├── MessageSendFail.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── MessageSendFail@2x.png │ │ │ │ └── MessageSendFail@3x.png │ │ │ ├── PhotoDownload.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── PhotoDownload@2x.png │ │ │ ├── PhotoDownloadfailed.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── PhotoDownloadfailed@2x.png │ │ │ ├── PhotoDownloadfailedSamll.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── PhotoDownloadfailedSamll@2x.png │ │ │ ├── ReceiverImageNodeBorder.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ReceiverImageNodeBorder@2x.png │ │ │ │ └── ReceiverImageNodeBorder@3x.png │ │ │ ├── ReceiverImageNodeMask.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ReceiverImageNodeMask@2x.png │ │ │ ├── ReceiverTextNodeBkg.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ReceiverTextNodeBkg@2x.png │ │ │ │ └── ReceiverTextNodeBkg@3x.png │ │ │ ├── ReceiverTextNodeBkgHL.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ReceiverTextNodeBkgHL@2x.png │ │ │ │ └── ReceiverTextNodeBkgHL@3x.png │ │ │ ├── ReceiverVoiceNodePlaying.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ReceiverVoiceNodePlaying@2x.png │ │ │ │ └── ReceiverVoiceNodePlaying@3x.png │ │ │ ├── ReceiverVoiceNodePlaying001.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ReceiverVoiceNodePlaying001@2x.png │ │ │ │ └── ReceiverVoiceNodePlaying001@3x.png │ │ │ ├── ReceiverVoiceNodePlaying002.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ReceiverVoiceNodePlaying002@2x.png │ │ │ │ └── ReceiverVoiceNodePlaying002@3x.png │ │ │ ├── ReceiverVoiceNodePlaying003.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ReceiverVoiceNodePlaying003@2x.png │ │ │ │ └── ReceiverVoiceNodePlaying003@3x.png │ │ │ ├── SenderImageNodeBorder.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── SenderImageNodeBorder@2x.png │ │ │ │ └── SenderImageNodeBorder@3x.png │ │ │ ├── SenderImageNodeMask.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ReceiverImageNodeMask@2x.png │ │ │ ├── SenderTextNodeBkg.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── SenderTextNodeBkg@2x.png │ │ │ │ └── SenderTextNodeBkg@3x.png │ │ │ ├── SenderTextNodeBkgHL.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── SenderTextNodeBkgHL@2x.png │ │ │ │ └── SenderTextNodeBkgHL@3x.png │ │ │ ├── SenderVoiceNodeDownloading.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── SenderVoiceNodeDownloading@2x.png │ │ │ │ └── SenderVoiceNodeDownloading@3x.png │ │ │ ├── SenderVoiceNodePlaying.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── SenderVoiceNodePlaying@2x.png │ │ │ │ └── SenderVoiceNodePlaying@3x.png │ │ │ ├── SenderVoiceNodePlaying001.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── SenderVoiceNodePlaying001@2x.png │ │ │ │ └── SenderVoiceNodePlaying001@3x.png │ │ │ ├── SenderVoiceNodePlaying002.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── SenderVoiceNodePlaying002@2x.png │ │ │ │ └── SenderVoiceNodePlaying002@3x.png │ │ │ ├── SenderVoiceNodePlaying003.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── SenderVoiceNodePlaying003@2x.png │ │ │ │ └── SenderVoiceNodePlaying003@3x.png │ │ │ ├── Session_Multi_Delete.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Session_Multi_Delete@2x.png │ │ │ │ └── Session_Multi_Delete@3x.png │ │ │ ├── Session_Multi_Delete_HL.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Session_Multi_Delete_HL@2x.png │ │ │ │ └── Session_Multi_Delete_HL@3x.png │ │ │ ├── Session_Multi_Fav.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Session_Multi_Fav@2x.png │ │ │ │ └── Session_Multi_Fav@3x.png │ │ │ ├── Session_Multi_Fav_HL.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Session_Multi_Fav_HL@2x.png │ │ │ │ └── Session_Multi_Fav_HL@3x.png │ │ │ ├── Session_Multi_Forward.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Session_Multi_Forward@2x.png │ │ │ │ └── Session_Multi_Forward@3x.png │ │ │ ├── Session_Multi_Forward_HL.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Session_Multi_Forward_HL@2x.png │ │ │ │ └── Session_Multi_Forward_HL@3x.png │ │ │ ├── Session_Multi_More.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Session_Multi_More@2x.png │ │ │ │ └── Session_Multi_More@3x.png │ │ │ ├── Session_Multi_More_HL.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Session_Multi_More_HL@2x.png │ │ │ │ └── Session_Multi_More_HL@3x.png │ │ │ ├── SignUpError.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── SignUpError@2x.png │ │ │ ├── SystemTipBtnClose.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── SystemTipBtnClose@2x.png │ │ │ ├── chathistory_detail_end.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── chathistory_detail_end@2x.png │ │ │ │ └── chathistory_detail_end@3x.png │ │ │ ├── emoticon_keyboard_magnifier.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── emoticon_keyboard_magnifier@2x.png │ │ │ │ └── emoticon_keyboard_magnifier@3x.png │ │ │ ├── emotion_delete.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── compose_emotion_delete_highlighted@2x.png │ │ │ ├── fts_search_moment_video.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── fts_search_moment_video@2x.png │ │ │ ├── icon_avatar.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_avatar.png │ │ │ ├── multitalkVoiceMark.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── multitalkVoiceMark@2x.png │ │ │ │ └── multitalkVoiceMark@3x.png │ │ │ ├── share_auth_fail.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── share_auth_fail@2x.png │ │ │ ├── tool_emotion_1.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ToolViewEmotion@2x.png │ │ │ │ └── ToolViewEmotion@3x.png │ │ │ ├── tool_emotion_2.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ToolViewEmotionHL@2x.png │ │ │ │ └── ToolViewEmotionHL@3x.png │ │ │ ├── tool_keyboard_1.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ToolViewKeyboard@2x.png │ │ │ │ └── ToolViewKeyboard@3x.png │ │ │ ├── tool_keyboard_2.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ToolViewKeyboardHL@2x.png │ │ │ │ └── ToolViewKeyboardHL@3x.png │ │ │ ├── tool_share_1.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── TypeSelectorBtn_Black@2x.png │ │ │ │ └── TypeSelectorBtn_Black@3x.png │ │ │ ├── tool_share_2.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── TypeSelectorBtnHL_Black@2x.png │ │ │ │ └── TypeSelectorBtnHL_Black@3x.png │ │ │ ├── tool_voice_1.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ToolViewInputVoice@2x.png │ │ │ │ └── ToolViewInputVoice@3x.png │ │ │ ├── tool_voice_2.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ToolViewInputVoiceHL@2x.png │ │ │ │ └── ToolViewInputVoiceHL@3x.png │ │ │ ├── video_icon_play.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── video_icon_play@2x.png │ │ │ │ └── video_icon_play@3x.png │ │ │ └── volume_smalltipsicon.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── volume_smalltipsicon@2x.png │ │ ├── contact │ │ │ ├── ContactPanelHeaderBkg.imageset │ │ │ │ ├── ContactPanelHeaderBkg@2x.png │ │ │ │ └── Contents.json │ │ │ ├── Contact_Female.imageset │ │ │ │ ├── Contact_Female@2x.png │ │ │ │ └── Contents.json │ │ │ ├── Contact_Male.imageset │ │ │ │ ├── Contact_Male@2x.png │ │ │ │ └── Contents.json │ │ │ ├── Contact_SyncPhoneContacts_avatar.imageset │ │ │ │ ├── Contact_SyncPhoneContacts_avatar@2x.png │ │ │ │ └── Contents.json │ │ │ ├── Contact_icon_ContactTag.imageset │ │ │ │ ├── Contact_icon_ContactTag@2x.png │ │ │ │ ├── Contact_icon_ContactTag@3x.png │ │ │ │ └── Contents.json │ │ │ ├── Contactatargroupicon.imageset │ │ │ │ ├── Contactatargroupicon@2x.png │ │ │ │ └── Contents.json │ │ │ ├── ContactsPanelDotRect.imageset │ │ │ │ ├── ContactsPanelDotRect@2x.png │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── add_friend_icon_addgroup.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── add_friend_icon_addgroup@2x.png │ │ │ │ └── add_friend_icon_addgroup@3x.png │ │ │ ├── add_friend_icon_contacts.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── add_friend_icon_contacts@2x.png │ │ │ │ └── add_friend_icon_contacts@3x.png │ │ │ ├── add_friend_icon_offical.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── add_friend_icon_offical@2x.png │ │ │ │ └── add_friend_icon_offical@3x.png │ │ │ ├── add_friend_icon_reda.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── add_friend_icon_reda@2x.png │ │ │ │ └── add_friend_icon_reda@3x.png │ │ │ ├── add_friend_icon_scanqr.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── add_friend_icon_scanqr@2x.png │ │ │ │ └── add_friend_icon_scanqr@3x.png │ │ │ ├── add_friend_icon_search.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── add_friend_icon_search@2x.png │ │ │ ├── add_friend_myQR.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── add_friend_myQR@2x.png │ │ │ ├── add_friend_searchicon.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── add_friend_searchicon@2x.png │ │ │ ├── contactflag_star_mark.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── contactflag_star_mark@2x.png │ │ │ ├── contacts_add_audiocall.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── contacts_add_audiocall@2x.png │ │ │ ├── contacts_add_bottle.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── contacts_add_bottle@2x.png │ │ │ ├── contacts_add_facefriend.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── contacts_add_facefriend@2x.png │ │ │ ├── contacts_add_favourite.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── contacts_add_favourite@2x.png │ │ │ ├── contacts_add_friend.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── contacts_add_friend@2x.png │ │ │ │ └── contacts_add_friend@3x.png │ │ │ ├── contacts_add_game.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── contacts_add_game@2x.png │ │ │ ├── contacts_add_groupmessage.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── contacts_add_groupmessage@2x.png │ │ │ ├── contacts_add_moment.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── contacts_add_moment@2x.png │ │ │ ├── contacts_add_myablum.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── contacts_add_myablum@2x.png │ │ │ ├── contacts_add_mycard.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── contacts_add_mycard@2x.png │ │ │ ├── contacts_add_myqrcode.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── contacts_add_myqrcode@2x.png │ │ │ ├── contacts_add_nearby.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── contacts_add_nearby@2x.png │ │ │ ├── contacts_add_newmessage.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── contacts_add_newmessage@2x.png │ │ │ │ └── contacts_add_newmessage@3x.png │ │ │ ├── contacts_add_photo.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── contacts_add_photo@2x.png │ │ │ ├── contacts_add_radar.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── contacts_add_radar@2x.png │ │ │ ├── contacts_add_scan.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── contacts_add_scan@2x.png │ │ │ │ └── contacts_add_scan@3x.png │ │ │ ├── contacts_add_shake.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── contacts_add_shake@2x.png │ │ │ ├── contacts_add_sticker.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── contacts_add_sticker@2x.png │ │ │ ├── contacts_add_voip.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── contacts_add_voip@2x.png │ │ │ ├── contacts_add_webwechat.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── contacts_add_webwechat@2x.png │ │ │ ├── contacts_add_wechatout.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── contacts_add_wechatout@2x.png │ │ │ │ └── contacts_add_wechatout@3x.png │ │ │ ├── contacts_audiocall.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── contacts_audiocall@2x.png │ │ │ ├── contacts_helloword.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── contacts_helloword@2x.png │ │ │ ├── contacts_home_icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── contacts_home_icon@2x.png │ │ │ ├── contacts_sectionHeaderBkg.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── contacts_sectionHeaderBkg@2x.png │ │ │ ├── contacts_signature_background.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── contacts_signature_background@2x.png │ │ │ └── contacts_videocall.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── contacts_videocall@2x.png │ │ ├── conversation │ │ │ ├── Contents.json │ │ │ ├── fts_edu_article_icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── fts_edu_article_icon@2x.png │ │ │ │ └── fts_edu_article_icon@3x.png │ │ │ ├── fts_edu_brandcontact_icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── fts_edu_brandcontact_icon@2x.png │ │ │ │ └── fts_edu_brandcontact_icon@3x.png │ │ │ ├── fts_edu_button_bkg_highlight.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── fts_edu_button_bkg_highlight@2x.png │ │ │ │ └── fts_edu_button_bkg_highlight@3x.png │ │ │ ├── fts_edu_button_bkg_normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── fts_edu_button_bkg_normal@2x.png │ │ │ │ └── fts_edu_button_bkg_normal@3x.png │ │ │ ├── fts_edu_sns_icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── fts_edu_sns_icon@2x.png │ │ │ │ └── fts_edu_sns_icon@3x.png │ │ │ ├── fts_searchicon_article.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── fts_searchicon_article@2x.png │ │ │ ├── fts_searchicon_brandcontact.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── fts_searchicon_brandcontact@2x.png │ │ │ └── fts_searchicon_sns.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── fts_searchicon_sns@2x.png │ │ ├── dice │ │ │ ├── Contents.json │ │ │ ├── dice_Action_0.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── dice_Action_0.png │ │ │ ├── dice_Action_1.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── dice_Action_1.png │ │ │ ├── dice_Action_2.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── dice_Action_2.png │ │ │ └── dice_Action_3.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── dice_Action_3.png │ │ ├── discover │ │ │ ├── Contents.json │ │ │ ├── ff_IconBottle.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ff_IconBottle.png │ │ │ │ ├── ff_IconBottle@2x.png │ │ │ │ └── ff_IconBottle@3x.png │ │ │ ├── ff_IconGroup.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ff_IconGroup@2x.png │ │ │ ├── ff_IconLocationService.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ff_IconLocationService.png │ │ │ │ ├── ff_IconLocationService@2x.png │ │ │ │ └── ff_IconLocationService@3x.png │ │ │ ├── ff_IconQRCode.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ff_IconQRCode.png │ │ │ │ ├── ff_IconQRCode@2x.png │ │ │ │ └── ff_IconQRCode@3x.png │ │ │ ├── ff_IconShake.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ff_IconShake.png │ │ │ │ ├── ff_IconShake@2x.png │ │ │ │ └── ff_IconShake@3x.png │ │ │ └── ff_IconShowAlbum.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ff_IconShowAlbum.png │ │ │ │ ├── ff_IconShowAlbum@2x.png │ │ │ │ └── ff_IconShowAlbum@3x.png │ │ ├── emotion │ │ │ ├── Contents.json │ │ │ ├── EPackageTusijiImage.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── EPackageTusijiImage.png │ │ │ │ └── EPackageTusijiImage@2x.png │ │ │ ├── EmoticonAddButton.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── EmoticonAddButton@2x.png │ │ │ │ └── EmoticonAddButton@3x.png │ │ │ ├── EmoticonBigTipsLeft.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── EmoticonBigTipsLeft@2x.png │ │ │ ├── EmoticonBigTipsMiddle.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── EmoticonBigTipsMiddle@2x.png │ │ │ ├── EmoticonBigTipsRight.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── EmoticonBigTipsRight@2x.png │ │ │ ├── EmoticonFocus.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── EmoticonFocus@2x.png │ │ │ ├── EmotionCustomHL.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── EmotionCustomHL@2x.png │ │ │ ├── EmotionsBagAdd.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── EmotionsBagAdd@2x.png │ │ │ ├── EmotionsEmojiHL.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── EmotionsEmojiHL@2x.png │ │ │ ├── EmotionsSendBtnBlue.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── EmotionsSendBtnBlue@2x.png │ │ │ ├── EmotionsSendBtnBlueHL.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── EmotionsSendBtnBlueHL@2x.png │ │ │ ├── EmotionsSendBtnGrey.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── EmotionsSendBtnGrey@2x.png │ │ │ └── EmotionsSetting.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── EmotionsSetting@2x.png │ │ ├── location │ │ │ ├── AlbumCheckmark.imageset │ │ │ │ ├── AlbumCheckmark@2x.png │ │ │ │ └── Contents.json │ │ │ ├── AlbumLocation.imageset │ │ │ │ ├── AlbumLocation@2x.png │ │ │ │ └── Contents.json │ │ │ ├── AlbumLocationHL.imageset │ │ │ │ ├── AlbumLocationHL@2x.png │ │ │ │ └── Contents.json │ │ │ ├── AlbumLocationIcon.imageset │ │ │ │ ├── AlbumLocationIcon@2x.png │ │ │ │ └── Contents.json │ │ │ ├── AlbumLocationIconHL.imageset │ │ │ │ ├── AlbumLocationIconHL@2x.png │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── barbuttonicon_back_cube.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── barbuttonicon_back_cube@2x.png │ │ │ │ └── barbuttonicon_back_cube@3x.png │ │ │ ├── barbuttonicon_more_cube.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── barbuttonicon_more_cube@2x.png │ │ │ │ └── barbuttonicon_more_cube@3x.png │ │ │ ├── located_pin.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── located_pin@2x.png │ │ │ │ └── located_pin@3x.png │ │ │ ├── locationSharing_Icon_MySelf.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── locationSharing_Icon_MySelf@2x.png │ │ │ ├── locationSharing_Icon_Myself_Heading.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── locationSharing_Icon_Myself_Heading@2x.png │ │ │ ├── locationSharing_navigate_icon_HL_new.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── locationSharing_navigate_icon_HL_new@2x.png │ │ │ │ └── locationSharing_navigate_icon_HL_new@3x.png │ │ │ ├── locationSharing_navigate_icon_new.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── locationSharing_navigate_icon_new@2x.png │ │ │ │ └── locationSharing_navigate_icon_new@3x.png │ │ │ ├── location_my.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── location_my@2x.png │ │ │ │ └── location_my@3x.png │ │ │ ├── location_my_HL.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── location_my_HL@2x.png │ │ │ │ └── location_my_HL@3x.png │ │ │ ├── location_my_current.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── location_my_current@2x.png │ │ │ │ └── location_my_current@3x.png │ │ │ └── map_located.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── map_located@2x.png │ │ ├── me │ │ │ ├── Contents.json │ │ │ └── MyQRCodeAction.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── MyQRCodeAction.png │ │ │ │ ├── MyQRCodeAction@2x.png │ │ │ │ └── MyQRCodeAction@3x.png │ │ ├── more │ │ │ ├── Contents.json │ │ │ ├── MoreExpressionShops.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── MoreExpressionShops@2x.png │ │ │ │ └── MoreExpressionShops@3x.png │ │ │ ├── MoreGame.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── MoreGame@2x.png │ │ │ │ └── MoreGame@3x.png │ │ │ ├── MoreMyAlbum.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── MoreMyAlbum@2x.png │ │ │ │ └── MoreMyAlbum@3x.png │ │ │ ├── MoreMyBankCard.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── MoreMyBankCard@2x.png │ │ │ │ └── MoreMyBankCard@3x.png │ │ │ ├── MoreMyFavorites.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── MoreMyFavorites@2x.png │ │ │ │ └── MoreMyFavorites@3x.png │ │ │ ├── MoreSetting.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── MoreSetting@2x.png │ │ │ │ └── MoreSetting@3x.png │ │ │ └── MyCardPackageIcon.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── MyCardPackageIcon@2x.png │ │ ├── other │ │ │ ├── Action_Button.imageset │ │ │ │ ├── Action_Button@2x.png │ │ │ │ └── Contents.json │ │ │ ├── Action_Email.imageset │ │ │ │ ├── Action_Email@2x.png │ │ │ │ ├── Action_Email@3x.png │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── LoginGreenBigBtn.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LoginGreenBigBtn.png │ │ │ │ └── LoginGreenBigBtn@2x.png │ │ │ ├── Mode_more_frame_line.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Mode_more_frame_line.png │ │ │ │ └── Mode_more_frame_line@2x.png │ │ │ ├── WebView_LoadFail_Refresh_Icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── WebView_LoadFail_Refresh_Icon@2x.png │ │ │ ├── WizAppIcon60x60.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── WizAppIcon60x60@2x.png │ │ │ │ └── WizAppIcon60x60@3x.png │ │ │ ├── YoudaoAppIcon60x60.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── YoudaoAppIcon60x60@2x.png │ │ │ ├── back_icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Icon - Left.pdf │ │ │ ├── connect_alert_error.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── connect_alert_error.png │ │ │ │ └── connect_alert_error@2x.png │ │ │ ├── fts_green_btn.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── fts_green_btn@2x.png │ │ │ ├── fts_green_btn_HL.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── fts_green_btn_HL@2x.png │ │ │ ├── operationbox_successful.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── operationbox_successful@2x.png │ │ │ ├── receipt_payment_icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── receipt_payment_icon@2x.png │ │ │ │ └── receipt_payment_icon@3x.png │ │ │ └── wcproduct_sku_selected.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── wcproduct_sku_selected@2x.png │ │ ├── plugin │ │ │ ├── Contents.json │ │ │ └── plugins_FriendNotify.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── plugins_FriendNotify@2x.png │ │ │ │ └── plugins_FriendNotify@3x.png │ │ ├── scan │ │ │ ├── Contents.json │ │ │ ├── ScanBook.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ScanBook@2x.png │ │ │ │ └── ScanBook@3x.png │ │ │ ├── ScanBook_HL.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ScanBook_HL@2x.png │ │ │ │ └── ScanBook_HL@3x.png │ │ │ ├── ScanBtombarBG.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ScanBtombarBG@2x.png │ │ │ ├── ScanDetailCellBg.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ScanDetailCellBg@2x.png │ │ │ ├── ScanDetailCellBgHL.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ScanDetailCellBgHL@2x.png │ │ │ ├── ScanDetailCellBgHeader.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ScanDetailCellBgHeader@2x.png │ │ │ ├── ScanDetailCellBgLast.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ScanDetailCellBgLast@2x.png │ │ │ ├── ScanDetailCellBgWithArrow.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ScanDetailCellBgWithArrow@2x.png │ │ │ ├── ScanDetailCellBgWithArrowHL.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ScanDetailCellBgWithArrowHL@2x.png │ │ │ ├── ScanDetailCellBgWithArrowLast.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ScanDetailCellBgWithArrowLast@2x.png │ │ │ ├── ScanDetailCertification.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ScanDetailCertification@2x.png │ │ │ ├── ScanDetailDefaultRect.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ScanDetailDefaultRect@2x.png │ │ │ ├── ScanDetailDefaultSquare.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ScanDetailDefaultSquare@2x.png │ │ │ ├── ScanDetailMediaPlayIcon.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ScanDetailMediaPlayIcon@2x.png │ │ │ ├── ScanDetailMediaPlayIconHL.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ScanDetailMediaPlayIconHL@2x.png │ │ │ ├── ScanDetailMusicIcon.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ScanDetailMusicIcon@2x.png │ │ │ ├── ScanDetailMusicIcon_Hl.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ScanDetailMusicIcon_Hl@2x.png │ │ │ ├── ScanDetailMusicStopIcon.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ScanDetailMusicStopIcon@2x.png │ │ │ ├── ScanDetailMusicStopIcon_Hl.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ScanDetailMusicStopIcon_Hl@2x.png │ │ │ ├── ScanQR1.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ScanQR1@2x.png │ │ │ │ └── ScanQR1@3x.png │ │ │ ├── ScanQR2.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ScanQR2@2x.png │ │ │ │ └── ScanQR2@3x.png │ │ │ ├── ScanQR3.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ScanQR3@2x.png │ │ │ │ └── ScanQR3@3x.png │ │ │ ├── ScanQR4.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ScanQR4@2x.png │ │ │ │ └── ScanQR4@3x.png │ │ │ ├── ScanQRCode.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ScanQRCode@2x.png │ │ │ │ └── ScanQRCode@3x.png │ │ │ ├── ScanQRCodeAction.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ScanQRCodeAction@2x.png │ │ │ ├── ScanQRCode_HL.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ScanQRCode_HL@2x.png │ │ │ │ └── ScanQRCode_HL@3x.png │ │ │ ├── ScanStreet.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ScanStreet@2x.png │ │ │ │ └── ScanStreet@3x.png │ │ │ ├── ScanStreet_HL.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ScanStreet_HL@2x.png │ │ │ │ └── ScanStreet_HL@3x.png │ │ │ ├── ScanWord.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ScanWord@2x.png │ │ │ │ └── ScanWord@3x.png │ │ │ ├── ScanWord_HL.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ScanWord_HL@2x.png │ │ │ │ └── ScanWord_HL@3x.png │ │ │ ├── Scantv.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Scantv@2x.png │ │ │ └── Scantv_HL.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Scantv_HL@2x.png │ │ ├── share │ │ │ ├── Contents.json │ │ │ ├── sharemorePay.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── sharemorePay@2x.png │ │ │ │ └── sharemorePay@3x.png │ │ │ ├── sharemore_action.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── sharemore_action@2x.png │ │ │ ├── sharemore_action_HL.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── sharemore_action_HL@2x.png │ │ │ ├── sharemore_friendcard.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── sharemore_friendcard@2x.png │ │ │ │ └── sharemore_friendcard@3x.png │ │ │ ├── sharemore_fromapp.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── sharemore_fromapp@2x.png │ │ │ ├── sharemore_fromapp_HL.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── sharemore_fromapp_HL@2x.png │ │ │ ├── sharemore_location.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── sharemore_location@2x.png │ │ │ │ └── sharemore_location@3x.png │ │ │ ├── sharemore_multitalk.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── sharemore_multitalk@2x.png │ │ │ │ └── sharemore_multitalk@3x.png │ │ │ ├── sharemore_myaction.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── sharemore_myaction@2x.png │ │ │ ├── sharemore_myaction_HL.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── sharemore_myaction_HL@2x.png │ │ │ ├── sharemore_myfav.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── sharemore_myfav@2x.png │ │ │ │ └── sharemore_myfav@3x.png │ │ │ ├── sharemore_other.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── sharemore_other.png │ │ │ │ ├── sharemore_other@2x.png │ │ │ │ └── sharemore_other@3x.png │ │ │ ├── sharemore_other_HL.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── sharemore_other_HL.png │ │ │ │ ├── sharemore_other_HL@2x.png │ │ │ │ └── sharemore_other_HL@3x.png │ │ │ ├── sharemore_pic.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── sharemore_pic@2x.png │ │ │ │ └── sharemore_pic@3x.png │ │ │ ├── sharemore_picbg.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── sharemore_picbg@2x.png │ │ │ ├── sharemore_service.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── sharemore_service@2x.png │ │ │ ├── sharemore_sight.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── sharemore_sight@2x.png │ │ │ │ └── sharemore_sight@3x.png │ │ │ ├── sharemore_video.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── sharemore_video@2x.png │ │ │ │ └── sharemore_video@3x.png │ │ │ ├── sharemore_videovoip.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── sharemore_videovoip@2x.png │ │ │ │ └── sharemore_videovoip@3x.png │ │ │ ├── sharemore_voiceinput.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── sharemore_voiceinput@2x.png │ │ │ │ └── sharemore_voiceinput@3x.png │ │ │ ├── sharemore_voipvoice.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── sharemore_voipvoice@2x.png │ │ │ └── sharemore_wallet.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── sharemore_wallet@2x.png │ │ │ │ └── sharemore_wallet@3x.png │ │ ├── sight │ │ │ ├── Contents.json │ │ │ ├── Mode_textmenuicon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Mode_textmenuicon@2x.png │ │ │ │ └── Mode_textmenuicon@3x.png │ │ │ ├── icon_sight_close.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_sight_close@2x.png │ │ │ ├── icon_sight_close_color.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_sight_close_color@2x.png │ │ │ ├── sight_box_delete.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── sight_box_delete@2x.png │ │ │ ├── sight_icon_keyboard.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── sight_icon_keyboard@2x.png │ │ │ ├── sight_label_shadow.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── sight_label_shadow@2x.png │ │ │ ├── sight_lightboost_big.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── sight_lightboost_big@2x.png │ │ │ ├── sight_lightboost_big_selected.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── sight_lightboost_big_selected@2x.png │ │ │ ├── sight_main_logo.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── sight_main_logo@2x.png │ │ │ │ └── sight_main_logo@3x.png │ │ │ ├── sight_main_shutter_i4.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── sight_main_shutter_i4@2x.png │ │ │ ├── sight_main_shutter_i6.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── sight_main_shutter_i6@2x.png │ │ │ ├── sight_main_shutter_i6p.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── sight_main_shutter_i6p@3x.png │ │ │ └── sight_toolbar_shutter.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── sight_toolbar_shutter@2x.png │ │ │ │ └── sight_toolbar_shutter@3x.png │ │ ├── tabbar │ │ │ ├── Contents.json │ │ │ ├── tabbarBkg.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── tabbarBkg@2x.png │ │ │ ├── tabbar_badge.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── tabbar_badge@2x.png │ │ │ │ └── tabbar_badge@3x.png │ │ │ ├── tabbar_contacts.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── tabbar_contacts@2x.png │ │ │ │ └── tabbar_contacts@3x.png │ │ │ ├── tabbar_contactsHL.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── tabbar_contactsHL@2x.png │ │ │ │ └── tabbar_contactsHL@3x.png │ │ │ ├── tabbar_discover.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── tabbar_discover@2x.png │ │ │ │ └── tabbar_discover@3x.png │ │ │ ├── tabbar_discoverHL.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── tabbar_discoverHL@2x.png │ │ │ │ └── tabbar_discoverHL@3x.png │ │ │ ├── tabbar_mainframe.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── tabbar_mainframe@2x.png │ │ │ │ └── tabbar_mainframe@3x.png │ │ │ ├── tabbar_mainframeHL.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── tabbar_mainframeHL@2x.png │ │ │ │ └── tabbar_mainframeHL@3x.png │ │ │ ├── tabbar_me.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── tabbar_me@2x.png │ │ │ │ └── tabbar_me@3x.png │ │ │ └── tabbar_meHL.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── tabbar_meHL@2x.png │ │ │ │ └── tabbar_meHL@3x.png │ │ ├── video │ │ │ ├── Contents.json │ │ │ ├── Fav_List_Video_Play.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Fav_List_Video_Play@2x.png │ │ │ │ └── Fav_List_Video_Play@3x.png │ │ │ ├── MMVideoPreviewPlay.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── MMVideoPreviewPlay@2x.png │ │ │ │ └── MMVideoPreviewPlay@3x.png │ │ │ ├── MMVideoPreviewPlayHL.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── MMVideoPreviewPlayHL@2x.png │ │ │ │ └── MMVideoPreviewPlayHL@3x.png │ │ │ ├── MessageVideoDownload.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── MessageVideoDownload@2x.png │ │ │ │ └── MessageVideoDownload@3x.png │ │ │ ├── MessageVideoDownloadBkg.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── MessageVideoDownloadBkg@2x.png │ │ │ ├── MessageVideoDownloadBtn.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── MessageVideoDownloadBtn@2x.png │ │ │ ├── MessageVideoDownloadBtnHL.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── MessageVideoDownloadBtnHL@2x.png │ │ │ ├── MessageVideoDownloadingBkg.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── MessageVideoDownloadingBkg@2x.png │ │ │ ├── MessageVideoPlay.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── MessageVideoPlay@2x.png │ │ │ │ └── MessageVideoPlay@3x.png │ │ │ ├── mmplayer_idle.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── mmplayer_idle@2x.png │ │ │ │ └── mmplayer_idle@3x.png │ │ │ ├── mmplayer_idle_HL.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── mmplayer_idle_HL@2x.png │ │ │ │ └── mmplayer_idle_HL@3x.png │ │ │ ├── mmplayer_playing.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── mmplayer_playing@2x.png │ │ │ │ └── mmplayer_playing@3x.png │ │ │ ├── mmplayer_playing_HL.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── mmplayer_playing_HL@2x.png │ │ │ │ └── mmplayer_playing_HL@3x.png │ │ │ ├── mmvideo_idle.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── mmvideo_idle@2x.png │ │ │ │ └── mmvideo_idle@3x.png │ │ │ ├── player_mode_pic_wall.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── player_mode_pic_wall@2x.png │ │ │ ├── player_mode_video_wall.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── player_mode_video_wall@2x.png │ │ │ ├── player_star_button.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── player_star_button@2x.png │ │ │ │ └── player_star_button@3x.png │ │ │ ├── player_suspend_button.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── player_suspend_button@2x.png │ │ │ │ └── player_suspend_button@3x.png │ │ │ ├── playerplan_button.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── playerplan_button@2x.png │ │ │ │ └── playerplan_button@3x.png │ │ │ └── playvideo.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── playvideo@2x.png │ │ └── hilen │ │ │ ├── Contents.json │ │ │ ├── MessageRightTopBg.imageset │ │ │ ├── Contents.json │ │ │ └── MessageRightTopBg.pdf │ │ │ └── chat_background.imageset │ │ │ ├── Contents.json │ │ │ └── chat_background@2x.png │ ├── Monaco.ttf │ ├── imageDownloadFail@2x.png │ └── user@2x.png ├── Server │ ├── LLMessageAttachmentDownloader.h │ ├── LLMessageAttachmentDownloader.m │ ├── LLMessageUploader.h │ ├── LLMessageUploader.m │ └── SDK │ │ ├── LLChatManager+MessageExt.h │ │ ├── LLChatManager+MessageExt.m │ │ ├── LLChatManager.h │ │ ├── LLChatManager.m │ │ ├── LLClientManager.h │ │ ├── LLClientManager.m │ │ ├── LLContactManager.h │ │ ├── LLContactManager.m │ │ ├── LLSDK.h │ │ ├── LLSDKError.h │ │ ├── LLSDKError.m │ │ ├── LLSDKErrorCode.h │ │ └── LLSDKType.h ├── en.lproj │ ├── InfoPlist.strings │ ├── Localizable.strings │ └── network_setting.html ├── main.m └── zh-Hans.lproj │ ├── InfoPlist.strings │ ├── Localizable.strings │ └── network_setting.html ├── Podfile ├── Podfile.lock ├── README.md ├── ScreenShot ├── GIF.PNG ├── 地图搜索.gif ├── 地图附近点搜索.gif ├── 录音.PNG ├── 录音最大时长.gif ├── 批量删除.gif ├── 文本链接.gif ├── 新消息通知.gif ├── 消息搜索.gif ├── 添加好友.gif ├── 照片发送.gif ├── 照片浏览.gif ├── 照片视频弹入弹出动画.gif ├── 视频下载.gif ├── 视频发送.gif ├── 输入框文本动画.gif ├── 输入框草稿.gif └── 输入面板基本功能.PNG └── 产品设计.md /AMap/AMapFoundationKit.framework/1.1.0.af5d224: -------------------------------------------------------------------------------- 1 | 1.1.0.af5d224 2 | -------------------------------------------------------------------------------- /AMap/AMapFoundationKit.framework/AMapFoundationKit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/AMap/AMapFoundationKit.framework/AMapFoundationKit -------------------------------------------------------------------------------- /AMap/AMapLocationKit.framework/2.1.0.598d05d: -------------------------------------------------------------------------------- 1 | 2.1.0.598d05d 2 | -------------------------------------------------------------------------------- /AMap/AMapLocationKit.framework/AMapLocationKit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/AMap/AMapLocationKit.framework/AMapLocationKit -------------------------------------------------------------------------------- /AMap/AMapSearchKit.framework/4.2.0.69211a9: -------------------------------------------------------------------------------- 1 | 4.2.0.69211a9 2 | -------------------------------------------------------------------------------- /AMap/AMapSearchKit.framework/AMapSearchKit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/AMap/AMapSearchKit.framework/AMapSearchKit -------------------------------------------------------------------------------- /AMap/MAMapKit.framework/4.1.1.89ce287: -------------------------------------------------------------------------------- 1 | 4.1.1.89ce287 2 | -------------------------------------------------------------------------------- /AMap/MAMapKit.framework/AMap.bundle/images/greenPin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/AMap/MAMapKit.framework/AMap.bundle/images/greenPin.png -------------------------------------------------------------------------------- /AMap/MAMapKit.framework/AMap.bundle/images/greenPin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/AMap/MAMapKit.framework/AMap.bundle/images/greenPin@2x.png -------------------------------------------------------------------------------- /AMap/MAMapKit.framework/AMap.bundle/images/greenPin@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/AMap/MAMapKit.framework/AMap.bundle/images/greenPin@3x.png -------------------------------------------------------------------------------- /AMap/MAMapKit.framework/AMap.bundle/images/greenPin_lift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/AMap/MAMapKit.framework/AMap.bundle/images/greenPin_lift.png -------------------------------------------------------------------------------- /AMap/MAMapKit.framework/AMap.bundle/images/greenPin_lift@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/AMap/MAMapKit.framework/AMap.bundle/images/greenPin_lift@2x.png -------------------------------------------------------------------------------- /AMap/MAMapKit.framework/AMap.bundle/images/greenPin_lift@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/AMap/MAMapKit.framework/AMap.bundle/images/greenPin_lift@3x.png -------------------------------------------------------------------------------- /AMap/MAMapKit.framework/AMap.bundle/images/pin_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/AMap/MAMapKit.framework/AMap.bundle/images/pin_shadow.png -------------------------------------------------------------------------------- /AMap/MAMapKit.framework/AMap.bundle/images/pin_shadow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/AMap/MAMapKit.framework/AMap.bundle/images/pin_shadow@2x.png -------------------------------------------------------------------------------- /AMap/MAMapKit.framework/AMap.bundle/images/pin_shadow@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/AMap/MAMapKit.framework/AMap.bundle/images/pin_shadow@3x.png -------------------------------------------------------------------------------- /AMap/MAMapKit.framework/AMap.bundle/images/purplePin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/AMap/MAMapKit.framework/AMap.bundle/images/purplePin.png -------------------------------------------------------------------------------- /AMap/MAMapKit.framework/AMap.bundle/images/purplePin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/AMap/MAMapKit.framework/AMap.bundle/images/purplePin@2x.png -------------------------------------------------------------------------------- /AMap/MAMapKit.framework/AMap.bundle/images/purplePin@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/AMap/MAMapKit.framework/AMap.bundle/images/purplePin@3x.png -------------------------------------------------------------------------------- /AMap/MAMapKit.framework/AMap.bundle/images/purplePin_lift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/AMap/MAMapKit.framework/AMap.bundle/images/purplePin_lift.png -------------------------------------------------------------------------------- /AMap/MAMapKit.framework/AMap.bundle/images/purplePin_lift@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/AMap/MAMapKit.framework/AMap.bundle/images/purplePin_lift@2x.png -------------------------------------------------------------------------------- /AMap/MAMapKit.framework/AMap.bundle/images/purplePin_lift@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/AMap/MAMapKit.framework/AMap.bundle/images/purplePin_lift@3x.png -------------------------------------------------------------------------------- /AMap/MAMapKit.framework/AMap.bundle/images/redPin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/AMap/MAMapKit.framework/AMap.bundle/images/redPin.png -------------------------------------------------------------------------------- /AMap/MAMapKit.framework/AMap.bundle/images/redPin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/AMap/MAMapKit.framework/AMap.bundle/images/redPin@2x.png -------------------------------------------------------------------------------- /AMap/MAMapKit.framework/AMap.bundle/images/redPin@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/AMap/MAMapKit.framework/AMap.bundle/images/redPin@3x.png -------------------------------------------------------------------------------- /AMap/MAMapKit.framework/AMap.bundle/images/redPin_lift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/AMap/MAMapKit.framework/AMap.bundle/images/redPin_lift.png -------------------------------------------------------------------------------- /AMap/MAMapKit.framework/AMap.bundle/images/redPin_lift@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/AMap/MAMapKit.framework/AMap.bundle/images/redPin_lift@2x.png -------------------------------------------------------------------------------- /AMap/MAMapKit.framework/AMap.bundle/images/redPin_lift@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/AMap/MAMapKit.framework/AMap.bundle/images/redPin_lift@3x.png -------------------------------------------------------------------------------- /AMap/MAMapKit.framework/MAMapKit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/AMap/MAMapKit.framework/MAMapKit -------------------------------------------------------------------------------- /HyphenateSDK/lib/3rdparty/libcrypto.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/HyphenateSDK/lib/3rdparty/libcrypto.a -------------------------------------------------------------------------------- /HyphenateSDK/lib/3rdparty/libcurl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/HyphenateSDK/lib/3rdparty/libcurl.a -------------------------------------------------------------------------------- /HyphenateSDK/lib/3rdparty/libssl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/HyphenateSDK/lib/3rdparty/libssl.a -------------------------------------------------------------------------------- /HyphenateSDK/lib/libHyphenateSDK.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/HyphenateSDK/lib/libHyphenateSDK.a -------------------------------------------------------------------------------- /LLWeChat.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /LLWeChat/Data/Config/LLConfig.m: -------------------------------------------------------------------------------- 1 | // 2 | // Created by GYJZH on 7/17/16. 3 | // Copyright (c) 2016 GYJZH. All rights reserved. 4 | // 5 | 6 | #import "LLConfig.h" 7 | 8 | 9 | @implementation LLConfig 10 | 11 | 12 | @end -------------------------------------------------------------------------------- /LLWeChat/General/Audio/VoiceConvert/opencore-amrnb/libopencore-amrnb.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/General/Audio/VoiceConvert/opencore-amrnb/libopencore-amrnb.a -------------------------------------------------------------------------------- /LLWeChat/General/Audio/VoiceConvert/opencore-amrwb/libopencore-amrwb.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/General/Audio/VoiceConvert/opencore-amrwb/libopencore-amrwb.a -------------------------------------------------------------------------------- /LLWeChat/General/ImagePicker/Resources/CellBlueSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/General/ImagePicker/Resources/CellBlueSelected.png -------------------------------------------------------------------------------- /LLWeChat/General/ImagePicker/Resources/CellBlueSelected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/General/ImagePicker/Resources/CellBlueSelected@2x.png -------------------------------------------------------------------------------- /LLWeChat/General/ImagePicker/Resources/CellGreySelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/General/ImagePicker/Resources/CellGreySelected.png -------------------------------------------------------------------------------- /LLWeChat/General/ImagePicker/Resources/CellGreySelected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/General/ImagePicker/Resources/CellGreySelected@2x.png -------------------------------------------------------------------------------- /LLWeChat/General/ImagePicker/Resources/FriendsSendsPicturesNumberIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/General/ImagePicker/Resources/FriendsSendsPicturesNumberIcon.png -------------------------------------------------------------------------------- /LLWeChat/General/ImagePicker/Resources/FriendsSendsPicturesNumberIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/General/ImagePicker/Resources/FriendsSendsPicturesNumberIcon@2x.png -------------------------------------------------------------------------------- /LLWeChat/General/ImagePicker/Resources/FriendsSendsPicturesQuitBigIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/General/ImagePicker/Resources/FriendsSendsPicturesQuitBigIcon.png -------------------------------------------------------------------------------- /LLWeChat/General/ImagePicker/Resources/FriendsSendsPicturesQuitBigIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/General/ImagePicker/Resources/FriendsSendsPicturesQuitBigIcon@2x.png -------------------------------------------------------------------------------- /LLWeChat/General/ImagePicker/Resources/FriendsSendsPicturesSelectBigNIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/General/ImagePicker/Resources/FriendsSendsPicturesSelectBigNIcon.png -------------------------------------------------------------------------------- /LLWeChat/General/ImagePicker/Resources/FriendsSendsPicturesSelectBigNIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/General/ImagePicker/Resources/FriendsSendsPicturesSelectBigNIcon@2x.png -------------------------------------------------------------------------------- /LLWeChat/General/ImagePicker/Resources/FriendsSendsPicturesSelectBigYIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/General/ImagePicker/Resources/FriendsSendsPicturesSelectBigYIcon.png -------------------------------------------------------------------------------- /LLWeChat/General/ImagePicker/Resources/FriendsSendsPicturesSelectBigYIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/General/ImagePicker/Resources/FriendsSendsPicturesSelectBigYIcon@2x.png -------------------------------------------------------------------------------- /LLWeChat/General/ImagePicker/Resources/FriendsSendsPicturesSelectIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/General/ImagePicker/Resources/FriendsSendsPicturesSelectIcon.png -------------------------------------------------------------------------------- /LLWeChat/General/ImagePicker/Resources/FriendsSendsPicturesSelectIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/General/ImagePicker/Resources/FriendsSendsPicturesSelectIcon@2x.png -------------------------------------------------------------------------------- /LLWeChat/General/ImagePicker/Resources/FriendsSendsPicturesSelectYIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/General/ImagePicker/Resources/FriendsSendsPicturesSelectYIcon.png -------------------------------------------------------------------------------- /LLWeChat/General/ImagePicker/Resources/FriendsSendsPicturesSelectYIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/General/ImagePicker/Resources/FriendsSendsPicturesSelectYIcon@2x.png -------------------------------------------------------------------------------- /LLWeChat/General/ImagePicker/Resources/MMVideoPreviewPlay@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/General/ImagePicker/Resources/MMVideoPreviewPlay@2x.png -------------------------------------------------------------------------------- /LLWeChat/General/ImagePicker/Resources/MMVideoPreviewPlay@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/General/ImagePicker/Resources/MMVideoPreviewPlay@3x.png -------------------------------------------------------------------------------- /LLWeChat/General/ImagePicker/Resources/MMVideoPreviewPlayHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/General/ImagePicker/Resources/MMVideoPreviewPlayHL@2x.png -------------------------------------------------------------------------------- /LLWeChat/General/ImagePicker/Resources/MMVideoPreviewPlayHL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/General/ImagePicker/Resources/MMVideoPreviewPlayHL@3x.png -------------------------------------------------------------------------------- /LLWeChat/General/ImagePicker/Resources/VideoSendIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/General/ImagePicker/Resources/VideoSendIcon@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Audio/in.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Audio/in.caf -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/EmoticonAddButton@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/EmoticonAddButton@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/EmoticonAddButton@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/EmoticonAddButton@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_100@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_100@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_10@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_10@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_11@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_11@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_12@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_12@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_13@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_13@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_14@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_14@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_15@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_15@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_16@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_17@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_17@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_18@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_18@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_19@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_19@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_1@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_20@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_21@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_21@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_22@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_22@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_23@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_23@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_24@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_24@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_25@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_25@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_26@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_26@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_27@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_27@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_28@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_28@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_29@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_2@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_30@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_30@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_31@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_31@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_32@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_33@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_33@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_34@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_34@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_35@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_35@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_36@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_36@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_37@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_37@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_38@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_38@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_39@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_39@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_3@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_40@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_41@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_41@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_42@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_42@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_43@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_43@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_44@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_44@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_45@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_45@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_46@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_46@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_47@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_47@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_48@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_48@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_49@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_49@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_4@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_50@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_51@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_51@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_52@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_52@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_53@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_53@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_54@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_54@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_55@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_55@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_56@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_56@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_57@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_57@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_58@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_58@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_59@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_59@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_5@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_60@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_61@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_61@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_62@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_62@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_63@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_63@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_64@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_64@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_65@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_65@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_66@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_66@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_67@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_67@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_68@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_68@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_69@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_69@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_6@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_6@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_70@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_70@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_71@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_71@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_72@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_73@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_73@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_74@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_74@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_75@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_75@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_76@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_77@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_77@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_78@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_78@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_79@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_79@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_7@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_7@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_80@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_80@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_81@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_81@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_82@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_82@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_83@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_83@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_84@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_84@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_85@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_85@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_86@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_86@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_87@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_87@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_88@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_88@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_89@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_89@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_8@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_8@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_90@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_90@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_91@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_91@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_92@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_92@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_93@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_93@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_94@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_94@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_95@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_95@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_96@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_96@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_97@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_97@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_98@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_98@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_99@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_99@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Expression_9@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Expression_9@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Info.plist -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Tuzki_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Tuzki_1.gif -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Tuzki_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Tuzki_1.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Tuzki_10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Tuzki_10.gif -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Tuzki_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Tuzki_10.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Tuzki_11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Tuzki_11.gif -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Tuzki_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Tuzki_11.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Tuzki_12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Tuzki_12.gif -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Tuzki_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Tuzki_12.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Tuzki_13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Tuzki_13.gif -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Tuzki_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Tuzki_13.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Tuzki_14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Tuzki_14.gif -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Tuzki_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Tuzki_14.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Tuzki_15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Tuzki_15.gif -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Tuzki_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Tuzki_15.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Tuzki_16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Tuzki_16.gif -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Tuzki_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Tuzki_16.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Tuzki_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Tuzki_2.gif -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Tuzki_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Tuzki_2.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Tuzki_3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Tuzki_3.gif -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Tuzki_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Tuzki_3.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Tuzki_4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Tuzki_4.gif -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Tuzki_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Tuzki_4.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Tuzki_5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Tuzki_5.gif -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Tuzki_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Tuzki_5.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Tuzki_6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Tuzki_6.gif -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Tuzki_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Tuzki_6.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Tuzki_7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Tuzki_7.gif -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Tuzki_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Tuzki_7.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Tuzki_8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Tuzki_8.gif -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Tuzki_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Tuzki_8.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Tuzki_9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Tuzki_9.gif -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/Tuzki_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/Tuzki_9.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Emotion.bundle/dice_Action_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Emotion.bundle/dice_Action_0.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/Record/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/Record/MessageTooShort.imageset/MessageTooShort@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/Record/MessageTooShort.imageset/MessageTooShort@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/Record/MessageTooShort.imageset/MessageTooShort@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/Record/MessageTooShort.imageset/MessageTooShort@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/Record/RecordCancel.imageset/RecordCancel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/Record/RecordCancel.imageset/RecordCancel@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/Record/RecordCancel.imageset/RecordCancel@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/Record/RecordCancel.imageset/RecordCancel@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/Record/RecordingBkg.imageset/RecordingBkg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/Record/RecordingBkg.imageset/RecordingBkg@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/Record/RecordingBkg.imageset/RecordingBkg@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/Record/RecordingBkg.imageset/RecordingBkg@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/Record/RecordingSignal001.imageset/RecordingSignal001@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/Record/RecordingSignal001.imageset/RecordingSignal001@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/Record/RecordingSignal001.imageset/RecordingSignal001@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/Record/RecordingSignal001.imageset/RecordingSignal001@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/Record/RecordingSignal002.imageset/RecordingSignal002@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/Record/RecordingSignal002.imageset/RecordingSignal002@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/Record/RecordingSignal002.imageset/RecordingSignal002@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/Record/RecordingSignal002.imageset/RecordingSignal002@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/Record/RecordingSignal003.imageset/RecordingSignal003@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/Record/RecordingSignal003.imageset/RecordingSignal003@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/Record/RecordingSignal003.imageset/RecordingSignal003@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/Record/RecordingSignal003.imageset/RecordingSignal003@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/Record/RecordingSignal004.imageset/RecordingSignal004@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/Record/RecordingSignal004.imageset/RecordingSignal004@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/Record/RecordingSignal004.imageset/RecordingSignal004@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/Record/RecordingSignal004.imageset/RecordingSignal004@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/Record/RecordingSignal005.imageset/RecordingSignal005@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/Record/RecordingSignal005.imageset/RecordingSignal005@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/Record/RecordingSignal005.imageset/RecordingSignal005@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/Record/RecordingSignal005.imageset/RecordingSignal005@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/Record/RecordingSignal006.imageset/RecordingSignal006@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/Record/RecordingSignal006.imageset/RecordingSignal006@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/Record/RecordingSignal006.imageset/RecordingSignal006@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/Record/RecordingSignal006.imageset/RecordingSignal006@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/Record/RecordingSignal007.imageset/RecordingSignal007@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/Record/RecordingSignal007.imageset/RecordingSignal007@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/Record/RecordingSignal007.imageset/RecordingSignal007@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/Record/RecordingSignal007.imageset/RecordingSignal007@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/Record/RecordingSignal008.imageset/RecordingSignal008@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/Record/RecordingSignal008.imageset/RecordingSignal008@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/Record/RecordingSignal008.imageset/RecordingSignal008@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/Record/RecordingSignal008.imageset/RecordingSignal008@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/Record/bottomTipsBg.imageset/bottomTipsBg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/Record/bottomTipsBg.imageset/bottomTipsBg@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/Record/bottomTipsClose.imageset/bottomTipsClose@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/Record/bottomTipsClose.imageset/bottomTipsClose@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/Record/bottomTipsGrayClose.imageset/bottomTipsGrayClose@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/Record/bottomTipsGrayClose.imageset/bottomTipsGrayClose@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/Record/bottomTipsIcon_Ear.imageset/bottomTipsIcon_Ear@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/Record/bottomTipsIcon_Ear.imageset/bottomTipsIcon_Ear@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/Record/bottomTipsIcon_Voice.imageset/bottomTipsIcon_Voice@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/Record/bottomTipsIcon_Voice.imageset/bottomTipsIcon_Voice@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/bar_button/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/bar_button/barbuttonicon_Camera.imageset/barbuttonicon_Camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/bar_button/barbuttonicon_Camera.imageset/barbuttonicon_Camera.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/bar_button/barbuttonicon_Camera.imageset/barbuttonicon_Camera@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/bar_button/barbuttonicon_Camera.imageset/barbuttonicon_Camera@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/bar_button/barbuttonicon_Camera.imageset/barbuttonicon_Camera@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/bar_button/barbuttonicon_Camera.imageset/barbuttonicon_Camera@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/bar_button/barbuttonicon_Operate.imageset/barbuttonicon_Operate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/bar_button/barbuttonicon_Operate.imageset/barbuttonicon_Operate.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/bar_button/barbuttonicon_Operate.imageset/barbuttonicon_Operate@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/bar_button/barbuttonicon_Operate.imageset/barbuttonicon_Operate@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/bar_button/barbuttonicon_Operate.imageset/barbuttonicon_Operate@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/bar_button/barbuttonicon_Operate.imageset/barbuttonicon_Operate@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/bar_button/barbuttonicon_add.imageset/barbuttonicon_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/bar_button/barbuttonicon_add.imageset/barbuttonicon_add.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/bar_button/barbuttonicon_add.imageset/barbuttonicon_add@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/bar_button/barbuttonicon_add.imageset/barbuttonicon_add@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/bar_button/barbuttonicon_add.imageset/barbuttonicon_add@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/bar_button/barbuttonicon_add.imageset/barbuttonicon_add@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/bar_button/barbuttonicon_back.imageset/barbuttonicon_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/bar_button/barbuttonicon_back.imageset/barbuttonicon_back.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/bar_button/barbuttonicon_back.imageset/barbuttonicon_back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/bar_button/barbuttonicon_back.imageset/barbuttonicon_back@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/bar_button/barbuttonicon_back.imageset/barbuttonicon_back@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/bar_button/barbuttonicon_back.imageset/barbuttonicon_back@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/bar_button/barbuttonicon_call.imageset/barbuttonicon_call@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/bar_button/barbuttonicon_call.imageset/barbuttonicon_call@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/bar_button/barbuttonicon_call.imageset/barbuttonicon_call@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/bar_button/barbuttonicon_call.imageset/barbuttonicon_call@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/bar_button/barbuttonicon_delete.imageset/barbuttonicon_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/bar_button/barbuttonicon_delete.imageset/barbuttonicon_delete.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/bar_button/barbuttonicon_delete.imageset/barbuttonicon_delete@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/bar_button/barbuttonicon_delete.imageset/barbuttonicon_delete@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/bar_button/barbuttonicon_delete.imageset/barbuttonicon_delete@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/bar_button/barbuttonicon_delete.imageset/barbuttonicon_delete@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/bar_button/barbuttonicon_more.imageset/barbuttonicon_more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/bar_button/barbuttonicon_more.imageset/barbuttonicon_more.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/bar_button/barbuttonicon_more.imageset/barbuttonicon_more@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/bar_button/barbuttonicon_more.imageset/barbuttonicon_more@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/bar_button/barbuttonicon_more.imageset/barbuttonicon_more@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/bar_button/barbuttonicon_more.imageset/barbuttonicon_more@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/bar_button/barbuttonicon_set.imageset/barbuttonicon_set.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/bar_button/barbuttonicon_set.imageset/barbuttonicon_set.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/bar_button/barbuttonicon_set.imageset/barbuttonicon_set@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/bar_button/barbuttonicon_set.imageset/barbuttonicon_set@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/bar_button/barbuttonicon_set.imageset/barbuttonicon_set@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/bar_button/barbuttonicon_set.imageset/barbuttonicon_set@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/chat/CellBlueSelected.imageset/CellBlueSelected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/chat/CellBlueSelected.imageset/CellBlueSelected@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/chat/CellGreySelected.imageset/CellGreySelected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/chat/CellGreySelected.imageset/CellGreySelected@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/chat/CellNotSelected.imageset/CellNotSelected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/chat/CellNotSelected.imageset/CellNotSelected@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/chat/CellRedSelected.imageset/CellRedSelected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/chat/CellRedSelected.imageset/CellRedSelected@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/chat/CellSelected.imageset/CellSelected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/chat/CellSelected.imageset/CellSelected@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/chat/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/chat/Fav_Search_Video.imageset/Fav_Search_Video@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/chat/Fav_Search_Video.imageset/Fav_Search_Video@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/chat/Fav_Search_Video.imageset/Fav_Search_Video@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/chat/Fav_Search_Video.imageset/Fav_Search_Video@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/chat/Fav_Search_pic.imageset/Fav_Search_pic@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/chat/Fav_Search_pic.imageset/Fav_Search_pic@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/chat/Fav_Search_pic.imageset/Fav_Search_pic@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/chat/Fav_Search_pic.imageset/Fav_Search_pic@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/chat/MessageListSending.imageset/MessageListSending@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/chat/MessageListSending.imageset/MessageListSending@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/chat/MessageSendFail.imageset/MessageSendFail@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/chat/MessageSendFail.imageset/MessageSendFail@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/chat/MessageSendFail.imageset/MessageSendFail@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/chat/MessageSendFail.imageset/MessageSendFail@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/chat/PhotoDownload.imageset/PhotoDownload@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/chat/PhotoDownload.imageset/PhotoDownload@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/chat/PhotoDownloadfailed.imageset/PhotoDownloadfailed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/chat/PhotoDownloadfailed.imageset/PhotoDownloadfailed@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/chat/PhotoDownloadfailedSamll.imageset/PhotoDownloadfailedSamll@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/chat/PhotoDownloadfailedSamll.imageset/PhotoDownloadfailedSamll@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/chat/ReceiverImageNodeBorder.imageset/ReceiverImageNodeBorder@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/chat/ReceiverImageNodeBorder.imageset/ReceiverImageNodeBorder@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/chat/ReceiverImageNodeBorder.imageset/ReceiverImageNodeBorder@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/chat/ReceiverImageNodeBorder.imageset/ReceiverImageNodeBorder@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/chat/ReceiverImageNodeMask.imageset/ReceiverImageNodeMask@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/chat/ReceiverImageNodeMask.imageset/ReceiverImageNodeMask@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/chat/ReceiverTextNodeBkg.imageset/ReceiverTextNodeBkg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/chat/ReceiverTextNodeBkg.imageset/ReceiverTextNodeBkg@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/chat/ReceiverTextNodeBkg.imageset/ReceiverTextNodeBkg@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/chat/ReceiverTextNodeBkg.imageset/ReceiverTextNodeBkg@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/chat/ReceiverTextNodeBkgHL.imageset/ReceiverTextNodeBkgHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/chat/ReceiverTextNodeBkgHL.imageset/ReceiverTextNodeBkgHL@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/chat/ReceiverTextNodeBkgHL.imageset/ReceiverTextNodeBkgHL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/chat/ReceiverTextNodeBkgHL.imageset/ReceiverTextNodeBkgHL@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/chat/ReceiverVoiceNodePlaying.imageset/ReceiverVoiceNodePlaying@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/chat/ReceiverVoiceNodePlaying.imageset/ReceiverVoiceNodePlaying@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/chat/ReceiverVoiceNodePlaying.imageset/ReceiverVoiceNodePlaying@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/chat/ReceiverVoiceNodePlaying.imageset/ReceiverVoiceNodePlaying@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/chat/SenderImageNodeBorder.imageset/SenderImageNodeBorder@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/chat/SenderImageNodeBorder.imageset/SenderImageNodeBorder@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/chat/SenderImageNodeBorder.imageset/SenderImageNodeBorder@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/chat/SenderImageNodeBorder.imageset/SenderImageNodeBorder@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/chat/SenderImageNodeMask.imageset/ReceiverImageNodeMask@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/chat/SenderImageNodeMask.imageset/ReceiverImageNodeMask@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/chat/SenderTextNodeBkg.imageset/SenderTextNodeBkg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/chat/SenderTextNodeBkg.imageset/SenderTextNodeBkg@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/chat/SenderTextNodeBkg.imageset/SenderTextNodeBkg@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/chat/SenderTextNodeBkg.imageset/SenderTextNodeBkg@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/chat/SenderTextNodeBkgHL.imageset/SenderTextNodeBkgHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/chat/SenderTextNodeBkgHL.imageset/SenderTextNodeBkgHL@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/chat/SenderTextNodeBkgHL.imageset/SenderTextNodeBkgHL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/chat/SenderTextNodeBkgHL.imageset/SenderTextNodeBkgHL@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/chat/SenderVoiceNodePlaying.imageset/SenderVoiceNodePlaying@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/chat/SenderVoiceNodePlaying.imageset/SenderVoiceNodePlaying@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/chat/SenderVoiceNodePlaying.imageset/SenderVoiceNodePlaying@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/chat/SenderVoiceNodePlaying.imageset/SenderVoiceNodePlaying@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/chat/Session_Multi_Delete.imageset/Session_Multi_Delete@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/chat/Session_Multi_Delete.imageset/Session_Multi_Delete@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/chat/Session_Multi_Delete.imageset/Session_Multi_Delete@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/chat/Session_Multi_Delete.imageset/Session_Multi_Delete@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/chat/Session_Multi_Delete_HL.imageset/Session_Multi_Delete_HL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/chat/Session_Multi_Delete_HL.imageset/Session_Multi_Delete_HL@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/chat/Session_Multi_Fav.imageset/Session_Multi_Fav@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/chat/Session_Multi_Fav.imageset/Session_Multi_Fav@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/chat/Session_Multi_Fav.imageset/Session_Multi_Fav@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/chat/Session_Multi_Fav.imageset/Session_Multi_Fav@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/chat/Session_Multi_Fav_HL.imageset/Session_Multi_Fav_HL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/chat/Session_Multi_Fav_HL.imageset/Session_Multi_Fav_HL@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/chat/Session_Multi_Fav_HL.imageset/Session_Multi_Fav_HL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/chat/Session_Multi_Fav_HL.imageset/Session_Multi_Fav_HL@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/chat/Session_Multi_Forward.imageset/Session_Multi_Forward@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/chat/Session_Multi_Forward.imageset/Session_Multi_Forward@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/chat/Session_Multi_Forward.imageset/Session_Multi_Forward@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/chat/Session_Multi_Forward.imageset/Session_Multi_Forward@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/chat/Session_Multi_More.imageset/Session_Multi_More@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/chat/Session_Multi_More.imageset/Session_Multi_More@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/chat/Session_Multi_More.imageset/Session_Multi_More@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/chat/Session_Multi_More.imageset/Session_Multi_More@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/chat/Session_Multi_More_HL.imageset/Session_Multi_More_HL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/chat/Session_Multi_More_HL.imageset/Session_Multi_More_HL@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/chat/Session_Multi_More_HL.imageset/Session_Multi_More_HL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/chat/Session_Multi_More_HL.imageset/Session_Multi_More_HL@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/chat/SignUpError.imageset/SignUpError@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/chat/SignUpError.imageset/SignUpError@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/chat/SystemTipBtnClose.imageset/SystemTipBtnClose@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/chat/SystemTipBtnClose.imageset/SystemTipBtnClose@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/chat/chathistory_detail_end.imageset/chathistory_detail_end@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/chat/chathistory_detail_end.imageset/chathistory_detail_end@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/chat/chathistory_detail_end.imageset/chathistory_detail_end@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/chat/chathistory_detail_end.imageset/chathistory_detail_end@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/chat/icon_avatar.imageset/icon_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/chat/icon_avatar.imageset/icon_avatar.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/chat/multitalkVoiceMark.imageset/multitalkVoiceMark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/chat/multitalkVoiceMark.imageset/multitalkVoiceMark@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/chat/multitalkVoiceMark.imageset/multitalkVoiceMark@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/chat/multitalkVoiceMark.imageset/multitalkVoiceMark@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/chat/share_auth_fail.imageset/share_auth_fail@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/chat/share_auth_fail.imageset/share_auth_fail@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/chat/tool_emotion_1.imageset/ToolViewEmotion@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/chat/tool_emotion_1.imageset/ToolViewEmotion@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/chat/tool_emotion_1.imageset/ToolViewEmotion@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/chat/tool_emotion_1.imageset/ToolViewEmotion@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/chat/tool_emotion_2.imageset/ToolViewEmotionHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/chat/tool_emotion_2.imageset/ToolViewEmotionHL@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/chat/tool_emotion_2.imageset/ToolViewEmotionHL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/chat/tool_emotion_2.imageset/ToolViewEmotionHL@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/chat/tool_keyboard_1.imageset/ToolViewKeyboard@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/chat/tool_keyboard_1.imageset/ToolViewKeyboard@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/chat/tool_keyboard_1.imageset/ToolViewKeyboard@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/chat/tool_keyboard_1.imageset/ToolViewKeyboard@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/chat/tool_keyboard_2.imageset/ToolViewKeyboardHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/chat/tool_keyboard_2.imageset/ToolViewKeyboardHL@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/chat/tool_keyboard_2.imageset/ToolViewKeyboardHL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/chat/tool_keyboard_2.imageset/ToolViewKeyboardHL@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/chat/tool_share_1.imageset/TypeSelectorBtn_Black@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/chat/tool_share_1.imageset/TypeSelectorBtn_Black@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/chat/tool_share_1.imageset/TypeSelectorBtn_Black@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/chat/tool_share_1.imageset/TypeSelectorBtn_Black@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/chat/tool_share_2.imageset/TypeSelectorBtnHL_Black@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/chat/tool_share_2.imageset/TypeSelectorBtnHL_Black@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/chat/tool_share_2.imageset/TypeSelectorBtnHL_Black@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/chat/tool_share_2.imageset/TypeSelectorBtnHL_Black@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/chat/tool_voice_1.imageset/ToolViewInputVoice@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/chat/tool_voice_1.imageset/ToolViewInputVoice@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/chat/tool_voice_1.imageset/ToolViewInputVoice@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/chat/tool_voice_1.imageset/ToolViewInputVoice@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/chat/tool_voice_2.imageset/ToolViewInputVoiceHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/chat/tool_voice_2.imageset/ToolViewInputVoiceHL@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/chat/tool_voice_2.imageset/ToolViewInputVoiceHL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/chat/tool_voice_2.imageset/ToolViewInputVoiceHL@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/chat/video_icon_play.imageset/video_icon_play@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/chat/video_icon_play.imageset/video_icon_play@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/chat/video_icon_play.imageset/video_icon_play@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/chat/video_icon_play.imageset/video_icon_play@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/chat/volume_smalltipsicon.imageset/volume_smalltipsicon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/chat/volume_smalltipsicon.imageset/volume_smalltipsicon@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/contact/ContactPanelHeaderBkg.imageset/ContactPanelHeaderBkg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/contact/ContactPanelHeaderBkg.imageset/ContactPanelHeaderBkg@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/contact/Contact_Female.imageset/Contact_Female@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/contact/Contact_Female.imageset/Contact_Female@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/contact/Contact_Male.imageset/Contact_Male@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/contact/Contact_Male.imageset/Contact_Male@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/contact/Contactatargroupicon.imageset/Contactatargroupicon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/contact/Contactatargroupicon.imageset/Contactatargroupicon@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/contact/ContactsPanelDotRect.imageset/ContactsPanelDotRect@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/contact/ContactsPanelDotRect.imageset/ContactsPanelDotRect@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/contact/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/contact/add_friend_icon_reda.imageset/add_friend_icon_reda@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/contact/add_friend_icon_reda.imageset/add_friend_icon_reda@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/contact/add_friend_icon_reda.imageset/add_friend_icon_reda@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/contact/add_friend_icon_reda.imageset/add_friend_icon_reda@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/contact/add_friend_myQR.imageset/add_friend_myQR@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/contact/add_friend_myQR.imageset/add_friend_myQR@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/contact/add_friend_searchicon.imageset/add_friend_searchicon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/contact/add_friend_searchicon.imageset/add_friend_searchicon@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/contact/contactflag_star_mark.imageset/contactflag_star_mark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/contact/contactflag_star_mark.imageset/contactflag_star_mark@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/contact/contacts_add_bottle.imageset/contacts_add_bottle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/contact/contacts_add_bottle.imageset/contacts_add_bottle@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/contact/contacts_add_friend.imageset/contacts_add_friend@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/contact/contacts_add_friend.imageset/contacts_add_friend@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/contact/contacts_add_friend.imageset/contacts_add_friend@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/contact/contacts_add_friend.imageset/contacts_add_friend@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/contact/contacts_add_game.imageset/contacts_add_game@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/contact/contacts_add_game.imageset/contacts_add_game@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/contact/contacts_add_moment.imageset/contacts_add_moment@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/contact/contacts_add_moment.imageset/contacts_add_moment@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/contact/contacts_add_myablum.imageset/contacts_add_myablum@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/contact/contacts_add_myablum.imageset/contacts_add_myablum@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/contact/contacts_add_mycard.imageset/contacts_add_mycard@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/contact/contacts_add_mycard.imageset/contacts_add_mycard@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/contact/contacts_add_myqrcode.imageset/contacts_add_myqrcode@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/contact/contacts_add_myqrcode.imageset/contacts_add_myqrcode@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/contact/contacts_add_nearby.imageset/contacts_add_nearby@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/contact/contacts_add_nearby.imageset/contacts_add_nearby@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/contact/contacts_add_photo.imageset/contacts_add_photo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/contact/contacts_add_photo.imageset/contacts_add_photo@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/contact/contacts_add_radar.imageset/contacts_add_radar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/contact/contacts_add_radar.imageset/contacts_add_radar@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/contact/contacts_add_scan.imageset/contacts_add_scan@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/contact/contacts_add_scan.imageset/contacts_add_scan@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/contact/contacts_add_scan.imageset/contacts_add_scan@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/contact/contacts_add_scan.imageset/contacts_add_scan@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/contact/contacts_add_shake.imageset/contacts_add_shake@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/contact/contacts_add_shake.imageset/contacts_add_shake@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/contact/contacts_add_sticker.imageset/contacts_add_sticker@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/contact/contacts_add_sticker.imageset/contacts_add_sticker@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/contact/contacts_add_voip.imageset/contacts_add_voip@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/contact/contacts_add_voip.imageset/contacts_add_voip@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/contact/contacts_audiocall.imageset/contacts_audiocall@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/contact/contacts_audiocall.imageset/contacts_audiocall@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/contact/contacts_helloword.imageset/contacts_helloword@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/contact/contacts_helloword.imageset/contacts_helloword@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/contact/contacts_home_icon.imageset/contacts_home_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/contact/contacts_home_icon.imageset/contacts_home_icon@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/contact/contacts_videocall.imageset/contacts_videocall@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/contact/contacts_videocall.imageset/contacts_videocall@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/conversation/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/conversation/fts_edu_sns_icon.imageset/fts_edu_sns_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/conversation/fts_edu_sns_icon.imageset/fts_edu_sns_icon@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/conversation/fts_edu_sns_icon.imageset/fts_edu_sns_icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/conversation/fts_edu_sns_icon.imageset/fts_edu_sns_icon@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/conversation/fts_searchicon_sns.imageset/fts_searchicon_sns@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/conversation/fts_searchicon_sns.imageset/fts_searchicon_sns@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/dice/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/dice/dice_Action_0.imageset/dice_Action_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/dice/dice_Action_0.imageset/dice_Action_0.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/dice/dice_Action_1.imageset/dice_Action_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/dice/dice_Action_1.imageset/dice_Action_1.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/dice/dice_Action_2.imageset/dice_Action_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/dice/dice_Action_2.imageset/dice_Action_2.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/dice/dice_Action_3.imageset/dice_Action_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/dice/dice_Action_3.imageset/dice_Action_3.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/discover/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/discover/ff_IconBottle.imageset/ff_IconBottle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/discover/ff_IconBottle.imageset/ff_IconBottle.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/discover/ff_IconBottle.imageset/ff_IconBottle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/discover/ff_IconBottle.imageset/ff_IconBottle@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/discover/ff_IconBottle.imageset/ff_IconBottle@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/discover/ff_IconBottle.imageset/ff_IconBottle@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/discover/ff_IconGroup.imageset/ff_IconGroup@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/discover/ff_IconGroup.imageset/ff_IconGroup@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/discover/ff_IconLocationService.imageset/ff_IconLocationService.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/discover/ff_IconLocationService.imageset/ff_IconLocationService.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/discover/ff_IconQRCode.imageset/ff_IconQRCode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/discover/ff_IconQRCode.imageset/ff_IconQRCode.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/discover/ff_IconQRCode.imageset/ff_IconQRCode@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/discover/ff_IconQRCode.imageset/ff_IconQRCode@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/discover/ff_IconQRCode.imageset/ff_IconQRCode@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/discover/ff_IconQRCode.imageset/ff_IconQRCode@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/discover/ff_IconShake.imageset/ff_IconShake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/discover/ff_IconShake.imageset/ff_IconShake.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/discover/ff_IconShake.imageset/ff_IconShake@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/discover/ff_IconShake.imageset/ff_IconShake@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/discover/ff_IconShake.imageset/ff_IconShake@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/discover/ff_IconShake.imageset/ff_IconShake@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/discover/ff_IconShowAlbum.imageset/ff_IconShowAlbum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/discover/ff_IconShowAlbum.imageset/ff_IconShowAlbum.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/discover/ff_IconShowAlbum.imageset/ff_IconShowAlbum@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/discover/ff_IconShowAlbum.imageset/ff_IconShowAlbum@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/discover/ff_IconShowAlbum.imageset/ff_IconShowAlbum@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/discover/ff_IconShowAlbum.imageset/ff_IconShowAlbum@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/emotion/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/emotion/EPackageTusijiImage.imageset/EPackageTusijiImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/emotion/EPackageTusijiImage.imageset/EPackageTusijiImage.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/emotion/EPackageTusijiImage.imageset/EPackageTusijiImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/emotion/EPackageTusijiImage.imageset/EPackageTusijiImage@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/emotion/EmoticonAddButton.imageset/EmoticonAddButton@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/emotion/EmoticonAddButton.imageset/EmoticonAddButton@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/emotion/EmoticonAddButton.imageset/EmoticonAddButton@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/emotion/EmoticonAddButton.imageset/EmoticonAddButton@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/emotion/EmoticonBigTipsLeft.imageset/EmoticonBigTipsLeft@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/emotion/EmoticonBigTipsLeft.imageset/EmoticonBigTipsLeft@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/emotion/EmoticonBigTipsMiddle.imageset/EmoticonBigTipsMiddle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/emotion/EmoticonBigTipsMiddle.imageset/EmoticonBigTipsMiddle@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/emotion/EmoticonBigTipsRight.imageset/EmoticonBigTipsRight@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/emotion/EmoticonBigTipsRight.imageset/EmoticonBigTipsRight@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/emotion/EmoticonFocus.imageset/EmoticonFocus@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/emotion/EmoticonFocus.imageset/EmoticonFocus@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/emotion/EmotionCustomHL.imageset/EmotionCustomHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/emotion/EmotionCustomHL.imageset/EmotionCustomHL@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/emotion/EmotionsBagAdd.imageset/EmotionsBagAdd@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/emotion/EmotionsBagAdd.imageset/EmotionsBagAdd@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/emotion/EmotionsEmojiHL.imageset/EmotionsEmojiHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/emotion/EmotionsEmojiHL.imageset/EmotionsEmojiHL@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/emotion/EmotionsSendBtnBlue.imageset/EmotionsSendBtnBlue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/emotion/EmotionsSendBtnBlue.imageset/EmotionsSendBtnBlue@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/emotion/EmotionsSendBtnBlueHL.imageset/EmotionsSendBtnBlueHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/emotion/EmotionsSendBtnBlueHL.imageset/EmotionsSendBtnBlueHL@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/emotion/EmotionsSendBtnGrey.imageset/EmotionsSendBtnGrey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/emotion/EmotionsSendBtnGrey.imageset/EmotionsSendBtnGrey@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/emotion/EmotionsSetting.imageset/EmotionsSetting@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/emotion/EmotionsSetting.imageset/EmotionsSetting@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/location/AlbumCheckmark.imageset/AlbumCheckmark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/location/AlbumCheckmark.imageset/AlbumCheckmark@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/location/AlbumLocation.imageset/AlbumLocation@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/location/AlbumLocation.imageset/AlbumLocation@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/location/AlbumLocationHL.imageset/AlbumLocationHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/location/AlbumLocationHL.imageset/AlbumLocationHL@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/location/AlbumLocationIcon.imageset/AlbumLocationIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/location/AlbumLocationIcon.imageset/AlbumLocationIcon@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/location/AlbumLocationIconHL.imageset/AlbumLocationIconHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/location/AlbumLocationIconHL.imageset/AlbumLocationIconHL@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/location/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/location/located_pin.imageset/located_pin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/location/located_pin.imageset/located_pin@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/location/located_pin.imageset/located_pin@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/location/located_pin.imageset/located_pin@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/location/location_my.imageset/location_my@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/location/location_my.imageset/location_my@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/location/location_my.imageset/location_my@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/location/location_my.imageset/location_my@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/location/location_my_HL.imageset/location_my_HL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/location/location_my_HL.imageset/location_my_HL@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/location/location_my_HL.imageset/location_my_HL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/location/location_my_HL.imageset/location_my_HL@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/location/location_my_current.imageset/location_my_current@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/location/location_my_current.imageset/location_my_current@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/location/location_my_current.imageset/location_my_current@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/location/location_my_current.imageset/location_my_current@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/location/map_located.imageset/map_located@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/location/map_located.imageset/map_located@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/me/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/me/MyQRCodeAction.imageset/MyQRCodeAction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/me/MyQRCodeAction.imageset/MyQRCodeAction.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/me/MyQRCodeAction.imageset/MyQRCodeAction@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/me/MyQRCodeAction.imageset/MyQRCodeAction@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/me/MyQRCodeAction.imageset/MyQRCodeAction@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/me/MyQRCodeAction.imageset/MyQRCodeAction@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/more/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/more/MoreExpressionShops.imageset/MoreExpressionShops@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/more/MoreExpressionShops.imageset/MoreExpressionShops@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/more/MoreExpressionShops.imageset/MoreExpressionShops@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/more/MoreExpressionShops.imageset/MoreExpressionShops@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/more/MoreGame.imageset/MoreGame@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/more/MoreGame.imageset/MoreGame@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/more/MoreGame.imageset/MoreGame@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/more/MoreGame.imageset/MoreGame@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/more/MoreMyAlbum.imageset/MoreMyAlbum@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/more/MoreMyAlbum.imageset/MoreMyAlbum@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/more/MoreMyAlbum.imageset/MoreMyAlbum@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/more/MoreMyAlbum.imageset/MoreMyAlbum@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/more/MoreMyBankCard.imageset/MoreMyBankCard@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/more/MoreMyBankCard.imageset/MoreMyBankCard@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/more/MoreMyBankCard.imageset/MoreMyBankCard@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/more/MoreMyBankCard.imageset/MoreMyBankCard@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/more/MoreMyFavorites.imageset/MoreMyFavorites@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/more/MoreMyFavorites.imageset/MoreMyFavorites@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/more/MoreMyFavorites.imageset/MoreMyFavorites@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/more/MoreMyFavorites.imageset/MoreMyFavorites@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/more/MoreSetting.imageset/MoreSetting@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/more/MoreSetting.imageset/MoreSetting@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/more/MoreSetting.imageset/MoreSetting@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/more/MoreSetting.imageset/MoreSetting@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/more/MyCardPackageIcon.imageset/MyCardPackageIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/more/MyCardPackageIcon.imageset/MyCardPackageIcon@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/other/Action_Button.imageset/Action_Button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/other/Action_Button.imageset/Action_Button@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/other/Action_Email.imageset/Action_Email@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/other/Action_Email.imageset/Action_Email@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/other/Action_Email.imageset/Action_Email@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/other/Action_Email.imageset/Action_Email@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/other/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/other/LoginGreenBigBtn.imageset/LoginGreenBigBtn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/other/LoginGreenBigBtn.imageset/LoginGreenBigBtn.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/other/LoginGreenBigBtn.imageset/LoginGreenBigBtn@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/other/LoginGreenBigBtn.imageset/LoginGreenBigBtn@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/other/Mode_more_frame_line.imageset/Mode_more_frame_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/other/Mode_more_frame_line.imageset/Mode_more_frame_line.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/other/Mode_more_frame_line.imageset/Mode_more_frame_line@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/other/Mode_more_frame_line.imageset/Mode_more_frame_line@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/other/WizAppIcon60x60.imageset/WizAppIcon60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/other/WizAppIcon60x60.imageset/WizAppIcon60x60@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/other/WizAppIcon60x60.imageset/WizAppIcon60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/other/WizAppIcon60x60.imageset/WizAppIcon60x60@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/other/YoudaoAppIcon60x60.imageset/YoudaoAppIcon60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/other/YoudaoAppIcon60x60.imageset/YoudaoAppIcon60x60@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/other/back_icon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "Icon - Left.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | } 12 | } -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/other/back_icon.imageset/Icon - Left.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/other/back_icon.imageset/Icon - Left.pdf -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/other/connect_alert_error.imageset/connect_alert_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/other/connect_alert_error.imageset/connect_alert_error.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/other/connect_alert_error.imageset/connect_alert_error@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/other/connect_alert_error.imageset/connect_alert_error@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/other/fts_green_btn.imageset/fts_green_btn@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/other/fts_green_btn.imageset/fts_green_btn@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/other/fts_green_btn_HL.imageset/fts_green_btn_HL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/other/fts_green_btn_HL.imageset/fts_green_btn_HL@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/other/receipt_payment_icon.imageset/receipt_payment_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/other/receipt_payment_icon.imageset/receipt_payment_icon@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/other/receipt_payment_icon.imageset/receipt_payment_icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/other/receipt_payment_icon.imageset/receipt_payment_icon@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/other/wcproduct_sku_selected.imageset/wcproduct_sku_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/other/wcproduct_sku_selected.imageset/wcproduct_sku_selected@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/plugin/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/plugin/plugins_FriendNotify.imageset/plugins_FriendNotify@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/plugin/plugins_FriendNotify.imageset/plugins_FriendNotify@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/plugin/plugins_FriendNotify.imageset/plugins_FriendNotify@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/plugin/plugins_FriendNotify.imageset/plugins_FriendNotify@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/scan/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/scan/ScanBook.imageset/ScanBook@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/scan/ScanBook.imageset/ScanBook@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/scan/ScanBook.imageset/ScanBook@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/scan/ScanBook.imageset/ScanBook@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/scan/ScanBook_HL.imageset/ScanBook_HL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/scan/ScanBook_HL.imageset/ScanBook_HL@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/scan/ScanBook_HL.imageset/ScanBook_HL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/scan/ScanBook_HL.imageset/ScanBook_HL@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/scan/ScanBtombarBG.imageset/ScanBtombarBG@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/scan/ScanBtombarBG.imageset/ScanBtombarBG@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/scan/ScanDetailCellBg.imageset/ScanDetailCellBg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/scan/ScanDetailCellBg.imageset/ScanDetailCellBg@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/scan/ScanDetailCellBgHL.imageset/ScanDetailCellBgHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/scan/ScanDetailCellBgHL.imageset/ScanDetailCellBgHL@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/scan/ScanDetailCellBgHeader.imageset/ScanDetailCellBgHeader@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/scan/ScanDetailCellBgHeader.imageset/ScanDetailCellBgHeader@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/scan/ScanDetailCellBgLast.imageset/ScanDetailCellBgLast@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/scan/ScanDetailCellBgLast.imageset/ScanDetailCellBgLast@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/scan/ScanDetailDefaultRect.imageset/ScanDetailDefaultRect@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/scan/ScanDetailDefaultRect.imageset/ScanDetailDefaultRect@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/scan/ScanDetailMusicIcon.imageset/ScanDetailMusicIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/scan/ScanDetailMusicIcon.imageset/ScanDetailMusicIcon@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/scan/ScanDetailMusicIcon_Hl.imageset/ScanDetailMusicIcon_Hl@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/scan/ScanDetailMusicIcon_Hl.imageset/ScanDetailMusicIcon_Hl@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/scan/ScanQR1.imageset/ScanQR1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/scan/ScanQR1.imageset/ScanQR1@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/scan/ScanQR1.imageset/ScanQR1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/scan/ScanQR1.imageset/ScanQR1@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/scan/ScanQR2.imageset/ScanQR2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/scan/ScanQR2.imageset/ScanQR2@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/scan/ScanQR2.imageset/ScanQR2@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/scan/ScanQR2.imageset/ScanQR2@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/scan/ScanQR3.imageset/ScanQR3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/scan/ScanQR3.imageset/ScanQR3@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/scan/ScanQR3.imageset/ScanQR3@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/scan/ScanQR3.imageset/ScanQR3@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/scan/ScanQR4.imageset/ScanQR4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/scan/ScanQR4.imageset/ScanQR4@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/scan/ScanQR4.imageset/ScanQR4@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/scan/ScanQR4.imageset/ScanQR4@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/scan/ScanQRCode.imageset/ScanQRCode@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/scan/ScanQRCode.imageset/ScanQRCode@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/scan/ScanQRCode.imageset/ScanQRCode@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/scan/ScanQRCode.imageset/ScanQRCode@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/scan/ScanQRCodeAction.imageset/ScanQRCodeAction@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/scan/ScanQRCodeAction.imageset/ScanQRCodeAction@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/scan/ScanQRCode_HL.imageset/ScanQRCode_HL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/scan/ScanQRCode_HL.imageset/ScanQRCode_HL@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/scan/ScanQRCode_HL.imageset/ScanQRCode_HL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/scan/ScanQRCode_HL.imageset/ScanQRCode_HL@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/scan/ScanStreet.imageset/ScanStreet@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/scan/ScanStreet.imageset/ScanStreet@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/scan/ScanStreet.imageset/ScanStreet@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/scan/ScanStreet.imageset/ScanStreet@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/scan/ScanStreet_HL.imageset/ScanStreet_HL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/scan/ScanStreet_HL.imageset/ScanStreet_HL@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/scan/ScanStreet_HL.imageset/ScanStreet_HL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/scan/ScanStreet_HL.imageset/ScanStreet_HL@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/scan/ScanWord.imageset/ScanWord@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/scan/ScanWord.imageset/ScanWord@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/scan/ScanWord.imageset/ScanWord@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/scan/ScanWord.imageset/ScanWord@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/scan/ScanWord_HL.imageset/ScanWord_HL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/scan/ScanWord_HL.imageset/ScanWord_HL@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/scan/ScanWord_HL.imageset/ScanWord_HL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/scan/ScanWord_HL.imageset/ScanWord_HL@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/scan/Scantv.imageset/Scantv@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/scan/Scantv.imageset/Scantv@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/scan/Scantv_HL.imageset/Scantv_HL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/scan/Scantv_HL.imageset/Scantv_HL@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/share/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/share/sharemorePay.imageset/sharemorePay@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/share/sharemorePay.imageset/sharemorePay@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/share/sharemorePay.imageset/sharemorePay@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/share/sharemorePay.imageset/sharemorePay@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/share/sharemore_action.imageset/sharemore_action@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/share/sharemore_action.imageset/sharemore_action@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/share/sharemore_action_HL.imageset/sharemore_action_HL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/share/sharemore_action_HL.imageset/sharemore_action_HL@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/share/sharemore_friendcard.imageset/sharemore_friendcard@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/share/sharemore_friendcard.imageset/sharemore_friendcard@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/share/sharemore_friendcard.imageset/sharemore_friendcard@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/share/sharemore_friendcard.imageset/sharemore_friendcard@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/share/sharemore_fromapp.imageset/sharemore_fromapp@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/share/sharemore_fromapp.imageset/sharemore_fromapp@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/share/sharemore_fromapp_HL.imageset/sharemore_fromapp_HL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/share/sharemore_fromapp_HL.imageset/sharemore_fromapp_HL@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/share/sharemore_location.imageset/sharemore_location@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/share/sharemore_location.imageset/sharemore_location@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/share/sharemore_location.imageset/sharemore_location@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/share/sharemore_location.imageset/sharemore_location@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/share/sharemore_multitalk.imageset/sharemore_multitalk@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/share/sharemore_multitalk.imageset/sharemore_multitalk@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/share/sharemore_multitalk.imageset/sharemore_multitalk@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/share/sharemore_multitalk.imageset/sharemore_multitalk@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/share/sharemore_myaction.imageset/sharemore_myaction@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/share/sharemore_myaction.imageset/sharemore_myaction@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/share/sharemore_myaction_HL.imageset/sharemore_myaction_HL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/share/sharemore_myaction_HL.imageset/sharemore_myaction_HL@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/share/sharemore_myfav.imageset/sharemore_myfav@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/share/sharemore_myfav.imageset/sharemore_myfav@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/share/sharemore_myfav.imageset/sharemore_myfav@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/share/sharemore_myfav.imageset/sharemore_myfav@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/share/sharemore_other.imageset/sharemore_other.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/share/sharemore_other.imageset/sharemore_other.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/share/sharemore_other.imageset/sharemore_other@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/share/sharemore_other.imageset/sharemore_other@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/share/sharemore_other.imageset/sharemore_other@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/share/sharemore_other.imageset/sharemore_other@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/share/sharemore_other_HL.imageset/sharemore_other_HL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/share/sharemore_other_HL.imageset/sharemore_other_HL.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/share/sharemore_other_HL.imageset/sharemore_other_HL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/share/sharemore_other_HL.imageset/sharemore_other_HL@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/share/sharemore_other_HL.imageset/sharemore_other_HL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/share/sharemore_other_HL.imageset/sharemore_other_HL@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/share/sharemore_pic.imageset/sharemore_pic@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/share/sharemore_pic.imageset/sharemore_pic@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/share/sharemore_pic.imageset/sharemore_pic@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/share/sharemore_pic.imageset/sharemore_pic@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/share/sharemore_picbg.imageset/sharemore_picbg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/share/sharemore_picbg.imageset/sharemore_picbg@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/share/sharemore_service.imageset/sharemore_service@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/share/sharemore_service.imageset/sharemore_service@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/share/sharemore_sight.imageset/sharemore_sight@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/share/sharemore_sight.imageset/sharemore_sight@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/share/sharemore_sight.imageset/sharemore_sight@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/share/sharemore_sight.imageset/sharemore_sight@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/share/sharemore_video.imageset/sharemore_video@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/share/sharemore_video.imageset/sharemore_video@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/share/sharemore_video.imageset/sharemore_video@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/share/sharemore_video.imageset/sharemore_video@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/share/sharemore_videovoip.imageset/sharemore_videovoip@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/share/sharemore_videovoip.imageset/sharemore_videovoip@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/share/sharemore_videovoip.imageset/sharemore_videovoip@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/share/sharemore_videovoip.imageset/sharemore_videovoip@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/share/sharemore_voiceinput.imageset/sharemore_voiceinput@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/share/sharemore_voiceinput.imageset/sharemore_voiceinput@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/share/sharemore_voiceinput.imageset/sharemore_voiceinput@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/share/sharemore_voiceinput.imageset/sharemore_voiceinput@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/share/sharemore_voipvoice.imageset/sharemore_voipvoice@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/share/sharemore_voipvoice.imageset/sharemore_voipvoice@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/share/sharemore_wallet.imageset/sharemore_wallet@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/share/sharemore_wallet.imageset/sharemore_wallet@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/share/sharemore_wallet.imageset/sharemore_wallet@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/share/sharemore_wallet.imageset/sharemore_wallet@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/sight/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/sight/Mode_textmenuicon.imageset/Mode_textmenuicon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/sight/Mode_textmenuicon.imageset/Mode_textmenuicon@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/sight/Mode_textmenuicon.imageset/Mode_textmenuicon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/sight/Mode_textmenuicon.imageset/Mode_textmenuicon@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/sight/icon_sight_close.imageset/icon_sight_close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/sight/icon_sight_close.imageset/icon_sight_close@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/sight/icon_sight_close_color.imageset/icon_sight_close_color@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/sight/icon_sight_close_color.imageset/icon_sight_close_color@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/sight/sight_box_delete.imageset/sight_box_delete@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/sight/sight_box_delete.imageset/sight_box_delete@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/sight/sight_icon_keyboard.imageset/sight_icon_keyboard@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/sight/sight_icon_keyboard.imageset/sight_icon_keyboard@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/sight/sight_label_shadow.imageset/sight_label_shadow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/sight/sight_label_shadow.imageset/sight_label_shadow@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/sight/sight_lightboost_big.imageset/sight_lightboost_big@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/sight/sight_lightboost_big.imageset/sight_lightboost_big@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/sight/sight_main_logo.imageset/sight_main_logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/sight/sight_main_logo.imageset/sight_main_logo@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/sight/sight_main_logo.imageset/sight_main_logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/sight/sight_main_logo.imageset/sight_main_logo@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/sight/sight_main_shutter_i4.imageset/sight_main_shutter_i4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/sight/sight_main_shutter_i4.imageset/sight_main_shutter_i4@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/sight/sight_main_shutter_i6.imageset/sight_main_shutter_i6@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/sight/sight_main_shutter_i6.imageset/sight_main_shutter_i6@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/sight/sight_main_shutter_i6p.imageset/sight_main_shutter_i6p@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/sight/sight_main_shutter_i6p.imageset/sight_main_shutter_i6p@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/sight/sight_toolbar_shutter.imageset/sight_toolbar_shutter@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/sight/sight_toolbar_shutter.imageset/sight_toolbar_shutter@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/sight/sight_toolbar_shutter.imageset/sight_toolbar_shutter@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/sight/sight_toolbar_shutter.imageset/sight_toolbar_shutter@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/tabbar/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/tabbar/tabbarBkg.imageset/tabbarBkg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/tabbar/tabbarBkg.imageset/tabbarBkg@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/tabbar/tabbar_badge.imageset/tabbar_badge@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/tabbar/tabbar_badge.imageset/tabbar_badge@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/tabbar/tabbar_badge.imageset/tabbar_badge@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/tabbar/tabbar_badge.imageset/tabbar_badge@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/tabbar/tabbar_contacts.imageset/tabbar_contacts@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/tabbar/tabbar_contacts.imageset/tabbar_contacts@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/tabbar/tabbar_contacts.imageset/tabbar_contacts@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/tabbar/tabbar_contacts.imageset/tabbar_contacts@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/tabbar/tabbar_contactsHL.imageset/tabbar_contactsHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/tabbar/tabbar_contactsHL.imageset/tabbar_contactsHL@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/tabbar/tabbar_contactsHL.imageset/tabbar_contactsHL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/tabbar/tabbar_contactsHL.imageset/tabbar_contactsHL@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/tabbar/tabbar_discover.imageset/tabbar_discover@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/tabbar/tabbar_discover.imageset/tabbar_discover@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/tabbar/tabbar_discover.imageset/tabbar_discover@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/tabbar/tabbar_discover.imageset/tabbar_discover@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/tabbar/tabbar_discoverHL.imageset/tabbar_discoverHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/tabbar/tabbar_discoverHL.imageset/tabbar_discoverHL@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/tabbar/tabbar_discoverHL.imageset/tabbar_discoverHL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/tabbar/tabbar_discoverHL.imageset/tabbar_discoverHL@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/tabbar/tabbar_mainframe.imageset/tabbar_mainframe@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/tabbar/tabbar_mainframe.imageset/tabbar_mainframe@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/tabbar/tabbar_mainframe.imageset/tabbar_mainframe@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/tabbar/tabbar_mainframe.imageset/tabbar_mainframe@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/tabbar/tabbar_mainframeHL.imageset/tabbar_mainframeHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/tabbar/tabbar_mainframeHL.imageset/tabbar_mainframeHL@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/tabbar/tabbar_mainframeHL.imageset/tabbar_mainframeHL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/tabbar/tabbar_mainframeHL.imageset/tabbar_mainframeHL@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/tabbar/tabbar_me.imageset/tabbar_me@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/tabbar/tabbar_me.imageset/tabbar_me@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/tabbar/tabbar_me.imageset/tabbar_me@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/tabbar/tabbar_me.imageset/tabbar_me@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/tabbar/tabbar_meHL.imageset/tabbar_meHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/tabbar/tabbar_meHL.imageset/tabbar_meHL@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/tabbar/tabbar_meHL.imageset/tabbar_meHL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/tabbar/tabbar_meHL.imageset/tabbar_meHL@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/video/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/video/Fav_List_Video_Play.imageset/Fav_List_Video_Play@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/video/Fav_List_Video_Play.imageset/Fav_List_Video_Play@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/video/Fav_List_Video_Play.imageset/Fav_List_Video_Play@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/video/Fav_List_Video_Play.imageset/Fav_List_Video_Play@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/video/MMVideoPreviewPlay.imageset/MMVideoPreviewPlay@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/video/MMVideoPreviewPlay.imageset/MMVideoPreviewPlay@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/video/MMVideoPreviewPlay.imageset/MMVideoPreviewPlay@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/video/MMVideoPreviewPlay.imageset/MMVideoPreviewPlay@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/video/MMVideoPreviewPlayHL.imageset/MMVideoPreviewPlayHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/video/MMVideoPreviewPlayHL.imageset/MMVideoPreviewPlayHL@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/video/MMVideoPreviewPlayHL.imageset/MMVideoPreviewPlayHL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/video/MMVideoPreviewPlayHL.imageset/MMVideoPreviewPlayHL@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/video/MessageVideoDownload.imageset/MessageVideoDownload@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/video/MessageVideoDownload.imageset/MessageVideoDownload@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/video/MessageVideoDownload.imageset/MessageVideoDownload@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/video/MessageVideoDownload.imageset/MessageVideoDownload@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/video/MessageVideoPlay.imageset/MessageVideoPlay@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/video/MessageVideoPlay.imageset/MessageVideoPlay@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/video/MessageVideoPlay.imageset/MessageVideoPlay@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/video/MessageVideoPlay.imageset/MessageVideoPlay@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/video/mmplayer_idle.imageset/mmplayer_idle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/video/mmplayer_idle.imageset/mmplayer_idle@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/video/mmplayer_idle.imageset/mmplayer_idle@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/video/mmplayer_idle.imageset/mmplayer_idle@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/video/mmplayer_idle_HL.imageset/mmplayer_idle_HL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/video/mmplayer_idle_HL.imageset/mmplayer_idle_HL@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/video/mmplayer_idle_HL.imageset/mmplayer_idle_HL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/video/mmplayer_idle_HL.imageset/mmplayer_idle_HL@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/video/mmplayer_playing.imageset/mmplayer_playing@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/video/mmplayer_playing.imageset/mmplayer_playing@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/video/mmplayer_playing.imageset/mmplayer_playing@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/video/mmplayer_playing.imageset/mmplayer_playing@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/video/mmplayer_playing_HL.imageset/mmplayer_playing_HL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/video/mmplayer_playing_HL.imageset/mmplayer_playing_HL@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/video/mmplayer_playing_HL.imageset/mmplayer_playing_HL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/video/mmplayer_playing_HL.imageset/mmplayer_playing_HL@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/video/mmvideo_idle.imageset/mmvideo_idle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/video/mmvideo_idle.imageset/mmvideo_idle@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/video/mmvideo_idle.imageset/mmvideo_idle@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/video/mmvideo_idle.imageset/mmvideo_idle@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/video/player_mode_pic_wall.imageset/player_mode_pic_wall@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/video/player_mode_pic_wall.imageset/player_mode_pic_wall@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/video/player_mode_video_wall.imageset/player_mode_video_wall@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/video/player_mode_video_wall.imageset/player_mode_video_wall@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/video/player_star_button.imageset/player_star_button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/video/player_star_button.imageset/player_star_button@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/video/player_star_button.imageset/player_star_button@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/video/player_star_button.imageset/player_star_button@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/video/player_suspend_button.imageset/player_suspend_button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/video/player_suspend_button.imageset/player_suspend_button@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/video/player_suspend_button.imageset/player_suspend_button@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/video/player_suspend_button.imageset/player_suspend_button@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/video/playerplan_button.imageset/playerplan_button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/video/playerplan_button.imageset/playerplan_button@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/video/playerplan_button.imageset/playerplan_button@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/video/playerplan_button.imageset/playerplan_button@3x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/video/playvideo.imageset/playvideo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/video/playvideo.imageset/playvideo@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/hilen/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/hilen/MessageRightTopBg.imageset/MessageRightTopBg.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/hilen/MessageRightTopBg.imageset/MessageRightTopBg.pdf -------------------------------------------------------------------------------- /LLWeChat/Resources/Media.xcassets/hilen/chat_background.imageset/chat_background@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Media.xcassets/hilen/chat_background.imageset/chat_background@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/Monaco.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/Monaco.ttf -------------------------------------------------------------------------------- /LLWeChat/Resources/imageDownloadFail@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/imageDownloadFail@2x.png -------------------------------------------------------------------------------- /LLWeChat/Resources/user@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/LLWeChat/Resources/user@2x.png -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- 1 | source 'https://github.com/CocoaPods/Specs.git' 2 | 3 | platform:ios,'8.0' 4 | use_frameworks! 5 | # ignore all warnings from all pods 6 | inhibit_all_warnings! 7 | 8 | target 'LLWeChat' do 9 | 10 | end 11 | -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- 1 | PODFILE CHECKSUM: 2a076eb3dc1e671e52391c9d3522d4c4801e0801 2 | 3 | COCOAPODS: 1.0.1 4 | -------------------------------------------------------------------------------- /ScreenShot/GIF.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/ScreenShot/GIF.PNG -------------------------------------------------------------------------------- /ScreenShot/地图搜索.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/ScreenShot/地图搜索.gif -------------------------------------------------------------------------------- /ScreenShot/地图附近点搜索.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/ScreenShot/地图附近点搜索.gif -------------------------------------------------------------------------------- /ScreenShot/录音.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/ScreenShot/录音.PNG -------------------------------------------------------------------------------- /ScreenShot/录音最大时长.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/ScreenShot/录音最大时长.gif -------------------------------------------------------------------------------- /ScreenShot/批量删除.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/ScreenShot/批量删除.gif -------------------------------------------------------------------------------- /ScreenShot/文本链接.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/ScreenShot/文本链接.gif -------------------------------------------------------------------------------- /ScreenShot/新消息通知.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/ScreenShot/新消息通知.gif -------------------------------------------------------------------------------- /ScreenShot/消息搜索.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/ScreenShot/消息搜索.gif -------------------------------------------------------------------------------- /ScreenShot/添加好友.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/ScreenShot/添加好友.gif -------------------------------------------------------------------------------- /ScreenShot/照片发送.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/ScreenShot/照片发送.gif -------------------------------------------------------------------------------- /ScreenShot/照片浏览.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/ScreenShot/照片浏览.gif -------------------------------------------------------------------------------- /ScreenShot/照片视频弹入弹出动画.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/ScreenShot/照片视频弹入弹出动画.gif -------------------------------------------------------------------------------- /ScreenShot/视频下载.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/ScreenShot/视频下载.gif -------------------------------------------------------------------------------- /ScreenShot/视频发送.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/ScreenShot/视频发送.gif -------------------------------------------------------------------------------- /ScreenShot/输入框文本动画.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/ScreenShot/输入框文本动画.gif -------------------------------------------------------------------------------- /ScreenShot/输入框草稿.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/ScreenShot/输入框草稿.gif -------------------------------------------------------------------------------- /ScreenShot/输入面板基本功能.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1o/LLWeChat/6ed9c2b344c5e7e67870a94b24d785d4f30691f8/ScreenShot/输入面板基本功能.PNG --------------------------------------------------------------------------------