diff --git a/Podfile b/Podfile index b4c0cbf..4a60ff4 100644 --- a/Podfile +++ b/Podfile @@ -15,6 +15,7 @@ target 'keyBoard' do pod 'HWPanModal', '~> 0.9.9' pod 'LSTPopView', '~> 0.3.10' pod 'LookinServer', :configurations => ['Debug'] + pod 'LYEmptyView' pod 'Masonry', '1.1.0' pod 'MBProgressHUD', '1.2.0' pod 'MJExtension', '3.4.2' diff --git a/Podfile.lock b/Podfile.lock index 9ed0f51..b42892d 100644 --- a/Podfile.lock +++ b/Podfile.lock @@ -29,6 +29,7 @@ PODS: - LSTPopView/Code (0.3.10): - LSTTimer - LSTTimer (0.2.10) + - LYEmptyView (1.3.1) - Masonry (1.1.0) - MBProgressHUD (1.2.0) - MJExtension (3.4.2) @@ -43,10 +44,11 @@ DEPENDENCIES: - DZNEmptyDataSet (= 1.8.1) - FLAnimatedImage (~> 1.0.17) - HWPanModal (~> 0.9.9) - - JXCategoryView + - JXCategoryView (~> 1.6.8) - JXPagingView/Pager (~> 2.1.3) - LookinServer - LSTPopView (~> 0.3.10) + - LYEmptyView - Masonry (= 1.1.0) - MBProgressHUD (= 1.2.0) - MJExtension (= 3.4.2) @@ -65,6 +67,7 @@ SPEC REPOS: - LookinServer - LSTPopView - LSTTimer + - LYEmptyView - Masonry - MBProgressHUD - MJExtension @@ -82,12 +85,13 @@ SPEC CHECKSUMS: LookinServer: 1b2b61c6402ae29fa22182d48f5cd067b4e99e80 LSTPopView: 9379f00f6ce7d1fc620b50ab00ed3ef97b2d4d52 LSTTimer: caf8f02ff366ca175cf4c1778d26c166183c1b6f + LYEmptyView: b6d418cfa38b78df0cf243f9a9c25ccbdc399922 Masonry: 678fab65091a9290e40e2832a55e7ab731aad201 MBProgressHUD: 3ee5efcc380f6a79a7cc9b363dd669c5e1ae7406 MJExtension: e97d164cb411aa9795cf576093a1fa208b4a8dd8 MJRefresh: ff9e531227924c84ce459338414550a05d2aea78 SDWebImage: f29024626962457f3470184232766516dee8dfea -PODFILE CHECKSUM: ce689000a7b9b24f5d74cc50a93350665c3af035 +PODFILE CHECKSUM: e5e2037c9180ed40ba4a0e264e837eaf839ca6b2 COCOAPODS: 1.16.2 diff --git a/Pods/JXCategoryView/Sources/Indicator/JXCategoryIndicatorCell.m b/Pods/JXCategoryView/Sources/Indicator/JXCategoryIndicatorCell.m index 152ee90..390701f 100644 --- a/Pods/JXCategoryView/Sources/Indicator/JXCategoryIndicatorCell.m +++ b/Pods/JXCategoryView/Sources/Indicator/JXCategoryIndicatorCell.m @@ -20,8 +20,6 @@ self.separatorLine = [[UIView alloc] init]; self.separatorLine.hidden = YES; - /// STTODO 修改 - self.contentView.layer.cornerRadius = 4; [self.contentView addSubview:self.separatorLine]; } diff --git a/Pods/LYEmptyView/LICENSE b/Pods/LYEmptyView/LICENSE new file mode 100644 index 0000000..6d38ce5 --- /dev/null +++ b/Pods/LYEmptyView/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2017 yang + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/Pods/LYEmptyView/LYEmptyView/LYEmptyBaseView.h b/Pods/LYEmptyView/LYEmptyView/LYEmptyBaseView.h new file mode 100644 index 0000000..e2b273d --- /dev/null +++ b/Pods/LYEmptyView/LYEmptyView/LYEmptyBaseView.h @@ -0,0 +1,146 @@ +// +// LYEmptyBaseView.h +// LYEmptyViewDemo +// +// Created by liyang on 2017/5/5. +// Copyright © 2017年 liyang. All rights reserved. +// + +#import +#import "UIView+LYExtension.h" + +//事件回调 +typedef void (^LYActionTapBlock)(void); + +@interface LYEmptyBaseView : UIView + +/////////属性传递(可修改) +/* image 的优先级大于 imageStr,只有一个有效*/ +@property (nonatomic, strong)UIImage *image; +@property (nonatomic, copy) NSString *imageStr; +@property (nonatomic, copy) NSString *titleStr; +@property (nonatomic, copy) NSString *detailStr; +@property (nonatomic, copy) NSString *btnTitleStr; + +/////////属性传递 (只读) +@property (nonatomic,strong,readonly) UIView *contentView; +@property (nonatomic, weak, readonly) id actionBtnTarget; +@property (nonatomic,assign,readonly) SEL actionBtnAction; +@property (nonatomic, copy, readonly) LYActionTapBlock btnClickBlock; +@property (nonatomic,strong,readonly) UIView *customView; + +/** + emptyView点击事件 + */ +@property (nonatomic, copy) LYActionTapBlock tapEmptyViewBlock; + + +///初始化配置 +- (void)prepare; + +///重置Subviews +- (void)setupSubviews; + + +/** + 构造方法 - 创建emptyView + + @param image 占位图片 + @param titleStr 标题 + @param detailStr 详细描述 + @param btnTitleStr 按钮的名称 + @param target 响应的对象 + @param action 按钮点击事件 + @return 返回一个emptyView + */ ++ (instancetype)emptyActionViewWithImage:(UIImage *)image + titleStr:(NSString *)titleStr + detailStr:(NSString *)detailStr + btnTitleStr:(NSString *)btnTitleStr + target:(id)target + action:(SEL)action; + +/** + 构造方法 - 创建emptyView + + @param image 占位图片 + @param titleStr 占位描述 + @param detailStr 详细描述 + @param btnTitleStr 按钮的名称 + @param btnClickBlock 按钮点击事件回调 + @return 返回一个emptyView + */ ++ (instancetype)emptyActionViewWithImage:(UIImage *)image + titleStr:(NSString *)titleStr + detailStr:(NSString *)detailStr + btnTitleStr:(NSString *)btnTitleStr + btnClickBlock:(LYActionTapBlock)btnClickBlock; + +/** + 构造方法 - 创建emptyView + + @param imageStr 占位图片名称 + @param titleStr 标题 + @param detailStr 详细描述 + @param btnTitleStr 按钮的名称 + @param target 响应的对象 + @param action 按钮点击事件 + @return 返回一个emptyView + */ ++ (instancetype)emptyActionViewWithImageStr:(NSString *)imageStr + titleStr:(NSString *)titleStr + detailStr:(NSString *)detailStr + btnTitleStr:(NSString *)btnTitleStr + target:(id)target + action:(SEL)action; + +/** + 构造方法 - 创建emptyView + + @param imageStr 占位图片名称 + @param titleStr 占位描述 + @param detailStr 详细描述 + @param btnTitleStr 按钮的名称 + @param btnClickBlock 按钮点击事件回调 + @return 返回一个emptyView + */ ++ (instancetype)emptyActionViewWithImageStr:(NSString *)imageStr + titleStr:(NSString *)titleStr + detailStr:(NSString *)detailStr + btnTitleStr:(NSString *)btnTitleStr + btnClickBlock:(LYActionTapBlock)btnClickBlock; + +/** + 构造方法 - 创建emptyView + + @param image 占位图片 + @param titleStr 占位描述 + @param detailStr 详细描述 + @return 返回一个没有点击事件的emptyView + */ ++ (instancetype)emptyViewWithImage:(UIImage *)image + titleStr:(NSString *)titleStr + detailStr:(NSString *)detailStr; + +/** + 构造方法 - 创建emptyView + + @param imageStr 占位图片名称 + @param titleStr 占位描述 + @param detailStr 详细描述 + @return 返回一个没有点击事件的emptyView + */ ++ (instancetype)emptyViewWithImageStr:(NSString *)imageStr + titleStr:(NSString *)titleStr + detailStr:(NSString *)detailStr; + +/** + 构造方法 - 创建一个自定义的emptyView + + @param customView 自定义view + @return 返回一个自定义内容的emptyView + */ ++ (instancetype)emptyViewWithCustomView:(UIView *)customView; + + +@end diff --git a/Pods/LYEmptyView/LYEmptyView/LYEmptyBaseView.m b/Pods/LYEmptyView/LYEmptyView/LYEmptyBaseView.m new file mode 100644 index 0000000..a5898aa --- /dev/null +++ b/Pods/LYEmptyView/LYEmptyView/LYEmptyBaseView.m @@ -0,0 +1,212 @@ +// +// LYEmptyBaseView.h +// LYEmptyViewDemo +// +// Created by liyang on 2017/5/5. +// Copyright © 2017年 liyang. All rights reserved. +// + +#import "LYEmptyBaseView.h" + +@interface LYEmptyBaseView () + +@end + +@implementation LYEmptyBaseView + +#pragma mark - ------------------ Life Cycle ------------------ +- (instancetype)init +{ + self = [super init]; + if (self) { + [self initialize]; + [self prepare]; + } + return self; +} + +- (void)initialize{ +} + +- (void)prepare{ + self.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight; +} + +- (void)layoutSubviews +{ + [super layoutSubviews]; + + UIView *view = self.superview; + //不是UIView,不做操作 + if (view && [view isKindOfClass:[UIView class]]){ + self.ly_width = view.ly_width; + self.ly_height = view.ly_height; + } + + [self setupSubviews]; +} + +- (void)setupSubviews{ +} + +- (void)willMoveToSuperview:(UIView *)newSuperview +{ + [super willMoveToSuperview:newSuperview]; + + //不是UIView,不做操作 + if (newSuperview && ![newSuperview isKindOfClass:[UIView class]]) return; + + if (newSuperview) { + self.ly_width = newSuperview.ly_width; + self.ly_height = newSuperview.ly_height; + } +} + +#pragma mark - ------------------ 实例化 ------------------ ++ (instancetype)emptyActionViewWithImage:(UIImage *)image + titleStr:(NSString *)titleStr + detailStr:(NSString *)detailStr + btnTitleStr:(NSString *)btnTitleStr + target:(id)target + action:(SEL)action{ + + LYEmptyBaseView *emptyView = [[self alloc] init]; + [emptyView creatEmptyViewWithImage:image imageStr:nil titleStr:titleStr detailStr:detailStr btnTitleStr:btnTitleStr target:target action:action btnClickBlock:nil]; + + return emptyView; +} + ++ (instancetype)emptyActionViewWithImage:(UIImage *)image + titleStr:(NSString *)titleStr + detailStr:(NSString *)detailStr + btnTitleStr:(NSString *)btnTitleStr + btnClickBlock:(LYActionTapBlock)btnClickBlock{ + + LYEmptyBaseView *emptyView = [[self alloc] init]; + [emptyView creatEmptyViewWithImage:image imageStr:nil titleStr:titleStr detailStr:detailStr btnTitleStr:btnTitleStr target:nil action:nil btnClickBlock:btnClickBlock]; + + return emptyView; +} + ++ (instancetype)emptyActionViewWithImageStr:(NSString *)imageStr + titleStr:(NSString *)titleStr + detailStr:(NSString *)detailStr + btnTitleStr:(NSString *)btnTitleStr + target:(id)target + action:(SEL)action{ + + LYEmptyBaseView *emptyView = [[self alloc] init]; + [emptyView creatEmptyViewWithImage:nil imageStr:imageStr titleStr:titleStr detailStr:detailStr btnTitleStr:btnTitleStr target:target action:action btnClickBlock:nil]; + + return emptyView; +} + ++ (instancetype)emptyActionViewWithImageStr:(NSString *)imageStr + titleStr:(NSString *)titleStr + detailStr:(NSString *)detailStr + btnTitleStr:(NSString *)btnTitleStr + btnClickBlock:(LYActionTapBlock)btnClickBlock{ + + LYEmptyBaseView *emptyView = [[self alloc] init]; + [emptyView creatEmptyViewWithImage:nil imageStr:imageStr titleStr:titleStr detailStr:detailStr btnTitleStr:btnTitleStr target:nil action:nil btnClickBlock:btnClickBlock]; + + return emptyView; +} + ++ (instancetype)emptyViewWithImage:(UIImage *)image + titleStr:(NSString *)titleStr + detailStr:(NSString *)detailStr{ + + LYEmptyBaseView *emptyView = [[self alloc] init]; + [emptyView creatEmptyViewWithImage:image imageStr:nil titleStr:titleStr detailStr:detailStr btnTitleStr:nil target:nil action:nil btnClickBlock:nil]; + + return emptyView; +} + ++ (instancetype)emptyViewWithImageStr:(NSString *)imageStr + titleStr:(NSString *)titleStr + detailStr:(NSString *)detailStr{ + + LYEmptyBaseView *emptyView = [[self alloc] init]; + [emptyView creatEmptyViewWithImage:nil imageStr:imageStr titleStr:titleStr detailStr:detailStr btnTitleStr:nil target:nil action:nil btnClickBlock:nil]; + + return emptyView; +} + ++ (instancetype)emptyViewWithCustomView:(UIView *)customView{ + + LYEmptyBaseView *emptyView = [[self alloc] init]; + [emptyView creatEmptyViewWithCustomView:customView]; + + return emptyView; +} + +- (void)creatEmptyViewWithImage:(UIImage *)image imageStr:(NSString *)imageStr titleStr:(NSString *)titleStr detailStr:(NSString *)detailStr btnTitleStr:(NSString *)btnTitleStr target:(id)target action:(SEL)action btnClickBlock:(LYActionTapBlock)btnClickBlock{ + + _image = image; + _imageStr = imageStr; + _titleStr = titleStr; + _detailStr = detailStr; + _btnTitleStr = btnTitleStr; + _actionBtnTarget = target; + _actionBtnAction = action; + _btnClickBlock = btnClickBlock; + + //内容物背景视图 + if (!_contentView) { + _contentView = [[UIView alloc] initWithFrame:CGRectZero]; + [self addSubview:_contentView]; + } + + UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(tapEmptyView:)]; + [self addGestureRecognizer:tap]; +} + +- (void)creatEmptyViewWithCustomView:(UIView *)customView{ + + //内容物背景视图 + if (!_contentView) { + _contentView = [[UIView alloc] initWithFrame:CGRectZero]; + [self addSubview:_contentView]; + } + + if (!_customView) { + [_contentView addSubview:customView]; + } + _customView = customView; + + UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(tapEmptyView:)]; + [self addGestureRecognizer:tap]; +} + +#pragma mark - ------------------ Event Method ------------------ +- (void)tapEmptyView:(UITapGestureRecognizer *)tap{ + if (_tapEmptyViewBlock) { + _tapEmptyViewBlock(); + } +} + +#pragma mark - ------------------ Setter ------------------ + +- (void)setImage:(UIImage *)image{ + _image = image; + [self setNeedsLayout]; +} +- (void)setImageStr:(NSString *)imageStr{ + _imageStr = imageStr; + [self setNeedsLayout]; +} +- (void)setTitleStr:(NSString *)titleStr{ + _titleStr = titleStr; + [self setNeedsLayout]; +} +- (void)setDetailStr:(NSString *)detailStr{ + _detailStr = detailStr; + [self setNeedsLayout]; +} +- (void)setBtnTitleStr:(NSString *)btnTitleStr{ + _btnTitleStr = btnTitleStr; + [self setNeedsLayout]; +} + +@end diff --git a/Pods/LYEmptyView/LYEmptyView/LYEmptyView.h b/Pods/LYEmptyView/LYEmptyView/LYEmptyView.h new file mode 100755 index 0000000..a6c2a92 --- /dev/null +++ b/Pods/LYEmptyView/LYEmptyView/LYEmptyView.h @@ -0,0 +1,142 @@ +// +// LYEmptyView.h +// LYEmptyViewDemo +// +// Created by liyang on 2017/5/10. +// Copyright © 2017年 liyang. All rights reserved. +// + +#import "LYEmptyBaseView.h" + +@interface LYEmptyView : LYEmptyBaseView + +/** + 是否自动显隐EmptyView, default=YES + */ +@property (nonatomic, assign) BOOL autoShowEmptyView; + +/** + 占位图是否完全覆盖父视图, default=NO + 当设置为YES后,占位图的backgroundColor默认为浅白色,可自行设置 + */ +@property (nonatomic, assign) BOOL emptyViewIsCompleteCoverSuperView; + +/** + 内容物上每个子控件之间的间距 default is 20.f , 这是统一设置的,每个子控件可单独设置 + */ +@property (nonatomic, assign) CGFloat subViewMargin; + +/** + 内容物-垂直方向偏移 (此属性与contentViewY 互斥,只有一个会有效) + */ +@property (nonatomic, assign) CGFloat contentViewOffset; + +/** + 内容物-Y坐标 (此属性与contentViewOffset 互斥,只有一个会有效) + */ +@property (nonatomic, assign) CGFloat contentViewY; + +/** + 是否忽略scrollView的contentInset + */ +@property (nonatomic, assign) BOOL ignoreContentInset; + + +//-------------------------- image --------------------------// +/** + 图片可设置固定大小 (default=图片实际大小) + */ +@property (nonatomic, assign) CGSize imageSize; + + +//-------------------------- titleLab 相关 --------------------------// +/** + 标题字体, 大小default is 16.f + */ +@property (nonatomic, strong) UIFont *titleLabFont; + +/** + 标题文字颜色 + */ +@property (nonatomic, strong) UIColor *titleLabTextColor; + +/** + 标题与图片之间的间距 default is @subViewMargin + */ +@property (nonatomic, assign) CGFloat titleLabMargin; + + +//-------------------------- detailLab 相关 --------------------------// +/** + 详细描述字体,大小default is 14.f + */ +@property (nonatomic, strong) UIFont *detailLabFont; + +/** + 详细描述最大行数, default is 2 + */ +@property (nonatomic, assign) NSInteger detailLabMaxLines; + +/** + 详细描述文字颜色 + */ +@property (nonatomic, strong) UIColor *detailLabTextColor; + +/** + 详细描述文字行间距 + */ +@property (nonatomic, assign) NSInteger detailLabLineSpacing; + +/** + 详细描述 与 (标题或图片) 之间的间距 default is @subViewMargin + */ +@property (nonatomic, assign) CGFloat detailLabMargin; + + +//-------------------------- Button 相关 --------------------------// +/** + 按钮字体, 大小default is 14.f + */ +@property (nonatomic, strong) UIFont *actionBtnFont; +/** + 按钮的高度, default is 40.f + */ +@property (nonatomic, assign) CGFloat actionBtnHeight; +/** + 按钮的宽度, default is 0.f, (此属性和actionBtnHorizontalMargin只有一个有效,都>0时,此属性优先级大) + */ +@property (nonatomic, assign) CGFloat actionBtnWidth; +/** + 按钮的水平方向内边距, default is 30.f, (此属性和actionBtnWidth只有一个有效,都>0时,此属性优先级小) + */ +@property (nonatomic, assign) CGFloat actionBtnHorizontalMargin; +/** + 按钮的圆角大小, default is 0 + */ +@property (nonatomic, assign) CGFloat actionBtnCornerRadius; +/** + 按钮边框border的宽度, default is 0 + */ +@property (nonatomic, assign) CGFloat actionBtnBorderWidth; +/** + 按钮边框颜色 + */ +@property (nonatomic, strong) UIColor *actionBtnBorderColor; +/** + 按钮文字颜色 + */ +@property (nonatomic, strong) UIColor *actionBtnTitleColor; +/** + 按钮背景颜色 + */ +@property (nonatomic, strong) UIColor *actionBtnBackGroundColor; +/** + 按钮背景渐变颜色集合,2个 + */ +@property (nonatomic, strong) NSArray *actionBtnBackGroundGradientColors; +/** + 按钮 与 (详细描述或标题或图片) 之间的间距 default is @subViewMargin + */ +@property (nonatomic, assign) CGFloat actionBtnMargin; + +@end diff --git a/Pods/LYEmptyView/LYEmptyView/LYEmptyView.m b/Pods/LYEmptyView/LYEmptyView/LYEmptyView.m new file mode 100755 index 0000000..5178b45 --- /dev/null +++ b/Pods/LYEmptyView/LYEmptyView/LYEmptyView.m @@ -0,0 +1,656 @@ +// +// LYEmptyView.m +// LYEmptyViewDemo +// +// Created by liyang on 2017/5/10. +// Copyright © 2017年 liyang. All rights reserved. +// + +#import "LYEmptyView.h" + +//每个子控件之间的间距 +#define kSubViewMargin 20.f + +//描述字体 +#define kTitleLabFont [UIFont systemFontOfSize:16.f] + +//详细描述字体 +#define kDetailLabFont [UIFont systemFontOfSize:14.f] + +//按钮字体大小 +#define kActionBtnFont [UIFont systemFontOfSize:14.f] + +//按钮高度 +#define kActionBtnHeight 40.f +//按钮宽度 +#define kActionBtnWidth 120.f +//水平方向内边距 +#define kActionBtnHorizontalMargin 30.f + +//背景色 +#define kBackgroundColor [UIColor colorWithRed:250.f/255.f green:250.f/255.f blue:250.f/255.f alpha:1.f] +//黑色 +#define kBlackColor [UIColor colorWithRed:0.3f green:0.3f blue:0.3f alpha:1.f] +//灰色 +#define kGrayColor [UIColor colorWithRed:0.5f green:0.5f blue:0.5f alpha:1.f] + +@interface LYEmptyView () + +@property (nonatomic, strong) UIImageView *promptImageView; +@property (nonatomic, strong) UILabel *titleLabel; +@property (nonatomic, strong) UILabel *detailLabel; +@property (nonatomic, strong) UIButton *actionButton; +@property (nonatomic, strong) UIView *customV; + +@end + +@implementation LYEmptyView +{ + CGFloat contentMaxWidth; //最大宽度 + CGFloat contentWidth; //内容物宽度 + CGFloat contentHeight; //内容物高度 + CGFloat subViweMargin; //内容物上每个子控件之间的间距 +} + +- (void)initialize{ + self.actionBtnHeight = 40.f; + self.actionBtnWidth = 120.f; + self.actionBtnHorizontalMargin = 30.f; + self.detailLabMaxLines = 2; +} + +- (void)prepare{ + [super prepare]; + + self.autoShowEmptyView = YES; //默认自动显隐 + self.contentViewY = 1000; //默认值,用来判断是否设置过content的Y值 +} + +- (void)setupSubviews{ + [super setupSubviews]; + + contentMaxWidth = self.emptyViewIsCompleteCoverSuperView ? self.ly_width : self.ly_width - 30.f; + contentWidth = 0;//内容物宽度 + contentHeight = 0;//内容物高度 + subViweMargin = self.subViewMargin ? self.subViewMargin : kSubViewMargin; + + //占位图片 + UIImage *image; + if (self.imageStr.length) { + image = [UIImage imageNamed:self.imageStr]; + } + if(self.image){ + [self setupPromptImageView:self.image]; + }else if (image) { + [self setupPromptImageView:image]; + } else{ + if (_promptImageView) { + [self.promptImageView removeFromSuperview]; + self.promptImageView = nil; + } + } + + //标题 + if (self.titleStr.length) { + [self setupTitleLabel:self.titleStr]; + }else{ + if (_titleLabel) { + [self.titleLabel removeFromSuperview]; + self.titleLabel = nil; + } + } + + //详细描述 + if (self.detailStr.length) { + [self setupDetailLabel:self.detailStr]; + }else{ + if (_detailLabel) { + [self.detailLabel removeFromSuperview]; + self.detailLabel = nil; + } + } + + //按钮 + if (self.btnTitleStr.length) { + if (self.actionBtnTarget && self.actionBtnAction) { + [self setupActionBtn:self.btnTitleStr target:self.actionBtnTarget action:self.actionBtnAction btnClickBlock:nil]; + }else if (self.btnClickBlock) { + [self setupActionBtn:self.btnTitleStr target:nil action:nil btnClickBlock:self.btnClickBlock]; + }else{ + if (_actionButton) { + [self.actionButton removeFromSuperview]; + self.actionButton = nil; + } + } + }else{ + if (_actionButton) { + [self.actionButton removeFromSuperview]; + self.actionButton = nil; + } + } + + //自定义view + if (self.customView) { + contentWidth = self.customView.ly_width; + contentHeight = self.customView.ly_maxY; + } + + ///设置frame + [self setSubViewFrame]; +} + +- (void)setSubViewFrame{ + + //emptyView初始宽高 + CGFloat originEmptyWidth = self.ly_width; + CGFloat originEmptyHeight = self.ly_height; + + CGFloat emptyViewCenterX = originEmptyWidth * 0.5f; + CGFloat emptyViewCenterY = originEmptyHeight * 0.5f; + + //不是完全覆盖父视图时,重新设置self的frame(大小为content的大小) + if (!self.emptyViewIsCompleteCoverSuperView) { + self.ly_size = CGSizeMake(contentWidth, contentHeight); + } + self.center = CGPointMake(emptyViewCenterX, emptyViewCenterY); + + //设置contentView + self.contentView.ly_size = CGSizeMake(contentWidth, contentHeight); + if (self.emptyViewIsCompleteCoverSuperView) { + self.contentView.center = CGPointMake(emptyViewCenterX, emptyViewCenterY); + } else { + self.contentView.center = CGPointMake(contentWidth*0.5, contentHeight*0.5); + } + + //子控件的centerX设置 + CGFloat centerX = self.contentView.ly_width * 0.5f; + if (self.customView) { + self.customView.ly_centerX = centerX; + + }else{ + _promptImageView.ly_centerX = centerX; + _titleLabel.ly_centerX = centerX; + _detailLabel.ly_centerX = centerX; + _actionButton.ly_centerX = centerX; + } + + if (self.contentViewOffset) { //有无设置偏移 + self.ly_centerY += self.contentViewOffset; + + } else if (self.contentViewY < 1000) { //有无设置Y坐标值 + self.ly_y = self.contentViewY; + + } + + //是否忽略scrollView的contentInset + if (self.ignoreContentInset && [self.superview isKindOfClass:[UIScrollView class]]) { + UIScrollView *scrollView = (UIScrollView *)self.superview; + self.ly_centerY -= scrollView.contentInset.top; + self.ly_centerX -= scrollView.contentInset.left; + self.ly_centerY += scrollView.contentInset.bottom; + self.ly_centerX += scrollView.contentInset.right; + } +} + +#pragma mark - ------------------ Setup View ------------------ +- (void)setupPromptImageView:(UIImage *)img{ + + self.promptImageView.image = img; + + CGFloat imgViewWidth = img.size.width; + CGFloat imgViewHeight = img.size.height; + + if (self.imageSize.width && self.imageSize.height) {//设置了宽高大小 + if (imgViewWidth > imgViewHeight) {//以宽为基准,按比例缩放高度 + imgViewHeight = (imgViewHeight / imgViewWidth) * self.imageSize.width; + imgViewWidth = self.imageSize.width; + + }else{//以高为基准,按比例缩放宽度 + imgViewWidth = (imgViewWidth / imgViewHeight) * self.imageSize.height; + imgViewHeight = self.imageSize.height; + } + } + self.promptImageView.frame = CGRectMake(0, 0, imgViewWidth, imgViewHeight); + + contentWidth = self.promptImageView.ly_size.width; + contentHeight = self.promptImageView.ly_maxY; +} + +- (void)setupTitleLabel:(NSString *)titleStr{ + + UIFont *font = self.titleLabFont.pointSize ? self.titleLabFont : kTitleLabFont; + CGFloat fontSize = font.pointSize; + UIColor *textColor = self.titleLabTextColor ? self.titleLabTextColor : kBlackColor; + CGFloat titleMargin = self.titleLabMargin > 0 ? self.titleLabMargin : (contentHeight == 0 ?: subViweMargin); + CGSize size = [self returnTextWidth:titleStr size:CGSizeMake(contentMaxWidth, fontSize + 5) font:font]; + + CGFloat width = size.width; + CGFloat height = size.height; + + self.titleLabel.frame = CGRectMake(0, contentHeight + titleMargin, width, height); + self.titleLabel.font = font; + self.titleLabel.text = titleStr; + self.titleLabel.textColor = textColor; + + contentWidth = width > contentWidth ? width : contentWidth; + contentHeight = self.titleLabel.ly_maxY; +} + +- (void)setupDetailLabel:(NSString *)detailStr{ + + UIColor *textColor = self.detailLabTextColor ? self.detailLabTextColor : kGrayColor; + UIFont *font = self.detailLabFont.pointSize ? self.detailLabFont : kDetailLabFont; + CGFloat fontSize = font.pointSize; + CGFloat maxLines = self.detailLabMaxLines > 0 ? self.detailLabMaxLines : 1; + CGFloat detailMargin = self.detailLabMargin > 0 ? self.detailLabMargin : (contentHeight == 0 ?: subViweMargin); + self.detailLabel.font = font; + self.detailLabel.textColor = textColor; + self.detailLabel.text = detailStr; + + CGFloat width = 0; + CGFloat height = 0; + + //设置行高 + if(self.detailLabLineSpacing){ + + CGFloat maxHeight = maxLines * (fontSize + 5) + (maxLines-1) * self.detailLabLineSpacing; + + NSDictionary *dic = [self sizeWithAttributedString:self.detailLabel.text font:font lineSpacing:self.detailLabLineSpacing maxSize:CGSizeMake(contentMaxWidth, maxHeight)]; + + NSMutableAttributedString *attStr = dic[@"attributed"]; + NSValue *sizeValue = dic[@"size"]; + CGSize size = sizeValue.CGSizeValue; + width = size.width; + height = size.height; + self.detailLabel.attributedText = attStr; + + } + else{ + + CGFloat maxHeight = maxLines * (fontSize + 5); + CGSize size = [self returnTextWidth:detailStr size:CGSizeMake(contentMaxWidth, maxHeight) font:font];//计算得出label大小 + width = size.width; + height = size.height; + } + + self.detailLabel.frame = CGRectMake(0, contentHeight + detailMargin, width, height); + + contentWidth = width > contentWidth ? width : contentWidth; + contentHeight = self.detailLabel.ly_maxY; + +} + +- (void)setupActionBtn:(NSString *)btnTitle target:(id)target action:(SEL)action btnClickBlock:(LYActionTapBlock)btnClickBlock{ + + UIFont *font = self.actionBtnFont.pointSize ? self.actionBtnFont : kActionBtnFont; + CGFloat fontSize = font.pointSize; + UIColor *titleColor = self.actionBtnTitleColor ?: kBlackColor; + UIColor *backGColor = self.actionBtnBackGroundColor ?: [UIColor whiteColor]; + UIColor *borderColor = self.actionBtnBorderColor ?: [UIColor colorWithRed:0.8f green:0.8f blue:0.8f alpha:1.f]; + CGFloat borderWidth = self.actionBtnBorderWidth ?: 0; + CGFloat cornerRadius = self.actionBtnCornerRadius ?: 0; + CGFloat width = self.actionBtnWidth; + CGFloat horiMargin = self.actionBtnHorizontalMargin; + CGFloat height = self.actionBtnHeight; + CGSize textSize = [self returnTextWidth:btnTitle size:CGSizeMake(contentMaxWidth, fontSize) font:font];//计算得出title文字内容大小 + if (height < textSize.height) { + height = textSize.height + 4.f; + } + + //按钮的宽 + CGFloat btnWidth = textSize.width; + if (width) { + btnWidth = width; + } else if (horiMargin) { + btnWidth = textSize.width + horiMargin * 2.f; + } + + //按钮的高 + CGFloat btnHeight = height; + btnWidth = btnWidth > contentMaxWidth ? contentMaxWidth : btnWidth; + CGFloat btnMargin = self.actionBtnMargin > 0 ? self.actionBtnMargin : (contentHeight == 0 ?: subViweMargin); + + self.actionButton.frame = CGRectMake(0, contentHeight + btnMargin, btnWidth, btnHeight); + [self.actionButton setTitle:btnTitle forState:UIControlStateNormal]; + self.actionButton.titleLabel.font = font; + self.actionButton.backgroundColor = backGColor; + if (self.actionBtnBackGroundGradientColors) [self addGradientWithView:self.actionButton gradientColors:self.actionBtnBackGroundGradientColors]; + [self.actionButton setTitleColor:titleColor forState:UIControlStateNormal]; + self.actionButton.layer.borderColor = borderColor.CGColor; + self.actionButton.layer.borderWidth = borderWidth; + self.actionButton.layer.cornerRadius = cornerRadius; + + //添加事件 + if (target && action) { + [self.actionButton addTarget:target action:action forControlEvents:UIControlEventTouchUpInside]; + [self.actionButton addTarget:self action:@selector(actionBtnClick:) forControlEvents:UIControlEventTouchUpInside]; + }else if (btnClickBlock) { + [self.actionButton addTarget:self action:@selector(actionBtnClick:) forControlEvents:UIControlEventTouchUpInside]; + } + + contentWidth = btnWidth > contentWidth ? btnWidth : contentWidth; + contentHeight = self.actionButton.ly_maxY; +} + +#pragma mark - ------------------ Event Method ------------------ +- (void)actionBtnClick:(UIButton *)sender{ + if (self.btnClickBlock) { + self.btnClickBlock(); + } +} + +#pragma mark - ------------------ setter ------------------ + +- (void)setEmptyViewIsCompleteCoverSuperView:(BOOL)emptyViewIsCompleteCoverSuperView{ + _emptyViewIsCompleteCoverSuperView = emptyViewIsCompleteCoverSuperView; + if (emptyViewIsCompleteCoverSuperView) { + if (!self.backgroundColor || [self.backgroundColor isEqual:[UIColor clearColor]]) { + self.backgroundColor = kBackgroundColor; + } + [self setNeedsLayout]; + }else{ + self.backgroundColor = [UIColor clearColor]; + } +} + +#pragma mark 内容物背景视图 相关 +- (void)setSubViewMargin:(CGFloat)subViewMargin{ + if (_subViewMargin != subViewMargin) { + _subViewMargin = subViewMargin; + + [self reSetupSubviews]; + } +} +- (void)setTitleLabMargin:(CGFloat)titleLabMargin{ + if (_titleLabMargin != titleLabMargin) { + _titleLabMargin = titleLabMargin; + + [self reSetupSubviews]; + } +} +- (void)setDetailLabMargin:(CGFloat)detailLabMargin{ + if (_detailLabMargin != detailLabMargin) { + _detailLabMargin = detailLabMargin; + + [self reSetupSubviews]; + } +} +- (void)setActionBtnMargin:(CGFloat)actionBtnMargin{ + if (_actionBtnMargin != actionBtnMargin) { + _actionBtnMargin = actionBtnMargin; + + [self reSetupSubviews]; + } +} +- (void)reSetupSubviews{ + if (_promptImageView || _titleLabel || _detailLabel || _actionButton || self.customView) {//此判断的意思只是确定self是否已加载完毕 + [self setupSubviews]; + } +} +- (void)setContentViewOffset:(CGFloat)contentViewOffset{ + if (_contentViewOffset != contentViewOffset) { + _contentViewOffset = contentViewOffset; + + if (_promptImageView || _titleLabel || _detailLabel || _actionButton || self.customView) { + self.ly_centerY += self.contentViewOffset; + } + } +} +- (void)setContentViewY:(CGFloat)contentViewY{ + if (_contentViewY != contentViewY) { + _contentViewY = contentViewY; + + if (_promptImageView || _titleLabel || _detailLabel || _actionButton || self.customView) { + self.ly_y = self.contentViewY; + } + } +} + +#pragma mark 提示图Image 相关 +- (void)setImageSize:(CGSize)imageSize{ + if (_imageSize.width != imageSize.width || _imageSize.height != imageSize.height) { + _imageSize = imageSize; + + if (_promptImageView) { + [self setupSubviews]; + } + } +} + +#pragma mark 描述Label 相关 +- (void)setTitleLabFont:(UIFont *)titleLabFont{ + if (_titleLabFont != titleLabFont) { + _titleLabFont = titleLabFont; + + if (_titleLabel) { + [self setupSubviews]; + } + } + +} +- (void)setTitleLabTextColor:(UIColor *)titleLabTextColor{ + if (_titleLabTextColor != titleLabTextColor) { + _titleLabTextColor = titleLabTextColor; + + if (_titleLabel) { + _titleLabel.textColor = titleLabTextColor; + } + } +} + +#pragma mark 详细描述Label 相关 +- (void)setDetailLabFont:(UIFont *)detailLabFont{ + if (_detailLabFont != detailLabFont) { + _detailLabFont = detailLabFont; + + if (_detailLabel) { + [self setupSubviews]; + } + } +} +- (void)setDetailLabMaxLines:(NSInteger)detailLabMaxLines{ + if (_detailLabMaxLines != detailLabMaxLines) { + _detailLabMaxLines = detailLabMaxLines; + + if (_detailLabel) { + [self setupSubviews]; + } + } +} +- (void)setDetailLabTextColor:(UIColor *)detailLabTextColor{ + if (_detailLabTextColor != detailLabTextColor) { + _detailLabTextColor = detailLabTextColor; + + if (_detailLabel) { + _detailLabel.textColor = detailLabTextColor; + } + } +} + +- (void)setDetailLabLineSpacing:(NSInteger)detailLabLineSpacing{ + if (_detailLabLineSpacing != detailLabLineSpacing) { + _detailLabLineSpacing = detailLabLineSpacing; + + if (_detailLabel) { + [self setupSubviews]; + } + } +} + +#pragma mark Button 相关 +//////////大小位置相关-需要重新布局 +- (void)setActionBtnFont:(UIFont *)actionBtnFont{ + if (_actionBtnFont != actionBtnFont) { + _actionBtnFont = actionBtnFont; + + if (_actionButton) { + [self setupSubviews]; + } + } +} +- (void)setActionBtnHeight:(CGFloat)actionBtnHeight{ + if (_actionBtnHeight != actionBtnHeight) { + _actionBtnHeight = actionBtnHeight; + + if (_actionButton) { + [self setupSubviews]; + } + } +} +- (void)setActionBtnWidth:(CGFloat)actionBtnWidth{ + if (_actionBtnWidth != actionBtnWidth) { + _actionBtnWidth = actionBtnWidth; + + if (_actionButton) { + [self setupSubviews]; + } + } +} +- (void)setActionBtnHorizontalMargin:(CGFloat)actionBtnHorizontalMargin{ + if (_actionBtnHorizontalMargin != actionBtnHorizontalMargin) { + _actionBtnHorizontalMargin = actionBtnHorizontalMargin; + + if (_actionButton) { + [self setupSubviews]; + } + } +} +//////////其他相关-直接赋值 +- (void)setActionBtnCornerRadius:(CGFloat)actionBtnCornerRadius{ + if (_actionBtnCornerRadius != actionBtnCornerRadius) { + _actionBtnCornerRadius = actionBtnCornerRadius; + + if (_actionButton) { + _actionButton.layer.cornerRadius = actionBtnCornerRadius; + } + } +} +- (void)setActionBtnBorderWidth:(CGFloat)actionBtnBorderWidth{ + if (actionBtnBorderWidth != _actionBtnBorderWidth) { + _actionBtnBorderWidth = actionBtnBorderWidth; + + if (_actionButton) { + _actionButton.layer.borderWidth = actionBtnBorderWidth; + } + } +} +- (void)setActionBtnBorderColor:(UIColor *)actionBtnBorderColor{ + if (_actionBtnBorderColor != actionBtnBorderColor) { + _actionBtnBorderColor = actionBtnBorderColor; + + if (_actionButton) { + _actionButton.layer.borderColor = actionBtnBorderColor.CGColor; + } + } +} +- (void)setActionBtnTitleColor:(UIColor *)actionBtnTitleColor{ + if (_actionBtnTitleColor != actionBtnTitleColor) { + _actionBtnTitleColor = actionBtnTitleColor; + + if (_actionButton) { + [_actionButton setTitleColor:actionBtnTitleColor forState:UIControlStateNormal]; + } + } +} +- (void)setActionBtnBackGroundColor:(UIColor *)actionBtnBackGroundColor{ + if (actionBtnBackGroundColor != _actionBtnBackGroundColor) { + _actionBtnBackGroundColor = actionBtnBackGroundColor; + + if (_actionButton) { + [_actionButton setBackgroundColor:actionBtnBackGroundColor]; + } + } +} +- (void)setActionBtnBackGroundGradientColors:(NSArray *)actionBtnBackGroundGradientColors +{ + if (actionBtnBackGroundGradientColors.count >= 2) { + _actionBtnBackGroundGradientColors = [actionBtnBackGroundGradientColors subarrayWithRange:NSMakeRange(0, 2)]; + if (_actionButton) { + [self addGradientWithView:_actionButton gradientColors:_actionBtnBackGroundGradientColors]; + } + } +} + +#pragma mark - ------------------ getter ------------------ +- (UIImageView *)promptImageView{ + if (!_promptImageView) { + _promptImageView = [[UIImageView alloc] init]; + _promptImageView.contentMode = UIViewContentModeScaleAspectFit; + [self.contentView addSubview:_promptImageView]; + } + return _promptImageView; +} +- (UILabel *)titleLabel{ + if (!_titleLabel) { + _titleLabel = [[UILabel alloc] init]; + _titleLabel.textAlignment = NSTextAlignmentCenter; + [self.contentView addSubview:_titleLabel]; + } + return _titleLabel; +} +- (UILabel *)detailLabel{ + if (!_detailLabel) { + _detailLabel = [[UILabel alloc] init]; + _detailLabel.textAlignment = NSTextAlignmentCenter; + _detailLabel.numberOfLines = 0; + [self.contentView addSubview:_detailLabel]; + } + return _detailLabel; +} +- (UIButton *)actionButton{ + if (!_actionButton) { + _actionButton = [[UIButton alloc] init]; + _actionButton.layer.masksToBounds = YES; + [self.contentView addSubview:_actionButton]; + } + return _actionButton; +} + +#pragma mark - ------------------ Help Method ------------------ +- (CGSize)returnTextWidth:(NSString *)text size:(CGSize)size font:(UIFont *)font{ + CGSize textSize = [text boundingRectWithSize:size options:NSStringDrawingUsesLineFragmentOrigin attributes:@{NSFontAttributeName : font} context:nil].size; + return textSize; +} + +- (NSDictionary *)sizeWithAttributedString:(NSString *)string font:(UIFont *)font lineSpacing:(CGFloat)lineSpacing maxSize:(CGSize)maxSize{ + + NSMutableParagraphStyle *paragraphStyle = [[NSMutableParagraphStyle alloc] init]; + paragraphStyle.lineBreakMode = NSLineBreakByWordWrapping; + paragraphStyle.lineSpacing = lineSpacing; // 设置行间距 + paragraphStyle.alignment = NSTextAlignmentCenter; + + NSMutableAttributedString *attributedStr = [[NSMutableAttributedString alloc] initWithString:string attributes:@{NSParagraphStyleAttributeName: paragraphStyle, NSFontAttributeName:font}]; + + CGSize size = [attributedStr boundingRectWithSize:maxSize options:NSStringDrawingUsesLineFragmentOrigin | NSStringDrawingUsesFontLeading context:nil].size; + + NSDictionary *dic = @{ + @"attributed":attributedStr, + @"size": [NSValue valueWithCGSize:size] + }; + return dic; +} + +- (void)addGradientWithView:(UIView *)view gradientColors:(NSArray *)gradientColors +{ + [view setBackgroundColor:[UIColor clearColor]]; + + NSArray *colors = @[(__bridge id)[gradientColors.firstObject CGColor], + (__bridge id)[gradientColors.lastObject CGColor]]; + CAGradientLayer *layer = [CAGradientLayer layer]; + layer.colors = colors; + layer.locations = @[@0.3, @0.5, @1.0]; + layer.startPoint = CGPointMake(0, 0); + layer.endPoint = CGPointMake(1.0, 0); + layer.frame = view.bounds; + layer.masksToBounds = YES; + layer.cornerRadius = view.frame.size.height * 0.5; + + CALayer *firstLayer = self.layer.sublayers.firstObject; + if ([firstLayer isKindOfClass:[CAGradientLayer class]]) { + [view.layer replaceSublayer:firstLayer with:layer]; + } else { + [view.layer insertSublayer:layer atIndex:0]; + } +} + +@end diff --git a/Pods/LYEmptyView/LYEmptyView/LYEmptyViewHeader.h b/Pods/LYEmptyView/LYEmptyView/LYEmptyViewHeader.h new file mode 100644 index 0000000..e99b96f --- /dev/null +++ b/Pods/LYEmptyView/LYEmptyView/LYEmptyViewHeader.h @@ -0,0 +1,15 @@ +// +// LYEmptyViewHeader.h +// LYEmptyViewDemo +// +// Created by 李阳 on 2017/5/11. +// Copyright © 2017年 liyang. All rights reserved. +// + +#ifndef LYEmptyViewHeader_h +#define LYEmptyViewHeader_h + +#import "LYEmptyView.h" +#import "UIView+Empty.h" + +#endif /* LYEmptyViewHeader_h */ diff --git a/Pods/LYEmptyView/LYEmptyView/UIView+Empty.h b/Pods/LYEmptyView/LYEmptyView/UIView+Empty.h new file mode 100644 index 0000000..2ac8e07 --- /dev/null +++ b/Pods/LYEmptyView/LYEmptyView/UIView+Empty.h @@ -0,0 +1,54 @@ +// +// UIView+Empty.h +// LYEmptyViewDemo +// +// Created by liyang on 2018/5/10. +// Copyright © 2018年 liyang. All rights reserved. +// + +#import + +@class LYEmptyView; + +@interface UIView (Empty) + +/** + 空页面占位图控件 + */ +@property (nonatomic, strong) LYEmptyView *ly_emptyView; + +/////////////////////// +/////////////////////// +//使用下面的四个方法请将EmptyView的autoShowEmptyView值置为NO,关闭自动显隐,以保证不受自动显隐的影响 +/////////////////////// +/////////////////////// + +/** + 一般用于开始请求网络时调用,ly_startLoading调用时会暂时隐藏emptyView + 当调用ly_endLoading方法时,ly_endLoading方法内部会根据当前的tableView/collectionView的 + DataSource来自动判断是否显示emptyView + */ +- (void)ly_startLoading; + +/** + 在想要刷新emptyView状态时调用 + 注意:ly_endLoading 的调用时机,有刷新UI的地方一定要等到刷新UI的方法之后调用, + 因为只有刷新了UI,view的DataSource才会更新,故调用此方法才能正确判断是否有内容。 + */ +- (void)ly_endLoading; + + +//调用下面两个手动显隐的方法,不受DataSource的影响,单独设置显示与隐藏(前提是关闭autoShowEmptyView) + +/** + 手动调用显示emptyView + */ +- (void)ly_showEmptyView; + +/** + 手动调用隐藏emptyView + */ +- (void)ly_hideEmptyView; + +@end + diff --git a/Pods/LYEmptyView/LYEmptyView/UIView+Empty.m b/Pods/LYEmptyView/LYEmptyView/UIView+Empty.m new file mode 100644 index 0000000..5cc2332 --- /dev/null +++ b/Pods/LYEmptyView/LYEmptyView/UIView+Empty.m @@ -0,0 +1,224 @@ +// +// UIView+Empty.m +// LYEmptyViewDemo +// +// Created by liyang on 2018/5/10. +// Copyright © 2018年 liyang. All rights reserved. +// + +#import "UIView+Empty.h" +#import +#import "LYEmptyView.h" + +#pragma mark - ------------------ UIView ------------------ + +@implementation UIView (Empty) + ++ (void)exchangeInstanceMethod1:(SEL)method1 method2:(SEL)method2 +{ + method_exchangeImplementations(class_getInstanceMethod(self, method1), class_getInstanceMethod(self, method2)); +} + +#pragma mark - Setter/Getter + +static char kEmptyViewKey; +- (void)setLy_emptyView:(LYEmptyView *)ly_emptyView{ + if (ly_emptyView != self.ly_emptyView) { + + objc_setAssociatedObject(self, &kEmptyViewKey, ly_emptyView, OBJC_ASSOCIATION_RETAIN_NONATOMIC); + + for (UIView *view in self.subviews) { + if ([view isKindOfClass:[LYEmptyView class]]) { + [view removeFromSuperview]; + } + } + [self addSubview:self.ly_emptyView]; + + if ([self isKindOfClass:[UITableView class]] || [self isKindOfClass:[UICollectionView class]]) { + [self getDataAndSet]; // 添加时根据DataSource去决定显隐 + } else { + self.ly_emptyView.hidden = YES;// 添加时默认隐藏 + } + } +} +- (LYEmptyView *)ly_emptyView{ + return objc_getAssociatedObject(self, &kEmptyViewKey); +} + +#pragma mark - Private Method (UITableView、UICollectionView有效) +- (NSInteger)totalDataCount +{ + NSInteger totalCount = 0; + if ([self isKindOfClass:[UITableView class]]) { + UITableView *tableView = (UITableView *)self; + + for (NSInteger section = 0; section < tableView.numberOfSections; section++) { + totalCount += [tableView numberOfRowsInSection:section]; + } + } else if ([self isKindOfClass:[UICollectionView class]]) { + UICollectionView *collectionView = (UICollectionView *)self; + + for (NSInteger section = 0; section < collectionView.numberOfSections; section++) { + totalCount += [collectionView numberOfItemsInSection:section]; + } + } + return totalCount; +} +- (void)getDataAndSet{ + //没有设置emptyView的,直接返回 + if (!self.ly_emptyView) { + return; + } + + if ([self totalDataCount] == 0) { + [self show]; + }else{ + [self hide]; + } +} +- (void)show{ + //当不自动显隐时,内部自动调用show方法时也不要去显示,要显示的话只有手动去调用 ly_showEmptyView + if (!self.ly_emptyView.autoShowEmptyView) { + return; + } + + [self ly_showEmptyView]; +} +- (void)hide{ + //当不自动显隐时,内部自动调用hide方法时也不要去隐藏,要隐藏的话只有手动去调用 ly_hideEmptyView + if (!self.ly_emptyView.autoShowEmptyView) { + return; + } + + [self ly_hideEmptyView]; +} + +#pragma mark - Public Method +- (void)ly_showEmptyView{ + + NSAssert(![self isKindOfClass:[LYEmptyView class]], @"LYEmptyView及其子类不能调用ly_showEmptyView方法"); + + self.ly_emptyView.hidden = NO; + + //让 emptyBGView 始终保持在最上层 + [self bringSubviewToFront:self.ly_emptyView]; +} +- (void)ly_hideEmptyView{ + NSAssert(![self isKindOfClass:[LYEmptyView class]], @"LYEmptyView及其子类不能调用ly_hideEmptyView方法"); + self.ly_emptyView.hidden = YES; +} +- (void)ly_startLoading{ + NSAssert(![self isKindOfClass:[LYEmptyView class]], @"LYEmptyView及其子类不能调用ly_startLoading方法"); + self.ly_emptyView.hidden = YES; +} +- (void)ly_endLoading{ + NSAssert(![self isKindOfClass:[LYEmptyView class]], @"LYEmptyView及其子类不能调用ly_endLoading方法"); + self.ly_emptyView.hidden = [self totalDataCount]; +} + +@end + +#pragma mark - ------------------ UITableView ------------------ + +@implementation UITableView (Empty) ++ (void)load{ + + [self exchangeInstanceMethod1:@selector(reloadData) method2:@selector(ly_reloadData)]; + + ///section + [self exchangeInstanceMethod1:@selector(insertSections:withRowAnimation:) method2:@selector(ly_insertSections:withRowAnimation:)]; + [self exchangeInstanceMethod1:@selector(deleteSections:withRowAnimation:) method2:@selector(ly_deleteSections:withRowAnimation:)]; + [self exchangeInstanceMethod1:@selector(reloadSections:withRowAnimation:) method2:@selector(ly_reloadSections:withRowAnimation:)]; + + ///row + [self exchangeInstanceMethod1:@selector(insertRowsAtIndexPaths:withRowAnimation:) method2:@selector(ly_insertRowsAtIndexPaths:withRowAnimation:)]; + [self exchangeInstanceMethod1:@selector(deleteRowsAtIndexPaths:withRowAnimation:) method2:@selector(ly_deleteRowsAtIndexPaths:withRowAnimation:)]; + [self exchangeInstanceMethod1:@selector(reloadRowsAtIndexPaths:withRowAnimation:) method2:@selector(ly_reloadRowsAtIndexPaths:withRowAnimation:)]; +} +- (void)ly_reloadData{ + [self ly_reloadData]; + [self getDataAndSet]; +} +///section +- (void)ly_insertSections:(NSIndexSet *)sections withRowAnimation:(UITableViewRowAnimation)animation{ + [self ly_insertSections:sections withRowAnimation:animation]; + [self getDataAndSet]; +} +- (void)ly_deleteSections:(NSIndexSet *)sections withRowAnimation:(UITableViewRowAnimation)animation{ + [self ly_deleteSections:sections withRowAnimation:animation]; + [self getDataAndSet]; +} +- (void)ly_reloadSections:(NSIndexSet *)sections withRowAnimation:(UITableViewRowAnimation)animation{ + [self ly_reloadSections:sections withRowAnimation:animation]; + [self getDataAndSet]; +} + +///row +- (void)ly_insertRowsAtIndexPaths:(NSArray *)indexPaths withRowAnimation:(UITableViewRowAnimation)animation{ + [self ly_insertRowsAtIndexPaths:indexPaths withRowAnimation:animation]; + [self getDataAndSet]; +} +- (void)ly_deleteRowsAtIndexPaths:(NSArray *)indexPaths withRowAnimation:(UITableViewRowAnimation)animation{ + [self ly_deleteRowsAtIndexPaths:indexPaths withRowAnimation:animation]; + [self getDataAndSet]; +} +- (void)ly_reloadRowsAtIndexPaths:(NSArray *)indexPaths withRowAnimation:(UITableViewRowAnimation)animation{ + [self ly_reloadRowsAtIndexPaths:indexPaths withRowAnimation:animation]; + [self getDataAndSet]; +} + + +@end + +#pragma mark - ------------------ UICollectionView ------------------ + +@implementation UICollectionView (Empty) + ++ (void)load{ + + [self exchangeInstanceMethod1:@selector(reloadData) method2:@selector(ly_reloadData)]; + + ///section + [self exchangeInstanceMethod1:@selector(insertSections:) method2:@selector(ly_insertSections:)]; + [self exchangeInstanceMethod1:@selector(deleteSections:) method2:@selector(ly_deleteSections:)]; + [self exchangeInstanceMethod1:@selector(reloadSections:) method2:@selector(ly_reloadSections:)]; + + ///item + [self exchangeInstanceMethod1:@selector(insertItemsAtIndexPaths:) method2:@selector(ly_insertItemsAtIndexPaths:)]; + [self exchangeInstanceMethod1:@selector(deleteItemsAtIndexPaths:) method2:@selector(ly_deleteItemsAtIndexPaths:)]; + [self exchangeInstanceMethod1:@selector(reloadItemsAtIndexPaths:) method2:@selector(ly_reloadItemsAtIndexPaths:)]; + +} +- (void)ly_reloadData{ + [self ly_reloadData]; + [self getDataAndSet]; +} +///section +- (void)ly_insertSections:(NSIndexSet *)sections{ + [self ly_insertSections:sections]; + [self getDataAndSet]; +} +- (void)ly_deleteSections:(NSIndexSet *)sections{ + [self ly_deleteSections:sections]; + [self getDataAndSet]; +} +- (void)ly_reloadSections:(NSIndexSet *)sections{ + [self ly_reloadSections:sections]; + [self getDataAndSet]; +} + +///item +- (void)ly_insertItemsAtIndexPaths:(NSArray *)indexPaths{ + [self ly_insertItemsAtIndexPaths:indexPaths]; + [self getDataAndSet]; +} +- (void)ly_deleteItemsAtIndexPaths:(NSArray *)indexPaths{ + [self ly_deleteItemsAtIndexPaths:indexPaths]; + [self getDataAndSet]; +} +- (void)ly_reloadItemsAtIndexPaths:(NSArray *)indexPaths{ + [self ly_reloadItemsAtIndexPaths:indexPaths]; + [self getDataAndSet]; +} +@end + diff --git a/Pods/LYEmptyView/LYEmptyView/UIView+LYExtension.h b/Pods/LYEmptyView/LYEmptyView/UIView+LYExtension.h new file mode 100644 index 0000000..44fabf0 --- /dev/null +++ b/Pods/LYEmptyView/LYEmptyView/UIView+LYExtension.h @@ -0,0 +1,26 @@ +// +// UIView+LYExtension.h +// LYEmptyViewDemo +// +// Created by 李阳 on 2017/5/12. +// Copyright © 2017年 liyang. All rights reserved. +// + +#import + +@interface UIView (LYExtension) + +@property (nonatomic, assign) CGFloat ly_x; +@property (nonatomic, assign) CGFloat ly_y; +@property (nonatomic, assign) CGFloat ly_width; +@property (nonatomic, assign) CGFloat ly_height; +@property (nonatomic, assign) CGFloat ly_centerX; +@property (nonatomic, assign) CGFloat ly_centerY; +@property (nonatomic, assign) CGSize ly_size; +@property (nonatomic, assign) CGPoint ly_origin; +@property (nonatomic, assign, readonly) CGFloat ly_maxX; +@property (nonatomic, assign, readonly) CGFloat ly_maxY; + + +@end + diff --git a/Pods/LYEmptyView/LYEmptyView/UIView+LYExtension.m b/Pods/LYEmptyView/LYEmptyView/UIView+LYExtension.m new file mode 100644 index 0000000..a1ab06e --- /dev/null +++ b/Pods/LYEmptyView/LYEmptyView/UIView+LYExtension.m @@ -0,0 +1,108 @@ +// +// UIView+LYExtension.m +// LYEmptyViewDemo +// +// Created by 李阳 on 2017/5/12. +// Copyright © 2017年 liyang. All rights reserved. +// + +#import "UIView+LYExtension.h" + +@implementation UIView (LYExtension) + +- (void)setLy_x:(CGFloat)ly_x{ + + CGRect frame = self.frame; + frame.origin.x = ly_x; + self.frame = frame; +} +- (CGFloat)ly_x +{ + return self.frame.origin.x; +} + +- (void)setLy_y:(CGFloat)ly_y{ + + CGRect frame = self.frame; + frame.origin.y = ly_y; + self.frame = frame; +} +- (CGFloat)ly_y +{ + return self.frame.origin.y; +} + +- (void)setLy_centerX:(CGFloat)ly_centerX{ + CGPoint center = self.center; + center.x = ly_centerX; + self.center = center; +} +- (CGFloat)ly_centerX +{ + return self.center.x; +} + +- (void)setLy_centerY:(CGFloat)ly_centerY +{ + CGPoint center = self.center; + center.y = ly_centerY; + self.center = center; +} +- (CGFloat)ly_centerY +{ + return self.center.y; +} + +- (void)setLy_width:(CGFloat)ly_width +{ + CGRect frame = self.frame; + frame.size.width = ly_width; + self.frame = frame; +} +- (CGFloat)ly_width +{ + return self.frame.size.width; +} + +- (void)setLy_height:(CGFloat)ly_height +{ + CGRect frame = self.frame; + frame.size.height = ly_height; + self.frame = frame; +} +- (CGFloat)ly_height +{ + return self.frame.size.height; +} + +- (void)setLy_size:(CGSize)ly_size +{ + CGRect frame = self.frame; + frame.size = ly_size; + self.frame = frame; +} +- (CGSize)ly_size +{ + return self.frame.size; +} + +- (void)setLy_origin:(CGPoint)ly_origin +{ + CGRect frame = self.frame; + frame.origin = ly_origin; + self.frame = frame; +} + +- (CGPoint)ly_origin +{ + return self.frame.origin; +} +- (CGFloat)ly_maxX{ + return self.frame.origin.x + self.frame.size.width; +} +- (CGFloat)ly_maxY{ + return self.frame.origin.y + self.frame.size.height; +} + +@end + diff --git a/Pods/LYEmptyView/README.md b/Pods/LYEmptyView/README.md new file mode 100644 index 0000000..404cd9d --- /dev/null +++ b/Pods/LYEmptyView/README.md @@ -0,0 +1,297 @@ +# LYEmptyView +不需要遵循协议,不需要设置代理,不需要实现代理方法,只需这一句代码,就可为一个UITableViwe/UICollectionView集成空白页面占位图。
`self.tableView.ly_emptyView = [MyDIYEmpty diyNoDataEmpty];` + +#### 注意点: +#### 1.除UITableViwe/UICollectionView外,这些View(包括UIScrollView)没有DataSource,代码层面无法判断有无数据,需手动管理显示隐藏,调用示例请移步示例8 + +| 特点 | 描述 | +| ---------- | -----------| +| 与项目完全解耦 | 在需要集成的界面中加入一行代码即可集成,与原代码没有一点耦合度 | +| 0学习成本 | 无需关心视图的显示隐藏时机,只需加入一行代码即可,框架监听了系统刷新UI的方法,其内部计算后自动进行显示隐藏 | +| 调用简单 | 利用分类+runtime,使调用非常简便 | +| 高度自定义   | 利用继承特性,可对框架进行二次封装,使自定义更简便 | +| 支持全部的刷新方法 | reload...、insert...、delete...等方法。你的项目中调用这些刷新方法时,该框架都会自动根据DataSource自动进行计算判断是否显示emptyView | + +# 目录 +* [一、效果展示](#效果展示)
+* [二、集成方式](#集成方式)
+* [三、使用参考示例](#使用参考示例)
+ * [1.一行代码集成空内容视图](#一行代码集成空内容视图)
+ * [2.自由选择空内容元素](#自由选择空内容元素)
+ * [3.自定义空内容元素](#自定义空内容元素)
+ * [4.自定义元素的UI样式](#自定义元素的UI样式)
+ * [5.二次封装](#二次封装)
+ * [6.延迟显示emptyView](#延迟显示emptyView)
+ * [7.特殊需求,手动控制emptyView的显示隐藏](#特殊需求,手动控制emptyView的显示隐藏)
+ * [8.普通view调用示例](#普通view调用示例)
+ * [9.占位图完全覆盖父视图](#占位图完全覆盖父视图)
+ +## 一、效果展示 + +![](https://github.com/dev-liyang/LYEmptyView/blob/master/images/ImitateOtherApp.png) + +## 二、集成方式 + +1.Cocoapods方式集成: `pod 'LYEmptyView'`
+使用时导入头文件 `#import ` +

+2.手动下载集成: 将LYEmptyView文件夹,导入你的工程
+使用时导入头文件:`#import "LYEmptyViewHeader.h"` + + +## 三、使用参考示例 + +### 1.一行代码集成空内容视图 + +```Objective-C +//框架方法 +self.tableView.ly_emptyView = [LYEmptyView emptyViewWithImageStr:@"noData" + titleStr:@"暂无数据,点击重新加载" + detailStr:@""]; +``` + +PS:可对库进行二次封装,调用更简洁(二次封装方法在下面的示例5中会讲到) +```Objective-C +//二次封装方法,调用简洁 +self.tableView.ly_emptyView = [MyDIYEmpty diyNoDataEmpty]; +``` + +完全低耦合,在你的项目中加入这一行代码就可集成
+不管项目中是reloadData方法刷UI还是insert、delete等方式刷UI,不需做其他任何操作,只需这一行代码就可实现以下效果 + +![](https://github.com/dev-liyang/LYEmptyView/blob/master/images/example1.gif) + +### 2.自由选择空内容元素 +```Objective-C +交互事件可选择SEL或block方式 +self.tableView.ly_emptyView = [LYEmptyView emptyActionViewWithImageStr:@"noData" + titleStr:@"无数据" + detailStr:@"请稍后再试!" + btnTitleStr:@"重新加载" + target:target + action:action]; +self.tableView.ly_emptyView = [LYEmptyView emptyActionViewWithImageStr:@"noData" + titleStr:@"" + detailStr:@"" + btnTitleStr:@"" + btnClickBlock:^{}]; +// imageStr   : 占位图片 +// titleStr   : 标题 +// detailStr   : 详细描述 +// btnTitleStr : 按钮标题 +``` +框架提供四个元素,传入相应元素的字符串即可显示对应元素(按钮的显示前提是传入target,action或btnClickBlock) +可根据项目需求,自由进行组合,如下只展示了部分组合效果 + +![](https://github.com/dev-liyang/LYEmptyView/blob/master/images/example2.png) + +### 3.自定义空内容元素 +特殊情况下,如果空内容状态布局不满足需求时,可进行自定义
+通过方法` + (instancetype)emptyViewWithCustomView:(UIView *)customView;`
+传入一个View 即可创建一个自定义的emptyView +```Objective-C +self.tableView.ly_emptyView = [LYEmptyView emptyViewWithCustomView:customView]; +``` + +![](https://github.com/dev-liyang/LYEmptyView/blob/master/images/example3.png) + + +### 4.自定义元素的UI样式 +这里自定义UI样式需要很多代码,别担心,在示例5中会讲解二次封装的方式,封装后调用时就只需要一行代码了 ^_^ +```Objective-C + //初始化一个emptyView + LYEmptyView *emptyView = [LYEmptyView emptyActionViewWithImageStr:@"noData" + titleStr:@"无数据" + detailStr:@"请稍后再试!" + btnTitleStr:@"重新加载" + btnClickBlock:^{}]; + //元素竖直方向的间距 + emptyView.subViewMargin = 20.f; + //标题颜色 + emptyView.titleLabTextColor = MainColor(90, 180, 160); + //描述字体 + emptyView.detailLabFont = [UIFont systemFontOfSize:17]; + //按钮背景色 + emptyView.actionBtnBackGroundColor = MainColor(90, 180, 160); + + //设置空内容占位图 + self.tableView.ly_emptyView = emptyView; +``` +>这里只列举了一些常用的属性,更多属性请到LYEmptyView.h查看 + +![](https://github.com/dev-liyang/LYEmptyView/blob/master/images/example4.png) +### 5.二次封装 +第4小节的示例代码,修改emptyView的样式需要一个个属性单独去改,如果项目中每个界面都这么写就显得很麻烦,而且不易维护
+解决办法是对库进行二次封装,二次封装后,对UI样式单独管理,方便维护
+ +##### 1)新建一个类继承自LYEmptyView,例如demo中的MyDIYEmpty +##### 2)重写`- (void)prepare` 方法,并修改想要改变的元素的UI样式 +```Objective-C +- (void)prepare{ + [super prepare]; + + self.titleLabFont = [UIFont systemFontOfSize:25]; + self.titleLabTextColor = MainColor(90, 180, 160); + + self.detailLabFont = [UIFont systemFontOfSize:17]; + self.detailLabTextColor = MainColor(180, 120, 90); + self.detailLabMaxLines = 5; + + self.actionBtnBackGroundColor = MainColor(90, 180, 160); + self.actionBtnTitleColor = [UIColor whiteColor]; +} +``` +操作上面的两步就可实现对样式的单独管理
+调用方法不变,只是调用的类变成了MYDiyEmpty +```Objective-C +self.tableView.ly_emptyView = [MyDIYEmpty emptyActionViewWithImageStr:@"noData" + titleStr:@"无数据" + detailStr:@"请稍后再试!" + btnTitleStr:@"重新加载" +                                                        btnClickBlock:^{}]; +``` +##### 3)进一步封装显示的元素内容,比如无数据状态图、无网络状态图
+在MyDIYEmpty.h定义方法`+ (instancetype)diyNoDataEmpty;`
+在MyDIYEmpty.m实现方法 +```Objective-C ++ (instancetype)diyNoDataEmpty{ + return [MyDIYEmpty emptyViewWithImageStr:@"nodata" + titleStr:@"暂无数据" + detailStr:@"请检查您的网络连接是否正确!"]; +} +``` +>经过3步封装,自定义了UI样式,使管理更方便,使调用更简洁
+self.tableView.ly_emptyView = [MyDIYEmpty diyNoDataEmpty]; + +### 6.延迟显示emptyView +如示例1图,框架自动根据DataSource计算是否显示emptyView,在空页面发起网络请求时,DataSource肯定为空,会自动显示emptyView,有的产品需求可能不希望这样,希望发起请求时暂时隐藏emptyView。 +本框架提供了两个方法可实现此需求,两个方法都是scrollView的分类,调用非常方便 +```Objective-C + /** + 一般用于开始请求网络时调用,ly_startLoading调用时会暂时隐藏emptyView + 当调用ly_endLoading方法时,ly_endLoading方法内部会根据当前的tableView/collectionView的 + DataSource来自动判断是否显示emptyView + */ +- (void)ly_startLoading; + + /** + 在想要刷新emptyView状态时调用 + 注意:ly_endLoading 的调用时机,有刷新UI的地方一定要等到刷新UI的方法之后调用, + 因为只有刷新了UI,view的DataSource才会更新,故调用此方法才能正确判断是否有内容。 + */ +- (void)ly_endLoading; +``` + +*注意点:使用这两个方法,请先将emptyView的autoShowEmptyView属性置为NO,关闭自动显隐 + +以下是调用示例(具体细节可参看demo中的demo2) +```Objective-C +//1.先设置样式 +self.tableView.ly_emptyView = [MyDIYEmpty diyNoDataEmpty]; +//2.关闭自动显隐(此步可封装进自定义类中,相关调用就可省去这步) +self.tableView.ly_emptyView.autoShowEmptyView = NO; +//3.网络请求时调用 +[self.tableView ly_startLoading]; +//4.刷新UI时调用(保证在刷新UI后调用) +[self.tableView ly_endLoading]; +``` + +![](https://github.com/dev-liyang/LYEmptyView/blob/master/images/example6.gif) + +### 7.特殊需求,手动控制emptyView的显示隐藏 +在某些特殊界面下,有的tableView/collectionView有固定的一些死数据,其它的数据根据网络加载,这时根据以上的示例方法可能达不到这需求。
+本框架提供另外的两个方法来解决这个问题。 + +```Objective-C +/** + 手动调用显示emptyView + */ +- (void)ly_showEmptyView; + +/** + 手动调用隐藏emptyView + */ +- (void)ly_hideEmptyView; +``` + +*注意点:使用这两个方法,请先将emptyView的autoShowEmptyView属性置为NO,关闭自动显隐 + +以下是调用示例(具体细节可参看demo中的demo4) +```Objective-C +//1.先设置样式 +self.tableView.ly_emptyView = [MyDIYEmpty diyNoDataEmpty]; +//2.关闭自动显隐(此步可封装进自定义类中,相关调用就可省去这步) +self.tableView.ly_emptyView.autoShowEmptyView = NO; +//3.显示emptyView +[self.tableView ly_showEmptyView]; +//4.隐藏emptyView +[self.tableView ly_hideEmptyView]; +``` + +![](https://github.com/dev-liyang/LYEmptyView/blob/master/images/example7.gif) + +### 8.普通view调用示例 +因普通view(包括scrollView)没有DataSource,代码层面无法判断view上有无数据,所以view想要实现占位图, +还需通过两个方法来手动控制emptyView的显示和隐藏。 +以下是调用示例 +```Objective-C +//1.先设置样式 +self.view.ly_emptyView = [MyDIYEmpty diyNoDataEmpty]; +//2.显示emptyView +[self.view ly_showEmptyView]; +//3.隐藏emptyView +[self.view ly_hideEmptyView]; +``` +### 9.占位图完全覆盖父视图 +每个项目需求不同,有的占位图内容多大,占位图就多大,这种情况是默认的,不用设置属性。而有的占位图想要和父视图一样大,以达到覆盖住父视图的目的,这种情况下将LYEmptyView的emptyViewIsCompleteCoverSuperView属性值设置为YES即可。 +```Objective-C +DemoEmptyView *emptyView = [DemoEmptyView diyEmptyView]; +emptyView.emptyViewIsCompleteCoverSuperView = YES;//完全覆盖父视图,背景色默认为浅白色,可自行设置 +//emptyView.backgroundColor = [UIColor redColor];//自己设置背景色为红色,此设置也可封装到公共的地方(DemoEmptyView),就不用每次都单独设置了 +self.tableView.ly_emptyView = emptyView; +``` + +## 更新记录 + +### 2019-08-16 (pod V1.3.0) +* 1.detailLab添加行间距属性 +* 2.每个子控件可单独设置间距 +* 3.actionBtn添加渐变背景颜色属性 +* 4.更改添加emptyView时其显隐的逻辑 + +### 2019-07-04 (pod V1.2.5) +* 1.新增属性:按钮宽度actionBtnWidth +* 2.修改属性默认值:按钮的圆角actionBtnCornerRadius默认改为0 + +### 2019-06-18 (pod V1.2.4) +* 1.将点击重试事件加到emptyView上(当设置empty完全覆盖父视图时,就可实现点击屏幕重试的效果) +* 2.swift项目中imageNamed:方法string为nil时崩溃解决 + +### 2018-12-04 (pod V1.2.3) +* 1.fix bug:当子控件的文字被设置为空并再次设置为非空时, 子控件无法正常显示 +* 2.新增属性:ignoreContentInset,是否忽略scrollView的contentInset + +### 2018-09-11 (pod V1.2.2) +* 新增构造方法,具体请查看LYEmptyBaseView.h + +### 2018-08-22 (pod V1.2.1) +* 大神的建议,不要手动调用layoutSubviews。优化baseView里setter方法调用的重绘机制,使用setNeedsLayout更加优美 + +### 2018-07-31 (pod V1.2.0) +* 新增属性:emptyViewIsCompleteCoverSuperView, 占位图是否完全覆盖父视图 + +### 2018-05-11 (pod V1.1.0) +* 新增普通View可设置占位图,实现所有的View都能集成占位图 + +### 2018-03-26 (pod V1.0.3) +* 添加reloadSections、reloadRows、reloadItems 等方法的监听 +* emptyBaseView setter 方法bug fix + +### 2018-02-09 (pod V1.0.2) +* 解决只是在导入本框架的情况下,导致UIScrollView上的内容不显示的bug + + +## 技术交流 +本人QQ:944801216
+技术交流群:818290484
+大家有任何的问题和建议,可以联系我,我一定尽力为大家解决问题,也可以进群和大家一起交流。 diff --git a/Pods/Manifest.lock b/Pods/Manifest.lock index 9ed0f51..b42892d 100644 --- a/Pods/Manifest.lock +++ b/Pods/Manifest.lock @@ -29,6 +29,7 @@ PODS: - LSTPopView/Code (0.3.10): - LSTTimer - LSTTimer (0.2.10) + - LYEmptyView (1.3.1) - Masonry (1.1.0) - MBProgressHUD (1.2.0) - MJExtension (3.4.2) @@ -43,10 +44,11 @@ DEPENDENCIES: - DZNEmptyDataSet (= 1.8.1) - FLAnimatedImage (~> 1.0.17) - HWPanModal (~> 0.9.9) - - JXCategoryView + - JXCategoryView (~> 1.6.8) - JXPagingView/Pager (~> 2.1.3) - LookinServer - LSTPopView (~> 0.3.10) + - LYEmptyView - Masonry (= 1.1.0) - MBProgressHUD (= 1.2.0) - MJExtension (= 3.4.2) @@ -65,6 +67,7 @@ SPEC REPOS: - LookinServer - LSTPopView - LSTTimer + - LYEmptyView - Masonry - MBProgressHUD - MJExtension @@ -82,12 +85,13 @@ SPEC CHECKSUMS: LookinServer: 1b2b61c6402ae29fa22182d48f5cd067b4e99e80 LSTPopView: 9379f00f6ce7d1fc620b50ab00ed3ef97b2d4d52 LSTTimer: caf8f02ff366ca175cf4c1778d26c166183c1b6f + LYEmptyView: b6d418cfa38b78df0cf243f9a9c25ccbdc399922 Masonry: 678fab65091a9290e40e2832a55e7ab731aad201 MBProgressHUD: 3ee5efcc380f6a79a7cc9b363dd669c5e1ae7406 MJExtension: e97d164cb411aa9795cf576093a1fa208b4a8dd8 MJRefresh: ff9e531227924c84ce459338414550a05d2aea78 SDWebImage: f29024626962457f3470184232766516dee8dfea -PODFILE CHECKSUM: ce689000a7b9b24f5d74cc50a93350665c3af035 +PODFILE CHECKSUM: e5e2037c9180ed40ba4a0e264e837eaf839ca6b2 COCOAPODS: 1.16.2 diff --git a/Pods/Pods.xcodeproj/project.pbxproj b/Pods/Pods.xcodeproj/project.pbxproj index 323828f..8a4f23b 100644 --- a/Pods/Pods.xcodeproj/project.pbxproj +++ b/Pods/Pods.xcodeproj/project.pbxproj @@ -19,1568 +19,1618 @@ /* End PBXAggregateTarget section */ /* Begin PBXBuildFile section */ - 0005259AEE76604A26E43EA994475B68 /* HWShoppingCartPresentingAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 62C28B0ACA1E8D749FA6E65D70CFCB2D /* HWShoppingCartPresentingAnimation.m */; }; - 00DAE48C9A4FBCD1FCAA922CA57B45F9 /* SDWebImageDownloaderRequestModifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 02986FE530B6F5FD0ABF721900839DA5 /* SDWebImageDownloaderRequestModifier.m */; }; - 01D2F1D0ABE13AAB2CDC0C25E378E964 /* FLAnimatedImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = BD89A8E0323AB57CE283C150C3D4C556 /* FLAnimatedImageView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 020FEDA58170EE1ABDF9E268D373CF4F /* JXCategoryNumberView.m in Sources */ = {isa = PBXBuildFile; fileRef = 44CB5B4F2C2351C8F32C675C94C2EAC0 /* JXCategoryNumberView.m */; }; - 021ACCD4343D154E4782A5ECE222A8DF /* LookinIvarTrace.h in Headers */ = {isa = PBXBuildFile; fileRef = 765DBAD68AB5F355FB80870758AFB22C /* LookinIvarTrace.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 03623FBDBE9F6B422E9A5C6EAD321A58 /* HWPanModalPresenterProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = E8DC9FFB899510CE978017ADFAFE6D87 /* HWPanModalPresenterProtocol.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 042D40751BD2F51FBE9FECD4707CBBE9 /* SDDeviceHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = F246E4D58E65C83AB3493871F692FC9C /* SDDeviceHelper.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 0453019EC6578A67B82CF569EC765546 /* SDFileAttributeHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 3201B19667C12026E1C92EA1DD973BB7 /* SDFileAttributeHelper.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 05E2B7C1DB7528A0BBEA1521BE0DBAF1 /* MASViewAttribute.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E18E15D3A7901E5A84136DADC023216 /* MASViewAttribute.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 05EEA40D460AB9A5A6E8D33AAAEF801E /* JXPagingView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AFBCBD9F77FD5CF26B2BEBE02B1E19D9 /* JXPagingView-dummy.m */; }; - 060B00D5B019369654AEAB7C116DC119 /* LSTTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = C4A783F974F95D31DCCDA721D4F965EC /* LSTTimer.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 06C4E233E7977DB81A24482E69B2D7D7 /* UIImage+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = A67C49E3D329D82553E5FEBB4951ABD7 /* UIImage+Transform.m */; }; - 0845A6CB7AE77A99CC475BD14101FE87 /* LookinAttrType.h in Headers */ = {isa = PBXBuildFile; fileRef = D7DFD14540146731FB9E466FA1EB81F0 /* LookinAttrType.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 08719ABCE689ED74FE7486B1E49DAA6C /* MJRefreshBackStateFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 15D9AA9876374637F32E00BE13AA1880 /* MJRefreshBackStateFooter.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 089F3C4BAA46A37EC5763DD312771021 /* SDImageIOAnimatedCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 390647665D633FF246584D1E27162F0D /* SDImageIOAnimatedCoder.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 08D50C5AC969A3701B6F9137CF3A10F1 /* UIImage+ForceDecode.m in Sources */ = {isa = PBXBuildFile; fileRef = 6645D9E2FCEC9ED435B284460DEDDF89 /* UIImage+ForceDecode.m */; }; - 09A2ACBC8CE1761652EAA20886AEFE10 /* SDImageCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 471A02E298FA363A6051045C83C8BE05 /* SDImageCoder.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 0A7342FACEBA0077F1B06178940883DB /* HWPanModal.h in Headers */ = {isa = PBXBuildFile; fileRef = 6260795D5ABBA18F8EFECC2CEB871872 /* HWPanModal.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 0AA1842830C770B1E299BAC977E813D9 /* JXCategoryIndicatorRainbowLineView.h in Headers */ = {isa = PBXBuildFile; fileRef = FD5B9F06C28C32AA434A5A2FFACDF89A /* JXCategoryIndicatorRainbowLineView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 0B0E6CECDF516BC83756C1D5515A725B /* SDAsyncBlockOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E8666C77464C3B683AB0F8D4DEA6951 /* SDAsyncBlockOperation.m */; }; - 0B449236AF25C6C11B0DE3D6D0E4A19B /* LookinEventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = E97B2ACE11733D7DD5ECA116979B91D5 /* LookinEventHandler.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 0BE3B8DB6034364E7CF3AE9D01C7C0B4 /* CALayer+Lookin.m in Sources */ = {isa = PBXBuildFile; fileRef = 673B42B9F094B1F5ED808EE1BA26FC30 /* CALayer+Lookin.m */; }; - 0C312924F0A07471A1D04AD15D32BF3A /* JXCategoryIndicatorRainbowLineView.m in Sources */ = {isa = PBXBuildFile; fileRef = CC8BAAD188938B05A876ECFEAA39F2E6 /* JXCategoryIndicatorRainbowLineView.m */; }; - 0C79142D1349DD9A969F47A0A8AAA0CB /* Lookin_PTProtocol.m in Sources */ = {isa = PBXBuildFile; fileRef = 9545413A1EE5D2E50A21E8D9794A771A /* Lookin_PTProtocol.m */; }; - 0D6EFFD314E70C1E547970D8CEF11131 /* JXPagerMainTableView.m in Sources */ = {isa = PBXBuildFile; fileRef = 119B8F0EF70910D693FCCA816529E357 /* JXPagerMainTableView.m */; }; - 0EF10747EF2A02413E84BD5EF7C87A4B /* MJRefreshNormalHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = CAD02815855109CE0DDD83222F913EF8 /* MJRefreshNormalHeader.m */; }; - 0F1D0F5DCC8C94A4C684DF846D14F436 /* SDWebImagePrefetcher.m in Sources */ = {isa = PBXBuildFile; fileRef = E48A50CB4DE0A87DE4F3E1BFE24DC7B7 /* SDWebImagePrefetcher.m */; }; - 0FF9F459ED16719292443A4C99B52B20 /* SDImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 11EEC0D59FA31FAAD209A208EB338575 /* SDImageCache.m */; }; - 10017B43AC38C3A89D7AC1376C6E7066 /* SDImageLoadersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E889A3C02C6D9C2F5501AF30759E916C /* SDImageLoadersManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 104D9196010D2A8C52C0C19E9C9D52E8 /* MBProgressHUD-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 93081A25D8BCD8327365F5FAC77C46F3 /* MBProgressHUD-dummy.m */; }; - 117F4B6F653A8DA2637C5C93B4993884 /* Peertalk.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FDFBF5B5FE03EAE7CBA31ED300F848E /* Peertalk.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 11AD210D385F977383AFB974D3CDEF53 /* JXCategoryListContainerRTLCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C36F83AF55E2873F497777F59071760 /* JXCategoryListContainerRTLCell.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 11C929E6BFB46F981685446F26DCE605 /* MJRefreshAutoFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = BE6EFE785E6216D9C7C1D6B7A4EEA5EA /* MJRefreshAutoFooter.m */; }; - 11D4DC1FCE5647EEA8484AA4A880AF8F /* MBProgressHUD.m in Sources */ = {isa = PBXBuildFile; fileRef = DB3619AB8798CD8CAE31E140F80F2DC0 /* MBProgressHUD.m */; }; - 126496714AD564062A8C10787CC01B8B /* MJFoundation.m in Sources */ = {isa = PBXBuildFile; fileRef = 61A7EBF5198D90CFC9C01A0BA03924D8 /* MJFoundation.m */; }; - 12EC136F97CCCDD8C3765925FABA52CD /* HWPanModalHeight.h in Headers */ = {isa = PBXBuildFile; fileRef = 5731585BDD8DA229201CF537357BCA56 /* HWPanModalHeight.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1399CD097E164E2C7A6882F0C8FFA525 /* JXCategoryIndicatorProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = D6F5B88F49EB151A388B58319A67E2A1 /* JXCategoryIndicatorProtocol.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 14943D0EE97A4966510A86F5C3FC66A5 /* MJExtension-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = AE09548D63659FAE72F5C6F1EBF230FC /* MJExtension-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 14CA284AC4FF1EED75E785641EE98034 /* SDImageCacheConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 94DB79C6893EAE9D1A7D3559B485BCC5 /* SDImageCacheConfig.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 150116E888969E8304BA3E2BB6529461 /* LookinHierarchyFile.h in Headers */ = {isa = PBXBuildFile; fileRef = 63000DF25140BBB4F03EDFC289F2B197 /* LookinHierarchyFile.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 0005259AEE76604A26E43EA994475B68 /* HWShoppingCartPresentingAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = C5D725B550FCED60C80870F1B120D3B4 /* HWShoppingCartPresentingAnimation.m */; }; + 00DAE48C9A4FBCD1FCAA922CA57B45F9 /* SDWebImageDownloaderRequestModifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 607560CCA2D3766D85B5AEE557812D0E /* SDWebImageDownloaderRequestModifier.m */; }; + 01D2F1D0ABE13AAB2CDC0C25E378E964 /* FLAnimatedImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 18EAC20398B46C2C580B542618314D9E /* FLAnimatedImageView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 020FEDA58170EE1ABDF9E268D373CF4F /* JXCategoryNumberView.m in Sources */ = {isa = PBXBuildFile; fileRef = D5119B7CF0FE429CF0E185983E72F98F /* JXCategoryNumberView.m */; }; + 021ACCD4343D154E4782A5ECE222A8DF /* LookinIvarTrace.h in Headers */ = {isa = PBXBuildFile; fileRef = 00C9A4038FA1CE3381055E02DAAEC90E /* LookinIvarTrace.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 03623FBDBE9F6B422E9A5C6EAD321A58 /* HWPanModalPresenterProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = DE4F66BD16AF47C58F5E08D62D7916E3 /* HWPanModalPresenterProtocol.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 042D40751BD2F51FBE9FECD4707CBBE9 /* SDDeviceHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = F287F335FB60871C584FAC1904FF4181 /* SDDeviceHelper.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 0453019EC6578A67B82CF569EC765546 /* SDFileAttributeHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 0ED5656E5971882A3EA314E222EBC2C5 /* SDFileAttributeHelper.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 05E2B7C1DB7528A0BBEA1521BE0DBAF1 /* MASViewAttribute.h in Headers */ = {isa = PBXBuildFile; fileRef = 7083FA062632CC52050FC4EB53D64E3A /* MASViewAttribute.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 05EEA40D460AB9A5A6E8D33AAAEF801E /* JXPagingView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 10AACE3BDEFABB8B9E709942B03E5595 /* JXPagingView-dummy.m */; }; + 06C4E233E7977DB81A24482E69B2D7D7 /* UIImage+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = 0EBF81CE72AA8B4B06F1BC37CFA7B96A /* UIImage+Transform.m */; }; + 0845A6CB7AE77A99CC475BD14101FE87 /* LookinAttrType.h in Headers */ = {isa = PBXBuildFile; fileRef = C9E1D6C567F43B4A9410AC83170573DE /* LookinAttrType.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 08719ABCE689ED74FE7486B1E49DAA6C /* MJRefreshBackStateFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = ED2A7F3394578B0F6BEA7FBFFE1E2291 /* MJRefreshBackStateFooter.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 089F3C4BAA46A37EC5763DD312771021 /* SDImageIOAnimatedCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = B75E67C2319B8FDBF4D6263203A06D6B /* SDImageIOAnimatedCoder.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 08D50C5AC969A3701B6F9137CF3A10F1 /* UIImage+ForceDecode.m in Sources */ = {isa = PBXBuildFile; fileRef = CF91BA63B659D0E10C9E123EBEAB8FA3 /* UIImage+ForceDecode.m */; }; + 09A2ACBC8CE1761652EAA20886AEFE10 /* SDImageCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EF3B546633CC3DB26A173DE519AC3D7 /* SDImageCoder.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 0A7342FACEBA0077F1B06178940883DB /* HWPanModal.h in Headers */ = {isa = PBXBuildFile; fileRef = EC37DBDA721D0EFF5AB018086BE1B195 /* HWPanModal.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 0AA1842830C770B1E299BAC977E813D9 /* JXCategoryIndicatorRainbowLineView.h in Headers */ = {isa = PBXBuildFile; fileRef = D25C8F67455D872A48F4797213321EA4 /* JXCategoryIndicatorRainbowLineView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 0B0E6CECDF516BC83756C1D5515A725B /* SDAsyncBlockOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A03E8820B42DFF0FCE849CB64302CAF /* SDAsyncBlockOperation.m */; }; + 0B449236AF25C6C11B0DE3D6D0E4A19B /* LookinEventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 05EE9449F14265ADB3100E60632AB642 /* LookinEventHandler.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 0BE3B8DB6034364E7CF3AE9D01C7C0B4 /* CALayer+Lookin.m in Sources */ = {isa = PBXBuildFile; fileRef = 657631264951C7514A1788B1C6316E7F /* CALayer+Lookin.m */; }; + 0C312924F0A07471A1D04AD15D32BF3A /* JXCategoryIndicatorRainbowLineView.m in Sources */ = {isa = PBXBuildFile; fileRef = 021930E01F482BDF2DEAAA2AF9FDCF18 /* JXCategoryIndicatorRainbowLineView.m */; }; + 0C79142D1349DD9A969F47A0A8AAA0CB /* Lookin_PTProtocol.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B6F5F5F32C55F6B9F4E87EC57A0A074 /* Lookin_PTProtocol.m */; }; + 0D6EFFD314E70C1E547970D8CEF11131 /* JXPagerMainTableView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C2DAB09AC8F3AD6E82FDC5DB2562CB4 /* JXPagerMainTableView.m */; }; + 0E97928FD3B4476EDC015E83A8E2CAA3 /* UIView+Empty.m in Sources */ = {isa = PBXBuildFile; fileRef = A34A186C33DB71F8C4ACB6E0705472D0 /* UIView+Empty.m */; }; + 0EF10747EF2A02413E84BD5EF7C87A4B /* MJRefreshNormalHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 61D65BB6AAD351E64F3FE46FACDEED4F /* MJRefreshNormalHeader.m */; }; + 0F1D0F5DCC8C94A4C684DF846D14F436 /* SDWebImagePrefetcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AA439B2B87976D37C23F7DCCE897F8C /* SDWebImagePrefetcher.m */; }; + 0FF9F459ED16719292443A4C99B52B20 /* SDImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 77715D6F65035CFA25715F00E4915BA5 /* SDImageCache.m */; }; + 10017B43AC38C3A89D7AC1376C6E7066 /* SDImageLoadersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C1F5F86210D3FB1EF59D8665E7C4A77 /* SDImageLoadersManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 104D9196010D2A8C52C0C19E9C9D52E8 /* MBProgressHUD-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D30B8333D334528105E28100C243348D /* MBProgressHUD-dummy.m */; }; + 117F4B6F653A8DA2637C5C93B4993884 /* Peertalk.h in Headers */ = {isa = PBXBuildFile; fileRef = 70D52E1253BDF6EF05A1C5C1D46734EA /* Peertalk.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 11AD210D385F977383AFB974D3CDEF53 /* JXCategoryListContainerRTLCell.h in Headers */ = {isa = PBXBuildFile; fileRef = E948F26A10F663204E24603E8527A7F5 /* JXCategoryListContainerRTLCell.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 11C929E6BFB46F981685446F26DCE605 /* MJRefreshAutoFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 14CF605A6E1A867AA3131733CCE53D99 /* MJRefreshAutoFooter.m */; }; + 11D4DC1FCE5647EEA8484AA4A880AF8F /* MBProgressHUD.m in Sources */ = {isa = PBXBuildFile; fileRef = 347DA9A1002297848F6BF9D97BB1F302 /* MBProgressHUD.m */; }; + 126496714AD564062A8C10787CC01B8B /* MJFoundation.m in Sources */ = {isa = PBXBuildFile; fileRef = BCF14CEE3203A4E740B9A9FD66CCABA4 /* MJFoundation.m */; }; + 12EC136F97CCCDD8C3765925FABA52CD /* HWPanModalHeight.h in Headers */ = {isa = PBXBuildFile; fileRef = EF7183977EF6286C16A64DBC3D765320 /* HWPanModalHeight.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1399CD097E164E2C7A6882F0C8FFA525 /* JXCategoryIndicatorProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 92A35222DEEC452079F1343331C6E154 /* JXCategoryIndicatorProtocol.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 14943D0EE97A4966510A86F5C3FC66A5 /* MJExtension-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 2713EAAF042877733E01E359F3224ABF /* MJExtension-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 14CA284AC4FF1EED75E785641EE98034 /* SDImageCacheConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = E368F7BC820788B717CC047A744E4326 /* SDImageCacheConfig.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 150116E888969E8304BA3E2BB6529461 /* LookinHierarchyFile.h in Headers */ = {isa = PBXBuildFile; fileRef = FDCCFFDED68135F2816CA2167E15CF64 /* LookinHierarchyFile.h */; settings = {ATTRIBUTES = (Public, ); }; }; 15B27182B591769C57B55544260DC886 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9D41AAC213895165C450F5576DE42CB2 /* Foundation.framework */; }; - 165F1C9CBD621828C788A3018D0426C5 /* SDImageAPNGCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = FB334521D7F08199DE839AB68A37105C /* SDImageAPNGCoder.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 168889E3E897E6D6102A2AA7F7C47496 /* JXCategoryIndicatorComponentView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B0139E3193D3960F1A46D73064CA34A /* JXCategoryIndicatorComponentView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 165F1C9CBD621828C788A3018D0426C5 /* SDImageAPNGCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 3501E850F701BA678364B4AFBF1C8417 /* SDImageAPNGCoder.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 168889E3E897E6D6102A2AA7F7C47496 /* JXCategoryIndicatorComponentView.h in Headers */ = {isa = PBXBuildFile; fileRef = 37C2A3B1C753D4547646108720BF5321 /* JXCategoryIndicatorComponentView.h */; settings = {ATTRIBUTES = (Public, ); }; }; 16D7DCB7CC985C33EEC41B371C029C84 /* SDWebImage-SDWebImage in Resources */ = {isa = PBXBuildFile; fileRef = CF1281E58AA1045D4B7F33FC56691C42 /* SDWebImage-SDWebImage */; }; - 1708C1D28B421C4AD310426D1695CE77 /* SDAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B609960A71B1FE2AB814B679D9E7609 /* SDAnimatedImage.m */; }; - 17341EDF872432C3966B77976F3E0470 /* JXCategoryTitleVerticalZoomCellModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 60A68C8A5D160FE046F60DF6C446111D /* JXCategoryTitleVerticalZoomCellModel.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1754DD5511A7BF462B116F70B0D4006A /* SDWebImageOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = ED2932A528EF3931C345CFE64B9F95D6 /* SDWebImageOperation.m */; }; - 1830558A4D2D63C8E76BC3136D8213F9 /* UIImage+ExtendedCacheData.h in Headers */ = {isa = PBXBuildFile; fileRef = 75B6A4916D912131001F61C28CCA6565 /* UIImage+ExtendedCacheData.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 18660FA595DBE133BB784E813A7122A8 /* SDImageHEICCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 3125F7D904D9F1F20C7699EF5186B19F /* SDImageHEICCoder.m */; }; - 186B573F1BEB8A23419A02814A7741DB /* MJRefreshFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CE7B5832F4AC9648A3CEB7DD03473E4 /* MJRefreshFooter.m */; }; - 18AD90784D549657DF51BC8377DA3085 /* SDWebImageDownloaderResponseModifier.h in Headers */ = {isa = PBXBuildFile; fileRef = EC33F9EE9311F0E41E69AB2D40770217 /* SDWebImageDownloaderResponseModifier.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1B52E938D7999FC0CDA2AA22674948EB /* LookinAttributesGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = 57D32F597DFAC06B9198FA1F48D2995D /* LookinAttributesGroup.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1B6CE67196EE181E6B56788EFC7E00D3 /* SDImageGIFCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 911E6F5D1D17453D35BE3FA4A9086972 /* SDImageGIFCoder.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1BC44E2FDD197D5210A23C9CCF1A906B /* SDWebImageCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = 64891F4568CD87380D133019B00B2324 /* SDWebImageCompat.m */; }; - 1C0FA6017CAD67C1A80FFA70024FC6FD /* JXCategoryIndicatorCell.m in Sources */ = {isa = PBXBuildFile; fileRef = CF64931699D303A3C9AE1FFC4682E257 /* JXCategoryIndicatorCell.m */; }; - 1C1BC9F0555B36914FF5278D30152DE6 /* JXCategoryNumberView.h in Headers */ = {isa = PBXBuildFile; fileRef = C6B6ABC9B259D86AA3C2451E682BE701 /* JXCategoryNumberView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1C5CCB87E5B9C500F07A8244D7906295 /* LookinAppInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 908BDA99457974AD8998A674A0C0FB12 /* LookinAppInfo.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1C8B70C74291A3076746C3B18781568E /* SDImageCachesManagerOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DC4AC8D166AB2BD8B557BFA9FA9872C /* SDImageCachesManagerOperation.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 1CA85ECC202E5CF62530BAD7C0DCDAF2 /* LookinHierarchyInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = A8105D73597438386DADF22233AAD4B3 /* LookinHierarchyInfo.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1D18A1A5D485D57192B021A8765C0AF5 /* LookinTuple.h in Headers */ = {isa = PBXBuildFile; fileRef = 95EB1D88070F8207A333D4573DA43A15 /* LookinTuple.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1D3DCD05B685A7CAF291C25D922B1831 /* HWPanModalPresentationController.m in Sources */ = {isa = PBXBuildFile; fileRef = 94D99E2E2730992302FB9BAA7CCE2A1C /* HWPanModalPresentationController.m */; }; - 1DB724891F1F6468BDB333369F667F39 /* HWPanModalPresentableHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = DAFBC54BDE2AC21397492351C31C587A /* HWPanModalPresentableHandler.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1DC161351EBD409CC622E826340E4FD8 /* JXCategoryTitleVerticalZoomCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 54CBDA1EBC8A896E6DB3A15D5332DB1C /* JXCategoryTitleVerticalZoomCell.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1EA011B45EC780B434507AFB3D9647ED /* NSObject+MJCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 9777292C62AA2375C63BAEF75D1F940C /* NSObject+MJCoding.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1EC3AEA15AE416A53357261B37C622BD /* LKS_TraceManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1278AB0B776862F23D89B7E8596E3598 /* LKS_TraceManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1ECC5F320AEFB120081358B4FFB7442F /* NSString+MJExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B4EF64EB8018D8E9CE7C8CB5FACCD5B /* NSString+MJExtension.m */; }; - 1EDC6F899051F0E858270F7556AF2F12 /* UIVisualEffectView+LookinServer.m in Sources */ = {isa = PBXBuildFile; fileRef = 8CE6BF39C6199FC5B55217046DDE2CDB /* UIVisualEffectView+LookinServer.m */; }; - 1EDF5F5B68D4A76CE59D5B6CC7B6C469 /* LookinAttribute.h in Headers */ = {isa = PBXBuildFile; fileRef = 659E6E588427268237F9F2C40D2F6CBD /* LookinAttribute.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1F778CA18D1F4A50D9F15280B25D10EB /* JXCategoryTitleImageCellModel.h in Headers */ = {isa = PBXBuildFile; fileRef = DDAA59B8AF34E0C4765874AEE69571F7 /* JXCategoryTitleImageCellModel.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1FD36A180D43C773D95D8E5BF719494C /* LookinDisplayItemDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E7F18004D9337D64F0F606975492DF4 /* LookinDisplayItemDetail.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1FDEA3FFA45F29C1331723E9579D66A5 /* LookinAutoLayoutConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DA1EEEB5386D6FCA6523BE43601C382 /* LookinAutoLayoutConstraint.m */; }; - 2055774CD703B52DABFB1CC588394A94 /* MJExtension-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D4A62A4549AC17B0296FF7D29E15454 /* MJExtension-dummy.m */; }; - 20D5706AD3ED295B4FBACD8825DC3A1E /* JXPagerListRefreshView.h in Headers */ = {isa = PBXBuildFile; fileRef = 359AD735B8CFD982730F6CEB0F56A487 /* JXPagerListRefreshView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 20D618EF3EA5E3BE96DA24D36E3CA9EF /* SDAsyncBlockOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 9820AAA1C732351179414BB46300A1B7 /* SDAsyncBlockOperation.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 20E738E52B4712385489A62374C74C7F /* Lookin_PTUSBHub.m in Sources */ = {isa = PBXBuildFile; fileRef = BC38AB7DAEDA3DEEFFAC64BDA7FA3C88 /* Lookin_PTUSBHub.m */; }; - 20FBBC12322412237D48D3695D98E043 /* JXCategoryDotView.m in Sources */ = {isa = PBXBuildFile; fileRef = EED2C7FD129EA6F065286A12502B79B7 /* JXCategoryDotView.m */; }; - 2175B894008D948C762468307BA677B8 /* RTLManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E5EA191D7CFA74A3FEAFB27130A3FEC7 /* RTLManager.m */; }; - 22516EA77E7120000632C30BD9A03927 /* UIScrollView+MJExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = 23648E3B16301958DD4429C021EB223C /* UIScrollView+MJExtension.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 22C38AE7AB145224FF646303AFED11D2 /* JXCategoryDotCellModel.h in Headers */ = {isa = PBXBuildFile; fileRef = ABD4819FE00A1A954ABDDF0893C72587 /* JXCategoryDotCellModel.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 22F19B23471EE7840581A348EB735BD1 /* UIViewController+LayoutHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 76724C714C93839E6993DF68B545F17B /* UIViewController+LayoutHelper.m */; }; - 231A40F14D020AE2F61AA5C3289E6CF9 /* UITextView+LookinServer.h in Headers */ = {isa = PBXBuildFile; fileRef = A56B5A6CAF35241FF9D41CAC7DC1D6D2 /* UITextView+LookinServer.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 2395CE03CE80FC5F9A7F61C48270618B /* JXCategoryViewAnimator.m in Sources */ = {isa = PBXBuildFile; fileRef = B46184374613AB561CB67E0F1EF14DD8 /* JXCategoryViewAnimator.m */; }; - 2460C08042AF8B7D0492A062F755986E /* NSString+Lookin.m in Sources */ = {isa = PBXBuildFile; fileRef = D9EC522C5B6A10C53A05FE81CED85983 /* NSString+Lookin.m */; }; - 24E8E4ED0B5D988E3346E6638619F4E4 /* SDImageFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = EAEC3302C39E58E44D49A12FA8699A84 /* SDImageFrame.m */; }; - 24E963C1D6245F98BAC8A0ACCB7DE987 /* NSBundle+MJRefresh.m in Sources */ = {isa = PBXBuildFile; fileRef = 824A8DE6460C98A565B1EDD8B4432F50 /* NSBundle+MJRefresh.m */; }; + 1708C1D28B421C4AD310426D1695CE77 /* SDAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = BDB258BF0BE17AFC3BFB4FB942403B82 /* SDAnimatedImage.m */; }; + 17341EDF872432C3966B77976F3E0470 /* JXCategoryTitleVerticalZoomCellModel.h in Headers */ = {isa = PBXBuildFile; fileRef = C4D51AE584C5960F5C6B60C866377741 /* JXCategoryTitleVerticalZoomCellModel.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1754DD5511A7BF462B116F70B0D4006A /* SDWebImageOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A70A9B1B9D076F21A4C704EAC69B3E9 /* SDWebImageOperation.m */; }; + 1830558A4D2D63C8E76BC3136D8213F9 /* UIImage+ExtendedCacheData.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D2F3BF5EE9E269F816330AC6BF6745F /* UIImage+ExtendedCacheData.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 18660FA595DBE133BB784E813A7122A8 /* SDImageHEICCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 1CA6A325AACF7253FFEB9D258746335D /* SDImageHEICCoder.m */; }; + 186B573F1BEB8A23419A02814A7741DB /* MJRefreshFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 0260C833576479A14C0F759F9D161479 /* MJRefreshFooter.m */; }; + 18AD90784D549657DF51BC8377DA3085 /* SDWebImageDownloaderResponseModifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F1245D39980C8CC23C4FFA557C72FA3 /* SDWebImageDownloaderResponseModifier.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1B52E938D7999FC0CDA2AA22674948EB /* LookinAttributesGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = E6FEAED2BC2A577A78A12FA14FC3BB6B /* LookinAttributesGroup.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1B6CE67196EE181E6B56788EFC7E00D3 /* SDImageGIFCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C0E279B5FFB9696801CC86ACF92805A /* SDImageGIFCoder.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1BC44E2FDD197D5210A23C9CCF1A906B /* SDWebImageCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = F00B3F2B17BB2816232EB507B7AC9018 /* SDWebImageCompat.m */; }; + 1C0FA6017CAD67C1A80FFA70024FC6FD /* JXCategoryIndicatorCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F9F30602CBEA307F110682B47DBF3B59 /* JXCategoryIndicatorCell.m */; }; + 1C1BC9F0555B36914FF5278D30152DE6 /* JXCategoryNumberView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B8734ED62BE39C69073D2C32183C6FC /* JXCategoryNumberView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1C5CCB87E5B9C500F07A8244D7906295 /* LookinAppInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D8A828331C79742A41F54C2050C90A8 /* LookinAppInfo.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1C8B70C74291A3076746C3B18781568E /* SDImageCachesManagerOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A41E1A305241C5A627FAD06CB90A275 /* SDImageCachesManagerOperation.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 1CA85ECC202E5CF62530BAD7C0DCDAF2 /* LookinHierarchyInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 26469EA2BF7F49FCDA80695277950B2B /* LookinHierarchyInfo.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1D18A1A5D485D57192B021A8765C0AF5 /* LookinTuple.h in Headers */ = {isa = PBXBuildFile; fileRef = 17A16F153D08C8BBF15070C730EC0C3A /* LookinTuple.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1D3DCD05B685A7CAF291C25D922B1831 /* HWPanModalPresentationController.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F9506DDA8FBAA7420E9B8137BFCFDFA /* HWPanModalPresentationController.m */; }; + 1DB724891F1F6468BDB333369F667F39 /* HWPanModalPresentableHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = C644FF26241C14C759578567892EF00D /* HWPanModalPresentableHandler.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1DC161351EBD409CC622E826340E4FD8 /* JXCategoryTitleVerticalZoomCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 25475D081A3343232AD119F5F5A5F24A /* JXCategoryTitleVerticalZoomCell.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1EA011B45EC780B434507AFB3D9647ED /* NSObject+MJCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = DD2F0E472487CBFBA5CA4F3C62C1BB0B /* NSObject+MJCoding.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1EC3AEA15AE416A53357261B37C622BD /* LKS_TraceManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 52AF8374431A1EA8420BA1E29139131E /* LKS_TraceManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1ECC5F320AEFB120081358B4FFB7442F /* NSString+MJExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 15C39377834B42681C3BF6A5471C5F78 /* NSString+MJExtension.m */; }; + 1ED0D560CC57BCED931C26E643B2A96A /* UIView+Empty.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A5F8A5650078BFF9587944F0042AE79 /* UIView+Empty.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1EDC6F899051F0E858270F7556AF2F12 /* UIVisualEffectView+LookinServer.m in Sources */ = {isa = PBXBuildFile; fileRef = A7DF910F689AA8FEAD1EF63DDDFCB780 /* UIVisualEffectView+LookinServer.m */; }; + 1EDF5F5B68D4A76CE59D5B6CC7B6C469 /* LookinAttribute.h in Headers */ = {isa = PBXBuildFile; fileRef = 903EBE6439B30182644FFF066DE11129 /* LookinAttribute.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1F2863645F3DEAC57B592AFFB45D5E77 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 20674A80959A90C9F9E51DBDC8807D93 /* PrivacyInfo.xcprivacy */; }; + 1F778CA18D1F4A50D9F15280B25D10EB /* JXCategoryTitleImageCellModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B812F8DDDC6CC3E3ACDB1D17716E70C /* JXCategoryTitleImageCellModel.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1FD36A180D43C773D95D8E5BF719494C /* LookinDisplayItemDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 407D327724ADF96791DFD9B922AA254A /* LookinDisplayItemDetail.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1FDEA3FFA45F29C1331723E9579D66A5 /* LookinAutoLayoutConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 38F21B02ED02115E613C152CE563BD5A /* LookinAutoLayoutConstraint.m */; }; + 2055774CD703B52DABFB1CC588394A94 /* MJExtension-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 43E163147E40F868F458CD979D77C4E4 /* MJExtension-dummy.m */; }; + 20D5706AD3ED295B4FBACD8825DC3A1E /* JXPagerListRefreshView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B250EFB659FBBBBA5D680859085344D /* JXPagerListRefreshView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 20D618EF3EA5E3BE96DA24D36E3CA9EF /* SDAsyncBlockOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 026BB0AEDD69539DEC39191EE0C5214B /* SDAsyncBlockOperation.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 20E738E52B4712385489A62374C74C7F /* Lookin_PTUSBHub.m in Sources */ = {isa = PBXBuildFile; fileRef = B1850D4E22F95780586FA04DA695C24C /* Lookin_PTUSBHub.m */; }; + 20FBBC12322412237D48D3695D98E043 /* JXCategoryDotView.m in Sources */ = {isa = PBXBuildFile; fileRef = C86FEA7FA982FA034501F7AB37760D49 /* JXCategoryDotView.m */; }; + 21232E67D630EBF8EA4CB3322B359F0D /* LSTTimer.m in Sources */ = {isa = PBXBuildFile; fileRef = CE5782C68BCDC8C49DD74B206B3FFFF1 /* LSTTimer.m */; }; + 2175B894008D948C762468307BA677B8 /* RTLManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A3BA26DC995AB016051D522F5691C91 /* RTLManager.m */; }; + 2210A1E405AB21104E7AF86D05C8AD39 /* LYEmptyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 39267406AD82F75ABB872A20BE14F010 /* LYEmptyView.m */; }; + 22516EA77E7120000632C30BD9A03927 /* UIScrollView+MJExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = 304FA88F8B2636C2DD7FA535D2BD617D /* UIScrollView+MJExtension.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 22C38AE7AB145224FF646303AFED11D2 /* JXCategoryDotCellModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 931669FB7F8BA540208B2F23E13B2F19 /* JXCategoryDotCellModel.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 22F19B23471EE7840581A348EB735BD1 /* UIViewController+LayoutHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = F9AA00EC509DE2C0E25E749F629EF1F6 /* UIViewController+LayoutHelper.m */; }; + 231A40F14D020AE2F61AA5C3289E6CF9 /* UITextView+LookinServer.h in Headers */ = {isa = PBXBuildFile; fileRef = FCA4EBF34C88159600AC127D3548346D /* UITextView+LookinServer.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2395CE03CE80FC5F9A7F61C48270618B /* JXCategoryViewAnimator.m in Sources */ = {isa = PBXBuildFile; fileRef = 95BCF1B96C9A492409E9634BC63A400B /* JXCategoryViewAnimator.m */; }; + 2460C08042AF8B7D0492A062F755986E /* NSString+Lookin.m in Sources */ = {isa = PBXBuildFile; fileRef = C9A08CB30EFC3A6CB342354C253BE4D8 /* NSString+Lookin.m */; }; + 24E8E4ED0B5D988E3346E6638619F4E4 /* SDImageFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 452754C8CDFE17EC42C563B4B6E1F69A /* SDImageFrame.m */; }; + 24E963C1D6245F98BAC8A0ACCB7DE987 /* NSBundle+MJRefresh.m in Sources */ = {isa = PBXBuildFile; fileRef = 9ECA4FF1A4B2A73F055139B44105081C /* NSBundle+MJRefresh.m */; }; 2567FE276DB76481DEFC7DDFE7D775CC /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9D41AAC213895165C450F5576DE42CB2 /* Foundation.framework */; }; - 261C31F4038EC00D5961218C97905E21 /* LookinConnectionResponseAttachment.h in Headers */ = {isa = PBXBuildFile; fileRef = 989150BD3DA7E7AE5D05E2F37E778A8D /* LookinConnectionResponseAttachment.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 266352AA446DAE8C9502E83810C174D9 /* JXCategoryImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7778E8300903006F261959B2010A06D2 /* JXCategoryImageView.m */; }; - 27212D06F5EDE3BB10264D93075B2275 /* LookinDashboardBlueprint.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D31ED01216EF87422BD04709990AFA0 /* LookinDashboardBlueprint.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 2759D8D4FCE58812ADECB348E369C6F0 /* LKS_MultiplatformAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 1FBD8AFE7FA55EAB140791EC34C18CD4 /* LKS_MultiplatformAdapter.m */; }; - 27CC45A4ABE5B40723D35310D05CD146 /* LKS_EventHandlerMaker.m in Sources */ = {isa = PBXBuildFile; fileRef = 1C21A04AB85F6948BCB44480387E46C5 /* LKS_EventHandlerMaker.m */; }; - 288CD3416B265CAC1300D7938167AE66 /* MJPropertyKey.h in Headers */ = {isa = PBXBuildFile; fileRef = 367088C36E8BF33957802AE4A6256CC1 /* MJPropertyKey.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 288D796F3F7B9F42690E24A3B1018B2C /* SDImageIOAnimatedCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 3504487D6CA5438A7FB00D149564DDFC /* SDImageIOAnimatedCoder.m */; }; - 28BA9702905AA2B4C1E9E4878032D4E4 /* MJRefreshConst.h in Headers */ = {isa = PBXBuildFile; fileRef = 55A76B2979ED12495977612719BE47A2 /* MJRefreshConst.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 29F7F0E98FD26A96364DBACD7D5F237A /* SDWebImageDownloader.h in Headers */ = {isa = PBXBuildFile; fileRef = 402826B784C1198142F399AD251F2A3A /* SDWebImageDownloader.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 2A24F241D7D74FF6DEA953F9DD49391C /* LKS_EventHandlerMaker.h in Headers */ = {isa = PBXBuildFile; fileRef = E5AA796F8B4298B625A467D39523F40F /* LKS_EventHandlerMaker.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 2CDC7B9EAD356E35FEAF526EEA6A8E91 /* LookinWeakContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = 16464E573FCB8AFF2E7DB58E7A507D73 /* LookinWeakContainer.m */; }; - 2D0E2E3CDCB12399497B4F31D4C20E3E /* HWShoppingCartPresentingAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = B9C3A1374DADDEAE813F69F05F5A2564 /* HWShoppingCartPresentingAnimation.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 2DC44A09A6C9D6DC7D1BDA2DFCF99EE3 /* MJRefreshConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 42EF67A85226C8C14C983E81C71F392D /* MJRefreshConfig.m */; }; - 2DDA5F044BC698BC5D48A7CFDDBF71E3 /* LookinAttributeModification.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B35D70EDD8A3E56FE6F0E6934A400CC /* LookinAttributeModification.m */; }; - 2DDD48230ED9E8068C7E439D79B99A8E /* SDInternalMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 3422D3CB84719A98D68CD9DE2857E694 /* SDInternalMacros.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 2E86A7C77E43AEA4697979F1F848E68D /* LKS_RequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = B9D007BE64FBA88DB3F5D92E0EAEDEAD /* LKS_RequestHandler.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 2EC1750C894F036194B90CFD26072B0C /* FLAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 761A654F557EA15B24079623AF9184F9 /* FLAnimatedImage.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 2EC7BA321016EC71EA595E4BAF0B7E8B /* JXCategoryDotCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 98D2F9331639FC6D12A4091DD5F47C96 /* JXCategoryDotCell.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 2EDA227454079ED3F6371BF34AFD4735 /* JXCategoryIndicatorCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 3875C6FE72ED2368D3701E9901F883B7 /* JXCategoryIndicatorCellModel.m */; }; - 2EEB29D2C570F11620D4CF90D7DFD569 /* Pods-keyBoard-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = A2D8E1EB42D41EA6B94901E5B68C9011 /* Pods-keyBoard-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 2EFF1EFA2FF0D2F1AE44A9DDBB932425 /* UIScrollView+EmptyDataSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 797DE6794620B6AD238FF0B8B61A1B32 /* UIScrollView+EmptyDataSet.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 2F6D9BEA582A2DBB70A6C3B2FC2DB91E /* SDWebImageDownloaderResponseModifier.m in Sources */ = {isa = PBXBuildFile; fileRef = BBC2FF6B1D45486A6893E456C4B85E05 /* SDWebImageDownloaderResponseModifier.m */; }; - 3111CEA93C868CA68CBD351C934FEB80 /* LSTPopView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B2F1B06BC651834D7B3EA1FBC96E466 /* LSTPopView.m */; }; - 3127F22BF0A5465D472669272D586BDC /* HWPanModalIndicatorProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = C8BABB078FC5FF697A3609C777FC51FC /* HWPanModalIndicatorProtocol.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3187FF0C251D1B78BE87F64F6F6E944A /* SDWebImageTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = BFEF7CB304E59179EBDA954FA636E74D /* SDWebImageTransition.m */; }; - 31DC2EC78AD1F8241AE6051EF9E73B0A /* SDWebImageDefine.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C599636DAB63CB63CC65E368E1BAAFC /* SDWebImageDefine.m */; }; - 31FA8264AA5553AB85039530B1FB8C4B /* JXCategoryNumberCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 874DD2FA3B20B6BCBCBEE03BEEBE1281 /* JXCategoryNumberCell.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 320DE42AF3CFE11FF785FEB1A7E6547B /* SDImageFramePool.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E8C0DD47533304FD7479FB5A47A4E3B /* SDImageFramePool.m */; }; - 321F87DA34863DC5C977323BAEDB2B55 /* NSObject+MJCoding.m in Sources */ = {isa = PBXBuildFile; fileRef = 8FD309B3FADE968B4258080AC443EFCB /* NSObject+MJCoding.m */; }; - 325CA20B9271F3E008234E1518B79061 /* MJRefresh-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 7626DD9951DC84318DF6E875CD7A8C20 /* MJRefresh-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 261C31F4038EC00D5961218C97905E21 /* LookinConnectionResponseAttachment.h in Headers */ = {isa = PBXBuildFile; fileRef = D9BB987ADE61FFDF3C240961F2EB4DDB /* LookinConnectionResponseAttachment.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 266352AA446DAE8C9502E83810C174D9 /* JXCategoryImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5CB6F43E2EFE165260D66B0BFF9A8831 /* JXCategoryImageView.m */; }; + 27212D06F5EDE3BB10264D93075B2275 /* LookinDashboardBlueprint.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AB6F2617132C99A6B5CB953305CCA89 /* LookinDashboardBlueprint.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2759D8D4FCE58812ADECB348E369C6F0 /* LKS_MultiplatformAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 957B3209BD81CDA1C8049B3245F6946E /* LKS_MultiplatformAdapter.m */; }; + 27CC45A4ABE5B40723D35310D05CD146 /* LKS_EventHandlerMaker.m in Sources */ = {isa = PBXBuildFile; fileRef = CD6BC672271DF551FD22D8BABC528CA6 /* LKS_EventHandlerMaker.m */; }; + 27CE2AFFB3219A5D3717045970929C80 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 7EC4505824D228FB201DC90A544C01B3 /* PrivacyInfo.xcprivacy */; }; + 288CD3416B265CAC1300D7938167AE66 /* MJPropertyKey.h in Headers */ = {isa = PBXBuildFile; fileRef = 05A7B005509B15E31ECEED7DFEEB1EDB /* MJPropertyKey.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 288D796F3F7B9F42690E24A3B1018B2C /* SDImageIOAnimatedCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = B92B905C66437721BB933FEDA5B00CB4 /* SDImageIOAnimatedCoder.m */; }; + 28BA9702905AA2B4C1E9E4878032D4E4 /* MJRefreshConst.h in Headers */ = {isa = PBXBuildFile; fileRef = 63A3BD4651AA1DDCB216ABB7FBC3A69E /* MJRefreshConst.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 29F7F0E98FD26A96364DBACD7D5F237A /* SDWebImageDownloader.h in Headers */ = {isa = PBXBuildFile; fileRef = 96AEDA915084E949F39F28D248C2FB43 /* SDWebImageDownloader.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2A24F241D7D74FF6DEA953F9DD49391C /* LKS_EventHandlerMaker.h in Headers */ = {isa = PBXBuildFile; fileRef = 51AB8F5FA4517AC80D7763B2894462EB /* LKS_EventHandlerMaker.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2C2405D23D1A7428F65C7D740476ABA2 /* Pods-keyBoard-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = A2D8E1EB42D41EA6B94901E5B68C9011 /* Pods-keyBoard-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2CDC7B9EAD356E35FEAF526EEA6A8E91 /* LookinWeakContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = 60F9066C601EE11D24D22C170F05AF13 /* LookinWeakContainer.m */; }; + 2D0E2E3CDCB12399497B4F31D4C20E3E /* HWShoppingCartPresentingAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = FCBCC9D408AF4A848CBB9CEE3327E256 /* HWShoppingCartPresentingAnimation.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2DC44A09A6C9D6DC7D1BDA2DFCF99EE3 /* MJRefreshConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C71B9877A51B54673C7FFC0C3276863 /* MJRefreshConfig.m */; }; + 2DDA5F044BC698BC5D48A7CFDDBF71E3 /* LookinAttributeModification.m in Sources */ = {isa = PBXBuildFile; fileRef = 39592D3DD29808CC34F5BDE8FFAD64E6 /* LookinAttributeModification.m */; }; + 2DDD48230ED9E8068C7E439D79B99A8E /* SDInternalMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 962D7794EB805E6D2F4F5F0B58218401 /* SDInternalMacros.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 2E86A7C77E43AEA4697979F1F848E68D /* LKS_RequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = AFBA747DBA20D4BACF78CA8DE98ADF94 /* LKS_RequestHandler.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2EC1750C894F036194B90CFD26072B0C /* FLAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = E386525610DF7AB4E84ED0202969AB8E /* FLAnimatedImage.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2EC7BA321016EC71EA595E4BAF0B7E8B /* JXCategoryDotCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B890DAD1E942EF3DB7BF5C23113C1B6 /* JXCategoryDotCell.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2EDA227454079ED3F6371BF34AFD4735 /* JXCategoryIndicatorCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E73D1DD407F0535009A207AB317F8B7 /* JXCategoryIndicatorCellModel.m */; }; + 2EFF1EFA2FF0D2F1AE44A9DDBB932425 /* UIScrollView+EmptyDataSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 2945888F89AB6D3ECBBEDD6E09D1B949 /* UIScrollView+EmptyDataSet.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2F6D9BEA582A2DBB70A6C3B2FC2DB91E /* SDWebImageDownloaderResponseModifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BC98580A0BA844CDD661F01812A35C7 /* SDWebImageDownloaderResponseModifier.m */; }; + 3111CEA93C868CA68CBD351C934FEB80 /* LSTPopView.m in Sources */ = {isa = PBXBuildFile; fileRef = 633C3F66E9BA0FD7538C55D5287ED77E /* LSTPopView.m */; }; + 3127F22BF0A5465D472669272D586BDC /* HWPanModalIndicatorProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = BCDE5AFCF524DCA9CD59B6F4A4738325 /* HWPanModalIndicatorProtocol.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3187FF0C251D1B78BE87F64F6F6E944A /* SDWebImageTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = A4B49E8FCEA2AFEE938A133ECC269CF2 /* SDWebImageTransition.m */; }; + 31DC2EC78AD1F8241AE6051EF9E73B0A /* SDWebImageDefine.m in Sources */ = {isa = PBXBuildFile; fileRef = AEEC6C323BA320F8FE0EFED607BC9994 /* SDWebImageDefine.m */; }; + 31FA8264AA5553AB85039530B1FB8C4B /* JXCategoryNumberCell.h in Headers */ = {isa = PBXBuildFile; fileRef = A23AD7EF4A12F64EAAFE5154D8DC5843 /* JXCategoryNumberCell.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 320DE42AF3CFE11FF785FEB1A7E6547B /* SDImageFramePool.m in Sources */ = {isa = PBXBuildFile; fileRef = BF31B533FDEE0B0DA7ED824B4F336534 /* SDImageFramePool.m */; }; + 321F87DA34863DC5C977323BAEDB2B55 /* NSObject+MJCoding.m in Sources */ = {isa = PBXBuildFile; fileRef = 0249A8711339B6CD1E26258C064677E9 /* NSObject+MJCoding.m */; }; + 325CA20B9271F3E008234E1518B79061 /* MJRefresh-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A2E7581F1DA07EBD6D2568091FCCB71 /* MJRefresh-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 327BA3DDA513422E632D3DA4A8FC60EC /* MJRefresh-MJRefresh.Privacy in Resources */ = {isa = PBXBuildFile; fileRef = 7E3097CFEFDA621E9FB0E62009FF87FC /* MJRefresh-MJRefresh.Privacy */; }; - 32ACEDCEBE0507A82D6323114A1C74F1 /* UIImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = F21EDB4000AA52958FC207353BC36367 /* UIImageView+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 32F2B91621A2F8F9AD7C8E2B224D73F6 /* SDWebImageDownloaderDecryptor.m in Sources */ = {isa = PBXBuildFile; fileRef = DBE1F0821F32567F3E84359D65C8422C /* SDWebImageDownloaderDecryptor.m */; }; - 32FF240AE9443A1D2CFE27F50B55F591 /* LKS_MultiplatformAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 06BE908D1EBE4269ACB69B26DE9B834E /* LKS_MultiplatformAdapter.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 332F2099D726E75CEFAF1F734104A066 /* LookinWeakContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 886E6269011F3D0F924F30F32F08508F /* LookinWeakContainer.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3331A013D48A5063B483A51B7E9068ED /* AFURLSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 55E89941A6B7A73D479A0770A9C96C14 /* AFURLSessionManager.m */; }; - 33D3587AF629B2FA21554DA002D6ACB8 /* SDImageCachesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 25A5CCE05BC1D97AB685203E1D41C4B0 /* SDImageCachesManager.m */; }; - 34B28D4F0168194B6EFAC0520EB7A7F4 /* NSImage+Compatibility.h in Headers */ = {isa = PBXBuildFile; fileRef = F55015AACD21AF6274741BBDAC6148E2 /* NSImage+Compatibility.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 353C1D03325B8F3E65F985DA29245F18 /* UIViewController+LayoutHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 23A344AF55814873B0105902E9FBBB2A /* UIViewController+LayoutHelper.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 35D42759A562C482EA5DF574F75CF3B8 /* NSArray+Lookin.h in Headers */ = {isa = PBXBuildFile; fileRef = B937D529B74DB9581A000F395FF3B6F7 /* NSArray+Lookin.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3679603CE8336E00A0BFAA39E10A92D0 /* HWPanModalShadow.h in Headers */ = {isa = PBXBuildFile; fileRef = 039AC3B9A6AA2BDAB5EB71E7A54C1EF5 /* HWPanModalShadow.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 36B3F095DFFC8D2AF2C0A8C523173927 /* HWPanModalContainerView.h in Headers */ = {isa = PBXBuildFile; fileRef = A87C5BAF6B8038E9EE8A33551A798606 /* HWPanModalContainerView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 36F4B09E7C71DCC5CEC6057814033C37 /* UIView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 8179AB093F869B4BCCBBF8427F69555B /* UIView+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 32ACEDCEBE0507A82D6323114A1C74F1 /* UIImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B5075BB968E268BB5D61B393C333DB4 /* UIImageView+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 32F2B91621A2F8F9AD7C8E2B224D73F6 /* SDWebImageDownloaderDecryptor.m in Sources */ = {isa = PBXBuildFile; fileRef = E38A10934CB29F9B2C75A0785209FA84 /* SDWebImageDownloaderDecryptor.m */; }; + 32FF240AE9443A1D2CFE27F50B55F591 /* LKS_MultiplatformAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = EDA0AA2D50C091E5400CDFDEC4B5B802 /* LKS_MultiplatformAdapter.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 332F2099D726E75CEFAF1F734104A066 /* LookinWeakContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = B0922492568B0DD6D1F92C0E3B3A53A1 /* LookinWeakContainer.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3331A013D48A5063B483A51B7E9068ED /* AFURLSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = EA3E73CFAE53223D9EC3DE4B0794DB06 /* AFURLSessionManager.m */; }; + 33D3587AF629B2FA21554DA002D6ACB8 /* SDImageCachesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DFE214BE294126C1B4FFE49DDADA7AEE /* SDImageCachesManager.m */; }; + 34B28D4F0168194B6EFAC0520EB7A7F4 /* NSImage+Compatibility.h in Headers */ = {isa = PBXBuildFile; fileRef = B09C6285E70223CDED72989080A8442A /* NSImage+Compatibility.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 353C1D03325B8F3E65F985DA29245F18 /* UIViewController+LayoutHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DC211B96CB1A7D40B3203E4778066C9 /* UIViewController+LayoutHelper.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 35D42759A562C482EA5DF574F75CF3B8 /* NSArray+Lookin.h in Headers */ = {isa = PBXBuildFile; fileRef = 852A42FAC0EA5F64033033841A03891A /* NSArray+Lookin.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3679603CE8336E00A0BFAA39E10A92D0 /* HWPanModalShadow.h in Headers */ = {isa = PBXBuildFile; fileRef = 568F43CF567335FABEC4825ED4776B19 /* HWPanModalShadow.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 36B3F095DFFC8D2AF2C0A8C523173927 /* HWPanModalContainerView.h in Headers */ = {isa = PBXBuildFile; fileRef = 091DAAA7597B1233173C3BB1DC8D1D79 /* HWPanModalContainerView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 36F4B09E7C71DCC5CEC6057814033C37 /* UIView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 36BEAD7507B8644D14D46C852A6EF20B /* UIView+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; 3777CD89D444CBBB48AE323B303F3FC7 /* ImageIO.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 77F4C0466DFC43C56F1D982F88EF74A0 /* ImageIO.framework */; }; - 37B890ABDC7DD441E6AA662325D412E6 /* MASConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = ED6F94603AF0AF72D292CADE8ABCEEB3 /* MASConstraint.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3800EA1B83FDE869FB2E4B049F519962 /* UIViewController+LookinServer.h in Headers */ = {isa = PBXBuildFile; fileRef = 3753072CB1EE987F4CDC7E86385B9A99 /* UIViewController+LookinServer.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 381E0DBE152CA0D9C66310CB77A20A83 /* HWPanModalInteractiveAnimator.m in Sources */ = {isa = PBXBuildFile; fileRef = 0BE68C7303DE07C8DA01573CDDE9003F /* HWPanModalInteractiveAnimator.m */; }; - 38938E604A7D708E6378A44063EF3512 /* UIImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A1600286757D192233397A2BF1A2371 /* UIImageView+WebCache.m */; }; - 392F62298E0D8C669229E132D791BBF5 /* UIImageView+LookinServer.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C560A21071D707C98AE6CD75AED8BFD /* UIImageView+LookinServer.m */; }; - 3A1AD84C0DC3C256418CC46739024E96 /* SDmetamacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A6A16B78780399804F5DD15816ADE2B /* SDmetamacros.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 3A2FCB914F6EADED828FF05F7E9132AE /* UIView+MJExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = 47F474CA83A8EC338136568BDBFF8343 /* UIView+MJExtension.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3B1C72DC480AB19BD55B6275750D62FE /* NSSet+Lookin.h in Headers */ = {isa = PBXBuildFile; fileRef = D40E6AE30D19137ABA0A5D046329BCCD /* NSSet+Lookin.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3B62431BEF820E7FC779F344AB2A1D17 /* JXCategoryIndicatorLineView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1711B81346B8ED1944B5A8A478A4CF3F /* JXCategoryIndicatorLineView.m */; }; - 3B8EDFF69A68ABD3735E0C6931CA5C95 /* AFURLSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B2D84B5B7090CE22D8AFB107E403CA13 /* AFURLSessionManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3BB69CB142D744367868F834912993CB /* UITextField+LookinServer.m in Sources */ = {isa = PBXBuildFile; fileRef = 877837A5816B3B110C5B763CCBD0ECFD /* UITextField+LookinServer.m */; }; - 3BD85ED8999015326D93D8EEADCCF910 /* HWPanModalPresentationDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 6749EA453DC312E08B14CE8AFDB79F3C /* HWPanModalPresentationDelegate.m */; }; - 3BF23DD02B40D2A2E98FF9D042A5AF4E /* Pods-keyBoard-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 969A9A842778EFB5D62826500DFF4E11 /* Pods-keyBoard-dummy.m */; }; - 3C7815EEC599DD7D42FDEF19B2FF1563 /* SDWebImageOptionsProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FCD0CB41F1E259546B6F8A9BFF05378 /* SDWebImageOptionsProcessor.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3C7EAECB8C573E714C818BA04EB33773 /* UIImage+MultiFormat.h in Headers */ = {isa = PBXBuildFile; fileRef = 35DC020855ECA02C5E2568299594E9C0 /* UIImage+MultiFormat.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3C8F2F868D0C361CAF43E53CDB8EB631 /* SDWebImageCacheSerializer.h in Headers */ = {isa = PBXBuildFile; fileRef = E95C47EFA2CADA467B5A46831F0EA87A /* SDWebImageCacheSerializer.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3CA9E838F014DC32CFCF6AD36F5D7E58 /* HWPanModalInteractiveAnimator.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DAB18271BAF2DB3E49BCAF049FC4F01 /* HWPanModalInteractiveAnimator.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3CE13969772F4180701A575FAB98E978 /* JXPagingView-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 85E262E36BEDDEA0E7B4F4A870DA4314 /* JXPagingView-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3D0BBFEC1921CE71BC240DC18D8BE540 /* SDImageTransformer.m in Sources */ = {isa = PBXBuildFile; fileRef = AC558AE5F168E24878BD4ACF3EE1274A /* SDImageTransformer.m */; }; - 3E3D09700A62280A9EB8D65B97335ED8 /* LKS_CustomDisplayItemsMaker.m in Sources */ = {isa = PBXBuildFile; fileRef = E74AC99A06CC9DE9D81D54044B013F98 /* LKS_CustomDisplayItemsMaker.m */; }; - 3E982309E295BB31C065D62750D0F1FD /* UIView+LSTPV.h in Headers */ = {isa = PBXBuildFile; fileRef = A5262AA56B4C8511CBA390D4808E37F2 /* UIView+LSTPV.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3FF7252DD60182221BB1E5A167C41A07 /* UIProgressView+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = E152B4E044E172623798E791ACCC157E /* UIProgressView+AFNetworking.m */; }; - 40AD5D0AB3ABF7F3A5A4A98BC5B84419 /* LookinAttributesSection.h in Headers */ = {isa = PBXBuildFile; fileRef = B74F835090D47DFE066B4DAD231882AC /* LookinAttributesSection.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 416DA8B2997381F954DBA6E6A53DA4A2 /* NSData+ImageContentType.m in Sources */ = {isa = PBXBuildFile; fileRef = 2132EF8C73164960BCAFD57CF9C7A53F /* NSData+ImageContentType.m */; }; - 41A4AAE7E6024E7AAB83DD22FB42D34D /* UIColor+LookinServer.m in Sources */ = {isa = PBXBuildFile; fileRef = C626E0F07BD081EBE5955DEA5669BF14 /* UIColor+LookinServer.m */; }; - 425C9EA28FBEB7F7FC09A3F4A88C5955 /* SDWebImageError.m in Sources */ = {isa = PBXBuildFile; fileRef = F8A31B7D92D4FBD879F8C39ED3139439 /* SDWebImageError.m */; }; - 4281CC31F4D4EAE690F999C778F17E5B /* JXCategoryViewAnimator.h in Headers */ = {isa = PBXBuildFile; fileRef = E0A4E94FB3CF9B468E72117C85C2E773 /* JXCategoryViewAnimator.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 37B890ABDC7DD441E6AA662325D412E6 /* MASConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = FD61DA71A7253ED59D65D424C86E2C50 /* MASConstraint.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3800EA1B83FDE869FB2E4B049F519962 /* UIViewController+LookinServer.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C7F47A09BE728487DF546FE00CA555E /* UIViewController+LookinServer.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 381E0DBE152CA0D9C66310CB77A20A83 /* HWPanModalInteractiveAnimator.m in Sources */ = {isa = PBXBuildFile; fileRef = 74751305705DEA03873DFA2AF4DDC9B7 /* HWPanModalInteractiveAnimator.m */; }; + 38938E604A7D708E6378A44063EF3512 /* UIImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = FB718B97DF8D94DCF736C973F8184652 /* UIImageView+WebCache.m */; }; + 392F62298E0D8C669229E132D791BBF5 /* UIImageView+LookinServer.m in Sources */ = {isa = PBXBuildFile; fileRef = DA0C012CAB8552E7EA8382B0E5D6B738 /* UIImageView+LookinServer.m */; }; + 3A1AD84C0DC3C256418CC46739024E96 /* SDmetamacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 98B3D67E4B164109B9B94A959496BA25 /* SDmetamacros.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 3A2FCB914F6EADED828FF05F7E9132AE /* UIView+MJExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = 38C2193309DE8B485EA6F0495C08B115 /* UIView+MJExtension.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3B1C72DC480AB19BD55B6275750D62FE /* NSSet+Lookin.h in Headers */ = {isa = PBXBuildFile; fileRef = C1D06F4343D9C630BC102E7BCD9CECCF /* NSSet+Lookin.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3B62431BEF820E7FC779F344AB2A1D17 /* JXCategoryIndicatorLineView.m in Sources */ = {isa = PBXBuildFile; fileRef = B49F76B93F72D361782D7DA99B65ADC9 /* JXCategoryIndicatorLineView.m */; }; + 3B8EDFF69A68ABD3735E0C6931CA5C95 /* AFURLSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1612A7E2EB4D912BD038AFA9FAE11CFD /* AFURLSessionManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3BB69CB142D744367868F834912993CB /* UITextField+LookinServer.m in Sources */ = {isa = PBXBuildFile; fileRef = C64A52A00F5D8A13BA6BD40D1834BF56 /* UITextField+LookinServer.m */; }; + 3BD85ED8999015326D93D8EEADCCF910 /* HWPanModalPresentationDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 1724C0944D7BC65545806EE9EDED203D /* HWPanModalPresentationDelegate.m */; }; + 3C7815EEC599DD7D42FDEF19B2FF1563 /* SDWebImageOptionsProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = FD3C0DF69EC6CFA1DD8299F62B1A84FB /* SDWebImageOptionsProcessor.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3C7EAECB8C573E714C818BA04EB33773 /* UIImage+MultiFormat.h in Headers */ = {isa = PBXBuildFile; fileRef = 517D8EDC9F4BA34E4E4060247125B56D /* UIImage+MultiFormat.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3C8F2F868D0C361CAF43E53CDB8EB631 /* SDWebImageCacheSerializer.h in Headers */ = {isa = PBXBuildFile; fileRef = BD430BA3E5DB115A0F8BF9D6110923AE /* SDWebImageCacheSerializer.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3CA9E838F014DC32CFCF6AD36F5D7E58 /* HWPanModalInteractiveAnimator.h in Headers */ = {isa = PBXBuildFile; fileRef = 47A97040129EEE8B96AEEA0A9B73DA45 /* HWPanModalInteractiveAnimator.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3CE13969772F4180701A575FAB98E978 /* JXPagingView-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = B4319C3394898C8897D6580DAC5A5124 /* JXPagingView-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3D0BBFEC1921CE71BC240DC18D8BE540 /* SDImageTransformer.m in Sources */ = {isa = PBXBuildFile; fileRef = C45DF4498F0949CD4F02FA86BFE50D93 /* SDImageTransformer.m */; }; + 3E3D09700A62280A9EB8D65B97335ED8 /* LKS_CustomDisplayItemsMaker.m in Sources */ = {isa = PBXBuildFile; fileRef = C19EBB7B5E5A5B4CB83F93B794EA02A1 /* LKS_CustomDisplayItemsMaker.m */; }; + 3E982309E295BB31C065D62750D0F1FD /* UIView+LSTPV.h in Headers */ = {isa = PBXBuildFile; fileRef = 6757029D58C1BFD772BCC87D14A52E39 /* UIView+LSTPV.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3FF7252DD60182221BB1E5A167C41A07 /* UIProgressView+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B758502F7753329D591359BA2747831 /* UIProgressView+AFNetworking.m */; }; + 40AD5D0AB3ABF7F3A5A4A98BC5B84419 /* LookinAttributesSection.h in Headers */ = {isa = PBXBuildFile; fileRef = CAE21A3C562355122DA705E505CCA673 /* LookinAttributesSection.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 416DA8B2997381F954DBA6E6A53DA4A2 /* NSData+ImageContentType.m in Sources */ = {isa = PBXBuildFile; fileRef = 928339E7523C1267D5DF15E548454A5E /* NSData+ImageContentType.m */; }; + 41A4AAE7E6024E7AAB83DD22FB42D34D /* UIColor+LookinServer.m in Sources */ = {isa = PBXBuildFile; fileRef = FED91C88820F2942B3A007C5E5D17ACB /* UIColor+LookinServer.m */; }; + 425C9EA28FBEB7F7FC09A3F4A88C5955 /* SDWebImageError.m in Sources */ = {isa = PBXBuildFile; fileRef = A4F1299F85FD74B081B5C5F85EF530B7 /* SDWebImageError.m */; }; + 4281CC31F4D4EAE690F999C778F17E5B /* JXCategoryViewAnimator.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FF761C99D422AE106C31A4A7AE469C7 /* JXCategoryViewAnimator.h */; settings = {ATTRIBUTES = (Public, ); }; }; 431023914A5D2653ABAE7AB54880C9AC /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9D41AAC213895165C450F5576DE42CB2 /* Foundation.framework */; }; - 4334CCEA5B7EA16A4EF26702D287CB07 /* UIScrollView+Helper.h in Headers */ = {isa = PBXBuildFile; fileRef = 22613DFB1026F3E41B141E34C637D600 /* UIScrollView+Helper.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4424E7517B86FE622BCD3D5040FC579C /* JXCategoryTitleCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 00B67A73E7EE0522188FAE4145324D19 /* JXCategoryTitleCell.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 442F468E261A1106C291BF52BDBF9DB7 /* MJRefreshHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 195B648C25562B52954B1E7C1D8964C3 /* MJRefreshHeader.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 447BBB1BCA8E0F2D23634888BED6DA81 /* LookinDashboardBlueprint.m in Sources */ = {isa = PBXBuildFile; fileRef = 2783C33881FB9ED3037D4D66B93FAD7E /* LookinDashboardBlueprint.m */; }; - 44CD842019B1CEA681F820F37A30B7C4 /* SDImageFramePool.h in Headers */ = {isa = PBXBuildFile; fileRef = F86F79271CDA27370B63C4004FB83EF7 /* SDImageFramePool.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 4503182D5F8EF2F02609862026D2D455 /* HWVisualEffectView.h in Headers */ = {isa = PBXBuildFile; fileRef = BC5B799F7FC71DC9649AD62AE8B34DC7 /* HWVisualEffectView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 452C940762F65B125C216F73B369F583 /* MJRefreshStateTrailer.m in Sources */ = {isa = PBXBuildFile; fileRef = B26771C31428D52F8DFB859AE1AC3503 /* MJRefreshStateTrailer.m */; }; + 4334CCEA5B7EA16A4EF26702D287CB07 /* UIScrollView+Helper.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BDFAC11D184E7F4498FC12FE0AFDCFC /* UIScrollView+Helper.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4424E7517B86FE622BCD3D5040FC579C /* JXCategoryTitleCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CF1A36FA548FCE3A4F7DA66625E9583 /* JXCategoryTitleCell.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 442F468E261A1106C291BF52BDBF9DB7 /* MJRefreshHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 16308A5AF08E401B61B68CCD953A0528 /* MJRefreshHeader.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 447BBB1BCA8E0F2D23634888BED6DA81 /* LookinDashboardBlueprint.m in Sources */ = {isa = PBXBuildFile; fileRef = 73A2C1D7BD2A650246BEE1A00F6D836C /* LookinDashboardBlueprint.m */; }; + 44CD842019B1CEA681F820F37A30B7C4 /* SDImageFramePool.h in Headers */ = {isa = PBXBuildFile; fileRef = 449CCE39A5A9EA789B9A284113D1025E /* SDImageFramePool.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 4503182D5F8EF2F02609862026D2D455 /* HWVisualEffectView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E270235979252FF388A0C6D1E54966D /* HWVisualEffectView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 452C940762F65B125C216F73B369F583 /* MJRefreshStateTrailer.m in Sources */ = {isa = PBXBuildFile; fileRef = 29792A8AE7CB7444FE7BA20424B814AD /* MJRefreshStateTrailer.m */; }; 4571A0EA37DC84F39E3830D38A1531AB /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F5B3C0CF01454E7AC9226E88FDFBAE6 /* UIKit.framework */; }; - 45E1583D7EF53489B82C4CA2AD1AD0CF /* MJRefreshBackFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 17D9582F158C09F75D84ECE893151E91 /* MJRefreshBackFooter.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 464A0100327C8531D86BDC31737CCF75 /* LookinAppInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = CB40236F7A3DB0EECDBA370753BEDDD4 /* LookinAppInfo.m */; }; - 4688743B7B845309486559EB7BD5D147 /* SDWebImageCompat.h in Headers */ = {isa = PBXBuildFile; fileRef = AB253C473EBD2DF633A230C7FAA304B7 /* SDWebImageCompat.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 475B4F3E71C293065AAFDB1888696CF6 /* MJRefreshBackGifFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = C746AE302AD12A4D0F6E287CACA690C6 /* MJRefreshBackGifFooter.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 48916DE9521F627589300512ECC2D4A5 /* NSButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A970B89D7ECEFF994ACF22A5493E001 /* NSButton+WebCache.m */; }; - 48EB84614F04E6089393ADDFA4BA8603 /* LSTTimer-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F5F8D57BABE5A9AD2D0BC75B55D1A52 /* LSTTimer-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4A15ABB502D625EBE3E63100664AB822 /* LookinCodingValueType.h in Headers */ = {isa = PBXBuildFile; fileRef = F2698AC3972900E338490644A2E03A2A /* LookinCodingValueType.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 45E1583D7EF53489B82C4CA2AD1AD0CF /* MJRefreshBackFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = F32DF0242A37C60B9E8BEDC175125BB2 /* MJRefreshBackFooter.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 464A0100327C8531D86BDC31737CCF75 /* LookinAppInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = DF85367F662269F3652AFC693AA2B00F /* LookinAppInfo.m */; }; + 4688743B7B845309486559EB7BD5D147 /* SDWebImageCompat.h in Headers */ = {isa = PBXBuildFile; fileRef = B87895ABF5221A865DF2D53247763F89 /* SDWebImageCompat.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 475B4F3E71C293065AAFDB1888696CF6 /* MJRefreshBackGifFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = BBA58A99F7E528A8D41BD96706230160 /* MJRefreshBackGifFooter.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 47C6C10BB05445BCB8CBCA4DADE7E933 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9D41AAC213895165C450F5576DE42CB2 /* Foundation.framework */; }; + 48916DE9521F627589300512ECC2D4A5 /* NSButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 53155231B4EB5B29274A0546D6F39B91 /* NSButton+WebCache.m */; }; + 4A15ABB502D625EBE3E63100664AB822 /* LookinCodingValueType.h in Headers */ = {isa = PBXBuildFile; fileRef = 99712B41FFAFC24C5F649A94D8DD7FFE /* LookinCodingValueType.h */; settings = {ATTRIBUTES = (Public, ); }; }; 4A2D7878579537881DD3859B3359F702 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 638488B4F5FF9C67F848A841B1A34765 /* CoreGraphics.framework */; }; - 4ACC15DF96D179E48E4276AE3C540C7C /* KeyValueObserver.m in Sources */ = {isa = PBXBuildFile; fileRef = E1F236D1BF028AEAD75A9FB3C9DCAE0F /* KeyValueObserver.m */; }; - 4B2C2AE16AE3DDA7417AFCF7952588F1 /* SDImageAssetManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D3543E70B7F1B6F0CB25AB731CA0DFBE /* SDImageAssetManager.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 4C8C34A09D61A3881DFB1A544A2CA2A5 /* JXCategoryFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E96574DDD94EB958E64B0AD7C7B20F2 /* JXCategoryFactory.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4D2C79AB2D24CFEC864F08D913CE7692 /* SDImageCodersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D1EF86D80B6333688465CCC41BA33F7 /* SDImageCodersManager.m */; }; - 4DA2C6099343CD55160ECB3EBDDFE1DF /* NSObject+Lookin.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FD83B41506E28893BC297C4BDAB1B46 /* NSObject+Lookin.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4DCA75BFE1558CE59DFC56607E49B3D2 /* MJRefreshConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = E9598F4E504AE0DA98A0B2DC305F1C83 /* MJRefreshConfig.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4DD9F4BAA95C3527A660D3AAD055CF1E /* HWPanModalContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CAA34C64434033ACBB7F68A74F4D15B /* HWPanModalContentView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4E0FBD829EB07B8D5D2A5F6115457BE7 /* LSTTimer-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C181D8B9B1142624BE8BFFA787AA2854 /* LSTTimer-dummy.m */; }; - 4E964FFE29CFF8613C0029C913F39A05 /* LKS_InbuiltAttrModificationHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C2FE2279B0EA1E9F949E0AF58D09E3B /* LKS_InbuiltAttrModificationHandler.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4EC8DBADA7BB954276351A639EB4398D /* UIBlurEffect+LookinServer.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BC6F317480167EA6C97C3ED771D57CA /* UIBlurEffect+LookinServer.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4ECE7F80A917130DE4045E25D741EAF9 /* JXCategoryTitleCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 3545C9AC3AD500CD4E48A3E2630C521B /* JXCategoryTitleCellModel.m */; }; - 4ED05DB3E43FF6AE1FA22130B2B50F05 /* UIImage+MemoryCacheCost.h in Headers */ = {isa = PBXBuildFile; fileRef = 06EFD395C240E38E2ED0DCAF40CE73FC /* UIImage+MemoryCacheCost.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 50096BAC0F3270FB111E76D32714E579 /* Image+Lookin.m in Sources */ = {isa = PBXBuildFile; fileRef = FB1E7E734FDF6F7CAC668B6BD6A2A014 /* Image+Lookin.m */; }; - 506FC58999564A737C745F2590E9B4D5 /* AFHTTPSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F31829B35104CCEC70FD712B1D4D4E2 /* AFHTTPSessionManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5106193FDEA44A08AAAAB9B8A227CBE9 /* HWPanModalPanGestureDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 95BD516A8F354C5C9CD65BFD30C9BED7 /* HWPanModalPanGestureDelegate.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5111A0A0934551CD2B9DDB1A1CA79FA7 /* SDAnimatedImageRep.m in Sources */ = {isa = PBXBuildFile; fileRef = FBF4C669CA968A448B7E1DD3A141A41C /* SDAnimatedImageRep.m */; }; - 512B9661FC34235E0EEB3A6D3E319B88 /* MJPropertyType.m in Sources */ = {isa = PBXBuildFile; fileRef = 4688EE09ADCEE19CD4BDF95833F7E81D /* MJPropertyType.m */; }; - 5163FC6D715F6881B1FA1AB13DCEF870 /* UICollectionViewLayout+MJRefresh.h in Headers */ = {isa = PBXBuildFile; fileRef = F0FF9B39CB74F30B336CF7D4085E2AE0 /* UICollectionViewLayout+MJRefresh.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5174DD2019966DFDC21B8864453ED3DE /* NSObject+MJClass.m in Sources */ = {isa = PBXBuildFile; fileRef = 96BA563F965A1054AC53D0F3D5BD3AFE /* NSObject+MJClass.m */; }; - 523235228A1C021C67F2E3776A922DC5 /* MJRefreshTrailer.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A91961A508CA556983A4A3F57FB3133 /* MJRefreshTrailer.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 526485EF6D2B62B24DB59122FB94BD42 /* SDDeviceHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 4CF942497E18FEE75DD2CDC6779A790A /* SDDeviceHelper.m */; }; - 52E60EE26D065DB63D272298AC8867DF /* JXCategoryTitleVerticalZoomView.h in Headers */ = {isa = PBXBuildFile; fileRef = 059C3C014AA92686FDCE895211A108CE /* JXCategoryTitleVerticalZoomView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5308E660E723C11E7691D311FD59C459 /* SDDisplayLink.m in Sources */ = {isa = PBXBuildFile; fileRef = 61A0FA60F5E41A8B04C442FE582DA298 /* SDDisplayLink.m */; }; - 53433003112C4FE271EC985803862B61 /* SDWebImageCacheKeyFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = C205DB74EDBD3C80FB36923BD2255DBB /* SDWebImageCacheKeyFilter.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 53C1722650FCAB2637867D0DC31FC3CB /* Lookin_PTUSBHub.h in Headers */ = {isa = PBXBuildFile; fileRef = 3416384E4A531494C7B12CDD1AEA74A1 /* Lookin_PTUSBHub.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 541AD3B0F5EA216EE730ECC6E8B84C31 /* HWPanModalPresentationAnimator.m in Sources */ = {isa = PBXBuildFile; fileRef = 15D78A0355CAA0B846DBC1DAC7B101F4 /* HWPanModalPresentationAnimator.m */; }; - 546DE9D8142C6D8554E083C6FD65D0BE /* JXCategoryIndicatorTriangleView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3381742E54E03DCDB9DD644DF65C4689 /* JXCategoryIndicatorTriangleView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5490C03887ACF6C4EAC25ADFBB509CE5 /* NSSet+Lookin.m in Sources */ = {isa = PBXBuildFile; fileRef = C02B6DB0CED9923894E4B972F8B03882 /* NSSet+Lookin.m */; }; - 54E268C32915CF908E7AA776909B45EB /* MJRefreshConst.m in Sources */ = {isa = PBXBuildFile; fileRef = 7032D81BB8B12F48732F1EBEA7A020D7 /* MJRefreshConst.m */; }; - 55910DBCDF99E39955BE01EAD8251081 /* JXCategoryImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = FAC311E0F10AA1170D905B6C90AE765F /* JXCategoryImageView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 55F7C7F055A18044497F8C88CAE34118 /* SDImageCachesManagerOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = E6B846D03C97210EDD55850D04A8F27A /* SDImageCachesManagerOperation.m */; }; - 561420A20DC0A84258A902E9EB69A15A /* MJRefreshAutoFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = A96A60100BE610809D6E0C7741CF992C /* MJRefreshAutoFooter.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 564714D075CF51356D3D8437846AA6EB /* AFURLRequestSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = 32F3C5B0B7D11631504E27D25E8CB5A2 /* AFURLRequestSerialization.m */; }; - 56D8A7EAE4D72FF6C23421CAB6F21504 /* MJPropertyType.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E2D9F4632DB7036D701CB57007800AB /* MJPropertyType.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 56E800EB3B2BE8AE0BA45A30974D7920 /* Masonry-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 99302CD0854353E1FA9C8EE70F3FCF59 /* Masonry-dummy.m */; }; - 56F1B543BC54204336CB5E50B60F719F /* Color+Lookin.h in Headers */ = {isa = PBXBuildFile; fileRef = EEB6F4442CB80A88D94B35721714C121 /* Color+Lookin.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5735091665AC18FAD028EB68786A85AE /* LKS_CustomAttrGroupsMaker.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B2ACD52F18B25CE1FB40A0F1DF81B4A /* LKS_CustomAttrGroupsMaker.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 579DDC4FE78455D88E0350C3268D96C4 /* JXCategoryIndicatorComponentView.m in Sources */ = {isa = PBXBuildFile; fileRef = D4E6C9FAE7DD5348F64FBD66AA03DA5B /* JXCategoryIndicatorComponentView.m */; }; - 58F7CE37BB4CB3BE806B68A502E6E1A7 /* SDWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 45880427FEDFE00B81EA46DB6F5AFD52 /* SDWeakProxy.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 596180E0EC9F46D12BA840DC4AA62659 /* UIImage+MemoryCacheCost.m in Sources */ = {isa = PBXBuildFile; fileRef = 5107F5A871AC7AEDAD8C78C1F1AB8E40 /* UIImage+MemoryCacheCost.m */; }; - 597E390C0BBB75B8045B651C487C2034 /* SDImageAWebPCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 2E5DB75D5C223CDC5703FA115447A148 /* SDImageAWebPCoder.m */; }; - 5A6D3BE92C77ED70C397567996DFAEB9 /* AFHTTPSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9DA5F48CB9575D0E2C775D8D7C262C14 /* AFHTTPSessionManager.m */; }; - 5A8BC91257FF6B36237BF09A7A6EADF6 /* LookinObject.m in Sources */ = {isa = PBXBuildFile; fileRef = 05B3B08A0927761DC2CBA02E9412CD21 /* LookinObject.m */; }; - 5AF22814CD055B553AD9D78BE54B94E1 /* UIProgressView+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 7446E6EDA4118B08C0D538CAA41C47AA /* UIProgressView+AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5B08596E856E4CC2F34A8A2372F9F764 /* NSArray+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = D3CF8B366EB9A41FEDB94035F404215D /* NSArray+MASAdditions.m */; }; - 5BB6B99986FD7111B3AEBE931C7F507B /* MJRefreshAutoStateFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 02E945EEF3757BDF2B47E65C51C4D6D6 /* MJRefreshAutoStateFooter.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5BD5D9B8F61C124A62C75D9AC36A07BD /* MJRefreshTrailer.m in Sources */ = {isa = PBXBuildFile; fileRef = 5128E7CF3F35BE25186575F63661EEF6 /* MJRefreshTrailer.m */; }; - 5C8279C226EB028B044C5A0F4AC5A91A /* SDAssociatedObject.h in Headers */ = {isa = PBXBuildFile; fileRef = C0ECED1A3FCBB93D40B1BFFF5AE2F27D /* SDAssociatedObject.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 5CAB535753B28B463140F421E9B00136 /* JXCategoryIndicatorCell.h in Headers */ = {isa = PBXBuildFile; fileRef = BF9910B7B2FF86AF620A45955A338072 /* JXCategoryIndicatorCell.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5D0DEC179A7B4143769C663082E2662A /* LKS_ExportManager.h in Headers */ = {isa = PBXBuildFile; fileRef = EB3C413B4ED21D886E50FCBC0761408E /* LKS_ExportManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5DCBA14510E091D6A1CE499B08B794B5 /* UIImage+Metadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EA0FACBE46F43AB7A99266BBBF20510 /* UIImage+Metadata.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5DF02901155278BE109057E17C7C1D99 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 360A9029323DBF687A82BCD2C22F386C /* PrivacyInfo.xcprivacy */; }; - 5DFCBADAC7D0FAC82C84A6C8E7BF1DA6 /* MJRefreshStateHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 13B6B935F583A1ED5234B7E3DF044521 /* MJRefreshStateHeader.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5E10328A83E05D0015D7459FAAEF121D /* SDGraphicsImageRenderer.h in Headers */ = {isa = PBXBuildFile; fileRef = 3653F678D1C9DBE34F6262A65263C642 /* SDGraphicsImageRenderer.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5EE53074B8A35D48AB76CAF38C88A37A /* JXCategoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = DACFBFCC588CFB73AE8A6DB153DEA42F /* JXCategoryView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5F45735DF355530CC955066D3C007E19 /* MASViewConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = DEDFC34DB720F4FD92E634E486425845 /* MASViewConstraint.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5F5426608460A8B17C1AE5C2351BAA19 /* UIScrollView+EmptyDataSet.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F77AB571A5252972C84B67134918B5F /* UIScrollView+EmptyDataSet.m */; }; - 5FDC4239F7B651092BF582D0F460BAD4 /* UIView+MJExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 239F725CB21A7ABF0EDB35FC92732A5C /* UIView+MJExtension.m */; }; - 6002CB94684D7C786700D2A294146AEC /* Color+Lookin.m in Sources */ = {isa = PBXBuildFile; fileRef = F2A8643D9113999359ADC6C79DA48111 /* Color+Lookin.m */; }; - 61461B0D9D7B81C3F8D24066D9A19DCE /* MJRefreshGifHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = C4B0E298E792EE24705C7E8457669228 /* MJRefreshGifHeader.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 61507E402F1F7C58BF119995A0479A22 /* NSArray+MASShorthandAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A8DC30D2C209AB66D8E812915E6F319 /* NSArray+MASShorthandAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 616A8338C42FB01748DF1BDDA944858D /* UIView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = ECA422AB0F45E3F4B650188FEE476C8C /* UIView+WebCache.m */; }; - 61857C821395B868C65A8FFE4DA1B4E3 /* MJExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = E5B1C13BB84FC1E79BC9BB233B793A5A /* MJExtension.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 61EAFBCDC83B2C603918B3C9D9A73A18 /* LookinConnectionAttachment.h in Headers */ = {isa = PBXBuildFile; fileRef = F3AD144DF03231D478D237DCFC615D36 /* LookinConnectionAttachment.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6204F3E4E75772BB6CAB13CD53D9D93E /* JXPagerSmoothView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F178706A5ED2B8C0CCCEA56CC4A04B6 /* JXPagerSmoothView.m */; }; - 620A0FFFDE5AEF215E28135566106BA4 /* JXCategoryBaseView.m in Sources */ = {isa = PBXBuildFile; fileRef = 72F67C5C9E4A93AFE6FF113487609183 /* JXCategoryBaseView.m */; }; - 62FE895DF9D65A2955A275D909ECBE18 /* SDAnimatedImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 635235003B3FEDB8B457A8FFF46C69E3 /* SDAnimatedImageView.m */; }; - 6525ECE1CAFC1259F9E6E5FDDE6CF218 /* UIVisualEffectView+LookinServer.h in Headers */ = {isa = PBXBuildFile; fileRef = D013F3B6606D04CFD12051F02350DB55 /* UIVisualEffectView+LookinServer.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4ACC15DF96D179E48E4276AE3C540C7C /* KeyValueObserver.m in Sources */ = {isa = PBXBuildFile; fileRef = A2350DF4D8FE6C892E64B8C644667527 /* KeyValueObserver.m */; }; + 4B2C2AE16AE3DDA7417AFCF7952588F1 /* SDImageAssetManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F5507B4A6BD90BF5F74B1AAC009AD90 /* SDImageAssetManager.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 4C8C34A09D61A3881DFB1A544A2CA2A5 /* JXCategoryFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C9E2AC9C9AE14EBBFDCDBBA925613E4 /* JXCategoryFactory.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4D2C79AB2D24CFEC864F08D913CE7692 /* SDImageCodersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 03700B93F7A3FF6F3675D80E5DB1C1C7 /* SDImageCodersManager.m */; }; + 4DA2C6099343CD55160ECB3EBDDFE1DF /* NSObject+Lookin.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A2BDE1ACE119E645C72F92B4CCAECF4 /* NSObject+Lookin.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4DCA75BFE1558CE59DFC56607E49B3D2 /* MJRefreshConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B4792E0E693278C27DB918B70E58272 /* MJRefreshConfig.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4DD9F4BAA95C3527A660D3AAD055CF1E /* HWPanModalContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = E6CAC4483459A4704E779D629644670B /* HWPanModalContentView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4E964FFE29CFF8613C0029C913F39A05 /* LKS_InbuiltAttrModificationHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B8796E86BD11BC29D00EED72E50AE91 /* LKS_InbuiltAttrModificationHandler.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4EC8DBADA7BB954276351A639EB4398D /* UIBlurEffect+LookinServer.h in Headers */ = {isa = PBXBuildFile; fileRef = C41AE199679E3EEC03FA1272FE103027 /* UIBlurEffect+LookinServer.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4ECE7F80A917130DE4045E25D741EAF9 /* JXCategoryTitleCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = B70A750F053AB9B0B60CBF456ED577A9 /* JXCategoryTitleCellModel.m */; }; + 4ED05DB3E43FF6AE1FA22130B2B50F05 /* UIImage+MemoryCacheCost.h in Headers */ = {isa = PBXBuildFile; fileRef = 0055AF44029FABEF5E29D1BC1B86CC15 /* UIImage+MemoryCacheCost.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 50096BAC0F3270FB111E76D32714E579 /* Image+Lookin.m in Sources */ = {isa = PBXBuildFile; fileRef = C6553D3214536278C24D990CC36267F3 /* Image+Lookin.m */; }; + 506FC58999564A737C745F2590E9B4D5 /* AFHTTPSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FB614FC70886C761E2BA7E9C7E7F2D88 /* AFHTTPSessionManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5106193FDEA44A08AAAAB9B8A227CBE9 /* HWPanModalPanGestureDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = F764EB4004D4A21398D072493BD19D56 /* HWPanModalPanGestureDelegate.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5111A0A0934551CD2B9DDB1A1CA79FA7 /* SDAnimatedImageRep.m in Sources */ = {isa = PBXBuildFile; fileRef = C94F3031AB6C5451E9610DBD24FE9029 /* SDAnimatedImageRep.m */; }; + 512B9661FC34235E0EEB3A6D3E319B88 /* MJPropertyType.m in Sources */ = {isa = PBXBuildFile; fileRef = 073DE0C455B2CE33A0FBA3C6ECF4F8CF /* MJPropertyType.m */; }; + 5163FC6D715F6881B1FA1AB13DCEF870 /* UICollectionViewLayout+MJRefresh.h in Headers */ = {isa = PBXBuildFile; fileRef = 70021D526E8906DE61E9D2D0F92A78C3 /* UICollectionViewLayout+MJRefresh.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5174DD2019966DFDC21B8864453ED3DE /* NSObject+MJClass.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D149C2EB765D348E439D96EC2A80A04 /* NSObject+MJClass.m */; }; + 523235228A1C021C67F2E3776A922DC5 /* MJRefreshTrailer.h in Headers */ = {isa = PBXBuildFile; fileRef = 572433DB55AF2085E2E4D419FCE37679 /* MJRefreshTrailer.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 526485EF6D2B62B24DB59122FB94BD42 /* SDDeviceHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = F947DB2E34F4112ED83356B8AA944880 /* SDDeviceHelper.m */; }; + 52E60EE26D065DB63D272298AC8867DF /* JXCategoryTitleVerticalZoomView.h in Headers */ = {isa = PBXBuildFile; fileRef = 996C55702A2E4E7B3785C0C5454598C9 /* JXCategoryTitleVerticalZoomView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5308E660E723C11E7691D311FD59C459 /* SDDisplayLink.m in Sources */ = {isa = PBXBuildFile; fileRef = 1679E08A4A241FB86455E71FDFB20D9F /* SDDisplayLink.m */; }; + 53433003112C4FE271EC985803862B61 /* SDWebImageCacheKeyFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = B4F7FC0CFCBE2143A4999C2F356D2B47 /* SDWebImageCacheKeyFilter.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 53C1722650FCAB2637867D0DC31FC3CB /* Lookin_PTUSBHub.h in Headers */ = {isa = PBXBuildFile; fileRef = 210B700E8324769F741C26126E6B1F4A /* Lookin_PTUSBHub.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 541AD3B0F5EA216EE730ECC6E8B84C31 /* HWPanModalPresentationAnimator.m in Sources */ = {isa = PBXBuildFile; fileRef = 831897EBD9EF72C4D55D02DE399C410A /* HWPanModalPresentationAnimator.m */; }; + 546DE9D8142C6D8554E083C6FD65D0BE /* JXCategoryIndicatorTriangleView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B766998FBEAD558A15F06134D5A9335 /* JXCategoryIndicatorTriangleView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5490C03887ACF6C4EAC25ADFBB509CE5 /* NSSet+Lookin.m in Sources */ = {isa = PBXBuildFile; fileRef = E312EC8FB74A492C6D5A647700644AC4 /* NSSet+Lookin.m */; }; + 54E268C32915CF908E7AA776909B45EB /* MJRefreshConst.m in Sources */ = {isa = PBXBuildFile; fileRef = 8638AEC16F5A3F7D05EF0F7C39544261 /* MJRefreshConst.m */; }; + 55910DBCDF99E39955BE01EAD8251081 /* JXCategoryImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 31C9A23E37AE09BB9DC1BC766BD3A6AA /* JXCategoryImageView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 55F7C7F055A18044497F8C88CAE34118 /* SDImageCachesManagerOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = EE9E5D3590E1EC14CD269A8B340CE3F0 /* SDImageCachesManagerOperation.m */; }; + 561420A20DC0A84258A902E9EB69A15A /* MJRefreshAutoFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = DE7E60B5B6A0850596F935D95CAFE167 /* MJRefreshAutoFooter.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 564714D075CF51356D3D8437846AA6EB /* AFURLRequestSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = DE378B71C4559C86FA84F1AB2F15BD03 /* AFURLRequestSerialization.m */; }; + 56D8A7EAE4D72FF6C23421CAB6F21504 /* MJPropertyType.h in Headers */ = {isa = PBXBuildFile; fileRef = A0329494F5B3BBF4A9C54DD83622388B /* MJPropertyType.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 56E800EB3B2BE8AE0BA45A30974D7920 /* Masonry-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 07001E763AE097A75E1AFBEB80197373 /* Masonry-dummy.m */; }; + 56F1B543BC54204336CB5E50B60F719F /* Color+Lookin.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BE10EB8B74E3D1DE4172EF863BC22F8 /* Color+Lookin.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5735091665AC18FAD028EB68786A85AE /* LKS_CustomAttrGroupsMaker.h in Headers */ = {isa = PBXBuildFile; fileRef = 52FF07E10C8C0B816653B6836CCFFD04 /* LKS_CustomAttrGroupsMaker.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 579DDC4FE78455D88E0350C3268D96C4 /* JXCategoryIndicatorComponentView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D490F15AED6B55BCD64F4D5193A9375 /* JXCategoryIndicatorComponentView.m */; }; + 58852265A6A355CDF8D25BCD71F54F3D /* Pods-keyBoard-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 969A9A842778EFB5D62826500DFF4E11 /* Pods-keyBoard-dummy.m */; }; + 58F7CE37BB4CB3BE806B68A502E6E1A7 /* SDWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = A92BC89EBEE6C3CE964CA994B506EA43 /* SDWeakProxy.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 596180E0EC9F46D12BA840DC4AA62659 /* UIImage+MemoryCacheCost.m in Sources */ = {isa = PBXBuildFile; fileRef = 0451FF8513ABCE79BA473B450192579B /* UIImage+MemoryCacheCost.m */; }; + 597E390C0BBB75B8045B651C487C2034 /* SDImageAWebPCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = BC30CFC7778FEADF9DCBF0A4ABA1769C /* SDImageAWebPCoder.m */; }; + 5A6D3BE92C77ED70C397567996DFAEB9 /* AFHTTPSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A11C415AC80BAC0B06685E1F8AC7C7C8 /* AFHTTPSessionManager.m */; }; + 5A8BC91257FF6B36237BF09A7A6EADF6 /* LookinObject.m in Sources */ = {isa = PBXBuildFile; fileRef = CFC8ED8D34DD2679124911EB0F515607 /* LookinObject.m */; }; + 5AF22814CD055B553AD9D78BE54B94E1 /* UIProgressView+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = EB461C49F04DBE8D8B709BDAA4911ADC /* UIProgressView+AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5B08596E856E4CC2F34A8A2372F9F764 /* NSArray+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E34DAE4904CE87FBB70688EA36DF9D3 /* NSArray+MASAdditions.m */; }; + 5BB6B99986FD7111B3AEBE931C7F507B /* MJRefreshAutoStateFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C065D632F2F749CBD48B178A68B1631 /* MJRefreshAutoStateFooter.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5BD5D9B8F61C124A62C75D9AC36A07BD /* MJRefreshTrailer.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C64D6AC35DE27CAD74CA154541AF1C9 /* MJRefreshTrailer.m */; }; + 5C8279C226EB028B044C5A0F4AC5A91A /* SDAssociatedObject.h in Headers */ = {isa = PBXBuildFile; fileRef = E4BFFACAA945CC17167910BF3C319571 /* SDAssociatedObject.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 5CAB535753B28B463140F421E9B00136 /* JXCategoryIndicatorCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 913F72595D3AEFAFE006FD96A54FD8DA /* JXCategoryIndicatorCell.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5D0DEC179A7B4143769C663082E2662A /* LKS_ExportManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C47102257C212ED978684D39466579B /* LKS_ExportManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5DCBA14510E091D6A1CE499B08B794B5 /* UIImage+Metadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 429004AF40A48DE835234068590E6A94 /* UIImage+Metadata.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5DFCBADAC7D0FAC82C84A6C8E7BF1DA6 /* MJRefreshStateHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = F8CEEFBE4317D04F4FD181E44C90A119 /* MJRefreshStateHeader.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5E10328A83E05D0015D7459FAAEF121D /* SDGraphicsImageRenderer.h in Headers */ = {isa = PBXBuildFile; fileRef = D444527057532BACBF8EC98BE62D3E03 /* SDGraphicsImageRenderer.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5EE53074B8A35D48AB76CAF38C88A37A /* JXCategoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = 892976CDE28E9BEF86BFABB5F84E72F6 /* JXCategoryView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5EFCAC311A0285F51E8B1B0F7416D7D8 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9D41AAC213895165C450F5576DE42CB2 /* Foundation.framework */; }; + 5F45735DF355530CC955066D3C007E19 /* MASViewConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = 6EB329DC3D8A252CA69C19DAF330A784 /* MASViewConstraint.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5F5426608460A8B17C1AE5C2351BAA19 /* UIScrollView+EmptyDataSet.m in Sources */ = {isa = PBXBuildFile; fileRef = 45FCB10C5ADD911EC17F1E6BAAFE9892 /* UIScrollView+EmptyDataSet.m */; }; + 5FDC4239F7B651092BF582D0F460BAD4 /* UIView+MJExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 60696FE70F42B1A0CD7B0614C2A2F16C /* UIView+MJExtension.m */; }; + 6002CB94684D7C786700D2A294146AEC /* Color+Lookin.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B2681504ECC11F7B0563ECF0A1FDDFA /* Color+Lookin.m */; }; + 61461B0D9D7B81C3F8D24066D9A19DCE /* MJRefreshGifHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 7718D3A1CB256B2263AD76B8EFDC9B86 /* MJRefreshGifHeader.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 61507E402F1F7C58BF119995A0479A22 /* NSArray+MASShorthandAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 986324EA3CC9A3BDF0E5C7B1763862EE /* NSArray+MASShorthandAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 616A8338C42FB01748DF1BDDA944858D /* UIView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = F8CCC7FB49429A8093BC8191C6474D58 /* UIView+WebCache.m */; }; + 61857C821395B868C65A8FFE4DA1B4E3 /* MJExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = 13AC6B7EC0E45B7BC751451206C8C575 /* MJExtension.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 61EAFBCDC83B2C603918B3C9D9A73A18 /* LookinConnectionAttachment.h in Headers */ = {isa = PBXBuildFile; fileRef = 10DBEAC7DAAC95D5A947ACA061058C0B /* LookinConnectionAttachment.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6204F3E4E75772BB6CAB13CD53D9D93E /* JXPagerSmoothView.m in Sources */ = {isa = PBXBuildFile; fileRef = CF46C0579CB3C54966C0F025487DB215 /* JXPagerSmoothView.m */; }; + 620A0FFFDE5AEF215E28135566106BA4 /* JXCategoryBaseView.m in Sources */ = {isa = PBXBuildFile; fileRef = 39D939E1825294C23871CD06F0A1E6A2 /* JXCategoryBaseView.m */; }; + 62FE895DF9D65A2955A275D909ECBE18 /* SDAnimatedImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 883434364AD74D3F77868A0CF2FB7A09 /* SDAnimatedImageView.m */; }; + 6525ECE1CAFC1259F9E6E5FDDE6CF218 /* UIVisualEffectView+LookinServer.h in Headers */ = {isa = PBXBuildFile; fileRef = 9ABEB6B0A44AC8BCBC6CB1A8A8A9A0FF /* UIVisualEffectView+LookinServer.h */; settings = {ATTRIBUTES = (Public, ); }; }; 659D38386A3E09422812283BF27D71D1 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9D41AAC213895165C450F5576DE42CB2 /* Foundation.framework */; }; - 6630C0B541E50903F9AD81FD847CFE7A /* JXCategoryIndicatorBackgroundView.m in Sources */ = {isa = PBXBuildFile; fileRef = 74444E41B3920B9EB4DA66DCD2975612 /* JXCategoryIndicatorBackgroundView.m */; }; - 67178A8153B1A2F1D0D544B8093E23C5 /* SDAnimatedImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = D547696F5943987BC61D389F16B201E8 /* SDAnimatedImageView+WebCache.m */; }; - 676775CB29378BB6CA3CA5992E9C6A99 /* SDImageIOAnimatedCoderInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 06077AACB035D8452C9F730B2E1F00DF /* SDImageIOAnimatedCoderInternal.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 67FCC0F9B42B1C20A66E99A3D56BED18 /* LookinStaticAsyncUpdateTask.h in Headers */ = {isa = PBXBuildFile; fileRef = A7A769F7014A1F30EE6690E054898162 /* LookinStaticAsyncUpdateTask.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 683D708C157C95ADB467BDD2230BD4E3 /* UITextField+LookinServer.h in Headers */ = {isa = PBXBuildFile; fileRef = 94807C278EC259800EBCD3A346749877 /* UITextField+LookinServer.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 68C3E98F8B9D6035962F29AE025DA891 /* UIImage+LookinServer.m in Sources */ = {isa = PBXBuildFile; fileRef = E075739451FCFAA914670EB353642C16 /* UIImage+LookinServer.m */; }; - 69345CBCB31076EBF8A2C5885AF973AB /* MJRefreshComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C0E4900E01624D5262A1ED1DF2F6D35 /* MJRefreshComponent.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 694B8697854A776E32032999B2EF1FEA /* UIImage+Metadata.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B5C2096D95608EEB566217452868E46 /* UIImage+Metadata.m */; }; - 6960FF2C4D61A09722930B33B1C7135D /* LKS_ObjectRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 8127266FF8D9AAE89CDF3511D05BB245 /* LKS_ObjectRegistry.m */; }; - 69A06A02F52EB26259FAD1DF6B121BE1 /* SDCallbackQueue.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E8762E22AB8C87B76E6D94D44665136 /* SDCallbackQueue.m */; }; - 69AB6A513D5F36D7360FEF4FDA1D60D0 /* UIView+WebCacheState.h in Headers */ = {isa = PBXBuildFile; fileRef = B072B2B3BF7FE061CC694AE00BCF5858 /* UIView+WebCacheState.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 69E353C99C6EEA3C93CCF2E526460B9D /* UIScrollView+MJRefresh.h in Headers */ = {isa = PBXBuildFile; fileRef = 241FDB4FE9E3CE45C4854F0FEB6F8BAF /* UIScrollView+MJRefresh.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 69F6E66A089C40FB1063DE15499BCFDE /* LKS_Helper.m in Sources */ = {isa = PBXBuildFile; fileRef = 38A98EA0745C9E839DCFD56B22BF1256 /* LKS_Helper.m */; }; - 6A19379E3B0370EDA447743C9B1A1379 /* UIImageView+HighlightedWebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 806C18993732E8D418AEA50EC6162EDC /* UIImageView+HighlightedWebCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6B0978C9398336656EE309E62060AEAB /* SDImageAssetManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9F94B604866DB37515D32D88635EFEE2 /* SDImageAssetManager.m */; }; - 6B5C3592B5E911E833D067D0BC785B1A /* SDImageFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C3B1F50C3A3E82B67AE98F2BAAD5C3C /* SDImageFrame.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6B9D333C18DDBF4E7CC889F7FDE05EEA /* JXCategoryDotView.h in Headers */ = {isa = PBXBuildFile; fileRef = 50BCF4AA1A75105CC04AA446B0DB9B40 /* JXCategoryDotView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6BC2A615678C8BAE9F34ABA68BFDEF78 /* LKS_AttrModificationPatchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 908A8A591A12931E59C177277E1D126D /* LKS_AttrModificationPatchHandler.m */; }; - 6BE86A0FFB0D69C6098CC75E1FB4E8B5 /* JXCategoryIndicatorCellModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B3FF5D113848A5A9AC244C579FF1441 /* JXCategoryIndicatorCellModel.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6BF5DB46D42D8B9D536C870EC77BF4A3 /* JXCategoryIndicatorBallView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A60D0CF9AE4E6671E2A6BBECEE57E4D /* JXCategoryIndicatorBallView.m */; }; - 6C57809DCEA4B6C0CA79918A69FD75DE /* LKS_ConnectionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F1C50876E480E256FAA99FC38F2BC478 /* LKS_ConnectionManager.m */; }; - 6C76DB1B99B98C951F687DE80FE6F463 /* JXPagerListRefreshView.m in Sources */ = {isa = PBXBuildFile; fileRef = 603287955CE071E6EBDC96A98AB97750 /* JXPagerListRefreshView.m */; }; - 6C85CA8D99E50C137D056B6057DAC58A /* UIRefreshControl+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = BEC06B30EADD5F0931B350F94CD4D15C /* UIRefreshControl+AFNetworking.m */; }; - 6CA0B4A9E7B2957063163BC673F355CD /* AFAutoPurgingImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A984C0F36AC5CCB478D87C1F7E4019D /* AFAutoPurgingImageCache.m */; }; - 6CE8701D161A4BC0860FAF3951762A34 /* LookinHierarchyFile.m in Sources */ = {isa = PBXBuildFile; fileRef = 16E6E00D729B1498CE18200F50778930 /* LookinHierarchyFile.m */; }; - 6D637D02F5EE50D21C8548061956C898 /* UIViewController+Presentation.h in Headers */ = {isa = PBXBuildFile; fileRef = 201E2681B892F05C3D7CAFE9E9927D15 /* UIViewController+Presentation.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6DE6C7F0FA965828E4FCE687BF75FBBE /* MJRefreshAutoNormalFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D2CC2D1F9AB2D4CFC68B6327C2793C5 /* MJRefreshAutoNormalFooter.m */; }; - 6E4DE8085E69AD1DDB49B059DCE286DB /* HWBackgroundConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = ED71DE4537C6ECADC81696A80C943E64 /* HWBackgroundConfig.m */; }; - 6E66305665DBCFBCF5B2480BF705D500 /* SDWebImageTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 28EBA38DF7DE3C55A1DCF1C9536E3712 /* SDWebImageTransition.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6EFC0630CB2761A2B1FC47176CCD62D1 /* LookinCustomDisplayItemInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = CF0E98CA3E42AAC3B854E232BB1AF7FB /* LookinCustomDisplayItemInfo.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6EFEEE3AE22E97DCEC4F5A3B88F56FC7 /* SDImageLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = FA395F2DBB98D70F218443EA65E0D442 /* SDImageLoader.m */; }; - 6F3637EE643EABB1DE9212EA68649A64 /* UIColor+SDHexString.m in Sources */ = {isa = PBXBuildFile; fileRef = E29E39BBB558CC51A6DB91379351B72E /* UIColor+SDHexString.m */; }; - 6F3A575F2B9E1CEB696248B9CB96F357 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = C1227D6957584FA14F5EFE311854C54A /* PrivacyInfo.xcprivacy */; }; - 6F75FDB9BE37C9A8473F97B1696B5D09 /* JXCategoryListContainerView.h in Headers */ = {isa = PBXBuildFile; fileRef = E25EECD78C776DB2FDB519D3AA7CB0BD /* JXCategoryListContainerView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7053A9EB6335BEAC9EFDF2D5320E6E2A /* UIView+HW_Frame.m in Sources */ = {isa = PBXBuildFile; fileRef = B444EEABD213A46C07AC5F1B8D73FBF1 /* UIView+HW_Frame.m */; }; - 7074EA7FCC90B4967A437F5C43496828 /* SDDisplayLink.h in Headers */ = {isa = PBXBuildFile; fileRef = A5C74D4E7CA539C956587A3615702D24 /* SDDisplayLink.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 70D30BC7134E3C8006BF0B6A4B438057 /* JXCategoryTitleImageCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 639A45B880AEBFE1C16D4A9F3AA3D49C /* JXCategoryTitleImageCell.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 711D32EF4A9901567A488291603BF906 /* SDWebImage.h in Headers */ = {isa = PBXBuildFile; fileRef = BB4D65769822C57911F4A84B9F8FADFA /* SDWebImage.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 713D162A627185DA38847832AB5BDA44 /* LSTPopView.h in Headers */ = {isa = PBXBuildFile; fileRef = BF40FB09CDD92326BB3177C14DF172AD /* LSTPopView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 71538A1D21015F459964BA625D5EE90A /* NSObject+MJClass.h in Headers */ = {isa = PBXBuildFile; fileRef = F7CD4CF41A222A66B3E435AB32DF697D /* NSObject+MJClass.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 717F76926C7BCB5B10C3037AD9239084 /* SDImageIOCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = D2F471FC57FF6DD1F698134B35D27C95 /* SDImageIOCoder.m */; }; - 71BEB1D9532900291A5A24B1C038516F /* UIColor+SDHexString.h in Headers */ = {isa = PBXBuildFile; fileRef = 368AF39857A6659131D7CD15698E6867 /* UIColor+SDHexString.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 71F2B8CBB99087F348C472230200586F /* SDGraphicsImageRenderer.m in Sources */ = {isa = PBXBuildFile; fileRef = FC52B8F222678A49BF1BA307CD9A7777 /* SDGraphicsImageRenderer.m */; }; - 72157F8282836C3F6D65008E2F193655 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9D41AAC213895165C450F5576DE42CB2 /* Foundation.framework */; }; + 6630C0B541E50903F9AD81FD847CFE7A /* JXCategoryIndicatorBackgroundView.m in Sources */ = {isa = PBXBuildFile; fileRef = D68722AFBA338282E0B3C89AFE0F83AC /* JXCategoryIndicatorBackgroundView.m */; }; + 67178A8153B1A2F1D0D544B8093E23C5 /* SDAnimatedImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = A2C2A9B920BB92B872BA2AC2EA086220 /* SDAnimatedImageView+WebCache.m */; }; + 676775CB29378BB6CA3CA5992E9C6A99 /* SDImageIOAnimatedCoderInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = EF1815C1F114106321929B2F631067E5 /* SDImageIOAnimatedCoderInternal.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 67FCC0F9B42B1C20A66E99A3D56BED18 /* LookinStaticAsyncUpdateTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 09799A44FC43F3184E20B590CC73FFC7 /* LookinStaticAsyncUpdateTask.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 683D708C157C95ADB467BDD2230BD4E3 /* UITextField+LookinServer.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D2F2FDA20E8BC9884D1E9ED05D83DDF /* UITextField+LookinServer.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 68C3E98F8B9D6035962F29AE025DA891 /* UIImage+LookinServer.m in Sources */ = {isa = PBXBuildFile; fileRef = 20C453B83E1025092DAD587080018B43 /* UIImage+LookinServer.m */; }; + 69345CBCB31076EBF8A2C5885AF973AB /* MJRefreshComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E9C6ED309FB0F6481FF6639AA9C417B /* MJRefreshComponent.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 694B8697854A776E32032999B2EF1FEA /* UIImage+Metadata.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E5C516541F7C7AC40E990C05307FEEF /* UIImage+Metadata.m */; }; + 6960FF2C4D61A09722930B33B1C7135D /* LKS_ObjectRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = CB5214881D82D6C122FB4D3B471F9D93 /* LKS_ObjectRegistry.m */; }; + 69A06A02F52EB26259FAD1DF6B121BE1 /* SDCallbackQueue.m in Sources */ = {isa = PBXBuildFile; fileRef = 7BD134826FCB54429F667B8DBF296710 /* SDCallbackQueue.m */; }; + 69AB6A513D5F36D7360FEF4FDA1D60D0 /* UIView+WebCacheState.h in Headers */ = {isa = PBXBuildFile; fileRef = 919C930C4E0162377E3C95D0F6F11177 /* UIView+WebCacheState.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 69E353C99C6EEA3C93CCF2E526460B9D /* UIScrollView+MJRefresh.h in Headers */ = {isa = PBXBuildFile; fileRef = DE0511947F57D1CF3F274B6414AE449B /* UIScrollView+MJRefresh.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 69F6E66A089C40FB1063DE15499BCFDE /* LKS_Helper.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D2B4D757199E020DE43661B60EB2819 /* LKS_Helper.m */; }; + 6A19379E3B0370EDA447743C9B1A1379 /* UIImageView+HighlightedWebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 855BA7199BD9AC7B4687AF3F66E21279 /* UIImageView+HighlightedWebCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6B0978C9398336656EE309E62060AEAB /* SDImageAssetManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 87B2A7EE05A20B3EDDFE045A6B7911E5 /* SDImageAssetManager.m */; }; + 6B5C3592B5E911E833D067D0BC785B1A /* SDImageFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D8BE2762FA18EF88A5BAD861C739B02 /* SDImageFrame.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6B9D333C18DDBF4E7CC889F7FDE05EEA /* JXCategoryDotView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EFBD2E7A88C44123D980C42CB8702A4 /* JXCategoryDotView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6BC2A615678C8BAE9F34ABA68BFDEF78 /* LKS_AttrModificationPatchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = DEFCE7D8BFD813860A380F7F5B5EB401 /* LKS_AttrModificationPatchHandler.m */; }; + 6BE86A0FFB0D69C6098CC75E1FB4E8B5 /* JXCategoryIndicatorCellModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EFCD05B81004D2C239BFBEBEE4DC3D5 /* JXCategoryIndicatorCellModel.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6BF5DB46D42D8B9D536C870EC77BF4A3 /* JXCategoryIndicatorBallView.m in Sources */ = {isa = PBXBuildFile; fileRef = F9FBE6B4C01D1445DBFC466AEA64E5D8 /* JXCategoryIndicatorBallView.m */; }; + 6C57809DCEA4B6C0CA79918A69FD75DE /* LKS_ConnectionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DA49453EBB9C905AD701D17F18479113 /* LKS_ConnectionManager.m */; }; + 6C76DB1B99B98C951F687DE80FE6F463 /* JXPagerListRefreshView.m in Sources */ = {isa = PBXBuildFile; fileRef = 659E098AEC86E789470E344EB23EC1DD /* JXPagerListRefreshView.m */; }; + 6C85CA8D99E50C137D056B6057DAC58A /* UIRefreshControl+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = 80E9CB1F62E65A837FF5E47B2FC3ECA1 /* UIRefreshControl+AFNetworking.m */; }; + 6CA0B4A9E7B2957063163BC673F355CD /* AFAutoPurgingImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = ED87146FC94850F3891F867B1931F652 /* AFAutoPurgingImageCache.m */; }; + 6CE8701D161A4BC0860FAF3951762A34 /* LookinHierarchyFile.m in Sources */ = {isa = PBXBuildFile; fileRef = 3A1C13D0C9F5E8ED93D0398C379507C1 /* LookinHierarchyFile.m */; }; + 6D637D02F5EE50D21C8548061956C898 /* UIViewController+Presentation.h in Headers */ = {isa = PBXBuildFile; fileRef = DB3B6BBCBC04C438F099DE5DEC15C188 /* UIViewController+Presentation.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6DE6C7F0FA965828E4FCE687BF75FBBE /* MJRefreshAutoNormalFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 6021531912761F1BDBFE14A61784B26D /* MJRefreshAutoNormalFooter.m */; }; + 6E4DE8085E69AD1DDB49B059DCE286DB /* HWBackgroundConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F0DA836C065C821DDDE100A36B1C087 /* HWBackgroundConfig.m */; }; + 6E66305665DBCFBCF5B2480BF705D500 /* SDWebImageTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 59CF9D4B8C92110B4BC1E1792E4AAEA5 /* SDWebImageTransition.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6EFC0630CB2761A2B1FC47176CCD62D1 /* LookinCustomDisplayItemInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DDFB85C3FF1851267A20FACB64B4497 /* LookinCustomDisplayItemInfo.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6EFEEE3AE22E97DCEC4F5A3B88F56FC7 /* SDImageLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = B9E1D06297B630EA32D1369915C0CB97 /* SDImageLoader.m */; }; + 6F3637EE643EABB1DE9212EA68649A64 /* UIColor+SDHexString.m in Sources */ = {isa = PBXBuildFile; fileRef = 343C42E325F84441C510AF8DEE739ADF /* UIColor+SDHexString.m */; }; + 6F75FDB9BE37C9A8473F97B1696B5D09 /* JXCategoryListContainerView.h in Headers */ = {isa = PBXBuildFile; fileRef = D9CF33220A4EDFF59077DE1F83605414 /* JXCategoryListContainerView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7053A9EB6335BEAC9EFDF2D5320E6E2A /* UIView+HW_Frame.m in Sources */ = {isa = PBXBuildFile; fileRef = ECA7ED760D61427E9195A2805DB71798 /* UIView+HW_Frame.m */; }; + 7074EA7FCC90B4967A437F5C43496828 /* SDDisplayLink.h in Headers */ = {isa = PBXBuildFile; fileRef = B5F6ED51FA52849CB3D9D44DD45396E2 /* SDDisplayLink.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 70D30BC7134E3C8006BF0B6A4B438057 /* JXCategoryTitleImageCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 524557CADCF9674C470A7B1764594AEC /* JXCategoryTitleImageCell.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 711D32EF4A9901567A488291603BF906 /* SDWebImage.h in Headers */ = {isa = PBXBuildFile; fileRef = EE827BC4171898B142EBDE3C763AFC7F /* SDWebImage.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 713D162A627185DA38847832AB5BDA44 /* LSTPopView.h in Headers */ = {isa = PBXBuildFile; fileRef = DB7D4CE7BA063A9CA415CD86C8825985 /* LSTPopView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 71538A1D21015F459964BA625D5EE90A /* NSObject+MJClass.h in Headers */ = {isa = PBXBuildFile; fileRef = DEDA7D852A16AEB2E4133F8138BB40A3 /* NSObject+MJClass.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 717F76926C7BCB5B10C3037AD9239084 /* SDImageIOCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 04094D9F916F0B3E8A409CF5EEC45FCC /* SDImageIOCoder.m */; }; + 71BEB1D9532900291A5A24B1C038516F /* UIColor+SDHexString.h in Headers */ = {isa = PBXBuildFile; fileRef = DC85B08C4C82F12C3AA7970FE44E1D9F /* UIColor+SDHexString.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 71F2B8CBB99087F348C472230200586F /* SDGraphicsImageRenderer.m in Sources */ = {isa = PBXBuildFile; fileRef = 46F71F9F19999F6D4F186847FA3CC8F7 /* SDGraphicsImageRenderer.m */; }; 723D1925C39764631641D0DBFDF6833B /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9D41AAC213895165C450F5576DE42CB2 /* Foundation.framework */; }; - 724991CA89C46BAFBC08264D94D86484 /* AFURLRequestSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = DC285A6C8053D7E2AE423BE51B24E8AE /* AFURLRequestSerialization.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7276688DEA6FB95D4DEB7F3D019C3958 /* HWPageSheetPresentingAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = DD3CC2F2CD0FD607BD99AA89E970269A /* HWPageSheetPresentingAnimation.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 728107C8D8479AADE986F4EC23233DC3 /* UIScrollView+Helper.m in Sources */ = {isa = PBXBuildFile; fileRef = CCA4AAE27B9CAF06CC2B0A3C0A3F0594 /* UIScrollView+Helper.m */; }; - 73B19D03C7B7DF1C944544165F742D82 /* HWPanModalContainerView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BB86632EEB3EB44D0413B3A6F7F6875 /* HWPanModalContainerView.m */; }; - 74ABF19BACB99F862DB62AA14508AFA0 /* LookinAttributesGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E02457FB07FECD161E03C2A1A8B72B3 /* LookinAttributesGroup.m */; }; - 74C474676C69A80BEC29B0F55FDF4D19 /* UIView+WebCacheState.m in Sources */ = {isa = PBXBuildFile; fileRef = FF6C98975F33C466CDCC506B95080046 /* UIView+WebCacheState.m */; }; - 74E069F8C9E22C0E37F261A5AB03A613 /* SDWebImageDownloaderConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 47655EC4466A20F4BEC0C76B8F4C5440 /* SDWebImageDownloaderConfig.m */; }; - 752822FE3F5092322D18FEC4533B79A9 /* SDWebImageDownloader.m in Sources */ = {isa = PBXBuildFile; fileRef = 2FED06425BD958CD54FC4A96C6FF1992 /* SDWebImageDownloader.m */; }; - 75771A97B77FA30A0175A81B480F80EF /* UIImage+ForceDecode.h in Headers */ = {isa = PBXBuildFile; fileRef = D843F393C308E0D3BCB88A0B04FDB291 /* UIImage+ForceDecode.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 76019F9FDD44B8F79261AD55C8728164 /* UIView+HW_Frame.h in Headers */ = {isa = PBXBuildFile; fileRef = B63B552A0A52E65141ED8027A3FCCB0D /* UIView+HW_Frame.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 76C8C631DF9AC2F667369EEA0CE46522 /* HWDimmedView.h in Headers */ = {isa = PBXBuildFile; fileRef = 017032FDD415E1762246EBCDD2228351 /* HWDimmedView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 772CF8E9CD02ECA4275B6173E2110E80 /* View+MASShorthandAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D93DBFF5810549335063D430FB33721 /* View+MASShorthandAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 780EDF2615923E89C179EB5A60D2DA41 /* JXCategoryCollectionView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6999AA4E4990D39E732B0FABF0CBB3CA /* JXCategoryCollectionView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 724991CA89C46BAFBC08264D94D86484 /* AFURLRequestSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = 4228538168305A12A3465600D6FA372A /* AFURLRequestSerialization.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7276688DEA6FB95D4DEB7F3D019C3958 /* HWPageSheetPresentingAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EC115C953943E0027F6AD5AFEE41A30 /* HWPageSheetPresentingAnimation.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 728107C8D8479AADE986F4EC23233DC3 /* UIScrollView+Helper.m in Sources */ = {isa = PBXBuildFile; fileRef = 330AFA4D280CBB2EE073DCC942489EAB /* UIScrollView+Helper.m */; }; + 73B19D03C7B7DF1C944544165F742D82 /* HWPanModalContainerView.m in Sources */ = {isa = PBXBuildFile; fileRef = 0BED1E57A7780D7944D806EF7FB48648 /* HWPanModalContainerView.m */; }; + 743BBA00940EF6877AE1D5014755D0D6 /* UIView+LYExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B4EEA7B77703F45AB157AC651CEF4EA /* UIView+LYExtension.m */; }; + 74ABF19BACB99F862DB62AA14508AFA0 /* LookinAttributesGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = D0B1EDD790AB62D80A6CA23D5272938B /* LookinAttributesGroup.m */; }; + 74C474676C69A80BEC29B0F55FDF4D19 /* UIView+WebCacheState.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E4925A54FF503F963785651A98856BD /* UIView+WebCacheState.m */; }; + 74E069F8C9E22C0E37F261A5AB03A613 /* SDWebImageDownloaderConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 6650E50E5FAFFD61FC973E5A0D5C8398 /* SDWebImageDownloaderConfig.m */; }; + 752822FE3F5092322D18FEC4533B79A9 /* SDWebImageDownloader.m in Sources */ = {isa = PBXBuildFile; fileRef = B453C947A0F7F0133F2F98F9E8EF1E43 /* SDWebImageDownloader.m */; }; + 75771A97B77FA30A0175A81B480F80EF /* UIImage+ForceDecode.h in Headers */ = {isa = PBXBuildFile; fileRef = 317AEF64C0405ADA2DB47569A6D72FC4 /* UIImage+ForceDecode.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 76019F9FDD44B8F79261AD55C8728164 /* UIView+HW_Frame.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B0B272843C604B68C602DEE1AD3605F /* UIView+HW_Frame.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 76C8C631DF9AC2F667369EEA0CE46522 /* HWDimmedView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F1705DF1CC5E82194523F85FE871354 /* HWDimmedView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 772CF8E9CD02ECA4275B6173E2110E80 /* View+MASShorthandAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = EBEEA0239556FEF194877FD307A4ADD6 /* View+MASShorthandAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 780EDF2615923E89C179EB5A60D2DA41 /* JXCategoryCollectionView.h in Headers */ = {isa = PBXBuildFile; fileRef = 051A66FC7C22537DD150BA86539EC9D4 /* JXCategoryCollectionView.h */; settings = {ATTRIBUTES = (Public, ); }; }; 7873F2F89CD0A435FAB776BC27BFB56A /* MJExtension-MJExtension in Resources */ = {isa = PBXBuildFile; fileRef = 43EAAD2AB7E6B407E80E95F643F93D22 /* MJExtension-MJExtension */; }; - 78A3C3994AFFC6A2D4970AEB6D797CE5 /* LKS_HierarchyDetailsHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 6736D1FBB305C05AEAB982F817CD80C1 /* LKS_HierarchyDetailsHandler.m */; }; - 7902D28FC9EF5AFEB452F508C7F266B1 /* MJRefreshAutoNormalFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = DEDB698B7BC2AF63B53722CF1D2D8E57 /* MJRefreshAutoNormalFooter.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 79534562F85AA71041043B395DE14AD0 /* HWPanModalContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = 77BA4318333FADE07B128DB446EA0F64 /* HWPanModalContentView.m */; }; - 79701CF51014A7C02D810F9DAEFE6D79 /* JXCategoryTitleCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 057CD48F09C7A5468D77A9691A639803 /* JXCategoryTitleCell.m */; }; - 7989A6E79BFA78440C39F568D972305C /* MJRefresh.h in Headers */ = {isa = PBXBuildFile; fileRef = 1325B9E2F97C77F3E9191898C4045E7E /* MJRefresh.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7A4EB9ED5D4E03170FFE61FCB299687B /* SDAnimatedImagePlayer.m in Sources */ = {isa = PBXBuildFile; fileRef = 8532F3DD3C373C14A106D14F67A3C301 /* SDAnimatedImagePlayer.m */; }; - 7C45DBA62EE045C4922404182F6393B8 /* SDWebImageError.h in Headers */ = {isa = PBXBuildFile; fileRef = 109DC293F90D678E22D453F41A197049 /* SDWebImageError.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7C53FB6BBB0CBAA879F1603B0FEDB80B /* LookinAttributesSection.m in Sources */ = {isa = PBXBuildFile; fileRef = 97428E2E54CAC989DD7A12908613EE16 /* LookinAttributesSection.m */; }; - 7C5505A2D3F2A697A5F324787061F4B7 /* MASConstraint+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C2B7AF68C3BEF4AD97A93A90F9EFF44 /* MASConstraint+Private.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7C8782A3078662BC2EF639A9608A2C82 /* LKS_InbuiltAttrModificationHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = DC0451732A9C9A896EEC15BEC88B3151 /* LKS_InbuiltAttrModificationHandler.m */; }; - 7D1E98BE9558F6E5E29B0E81EC526A90 /* JXCategoryImageCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E2875C79F8461486A975B000C1ABDE3 /* JXCategoryImageCell.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7D736CE5AD0A987D2A7D2FD72E31BF41 /* CALayer+LookinServer.m in Sources */ = {isa = PBXBuildFile; fileRef = E1921A1332A20D950700741950E97126 /* CALayer+LookinServer.m */; }; - 7E4F0978B25350B2B28678A0BE7B3785 /* LKS_HierarchyDisplayItemsMaker.h in Headers */ = {isa = PBXBuildFile; fileRef = A9B0E721EBB3914236D06250E333F1E9 /* LKS_HierarchyDisplayItemsMaker.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7E8A564A958AF81E5F63F34B8E550E58 /* LookinAttributeModification.h in Headers */ = {isa = PBXBuildFile; fileRef = C9F0D4D92726FF95FE428AA975E93DE2 /* LookinAttributeModification.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7F10C0D094C74F2FA4CD38C7FD77B0A8 /* WKWebView+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = D675E9EED90BA5941D43EB2C520A01B8 /* WKWebView+AFNetworking.m */; }; - 7F886FC2763F0BF1625A24EE4F94C04D /* UIRefreshControl+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D000260D6BB658E0BB519087E88F883 /* UIRefreshControl+AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7FA48BF8B9F73775654E75CEB5363FF4 /* UIViewController+PanModalPresenter.h in Headers */ = {isa = PBXBuildFile; fileRef = B46DF40E1300BE3FC009F0D7D5CF5ED0 /* UIViewController+PanModalPresenter.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7FA8C78DB021A7731D30D80C102DE042 /* NSObject+MJKeyValue.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CE2A9B22B9FC87A02A230599E72D4F1 /* NSObject+MJKeyValue.m */; }; - 7FF8A56511E71D6FEC966BF9FEE135B5 /* AFNetworkActivityIndicatorManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7965DB1FD06E64A9C5B34CB6D9909B3A /* AFNetworkActivityIndicatorManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 80EBFDD01E84CE4E8AE5BAE9CB3C7C1D /* HWPanModalAnimator.m in Sources */ = {isa = PBXBuildFile; fileRef = 88D7B291E3BCDB41106F548FA3B84901 /* HWPanModalAnimator.m */; }; - 810C8D7902163BBA0185A4A112B2DFD6 /* LKS_TraceManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 36457C61634F1414F6DDF4C701ABF567 /* LKS_TraceManager.m */; }; - 8128D2BD3AC890F75E7AD243AA104C13 /* JXCategoryIndicatorParamsModel.m in Sources */ = {isa = PBXBuildFile; fileRef = AAFEF3383472BCA83D71A7DAAC5522CC /* JXCategoryIndicatorParamsModel.m */; }; - 813BE4C96A6D39C13EC50C6CD164F0AF /* MASConstraintMaker.h in Headers */ = {isa = PBXBuildFile; fileRef = 979A3BAC302F65855776332D6027B80C /* MASConstraintMaker.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 81A5635CEA2AD9623E30CAE9AFC3BF65 /* NSBundle+MJRefresh.h in Headers */ = {isa = PBXBuildFile; fileRef = 10B904BAC9CC3925EE6B4E2130826A6F /* NSBundle+MJRefresh.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 821FF6B43F7ADAB6B60459D2966B33CB /* CALayer+Lookin.h in Headers */ = {isa = PBXBuildFile; fileRef = 732327FB0ADC252437B580203795D95F /* CALayer+Lookin.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 83530BF68848CD2C4A79A1FD69B304A5 /* SDImageGIFCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = CE77C4D90418C342647C55D75A5C1AE8 /* SDImageGIFCoder.m */; }; + 78A3C3994AFFC6A2D4970AEB6D797CE5 /* LKS_HierarchyDetailsHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 0719BBC5095E9B709A7485C347010514 /* LKS_HierarchyDetailsHandler.m */; }; + 7902D28FC9EF5AFEB452F508C7F266B1 /* MJRefreshAutoNormalFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 77973C87CC9649629EBEE249DCC355F5 /* MJRefreshAutoNormalFooter.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 79534562F85AA71041043B395DE14AD0 /* HWPanModalContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9E31AD6314EC8102DE4FC6291C0FE66F /* HWPanModalContentView.m */; }; + 79701CF51014A7C02D810F9DAEFE6D79 /* JXCategoryTitleCell.m in Sources */ = {isa = PBXBuildFile; fileRef = B49837A2AA042F710F43F143A929D49F /* JXCategoryTitleCell.m */; }; + 7989A6E79BFA78440C39F568D972305C /* MJRefresh.h in Headers */ = {isa = PBXBuildFile; fileRef = F64D04ACE9EB0341E57129D44479C065 /* MJRefresh.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7A4EB9ED5D4E03170FFE61FCB299687B /* SDAnimatedImagePlayer.m in Sources */ = {isa = PBXBuildFile; fileRef = 8A5D6AD5CB7122607D6E477D373A31E2 /* SDAnimatedImagePlayer.m */; }; + 7BC817F176759B34FDC3C9A3BDE900BF /* LYEmptyBaseView.h in Headers */ = {isa = PBXBuildFile; fileRef = B5885DEE0FCB371101A605FDA3D3F35C /* LYEmptyBaseView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7C45DBA62EE045C4922404182F6393B8 /* SDWebImageError.h in Headers */ = {isa = PBXBuildFile; fileRef = 16465B6B7358098E137335C9985BBBBC /* SDWebImageError.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7C53FB6BBB0CBAA879F1603B0FEDB80B /* LookinAttributesSection.m in Sources */ = {isa = PBXBuildFile; fileRef = 4F8D39C76EB84B28054B453882C78E41 /* LookinAttributesSection.m */; }; + 7C5505A2D3F2A697A5F324787061F4B7 /* MASConstraint+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = AC368BF52013B3AE323DC35D782A044B /* MASConstraint+Private.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7C8782A3078662BC2EF639A9608A2C82 /* LKS_InbuiltAttrModificationHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = A1DAAC915F745C515E0BF4D613B5CB1C /* LKS_InbuiltAttrModificationHandler.m */; }; + 7D1C6E10B8E0F98E19048BB416A39A0D /* LYEmptyBaseView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D0C4CB17BF463D490AE3400293A0D47 /* LYEmptyBaseView.m */; }; + 7D1E98BE9558F6E5E29B0E81EC526A90 /* JXCategoryImageCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 9234E8779322D7F9722AF6E18FF9F6F3 /* JXCategoryImageCell.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7D4B5D7A593F4436B57347FD2A5072B4 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 7AC0215893BDD3C5E126FCE996097AB4 /* PrivacyInfo.xcprivacy */; }; + 7D736CE5AD0A987D2A7D2FD72E31BF41 /* CALayer+LookinServer.m in Sources */ = {isa = PBXBuildFile; fileRef = 798B3DCD95877B6C7D997E0652FB6E9A /* CALayer+LookinServer.m */; }; + 7DFACBAC8324FE3F177FA465E0006A9C /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = A0497973DD4190C4C37CC950C86C6F2B /* PrivacyInfo.xcprivacy */; }; + 7E4F0978B25350B2B28678A0BE7B3785 /* LKS_HierarchyDisplayItemsMaker.h in Headers */ = {isa = PBXBuildFile; fileRef = F1FB9919B7B8171A6A8679BDDA407F68 /* LKS_HierarchyDisplayItemsMaker.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7E8A564A958AF81E5F63F34B8E550E58 /* LookinAttributeModification.h in Headers */ = {isa = PBXBuildFile; fileRef = B915A35174E3017D6DC61C0A3E31050E /* LookinAttributeModification.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7F10C0D094C74F2FA4CD38C7FD77B0A8 /* WKWebView+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = A1C4717F035C7128013EA7E000DAC18A /* WKWebView+AFNetworking.m */; }; + 7F886FC2763F0BF1625A24EE4F94C04D /* UIRefreshControl+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 48A816CF0BA23EA39A514E31ED98C5D3 /* UIRefreshControl+AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7FA48BF8B9F73775654E75CEB5363FF4 /* UIViewController+PanModalPresenter.h in Headers */ = {isa = PBXBuildFile; fileRef = 82F6D1678A37FB68B3455162AB8BDAA2 /* UIViewController+PanModalPresenter.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7FA8C78DB021A7731D30D80C102DE042 /* NSObject+MJKeyValue.m in Sources */ = {isa = PBXBuildFile; fileRef = 0C7575113B17F46DF34D3C118CB31308 /* NSObject+MJKeyValue.m */; }; + 7FF8A56511E71D6FEC966BF9FEE135B5 /* AFNetworkActivityIndicatorManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A198AAC0BC41558B9FC61F89E90D900F /* AFNetworkActivityIndicatorManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 80EBFDD01E84CE4E8AE5BAE9CB3C7C1D /* HWPanModalAnimator.m in Sources */ = {isa = PBXBuildFile; fileRef = EDA5337EF8951852F4AA839734BF6786 /* HWPanModalAnimator.m */; }; + 810C8D7902163BBA0185A4A112B2DFD6 /* LKS_TraceManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C7F42FC60A06A5673FA7DE53298188E2 /* LKS_TraceManager.m */; }; + 8128D2BD3AC890F75E7AD243AA104C13 /* JXCategoryIndicatorParamsModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 1936EF3FEE34E513D746BA5037CDEE80 /* JXCategoryIndicatorParamsModel.m */; }; + 813BE4C96A6D39C13EC50C6CD164F0AF /* MASConstraintMaker.h in Headers */ = {isa = PBXBuildFile; fileRef = 404BBFC3B5A2ADAEF4E188881B357111 /* MASConstraintMaker.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 81A5635CEA2AD9623E30CAE9AFC3BF65 /* NSBundle+MJRefresh.h in Headers */ = {isa = PBXBuildFile; fileRef = 412FD8B68949345873B82E2D0C864C85 /* NSBundle+MJRefresh.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 821FF6B43F7ADAB6B60459D2966B33CB /* CALayer+Lookin.h in Headers */ = {isa = PBXBuildFile; fileRef = 768785318FEB9536A4DAAD47BD76396B /* CALayer+Lookin.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 83530BF68848CD2C4A79A1FD69B304A5 /* SDImageGIFCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 763CF36C11B6092D9D5485AC2363F205 /* SDImageGIFCoder.m */; }; 83A4F2816C1B3F072E1A26A34C3BC4AC /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9D41AAC213895165C450F5576DE42CB2 /* Foundation.framework */; }; 8414CFEEB64ACA817EB88D2FEADDA3B3 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9D41AAC213895165C450F5576DE42CB2 /* Foundation.framework */; }; - 854807558DCB972EDDFC1D00032BA6E4 /* SDWebImageDownloaderConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = E138C277A1DD60E5BB20AB4EC7CEBDB2 /* SDWebImageDownloaderConfig.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 85AB23275E9D19394969235E5DC2300E /* MJRefreshHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A2B6D97C6E9B5572232985B40BDA6C4 /* MJRefreshHeader.m */; }; - 85BB8B4B5C29C5EEC52282F33A4CAF23 /* LookinCustomAttrModification.m in Sources */ = {isa = PBXBuildFile; fileRef = F6CC661C43717D8BBB4405FD037BDC03 /* LookinCustomAttrModification.m */; }; - 85C0B4EE334B9972299E62DE61A4BB56 /* SDImageLoadersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B3F518DFA534AD602991065542FADB29 /* SDImageLoadersManager.m */; }; - 85ED10431A6C01970A3DAD8A8C9BF25F /* JXPagerView.h in Headers */ = {isa = PBXBuildFile; fileRef = D3F906D47799FB7ED8D4AA1C036BF3BC /* JXPagerView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 860CB3A5D2E13B946CD2EFB7F749C4CF /* UIActivityIndicatorView+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 81D4FD0C7D7C987D10815371E729DAC0 /* UIActivityIndicatorView+AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 864972FB0DF4B464B1B505AA5F788E91 /* SDInternalMacros.m in Sources */ = {isa = PBXBuildFile; fileRef = 123714F0F2335CBE901933785D4D26FB /* SDInternalMacros.m */; }; - 874CE8F3650D220092077846A46598E6 /* JXCategoryTitleImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FBDD10C8770914A56998AB2021E385B /* JXCategoryTitleImageView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 88197D535BEBB0F4B71F106AE300631D /* JXCategoryBaseView.h in Headers */ = {isa = PBXBuildFile; fileRef = 173BFB44F7DA63CD3AF5A497970B8203 /* JXCategoryBaseView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 88473AE7C22F952DACB39FA0758D1624 /* SDMemoryCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 82BDCD67CE12306B5AF6A9E3DB88E0DA /* SDMemoryCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 8872BEB0954C0254A792469F4DBC9891 /* MJRefreshAutoStateFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 401F0F0AAEEDDA40C2D25DB817C9B5C6 /* MJRefreshAutoStateFooter.m */; }; - 88889F5DA04EB4FA08125742B5E522DA /* JXCategoryTitleView.h in Headers */ = {isa = PBXBuildFile; fileRef = E42238B57F88C70438DE479E184E4352 /* JXCategoryTitleView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 88A23DF6F5638AC66C28C4102824E8B5 /* NSImage+Compatibility.m in Sources */ = {isa = PBXBuildFile; fileRef = 102C92CE02746A6588B44F852322AB39 /* NSImage+Compatibility.m */; }; - 89B88FAD396608AAA9F935E471BB3CB9 /* LKS_HierarchyDetailsHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 21696AB985A15DE2C63BD9A8CD978F59 /* LKS_HierarchyDetailsHandler.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 89EAB8D0452D0E2114ED971B10D98CC3 /* LKS_HierarchyDisplayItemsMaker.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D3112C49688EF3F713F0D64A22E6E66 /* LKS_HierarchyDisplayItemsMaker.m */; }; - 8A256CA266FB314BBD4DB2287DAEF247 /* LookinAttribute.m in Sources */ = {isa = PBXBuildFile; fileRef = DDDA744A029AF23E45515CE37C056256 /* LookinAttribute.m */; }; - 8AF38EDB1E9BF0D334AEB23C488870B8 /* NSData+ImageContentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 4561971E2CF7A1F1B00AC6091B3448DE /* NSData+ImageContentType.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 854807558DCB972EDDFC1D00032BA6E4 /* SDWebImageDownloaderConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = CBD58A6BE5B4D23DDB42D3D26A87CAEA /* SDWebImageDownloaderConfig.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 85AB23275E9D19394969235E5DC2300E /* MJRefreshHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E849825D4B5783372753D6820DE97F /* MJRefreshHeader.m */; }; + 85BB8B4B5C29C5EEC52282F33A4CAF23 /* LookinCustomAttrModification.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E445C787AA09C1E3A771E4C7DBCE2CA /* LookinCustomAttrModification.m */; }; + 85C0B4EE334B9972299E62DE61A4BB56 /* SDImageLoadersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2E585503EB164F6C036C85B124140368 /* SDImageLoadersManager.m */; }; + 85ED10431A6C01970A3DAD8A8C9BF25F /* JXPagerView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8310CCDF3085A9EE32455CB865148664 /* JXPagerView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 860CB3A5D2E13B946CD2EFB7F749C4CF /* UIActivityIndicatorView+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = DCB771163568003A2EA8F4B1A606B9ED /* UIActivityIndicatorView+AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 864972FB0DF4B464B1B505AA5F788E91 /* SDInternalMacros.m in Sources */ = {isa = PBXBuildFile; fileRef = F1CF9E4569F5B94286E175AF9D675C11 /* SDInternalMacros.m */; }; + 874CE8F3650D220092077846A46598E6 /* JXCategoryTitleImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E91A12C513A640E68663D4ED668C0FC /* JXCategoryTitleImageView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 88197D535BEBB0F4B71F106AE300631D /* JXCategoryBaseView.h in Headers */ = {isa = PBXBuildFile; fileRef = 45E71D8592674E85D7D5DA4831A592BE /* JXCategoryBaseView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 88473AE7C22F952DACB39FA0758D1624 /* SDMemoryCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 256D50D68BFC3FD314552D1D0BC2044D /* SDMemoryCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 8872BEB0954C0254A792469F4DBC9891 /* MJRefreshAutoStateFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 8CF1445CC744306AE4ECBA85DFD6DB27 /* MJRefreshAutoStateFooter.m */; }; + 88889F5DA04EB4FA08125742B5E522DA /* JXCategoryTitleView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5105F32D29B4C0D80B780EE2DF6D2898 /* JXCategoryTitleView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 88A23DF6F5638AC66C28C4102824E8B5 /* NSImage+Compatibility.m in Sources */ = {isa = PBXBuildFile; fileRef = 23763927ED025640A4CAA94867A3D823 /* NSImage+Compatibility.m */; }; + 89B88FAD396608AAA9F935E471BB3CB9 /* LKS_HierarchyDetailsHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = FEA159570B75D1C95DC0E0B5836BACFF /* LKS_HierarchyDetailsHandler.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 89EAB8D0452D0E2114ED971B10D98CC3 /* LKS_HierarchyDisplayItemsMaker.m in Sources */ = {isa = PBXBuildFile; fileRef = 00B27A1456536538B2E7220C71AA3F4F /* LKS_HierarchyDisplayItemsMaker.m */; }; + 8A256CA266FB314BBD4DB2287DAEF247 /* LookinAttribute.m in Sources */ = {isa = PBXBuildFile; fileRef = B267D6EC269C7ADF7A4202363528E8C2 /* LookinAttribute.m */; }; + 8AF38EDB1E9BF0D334AEB23C488870B8 /* NSData+ImageContentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 00449113F3BDDB46E11CEE02CF1F29A1 /* NSData+ImageContentType.h */; settings = {ATTRIBUTES = (Public, ); }; }; 8B47B7F220A2B9E121EFF5A28B477972 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9D41AAC213895165C450F5576DE42CB2 /* Foundation.framework */; }; - 8B990235A0006E1F9C1E6F68AD81F77C /* JXCategoryView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CBA389E7DB380F4012EFBD733C81D43A /* JXCategoryView-dummy.m */; }; - 8C6C7E25C5A24C936F81823978190E96 /* ViewController+MASAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = D48043130F64D218A676B16D2CDA0ED8 /* ViewController+MASAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 8B990235A0006E1F9C1E6F68AD81F77C /* JXCategoryView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D98B4BEA4820634A8F01172731FF97B7 /* JXCategoryView-dummy.m */; }; + 8C6C7E25C5A24C936F81823978190E96 /* ViewController+MASAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = FED4C87CAD14B9336A225C943B75263C /* ViewController+MASAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; }; 8D2CBEBF5F1DA6766A833CCD0BF02B5B /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 638488B4F5FF9C67F848A841B1A34765 /* CoreGraphics.framework */; }; - 8D8AD606ECD8E1F247965CD43956D412 /* UIImage+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = B5C750768FB8EE26E8F613C1D910045B /* UIImage+Transform.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 8D8AD606ECD8E1F247965CD43956D412 /* UIImage+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = A39050EBA53940D0CE63B52BF031BE6C /* UIImage+Transform.h */; settings = {ATTRIBUTES = (Public, ); }; }; 8F30C8026F48C60D5B2CAE9CFC166004 /* Pods-CustomKeyboard-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CB13D51E717D347023EEB57263E3072 /* Pods-CustomKeyboard-dummy.m */; }; - 8FF4E9A492CA258F45C0BC51F6F69650 /* JXCategoryTitleImageCell.m in Sources */ = {isa = PBXBuildFile; fileRef = D4AA530BA675D0E78BDD9644338B48A3 /* JXCategoryTitleImageCell.m */; }; - 8FF7B6477BFA6E6ABA168E1417291D5F /* MASCompositeConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = FD6EC1E4FB3615CE938900B23CEAD0F8 /* MASCompositeConstraint.m */; }; - 906DCE66CD5BD236081D468616199BB7 /* SDWebImageOptionsProcessor.m in Sources */ = {isa = PBXBuildFile; fileRef = 6A632B4F7EA06C55CADB3BF7C49D7860 /* SDWebImageOptionsProcessor.m */; }; - 91AAF555B286FBF53E4F98D092B406BD /* SDWebImageTransitionInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A543722998E5C6171A0B4A729D11BBB /* SDWebImageTransitionInternal.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 8FF4E9A492CA258F45C0BC51F6F69650 /* JXCategoryTitleImageCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 5EADC8693C7692FBBE4CE165F51B28E9 /* JXCategoryTitleImageCell.m */; }; + 8FF7B6477BFA6E6ABA168E1417291D5F /* MASCompositeConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 70CD4567ACE296214EA982091E2B8F90 /* MASCompositeConstraint.m */; }; + 906DCE66CD5BD236081D468616199BB7 /* SDWebImageOptionsProcessor.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B82CFD6AD23DAB70352983FFFA8DBBE /* SDWebImageOptionsProcessor.m */; }; + 91AAF555B286FBF53E4F98D092B406BD /* SDWebImageTransitionInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = ACD18D412C592E0FB706C10554E5283E /* SDWebImageTransitionInternal.h */; settings = {ATTRIBUTES = (Private, ); }; }; 91AFF41167C616A131F2E24563B8DDD8 /* JXPagingView-JXPagerView in Resources */ = {isa = PBXBuildFile; fileRef = E03F152E95B6924D2486511337D24503 /* JXPagingView-JXPagerView */; }; - 91BEBD471C408E6C72763AFB6926242B /* JXCategoryTitleImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8618BF2AA2A260801FDF48131074A906 /* JXCategoryTitleImageView.m */; }; - 91E8B94F8E02ABF5197DF5AE7D0B3934 /* SDWebImageDownloaderDecryptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 5716AF79F54782358457FBB452B73975 /* SDWebImageDownloaderDecryptor.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 928371B066E1211CE87089668D5BCB4C /* SDDiskCache.h in Headers */ = {isa = PBXBuildFile; fileRef = CAD21419CFC8A372DB941E7983ADDD9D /* SDDiskCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 928A1ED0692DF0229F66A87135F93F2A /* LKS_CustomAttrModificationHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 29CA4DC7FB25B91EAA2B3847B7BB46A9 /* LKS_CustomAttrModificationHandler.m */; }; - 9345137ED10358B60E37D05FB6165759 /* SDFileAttributeHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 41B90877BBAECA72C2F67A5E39E1E87A /* SDFileAttributeHelper.m */; }; - 9358FC6C6DA728AEE250D8E7DD236946 /* MJProperty.h in Headers */ = {isa = PBXBuildFile; fileRef = 1326C5B7B2B67B2A6E9A785F1ECEA87F /* MJProperty.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 93E2C24501FAE3C3B886B9879786EF22 /* JXCategoryTitleVerticalZoomCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D390F38F6574F6D973E2C4A52D004A1 /* JXCategoryTitleVerticalZoomCell.m */; }; - 93E8C78EAE0B7613201813966B8E04E2 /* Image+Lookin.h in Headers */ = {isa = PBXBuildFile; fileRef = 17FBA36FB2D4DFAA4437CEE5C69F4BBE /* Image+Lookin.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 940CD731A431894B0EE4E3283E6F352F /* JXCategoryBaseCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 51E7542749774862B8EB9AAB7010F1AA /* JXCategoryBaseCellModel.m */; }; - 955B87902E039163281C4F47C95DB851 /* MJRefreshBackNormalFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = C55730A1966B5DF338B0554ACC4B0B16 /* MJRefreshBackNormalFooter.m */; }; - 95CCA80D6790CF64F974A53E815420F8 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 75A91D4BB6118442A9B7E27598AE7C99 /* PrivacyInfo.xcprivacy */; }; - 96C1D55B3436C158B4CBB4E3D0AE53EE /* UIColor+JXAdd.m in Sources */ = {isa = PBXBuildFile; fileRef = 137AD002D5B6FA89785842F03034A5B1 /* UIColor+JXAdd.m */; }; - 96E97174F4614FFA0649085022CB4AFE /* SDWebImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B82D87F3DD4A8EB4C508E0BFA04090 /* SDWebImage-dummy.m */; }; - 97235408E59E16C18B6BDA1D29E1CB26 /* SDWebImageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2ED4FAFE5BD7891D4471852209337077 /* SDWebImageManager.m */; }; - 97385A64CA020489951EF769392C6DCF /* UIView+WebCacheOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A19BDA4E648916460C20489D6D183F0 /* UIView+WebCacheOperation.m */; }; - 9887678D7D6BC165694560D92AF2C31A /* LookinConnectionResponseAttachment.m in Sources */ = {isa = PBXBuildFile; fileRef = 4ED1A3436209E7EBF3356CEC094C7391 /* LookinConnectionResponseAttachment.m */; }; + 91BEBD471C408E6C72763AFB6926242B /* JXCategoryTitleImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9EC4E80691EA4009AB067722DA72E4D5 /* JXCategoryTitleImageView.m */; }; + 91E8B94F8E02ABF5197DF5AE7D0B3934 /* SDWebImageDownloaderDecryptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 3ED4F75E10F9C3D76FF139C89BBB8154 /* SDWebImageDownloaderDecryptor.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 928371B066E1211CE87089668D5BCB4C /* SDDiskCache.h in Headers */ = {isa = PBXBuildFile; fileRef = A464713D364DCC51BD1C744435EF31A3 /* SDDiskCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 928A1ED0692DF0229F66A87135F93F2A /* LKS_CustomAttrModificationHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = D00729EFDA62359B2F2AA1EF43FADFD9 /* LKS_CustomAttrModificationHandler.m */; }; + 9345137ED10358B60E37D05FB6165759 /* SDFileAttributeHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 72CEA2C3193763834CD0E25D8DB88F2D /* SDFileAttributeHelper.m */; }; + 9358FC6C6DA728AEE250D8E7DD236946 /* MJProperty.h in Headers */ = {isa = PBXBuildFile; fileRef = AB379411892DE9D6AC2BA478DD047B45 /* MJProperty.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 93E2C24501FAE3C3B886B9879786EF22 /* JXCategoryTitleVerticalZoomCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F3BAE7C9BD506017B4C0D7BBB9100900 /* JXCategoryTitleVerticalZoomCell.m */; }; + 93E8C78EAE0B7613201813966B8E04E2 /* Image+Lookin.h in Headers */ = {isa = PBXBuildFile; fileRef = 8679B55EBC5DC660D8E798D1B986FC22 /* Image+Lookin.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 940CD731A431894B0EE4E3283E6F352F /* JXCategoryBaseCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 897530E070833B039DC2821D0B63B137 /* JXCategoryBaseCellModel.m */; }; + 955B87902E039163281C4F47C95DB851 /* MJRefreshBackNormalFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = A64A22A853C13E4375B73E01D1D90CB1 /* MJRefreshBackNormalFooter.m */; }; + 96C1D55B3436C158B4CBB4E3D0AE53EE /* UIColor+JXAdd.m in Sources */ = {isa = PBXBuildFile; fileRef = EA759F283932CC196A3C378E0037B993 /* UIColor+JXAdd.m */; }; + 96E97174F4614FFA0649085022CB4AFE /* SDWebImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 61C0CC288A628CFA871D599D497E2A8E /* SDWebImage-dummy.m */; }; + 97235408E59E16C18B6BDA1D29E1CB26 /* SDWebImageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = EFC3A24D1CE615DA957AE8C5AC47E5D7 /* SDWebImageManager.m */; }; + 97385A64CA020489951EF769392C6DCF /* UIView+WebCacheOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 43901AAA2BB40AE5F534540676833E30 /* UIView+WebCacheOperation.m */; }; + 9887678D7D6BC165694560D92AF2C31A /* LookinConnectionResponseAttachment.m in Sources */ = {isa = PBXBuildFile; fileRef = B2B7D0FDFC6ECF60B59728E60160431B /* LookinConnectionResponseAttachment.m */; }; 98AB6B8EB7FF096BCE87488C5AB3DF1C /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9D41AAC213895165C450F5576DE42CB2 /* Foundation.framework */; }; - 9A7FB1E975A5955C896E6B195C521804 /* MJRefreshBackNormalFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E42525F0D8B91406B2C7015E3E52B29 /* MJRefreshBackNormalFooter.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9A89C16038149623A1DF06D47E7F953A /* LookinStaticAsyncUpdateTask.m in Sources */ = {isa = PBXBuildFile; fileRef = EC9D66F9AD565D0A6E6595CFC812165E /* LookinStaticAsyncUpdateTask.m */; }; - 9B06400877E40C173F5A1C9761F288CB /* UITextView+LookinServer.m in Sources */ = {isa = PBXBuildFile; fileRef = 3791DA4B477B236E8816C08DD01E3B45 /* UITextView+LookinServer.m */; }; - 9B1EF09A8A473D92C1258B00791BF5F0 /* UIView+LookinServer.m in Sources */ = {isa = PBXBuildFile; fileRef = E9CB22320707CAEB4EE4C1DF62EB9E1A /* UIView+LookinServer.m */; }; - 9B3420DEB8A0CCB9E1241A669AEFCA8E /* SDAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 167D63F7114C5D501803C08C617324CA /* SDAnimatedImage.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9B9343E8599EE5196BA75E842DCB48B7 /* NSBezierPath+SDRoundedCorners.h in Headers */ = {isa = PBXBuildFile; fileRef = 32CCCC7F014C0FE2CA551D9AF48EEF89 /* NSBezierPath+SDRoundedCorners.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 9BBBDC6BB6583BCAA75242231B62B530 /* HWPanModalPresentationUpdateProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B98EB1E5D5490C1C17C90E124262C80 /* HWPanModalPresentationUpdateProtocol.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9CE425B89294BE2C13E70A86E75B15CF /* SDDiskCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 45505B1DFA133379CEE6DD6D8148013D /* SDDiskCache.m */; }; - 9D422527A25BAE6A207DEFE11958ABBC /* AFCompatibilityMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 29C25E996193BA4D1FCBB5C2A7812FB9 /* AFCompatibilityMacros.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9D859B99561C389C0F494428F66F1871 /* HWDimmedView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6194A35582043CD8893F293567547D72 /* HWDimmedView.m */; }; - 9DDDCFC08B54A61C519DA78F94464E6B /* LookinHierarchyInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D8B581D78D02F65425434F924BB64B3 /* LookinHierarchyInfo.m */; }; - 9DF446F8CA5BC4D4098766EC9063012C /* SDWebImageOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 2ECB40CAF1E6F3F4A5F02F74E30B95E8 /* SDWebImageOperation.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9DFFD4780CA32B8E53D9F4FBC8B3F5AC /* LookinAttrIdentifiers.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B857386E2ABDB8C3FD8B5797430DF26 /* LookinAttrIdentifiers.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9E3C5CB1C97B2ED16218956999BFF7AC /* LookinTuple.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A60F6547480237BC04A6287158556B4 /* LookinTuple.m */; }; - 9E6B00AF2ECE462D4D3C42AFC02F2AD7 /* LookinEventHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 7CAEC579F15CFFDB2E384C98A046EA76 /* LookinEventHandler.m */; }; - 9E7FD4501C2EF7FBF3379D21E46DB07B /* JXCategoryBaseCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B08ADE1A4FFE94FDBBE13FE7CC2C1E5 /* JXCategoryBaseCell.m */; }; - 9EBA682DA814406E9E5EF300587AF341 /* LookinAutoLayoutConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FFD17C3FF6DE53EF72736C597DF5B82 /* LookinAutoLayoutConstraint.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9F89DCAA4092F3897E43E89842069A26 /* LKS_AttrModificationPatchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F0B0B2E800350D0E38B61EF43E6CE75 /* LKS_AttrModificationPatchHandler.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9FB234EB4D8B5BCC699DB491E204594F /* LKS_GestureTargetActionsSearcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 029DB3501B51C5C14FA8EC0A89559639 /* LKS_GestureTargetActionsSearcher.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A078A275FFFA48D620074790DA3CA6CE /* MJRefreshStateHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 119F71892BB85FDC29B99AE148231087 /* MJRefreshStateHeader.m */; }; + 9A7FB1E975A5955C896E6B195C521804 /* MJRefreshBackNormalFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = E45A9679E38D826E316675D8F368F69C /* MJRefreshBackNormalFooter.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9A89C16038149623A1DF06D47E7F953A /* LookinStaticAsyncUpdateTask.m in Sources */ = {isa = PBXBuildFile; fileRef = FCBD8DFA94436F5E62F1AA0F1AD2F2FA /* LookinStaticAsyncUpdateTask.m */; }; + 9B06400877E40C173F5A1C9761F288CB /* UITextView+LookinServer.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D8DC297A0249D2FB0109542F14B89AB /* UITextView+LookinServer.m */; }; + 9B1EF09A8A473D92C1258B00791BF5F0 /* UIView+LookinServer.m in Sources */ = {isa = PBXBuildFile; fileRef = 76AEEFCD2262D6843C63EB46FD6663BB /* UIView+LookinServer.m */; }; + 9B3420DEB8A0CCB9E1241A669AEFCA8E /* SDAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = A1411B1EA7A3C51DB2072BF40B4D5A60 /* SDAnimatedImage.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9B9343E8599EE5196BA75E842DCB48B7 /* NSBezierPath+SDRoundedCorners.h in Headers */ = {isa = PBXBuildFile; fileRef = E4A5839D54BEE8A98756D5288A3E5050 /* NSBezierPath+SDRoundedCorners.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 9BBBDC6BB6583BCAA75242231B62B530 /* HWPanModalPresentationUpdateProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = EF62C88D7041DEBD26117AF61789D8AB /* HWPanModalPresentationUpdateProtocol.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9C623DECA454522DB641AA29C86F6387 /* LSTTimer-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A3211D6272FC8FFC9717C01969D328F7 /* LSTTimer-dummy.m */; }; + 9C6A760E54D2281BBE39A443C0F78D55 /* LYEmptyViewHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = FA5C6E28985540EE03804DDC4277D459 /* LYEmptyViewHeader.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9CE425B89294BE2C13E70A86E75B15CF /* SDDiskCache.m in Sources */ = {isa = PBXBuildFile; fileRef = FAA3871C50E5746944D1C3FA3E4736CE /* SDDiskCache.m */; }; + 9D07985CF518269347F3FD5FE6D22609 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9D41AAC213895165C450F5576DE42CB2 /* Foundation.framework */; }; + 9D422527A25BAE6A207DEFE11958ABBC /* AFCompatibilityMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 060133813AFA51D11B917CB91A3D4950 /* AFCompatibilityMacros.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9D859B99561C389C0F494428F66F1871 /* HWDimmedView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9230BE776665C8EB51C8889631B1B31B /* HWDimmedView.m */; }; + 9DDDCFC08B54A61C519DA78F94464E6B /* LookinHierarchyInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = F4F901625B3879AD34FA2A0373208F59 /* LookinHierarchyInfo.m */; }; + 9DF446F8CA5BC4D4098766EC9063012C /* SDWebImageOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 949A8C57291DF7D8139F90AD367DB80C /* SDWebImageOperation.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9DFFD4780CA32B8E53D9F4FBC8B3F5AC /* LookinAttrIdentifiers.h in Headers */ = {isa = PBXBuildFile; fileRef = F32705CBE56ACF430653A1C459F5351E /* LookinAttrIdentifiers.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9E3C5CB1C97B2ED16218956999BFF7AC /* LookinTuple.m in Sources */ = {isa = PBXBuildFile; fileRef = B5157027D16B7E61C1D5AB091D10458E /* LookinTuple.m */; }; + 9E6B00AF2ECE462D4D3C42AFC02F2AD7 /* LookinEventHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = D4CFF1EB3CBDD5217E39DD58BD101359 /* LookinEventHandler.m */; }; + 9E7FD4501C2EF7FBF3379D21E46DB07B /* JXCategoryBaseCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 6FD544A644986722B86F15A292995457 /* JXCategoryBaseCell.m */; }; + 9EBA682DA814406E9E5EF300587AF341 /* LookinAutoLayoutConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = 97DE751E0ED3939932D72FB39C5A934A /* LookinAutoLayoutConstraint.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9F89DCAA4092F3897E43E89842069A26 /* LKS_AttrModificationPatchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = ADF656282B85E6C974597F555BDE3F21 /* LKS_AttrModificationPatchHandler.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9F8A77D8902C98115735987BA80BD5C9 /* UIView+LYExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CA8B3EFCD9E73829676C70CE3E88BE0 /* UIView+LYExtension.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9FB234EB4D8B5BCC699DB491E204594F /* LKS_GestureTargetActionsSearcher.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7E9357D1D22FB737AEE89305734112 /* LKS_GestureTargetActionsSearcher.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A078A275FFFA48D620074790DA3CA6CE /* MJRefreshStateHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 3259CC7D8EE4331CC9B8A86DA09EA5B3 /* MJRefreshStateHeader.m */; }; A0ADDB3C7DF96DF0E6BC53086778A103 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F5B3C0CF01454E7AC9226E88FDFBAE6 /* UIKit.framework */; }; - A0B7A3B941134AA95A20F5A85165CC72 /* LSTPopView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 97E0EEAE3EFB0492B434EC2A704903DE /* LSTPopView-dummy.m */; }; - A0E0DC76F51300E7EB1EBA5492DE854D /* UIImageView+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = 156CBD2266287775279363430A374818 /* UIImageView+AFNetworking.m */; }; - A1560247914C760D9EE5F7A2392CC06C /* UIImage+GIF.h in Headers */ = {isa = PBXBuildFile; fileRef = 21199D87A8FB4561900F6BC425147989 /* UIImage+GIF.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A0B7A3B941134AA95A20F5A85165CC72 /* LSTPopView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C98FF255A58DDF6F211BD72458B9C3D0 /* LSTPopView-dummy.m */; }; + A0E0DC76F51300E7EB1EBA5492DE854D /* UIImageView+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = B628043D13CE1145E17714D58AB2A687 /* UIImageView+AFNetworking.m */; }; + A1560247914C760D9EE5F7A2392CC06C /* UIImage+GIF.h in Headers */ = {isa = PBXBuildFile; fileRef = FB1FCAC52ADC49B2B3A81FFCCD3D56EE /* UIImage+GIF.h */; settings = {ATTRIBUTES = (Public, ); }; }; A1A1266FD70CEB545FD7602CC33F2F7B /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BDEE6097B6411333154FEF90A280E3E4 /* QuartzCore.framework */; }; - A1ACD509069144C27542774A41FE0243 /* UITableView+LookinServer.h in Headers */ = {isa = PBXBuildFile; fileRef = 40380EFCFB5E34558C193A723D077BE3 /* UITableView+LookinServer.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A1BFCC1BC5107F5F72BDBDB98E12559C /* JXCategoryViewDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = C617C2D863C4AC28AF0370EDC02120A9 /* JXCategoryViewDefines.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A1ACD509069144C27542774A41FE0243 /* UITableView+LookinServer.h in Headers */ = {isa = PBXBuildFile; fileRef = E847BE3D7FA245C62A989A8A4F90542A /* UITableView+LookinServer.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A1BFCC1BC5107F5F72BDBDB98E12559C /* JXCategoryViewDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = B4750EDA171CA7EB95AFE62489A712EF /* JXCategoryViewDefines.h */; settings = {ATTRIBUTES = (Public, ); }; }; A1C02A0C13BE4A139BC38BBE20217FA2 /* JXCategoryView-JXCategoryView in Resources */ = {isa = PBXBuildFile; fileRef = BB4F011171FCB76B1AEBE390F843E930 /* JXCategoryView-JXCategoryView */; }; - A1DC9EFDF50DF0EAF24D9D7C219AD2C1 /* NSObject+MJProperty.h in Headers */ = {isa = PBXBuildFile; fileRef = BE09431A1BE57A882CA02B1E434916A8 /* NSObject+MJProperty.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A1E44277704AD68E867FD7C955A6632D /* MJRefreshBackGifFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 3A8EB0FE66AD3E48C10CDD802521D146 /* MJRefreshBackGifFooter.m */; }; - A324722BA42F21E98F158EA6C133D715 /* LookinServerDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = D03FDB7D5A636ED3DC51EF05677C546A /* LookinServerDefines.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A325C7E5098EB5641EF49D279EA9EF03 /* JXCategoryTitleView.m in Sources */ = {isa = PBXBuildFile; fileRef = 202D2DE7A9C3209A4BF4D407CF1AB06A /* JXCategoryTitleView.m */; }; - A3EA39A13714B3103B82F4066A642F53 /* MJExtensionConst.h in Headers */ = {isa = PBXBuildFile; fileRef = 04A50C0A5F4CA1B3AF632BFE12460FC6 /* MJExtensionConst.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A643679AC9795083558C6D8E33AF6151 /* JXCategoryBaseCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A08646B05BD58116699CDFD07CA2977 /* JXCategoryBaseCell.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A6728DA26A7C457B78A7A3CCFA9D9A10 /* UILabel+LookinServer.h in Headers */ = {isa = PBXBuildFile; fileRef = 015571B1499F434BC7171DE7EA094577 /* UILabel+LookinServer.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A6B2B022993BBC55550CFBB0A0C78209 /* LookinConnectionAttachment.m in Sources */ = {isa = PBXBuildFile; fileRef = 595E9691CC1A487C44431E51893A1D01 /* LookinConnectionAttachment.m */; }; - A6FCF74348D1907891FBDE3F2E331136 /* DZNEmptyDataSet-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = A05508640C7796358B45E0B5C0C73183 /* DZNEmptyDataSet-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A760FF1452F08B787F0997D91F4A2C98 /* HWPageSheetPresentingAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = C947209A5CDFABA11FEBE5D709864961 /* HWPageSheetPresentingAnimation.m */; }; - A839428F403C52D8AA3466B65E20C27A /* NSButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A7095DB3527991440F374C9F9DB5050 /* NSButton+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A86CC1AFDFDD692DC4EE66F57C0F39E6 /* UIScrollView+MJRefresh.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AFDFE95B53BDA0F282212CF3E9B940F /* UIScrollView+MJRefresh.m */; }; - A8AD2AE9695630E93DE504211EBAFBF1 /* LKS_CustomDisplayItemsMaker.h in Headers */ = {isa = PBXBuildFile; fileRef = 230F8C4FD68EA2D95EA48F31DA295CE9 /* LKS_CustomDisplayItemsMaker.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A92AB5E65CA85947368E46E6627F1BFB /* UIButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 21C74D93A3238750FF610EABE13EB50F /* UIButton+WebCache.m */; }; - A93BA1C5A4FFEF3ACF371690485A2703 /* NSObject+LookinServer.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B26E1BE3EBF37131688F5656289ACA2 /* NSObject+LookinServer.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A9609EEBDD5FD40292925E80ED84D5DF /* LookinServer-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5F4DF3FAFAFDE0BEC7606CB8D4C2C98B /* LookinServer-dummy.m */; }; - A9A49E4A3BE8882F60DF32BAF39DE191 /* SDWebImageManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 32DEFB57DAEAFA1A97A9826678533D16 /* SDWebImageManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A9BEDE2ADF9D1E0D0D1A241806A1A486 /* LKSConfigManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 17DDB1AC9EC1929E6B6DFC0CFA9D927D /* LKSConfigManager.m */; }; - AA1EA8F0F0470F1596B1FFA58ABF3375 /* SDWebImageDownloaderOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = D68B54EB4EEB9AF6B9ED16CAB83E16BA /* SDWebImageDownloaderOperation.m */; }; - ABCB80C4813C849FC93D57676820C907 /* SDImageCacheDefine.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A8A3FC6E6388A4864974A3D3B9C02F6 /* SDImageCacheDefine.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AC14E56ECA7A4980A8E1CA68E800B12C /* SDWebImagePrefetcher.h in Headers */ = {isa = PBXBuildFile; fileRef = C63ECE6EA6AB3C1B9F676C1A2510CA67 /* SDWebImagePrefetcher.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AC710813CB6A1DAEEE45914402F864D2 /* MJProperty.m in Sources */ = {isa = PBXBuildFile; fileRef = C9DDC2FE19D7DC5621872F440C5E8A37 /* MJProperty.m */; }; - AD01931D200C49153984E27CBCEFE9D1 /* FLAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = CE3837EC7E52B2C2855416D01CB974C7 /* FLAnimatedImage.m */; }; - AD395F6BD7F53258A431E9479D07C6AF /* JXCategoryTitleImageCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 04AE87BD26EBAF13B558201544C0E822 /* JXCategoryTitleImageCellModel.m */; }; - ADAB2E78F005C6413F9F3699D60CF727 /* LSTTimer.m in Sources */ = {isa = PBXBuildFile; fileRef = EF426A2B87D32263A2C56A13732C8201 /* LSTTimer.m */; }; - AE69A3B75BEEB9E2C54168BF0C502BC6 /* LKS_RequestHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 15E765BB9B77EA9AC2800F30D2802C1C /* LKS_RequestHandler.m */; }; - AE7B02645B8F769CA5F215EE8F7CC5B0 /* View+MASAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = E44ED3A05255119AA352B7DE0C64E994 /* View+MASAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AF17C7BD3344504E243E234004B4593E /* JXCategoryIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = FD4AB223CCA1E3159EE2C805605A0657 /* JXCategoryIndicatorView.m */; }; - AF185CDCA462AD6450543676951C82F9 /* LKS_ObjectRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A2FC8CB1CFEB2812A4E5E466940232C /* LKS_ObjectRegistry.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AFD1D411A9387DCEC6F0034653E23787 /* DZNEmptyDataSet-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FFFC6DDC16F58E87A8A30CA92223320F /* DZNEmptyDataSet-dummy.m */; }; - AFDC0B8255B2F3CED8E609F8A3BD1CDB /* LKS_AttrGroupsMaker.m in Sources */ = {isa = PBXBuildFile; fileRef = 1C4B5B00D7224F098F6B2FE0962E5086 /* LKS_AttrGroupsMaker.m */; }; - B01F27CEAE1971DEC56A8811FE669EB6 /* UIViewController+Presentation.m in Sources */ = {isa = PBXBuildFile; fileRef = C806BECAA1C722F04FE4A89D9B14A0E0 /* UIViewController+Presentation.m */; }; - B030B558BE97E0225652EFB8C8FA431F /* AFAutoPurgingImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = F7FE08919F8BE5AACFB3A1E812E57C03 /* AFAutoPurgingImageCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A1DC9EFDF50DF0EAF24D9D7C219AD2C1 /* NSObject+MJProperty.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C6F8F3E8953AADD74838D4A882F45A1 /* NSObject+MJProperty.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A1E44277704AD68E867FD7C955A6632D /* MJRefreshBackGifFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = FD937703BB1091324CC7A54FB95A5217 /* MJRefreshBackGifFooter.m */; }; + A324722BA42F21E98F158EA6C133D715 /* LookinServerDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = EB54379A72A5DCC64A2C9D42F05AE928 /* LookinServerDefines.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A325C7E5098EB5641EF49D279EA9EF03 /* JXCategoryTitleView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8FEE8F6EEF601125225DCB1FEACED91C /* JXCategoryTitleView.m */; }; + A3EA39A13714B3103B82F4066A642F53 /* MJExtensionConst.h in Headers */ = {isa = PBXBuildFile; fileRef = 65CCB6F10EC6B284E771B999975CE0B0 /* MJExtensionConst.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A59F64C74CB407EBC0385F026FC7234A /* LYEmptyView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F19C07EBC4D3E8EF1AD6C474E7F24FE /* LYEmptyView-dummy.m */; }; + A643679AC9795083558C6D8E33AF6151 /* JXCategoryBaseCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 72B1B153E1909E0A9DFA6E6097FD363D /* JXCategoryBaseCell.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6728DA26A7C457B78A7A3CCFA9D9A10 /* UILabel+LookinServer.h in Headers */ = {isa = PBXBuildFile; fileRef = D5909A44E1AC01893309CADDDBC4E50C /* UILabel+LookinServer.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6B2B022993BBC55550CFBB0A0C78209 /* LookinConnectionAttachment.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C75F181A3E07F7E7B4B017B48488393 /* LookinConnectionAttachment.m */; }; + A6FCF74348D1907891FBDE3F2E331136 /* DZNEmptyDataSet-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 6523AFC889399B6B25C08CCBEEE2F0B6 /* DZNEmptyDataSet-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A760FF1452F08B787F0997D91F4A2C98 /* HWPageSheetPresentingAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = F5EB73BE761C595601603CE39EC8D850 /* HWPageSheetPresentingAnimation.m */; }; + A839428F403C52D8AA3466B65E20C27A /* NSButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = CE2B5265F3721FD7EAE15556CCDB1151 /* NSButton+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A86CC1AFDFDD692DC4EE66F57C0F39E6 /* UIScrollView+MJRefresh.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B94BD4B7CE09D63E43117EFC4B15D0D /* UIScrollView+MJRefresh.m */; }; + A8AD2AE9695630E93DE504211EBAFBF1 /* LKS_CustomDisplayItemsMaker.h in Headers */ = {isa = PBXBuildFile; fileRef = 98935AEC9F6608D5CCBFEF667B9F658A /* LKS_CustomDisplayItemsMaker.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A92AB5E65CA85947368E46E6627F1BFB /* UIButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = E8B2553B72F322F7DC0ED38BB760DDC6 /* UIButton+WebCache.m */; }; + A93BA1C5A4FFEF3ACF371690485A2703 /* NSObject+LookinServer.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A9477BE731926B610D9B847EF5B7347 /* NSObject+LookinServer.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A9609EEBDD5FD40292925E80ED84D5DF /* LookinServer-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D00FB0A2824B0B4E8A345D97C52AA3B /* LookinServer-dummy.m */; }; + A9A49E4A3BE8882F60DF32BAF39DE191 /* SDWebImageManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 253C2858A52DB3FD4BE13D65D2B6C2A6 /* SDWebImageManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A9BEDE2ADF9D1E0D0D1A241806A1A486 /* LKSConfigManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 32E665F5EEABCF137D52CE4A3889C9F0 /* LKSConfigManager.m */; }; + AA1EA8F0F0470F1596B1FFA58ABF3375 /* SDWebImageDownloaderOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 35B67A3C0E25A19B996355E03ED4A3CD /* SDWebImageDownloaderOperation.m */; }; + ABCB80C4813C849FC93D57676820C907 /* SDImageCacheDefine.h in Headers */ = {isa = PBXBuildFile; fileRef = B2C2A4CA80B5FE7CB8927FAEE4CAF5F4 /* SDImageCacheDefine.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AC14E56ECA7A4980A8E1CA68E800B12C /* SDWebImagePrefetcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 6099FBA2A3EE3D602B49D82E19FA5875 /* SDWebImagePrefetcher.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AC710813CB6A1DAEEE45914402F864D2 /* MJProperty.m in Sources */ = {isa = PBXBuildFile; fileRef = 9D7E307063029FFE21DDCDC0455FA473 /* MJProperty.m */; }; + AD01931D200C49153984E27CBCEFE9D1 /* FLAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = D1046C4A0F4D596969B881D83BCC0FA1 /* FLAnimatedImage.m */; }; + AD395F6BD7F53258A431E9479D07C6AF /* JXCategoryTitleImageCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = B28192DA39251C0AC1C30AE245A9A547 /* JXCategoryTitleImageCellModel.m */; }; + AE69A3B75BEEB9E2C54168BF0C502BC6 /* LKS_RequestHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = DF017A36F518C19E10298190FD8A84C4 /* LKS_RequestHandler.m */; }; + AE7B02645B8F769CA5F215EE8F7CC5B0 /* View+MASAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B8AB8065F8811289957B59E9EBA6B47 /* View+MASAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AF17C7BD3344504E243E234004B4593E /* JXCategoryIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1817B2506E6D89DAFA8176C4A51738C0 /* JXCategoryIndicatorView.m */; }; + AF185CDCA462AD6450543676951C82F9 /* LKS_ObjectRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = DBFA6FCFCE1CB3F169BDBDCE936950B5 /* LKS_ObjectRegistry.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AFD1D411A9387DCEC6F0034653E23787 /* DZNEmptyDataSet-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B8322800FD1F06BC2FEA3A9EEA874E20 /* DZNEmptyDataSet-dummy.m */; }; + AFDC0B8255B2F3CED8E609F8A3BD1CDB /* LKS_AttrGroupsMaker.m in Sources */ = {isa = PBXBuildFile; fileRef = 00AE10F23D2B898E9F45884FD9904B2F /* LKS_AttrGroupsMaker.m */; }; + B01F27CEAE1971DEC56A8811FE669EB6 /* UIViewController+Presentation.m in Sources */ = {isa = PBXBuildFile; fileRef = F6CDCEC9BF52B36734600241EB9CC345 /* UIViewController+Presentation.m */; }; + B030B558BE97E0225652EFB8C8FA431F /* AFAutoPurgingImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = C3DBF2503619D6F278D203DBF5D29B4E /* AFAutoPurgingImageCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; B03761E468C3B0F1BFEB2401CF2D5245 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9D41AAC213895165C450F5576DE42CB2 /* Foundation.framework */; }; - B09F08548ACA8379445F6525011EE219 /* MJRefreshBackStateFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = DD1439668AF92748DEFAD18BF418CE55 /* MJRefreshBackStateFooter.m */; }; - B0F512045830FAB66AE7526E35501800 /* JXCategoryImageCellModel.h in Headers */ = {isa = PBXBuildFile; fileRef = D4C17E87C77E85F28C83D98FAB4AB7F4 /* JXCategoryImageCellModel.h */; settings = {ATTRIBUTES = (Public, ); }; }; - B2704AFFC5CC053154839DB44924D255 /* SDImageCoderHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = BBC5ED786070BB7777881EF2B55FF369 /* SDImageCoderHelper.m */; }; - B2B5444DFE63D2835A7561C1D64C9344 /* LKS_CustomAttrModificationHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 137E45FE90DEED579DF255BB11ADABF4 /* LKS_CustomAttrModificationHandler.h */; settings = {ATTRIBUTES = (Public, ); }; }; - B2BC43DEC8DE2B9234693FE3782AB76C /* LKSConfigManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D16058E57E3F07CA628E8A17A3B944C1 /* LKSConfigManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; - B331CE2D3DEB461E738B886086A365F9 /* SDImageGraphics.h in Headers */ = {isa = PBXBuildFile; fileRef = B5EF3518EEE6DB69526EE34FF9D58DFD /* SDImageGraphics.h */; settings = {ATTRIBUTES = (Public, ); }; }; - B48A975992E58328254C494F133DE467 /* NSObject+MJProperty.m in Sources */ = {isa = PBXBuildFile; fileRef = CFD12B92C17E28346EDC2EC75D0BF494 /* NSObject+MJProperty.m */; }; - B4F231C5CBAB3D4A184699D0066E0E83 /* SDImageAWebPCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = DC870A534B766E7815C7744EE9E7E3E1 /* SDImageAWebPCoder.h */; settings = {ATTRIBUTES = (Public, ); }; }; - B565C08CE947CF591B1D3582272D5E1D /* LKS_CustomAttrSetterManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 567674319F769F7E8B80920BBBD444B6 /* LKS_CustomAttrSetterManager.m */; }; - B59E60FBC9665FC1061B88B8E6FD9FAF /* Masonry-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = A8CBDE62F720E1751DB8B8E4DF3B0E9F /* Masonry-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - B5AF87C11A465F666473F6191D173905 /* UIView+WebCacheOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 634BE374E20F830B5B77550EFCF89612 /* UIView+WebCacheOperation.h */; settings = {ATTRIBUTES = (Public, ); }; }; - B5C521FFB8E09DFE348238E21556842F /* UILabel+LookinServer.m in Sources */ = {isa = PBXBuildFile; fileRef = 9E285AA5C9AFC477B5336B5AC2C863D1 /* UILabel+LookinServer.m */; }; - B61728EFE4A95013413ED38D371A33B0 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 187A3F425AA5E5A93F8784E11F9E28CF /* PrivacyInfo.xcprivacy */; }; - B66356D4E7E43B3D15324569AA7EBB05 /* SDWebImageDownloaderOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B89E97BE59B9448BC63E348FA77F055 /* SDWebImageDownloaderOperation.h */; settings = {ATTRIBUTES = (Public, ); }; }; - B680C2604BD8BC9644AE7C67BC46B9BB /* MASLayoutConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D56371580E6496005BC9D35C2C49570 /* MASLayoutConstraint.h */; settings = {ATTRIBUTES = (Public, ); }; }; - B741DBE2A466E6211F879EF997D9322D /* SDImageCodersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 83B5308ADA544D7E6FCE86EFD21D5CBB /* SDImageCodersManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; - B79864F972C51037B350802D8CD48024 /* LKS_GestureTargetActionsSearcher.m in Sources */ = {isa = PBXBuildFile; fileRef = BC88BA608872DDF711D78498FD36C1AA /* LKS_GestureTargetActionsSearcher.m */; }; - B81566F19789EBD9BE2714E2A6059D36 /* LookinDisplayItem.m in Sources */ = {isa = PBXBuildFile; fileRef = BCE8E065BE01E56E0D55097E36AB8FC2 /* LookinDisplayItem.m */; }; - B8CA1F338C44C633916650FD85DA5A30 /* HWPanModalPresentationController.h in Headers */ = {isa = PBXBuildFile; fileRef = 195F1795B17C3F026E46BBEF64C1EA67 /* HWPanModalPresentationController.h */; settings = {ATTRIBUTES = (Public, ); }; }; - B948DCB652CEF1509FBE410D85844A53 /* JXCategoryView-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 84C7B13561A207799480933E11856D99 /* JXCategoryView-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - B95C63A039D9D08896421291DEBD3AEB /* SDWebImageCacheKeyFilter.m in Sources */ = {isa = PBXBuildFile; fileRef = 34C31D8DFEC22296E69E97BC5CEAE316 /* SDWebImageCacheKeyFilter.m */; }; - B987864019E987FE32AB26A9CF2C8E12 /* UIViewController+PanModalDefault.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BAC219B4754C1E13B6929143780BE52 /* UIViewController+PanModalDefault.h */; settings = {ATTRIBUTES = (Public, ); }; }; - BA904ABA8ED36CC4E5EB2B2004CA1F18 /* MASCompositeConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = F451B2E12A8192978BB7FB1B45BF1E04 /* MASCompositeConstraint.h */; settings = {ATTRIBUTES = (Public, ); }; }; - BACAA91A92F35CD7E7795232A83F21D1 /* AFNetworkActivityIndicatorManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A5FC57ACB22E21DCA20F2B582D18A03F /* AFNetworkActivityIndicatorManager.m */; }; - BADA31750A2136D073EDA4461DBE1EEA /* UIButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C4CB24406FFC32C73C615D12F0532C7 /* UIButton+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; - BBA61EF31BFDFA6FCA34DC4EBE6E1D9A /* NSString+Lookin.h in Headers */ = {isa = PBXBuildFile; fileRef = 06AB57BB46CC82FE3257276649BAF8EA /* NSString+Lookin.h */; settings = {ATTRIBUTES = (Public, ); }; }; - BBF5FDA7D647517E2F904FE8E5596D96 /* LKS_AttrGroupsMaker.h in Headers */ = {isa = PBXBuildFile; fileRef = BE10A2A4B13E0F15A962DBEA161DE595 /* LKS_AttrGroupsMaker.h */; settings = {ATTRIBUTES = (Public, ); }; }; - BC2F9B1D6986FEB23B4FB1288B512538 /* MJRefreshNormalTrailer.h in Headers */ = {isa = PBXBuildFile; fileRef = 342267EEBD80FDDCEAA647EFBE0EB6BD /* MJRefreshNormalTrailer.h */; settings = {ATTRIBUTES = (Public, ); }; }; - BC5458210A973BC7A29D1F45D458A14B /* AFNetworking-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = A1067B051CF7A4C36817E6F668A3E7A6 /* AFNetworking-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - BC7A1933CCF40C3C5E2E4A70AD2D0657 /* LookinDisplayItemDetail.m in Sources */ = {isa = PBXBuildFile; fileRef = F90D97C684BADB3FE9796E626B98C43A /* LookinDisplayItemDetail.m */; }; - BCDC1E1D46DD124B5726A064D2EE66A3 /* UIImage+MultiFormat.m in Sources */ = {isa = PBXBuildFile; fileRef = 5734E5CBE9E63CD37E71A375796587B5 /* UIImage+MultiFormat.m */; }; - BCEEAFC24178DE5AABACC74245CE1739 /* JXCategoryIndicatorDotLineView.h in Headers */ = {isa = PBXBuildFile; fileRef = 898DE7614EA3416744425477D130D9C7 /* JXCategoryIndicatorDotLineView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - BCEFDE57BB0E0B36731C8D39FFA1BE2C /* SDWebImageDownloaderRequestModifier.h in Headers */ = {isa = PBXBuildFile; fileRef = AF302A5E7BA56F9F631A8591DA72D3C3 /* SDWebImageDownloaderRequestModifier.h */; settings = {ATTRIBUTES = (Public, ); }; }; - BD2F6B06ADB5136DA881D1B918367125 /* UIViewController+PanModalPresenter.m in Sources */ = {isa = PBXBuildFile; fileRef = B05FD8A103E2A06EE08BE59B38FC36B4 /* UIViewController+PanModalPresenter.m */; }; - BD30193C1E3D7B1F17B1B1F3F08BE655 /* UICollectionViewLayout+MJRefresh.m in Sources */ = {isa = PBXBuildFile; fileRef = 99CBD01AD35AF793B343AC0ACF2CF164 /* UICollectionViewLayout+MJRefresh.m */; }; - BD7E02AB6057AD5A6AC513C34D508135 /* JXCategoryIndicatorBackgroundView.h in Headers */ = {isa = PBXBuildFile; fileRef = FEF91306ED7817FCE47628D37A94BF1B /* JXCategoryIndicatorBackgroundView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - BDBE494BAC544843982C3CA96A6C41DD /* SDAnimatedImagePlayer.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BEAAFCDD4CD23AABA4CD7359454B646 /* SDAnimatedImagePlayer.h */; settings = {ATTRIBUTES = (Public, ); }; }; - BE4F0DF600FBF07E812D262B293CF76C /* UIView+LSTPV.m in Sources */ = {isa = PBXBuildFile; fileRef = A4D8DE877E59C1B5596F10D0213ADC5D /* UIView+LSTPV.m */; }; - BE7F6E08A9BDA2EF6FA625EB5CD685EC /* JXCategoryCollectionView.m in Sources */ = {isa = PBXBuildFile; fileRef = D9DA60EBF6A57B0D3224E3ACD3E51971 /* JXCategoryCollectionView.m */; }; - BF0C3D2782FE1425C2F1F8827132A94B /* MJFoundation.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C9F5466A18204DE825F30433C784EDB /* MJFoundation.h */; settings = {ATTRIBUTES = (Public, ); }; }; - BF22D137EF6324675FA50080C5D93C00 /* NSArray+MASAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C07CC30774DAAE34D68C477CE151A36 /* NSArray+MASAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; }; - BFAC671767912906E90060B0F4BED5FB /* LookinCustomAttrModification.h in Headers */ = {isa = PBXBuildFile; fileRef = 06A633B376D525417B93138405029540 /* LookinCustomAttrModification.h */; settings = {ATTRIBUTES = (Public, ); }; }; - BFD8EC99CD8DA66E3C6C0B3EE8CC4859 /* JXCategoryNumberCellModel.h in Headers */ = {isa = PBXBuildFile; fileRef = C74AFAA0D49E0563D9312CEA70CCF8B3 /* JXCategoryNumberCellModel.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C04D578067F77AAB6717D32712CC39A2 /* HWPanModal-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 83FBF1722FEB1FC5E339C64BC2275D81 /* HWPanModal-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C07F8A334C739FD38D9CB5C5239D683F /* JXCategoryTitleCellModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C34880EFF82114AECCB354A57C47E7C /* JXCategoryTitleCellModel.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C0D7926E41A294ACA98D7B033B283919 /* WKWebView+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 21E66554273E5793F0BC4D1CD5A058CD /* WKWebView+AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C16483526F6C6287240A75EDCB7E2F2F /* FLAnimatedImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E3535B97DCD1B05E059D045B16700F34 /* FLAnimatedImage-dummy.m */; }; - C1D9802BE2A6410FFDFB1650FB9BA317 /* LookinDisplayItem.h in Headers */ = {isa = PBXBuildFile; fileRef = FED61E621A88CB9CE3C421FDEB1106FC /* LookinDisplayItem.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C1DD8C6A64F948E4C53560C76B995DA4 /* SDAnimatedImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = BEE43BCA7C1A101BFC7A5856F8793387 /* SDAnimatedImageView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C2033A68F13923BF9B3EE19F39FC1411 /* UIColor+LookinServer.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A34A08E72CC7EE2DEDDC6F48148CD79 /* UIColor+LookinServer.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C2068AEACC2D9C7F1FFE41AA25B12A68 /* MASUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E54C32C4CB68C01C57E81C03350F4B2 /* MASUtilities.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C22BFD04EAB76981E7F112D57A1F5E79 /* JXCategoryNumberCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B8FD707DDEC1F98F5C5FE19647F0592 /* JXCategoryNumberCell.m */; }; - C2840BF1950FF7EE2DCD6D55F768A49C /* UIImage+GIF.m in Sources */ = {isa = PBXBuildFile; fileRef = 35205291EDA412911A7CCBF5DB6087EB /* UIImage+GIF.m */; }; + B09F08548ACA8379445F6525011EE219 /* MJRefreshBackStateFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = E7485AA213719656370219B55A0AAE3C /* MJRefreshBackStateFooter.m */; }; + B0F512045830FAB66AE7526E35501800 /* JXCategoryImageCellModel.h in Headers */ = {isa = PBXBuildFile; fileRef = D51E4D4230E01D5F3D9340BDF320C3E1 /* JXCategoryImageCellModel.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B2704AFFC5CC053154839DB44924D255 /* SDImageCoderHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = FEE19DBCD45615CC389DD7223D3C447A /* SDImageCoderHelper.m */; }; + B2B5444DFE63D2835A7561C1D64C9344 /* LKS_CustomAttrModificationHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EFF4D34DD5391DCE7D206B11306BCE5 /* LKS_CustomAttrModificationHandler.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B2BC43DEC8DE2B9234693FE3782AB76C /* LKSConfigManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A4CFB2BE169777F50B29077639FCFEC4 /* LKSConfigManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B2E706AF15CBC9BBDA6B180AA008345E /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 0FFF1AB10AC30C72DB3B2F106B23E5B3 /* PrivacyInfo.xcprivacy */; }; + B331CE2D3DEB461E738B886086A365F9 /* SDImageGraphics.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EA970CCF2164DC59ECEE9DE06B1BCBA /* SDImageGraphics.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B48A975992E58328254C494F133DE467 /* NSObject+MJProperty.m in Sources */ = {isa = PBXBuildFile; fileRef = D44C8E719DA4251716FDA4B2519C022D /* NSObject+MJProperty.m */; }; + B4F231C5CBAB3D4A184699D0066E0E83 /* SDImageAWebPCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = BF3C6AEB909F4472F8D8E4E21B25B716 /* SDImageAWebPCoder.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B565C08CE947CF591B1D3582272D5E1D /* LKS_CustomAttrSetterManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F363F53534ED7FE5A4BB0A1E1863D5E7 /* LKS_CustomAttrSetterManager.m */; }; + B59E60FBC9665FC1061B88B8E6FD9FAF /* Masonry-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 128CF11122A7C2009F733361122E39A1 /* Masonry-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B5AF87C11A465F666473F6191D173905 /* UIView+WebCacheOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = CF6ABA6691731EEA533F56170FB03C5C /* UIView+WebCacheOperation.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B5C521FFB8E09DFE348238E21556842F /* UILabel+LookinServer.m in Sources */ = {isa = PBXBuildFile; fileRef = 6BD526972490CFC41EE7106FF8E272CC /* UILabel+LookinServer.m */; }; + B66356D4E7E43B3D15324569AA7EBB05 /* SDWebImageDownloaderOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 304D443FD07AF14BA7F1628D80971669 /* SDWebImageDownloaderOperation.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B680C2604BD8BC9644AE7C67BC46B9BB /* MASLayoutConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A98EB9CE425ECC87D9747E4EAC3DB0C /* MASLayoutConstraint.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B741DBE2A466E6211F879EF997D9322D /* SDImageCodersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BC7EB117F009B160822B3FFCCC63F2A /* SDImageCodersManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B79864F972C51037B350802D8CD48024 /* LKS_GestureTargetActionsSearcher.m in Sources */ = {isa = PBXBuildFile; fileRef = C81473AB6162F68681F317D8EC207A4C /* LKS_GestureTargetActionsSearcher.m */; }; + B81566F19789EBD9BE2714E2A6059D36 /* LookinDisplayItem.m in Sources */ = {isa = PBXBuildFile; fileRef = AE19AE8E2478EF2E39C49272A1998EFE /* LookinDisplayItem.m */; }; + B8CA1F338C44C633916650FD85DA5A30 /* HWPanModalPresentationController.h in Headers */ = {isa = PBXBuildFile; fileRef = 87888E540A812F012C68F804E8F5AE7B /* HWPanModalPresentationController.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B948DCB652CEF1509FBE410D85844A53 /* JXCategoryView-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = AC3EF9D4544217A0B4E13DA6B530C974 /* JXCategoryView-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B95C63A039D9D08896421291DEBD3AEB /* SDWebImageCacheKeyFilter.m in Sources */ = {isa = PBXBuildFile; fileRef = C909F8904D301FB96965DD62CE4E2CA7 /* SDWebImageCacheKeyFilter.m */; }; + B987864019E987FE32AB26A9CF2C8E12 /* UIViewController+PanModalDefault.h in Headers */ = {isa = PBXBuildFile; fileRef = E8C71212CAB0DCBF4059538A93053A4A /* UIViewController+PanModalDefault.h */; settings = {ATTRIBUTES = (Public, ); }; }; + BA904ABA8ED36CC4E5EB2B2004CA1F18 /* MASCompositeConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = AE4CC2528765A45B472AD5B813D01119 /* MASCompositeConstraint.h */; settings = {ATTRIBUTES = (Public, ); }; }; + BACAA91A92F35CD7E7795232A83F21D1 /* AFNetworkActivityIndicatorManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6516BB90D0CA47F75712B356350A9FC1 /* AFNetworkActivityIndicatorManager.m */; }; + BADA31750A2136D073EDA4461DBE1EEA /* UIButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 731A2E2A09E554B786F7BD8D9285D1CC /* UIButton+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; + BBA61EF31BFDFA6FCA34DC4EBE6E1D9A /* NSString+Lookin.h in Headers */ = {isa = PBXBuildFile; fileRef = 92670C1E3C13D6C6157E7AFB4347DB17 /* NSString+Lookin.h */; settings = {ATTRIBUTES = (Public, ); }; }; + BBF5FDA7D647517E2F904FE8E5596D96 /* LKS_AttrGroupsMaker.h in Headers */ = {isa = PBXBuildFile; fileRef = 313050E8524ED89E2B2CF8F5C1CC7633 /* LKS_AttrGroupsMaker.h */; settings = {ATTRIBUTES = (Public, ); }; }; + BC2F9B1D6986FEB23B4FB1288B512538 /* MJRefreshNormalTrailer.h in Headers */ = {isa = PBXBuildFile; fileRef = 83340409B38BF2A20F089A4B919FC02F /* MJRefreshNormalTrailer.h */; settings = {ATTRIBUTES = (Public, ); }; }; + BC5458210A973BC7A29D1F45D458A14B /* AFNetworking-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 83E8510A179E756198B5FC915A27736E /* AFNetworking-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + BC7A1933CCF40C3C5E2E4A70AD2D0657 /* LookinDisplayItemDetail.m in Sources */ = {isa = PBXBuildFile; fileRef = 15D6A20A536D39FB4F4DE78CEC3512CE /* LookinDisplayItemDetail.m */; }; + BCDC1E1D46DD124B5726A064D2EE66A3 /* UIImage+MultiFormat.m in Sources */ = {isa = PBXBuildFile; fileRef = 373258A2F6DFCE8ADD1C1D42DE5EF5D3 /* UIImage+MultiFormat.m */; }; + BCEEAFC24178DE5AABACC74245CE1739 /* JXCategoryIndicatorDotLineView.h in Headers */ = {isa = PBXBuildFile; fileRef = C398AC4FA166ECBDBFA37681D3C108CC /* JXCategoryIndicatorDotLineView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + BCEFDE57BB0E0B36731C8D39FFA1BE2C /* SDWebImageDownloaderRequestModifier.h in Headers */ = {isa = PBXBuildFile; fileRef = B2CE10A014B3B7826BFF751346CE7495 /* SDWebImageDownloaderRequestModifier.h */; settings = {ATTRIBUTES = (Public, ); }; }; + BD2F6B06ADB5136DA881D1B918367125 /* UIViewController+PanModalPresenter.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A1E2D85798C902C2A1E1B714EF78587 /* UIViewController+PanModalPresenter.m */; }; + BD30193C1E3D7B1F17B1B1F3F08BE655 /* UICollectionViewLayout+MJRefresh.m in Sources */ = {isa = PBXBuildFile; fileRef = BE1A1849BD6BB4B796D54DCBEF79FB7A /* UICollectionViewLayout+MJRefresh.m */; }; + BD7E02AB6057AD5A6AC513C34D508135 /* JXCategoryIndicatorBackgroundView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EE479D553AE99C7C893E8B21299B3AC /* JXCategoryIndicatorBackgroundView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + BDBE494BAC544843982C3CA96A6C41DD /* SDAnimatedImagePlayer.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C1E503B34448DC968FB5BDFADFAE70F /* SDAnimatedImagePlayer.h */; settings = {ATTRIBUTES = (Public, ); }; }; + BE4F0DF600FBF07E812D262B293CF76C /* UIView+LSTPV.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B1E80842E43848FFB0F162AFF96E774 /* UIView+LSTPV.m */; }; + BE7F6E08A9BDA2EF6FA625EB5CD685EC /* JXCategoryCollectionView.m in Sources */ = {isa = PBXBuildFile; fileRef = E81450568229FA708143E74A7A580F89 /* JXCategoryCollectionView.m */; }; + BF0C3D2782FE1425C2F1F8827132A94B /* MJFoundation.h in Headers */ = {isa = PBXBuildFile; fileRef = 99650956C6DC18187951AE72D50E44A2 /* MJFoundation.h */; settings = {ATTRIBUTES = (Public, ); }; }; + BF22D137EF6324675FA50080C5D93C00 /* NSArray+MASAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 05FF40C91ADEB302CBF4314535A1A6E7 /* NSArray+MASAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; }; + BFAC671767912906E90060B0F4BED5FB /* LookinCustomAttrModification.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B865CFCA1FF1600CB766B9BC34B8D9 /* LookinCustomAttrModification.h */; settings = {ATTRIBUTES = (Public, ); }; }; + BFD8EC99CD8DA66E3C6C0B3EE8CC4859 /* JXCategoryNumberCellModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 292BBC0398F56F3818017A7314541B45 /* JXCategoryNumberCellModel.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C04D578067F77AAB6717D32712CC39A2 /* HWPanModal-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EFF4EEBD779C7DB39B6B044205385FA /* HWPanModal-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C07F8A334C739FD38D9CB5C5239D683F /* JXCategoryTitleCellModel.h in Headers */ = {isa = PBXBuildFile; fileRef = E01ADBA325921AF74B0FBD58F7BB5032 /* JXCategoryTitleCellModel.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C0D7926E41A294ACA98D7B033B283919 /* WKWebView+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = B052BF123A39C5CF4B531584A2A83BED /* WKWebView+AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C16483526F6C6287240A75EDCB7E2F2F /* FLAnimatedImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CCD2F6CD21BCE8D4DC6CE0FB91B91CB /* FLAnimatedImage-dummy.m */; }; + C1D9802BE2A6410FFDFB1650FB9BA317 /* LookinDisplayItem.h in Headers */ = {isa = PBXBuildFile; fileRef = 6EE8AE5699FC4ACD4283D4626ACDF742 /* LookinDisplayItem.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C1DD8C6A64F948E4C53560C76B995DA4 /* SDAnimatedImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 37977014CE5B8A9E93F1EC56C3AC6D52 /* SDAnimatedImageView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C2033A68F13923BF9B3EE19F39FC1411 /* UIColor+LookinServer.h in Headers */ = {isa = PBXBuildFile; fileRef = A810CCF3953514350B557ABBEEBE5FF6 /* UIColor+LookinServer.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C2068AEACC2D9C7F1FFE41AA25B12A68 /* MASUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BFABBA210FF6BEF09CABCCBE8AE590F /* MASUtilities.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C22BFD04EAB76981E7F112D57A1F5E79 /* JXCategoryNumberCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B51D3C0C65114DF44F6DDB3ED9C4E4E /* JXCategoryNumberCell.m */; }; + C2840BF1950FF7EE2DCD6D55F768A49C /* UIImage+GIF.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A2AEB4C3E4F6147F107DF9376FA7264 /* UIImage+GIF.m */; }; C2F8C43CFD4C890405F217DA7E00C839 /* Pods-CustomKeyboard-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DDD0462C32F55EF5E9CB1056459809F /* Pods-CustomKeyboard-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C2FE60A10C792613E45031AE6E851ECB /* MASViewConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = CF9BCBE90C3B7C448764C897685CB0E3 /* MASViewConstraint.m */; }; - C4CC01ED368863C6E3220988FBC6CEFB /* LKS_CustomAttrSetterManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 38E107BE978505B98A952E3564F532AA /* LKS_CustomAttrSetterManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C60DB44F719853DE3B7157960DAF9270 /* MJRefreshComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 4F81509596D525489E9AA55CE4C0B4C1 /* MJRefreshComponent.m */; }; - C6A100159974349FEAAC99B82BE0F872 /* SDImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CE19B5D21ECCFC76311F186D2B3F651 /* SDImageLoader.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C6FEC1088121FEA7DDC3384B7ECF3B44 /* LKS_Helper.h in Headers */ = {isa = PBXBuildFile; fileRef = FA6406A6E74DC06D367BE38EA6C60243 /* LKS_Helper.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C2FE60A10C792613E45031AE6E851ECB /* MASViewConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 0CE35A6903D3E473ACA2703E7286A28E /* MASViewConstraint.m */; }; + C4CC01ED368863C6E3220988FBC6CEFB /* LKS_CustomAttrSetterManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A0925E96742E33F78D548F10A7C0475D /* LKS_CustomAttrSetterManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C60DB44F719853DE3B7157960DAF9270 /* MJRefreshComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C9E32D40F89FB7470530B4F8AAB6162 /* MJRefreshComponent.m */; }; + C6A100159974349FEAAC99B82BE0F872 /* SDImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = C8ED101794ADA1876F4FFCBD1F79D622 /* SDImageLoader.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C6FEC1088121FEA7DDC3384B7ECF3B44 /* LKS_Helper.h in Headers */ = {isa = PBXBuildFile; fileRef = 3CA454A209E71894BC9366B10B95D086 /* LKS_Helper.h */; settings = {ATTRIBUTES = (Public, ); }; }; C71935C30C1AEDF32B96670BD8FA64CE /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F5B3C0CF01454E7AC9226E88FDFBAE6 /* UIKit.framework */; }; - C74589E03918328E4D27EFCBF6C4A0B8 /* JXCategoryBaseCellModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 65F97EE1352D7FC02982C03FB1D0FBEB /* JXCategoryBaseCellModel.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C857B8D2D0BAA5A8A764F9E1C4B85807 /* ViewController+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 1BABE1F324CED82D14350741682D422B /* ViewController+MASAdditions.m */; }; - C8685678D1B020F87365D022216FFE29 /* JXCategoryIndicatorImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = D5D75E71D2ABCC5D3DDCC662DACBFAED /* JXCategoryIndicatorImageView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C8771885BEA9EA0BD2E2C474587325E2 /* LKS_ExportManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 44ABB514E2C8BB7AA8881283E1F0FE47 /* LKS_ExportManager.m */; }; - C8EC35DFB0945DBE2F2FF9ECFE6D9711 /* NSLayoutConstraint+MASDebugAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 25A7097BBC72B099A6C5D8BE403878A8 /* NSLayoutConstraint+MASDebugAdditions.m */; }; - C922BFFF717515E5878910DF4078CE1E /* JXCategoryIndicatorDotLineView.m in Sources */ = {isa = PBXBuildFile; fileRef = EC4AC84F5855EC104608477917DF3145 /* JXCategoryIndicatorDotLineView.m */; }; - C93E972E75F84674690300123984EC43 /* SDAssociatedObject.m in Sources */ = {isa = PBXBuildFile; fileRef = 9421B0E41FC583CAD966F98C60445BAB /* SDAssociatedObject.m */; }; - C992A335399F942237E754EE65C40CA5 /* LookinObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B1D41519ED222707112BD66393CC6B2 /* LookinObject.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C993A4D0CFA51E567F458CA65C1298AA /* MBProgressHUD-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = D5100072476E008E3F5E024784855C6A /* MBProgressHUD-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C9A72F0A93329C42B77395B0F6CEA26C /* HWPanModalPresentable.h in Headers */ = {isa = PBXBuildFile; fileRef = 83D5AD11F2E32B53BA1869D6DE812341 /* HWPanModalPresentable.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C9B63C6ED2ED691EA83D3EE65939444B /* Lookin_PTProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = FB5DC78AEFAB6098819933CF81AAB15B /* Lookin_PTProtocol.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C9E19D164C26414115CC969ED9A303C1 /* MASLayoutConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = EB21E143FD58D712C16E9026FBFFE194 /* MASLayoutConstraint.m */; }; - C9E8C9372C2DA29D302B058BE3AE9877 /* CALayer+LookinServer.h in Headers */ = {isa = PBXBuildFile; fileRef = 26925632A670841DDFC5067C12B16515 /* CALayer+LookinServer.h */; settings = {ATTRIBUTES = (Public, ); }; }; - CA1E0DCDF679EA2DE2ED0915426E1D04 /* SDWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = C5A9A86ABA54140CD0A5B6CD44C79740 /* SDWeakProxy.m */; }; - CA56274BE7CBB3E759E0364785DF9799 /* Lookin_PTChannel.h in Headers */ = {isa = PBXBuildFile; fileRef = 35269DC2485E9AA07A892FDEB96B16C7 /* Lookin_PTChannel.h */; settings = {ATTRIBUTES = (Public, ); }; }; - CA9AFE3460622CC65F75A2DDE845F6E9 /* JXPagerSmoothView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A2E4F46AFE1B8413F8C1C81323B5831 /* JXPagerSmoothView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - CE2AF36EBB17CDA2652CBADD4A7ABF82 /* JXCategoryImageCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = EC57F0405D7809ECABB52C0C041C6F2F /* JXCategoryImageCellModel.m */; }; - CE86196C00DC1D658B6CB7D47A0233AA /* LKS_ConnectionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 60913F6F25D56976457BFFCFF2C2FADC /* LKS_ConnectionManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; - CEC9EF043F69710AC29940EB4E1E2B19 /* RTLManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E752820782AF474A360AC65F5EFA79D /* RTLManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; - CF7005F2C42AC2E2DD6D437D52C7048B /* HWPresentingVCAnimatedTransitioning.h in Headers */ = {isa = PBXBuildFile; fileRef = 5AEB6DDDE2B74ABEB1D68CE037D784DC /* HWPresentingVCAnimatedTransitioning.h */; settings = {ATTRIBUTES = (Public, ); }; }; - CFF8D1A5E4C2097EF05E1021FE112886 /* SDWebImageIndicator.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A8F3B5ED5052E8AFF569E50436DC3C0 /* SDWebImageIndicator.m */; }; - D06BB547D59D183FD1DDD84DEBAC9EE8 /* SDWebImageCacheSerializer.m in Sources */ = {isa = PBXBuildFile; fileRef = 6BEFA0A1959620AC394975A01082A23B /* SDWebImageCacheSerializer.m */; }; - D08901EA319887BE6D694F8333BE8D1F /* JXCategoryIndicatorTriangleView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1E17CF24E4278604BB723E30B9997957 /* JXCategoryIndicatorTriangleView.m */; }; - D091F05269EE0566B665B00C7D912F8E /* Lookin_PTChannel.m in Sources */ = {isa = PBXBuildFile; fileRef = 69AE4F19374B51CFBF6330CC5F82B32A /* Lookin_PTChannel.m */; }; - D0E37358C3DCF2A8A572C4F38BB0569B /* JXCategoryListContainerView.m in Sources */ = {isa = PBXBuildFile; fileRef = 29EA07EA8EF3C7818A9505A783C4FF02 /* JXCategoryListContainerView.m */; }; - D121163078CA9BBE54A83BD73EF784CF /* LSTPopViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F35F0E5B188FD04E8E889503DEA5841 /* LSTPopViewProtocol.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D1230E19DD1507E6370B80DF6653AC2A /* NSArray+Lookin.m in Sources */ = {isa = PBXBuildFile; fileRef = D4BC45247918896A52CA0C54F038B447 /* NSArray+Lookin.m */; }; - D2AF9A7FD73B95960FDA4FD06C4BED08 /* NSObject+MJKeyValue.h in Headers */ = {isa = PBXBuildFile; fileRef = BDE2764DE3EEF78845A18DB898232DC0 /* NSObject+MJKeyValue.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D2CD8848F856EC9942A76610AAE66F0A /* SDImageIOCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 31894250FE81D510485178A2F984B715 /* SDImageIOCoder.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D31558927DE3F62D1BB1FC416E6F237D /* JXCategoryDotCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = EF3A8DFB97BB54D169F6E8AC578F498C /* JXCategoryDotCellModel.m */; }; - D3615499AFE4D2A8EC2E773F4D8A82B2 /* KeyValueObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E70DDAD553B6A4AC2379D01C3F133EF /* KeyValueObserver.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D380F9C945002DBF2E7D64983ABDC890 /* JXPagerListContainerView.h in Headers */ = {isa = PBXBuildFile; fileRef = CF85D3EF505C17C565E691AC344CCE5C /* JXPagerListContainerView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D559CC4D0695CEE05F3B4C1C06475044 /* UIImageView+LookinServer.h in Headers */ = {isa = PBXBuildFile; fileRef = F45F2EB9AE5E2D5BDC0F9860DB695385 /* UIImageView+LookinServer.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D5C046C46961BE465293625D6B870620 /* AFNetworking-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 17CD950341D8F0132ADFEDC39B7267A7 /* AFNetworking-dummy.m */; }; - D62A672EEB252581BD972DDA862BE1DD /* SDWebImage-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 5409A465D5BE745D21B9F8847B798BD5 /* SDWebImage-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D662C83ECE8BEDA5FFB52F3575CA3E1A /* SDImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = BCAF03C4FF87945F86C061039CB2443F /* SDImageCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C74589E03918328E4D27EFCBF6C4A0B8 /* JXCategoryBaseCellModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D7A76984F1E3BB7440B31DF8D5447F0 /* JXCategoryBaseCellModel.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C857B8D2D0BAA5A8A764F9E1C4B85807 /* ViewController+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = DB1B5D6DA097974C176F91F3853055EC /* ViewController+MASAdditions.m */; }; + C8685678D1B020F87365D022216FFE29 /* JXCategoryIndicatorImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = EF2876A2D62001FE741FE92492A10CFF /* JXCategoryIndicatorImageView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C8771885BEA9EA0BD2E2C474587325E2 /* LKS_ExportManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 207535A186296DE018201ED1B7DDD076 /* LKS_ExportManager.m */; }; + C8EC35DFB0945DBE2F2FF9ECFE6D9711 /* NSLayoutConstraint+MASDebugAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = D8B8A062E76BF87D54F581F6428D4E28 /* NSLayoutConstraint+MASDebugAdditions.m */; }; + C922BFFF717515E5878910DF4078CE1E /* JXCategoryIndicatorDotLineView.m in Sources */ = {isa = PBXBuildFile; fileRef = FD7C0DEE68BC5E8256170F72FCC61847 /* JXCategoryIndicatorDotLineView.m */; }; + C93E972E75F84674690300123984EC43 /* SDAssociatedObject.m in Sources */ = {isa = PBXBuildFile; fileRef = 321334B98147E6E64FCE056E3717FEE0 /* SDAssociatedObject.m */; }; + C992A335399F942237E754EE65C40CA5 /* LookinObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 371A20C759D3E78183B0BC7EA626FA2D /* LookinObject.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C993A4D0CFA51E567F458CA65C1298AA /* MBProgressHUD-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = A8AF8342462E3EDE8E3D40F840DFA00C /* MBProgressHUD-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C9A72F0A93329C42B77395B0F6CEA26C /* HWPanModalPresentable.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A10B1AFB4B6959F4A11AB1B1BC4A437 /* HWPanModalPresentable.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C9B63C6ED2ED691EA83D3EE65939444B /* Lookin_PTProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E05D85B85A84A7D628539AD042EC841 /* Lookin_PTProtocol.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C9E19D164C26414115CC969ED9A303C1 /* MASLayoutConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 7DEDD90DB6CF7DD05B6B753765E65AAD /* MASLayoutConstraint.m */; }; + C9E8C9372C2DA29D302B058BE3AE9877 /* CALayer+LookinServer.h in Headers */ = {isa = PBXBuildFile; fileRef = 77DEC7B6CE458C6AAB89A25A3E05BA4B /* CALayer+LookinServer.h */; settings = {ATTRIBUTES = (Public, ); }; }; + CA1E0DCDF679EA2DE2ED0915426E1D04 /* SDWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 98901829A364C7B4F13375AEB6AA0FBE /* SDWeakProxy.m */; }; + CA543D086B4C8E314FB43F0B78147FE9 /* LSTTimer-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 88F65BAED091224357C1ABFEA1C484FA /* LSTTimer-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + CA56274BE7CBB3E759E0364785DF9799 /* Lookin_PTChannel.h in Headers */ = {isa = PBXBuildFile; fileRef = 07C3DB4C7661755654D296A929BE2CE7 /* Lookin_PTChannel.h */; settings = {ATTRIBUTES = (Public, ); }; }; + CA9AFE3460622CC65F75A2DDE845F6E9 /* JXPagerSmoothView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B167FA26CB7B8DC98E1A68B1B44BA8A /* JXPagerSmoothView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + CE2AF36EBB17CDA2652CBADD4A7ABF82 /* JXCategoryImageCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 570A4EA50A989D93BDAC90837E4F3637 /* JXCategoryImageCellModel.m */; }; + CE86196C00DC1D658B6CB7D47A0233AA /* LKS_ConnectionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 769C3408F11A51A90B589A6DBB334C55 /* LKS_ConnectionManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; + CEC9EF043F69710AC29940EB4E1E2B19 /* RTLManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 22A80188C121A76950A88A3321260BFD /* RTLManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; + CF7005F2C42AC2E2DD6D437D52C7048B /* HWPresentingVCAnimatedTransitioning.h in Headers */ = {isa = PBXBuildFile; fileRef = E4F1989DBFF7A3D94A0CF758DF35B3F6 /* HWPresentingVCAnimatedTransitioning.h */; settings = {ATTRIBUTES = (Public, ); }; }; + CFF8D1A5E4C2097EF05E1021FE112886 /* SDWebImageIndicator.m in Sources */ = {isa = PBXBuildFile; fileRef = A56060BC793E00F370FD0DF3B4157376 /* SDWebImageIndicator.m */; }; + D06BB547D59D183FD1DDD84DEBAC9EE8 /* SDWebImageCacheSerializer.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D6771046C7CF97C82B7D303F2AFD49E /* SDWebImageCacheSerializer.m */; }; + D08901EA319887BE6D694F8333BE8D1F /* JXCategoryIndicatorTriangleView.m in Sources */ = {isa = PBXBuildFile; fileRef = C31C4A7197700436AFBAB631C088A6AE /* JXCategoryIndicatorTriangleView.m */; }; + D091F05269EE0566B665B00C7D912F8E /* Lookin_PTChannel.m in Sources */ = {isa = PBXBuildFile; fileRef = 862D8BDF52FBE8FCF3A562F5A62C802E /* Lookin_PTChannel.m */; }; + D0E37358C3DCF2A8A572C4F38BB0569B /* JXCategoryListContainerView.m in Sources */ = {isa = PBXBuildFile; fileRef = C63CFE9D73B31D9EBEF51E32F9AC7286 /* JXCategoryListContainerView.m */; }; + D121163078CA9BBE54A83BD73EF784CF /* LSTPopViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D7595F0F8BE4F40C64D68F0D491C6C6 /* LSTPopViewProtocol.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D1230E19DD1507E6370B80DF6653AC2A /* NSArray+Lookin.m in Sources */ = {isa = PBXBuildFile; fileRef = 4AAF4EE016C54A7F264F9B8FBB0853C8 /* NSArray+Lookin.m */; }; + D2AF9A7FD73B95960FDA4FD06C4BED08 /* NSObject+MJKeyValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B41D364B66F85CF33EB15116929CF48 /* NSObject+MJKeyValue.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D2CD8848F856EC9942A76610AAE66F0A /* SDImageIOCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = E4718E4C19C181FBAEBD080580F8C026 /* SDImageIOCoder.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D31558927DE3F62D1BB1FC416E6F237D /* JXCategoryDotCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 3AF0216318F4C1EBD4207012E5E70EB1 /* JXCategoryDotCellModel.m */; }; + D3615499AFE4D2A8EC2E773F4D8A82B2 /* KeyValueObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 05D708E8F9065868500ABC98E789B739 /* KeyValueObserver.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D380F9C945002DBF2E7D64983ABDC890 /* JXPagerListContainerView.h in Headers */ = {isa = PBXBuildFile; fileRef = 57460121EED43E41D624C46A92FE9E08 /* JXPagerListContainerView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D559CC4D0695CEE05F3B4C1C06475044 /* UIImageView+LookinServer.h in Headers */ = {isa = PBXBuildFile; fileRef = 310DC522C0637DDB20D8D38412CB4153 /* UIImageView+LookinServer.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D5C046C46961BE465293625D6B870620 /* AFNetworking-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 18106F0763EC023048DB3F77457B9596 /* AFNetworking-dummy.m */; }; + D62A672EEB252581BD972DDA862BE1DD /* SDWebImage-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = FB84DF0F5016EBAF04FE5FE9F22081C0 /* SDWebImage-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D662C83ECE8BEDA5FFB52F3575CA3E1A /* SDImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = DEEA81C89F22AF300ABFA4E5550B7B06 /* SDImageCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; D663837F4347AF58660EE6F7FD426ECE /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9D41AAC213895165C450F5576DE42CB2 /* Foundation.framework */; }; - D737D93725B0E072027AB6DA9C4DDDEC /* HWPanModalAnimator.h in Headers */ = {isa = PBXBuildFile; fileRef = 42F934D080B2CC7F2CD859E2B472A585 /* HWPanModalAnimator.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D788BA4B9E8186271BA75CA52B30502C /* View+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 903038F34EE93C82A3EF6A1F6BDF857B /* View+MASAdditions.m */; }; - D7B3E8948DB04BD8FB6748419DA03EA9 /* SDAnimatedImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 13D84A2503CDD440D0A0063FF97A2EB4 /* SDAnimatedImageView+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D89C7D5455E3E8E2D7EC6B880253BD9B /* LookinIvarTrace.m in Sources */ = {isa = PBXBuildFile; fileRef = 89DA873F803BF9043720F615E8BC4CD5 /* LookinIvarTrace.m */; }; - D90607B4E56247B19B14462E487BA86E /* MJRefreshNormalTrailer.m in Sources */ = {isa = PBXBuildFile; fileRef = DD3BFE6DB15E8FF64920F720EA31EEDE /* MJRefreshNormalTrailer.m */; }; - D90DED0F5638B1C44F4B6C62D600D240 /* MJRefreshFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = D40BB639047461966566FFED666B3ACF /* MJRefreshFooter.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D90DF1376DF5E2EA644313BCD2E03058 /* MJRefresh.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 43F4AA149B8B7307ED5DA363EBC93DBF /* MJRefresh.bundle */; }; - D93EA925FC24665584B3653514A56706 /* JXCategoryIndicatorImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = A2C056F5D1231FA94F92AA3712D545C2 /* JXCategoryIndicatorImageView.m */; }; + D737D93725B0E072027AB6DA9C4DDDEC /* HWPanModalAnimator.h in Headers */ = {isa = PBXBuildFile; fileRef = CF7B4B9CB0EF762A12884D6FE337E068 /* HWPanModalAnimator.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D788BA4B9E8186271BA75CA52B30502C /* View+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 1069EA3A85D1A1A87FE087B0FE402436 /* View+MASAdditions.m */; }; + D7B3E8948DB04BD8FB6748419DA03EA9 /* SDAnimatedImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = B705DD8FCD54B3AFD61B70C82828ACE4 /* SDAnimatedImageView+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D89C7D5455E3E8E2D7EC6B880253BD9B /* LookinIvarTrace.m in Sources */ = {isa = PBXBuildFile; fileRef = 6148399DD529311A930CEF2A2AC2FBD4 /* LookinIvarTrace.m */; }; + D90607B4E56247B19B14462E487BA86E /* MJRefreshNormalTrailer.m in Sources */ = {isa = PBXBuildFile; fileRef = 6DE6908A836615F946533A6FEE623373 /* MJRefreshNormalTrailer.m */; }; + D90DED0F5638B1C44F4B6C62D600D240 /* MJRefreshFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 800ECE845D6F36BE51A284DFCAE27307 /* MJRefreshFooter.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D90DF1376DF5E2EA644313BCD2E03058 /* MJRefresh.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 083F5143D12F213638EF9FE439F1CEFA /* MJRefresh.bundle */; }; + D93EA925FC24665584B3653514A56706 /* JXCategoryIndicatorImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = B3443BE7FBE80A857A146093C743D9BF /* JXCategoryIndicatorImageView.m */; }; D968461E31E8FF3FF6BA1DC621B0433B /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F5B3C0CF01454E7AC9226E88FDFBAE6 /* UIKit.framework */; }; - DBA9500CBBA5FF6FCBBA115AE4D12152 /* NSLayoutConstraint+MASDebugAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = A75069F0A291D74DCBF8F50AA213D806 /* NSLayoutConstraint+MASDebugAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DBA9500CBBA5FF6FCBBA115AE4D12152 /* NSLayoutConstraint+MASDebugAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = BE9E061AE26F933A7BBEFF3D94E9B32D /* NSLayoutConstraint+MASDebugAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; }; DBB7D12AC159E50D059772E4B6CF1D2F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9D41AAC213895165C450F5576DE42CB2 /* Foundation.framework */; }; - DBD9152526A180771BF7D7CD209B957E /* AFSecurityPolicy.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AD36233DB657DAA0ACBB8EEEAEB38EA /* AFSecurityPolicy.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DCCBFE0D3914D33369C19AC135AB54AA /* HWBackgroundConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = ACC63F439241C64C221C18A8991C569B /* HWBackgroundConfig.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DD7F63D4E4640C7386877BB787740272 /* LookinServer-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = A98C5DE93CCDA0FE6E6A916B05B69DCC /* LookinServer-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DDA16FB9C21AD941442357DAE6939530 /* UIKit+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AD6EDFD2A6C9CC51CFC6A4BAA9C72A9 /* UIKit+AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DDB268F1408C6AA5860C768310E9B9D6 /* LSTPopView-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = DBE3855004E17CACAC82F75DF8EFEBD4 /* LSTPopView-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DE5A78F116018E2AC54714238276574D /* UIActivityIndicatorView+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = FE8EB43019635F8DC34B96037E258505 /* UIActivityIndicatorView+AFNetworking.m */; }; - DE98ECCCA7106A4EA575EF34830D41FF /* MJRefresh-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D58A6363674921528AA6EC052D65C890 /* MJRefresh-dummy.m */; }; - DEA09692CF813A23899CD4949A9B6801 /* SDAnimatedImageRep.h in Headers */ = {isa = PBXBuildFile; fileRef = 807026E96F55910EB566C0F4535DF3EB /* SDAnimatedImageRep.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DED9ADFC8CC65243FC54E008A853742C /* MJPropertyKey.m in Sources */ = {isa = PBXBuildFile; fileRef = C8B51A0410EE632DF42E1C298E25B221 /* MJPropertyKey.m */; }; - DF2B15402CE105F5A8CE48BBDCFFD5DD /* MASConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 3A94C1FE25186BE811E6EC878BFA019B /* MASConstraint.m */; }; - DF525E5405FAD3B98B0C2D966EB2DD95 /* UIViewController+LookinServer.m in Sources */ = {isa = PBXBuildFile; fileRef = 920CD059C1364A6BD18420074E635F40 /* UIViewController+LookinServer.m */; }; - E038F02D08E33A673A360ED34648A027 /* JXCategoryDotCell.m in Sources */ = {isa = PBXBuildFile; fileRef = BEB32B7BEE20F8A74F80D03511F02260 /* JXCategoryDotCell.m */; }; - E0B48B9D5D45AF3500FC718459D66E6C /* LookinDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = AFC299E1B60C8759EA1F35B7A91019A4 /* LookinDefines.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E0BCF21E9FA59F638C13ECCECC4D9690 /* SDMemoryCache.m in Sources */ = {isa = PBXBuildFile; fileRef = B7AD3647BEEBE4C691B28F5746D51E7D /* SDMemoryCache.m */; }; - E0DB14976CA6F6E604FD5E4EDF3378E7 /* JXPagerListContainerView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3BC6BE1672FC4A4AA70F4CBD7E23C808 /* JXPagerListContainerView.m */; }; - E1B4145C5201DB66B65520B36849067C /* HWPanModal-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = EE80578D9DB416BD158323BE4D5C76F4 /* HWPanModal-dummy.m */; }; - E1BF615DD0422B06C97542F03C879D41 /* AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B56A01456E5166288620482B2A2180C /* AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E1DE69F6BB6235A6EDB6C99A184BEDB4 /* UIScrollView+MJExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 433A3E0D94E768912FBBE36F7C961678 /* UIScrollView+MJExtension.m */; }; - E2DF1B379D9444D40D78320E90B1DC07 /* JXCategoryIndicatorLineView.h in Headers */ = {isa = PBXBuildFile; fileRef = 62CDFF5EFD0FE66B2DEECF2E904EBEC1 /* JXCategoryIndicatorLineView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E3FC6BEE41652C0500F57E0CB83B347F /* UIButton+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = A2309A5B4A1B9C14AF7AEDEC1036F76E /* UIButton+AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E42D6EF120A5C17DA2F6FD6473CE7E7A /* JXCategoryTitleVerticalZoomCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 6549E81907E05317DA862F329B2D4DDC /* JXCategoryTitleVerticalZoomCellModel.m */; }; - E4773572BED239AA7D618F1C05BAF51E /* HWPanModalPresentationDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 82C5C527FD40FDC2434064E6DE931921 /* HWPanModalPresentationDelegate.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E4B688B8A0D07AFB883A52250CA874A1 /* JXCategoryNumberCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = F15C652E7FDB0BE287A551718B00B6A8 /* JXCategoryNumberCellModel.m */; }; - E4F1B478580D6D7328BC29607BDE46F6 /* UIImage+ExtendedCacheData.m in Sources */ = {isa = PBXBuildFile; fileRef = C1F534C5FFF39633128C9B99F1BBF1B5 /* UIImage+ExtendedCacheData.m */; }; - E50613C67DD02AF6EA825DA0B31EFFAD /* SDImageGraphics.m in Sources */ = {isa = PBXBuildFile; fileRef = 2504FFB7834ECCFC15329B28F3C9A331 /* SDImageGraphics.m */; }; - E516B5B11193439E020DD2A908700B79 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9D41AAC213895165C450F5576DE42CB2 /* Foundation.framework */; }; - E52DCE394A6E02B6BA11FA64624F68F3 /* JXCategoryIndicatorParamsModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E5F2B584A65C9246E3E8A7A856FF44D /* JXCategoryIndicatorParamsModel.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E55B3151D86660E28CEABC3CDE6B1508 /* UIButton+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C519E29CD93815AEE0C119E2109F0A2 /* UIButton+AFNetworking.m */; }; - E5B057BC87284367918B2DB9CA084B4E /* MJRefreshAutoGifFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D7FC4156E6779F82E6B8036FA7A1307 /* MJRefreshAutoGifFooter.m */; }; - E7520DAA65004368C61453B8A2740295 /* HWPanModalShadow.m in Sources */ = {isa = PBXBuildFile; fileRef = 5FD7A1D3C3D9D8E6D3476B7C2093A431 /* HWPanModalShadow.m */; }; - E76969F9B01139118427505B18F9CD21 /* SDImageHEICCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F050843F5053FDD98D8FE72C1E28A5F /* SDImageHEICCoder.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E77175BDAE33AADF66766B28AA710247 /* JXPagerMainTableView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8087FD233990CE787D9977700977D0B8 /* JXPagerMainTableView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E7FEAB9F421F7EBAF021F792D8E9C4D6 /* LookinCustomDisplayItemInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F0F258366D8ED06A7D9EAD3DFCD004E /* LookinCustomDisplayItemInfo.m */; }; - E82964ED7092CDCDAD08BC596A57B43A /* UIImage+LookinServer.h in Headers */ = {isa = PBXBuildFile; fileRef = DB3CBBCBF7B8B49A86FAC8D0A1741C77 /* UIImage+LookinServer.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E8AB529B9E0B4C23921344F6C4ABFEA4 /* SDImageCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 9D7E450C43D308EE4C1B879D0B60A4BF /* SDImageCoder.m */; }; - E930A5612DC6D120BE040AD17C6D1BCD /* MASViewAttribute.m in Sources */ = {isa = PBXBuildFile; fileRef = AAF02F3D4DFB903955A463298716DCE2 /* MASViewAttribute.m */; }; - E97B2C62D3EE772504A939BEE7D6B459 /* HWPanModalPresentationAnimator.h in Headers */ = {isa = PBXBuildFile; fileRef = 552D2F14AF7B393E80A67680A66A34D4 /* HWPanModalPresentationAnimator.h */; settings = {ATTRIBUTES = (Public, ); }; }; - EA82B6D97C9C5D0558047AF552D63203 /* SDWebImageDefine.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B0013F9906622545E27B913F2092F22 /* SDWebImageDefine.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DBD9152526A180771BF7D7CD209B957E /* AFSecurityPolicy.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C354F545C0CC91C4033DC0D648B3819 /* AFSecurityPolicy.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DCCBFE0D3914D33369C19AC135AB54AA /* HWBackgroundConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = FC8583F4233091326F271A4C13185F5B /* HWBackgroundConfig.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DD7F63D4E4640C7386877BB787740272 /* LookinServer-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 469576EF612EDF18C057B4FB1E423192 /* LookinServer-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DDA16FB9C21AD941442357DAE6939530 /* UIKit+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = CBB2B3782C3C4626F075A8900436D09D /* UIKit+AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DDB268F1408C6AA5860C768310E9B9D6 /* LSTPopView-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = D7C0280DF79D384D6CBED6E080E02BB8 /* LSTPopView-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DE5A78F116018E2AC54714238276574D /* UIActivityIndicatorView+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = BF141C03BAA67847DFB6B6DFF0D1CBFC /* UIActivityIndicatorView+AFNetworking.m */; }; + DE98ECCCA7106A4EA575EF34830D41FF /* MJRefresh-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 741E2A603352D4102F1DAFBB68C69122 /* MJRefresh-dummy.m */; }; + DEA09692CF813A23899CD4949A9B6801 /* SDAnimatedImageRep.h in Headers */ = {isa = PBXBuildFile; fileRef = 674659ECD497CB56B02FD385F68621CA /* SDAnimatedImageRep.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DED9ADFC8CC65243FC54E008A853742C /* MJPropertyKey.m in Sources */ = {isa = PBXBuildFile; fileRef = 57A3558C23C0EFA92D7C80FBF8A6332A /* MJPropertyKey.m */; }; + DF2B15402CE105F5A8CE48BBDCFFD5DD /* MASConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 23B6D3BC0C4291E4CB154E7F35862BCB /* MASConstraint.m */; }; + DF525E5405FAD3B98B0C2D966EB2DD95 /* UIViewController+LookinServer.m in Sources */ = {isa = PBXBuildFile; fileRef = 8A9BFDE06B11541EA7E87336A09C3816 /* UIViewController+LookinServer.m */; }; + E038F02D08E33A673A360ED34648A027 /* JXCategoryDotCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 87D7822F88C7B9608DF7E50878B7970B /* JXCategoryDotCell.m */; }; + E0B48B9D5D45AF3500FC718459D66E6C /* LookinDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DD55E3EFF5073BEBD483D293C40A0D6 /* LookinDefines.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E0BCF21E9FA59F638C13ECCECC4D9690 /* SDMemoryCache.m in Sources */ = {isa = PBXBuildFile; fileRef = C202F1C5D8455CDDCAE965BD7BAAFC3B /* SDMemoryCache.m */; }; + E0DB14976CA6F6E604FD5E4EDF3378E7 /* JXPagerListContainerView.m in Sources */ = {isa = PBXBuildFile; fileRef = E0742EB318197474CB672E4520705ACC /* JXPagerListContainerView.m */; }; + E1B4145C5201DB66B65520B36849067C /* HWPanModal-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0AE235E52EF7BBF7348F9B4CAB71F7D8 /* HWPanModal-dummy.m */; }; + E1BF615DD0422B06C97542F03C879D41 /* AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 860D7179002683A0368E532B751FC40E /* AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E1DE69F6BB6235A6EDB6C99A184BEDB4 /* UIScrollView+MJExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = B8F1319B150BB3DBD94BEB4C80F6F296 /* UIScrollView+MJExtension.m */; }; + E2DF1B379D9444D40D78320E90B1DC07 /* JXCategoryIndicatorLineView.h in Headers */ = {isa = PBXBuildFile; fileRef = A527D460219BC25D3D8E05E8A68C23C9 /* JXCategoryIndicatorLineView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E3FC6BEE41652C0500F57E0CB83B347F /* UIButton+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = D7F6132E07FDE40130D6C51920456A21 /* UIButton+AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E42D6EF120A5C17DA2F6FD6473CE7E7A /* JXCategoryTitleVerticalZoomCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 230B07768E56A05E48373DAA2EAC05DE /* JXCategoryTitleVerticalZoomCellModel.m */; }; + E4773572BED239AA7D618F1C05BAF51E /* HWPanModalPresentationDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 4EBFFAE4CE0471C78DB70755CFCC7609 /* HWPanModalPresentationDelegate.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E4B688B8A0D07AFB883A52250CA874A1 /* JXCategoryNumberCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 5633AC0E53EEE3085AFE9CB101E6C0CF /* JXCategoryNumberCellModel.m */; }; + E4F1B478580D6D7328BC29607BDE46F6 /* UIImage+ExtendedCacheData.m in Sources */ = {isa = PBXBuildFile; fileRef = A7A348B5BB8CB7A444F827000C95DAE5 /* UIImage+ExtendedCacheData.m */; }; + E50613C67DD02AF6EA825DA0B31EFFAD /* SDImageGraphics.m in Sources */ = {isa = PBXBuildFile; fileRef = E9FA8ED817E86A0F4415B8E73B62DCF8 /* SDImageGraphics.m */; }; + E52DCE394A6E02B6BA11FA64624F68F3 /* JXCategoryIndicatorParamsModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 30E03A823CD994C7C3DEA8D91B90C5DE /* JXCategoryIndicatorParamsModel.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E55B3151D86660E28CEABC3CDE6B1508 /* UIButton+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = BF0EE7E880EA65C279154531EF91F5E8 /* UIButton+AFNetworking.m */; }; + E5B057BC87284367918B2DB9CA084B4E /* MJRefreshAutoGifFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = BC7F3F9323470C634DC0D469E7C13B10 /* MJRefreshAutoGifFooter.m */; }; + E7520DAA65004368C61453B8A2740295 /* HWPanModalShadow.m in Sources */ = {isa = PBXBuildFile; fileRef = 513C1A2EE22268DD51EB02AE24E3B579 /* HWPanModalShadow.m */; }; + E76969F9B01139118427505B18F9CD21 /* SDImageHEICCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 55488AFE93BF97340EF80D0D6C1E2CA0 /* SDImageHEICCoder.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E77175BDAE33AADF66766B28AA710247 /* JXPagerMainTableView.h in Headers */ = {isa = PBXBuildFile; fileRef = D564B14F434E85E8016FF192E33548A8 /* JXPagerMainTableView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E7FEAB9F421F7EBAF021F792D8E9C4D6 /* LookinCustomDisplayItemInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 44B0B0F109E74E6F92B6497967BCE536 /* LookinCustomDisplayItemInfo.m */; }; + E82964ED7092CDCDAD08BC596A57B43A /* UIImage+LookinServer.h in Headers */ = {isa = PBXBuildFile; fileRef = 60195DBDE404C5ECBC4E710D0F5E50E7 /* UIImage+LookinServer.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E8AB529B9E0B4C23921344F6C4ABFEA4 /* SDImageCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 2E79D80C613F4B57826DA627018BB1C5 /* SDImageCoder.m */; }; + E930A5612DC6D120BE040AD17C6D1BCD /* MASViewAttribute.m in Sources */ = {isa = PBXBuildFile; fileRef = B9CA9F01554205BFBACCA553143C8676 /* MASViewAttribute.m */; }; + E97B2C62D3EE772504A939BEE7D6B459 /* HWPanModalPresentationAnimator.h in Headers */ = {isa = PBXBuildFile; fileRef = DB48FEC8123075E04395CF34F6F8227D /* HWPanModalPresentationAnimator.h */; settings = {ATTRIBUTES = (Public, ); }; }; + EA82B6D97C9C5D0558047AF552D63203 /* SDWebImageDefine.h in Headers */ = {isa = PBXBuildFile; fileRef = 3313EDBDBF7A4CA0DC32526D9ED0B496 /* SDWebImageDefine.h */; settings = {ATTRIBUTES = (Public, ); }; }; EABCB60A26B06BF576E50BBD2F89A385 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9D41AAC213895165C450F5576DE42CB2 /* Foundation.framework */; }; - EB3DF628891F7D6AB114718AF760CB2A /* UIImageView+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E1682EACA92F366216BAB7320C375AA /* UIImageView+AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; }; - EB646114ABEA7A4D6C2A724404778670 /* LookinServer.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E80EA469F2079302F38A991886C4B5A /* LookinServer.h */; settings = {ATTRIBUTES = (Public, ); }; }; - EC078D5CD76868BDE0F67BBEAFFEA217 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 1C37C8F103EDECD09126133069B80115 /* PrivacyInfo.xcprivacy */; }; - EC8E84A8FFADDCA562A8608D141D9027 /* MJRefreshAutoGifFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FAF0BE8296496D28F5C6AA6974B39E8 /* MJRefreshAutoGifFooter.h */; settings = {ATTRIBUTES = (Public, ); }; }; - EC9B34262AED632D7EFB49804337648E /* Masonry.h in Headers */ = {isa = PBXBuildFile; fileRef = 56642F6C221107F2F8D033758EEB482A /* Masonry.h */; settings = {ATTRIBUTES = (Public, ); }; }; - EC9B8D81AEAF11E16149869246F7D4C1 /* JXCategoryFactory.m in Sources */ = {isa = PBXBuildFile; fileRef = 9E9F380E4292210FA99A8F5918C667C3 /* JXCategoryFactory.m */; }; - ECC6BC85943DB873215826A344A462FD /* JXCategoryIndicatorBallView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A0C74EF09B54680C98CCBF1F2BD297A /* JXCategoryIndicatorBallView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - ECE64B732F9FA7C402DDEEC58DCB9D98 /* SDImageAPNGCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 92B0AD9AA2CE09EEB0EF8C040E103B97 /* SDImageAPNGCoder.m */; }; - ED8991A8AE7C04362C2BED3875DC1656 /* AFURLResponseSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = 9F3CA71777F849F0196634A7AB215BDC /* AFURLResponseSerialization.m */; }; - ED8F64FF98CFAE0B12CF60A1B0E6BAF8 /* SDCallbackQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 491DFACE04BF80FD0F37C4ECFE908522 /* SDCallbackQueue.h */; settings = {ATTRIBUTES = (Public, ); }; }; - EDB9E11998290348E4DFB5140D678942 /* HWPanContainerView.h in Headers */ = {isa = PBXBuildFile; fileRef = DAB0E506E749384DE93170FA1EE1FD3B /* HWPanContainerView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - EE101918DFCDC1D6728BF910DB5AF29A /* JXPagerView.m in Sources */ = {isa = PBXBuildFile; fileRef = D31BFB25B2F3620735E09AC6DE1CBFE3 /* JXPagerView.m */; }; - EE6E8FE636D2C02E3D2FC1E8555B4612 /* MJRefreshNormalHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 367DF77D41DE010B9FA86137928C7C44 /* MJRefreshNormalHeader.h */; settings = {ATTRIBUTES = (Public, ); }; }; - EED016DE8173CD38CC01D88CD2628984 /* NSString+MJExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = EE1A5661BE1EACFB3D2C7F19D51BF011 /* NSString+MJExtension.h */; settings = {ATTRIBUTES = (Public, ); }; }; - EEF0BF7E53148EB20BED242061BDC5ED /* JXCategoryTitleVerticalZoomView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B4337532A4911F88E85BB14DE78FBB7 /* JXCategoryTitleVerticalZoomView.m */; }; - EF6A6C725598F572A70C5FCEE328C184 /* SDImageTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = 61080F57DD92AB8ABC811791B547090C /* SDImageTransformer.h */; settings = {ATTRIBUTES = (Public, ); }; }; + EB3DF628891F7D6AB114718AF760CB2A /* UIImageView+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = ED332DDCE634104C42A2AF8F698EDFB2 /* UIImageView+AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; }; + EB646114ABEA7A4D6C2A724404778670 /* LookinServer.h in Headers */ = {isa = PBXBuildFile; fileRef = E23048DA7D038B179D12173BA0F800DB /* LookinServer.h */; settings = {ATTRIBUTES = (Public, ); }; }; + EC6671997676ABEBC34F2BE6C01266B1 /* LSTTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = 68AAA13D71385283DB69A35327BC2F47 /* LSTTimer.h */; settings = {ATTRIBUTES = (Public, ); }; }; + EC8E84A8FFADDCA562A8608D141D9027 /* MJRefreshAutoGifFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CE9A594E8A127B7273A7D82E1882497 /* MJRefreshAutoGifFooter.h */; settings = {ATTRIBUTES = (Public, ); }; }; + EC9B34262AED632D7EFB49804337648E /* Masonry.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E2CD23DF8D29ECCE7278412B1BFFFA2 /* Masonry.h */; settings = {ATTRIBUTES = (Public, ); }; }; + EC9B8D81AEAF11E16149869246F7D4C1 /* JXCategoryFactory.m in Sources */ = {isa = PBXBuildFile; fileRef = B82D0099E75E96FE5ACCF5B647388551 /* JXCategoryFactory.m */; }; + ECC6BC85943DB873215826A344A462FD /* JXCategoryIndicatorBallView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A4AC508097EE18B75D5D75FDA7CF5C1 /* JXCategoryIndicatorBallView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + ECE64B732F9FA7C402DDEEC58DCB9D98 /* SDImageAPNGCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 07274C755D75F4A07C925D1DDE5FA529 /* SDImageAPNGCoder.m */; }; + ED8991A8AE7C04362C2BED3875DC1656 /* AFURLResponseSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = 1DD3D7BBD826081D1399FCDA65D59838 /* AFURLResponseSerialization.m */; }; + ED8F64FF98CFAE0B12CF60A1B0E6BAF8 /* SDCallbackQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 402736588AC9D07AA589F2943BAE3C89 /* SDCallbackQueue.h */; settings = {ATTRIBUTES = (Public, ); }; }; + EDB9E11998290348E4DFB5140D678942 /* HWPanContainerView.h in Headers */ = {isa = PBXBuildFile; fileRef = 94CE97E5A9659D6EE58C83DCB52F73D5 /* HWPanContainerView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + EE101918DFCDC1D6728BF910DB5AF29A /* JXPagerView.m in Sources */ = {isa = PBXBuildFile; fileRef = 044A47D1E36901CA79D51CC72EA995C9 /* JXPagerView.m */; }; + EE6E8FE636D2C02E3D2FC1E8555B4612 /* MJRefreshNormalHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = D411D25D78A2F9E3CF17B20443ED9F40 /* MJRefreshNormalHeader.h */; settings = {ATTRIBUTES = (Public, ); }; }; + EED016DE8173CD38CC01D88CD2628984 /* NSString+MJExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = 12702606A08588ACD81E031A777BAB70 /* NSString+MJExtension.h */; settings = {ATTRIBUTES = (Public, ); }; }; + EEF0BF7E53148EB20BED242061BDC5ED /* JXCategoryTitleVerticalZoomView.m in Sources */ = {isa = PBXBuildFile; fileRef = 43BA7B9A75BE654B8242649314595C2D /* JXCategoryTitleVerticalZoomView.m */; }; + EF51279C724969A99FF5EF85F832FC00 /* LYEmptyView.h in Headers */ = {isa = PBXBuildFile; fileRef = 374CEB5E4CAC5B1889E4B3A57B47546E /* LYEmptyView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + EF6A6C725598F572A70C5FCEE328C184 /* SDImageTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = 6EAD8B1C822E0F2BAB884329D798190B /* SDImageTransformer.h */; settings = {ATTRIBUTES = (Public, ); }; }; F1A04C26FAF235FD6B0AF30E7ACD5DD5 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9D41AAC213895165C450F5576DE42CB2 /* Foundation.framework */; }; - F1ABB5428A1CCF2EAC42A4C3B388F25D /* JXCategoryIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = 658F3554D0CFB5BC5E252408F8CD5317 /* JXCategoryIndicatorView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F1D845E22D5B8FC6AFC3C2E41DA1B6DF /* AFNetworkReachabilityManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 60461DAD42E3B1F75AD82553A6C40C64 /* AFNetworkReachabilityManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F2AD91050B1FE3C8BC78567F1FDE3ED5 /* AFURLResponseSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = BBB6E7BC9BF649910D7654B98B396BD4 /* AFURLResponseSerialization.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F2C9F9038FBEFD951516694AE873A2B9 /* MBProgressHUD.h in Headers */ = {isa = PBXBuildFile; fileRef = A98C848E174628ED3A950CA220B4CB9A /* MBProgressHUD.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F3263D294D688533EB974E37C61F1E24 /* MJExtensionConst.m in Sources */ = {isa = PBXBuildFile; fileRef = 47A777C7602E23E11AE500103D52A253 /* MJExtensionConst.m */; }; - F3AECEF6D3BB919B3E7392942E1BC58B /* MJRefreshBackFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A5E3A2C0C49EB165C854762A832D48A /* MJRefreshBackFooter.m */; }; - F3DA1005917E252B306712DAAA287FB0 /* UIViewController+PanModalDefault.m in Sources */ = {isa = PBXBuildFile; fileRef = 3474F65ACB0FE00EF732580936B91D06 /* UIViewController+PanModalDefault.m */; }; - F3F4A6309BD95DFAA4DCC60A4E07C515 /* UITableView+LookinServer.m in Sources */ = {isa = PBXBuildFile; fileRef = 95E2C10E638AC6421FE377F88DA72A45 /* UITableView+LookinServer.m */; }; - F43396B5CB23638E5509B3ED61AE6192 /* JXCategoryListContainerRTLCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C70C9B1AD0F41A4C5E9026F5AF7F65F /* JXCategoryListContainerRTLCell.m */; }; - F458385338076D8734DD74BE4A94B33F /* UIColor+JXAdd.h in Headers */ = {isa = PBXBuildFile; fileRef = F904F7CF43AB518217FB1AB9236020D4 /* UIColor+JXAdd.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F47EBDD360E642A0499A767BC7C17B4B /* HWPanIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6EF0D4A56B002AB1528A77EBDA7EC804 /* HWPanIndicatorView.m */; }; - F49CB22863CCFEC7817D259F27F91C57 /* SDWebImageIndicator.h in Headers */ = {isa = PBXBuildFile; fileRef = AD28EF542A0B7F210E7C92D1D9DEC003 /* SDWebImageIndicator.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F53BE4449AE5896F76325E4DCB6D0B13 /* SDImageCachesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D744043462D81E4ED2BB1ECAE8E9F696 /* SDImageCachesManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F600BB873FD4764BAA9E02826F804486 /* FLAnimatedImage-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 87DD67829823038B4E0D04582C0CB95C /* FLAnimatedImage-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F60F90EAF35CFF40DF1C33557965787D /* MJRefreshStateTrailer.h in Headers */ = {isa = PBXBuildFile; fileRef = 846CA0BB8166DB9008D71F59F4A301EA /* MJRefreshStateTrailer.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F62B0711DA506CCB3DF79F65134566C7 /* Lookin_PTPrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DD8CB4B9EF9002F59BC7DE12F17ED7E /* Lookin_PTPrivate.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F68889CD481716EE5D6B75EBD8FD53A6 /* SDImageCoderHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = C7E392E347A9555F1447E0FBB3E777E5 /* SDImageCoderHelper.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F6A0D6EA1B5DC3FE04DC4A1B0A914121 /* UIView+LookinServer.h in Headers */ = {isa = PBXBuildFile; fileRef = DC82DAFD220FAA7899CE21078C2C649D /* UIView+LookinServer.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F6A2DEEA8E8B92D365AFDDBD5E8C1218 /* NSObject+Lookin.m in Sources */ = {isa = PBXBuildFile; fileRef = D52171C8DB630868289299203B4ECD0C /* NSObject+Lookin.m */; }; - F6A34F74BE7FE816114D7F3902296AF2 /* HWVisualEffectView.m in Sources */ = {isa = PBXBuildFile; fileRef = DACDF6DBB7030D05CC43C7DB516265EE /* HWVisualEffectView.m */; }; - F6D1C960368EB1E067ABD0BFF707FC56 /* MASConstraintMaker.m in Sources */ = {isa = PBXBuildFile; fileRef = CDE98EE96840F02E6074E842D456A2E3 /* MASConstraintMaker.m */; }; - F7623E7C314AA5010D8D0BD6ED4AAAD4 /* AFImageDownloader.m in Sources */ = {isa = PBXBuildFile; fileRef = 25A773C46121E6091EEB9AC88DC4E2A2 /* AFImageDownloader.m */; }; - F847E3C26E5AC43CD73364AD3DF49AFE /* JXCategoryImageCell.m in Sources */ = {isa = PBXBuildFile; fileRef = B7498A05A9D7A9FEE19E027CABE6B9DD /* JXCategoryImageCell.m */; }; - F8616FAFEE1124368CB96473CE20CDB4 /* LookinAttrIdentifiers.m in Sources */ = {isa = PBXBuildFile; fileRef = 41EF7420DD5FC6E4D1134632895868F3 /* LookinAttrIdentifiers.m */; }; - F8F1B1196CAA5114BA9A95AA7E6D6AEB /* UIBlurEffect+LookinServer.m in Sources */ = {isa = PBXBuildFile; fileRef = 98EB3787337AAE5AD71D422A832D852F /* UIBlurEffect+LookinServer.m */; }; - F9789D86D3279D71B398B550F27C3EFF /* AFSecurityPolicy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2458E327D6233EBA29A07B3E63113146 /* AFSecurityPolicy.m */; }; - FA3021DED76B9B182CC9195A60EB1209 /* NSBezierPath+SDRoundedCorners.m in Sources */ = {isa = PBXBuildFile; fileRef = C5A25B7B454717DB3993591B5E8B612E /* NSBezierPath+SDRoundedCorners.m */; }; - FA6DA93357E2E9E9AADDFB3E39DEB6C2 /* NSObject+LookinServer.m in Sources */ = {isa = PBXBuildFile; fileRef = C5719A8B6A945982F0856B5A616B379E /* NSObject+LookinServer.m */; }; + F1ABB5428A1CCF2EAC42A4C3B388F25D /* JXCategoryIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DFC8007FA865661CA9E295ADD1014BA /* JXCategoryIndicatorView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F1D845E22D5B8FC6AFC3C2E41DA1B6DF /* AFNetworkReachabilityManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C0082C9FF6875DA300AE3D8453DCB62 /* AFNetworkReachabilityManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F2892F71762EC5410EE733B862712BB3 /* LYEmptyView-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = C00601FB0A8CFBE203150BAEC58E95FC /* LYEmptyView-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F2AD91050B1FE3C8BC78567F1FDE3ED5 /* AFURLResponseSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = B5A6B26A93BDE64568CF7AF44D709974 /* AFURLResponseSerialization.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F2C9F9038FBEFD951516694AE873A2B9 /* MBProgressHUD.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DC759BB8D0141E0F064F3BCA7197315 /* MBProgressHUD.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F3263D294D688533EB974E37C61F1E24 /* MJExtensionConst.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D0DE149DDBAC4B5DCFA0C2217970015 /* MJExtensionConst.m */; }; + F3AECEF6D3BB919B3E7392942E1BC58B /* MJRefreshBackFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = A7EA79586CBF531A23E8B00CFA7B82C7 /* MJRefreshBackFooter.m */; }; + F3DA1005917E252B306712DAAA287FB0 /* UIViewController+PanModalDefault.m in Sources */ = {isa = PBXBuildFile; fileRef = B95FDE5F86C6AC76E24A82E181084256 /* UIViewController+PanModalDefault.m */; }; + F3F4A6309BD95DFAA4DCC60A4E07C515 /* UITableView+LookinServer.m in Sources */ = {isa = PBXBuildFile; fileRef = B77422F87DF00923771B3EF8E6C0A9BF /* UITableView+LookinServer.m */; }; + F43396B5CB23638E5509B3ED61AE6192 /* JXCategoryListContainerRTLCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 96D1E2DE4F6F4EB00BD41C7ABD504109 /* JXCategoryListContainerRTLCell.m */; }; + F458385338076D8734DD74BE4A94B33F /* UIColor+JXAdd.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D72A1C48CB238B4D5F50BA925DEDEAE /* UIColor+JXAdd.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F47EBDD360E642A0499A767BC7C17B4B /* HWPanIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = 77E6EFEE426EA2068D5FE2B73740D659 /* HWPanIndicatorView.m */; }; + F49CB22863CCFEC7817D259F27F91C57 /* SDWebImageIndicator.h in Headers */ = {isa = PBXBuildFile; fileRef = E0DD4370E4AF2D75716AE1B5D67EABEB /* SDWebImageIndicator.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F53BE4449AE5896F76325E4DCB6D0B13 /* SDImageCachesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 839CCD719F79C7FBC2909C72822FB470 /* SDImageCachesManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F600BB873FD4764BAA9E02826F804486 /* FLAnimatedImage-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FAB126742756E8C628ED27AEC1B9567 /* FLAnimatedImage-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F60F90EAF35CFF40DF1C33557965787D /* MJRefreshStateTrailer.h in Headers */ = {isa = PBXBuildFile; fileRef = AB1D54171867DC3B104DAE8C6D30F644 /* MJRefreshStateTrailer.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F62B0711DA506CCB3DF79F65134566C7 /* Lookin_PTPrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B523AAA92DB90BD5B95092AF6B85BFB /* Lookin_PTPrivate.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F68889CD481716EE5D6B75EBD8FD53A6 /* SDImageCoderHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = A3E40CB9D351DF0E70C7A452071E82E1 /* SDImageCoderHelper.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F6A0D6EA1B5DC3FE04DC4A1B0A914121 /* UIView+LookinServer.h in Headers */ = {isa = PBXBuildFile; fileRef = DC7496C927F9E881D19A203C207B5417 /* UIView+LookinServer.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F6A2DEEA8E8B92D365AFDDBD5E8C1218 /* NSObject+Lookin.m in Sources */ = {isa = PBXBuildFile; fileRef = B6575913AB2C7FDA723D279165349FF6 /* NSObject+Lookin.m */; }; + F6A34F74BE7FE816114D7F3902296AF2 /* HWVisualEffectView.m in Sources */ = {isa = PBXBuildFile; fileRef = F5D8EBF4698D8B331794EA6F9BF47665 /* HWVisualEffectView.m */; }; + F6D1C960368EB1E067ABD0BFF707FC56 /* MASConstraintMaker.m in Sources */ = {isa = PBXBuildFile; fileRef = 673C80521DE4F20FDE3E9A82E6EBEC53 /* MASConstraintMaker.m */; }; + F7623E7C314AA5010D8D0BD6ED4AAAD4 /* AFImageDownloader.m in Sources */ = {isa = PBXBuildFile; fileRef = 41B61F60FDADCD1988F2A5F1B93F6FB0 /* AFImageDownloader.m */; }; + F847E3C26E5AC43CD73364AD3DF49AFE /* JXCategoryImageCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 8067C53E08CA3787D9D5C3551F86EF9D /* JXCategoryImageCell.m */; }; + F8616FAFEE1124368CB96473CE20CDB4 /* LookinAttrIdentifiers.m in Sources */ = {isa = PBXBuildFile; fileRef = 9D4F497397BEDE35BC05F6C2B6D33577 /* LookinAttrIdentifiers.m */; }; + F8F1B1196CAA5114BA9A95AA7E6D6AEB /* UIBlurEffect+LookinServer.m in Sources */ = {isa = PBXBuildFile; fileRef = B041D1C998D0894DB89A31049CC1B872 /* UIBlurEffect+LookinServer.m */; }; + F9789D86D3279D71B398B550F27C3EFF /* AFSecurityPolicy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4883D2BC668CDDE38C319AC414885077 /* AFSecurityPolicy.m */; }; + FA3021DED76B9B182CC9195A60EB1209 /* NSBezierPath+SDRoundedCorners.m in Sources */ = {isa = PBXBuildFile; fileRef = 34F0487226F5EBEBA3C6D3E1743C5260 /* NSBezierPath+SDRoundedCorners.m */; }; + FA6DA93357E2E9E9AADDFB3E39DEB6C2 /* NSObject+LookinServer.m in Sources */ = {isa = PBXBuildFile; fileRef = A566FD7AC8F85BE1E72F6DF11FEA6338 /* NSObject+LookinServer.m */; }; FB6E014B34F33B89E5060DA1F00168A5 /* ImageIO.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 77F4C0466DFC43C56F1D982F88EF74A0 /* ImageIO.framework */; }; - FC32143CA2A916F032F2B569313315AA /* HWPanContainerView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2310AA8AAF9A85F5E639409B8AF0F292 /* HWPanContainerView.m */; }; - FCDEC6A53CF5517E1AF5B331FD65F6D9 /* SDImageCacheConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = AEB0E8A16F89DAA71F5718EDBF3E2A83 /* SDImageCacheConfig.m */; }; - FCEE5BD645E95FF55468C4AB6D17CFDA /* UIImageView+HighlightedWebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 88D5019FBBC4DC80F31FB68B1820A427 /* UIImageView+HighlightedWebCache.m */; }; - FD3AF10F8723DABEE406D25592B5F562 /* FLAnimatedImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = B4121F7B04BCCD0FB01ED16A27F6E571 /* FLAnimatedImageView.m */; }; - FDACBA49610EA6F39CABB7FE44B137D1 /* AFImageDownloader.h in Headers */ = {isa = PBXBuildFile; fileRef = FA94CFBBBF3DC429BAF55FD9493336B4 /* AFImageDownloader.h */; settings = {ATTRIBUTES = (Public, ); }; }; + FC32143CA2A916F032F2B569313315AA /* HWPanContainerView.m in Sources */ = {isa = PBXBuildFile; fileRef = 453FB14441528B4AE2CF3592D5874C54 /* HWPanContainerView.m */; }; + FCDEC6A53CF5517E1AF5B331FD65F6D9 /* SDImageCacheConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = C3D9450A4AAE9542E6A1A0473B7DF812 /* SDImageCacheConfig.m */; }; + FCEE5BD645E95FF55468C4AB6D17CFDA /* UIImageView+HighlightedWebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = F139F3BFF4ABD0678E7947E118F47774 /* UIImageView+HighlightedWebCache.m */; }; + FD3AF10F8723DABEE406D25592B5F562 /* FLAnimatedImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 148EEB030F62D4D33B4C03AE45AD6C08 /* FLAnimatedImageView.m */; }; + FDACBA49610EA6F39CABB7FE44B137D1 /* AFImageDownloader.h in Headers */ = {isa = PBXBuildFile; fileRef = 36CBA5AB35EE7DE7B4A5CDBAC4BE20A8 /* AFImageDownloader.h */; settings = {ATTRIBUTES = (Public, ); }; }; FDD4C4D4F03502D5CB0B8763009A0948 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BDEE6097B6411333154FEF90A280E3E4 /* QuartzCore.framework */; }; - FE07C069C2E3543002CEB5D751ABA9AC /* AFNetworkReachabilityManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 81D1103F43F39D4BF9AE80E76478FA69 /* AFNetworkReachabilityManager.m */; }; - FEA8BA4F82CCBD1D28DCC7EF39FB4096 /* SDImageCacheDefine.m in Sources */ = {isa = PBXBuildFile; fileRef = 6DB3789FF1142F1817E52B4F6C9BA1B6 /* SDImageCacheDefine.m */; }; - FEE3D901B4A4638F9E00935144E982B3 /* HWPanModalPresentableHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = B8E404753BE7BE627A458AE982427654 /* HWPanModalPresentableHandler.m */; }; - FEE883575278D5BE8F185437AB5DB3BB /* MJRefreshGifHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = A1E84842FBF29954156976CB6DD0F275 /* MJRefreshGifHeader.m */; }; - FF106518AFECA24E74B1D649E4F9AC70 /* HWPanIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DE32E1B12FEE2A9EAE1F5A67697D6E8 /* HWPanIndicatorView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - FFC6D50089FA32FD7AAF25747E56EA60 /* LKS_CustomAttrGroupsMaker.m in Sources */ = {isa = PBXBuildFile; fileRef = 7CF7F647B9D3AA2FB234C1CC5BB53582 /* LKS_CustomAttrGroupsMaker.m */; }; + FE07C069C2E3543002CEB5D751ABA9AC /* AFNetworkReachabilityManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C75FCCDECEB6A92A56B67E27033473B6 /* AFNetworkReachabilityManager.m */; }; + FEA8BA4F82CCBD1D28DCC7EF39FB4096 /* SDImageCacheDefine.m in Sources */ = {isa = PBXBuildFile; fileRef = C74EA9D59FFCBE16D0C0E5B7B2D53516 /* SDImageCacheDefine.m */; }; + FEE3D901B4A4638F9E00935144E982B3 /* HWPanModalPresentableHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 0FC2E352D2D0DD942A9B4488E3654AB0 /* HWPanModalPresentableHandler.m */; }; + FEE883575278D5BE8F185437AB5DB3BB /* MJRefreshGifHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = B6242B29A00A9DBC6FF1CD09266BBF54 /* MJRefreshGifHeader.m */; }; + FF106518AFECA24E74B1D649E4F9AC70 /* HWPanIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A15AB0AB6FCF1589E2A6CEDC3CF0B95 /* HWPanIndicatorView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + FFC6D50089FA32FD7AAF25747E56EA60 /* LKS_CustomAttrGroupsMaker.m in Sources */ = {isa = PBXBuildFile; fileRef = AB2B98D8DC3605842D8528F53C1896A2 /* LKS_CustomAttrGroupsMaker.m */; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ - 0A1A465C500FD28324C60FF2111766F1 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 8B7D23DD98E41BAE91418E9E85F191D6; - remoteInfo = LSTPopView; - }; - 0CEF032AE3DE8459AABC366D5EAD57AC /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 5A2609DB0612F95A3450D2E02CA850A0; - remoteInfo = LSTTimer; - }; - 2635D33260052793F7319FAC3997C416 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 5A2609DB0612F95A3450D2E02CA850A0; - remoteInfo = LSTTimer; - }; - 36EAD987437C03F015C383238BF3C1B7 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F1BCD9702276377FB5B3BDB6EAF709D7; - remoteInfo = DZNEmptyDataSet; - }; - 398B300FAF20E4012B54089285C6D68D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0130B3724283586C0E9D2A112D4F2AA1; - remoteInfo = AFNetworking; - }; - 39F2619DE86130266FA45394FE5C260D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 55AF53E6C77A10ED4985E04D74A8878E; - remoteInfo = Masonry; - }; - 4262F1710F9698DFC113026BA2E31021 /* PBXContainerItemProxy */ = { + 02FAAF39D5DC83544D9E66B036B176EA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 4A68CFD979D413A619DF631BB121D98F; remoteInfo = Bugly; }; - 4E0DD9B103CA9ED24B513A6147DEDB93 /* PBXContainerItemProxy */ = { + 080FDB8CF401316D3CCD779F38297489 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4D3BA58D0583DF37575CACAB3DDADC85; - remoteInfo = MJExtension; + remoteGlobalIDString = 4AA4C7BB776C55F3421BA137B643DD64; + remoteInfo = LYEmptyView; }; - 648F8AAC5DF3351FEF10F1C29B3E11DF /* PBXContainerItemProxy */ = { + 0AC2AD8EAFB742F27A3D34C64E40AFC6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 8BEAFAA726C1965864B79B4B441AA513; remoteInfo = JXCategoryView; }; - 686994C0035F8FADAF6A6C4E910239B2 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 82B0A41D3031FF27D78E17B0A9A46FB0; - remoteInfo = MBProgressHUD; - }; - 6DB0C5460735B353E7FB2A7058DEB8F3 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = C4E1020AF425614337737213AA26DBD5; - remoteInfo = JXPagingView; - }; - 6FA747ECA11691BE7229C287223E399A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F1BCD9702276377FB5B3BDB6EAF709D7; - remoteInfo = DZNEmptyDataSet; - }; - 79523FDE8CA807F68BC7DF678B3199B5 /* PBXContainerItemProxy */ = { + 492374464B2EEB82B866DBC203FB6CF9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 4D3BA58D0583DF37575CACAB3DDADC85; remoteInfo = MJExtension; }; - 7B014B80CCB8DDBC4906B5D8D3002093 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E79E29F55A2453370D27112480FCF6A2; - remoteInfo = "JXCategoryView-JXCategoryView"; - }; - 803F302DC5C2EA85B4CBBDCD27A43286 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; - remoteInfo = SDWebImage; - }; - 9E88A4DD9EF59B6718F28ECC701DF551 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 6868056D761E163D10FDAF8CF1C4D9B8; - remoteInfo = MJRefresh; - }; - AE8D5D579627FAFF8F43B7CEFE066FF2 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 638FEAAFC575BB76BC6AC055CDDA3506; - remoteInfo = LookinServer; - }; - B296FC77430103DDB971813228C8D4EF /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 94CFBA7D633ECA58DF85C327B035E6A3; - remoteInfo = "SDWebImage-SDWebImage"; - }; - C279C7A3A264FD3391C8C73B80D3A426 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B26054DF1DEA11585A231AF6D1D80D5E; - remoteInfo = "MJRefresh-MJRefresh.Privacy"; - }; - C389A17163C51915594BC17BC8BF9DE0 /* PBXContainerItemProxy */ = { + 4B52CF33FA25735578A3E44A4CD0C61E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 16704C6B67439DA959DB043702C75A7A; remoteInfo = "JXPagingView-JXPagerView"; }; - CE0514BD8BDC97E49F2A38CD065EDCFC /* PBXContainerItemProxy */ = { + 4F853CA6F77CC1808AF5BAF0CCAB86C0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4A8E8992707D01510894596DB9BCCA00; - remoteInfo = FLAnimatedImage; + remoteGlobalIDString = 4D3BA58D0583DF37575CACAB3DDADC85; + remoteInfo = MJExtension; }; - D89A563DA511A2A01EFDD5299EBCEE42 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B32AF3F43989CBA171BB1FB3957A4509; - remoteInfo = "MJExtension-MJExtension"; - }; - DB3A9F97FFF5759DFB4E243D0C12B290 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 31DCABABCA873FBA7A92FEB47D71ED8E; - remoteInfo = HWPanModal; - }; - EF1EC9615D03559D465834BE2D7F527F /* PBXContainerItemProxy */ = { + 586A5F02457EAA9AECE8CFCC7EDC4A36 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 0130B3724283586C0E9D2A112D4F2AA1; remoteInfo = AFNetworking; }; - F121CDAC85A6DCADB4F82D081323C7C5 /* PBXContainerItemProxy */ = { + 6B502CE29B8265D64E66B68DA64E8BAF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 55AF53E6C77A10ED4985E04D74A8878E; - remoteInfo = Masonry; + remoteGlobalIDString = 94CFBA7D633ECA58DF85C327B035E6A3; + remoteInfo = "SDWebImage-SDWebImage"; }; - F9F28B72CAD6F7E15F267C3F8D685EA8 /* PBXContainerItemProxy */ = { + 6C0462143C24DADCF6D346CFCCF1F2DF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 82B0A41D3031FF27D78E17B0A9A46FB0; remoteInfo = MBProgressHUD; }; + 6C532ADBCD9DB30208C8082362062867 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; + remoteInfo = SDWebImage; + }; + 70663BD3E4659CFF0C7EF0B56DBC9C78 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 82B0A41D3031FF27D78E17B0A9A46FB0; + remoteInfo = MBProgressHUD; + }; + 71C3BF8323A3B89C42C815297FB1B486 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 638FEAAFC575BB76BC6AC055CDDA3506; + remoteInfo = LookinServer; + }; + 9D62F9D7E8B03E6D53909480991C8AEA /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 5A2609DB0612F95A3450D2E02CA850A0; + remoteInfo = LSTTimer; + }; + A2D6E99D61C37E2D571D73F75FCFE0B4 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B26054DF1DEA11585A231AF6D1D80D5E; + remoteInfo = "MJRefresh-MJRefresh.Privacy"; + }; + A3A1467D883FED3ABCAC49113A737098 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 5A2609DB0612F95A3450D2E02CA850A0; + remoteInfo = LSTTimer; + }; + B0121AEB150BEE5708989CCC69A51E6E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6868056D761E163D10FDAF8CF1C4D9B8; + remoteInfo = MJRefresh; + }; + BAEC79AAEBBDF2BA3087612B7E05FD8E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E79E29F55A2453370D27112480FCF6A2; + remoteInfo = "JXCategoryView-JXCategoryView"; + }; + C30FB24BD734A3779E20934DB3D4D9C8 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B32AF3F43989CBA171BB1FB3957A4509; + remoteInfo = "MJExtension-MJExtension"; + }; + C548A30C8E9A6CD52D6655421F9E80B2 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0130B3724283586C0E9D2A112D4F2AA1; + remoteInfo = AFNetworking; + }; + CEFF12BAC2DF7A2FB2A16265805F8779 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = C4E1020AF425614337737213AA26DBD5; + remoteInfo = JXPagingView; + }; + D031B103E98AAB5CEC13491B24F6A82E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F1BCD9702276377FB5B3BDB6EAF709D7; + remoteInfo = DZNEmptyDataSet; + }; + D9630B9E5DE60DCADFA9106CF013D735 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8B7D23DD98E41BAE91418E9E85F191D6; + remoteInfo = LSTPopView; + }; + DB09B1B3C4EF493AB0763F0795077728 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 31DCABABCA873FBA7A92FEB47D71ED8E; + remoteInfo = HWPanModal; + }; + F02666E823668E7F6E705B610204BBE2 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F1BCD9702276377FB5B3BDB6EAF709D7; + remoteInfo = DZNEmptyDataSet; + }; + F24DDDDEE9FC26F48E2EA84062015B72 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 55AF53E6C77A10ED4985E04D74A8878E; + remoteInfo = Masonry; + }; + F518DC696627DF925BE789501947DBC7 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 55AF53E6C77A10ED4985E04D74A8878E; + remoteInfo = Masonry; + }; + FD339A2CF804D4CD1FADE6633BE4DB45 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4A8E8992707D01510894596DB9BCCA00; + remoteInfo = FLAnimatedImage; + }; /* End PBXContainerItemProxy section */ /* Begin PBXFileReference section */ - 00B67A73E7EE0522188FAE4145324D19 /* JXCategoryTitleCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryTitleCell.h; path = Sources/Title/JXCategoryTitleCell.h; sourceTree = ""; }; - 015571B1499F434BC7171DE7EA094577 /* UILabel+LookinServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UILabel+LookinServer.h"; path = "Src/Main/Server/Category/UILabel+LookinServer.h"; sourceTree = ""; }; - 017032FDD415E1762246EBCDD2228351 /* HWDimmedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HWDimmedView.h; path = Sources/View/HWDimmedView.h; sourceTree = ""; }; - 0210A2376F4634FAF99E871533D6AD1C /* LSTTimer.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = LSTTimer.modulemap; sourceTree = ""; }; - 02986FE530B6F5FD0ABF721900839DA5 /* SDWebImageDownloaderRequestModifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderRequestModifier.m; path = SDWebImage/Core/SDWebImageDownloaderRequestModifier.m; sourceTree = ""; }; - 029DB3501B51C5C14FA8EC0A89559639 /* LKS_GestureTargetActionsSearcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LKS_GestureTargetActionsSearcher.h; path = Src/Main/Server/Others/LKS_GestureTargetActionsSearcher.h; sourceTree = ""; }; - 02E945EEF3757BDF2B47E65C51C4D6D6 /* MJRefreshAutoStateFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshAutoStateFooter.h; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.h; sourceTree = ""; }; - 035807D7A9181D8E0DF6FAF1E2D6B33C /* MBProgressHUD.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MBProgressHUD.release.xcconfig; sourceTree = ""; }; - 039AC3B9A6AA2BDAB5EB71E7A54C1EF5 /* HWPanModalShadow.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HWPanModalShadow.h; path = Sources/View/HWPanModalShadow.h; sourceTree = ""; }; - 04A50C0A5F4CA1B3AF632BFE12460FC6 /* MJExtensionConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJExtensionConst.h; path = MJExtension/MJExtensionConst.h; sourceTree = ""; }; - 04A5DA1EDA3B5149D813E6B1D2B5ADDD /* MJExtension.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MJExtension.release.xcconfig; sourceTree = ""; }; - 04AE87BD26EBAF13B558201544C0E822 /* JXCategoryTitleImageCellModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryTitleImageCellModel.m; path = Sources/TitleImage/JXCategoryTitleImageCellModel.m; sourceTree = ""; }; - 057CD48F09C7A5468D77A9691A639803 /* JXCategoryTitleCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryTitleCell.m; path = Sources/Title/JXCategoryTitleCell.m; sourceTree = ""; }; - 059C3C014AA92686FDCE895211A108CE /* JXCategoryTitleVerticalZoomView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryTitleVerticalZoomView.h; path = Sources/VerticalZoomTitle/JXCategoryTitleVerticalZoomView.h; sourceTree = ""; }; - 05B3B08A0927761DC2CBA02E9412CD21 /* LookinObject.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinObject.m; path = Src/Main/Shared/LookinObject.m; sourceTree = ""; }; - 06077AACB035D8452C9F730B2E1F00DF /* SDImageIOAnimatedCoderInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOAnimatedCoderInternal.h; path = SDWebImage/Private/SDImageIOAnimatedCoderInternal.h; sourceTree = ""; }; - 06A633B376D525417B93138405029540 /* LookinCustomAttrModification.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinCustomAttrModification.h; path = Src/Main/Shared/LookinCustomAttrModification.h; sourceTree = ""; }; - 06AB57BB46CC82FE3257276649BAF8EA /* NSString+Lookin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSString+Lookin.h"; path = "Src/Main/Shared/Category/NSString+Lookin.h"; sourceTree = ""; }; - 06BE908D1EBE4269ACB69B26DE9B834E /* LKS_MultiplatformAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LKS_MultiplatformAdapter.h; path = Src/Main/Server/Others/LKS_MultiplatformAdapter.h; sourceTree = ""; }; - 06EFD395C240E38E2ED0DCAF40CE73FC /* UIImage+MemoryCacheCost.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+MemoryCacheCost.h"; path = "SDWebImage/Core/UIImage+MemoryCacheCost.h"; sourceTree = ""; }; - 0A19BDA4E648916460C20489D6D183F0 /* UIView+WebCacheOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+WebCacheOperation.m"; path = "SDWebImage/Core/UIView+WebCacheOperation.m"; sourceTree = ""; }; - 0A5E3A2C0C49EB165C854762A832D48A /* MJRefreshBackFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshBackFooter.m; path = MJRefresh/Base/MJRefreshBackFooter.m; sourceTree = ""; }; - 0A7095DB3527991440F374C9F9DB5050 /* NSButton+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSButton+WebCache.h"; path = "SDWebImage/Core/NSButton+WebCache.h"; sourceTree = ""; }; - 0A8F3B5ED5052E8AFF569E50436DC3C0 /* SDWebImageIndicator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageIndicator.m; path = SDWebImage/Core/SDWebImageIndicator.m; sourceTree = ""; }; - 0B08ADE1A4FFE94FDBBE13FE7CC2C1E5 /* JXCategoryBaseCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryBaseCell.m; path = Sources/Base/JXCategoryBaseCell.m; sourceTree = ""; }; - 0B0EEEE5F23AC446F4729522F4FC7A73 /* Masonry.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Masonry.release.xcconfig; sourceTree = ""; }; - 0B18274068E3388B3808CDDEB810ECFA /* MJRefresh.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MJRefresh.debug.xcconfig; sourceTree = ""; }; - 0B1D41519ED222707112BD66393CC6B2 /* LookinObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinObject.h; path = Src/Main/Shared/LookinObject.h; sourceTree = ""; }; - 0B35D70EDD8A3E56FE6F0E6934A400CC /* LookinAttributeModification.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinAttributeModification.m; path = Src/Main/Shared/LookinAttributeModification.m; sourceTree = ""; }; + 00449113F3BDDB46E11CEE02CF1F29A1 /* NSData+ImageContentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSData+ImageContentType.h"; path = "SDWebImage/Core/NSData+ImageContentType.h"; sourceTree = ""; }; + 0055AF44029FABEF5E29D1BC1B86CC15 /* UIImage+MemoryCacheCost.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+MemoryCacheCost.h"; path = "SDWebImage/Core/UIImage+MemoryCacheCost.h"; sourceTree = ""; }; + 00AE10F23D2B898E9F45884FD9904B2F /* LKS_AttrGroupsMaker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LKS_AttrGroupsMaker.m; path = Src/Main/Server/Others/LKS_AttrGroupsMaker.m; sourceTree = ""; }; + 00B27A1456536538B2E7220C71AA3F4F /* LKS_HierarchyDisplayItemsMaker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LKS_HierarchyDisplayItemsMaker.m; path = Src/Main/Server/Others/LKS_HierarchyDisplayItemsMaker.m; sourceTree = ""; }; + 00C9A4038FA1CE3381055E02DAAEC90E /* LookinIvarTrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinIvarTrace.h; path = Src/Base/LookinIvarTrace.h; sourceTree = ""; }; + 021930E01F482BDF2DEAAA2AF9FDCF18 /* JXCategoryIndicatorRainbowLineView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorRainbowLineView.m; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorRainbowLineView.m; sourceTree = ""; }; + 0249A8711339B6CD1E26258C064677E9 /* NSObject+MJCoding.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSObject+MJCoding.m"; path = "MJExtension/NSObject+MJCoding.m"; sourceTree = ""; }; + 0260C833576479A14C0F759F9D161479 /* MJRefreshFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshFooter.m; path = MJRefresh/Base/MJRefreshFooter.m; sourceTree = ""; }; + 026BB0AEDD69539DEC39191EE0C5214B /* SDAsyncBlockOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAsyncBlockOperation.h; path = SDWebImage/Private/SDAsyncBlockOperation.h; sourceTree = ""; }; + 03700B93F7A3FF6F3675D80E5DB1C1C7 /* SDImageCodersManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCodersManager.m; path = SDWebImage/Core/SDImageCodersManager.m; sourceTree = ""; }; + 04094D9F916F0B3E8A409CF5EEC45FCC /* SDImageIOCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageIOCoder.m; path = SDWebImage/Core/SDImageIOCoder.m; sourceTree = ""; }; + 044A47D1E36901CA79D51CC72EA995C9 /* JXPagerView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXPagerView.m; path = Sources/JXPagerView/JXPagerView.m; sourceTree = ""; }; + 0451FF8513ABCE79BA473B450192579B /* UIImage+MemoryCacheCost.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+MemoryCacheCost.m"; path = "SDWebImage/Core/UIImage+MemoryCacheCost.m"; sourceTree = ""; }; + 04996832466C0B682760DEB660586A88 /* MJRefresh-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "MJRefresh-Info.plist"; sourceTree = ""; }; + 051A66FC7C22537DD150BA86539EC9D4 /* JXCategoryCollectionView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryCollectionView.h; path = Sources/Common/JXCategoryCollectionView.h; sourceTree = ""; }; + 05A7B005509B15E31ECEED7DFEEB1EDB /* MJPropertyKey.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJPropertyKey.h; path = MJExtension/MJPropertyKey.h; sourceTree = ""; }; + 05D708E8F9065868500ABC98E789B739 /* KeyValueObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KeyValueObserver.h; path = Sources/KVO/KeyValueObserver.h; sourceTree = ""; }; + 05EE9449F14265ADB3100E60632AB642 /* LookinEventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinEventHandler.h; path = Src/Main/Shared/LookinEventHandler.h; sourceTree = ""; }; + 05FF40C91ADEB302CBF4314535A1A6E7 /* NSArray+MASAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSArray+MASAdditions.h"; path = "Masonry/NSArray+MASAdditions.h"; sourceTree = ""; }; + 060133813AFA51D11B917CB91A3D4950 /* AFCompatibilityMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFCompatibilityMacros.h; path = AFNetworking/AFCompatibilityMacros.h; sourceTree = ""; }; + 06878A6718B46A5E825D03CB581CD8B2 /* LookinServer-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "LookinServer-Info.plist"; sourceTree = ""; }; + 07001E763AE097A75E1AFBEB80197373 /* Masonry-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Masonry-dummy.m"; sourceTree = ""; }; + 0719BBC5095E9B709A7485C347010514 /* LKS_HierarchyDetailsHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LKS_HierarchyDetailsHandler.m; path = Src/Main/Server/Connection/RequestHandler/LKS_HierarchyDetailsHandler.m; sourceTree = ""; }; + 07274C755D75F4A07C925D1DDE5FA529 /* SDImageAPNGCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageAPNGCoder.m; path = SDWebImage/Core/SDImageAPNGCoder.m; sourceTree = ""; }; + 073DE0C455B2CE33A0FBA3C6ECF4F8CF /* MJPropertyType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJPropertyType.m; path = MJExtension/MJPropertyType.m; sourceTree = ""; }; + 07C3DB4C7661755654D296A929BE2CE7 /* Lookin_PTChannel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Lookin_PTChannel.h; path = Src/Main/Shared/Peertalk/Lookin_PTChannel.h; sourceTree = ""; }; + 083F5143D12F213638EF9FE439F1CEFA /* MJRefresh.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = MJRefresh.bundle; path = MJRefresh/MJRefresh.bundle; sourceTree = ""; }; + 091DAAA7597B1233173C3BB1DC8D1D79 /* HWPanModalContainerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HWPanModalContainerView.h; path = Sources/View/PanModal/HWPanModalContainerView.h; sourceTree = ""; }; + 09799A44FC43F3184E20B590CC73FFC7 /* LookinStaticAsyncUpdateTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinStaticAsyncUpdateTask.h; path = Src/Main/Shared/LookinStaticAsyncUpdateTask.h; sourceTree = ""; }; + 0A70A9B1B9D076F21A4C704EAC69B3E9 /* SDWebImageOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageOperation.m; path = SDWebImage/Core/SDWebImageOperation.m; sourceTree = ""; }; + 0A7D8AD4481BE4F0D7389A1662CCA111 /* Masonry.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Masonry.modulemap; sourceTree = ""; }; + 0AD4477B34BC6EAF1A362183974F34DC /* Bugly.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Bugly.release.xcconfig; sourceTree = ""; }; + 0AE235E52EF7BBF7348F9B4CAB71F7D8 /* HWPanModal-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "HWPanModal-dummy.m"; sourceTree = ""; }; 0B4AAC15A428CDC2A62AF9CC27BEA609 /* Pods-CustomKeyboard */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-CustomKeyboard"; path = Pods_CustomKeyboard.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 0BE68C7303DE07C8DA01573CDDE9003F /* HWPanModalInteractiveAnimator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = HWPanModalInteractiveAnimator.m; path = Sources/Animator/HWPanModalInteractiveAnimator.m; sourceTree = ""; }; + 0B4EEA7B77703F45AB157AC651CEF4EA /* UIView+LYExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+LYExtension.m"; path = "LYEmptyView/UIView+LYExtension.m"; sourceTree = ""; }; + 0B5075BB968E268BB5D61B393C333DB4 /* UIImageView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+WebCache.h"; path = "SDWebImage/Core/UIImageView+WebCache.h"; sourceTree = ""; }; + 0BC7EB117F009B160822B3FFCCC63F2A /* SDImageCodersManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCodersManager.h; path = SDWebImage/Core/SDImageCodersManager.h; sourceTree = ""; }; + 0BED1E57A7780D7944D806EF7FB48648 /* HWPanModalContainerView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = HWPanModalContainerView.m; path = Sources/View/PanModal/HWPanModalContainerView.m; sourceTree = ""; }; 0C4AE62ED97252893F28F670D61AFB24 /* Pods-keyBoard-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-keyBoard-Info.plist"; sourceTree = ""; }; - 0C9F5466A18204DE825F30433C784EDB /* MJFoundation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJFoundation.h; path = MJExtension/MJFoundation.h; sourceTree = ""; }; + 0C6F8F3E8953AADD74838D4A882F45A1 /* NSObject+MJProperty.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+MJProperty.h"; path = "MJExtension/NSObject+MJProperty.h"; sourceTree = ""; }; + 0C7575113B17F46DF34D3C118CB31308 /* NSObject+MJKeyValue.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSObject+MJKeyValue.m"; path = "MJExtension/NSObject+MJKeyValue.m"; sourceTree = ""; }; + 0CA8B3EFCD9E73829676C70CE3E88BE0 /* UIView+LYExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+LYExtension.h"; path = "LYEmptyView/UIView+LYExtension.h"; sourceTree = ""; }; + 0CE35A6903D3E473ACA2703E7286A28E /* MASViewConstraint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASViewConstraint.m; path = Masonry/MASViewConstraint.m; sourceTree = ""; }; + 0CF1A36FA548FCE3A4F7DA66625E9583 /* JXCategoryTitleCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryTitleCell.h; path = Sources/Title/JXCategoryTitleCell.h; sourceTree = ""; }; 0D6215D1BCCE125B8DF73E38013CBBDC /* Pods-CustomKeyboard.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-CustomKeyboard.debug.xcconfig"; sourceTree = ""; }; - 0D8B581D78D02F65425434F924BB64B3 /* LookinHierarchyInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinHierarchyInfo.m; path = Src/Main/Shared/LookinHierarchyInfo.m; sourceTree = ""; }; - 0E2875C79F8461486A975B000C1ABDE3 /* JXCategoryImageCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryImageCell.h; path = Sources/Image/JXCategoryImageCell.h; sourceTree = ""; }; + 0D6771046C7CF97C82B7D303F2AFD49E /* SDWebImageCacheSerializer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCacheSerializer.m; path = SDWebImage/Core/SDWebImageCacheSerializer.m; sourceTree = ""; }; + 0DEA9604C374890EC86557DA00C054E0 /* LookinServer.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = LookinServer.modulemap; sourceTree = ""; }; 0E732C0D026ACBC7DBD039DC3BDC2BCE /* Pods-keyBoard.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-keyBoard.modulemap"; sourceTree = ""; }; - 0E752820782AF474A360AC65F5EFA79D /* RTLManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RTLManager.h; path = Sources/RLTManager/RTLManager.h; sourceTree = ""; }; - 0E90E49C067121A7254AE81E49E663A2 /* JXPagingView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JXPagingView-prefix.pch"; sourceTree = ""; }; - 0F050843F5053FDD98D8FE72C1E28A5F /* SDImageHEICCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageHEICCoder.h; path = SDWebImage/Core/SDImageHEICCoder.h; sourceTree = ""; }; - 0FABDACBA6BA6926D5F19E502E77474E /* MBProgressHUD-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "MBProgressHUD-Info.plist"; sourceTree = ""; }; - 102C92CE02746A6588B44F852322AB39 /* NSImage+Compatibility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSImage+Compatibility.m"; path = "SDWebImage/Core/NSImage+Compatibility.m"; sourceTree = ""; }; - 109DC293F90D678E22D453F41A197049 /* SDWebImageError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageError.h; path = SDWebImage/Core/SDWebImageError.h; sourceTree = ""; }; - 10B904BAC9CC3925EE6B4E2130826A6F /* NSBundle+MJRefresh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSBundle+MJRefresh.h"; path = "MJRefresh/NSBundle+MJRefresh.h"; sourceTree = ""; }; - 119B8F0EF70910D693FCCA816529E357 /* JXPagerMainTableView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXPagerMainTableView.m; path = Sources/JXPagerView/JXPagerMainTableView.m; sourceTree = ""; }; - 119F71892BB85FDC29B99AE148231087 /* MJRefreshStateHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshStateHeader.m; path = MJRefresh/Custom/Header/MJRefreshStateHeader.m; sourceTree = ""; }; - 11EEC0D59FA31FAAD209A208EB338575 /* SDImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCache.m; path = SDWebImage/Core/SDImageCache.m; sourceTree = ""; }; - 12142FAAA1C74097D8F4441EAD4066E1 /* FLAnimatedImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FLAnimatedImage-prefix.pch"; sourceTree = ""; }; - 123714F0F2335CBE901933785D4D26FB /* SDInternalMacros.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDInternalMacros.m; path = SDWebImage/Private/SDInternalMacros.m; sourceTree = ""; }; - 1278AB0B776862F23D89B7E8596E3598 /* LKS_TraceManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LKS_TraceManager.h; path = Src/Main/Server/Others/LKS_TraceManager.h; sourceTree = ""; }; - 1325B9E2F97C77F3E9191898C4045E7E /* MJRefresh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefresh.h; path = MJRefresh/MJRefresh.h; sourceTree = ""; }; - 1326C5B7B2B67B2A6E9A785F1ECEA87F /* MJProperty.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJProperty.h; path = MJExtension/MJProperty.h; sourceTree = ""; }; - 137AD002D5B6FA89785842F03034A5B1 /* UIColor+JXAdd.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIColor+JXAdd.m"; path = "Sources/Common/UIColor+JXAdd.m"; sourceTree = ""; }; - 137E45FE90DEED579DF255BB11ADABF4 /* LKS_CustomAttrModificationHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LKS_CustomAttrModificationHandler.h; path = Src/Main/Server/Connection/RequestHandler/LKS_CustomAttrModificationHandler.h; sourceTree = ""; }; - 13B6B935F583A1ED5234B7E3DF044521 /* MJRefreshStateHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshStateHeader.h; path = MJRefresh/Custom/Header/MJRefreshStateHeader.h; sourceTree = ""; }; - 13B82D87F3DD4A8EB4C508E0BFA04090 /* SDWebImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SDWebImage-dummy.m"; sourceTree = ""; }; - 13D84A2503CDD440D0A0063FF97A2EB4 /* SDAnimatedImageView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SDAnimatedImageView+WebCache.h"; path = "SDWebImage/Core/SDAnimatedImageView+WebCache.h"; sourceTree = ""; }; - 156CBD2266287775279363430A374818 /* UIImageView+AFNetworking.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+AFNetworking.m"; path = "UIKit+AFNetworking/UIImageView+AFNetworking.m"; sourceTree = ""; }; - 15D78A0355CAA0B846DBC1DAC7B101F4 /* HWPanModalPresentationAnimator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = HWPanModalPresentationAnimator.m; path = Sources/Animator/HWPanModalPresentationAnimator.m; sourceTree = ""; }; - 15D9AA9876374637F32E00BE13AA1880 /* MJRefreshBackStateFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshBackStateFooter.h; path = MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.h; sourceTree = ""; }; - 15E765BB9B77EA9AC2800F30D2802C1C /* LKS_RequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LKS_RequestHandler.m; path = Src/Main/Server/Connection/LKS_RequestHandler.m; sourceTree = ""; }; - 16464E573FCB8AFF2E7DB58E7A507D73 /* LookinWeakContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinWeakContainer.m; path = Src/Main/Shared/LookinWeakContainer.m; sourceTree = ""; }; - 167D63F7114C5D501803C08C617324CA /* SDAnimatedImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImage.h; path = SDWebImage/Core/SDAnimatedImage.h; sourceTree = ""; }; - 16E6E00D729B1498CE18200F50778930 /* LookinHierarchyFile.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinHierarchyFile.m; path = Src/Main/Shared/LookinHierarchyFile.m; sourceTree = ""; }; - 1711B81346B8ED1944B5A8A478A4CF3F /* JXCategoryIndicatorLineView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorLineView.m; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorLineView.m; sourceTree = ""; }; - 173BFB44F7DA63CD3AF5A497970B8203 /* JXCategoryBaseView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryBaseView.h; path = Sources/Base/JXCategoryBaseView.h; sourceTree = ""; }; - 17CD950341D8F0132ADFEDC39B7267A7 /* AFNetworking-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AFNetworking-dummy.m"; sourceTree = ""; }; - 17D9582F158C09F75D84ECE893151E91 /* MJRefreshBackFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshBackFooter.h; path = MJRefresh/Base/MJRefreshBackFooter.h; sourceTree = ""; }; - 17DDB1AC9EC1929E6B6DFC0CFA9D927D /* LKSConfigManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LKSConfigManager.m; path = Src/Main/Server/Others/LKSConfigManager.m; sourceTree = ""; }; - 17FBA36FB2D4DFAA4437CEE5C69F4BBE /* Image+Lookin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Image+Lookin.h"; path = "Src/Main/Shared/Category/Image+Lookin.h"; sourceTree = ""; }; - 187A3F425AA5E5A93F8784E11F9E28CF /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = MJRefresh/PrivacyInfo.xcprivacy; sourceTree = ""; }; - 195B648C25562B52954B1E7C1D8964C3 /* MJRefreshHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshHeader.h; path = MJRefresh/Base/MJRefreshHeader.h; sourceTree = ""; }; - 195F1795B17C3F026E46BBEF64C1EA67 /* HWPanModalPresentationController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HWPanModalPresentationController.h; path = Sources/Controller/HWPanModalPresentationController.h; sourceTree = ""; }; - 19AE4F199F0E794B9F2956EE4530887A /* MJExtension.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = MJExtension.modulemap; sourceTree = ""; }; - 1A08646B05BD58116699CDFD07CA2977 /* JXCategoryBaseCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryBaseCell.h; path = Sources/Base/JXCategoryBaseCell.h; sourceTree = ""; }; - 1A1600286757D192233397A2BF1A2371 /* UIImageView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+WebCache.m"; path = "SDWebImage/Core/UIImageView+WebCache.m"; sourceTree = ""; }; - 1A2B6D97C6E9B5572232985B40BDA6C4 /* MJRefreshHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshHeader.m; path = MJRefresh/Base/MJRefreshHeader.m; sourceTree = ""; }; - 1B8FD707DDEC1F98F5C5FE19647F0592 /* JXCategoryNumberCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryNumberCell.m; path = Sources/Number/JXCategoryNumberCell.m; sourceTree = ""; }; - 1BABE1F324CED82D14350741682D422B /* ViewController+MASAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "ViewController+MASAdditions.m"; path = "Masonry/ViewController+MASAdditions.m"; sourceTree = ""; }; - 1C21A04AB85F6948BCB44480387E46C5 /* LKS_EventHandlerMaker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LKS_EventHandlerMaker.m; path = Src/Main/Server/Others/LKS_EventHandlerMaker.m; sourceTree = ""; }; - 1C37C8F103EDECD09126133069B80115 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = MJExtension/PrivacyInfo.xcprivacy; sourceTree = ""; }; - 1C4B5B00D7224F098F6B2FE0962E5086 /* LKS_AttrGroupsMaker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LKS_AttrGroupsMaker.m; path = Src/Main/Server/Others/LKS_AttrGroupsMaker.m; sourceTree = ""; }; - 1D56371580E6496005BC9D35C2C49570 /* MASLayoutConstraint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASLayoutConstraint.h; path = Masonry/MASLayoutConstraint.h; sourceTree = ""; }; + 0EBF81CE72AA8B4B06F1BC37CFA7B96A /* UIImage+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Transform.m"; path = "SDWebImage/Core/UIImage+Transform.m"; sourceTree = ""; }; + 0ED5656E5971882A3EA314E222EBC2C5 /* SDFileAttributeHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDFileAttributeHelper.h; path = SDWebImage/Private/SDFileAttributeHelper.h; sourceTree = ""; }; + 0F1705DF1CC5E82194523F85FE871354 /* HWDimmedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HWDimmedView.h; path = Sources/View/HWDimmedView.h; sourceTree = ""; }; + 0FC2E352D2D0DD942A9B4488E3654AB0 /* HWPanModalPresentableHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = HWPanModalPresentableHandler.m; path = Sources/Mediator/HWPanModalPresentableHandler.m; sourceTree = ""; }; + 0FFF1AB10AC30C72DB3B2F106B23E5B3 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = MJExtension/PrivacyInfo.xcprivacy; sourceTree = ""; }; + 1069EA3A85D1A1A87FE087B0FE402436 /* View+MASAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "View+MASAdditions.m"; path = "Masonry/View+MASAdditions.m"; sourceTree = ""; }; + 10AACE3BDEFABB8B9E709942B03E5595 /* JXPagingView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "JXPagingView-dummy.m"; sourceTree = ""; }; + 10DBEAC7DAAC95D5A947ACA061058C0B /* LookinConnectionAttachment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinConnectionAttachment.h; path = Src/Main/Shared/LookinConnectionAttachment.h; sourceTree = ""; }; + 12702606A08588ACD81E031A777BAB70 /* NSString+MJExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSString+MJExtension.h"; path = "MJExtension/NSString+MJExtension.h"; sourceTree = ""; }; + 128CF11122A7C2009F733361122E39A1 /* Masonry-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Masonry-umbrella.h"; sourceTree = ""; }; + 13AC6B7EC0E45B7BC751451206C8C575 /* MJExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJExtension.h; path = MJExtension/MJExtension.h; sourceTree = ""; }; + 148EEB030F62D4D33B4C03AE45AD6C08 /* FLAnimatedImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLAnimatedImageView.m; path = FLAnimatedImage/FLAnimatedImageView.m; sourceTree = ""; }; + 14CF605A6E1A867AA3131733CCE53D99 /* MJRefreshAutoFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshAutoFooter.m; path = MJRefresh/Base/MJRefreshAutoFooter.m; sourceTree = ""; }; + 15C39377834B42681C3BF6A5471C5F78 /* NSString+MJExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSString+MJExtension.m"; path = "MJExtension/NSString+MJExtension.m"; sourceTree = ""; }; + 15D6A20A536D39FB4F4DE78CEC3512CE /* LookinDisplayItemDetail.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinDisplayItemDetail.m; path = Src/Main/Shared/LookinDisplayItemDetail.m; sourceTree = ""; }; + 1612A7E2EB4D912BD038AFA9FAE11CFD /* AFURLSessionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFURLSessionManager.h; path = AFNetworking/AFURLSessionManager.h; sourceTree = ""; }; + 16308A5AF08E401B61B68CCD953A0528 /* MJRefreshHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshHeader.h; path = MJRefresh/Base/MJRefreshHeader.h; sourceTree = ""; }; + 163DD1C8E32A767AC162D451FB47DECB /* LSTPopView.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = LSTPopView.debug.xcconfig; sourceTree = ""; }; + 16465B6B7358098E137335C9985BBBBC /* SDWebImageError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageError.h; path = SDWebImage/Core/SDWebImageError.h; sourceTree = ""; }; + 1679E08A4A241FB86455E71FDFB20D9F /* SDDisplayLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDisplayLink.m; path = SDWebImage/Private/SDDisplayLink.m; sourceTree = ""; }; + 1724C0944D7BC65545806EE9EDED203D /* HWPanModalPresentationDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = HWPanModalPresentationDelegate.m; path = Sources/Delegate/HWPanModalPresentationDelegate.m; sourceTree = ""; }; + 17A16F153D08C8BBF15070C730EC0C3A /* LookinTuple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinTuple.h; path = Src/Main/Shared/LookinTuple.h; sourceTree = ""; }; + 18106F0763EC023048DB3F77457B9596 /* AFNetworking-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AFNetworking-dummy.m"; sourceTree = ""; }; + 1817B2506E6D89DAFA8176C4A51738C0 /* JXCategoryIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorView.m; path = Sources/Indicator/JXCategoryIndicatorView.m; sourceTree = ""; }; + 18EAC20398B46C2C580B542618314D9E /* FLAnimatedImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLAnimatedImageView.h; path = FLAnimatedImage/include/FLAnimatedImageView.h; sourceTree = ""; }; + 1936EF3FEE34E513D746BA5037CDEE80 /* JXCategoryIndicatorParamsModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorParamsModel.m; path = Sources/Common/JXCategoryIndicatorParamsModel.m; sourceTree = ""; }; + 1B1E80842E43848FFB0F162AFF96E774 /* UIView+LSTPV.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+LSTPV.m"; path = "LSTPopView/Classes/Code/UIView+LSTPV.m"; sourceTree = ""; }; + 1B41D364B66F85CF33EB15116929CF48 /* NSObject+MJKeyValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+MJKeyValue.h"; path = "MJExtension/NSObject+MJKeyValue.h"; sourceTree = ""; }; + 1B82CFD6AD23DAB70352983FFFA8DBBE /* SDWebImageOptionsProcessor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageOptionsProcessor.m; path = SDWebImage/Core/SDWebImageOptionsProcessor.m; sourceTree = ""; }; + 1BFABBA210FF6BEF09CABCCBE8AE590F /* MASUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASUtilities.h; path = Masonry/MASUtilities.h; sourceTree = ""; }; + 1C9E2AC9C9AE14EBBFDCDBBA925613E4 /* JXCategoryFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryFactory.h; path = Sources/Common/JXCategoryFactory.h; sourceTree = ""; }; + 1CA6A325AACF7253FFEB9D258746335D /* SDImageHEICCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageHEICCoder.m; path = SDWebImage/Core/SDImageHEICCoder.m; sourceTree = ""; }; + 1D0C4CB17BF463D490AE3400293A0D47 /* LYEmptyBaseView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LYEmptyBaseView.m; path = LYEmptyView/LYEmptyBaseView.m; sourceTree = ""; }; + 1D490F15AED6B55BCD64F4D5193A9375 /* JXCategoryIndicatorComponentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorComponentView.m; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorComponentView.m; sourceTree = ""; }; 1D774D8146EBC82B4A77204A273761B8 /* Pods-CustomKeyboard.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-CustomKeyboard.release.xcconfig"; sourceTree = ""; }; - 1E17CF24E4278604BB723E30B9997957 /* JXCategoryIndicatorTriangleView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorTriangleView.m; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorTriangleView.m; sourceTree = ""; }; - 1E7F18004D9337D64F0F606975492DF4 /* LookinDisplayItemDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinDisplayItemDetail.h; path = Src/Main/Shared/LookinDisplayItemDetail.h; sourceTree = ""; }; - 1FBD8AFE7FA55EAB140791EC34C18CD4 /* LKS_MultiplatformAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LKS_MultiplatformAdapter.m; path = Src/Main/Server/Others/LKS_MultiplatformAdapter.m; sourceTree = ""; }; - 1FCD0CB41F1E259546B6F8A9BFF05378 /* SDWebImageOptionsProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageOptionsProcessor.h; path = SDWebImage/Core/SDWebImageOptionsProcessor.h; sourceTree = ""; }; - 1FFD17C3FF6DE53EF72736C597DF5B82 /* LookinAutoLayoutConstraint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinAutoLayoutConstraint.h; path = Src/Main/Shared/LookinAutoLayoutConstraint.h; sourceTree = ""; }; + 1D8DC297A0249D2FB0109542F14B89AB /* UITextView+LookinServer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UITextView+LookinServer.m"; path = "Src/Main/Server/Category/UITextView+LookinServer.m"; sourceTree = ""; }; + 1DD3D7BBD826081D1399FCDA65D59838 /* AFURLResponseSerialization.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFURLResponseSerialization.m; path = AFNetworking/AFURLResponseSerialization.m; sourceTree = ""; }; + 1E2CD23DF8D29ECCE7278412B1BFFFA2 /* Masonry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Masonry.h; path = Masonry/Masonry.h; sourceTree = ""; }; + 1EC115C953943E0027F6AD5AFEE41A30 /* HWPageSheetPresentingAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HWPageSheetPresentingAnimation.h; path = Sources/Animator/PresentingVCAnimation/HWPageSheetPresentingAnimation.h; sourceTree = ""; }; + 1EFF4D34DD5391DCE7D206B11306BCE5 /* LKS_CustomAttrModificationHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LKS_CustomAttrModificationHandler.h; path = Src/Main/Server/Connection/RequestHandler/LKS_CustomAttrModificationHandler.h; sourceTree = ""; }; + 1EFF4EEBD779C7DB39B6B044205385FA /* HWPanModal-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "HWPanModal-umbrella.h"; sourceTree = ""; }; + 1F9506DDA8FBAA7420E9B8137BFCFDFA /* HWPanModalPresentationController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = HWPanModalPresentationController.m; path = Sources/Controller/HWPanModalPresentationController.m; sourceTree = ""; }; 1FFED36A657123030ABB700256D73F15 /* Masonry */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Masonry; path = Masonry.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 201E2681B892F05C3D7CAFE9E9927D15 /* UIViewController+Presentation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIViewController+Presentation.h"; path = "Sources/Presentable/UIViewController+Presentation.h"; sourceTree = ""; }; - 202D2DE7A9C3209A4BF4D407CF1AB06A /* JXCategoryTitleView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryTitleView.m; path = Sources/Title/JXCategoryTitleView.m; sourceTree = ""; }; - 20BCC481544CBBCE47AC61F792449041 /* MBProgressHUD.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = MBProgressHUD.modulemap; sourceTree = ""; }; - 21199D87A8FB4561900F6BC425147989 /* UIImage+GIF.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+GIF.h"; path = "SDWebImage/Core/UIImage+GIF.h"; sourceTree = ""; }; - 2132EF8C73164960BCAFD57CF9C7A53F /* NSData+ImageContentType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSData+ImageContentType.m"; path = "SDWebImage/Core/NSData+ImageContentType.m"; sourceTree = ""; }; - 21696AB985A15DE2C63BD9A8CD978F59 /* LKS_HierarchyDetailsHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LKS_HierarchyDetailsHandler.h; path = Src/Main/Server/Connection/RequestHandler/LKS_HierarchyDetailsHandler.h; sourceTree = ""; }; - 21C74D93A3238750FF610EABE13EB50F /* UIButton+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIButton+WebCache.m"; path = "SDWebImage/Core/UIButton+WebCache.m"; sourceTree = ""; }; - 21E66554273E5793F0BC4D1CD5A058CD /* WKWebView+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "WKWebView+AFNetworking.h"; path = "UIKit+AFNetworking/WKWebView+AFNetworking.h"; sourceTree = ""; }; - 2219CD4B41E42AA4B9864251F1CFEF59 /* LSTPopView-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "LSTPopView-Info.plist"; sourceTree = ""; }; - 2252400966339192E785E1533182460B /* SDWebImage.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SDWebImage.debug.xcconfig; sourceTree = ""; }; - 22613DFB1026F3E41B141E34C637D600 /* UIScrollView+Helper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIScrollView+Helper.h"; path = "Sources/Category/UIScrollView+Helper.h"; sourceTree = ""; }; - 230F8C4FD68EA2D95EA48F31DA295CE9 /* LKS_CustomDisplayItemsMaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LKS_CustomDisplayItemsMaker.h; path = Src/Main/Server/Others/LKS_CustomDisplayItemsMaker.h; sourceTree = ""; }; - 2310AA8AAF9A85F5E639409B8AF0F292 /* HWPanContainerView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = HWPanContainerView.m; path = Sources/View/HWPanContainerView.m; sourceTree = ""; }; - 231F7AC591603501EC449D697A5C6668 /* JXCategoryView.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = JXCategoryView.modulemap; sourceTree = ""; }; - 23648E3B16301958DD4429C021EB223C /* UIScrollView+MJExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIScrollView+MJExtension.h"; path = "MJRefresh/UIScrollView+MJExtension.h"; sourceTree = ""; }; - 239F725CB21A7ABF0EDB35FC92732A5C /* UIView+MJExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+MJExtension.m"; path = "MJRefresh/UIView+MJExtension.m"; sourceTree = ""; }; - 23A344AF55814873B0105902E9FBBB2A /* UIViewController+LayoutHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIViewController+LayoutHelper.h"; path = "Sources/Presentable/UIViewController+LayoutHelper.h"; sourceTree = ""; }; - 23FBEE27BD56B7C8EB3849A2221CDA65 /* JXPagingView.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JXPagingView.release.xcconfig; sourceTree = ""; }; - 241FDB4FE9E3CE45C4854F0FEB6F8BAF /* UIScrollView+MJRefresh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIScrollView+MJRefresh.h"; path = "MJRefresh/UIScrollView+MJRefresh.h"; sourceTree = ""; }; - 2458E327D6233EBA29A07B3E63113146 /* AFSecurityPolicy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFSecurityPolicy.m; path = AFNetworking/AFSecurityPolicy.m; sourceTree = ""; }; - 2504FFB7834ECCFC15329B28F3C9A331 /* SDImageGraphics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageGraphics.m; path = SDWebImage/Core/SDImageGraphics.m; sourceTree = ""; }; + 20674A80959A90C9F9E51DBDC8807D93 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = MJRefresh/PrivacyInfo.xcprivacy; sourceTree = ""; }; + 207535A186296DE018201ED1B7DDD076 /* LKS_ExportManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LKS_ExportManager.m; path = Src/Main/Server/Others/LKS_ExportManager.m; sourceTree = ""; }; + 20C453B83E1025092DAD587080018B43 /* UIImage+LookinServer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+LookinServer.m"; path = "Src/Main/Server/Category/UIImage+LookinServer.m"; sourceTree = ""; }; + 210B700E8324769F741C26126E6B1F4A /* Lookin_PTUSBHub.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Lookin_PTUSBHub.h; path = Src/Main/Shared/Peertalk/Lookin_PTUSBHub.h; sourceTree = ""; }; + 22A80188C121A76950A88A3321260BFD /* RTLManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RTLManager.h; path = Sources/RLTManager/RTLManager.h; sourceTree = ""; }; + 230B07768E56A05E48373DAA2EAC05DE /* JXCategoryTitleVerticalZoomCellModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryTitleVerticalZoomCellModel.m; path = Sources/VerticalZoomTitle/JXCategoryTitleVerticalZoomCellModel.m; sourceTree = ""; }; + 23763927ED025640A4CAA94867A3D823 /* NSImage+Compatibility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSImage+Compatibility.m"; path = "SDWebImage/Core/NSImage+Compatibility.m"; sourceTree = ""; }; + 23B693321C3E2CA46CF401E48AE2795D /* MJExtension-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "MJExtension-Info.plist"; sourceTree = ""; }; + 23B6D3BC0C4291E4CB154E7F35862BCB /* MASConstraint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASConstraint.m; path = Masonry/MASConstraint.m; sourceTree = ""; }; + 253C2858A52DB3FD4BE13D65D2B6C2A6 /* SDWebImageManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageManager.h; path = SDWebImage/Core/SDWebImageManager.h; sourceTree = ""; }; + 25475D081A3343232AD119F5F5A5F24A /* JXCategoryTitleVerticalZoomCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryTitleVerticalZoomCell.h; path = Sources/VerticalZoomTitle/JXCategoryTitleVerticalZoomCell.h; sourceTree = ""; }; 25664483ABF4DC8EC03E7472AA04333B /* LookinServer */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = LookinServer; path = LookinServer.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 25A5CCE05BC1D97AB685203E1D41C4B0 /* SDImageCachesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCachesManager.m; path = SDWebImage/Core/SDImageCachesManager.m; sourceTree = ""; }; - 25A7097BBC72B099A6C5D8BE403878A8 /* NSLayoutConstraint+MASDebugAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSLayoutConstraint+MASDebugAdditions.m"; path = "Masonry/NSLayoutConstraint+MASDebugAdditions.m"; sourceTree = ""; }; - 25A773C46121E6091EEB9AC88DC4E2A2 /* AFImageDownloader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFImageDownloader.m; path = "UIKit+AFNetworking/AFImageDownloader.m"; sourceTree = ""; }; - 26925632A670841DDFC5067C12B16515 /* CALayer+LookinServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "CALayer+LookinServer.h"; path = "Src/Main/Server/Category/CALayer+LookinServer.h"; sourceTree = ""; }; - 2783C33881FB9ED3037D4D66B93FAD7E /* LookinDashboardBlueprint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinDashboardBlueprint.m; path = Src/Main/Shared/LookinDashboardBlueprint.m; sourceTree = ""; }; + 256D50D68BFC3FD314552D1D0BC2044D /* SDMemoryCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDMemoryCache.h; path = SDWebImage/Core/SDMemoryCache.h; sourceTree = ""; }; + 26469EA2BF7F49FCDA80695277950B2B /* LookinHierarchyInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinHierarchyInfo.h; path = Src/Main/Shared/LookinHierarchyInfo.h; sourceTree = ""; }; + 2713EAAF042877733E01E359F3224ABF /* MJExtension-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MJExtension-umbrella.h"; sourceTree = ""; }; + 2795C0F083BB71E948BE56DAFC73957B /* LSTPopView.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = LSTPopView.modulemap; sourceTree = ""; }; 281686F4C9CC2C718B45E1DEB7E63948 /* Pods-CustomKeyboard-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-CustomKeyboard-acknowledgements.markdown"; sourceTree = ""; }; - 28EBA38DF7DE3C55A1DCF1C9536E3712 /* SDWebImageTransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageTransition.h; path = SDWebImage/Core/SDWebImageTransition.h; sourceTree = ""; }; - 294754F45B0BF3519369080425B4F2FD /* LSTTimer.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = LSTTimer.release.xcconfig; sourceTree = ""; }; - 29485CC6A452A36B28B71FA9AC5A4CE4 /* JXPagingView.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JXPagingView.debug.xcconfig; sourceTree = ""; }; - 29C25E996193BA4D1FCBB5C2A7812FB9 /* AFCompatibilityMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFCompatibilityMacros.h; path = AFNetworking/AFCompatibilityMacros.h; sourceTree = ""; }; - 29CA4DC7FB25B91EAA2B3847B7BB46A9 /* LKS_CustomAttrModificationHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LKS_CustomAttrModificationHandler.m; path = Src/Main/Server/Connection/RequestHandler/LKS_CustomAttrModificationHandler.m; sourceTree = ""; }; - 29EA07EA8EF3C7818A9505A783C4FF02 /* JXCategoryListContainerView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryListContainerView.m; path = Sources/Common/JXCategoryListContainerView.m; sourceTree = ""; }; - 2A543722998E5C6171A0B4A729D11BBB /* SDWebImageTransitionInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageTransitionInternal.h; path = SDWebImage/Private/SDWebImageTransitionInternal.h; sourceTree = ""; }; - 2AD36233DB657DAA0ACBB8EEEAEB38EA /* AFSecurityPolicy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFSecurityPolicy.h; path = AFNetworking/AFSecurityPolicy.h; sourceTree = ""; }; + 292BBC0398F56F3818017A7314541B45 /* JXCategoryNumberCellModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryNumberCellModel.h; path = Sources/Number/JXCategoryNumberCellModel.h; sourceTree = ""; }; + 2945888F89AB6D3ECBBEDD6E09D1B949 /* UIScrollView+EmptyDataSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIScrollView+EmptyDataSet.h"; path = "Source/UIScrollView+EmptyDataSet.h"; sourceTree = ""; }; + 29792A8AE7CB7444FE7BA20424B814AD /* MJRefreshStateTrailer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshStateTrailer.m; path = MJRefresh/Custom/Trailer/MJRefreshStateTrailer.m; sourceTree = ""; }; + 2A03E8820B42DFF0FCE849CB64302CAF /* SDAsyncBlockOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAsyncBlockOperation.m; path = SDWebImage/Private/SDAsyncBlockOperation.m; sourceTree = ""; }; + 2A1E2D85798C902C2A1E1B714EF78587 /* UIViewController+PanModalPresenter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIViewController+PanModalPresenter.m"; path = "Sources/Presenter/UIViewController+PanModalPresenter.m"; sourceTree = ""; }; + 2A4AC508097EE18B75D5D75FDA7CF5C1 /* JXCategoryIndicatorBallView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorBallView.h; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorBallView.h; sourceTree = ""; }; + 2A98EB9CE425ECC87D9747E4EAC3DB0C /* MASLayoutConstraint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASLayoutConstraint.h; path = Masonry/MASLayoutConstraint.h; sourceTree = ""; }; + 2B0B272843C604B68C602DEE1AD3605F /* UIView+HW_Frame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+HW_Frame.h"; path = "Sources/Category/UIView+HW_Frame.h"; sourceTree = ""; }; 2B276B0A79173A1D6E83C9B4FB9A4A57 /* MJExtension */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = MJExtension; path = MJExtension.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 2BB86632EEB3EB44D0413B3A6F7F6875 /* HWPanModalContainerView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = HWPanModalContainerView.m; path = Sources/View/PanModal/HWPanModalContainerView.m; sourceTree = ""; }; - 2BEAAFCDD4CD23AABA4CD7359454B646 /* SDAnimatedImagePlayer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImagePlayer.h; path = SDWebImage/Core/SDAnimatedImagePlayer.h; sourceTree = ""; }; - 2BF8D28C7089A47299DB62B980D954C8 /* MBProgressHUD-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MBProgressHUD-prefix.pch"; sourceTree = ""; }; - 2CAA34C64434033ACBB7F68A74F4D15B /* HWPanModalContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HWPanModalContentView.h; path = Sources/View/PanModal/HWPanModalContentView.h; sourceTree = ""; }; - 2CE7B5832F4AC9648A3CEB7DD03473E4 /* MJRefreshFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshFooter.m; path = MJRefresh/Base/MJRefreshFooter.m; sourceTree = ""; }; - 2E5DB75D5C223CDC5703FA115447A148 /* SDImageAWebPCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageAWebPCoder.m; path = SDWebImage/Core/SDImageAWebPCoder.m; sourceTree = ""; }; - 2E70DDAD553B6A4AC2379D01C3F133EF /* KeyValueObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KeyValueObserver.h; path = Sources/KVO/KeyValueObserver.h; sourceTree = ""; }; - 2E80EA469F2079302F38A991886C4B5A /* LookinServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinServer.h; path = Src/Main/Server/LookinServer.h; sourceTree = ""; }; - 2E96574DDD94EB958E64B0AD7C7B20F2 /* JXCategoryFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryFactory.h; path = Sources/Common/JXCategoryFactory.h; sourceTree = ""; }; - 2ECB40CAF1E6F3F4A5F02F74E30B95E8 /* SDWebImageOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageOperation.h; path = SDWebImage/Core/SDWebImageOperation.h; sourceTree = ""; }; - 2ED4FAFE5BD7891D4471852209337077 /* SDWebImageManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageManager.m; path = SDWebImage/Core/SDWebImageManager.m; sourceTree = ""; }; + 2B4792E0E693278C27DB918B70E58272 /* MJRefreshConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshConfig.h; path = MJRefresh/MJRefreshConfig.h; sourceTree = ""; }; + 2B53DEB14A9698F954D95E54715C1911 /* DZNEmptyDataSet-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "DZNEmptyDataSet-Info.plist"; sourceTree = ""; }; + 2CB55990BE7673BB5930FB77BB2A2C33 /* FLAnimatedImage.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FLAnimatedImage.debug.xcconfig; sourceTree = ""; }; + 2CCD2F6CD21BCE8D4DC6CE0FB91B91CB /* FLAnimatedImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FLAnimatedImage-dummy.m"; sourceTree = ""; }; + 2D0DE149DDBAC4B5DCFA0C2217970015 /* MJExtensionConst.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJExtensionConst.m; path = MJExtension/MJExtensionConst.m; sourceTree = ""; }; + 2DC211B96CB1A7D40B3203E4778066C9 /* UIViewController+LayoutHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIViewController+LayoutHelper.h"; path = "Sources/Presentable/UIViewController+LayoutHelper.h"; sourceTree = ""; }; + 2DFC8007FA865661CA9E295ADD1014BA /* JXCategoryIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorView.h; path = Sources/Indicator/JXCategoryIndicatorView.h; sourceTree = ""; }; + 2E585503EB164F6C036C85B124140368 /* SDImageLoadersManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageLoadersManager.m; path = SDWebImage/Core/SDImageLoadersManager.m; sourceTree = ""; }; + 2E79D80C613F4B57826DA627018BB1C5 /* SDImageCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCoder.m; path = SDWebImage/Core/SDImageCoder.m; sourceTree = ""; }; + 2F04E40EC66FE8A57ECA4BC540959E1D /* ResourceBundle-JXPagerView-JXPagingView-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-JXPagerView-JXPagingView-Info.plist"; sourceTree = ""; }; + 2F19C07EBC4D3E8EF1AD6C474E7F24FE /* LYEmptyView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "LYEmptyView-dummy.m"; sourceTree = ""; }; 2F4A1CCB21DB7EA5A2ACEB11E374FBCA /* JXPagingView */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = JXPagingView; path = JXPagingView.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 2FED06425BD958CD54FC4A96C6FF1992 /* SDWebImageDownloader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloader.m; path = SDWebImage/Core/SDWebImageDownloader.m; sourceTree = ""; }; - 3125F7D904D9F1F20C7699EF5186B19F /* SDImageHEICCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageHEICCoder.m; path = SDWebImage/Core/SDImageHEICCoder.m; sourceTree = ""; }; - 31894250FE81D510485178A2F984B715 /* SDImageIOCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOCoder.h; path = SDWebImage/Core/SDImageIOCoder.h; sourceTree = ""; }; - 3201B19667C12026E1C92EA1DD973BB7 /* SDFileAttributeHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDFileAttributeHelper.h; path = SDWebImage/Private/SDFileAttributeHelper.h; sourceTree = ""; }; - 32CCCC7F014C0FE2CA551D9AF48EEF89 /* NSBezierPath+SDRoundedCorners.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSBezierPath+SDRoundedCorners.h"; path = "SDWebImage/Private/NSBezierPath+SDRoundedCorners.h"; sourceTree = ""; }; - 32DEFB57DAEAFA1A97A9826678533D16 /* SDWebImageManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageManager.h; path = SDWebImage/Core/SDWebImageManager.h; sourceTree = ""; }; - 32F3C5B0B7D11631504E27D25E8CB5A2 /* AFURLRequestSerialization.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFURLRequestSerialization.m; path = AFNetworking/AFURLRequestSerialization.m; sourceTree = ""; }; - 3381742E54E03DCDB9DD644DF65C4689 /* JXCategoryIndicatorTriangleView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorTriangleView.h; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorTriangleView.h; sourceTree = ""; }; - 3415299E0D5D7B9C22E99D16B6F89983 /* MJRefresh.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = MJRefresh.modulemap; sourceTree = ""; }; - 3416384E4A531494C7B12CDD1AEA74A1 /* Lookin_PTUSBHub.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Lookin_PTUSBHub.h; path = Src/Main/Shared/Peertalk/Lookin_PTUSBHub.h; sourceTree = ""; }; - 342267EEBD80FDDCEAA647EFBE0EB6BD /* MJRefreshNormalTrailer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshNormalTrailer.h; path = MJRefresh/Custom/Trailer/MJRefreshNormalTrailer.h; sourceTree = ""; }; - 3422D3CB84719A98D68CD9DE2857E694 /* SDInternalMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDInternalMacros.h; path = SDWebImage/Private/SDInternalMacros.h; sourceTree = ""; }; - 3474F65ACB0FE00EF732580936B91D06 /* UIViewController+PanModalDefault.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIViewController+PanModalDefault.m"; path = "Sources/Presentable/UIViewController+PanModalDefault.m"; sourceTree = ""; }; - 34C31D8DFEC22296E69E97BC5CEAE316 /* SDWebImageCacheKeyFilter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCacheKeyFilter.m; path = SDWebImage/Core/SDWebImageCacheKeyFilter.m; sourceTree = ""; }; - 3504487D6CA5438A7FB00D149564DDFC /* SDImageIOAnimatedCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageIOAnimatedCoder.m; path = SDWebImage/Core/SDImageIOAnimatedCoder.m; sourceTree = ""; }; - 35205291EDA412911A7CCBF5DB6087EB /* UIImage+GIF.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+GIF.m"; path = "SDWebImage/Core/UIImage+GIF.m"; sourceTree = ""; }; - 35269DC2485E9AA07A892FDEB96B16C7 /* Lookin_PTChannel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Lookin_PTChannel.h; path = Src/Main/Shared/Peertalk/Lookin_PTChannel.h; sourceTree = ""; }; - 3545C9AC3AD500CD4E48A3E2630C521B /* JXCategoryTitleCellModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryTitleCellModel.m; path = Sources/Title/JXCategoryTitleCellModel.m; sourceTree = ""; }; - 359AD735B8CFD982730F6CEB0F56A487 /* JXPagerListRefreshView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXPagerListRefreshView.h; path = Sources/JXPagerView/JXPagerListRefreshView.h; sourceTree = ""; }; + 304D443FD07AF14BA7F1628D80971669 /* SDWebImageDownloaderOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderOperation.h; path = SDWebImage/Core/SDWebImageDownloaderOperation.h; sourceTree = ""; }; + 304FA88F8B2636C2DD7FA535D2BD617D /* UIScrollView+MJExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIScrollView+MJExtension.h"; path = "MJRefresh/UIScrollView+MJExtension.h"; sourceTree = ""; }; + 30E03A823CD994C7C3DEA8D91B90C5DE /* JXCategoryIndicatorParamsModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorParamsModel.h; path = Sources/Common/JXCategoryIndicatorParamsModel.h; sourceTree = ""; }; + 310DC522C0637DDB20D8D38412CB4153 /* UIImageView+LookinServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+LookinServer.h"; path = "Src/Main/Server/Category/UIImageView+LookinServer.h"; sourceTree = ""; }; + 313050E8524ED89E2B2CF8F5C1CC7633 /* LKS_AttrGroupsMaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LKS_AttrGroupsMaker.h; path = Src/Main/Server/Others/LKS_AttrGroupsMaker.h; sourceTree = ""; }; + 317AEF64C0405ADA2DB47569A6D72FC4 /* UIImage+ForceDecode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+ForceDecode.h"; path = "SDWebImage/Core/UIImage+ForceDecode.h"; sourceTree = ""; }; + 31C9A23E37AE09BB9DC1BC766BD3A6AA /* JXCategoryImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryImageView.h; path = Sources/Image/JXCategoryImageView.h; sourceTree = ""; }; + 321334B98147E6E64FCE056E3717FEE0 /* SDAssociatedObject.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAssociatedObject.m; path = SDWebImage/Private/SDAssociatedObject.m; sourceTree = ""; }; + 3259CC7D8EE4331CC9B8A86DA09EA5B3 /* MJRefreshStateHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshStateHeader.m; path = MJRefresh/Custom/Header/MJRefreshStateHeader.m; sourceTree = ""; }; + 32E665F5EEABCF137D52CE4A3889C9F0 /* LKSConfigManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LKSConfigManager.m; path = Src/Main/Server/Others/LKSConfigManager.m; sourceTree = ""; }; + 330AFA4D280CBB2EE073DCC942489EAB /* UIScrollView+Helper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIScrollView+Helper.m"; path = "Sources/Category/UIScrollView+Helper.m"; sourceTree = ""; }; + 3313EDBDBF7A4CA0DC32526D9ED0B496 /* SDWebImageDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDefine.h; path = SDWebImage/Core/SDWebImageDefine.h; sourceTree = ""; }; + 343C42E325F84441C510AF8DEE739ADF /* UIColor+SDHexString.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIColor+SDHexString.m"; path = "SDWebImage/Private/UIColor+SDHexString.m"; sourceTree = ""; }; + 347DA9A1002297848F6BF9D97BB1F302 /* MBProgressHUD.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = MBProgressHUD.m; sourceTree = ""; }; + 34F0487226F5EBEBA3C6D3E1743C5260 /* NSBezierPath+SDRoundedCorners.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSBezierPath+SDRoundedCorners.m"; path = "SDWebImage/Private/NSBezierPath+SDRoundedCorners.m"; sourceTree = ""; }; + 3501E850F701BA678364B4AFBF1C8417 /* SDImageAPNGCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAPNGCoder.h; path = SDWebImage/Core/SDImageAPNGCoder.h; sourceTree = ""; }; + 353BBBDE951248D62CFDF267ACFAD0A7 /* FLAnimatedImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FLAnimatedImage-prefix.pch"; sourceTree = ""; }; + 35B67A3C0E25A19B996355E03ED4A3CD /* SDWebImageDownloaderOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderOperation.m; path = SDWebImage/Core/SDWebImageDownloaderOperation.m; sourceTree = ""; }; 35BFA337F4E1FDE67C773A82CCDFD6DA /* Pods-keyBoard.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-keyBoard.debug.xcconfig"; sourceTree = ""; }; - 35DC020855ECA02C5E2568299594E9C0 /* UIImage+MultiFormat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+MultiFormat.h"; path = "SDWebImage/Core/UIImage+MultiFormat.h"; sourceTree = ""; }; - 360A9029323DBF687A82BCD2C22F386C /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = Sources/PrivacyInfo.xcprivacy; sourceTree = ""; }; - 36457C61634F1414F6DDF4C701ABF567 /* LKS_TraceManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LKS_TraceManager.m; path = Src/Main/Server/Others/LKS_TraceManager.m; sourceTree = ""; }; - 3653F678D1C9DBE34F6262A65263C642 /* SDGraphicsImageRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDGraphicsImageRenderer.h; path = SDWebImage/Core/SDGraphicsImageRenderer.h; sourceTree = ""; }; - 367088C36E8BF33957802AE4A6256CC1 /* MJPropertyKey.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJPropertyKey.h; path = MJExtension/MJPropertyKey.h; sourceTree = ""; }; - 367DF77D41DE010B9FA86137928C7C44 /* MJRefreshNormalHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshNormalHeader.h; path = MJRefresh/Custom/Header/MJRefreshNormalHeader.h; sourceTree = ""; }; - 368AF39857A6659131D7CD15698E6867 /* UIColor+SDHexString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIColor+SDHexString.h"; path = "SDWebImage/Private/UIColor+SDHexString.h"; sourceTree = ""; }; - 36A28302FD0C37C0A56E64EA97977A8E /* FLAnimatedImage.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FLAnimatedImage.debug.xcconfig; sourceTree = ""; }; - 3753072CB1EE987F4CDC7E86385B9A99 /* UIViewController+LookinServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIViewController+LookinServer.h"; path = "Src/Main/Server/Category/UIViewController+LookinServer.h"; sourceTree = ""; }; - 3791DA4B477B236E8816C08DD01E3B45 /* UITextView+LookinServer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UITextView+LookinServer.m"; path = "Src/Main/Server/Category/UITextView+LookinServer.m"; sourceTree = ""; }; - 3875C6FE72ED2368D3701E9901F883B7 /* JXCategoryIndicatorCellModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorCellModel.m; path = Sources/Indicator/JXCategoryIndicatorCellModel.m; sourceTree = ""; }; - 38A98EA0745C9E839DCFD56B22BF1256 /* LKS_Helper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LKS_Helper.m; path = Src/Main/Server/Others/LKS_Helper.m; sourceTree = ""; }; - 38E107BE978505B98A952E3564F532AA /* LKS_CustomAttrSetterManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LKS_CustomAttrSetterManager.h; path = Src/Main/Server/Others/LKS_CustomAttrSetterManager.h; sourceTree = ""; }; - 390647665D633FF246584D1E27162F0D /* SDImageIOAnimatedCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOAnimatedCoder.h; path = SDWebImage/Core/SDImageIOAnimatedCoder.h; sourceTree = ""; }; + 36BEAD7507B8644D14D46C852A6EF20B /* UIView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+WebCache.h"; path = "SDWebImage/Core/UIView+WebCache.h"; sourceTree = ""; }; + 36CBA5AB35EE7DE7B4A5CDBAC4BE20A8 /* AFImageDownloader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFImageDownloader.h; path = "UIKit+AFNetworking/AFImageDownloader.h"; sourceTree = ""; }; + 371A20C759D3E78183B0BC7EA626FA2D /* LookinObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinObject.h; path = Src/Main/Shared/LookinObject.h; sourceTree = ""; }; + 373258A2F6DFCE8ADD1C1D42DE5EF5D3 /* UIImage+MultiFormat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+MultiFormat.m"; path = "SDWebImage/Core/UIImage+MultiFormat.m"; sourceTree = ""; }; + 374CEB5E4CAC5B1889E4B3A57B47546E /* LYEmptyView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LYEmptyView.h; path = LYEmptyView/LYEmptyView.h; sourceTree = ""; }; + 37977014CE5B8A9E93F1EC56C3AC6D52 /* SDAnimatedImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImageView.h; path = SDWebImage/Core/SDAnimatedImageView.h; sourceTree = ""; }; + 37C2A3B1C753D4547646108720BF5321 /* JXCategoryIndicatorComponentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorComponentView.h; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorComponentView.h; sourceTree = ""; }; + 38C2193309DE8B485EA6F0495C08B115 /* UIView+MJExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+MJExtension.h"; path = "MJRefresh/UIView+MJExtension.h"; sourceTree = ""; }; + 38F21B02ED02115E613C152CE563BD5A /* LookinAutoLayoutConstraint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinAutoLayoutConstraint.m; path = Src/Main/Shared/LookinAutoLayoutConstraint.m; sourceTree = ""; }; + 39267406AD82F75ABB872A20BE14F010 /* LYEmptyView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LYEmptyView.m; path = LYEmptyView/LYEmptyView.m; sourceTree = ""; }; + 39592D3DD29808CC34F5BDE8FFAD64E6 /* LookinAttributeModification.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinAttributeModification.m; path = Src/Main/Shared/LookinAttributeModification.m; sourceTree = ""; }; 399102B94B534EB49EE0E5512D150CA8 /* LSTPopView */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = LSTPopView; path = LSTPopView.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 3A2E4F46AFE1B8413F8C1C81323B5831 /* JXPagerSmoothView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXPagerSmoothView.h; path = Sources/JXPagerView/JXPagerSmoothView.h; sourceTree = ""; }; - 3A8DC30D2C209AB66D8E812915E6F319 /* NSArray+MASShorthandAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSArray+MASShorthandAdditions.h"; path = "Masonry/NSArray+MASShorthandAdditions.h"; sourceTree = ""; }; - 3A8EB0FE66AD3E48C10CDD802521D146 /* MJRefreshBackGifFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshBackGifFooter.m; path = MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.m; sourceTree = ""; }; - 3A94C1FE25186BE811E6EC878BFA019B /* MASConstraint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASConstraint.m; path = Masonry/MASConstraint.m; sourceTree = ""; }; - 3B26E1BE3EBF37131688F5656289ACA2 /* NSObject+LookinServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+LookinServer.h"; path = "Src/Main/Server/Category/NSObject+LookinServer.h"; sourceTree = ""; }; - 3B2ACD52F18B25CE1FB40A0F1DF81B4A /* LKS_CustomAttrGroupsMaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LKS_CustomAttrGroupsMaker.h; path = Src/Main/Server/Others/LKS_CustomAttrGroupsMaker.h; sourceTree = ""; }; - 3B3FF5D113848A5A9AC244C579FF1441 /* JXCategoryIndicatorCellModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorCellModel.h; path = Sources/Indicator/JXCategoryIndicatorCellModel.h; sourceTree = ""; }; - 3B56A01456E5166288620482B2A2180C /* AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFNetworking.h; path = AFNetworking/AFNetworking.h; sourceTree = ""; }; - 3BC6BE1672FC4A4AA70F4CBD7E23C808 /* JXPagerListContainerView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXPagerListContainerView.m; path = Sources/JXPagerView/JXPagerListContainerView.m; sourceTree = ""; }; + 39D7BCC784A30383722D127896FE591E /* JXPagingView.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JXPagingView.debug.xcconfig; sourceTree = ""; }; + 39D939E1825294C23871CD06F0A1E6A2 /* JXCategoryBaseView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryBaseView.m; path = Sources/Base/JXCategoryBaseView.m; sourceTree = ""; }; + 3A10B1AFB4B6959F4A11AB1B1BC4A437 /* HWPanModalPresentable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HWPanModalPresentable.h; path = Sources/Presentable/HWPanModalPresentable.h; sourceTree = ""; }; + 3A1C13D0C9F5E8ED93D0398C379507C1 /* LookinHierarchyFile.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinHierarchyFile.m; path = Src/Main/Shared/LookinHierarchyFile.m; sourceTree = ""; }; + 3A9477BE731926B610D9B847EF5B7347 /* NSObject+LookinServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+LookinServer.h"; path = "Src/Main/Server/Category/NSObject+LookinServer.h"; sourceTree = ""; }; + 3AF0216318F4C1EBD4207012E5E70EB1 /* JXCategoryDotCellModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryDotCellModel.m; path = Sources/Dot/JXCategoryDotCellModel.m; sourceTree = ""; }; + 3B250EFB659FBBBBA5D680859085344D /* JXPagerListRefreshView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXPagerListRefreshView.h; path = Sources/JXPagerView/JXPagerListRefreshView.h; sourceTree = ""; }; + 3B812F8DDDC6CC3E3ACDB1D17716E70C /* JXCategoryTitleImageCellModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryTitleImageCellModel.h; path = Sources/TitleImage/JXCategoryTitleImageCellModel.h; sourceTree = ""; }; + 3C530EFDCDFFC732A409BADBE3F0D068 /* MBProgressHUD.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = MBProgressHUD.modulemap; sourceTree = ""; }; + 3C71B9877A51B54673C7FFC0C3276863 /* MJRefreshConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshConfig.m; path = MJRefresh/MJRefreshConfig.m; sourceTree = ""; }; + 3CA454A209E71894BC9366B10B95D086 /* LKS_Helper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LKS_Helper.h; path = Src/Main/Server/Others/LKS_Helper.h; sourceTree = ""; }; 3CB13D51E717D347023EEB57263E3072 /* Pods-CustomKeyboard-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-CustomKeyboard-dummy.m"; sourceTree = ""; }; - 3D1EF86D80B6333688465CCC41BA33F7 /* SDImageCodersManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCodersManager.m; path = SDWebImage/Core/SDImageCodersManager.m; sourceTree = ""; }; - 3D3112C49688EF3F713F0D64A22E6E66 /* LKS_HierarchyDisplayItemsMaker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LKS_HierarchyDisplayItemsMaker.m; path = Src/Main/Server/Others/LKS_HierarchyDisplayItemsMaker.m; sourceTree = ""; }; - 3DAB18271BAF2DB3E49BCAF049FC4F01 /* HWPanModalInteractiveAnimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HWPanModalInteractiveAnimator.h; path = Sources/Animator/HWPanModalInteractiveAnimator.h; sourceTree = ""; }; - 3E42525F0D8B91406B2C7015E3E52B29 /* MJRefreshBackNormalFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshBackNormalFooter.h; path = MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.h; sourceTree = ""; }; - 3E8FEF4AED255508CB8E745D200EDE89 /* ResourceBundle-JXCategoryView-JXCategoryView-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-JXCategoryView-JXCategoryView-Info.plist"; sourceTree = ""; }; - 3EA0FACBE46F43AB7A99266BBBF20510 /* UIImage+Metadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Metadata.h"; path = "SDWebImage/Core/UIImage+Metadata.h"; sourceTree = ""; }; - 3F5F8D57BABE5A9AD2D0BC75B55D1A52 /* LSTTimer-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "LSTTimer-umbrella.h"; sourceTree = ""; }; - 3F77AB571A5252972C84B67134918B5F /* UIScrollView+EmptyDataSet.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIScrollView+EmptyDataSet.m"; path = "Source/UIScrollView+EmptyDataSet.m"; sourceTree = ""; }; - 3FAF0BE8296496D28F5C6AA6974B39E8 /* MJRefreshAutoGifFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshAutoGifFooter.h; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.h; sourceTree = ""; }; - 401F0F0AAEEDDA40C2D25DB817C9B5C6 /* MJRefreshAutoStateFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshAutoStateFooter.m; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.m; sourceTree = ""; }; - 402826B784C1198142F399AD251F2A3A /* SDWebImageDownloader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloader.h; path = SDWebImage/Core/SDWebImageDownloader.h; sourceTree = ""; }; - 40380EFCFB5E34558C193A723D077BE3 /* UITableView+LookinServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UITableView+LookinServer.h"; path = "Src/Main/Server/Category/UITableView+LookinServer.h"; sourceTree = ""; }; - 41B90877BBAECA72C2F67A5E39E1E87A /* SDFileAttributeHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDFileAttributeHelper.m; path = SDWebImage/Private/SDFileAttributeHelper.m; sourceTree = ""; }; - 41EF7420DD5FC6E4D1134632895868F3 /* LookinAttrIdentifiers.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinAttrIdentifiers.m; path = Src/Main/Shared/LookinAttrIdentifiers.m; sourceTree = ""; }; - 42EF67A85226C8C14C983E81C71F392D /* MJRefreshConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshConfig.m; path = MJRefresh/MJRefreshConfig.m; sourceTree = ""; }; - 42F934D080B2CC7F2CD859E2B472A585 /* HWPanModalAnimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HWPanModalAnimator.h; path = Sources/Animator/HWPanModalAnimator.h; sourceTree = ""; }; - 433A3E0D94E768912FBBE36F7C961678 /* UIScrollView+MJExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIScrollView+MJExtension.m"; path = "MJRefresh/UIScrollView+MJExtension.m"; sourceTree = ""; }; + 3D72A1C48CB238B4D5F50BA925DEDEAE /* UIColor+JXAdd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIColor+JXAdd.h"; path = "Sources/Common/UIColor+JXAdd.h"; sourceTree = ""; }; + 3D8A828331C79742A41F54C2050C90A8 /* LookinAppInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinAppInfo.h; path = Src/Main/Shared/LookinAppInfo.h; sourceTree = ""; }; + 3DDFB85C3FF1851267A20FACB64B4497 /* LookinCustomDisplayItemInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinCustomDisplayItemInfo.h; path = Src/Main/Shared/LookinCustomDisplayItemInfo.h; sourceTree = ""; }; + 3DF983F1377AD739C3DF33AE51632FCF /* Bugly.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Bugly.debug.xcconfig; sourceTree = ""; }; + 3E05D85B85A84A7D628539AD042EC841 /* Lookin_PTProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Lookin_PTProtocol.h; path = Src/Main/Shared/Peertalk/Lookin_PTProtocol.h; sourceTree = ""; }; + 3E34DAE4904CE87FBB70688EA36DF9D3 /* NSArray+MASAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSArray+MASAdditions.m"; path = "Masonry/NSArray+MASAdditions.m"; sourceTree = ""; }; + 3ED4F75E10F9C3D76FF139C89BBB8154 /* SDWebImageDownloaderDecryptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderDecryptor.h; path = SDWebImage/Core/SDWebImageDownloaderDecryptor.h; sourceTree = ""; }; + 3F0DA836C065C821DDDE100A36B1C087 /* HWBackgroundConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = HWBackgroundConfig.m; path = Sources/View/HWBackgroundConfig.m; sourceTree = ""; }; + 402736588AC9D07AA589F2943BAE3C89 /* SDCallbackQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDCallbackQueue.h; path = SDWebImage/Core/SDCallbackQueue.h; sourceTree = ""; }; + 404BBFC3B5A2ADAEF4E188881B357111 /* MASConstraintMaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASConstraintMaker.h; path = Masonry/MASConstraintMaker.h; sourceTree = ""; }; + 406C8D3FB686F0A24482B5EC0964787A /* DZNEmptyDataSet.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DZNEmptyDataSet.modulemap; sourceTree = ""; }; + 407D327724ADF96791DFD9B922AA254A /* LookinDisplayItemDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinDisplayItemDetail.h; path = Src/Main/Shared/LookinDisplayItemDetail.h; sourceTree = ""; }; + 412FD8B68949345873B82E2D0C864C85 /* NSBundle+MJRefresh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSBundle+MJRefresh.h"; path = "MJRefresh/NSBundle+MJRefresh.h"; sourceTree = ""; }; + 41B61F60FDADCD1988F2A5F1B93F6FB0 /* AFImageDownloader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFImageDownloader.m; path = "UIKit+AFNetworking/AFImageDownloader.m"; sourceTree = ""; }; + 4201C2CD51C00E5AC0EC45DC41B32695 /* HWPanModal.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = HWPanModal.debug.xcconfig; sourceTree = ""; }; + 4228538168305A12A3465600D6FA372A /* AFURLRequestSerialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFURLRequestSerialization.h; path = AFNetworking/AFURLRequestSerialization.h; sourceTree = ""; }; + 429004AF40A48DE835234068590E6A94 /* UIImage+Metadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Metadata.h"; path = "SDWebImage/Core/UIImage+Metadata.h"; sourceTree = ""; }; + 438B056E0DAE53D40DB4894FF36879AF /* LookinServer.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = LookinServer.release.xcconfig; sourceTree = ""; }; + 43901AAA2BB40AE5F534540676833E30 /* UIView+WebCacheOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+WebCacheOperation.m"; path = "SDWebImage/Core/UIView+WebCacheOperation.m"; sourceTree = ""; }; + 43BA7B9A75BE654B8242649314595C2D /* JXCategoryTitleVerticalZoomView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryTitleVerticalZoomView.m; path = Sources/VerticalZoomTitle/JXCategoryTitleVerticalZoomView.m; sourceTree = ""; }; + 43E163147E40F868F458CD979D77C4E4 /* MJExtension-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "MJExtension-dummy.m"; sourceTree = ""; }; 43EAAD2AB7E6B407E80E95F643F93D22 /* MJExtension-MJExtension */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "MJExtension-MJExtension"; path = MJExtension.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 43F4AA149B8B7307ED5DA363EBC93DBF /* MJRefresh.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = MJRefresh.bundle; path = MJRefresh/MJRefresh.bundle; sourceTree = ""; }; - 44ABB514E2C8BB7AA8881283E1F0FE47 /* LKS_ExportManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LKS_ExportManager.m; path = Src/Main/Server/Others/LKS_ExportManager.m; sourceTree = ""; }; - 44CB5B4F2C2351C8F32C675C94C2EAC0 /* JXCategoryNumberView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryNumberView.m; path = Sources/Number/JXCategoryNumberView.m; sourceTree = ""; }; - 45505B1DFA133379CEE6DD6D8148013D /* SDDiskCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDiskCache.m; path = SDWebImage/Core/SDDiskCache.m; sourceTree = ""; }; - 4561971E2CF7A1F1B00AC6091B3448DE /* NSData+ImageContentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSData+ImageContentType.h"; path = "SDWebImage/Core/NSData+ImageContentType.h"; sourceTree = ""; }; - 45880427FEDFE00B81EA46DB6F5AFD52 /* SDWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWeakProxy.h; path = SDWebImage/Private/SDWeakProxy.h; sourceTree = ""; }; - 46461C91DF1586852C84C6489E5ED4BA /* SDWebImage.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = SDWebImage.modulemap; sourceTree = ""; }; - 4688EE09ADCEE19CD4BDF95833F7E81D /* MJPropertyType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJPropertyType.m; path = MJExtension/MJPropertyType.m; sourceTree = ""; }; - 471A02E298FA363A6051045C83C8BE05 /* SDImageCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCoder.h; path = SDWebImage/Core/SDImageCoder.h; sourceTree = ""; }; - 47655EC4466A20F4BEC0C76B8F4C5440 /* SDWebImageDownloaderConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderConfig.m; path = SDWebImage/Core/SDWebImageDownloaderConfig.m; sourceTree = ""; }; - 47A777C7602E23E11AE500103D52A253 /* MJExtensionConst.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJExtensionConst.m; path = MJExtension/MJExtensionConst.m; sourceTree = ""; }; - 47F474CA83A8EC338136568BDBFF8343 /* UIView+MJExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+MJExtension.h"; path = "MJRefresh/UIView+MJExtension.h"; sourceTree = ""; }; - 491DFACE04BF80FD0F37C4ECFE908522 /* SDCallbackQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDCallbackQueue.h; path = SDWebImage/Core/SDCallbackQueue.h; sourceTree = ""; }; - 4A2FC8CB1CFEB2812A4E5E466940232C /* LKS_ObjectRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LKS_ObjectRegistry.h; path = Src/Main/Server/Others/LKS_ObjectRegistry.h; sourceTree = ""; }; - 4A970B89D7ECEFF994ACF22A5493E001 /* NSButton+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSButton+WebCache.m"; path = "SDWebImage/Core/NSButton+WebCache.m"; sourceTree = ""; }; - 4A984C0F36AC5CCB478D87C1F7E4019D /* AFAutoPurgingImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFAutoPurgingImageCache.m; path = "UIKit+AFNetworking/AFAutoPurgingImageCache.m"; sourceTree = ""; }; - 4AA7B1CA514C2D6FAA50ACF865AF4203 /* JXCategoryView-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "JXCategoryView-Info.plist"; sourceTree = ""; }; - 4AD6EDFD2A6C9CC51CFC6A4BAA9C72A9 /* UIKit+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIKit+AFNetworking.h"; path = "UIKit+AFNetworking/UIKit+AFNetworking.h"; sourceTree = ""; }; - 4B0139E3193D3960F1A46D73064CA34A /* JXCategoryIndicatorComponentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorComponentView.h; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorComponentView.h; sourceTree = ""; }; - 4B98EB1E5D5490C1C17C90E124262C80 /* HWPanModalPresentationUpdateProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HWPanModalPresentationUpdateProtocol.h; path = Sources/Presentable/HWPanModalPresentationUpdateProtocol.h; sourceTree = ""; }; - 4BC6F317480167EA6C97C3ED771D57CA /* UIBlurEffect+LookinServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIBlurEffect+LookinServer.h"; path = "Src/Main/Server/Category/UIBlurEffect+LookinServer.h"; sourceTree = ""; }; - 4C4CB24406FFC32C73C615D12F0532C7 /* UIButton+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIButton+WebCache.h"; path = "SDWebImage/Core/UIButton+WebCache.h"; sourceTree = ""; }; - 4CF942497E18FEE75DD2CDC6779A790A /* SDDeviceHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDeviceHelper.m; path = SDWebImage/Private/SDDeviceHelper.m; sourceTree = ""; }; - 4D000260D6BB658E0BB519087E88F883 /* UIRefreshControl+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIRefreshControl+AFNetworking.h"; path = "UIKit+AFNetworking/UIRefreshControl+AFNetworking.h"; sourceTree = ""; }; - 4D4A62A4549AC17B0296FF7D29E15454 /* MJExtension-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "MJExtension-dummy.m"; sourceTree = ""; }; - 4D93DBFF5810549335063D430FB33721 /* View+MASShorthandAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "View+MASShorthandAdditions.h"; path = "Masonry/View+MASShorthandAdditions.h"; sourceTree = ""; }; - 4DE32E1B12FEE2A9EAE1F5A67697D6E8 /* HWPanIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HWPanIndicatorView.h; path = Sources/View/HWPanIndicatorView.h; sourceTree = ""; }; - 4E2D9F4632DB7036D701CB57007800AB /* MJPropertyType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJPropertyType.h; path = MJExtension/MJPropertyType.h; sourceTree = ""; }; - 4E5F2B584A65C9246E3E8A7A856FF44D /* JXCategoryIndicatorParamsModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorParamsModel.h; path = Sources/Common/JXCategoryIndicatorParamsModel.h; sourceTree = ""; }; - 4ED1A3436209E7EBF3356CEC094C7391 /* LookinConnectionResponseAttachment.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinConnectionResponseAttachment.m; path = Src/Main/Shared/LookinConnectionResponseAttachment.m; sourceTree = ""; }; - 4F81509596D525489E9AA55CE4C0B4C1 /* MJRefreshComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshComponent.m; path = MJRefresh/Base/MJRefreshComponent.m; sourceTree = ""; }; - 50BCF4AA1A75105CC04AA446B0DB9B40 /* JXCategoryDotView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryDotView.h; path = Sources/Dot/JXCategoryDotView.h; sourceTree = ""; }; - 5107F5A871AC7AEDAD8C78C1F1AB8E40 /* UIImage+MemoryCacheCost.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+MemoryCacheCost.m"; path = "SDWebImage/Core/UIImage+MemoryCacheCost.m"; sourceTree = ""; }; - 5128E7CF3F35BE25186575F63661EEF6 /* MJRefreshTrailer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshTrailer.m; path = MJRefresh/Base/MJRefreshTrailer.m; sourceTree = ""; }; - 51E7542749774862B8EB9AAB7010F1AA /* JXCategoryBaseCellModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryBaseCellModel.m; path = Sources/Base/JXCategoryBaseCellModel.m; sourceTree = ""; }; + 449CCE39A5A9EA789B9A284113D1025E /* SDImageFramePool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageFramePool.h; path = SDWebImage/Private/SDImageFramePool.h; sourceTree = ""; }; + 44B0B0F109E74E6F92B6497967BCE536 /* LookinCustomDisplayItemInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinCustomDisplayItemInfo.m; path = Src/Main/Shared/LookinCustomDisplayItemInfo.m; sourceTree = ""; }; + 452754C8CDFE17EC42C563B4B6E1F69A /* SDImageFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageFrame.m; path = SDWebImage/Core/SDImageFrame.m; sourceTree = ""; }; + 4531FCCC5DE7D00D6F827809F7CD4289 /* MJExtension-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MJExtension-prefix.pch"; sourceTree = ""; }; + 453FB14441528B4AE2CF3592D5874C54 /* HWPanContainerView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = HWPanContainerView.m; path = Sources/View/HWPanContainerView.m; sourceTree = ""; }; + 45E71D8592674E85D7D5DA4831A592BE /* JXCategoryBaseView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryBaseView.h; path = Sources/Base/JXCategoryBaseView.h; sourceTree = ""; }; + 45FCB10C5ADD911EC17F1E6BAAFE9892 /* UIScrollView+EmptyDataSet.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIScrollView+EmptyDataSet.m"; path = "Source/UIScrollView+EmptyDataSet.m"; sourceTree = ""; }; + 469576EF612EDF18C057B4FB1E423192 /* LookinServer-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "LookinServer-umbrella.h"; sourceTree = ""; }; + 46F71F9F19999F6D4F186847FA3CC8F7 /* SDGraphicsImageRenderer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDGraphicsImageRenderer.m; path = SDWebImage/Core/SDGraphicsImageRenderer.m; sourceTree = ""; }; + 47A97040129EEE8B96AEEA0A9B73DA45 /* HWPanModalInteractiveAnimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HWPanModalInteractiveAnimator.h; path = Sources/Animator/HWPanModalInteractiveAnimator.h; sourceTree = ""; }; + 4883D2BC668CDDE38C319AC414885077 /* AFSecurityPolicy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFSecurityPolicy.m; path = AFNetworking/AFSecurityPolicy.m; sourceTree = ""; }; + 48A816CF0BA23EA39A514E31ED98C5D3 /* UIRefreshControl+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIRefreshControl+AFNetworking.h"; path = "UIKit+AFNetworking/UIRefreshControl+AFNetworking.h"; sourceTree = ""; }; + 48E1ED2BAC3C5C1B077AAB67F3325D4E /* DZNEmptyDataSet.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DZNEmptyDataSet.debug.xcconfig; sourceTree = ""; }; + 4A15AB0AB6FCF1589E2A6CEDC3CF0B95 /* HWPanIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HWPanIndicatorView.h; path = Sources/View/HWPanIndicatorView.h; sourceTree = ""; }; + 4A2BDE1ACE119E645C72F92B4CCAECF4 /* NSObject+Lookin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+Lookin.h"; path = "Src/Main/Shared/Category/NSObject+Lookin.h"; sourceTree = ""; }; + 4A4AE7A504C340AE8EE98F70C318D63C /* Masonry.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Masonry.release.xcconfig; sourceTree = ""; }; + 4AAF4EE016C54A7F264F9B8FBB0853C8 /* NSArray+Lookin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSArray+Lookin.m"; path = "Src/Main/Shared/Category/NSArray+Lookin.m"; sourceTree = ""; }; + 4B2681504ECC11F7B0563ECF0A1FDDFA /* Color+Lookin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "Color+Lookin.m"; path = "Src/Main/Shared/Category/Color+Lookin.m"; sourceTree = ""; }; + 4B6F5F5F32C55F6B9F4E87EC57A0A074 /* Lookin_PTProtocol.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Lookin_PTProtocol.m; path = Src/Main/Shared/Peertalk/Lookin_PTProtocol.m; sourceTree = ""; }; + 4BC98580A0BA844CDD661F01812A35C7 /* SDWebImageDownloaderResponseModifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderResponseModifier.m; path = SDWebImage/Core/SDWebImageDownloaderResponseModifier.m; sourceTree = ""; }; + 4C354F545C0CC91C4033DC0D648B3819 /* AFSecurityPolicy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFSecurityPolicy.h; path = AFNetworking/AFSecurityPolicy.h; sourceTree = ""; }; + 4C7F47A09BE728487DF546FE00CA555E /* UIViewController+LookinServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIViewController+LookinServer.h"; path = "Src/Main/Server/Category/UIViewController+LookinServer.h"; sourceTree = ""; }; + 4D2B4D757199E020DE43661B60EB2819 /* LKS_Helper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LKS_Helper.m; path = Src/Main/Server/Others/LKS_Helper.m; sourceTree = ""; }; + 4EBFFAE4CE0471C78DB70755CFCC7609 /* HWPanModalPresentationDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HWPanModalPresentationDelegate.h; path = Sources/Delegate/HWPanModalPresentationDelegate.h; sourceTree = ""; }; + 4F8D39C76EB84B28054B453882C78E41 /* LookinAttributesSection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinAttributesSection.m; path = Src/Main/Shared/LookinAttributesSection.m; sourceTree = ""; }; + 4F973225F70967D6C01DF18ABCACA3C4 /* HWPanModal-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "HWPanModal-prefix.pch"; sourceTree = ""; }; + 5048CCD1406058B50480C383463B3C39 /* LYEmptyView.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = LYEmptyView.debug.xcconfig; sourceTree = ""; }; + 5105F32D29B4C0D80B780EE2DF6D2898 /* JXCategoryTitleView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryTitleView.h; path = Sources/Title/JXCategoryTitleView.h; sourceTree = ""; }; + 513C1A2EE22268DD51EB02AE24E3B579 /* HWPanModalShadow.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = HWPanModalShadow.m; path = Sources/View/HWPanModalShadow.m; sourceTree = ""; }; + 517D8EDC9F4BA34E4E4060247125B56D /* UIImage+MultiFormat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+MultiFormat.h"; path = "SDWebImage/Core/UIImage+MultiFormat.h"; sourceTree = ""; }; + 517EACA3BDCA2E1CB5B954656D4B9F02 /* LYEmptyView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "LYEmptyView-prefix.pch"; sourceTree = ""; }; + 51AB8F5FA4517AC80D7763B2894462EB /* LKS_EventHandlerMaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LKS_EventHandlerMaker.h; path = Src/Main/Server/Others/LKS_EventHandlerMaker.h; sourceTree = ""; }; + 524557CADCF9674C470A7B1764594AEC /* JXCategoryTitleImageCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryTitleImageCell.h; path = Sources/TitleImage/JXCategoryTitleImageCell.h; sourceTree = ""; }; + 526BF014AFB62CD2E2E5312B573388BC /* JXCategoryView.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = JXCategoryView.modulemap; sourceTree = ""; }; + 52AF8374431A1EA8420BA1E29139131E /* LKS_TraceManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LKS_TraceManager.h; path = Src/Main/Server/Others/LKS_TraceManager.h; sourceTree = ""; }; + 52FF07E10C8C0B816653B6836CCFFD04 /* LKS_CustomAttrGroupsMaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LKS_CustomAttrGroupsMaker.h; path = Src/Main/Server/Others/LKS_CustomAttrGroupsMaker.h; sourceTree = ""; }; + 53155231B4EB5B29274A0546D6F39B91 /* NSButton+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSButton+WebCache.m"; path = "SDWebImage/Core/NSButton+WebCache.m"; sourceTree = ""; }; 5327DD01C6533D102D66E1636B3827F3 /* Pods-keyBoard-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-keyBoard-acknowledgements.plist"; sourceTree = ""; }; - 5409A465D5BE745D21B9F8847B798BD5 /* SDWebImage-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SDWebImage-umbrella.h"; sourceTree = ""; }; - 54CBDA1EBC8A896E6DB3A15D5332DB1C /* JXCategoryTitleVerticalZoomCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryTitleVerticalZoomCell.h; path = Sources/VerticalZoomTitle/JXCategoryTitleVerticalZoomCell.h; sourceTree = ""; }; - 552D2F14AF7B393E80A67680A66A34D4 /* HWPanModalPresentationAnimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HWPanModalPresentationAnimator.h; path = Sources/Animator/HWPanModalPresentationAnimator.h; sourceTree = ""; }; - 55A76B2979ED12495977612719BE47A2 /* MJRefreshConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshConst.h; path = MJRefresh/MJRefreshConst.h; sourceTree = ""; }; - 55E89941A6B7A73D479A0770A9C96C14 /* AFURLSessionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFURLSessionManager.m; path = AFNetworking/AFURLSessionManager.m; sourceTree = ""; }; - 56642F6C221107F2F8D033758EEB482A /* Masonry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Masonry.h; path = Masonry/Masonry.h; sourceTree = ""; }; - 567674319F769F7E8B80920BBBD444B6 /* LKS_CustomAttrSetterManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LKS_CustomAttrSetterManager.m; path = Src/Main/Server/Others/LKS_CustomAttrSetterManager.m; sourceTree = ""; }; - 5716AF79F54782358457FBB452B73975 /* SDWebImageDownloaderDecryptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderDecryptor.h; path = SDWebImage/Core/SDWebImageDownloaderDecryptor.h; sourceTree = ""; }; - 5731585BDD8DA229201CF537357BCA56 /* HWPanModalHeight.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HWPanModalHeight.h; path = Sources/Presentable/HWPanModalHeight.h; sourceTree = ""; }; - 5734E5CBE9E63CD37E71A375796587B5 /* UIImage+MultiFormat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+MultiFormat.m"; path = "SDWebImage/Core/UIImage+MultiFormat.m"; sourceTree = ""; }; - 57D32F597DFAC06B9198FA1F48D2995D /* LookinAttributesGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinAttributesGroup.h; path = Src/Main/Shared/LookinAttributesGroup.h; sourceTree = ""; }; - 580E2C96AABF74B3FD0C199D09864253 /* MJRefresh.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MJRefresh.release.xcconfig; sourceTree = ""; }; - 595E9691CC1A487C44431E51893A1D01 /* LookinConnectionAttachment.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinConnectionAttachment.m; path = Src/Main/Shared/LookinConnectionAttachment.m; sourceTree = ""; }; - 5A6A16B78780399804F5DD15816ADE2B /* SDmetamacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDmetamacros.h; path = SDWebImage/Private/SDmetamacros.h; sourceTree = ""; }; - 5AEB6DDDE2B74ABEB1D68CE037D784DC /* HWPresentingVCAnimatedTransitioning.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HWPresentingVCAnimatedTransitioning.h; path = Sources/Animator/HWPresentingVCAnimatedTransitioning.h; sourceTree = ""; }; - 5B4EF64EB8018D8E9CE7C8CB5FACCD5B /* NSString+MJExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSString+MJExtension.m"; path = "MJExtension/NSString+MJExtension.m"; sourceTree = ""; }; - 5B609960A71B1FE2AB814B679D9E7609 /* SDAnimatedImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImage.m; path = SDWebImage/Core/SDAnimatedImage.m; sourceTree = ""; }; - 5C519E29CD93815AEE0C119E2109F0A2 /* UIButton+AFNetworking.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIButton+AFNetworking.m"; path = "UIKit+AFNetworking/UIButton+AFNetworking.m"; sourceTree = ""; }; - 5C560A21071D707C98AE6CD75AED8BFD /* UIImageView+LookinServer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+LookinServer.m"; path = "Src/Main/Server/Category/UIImageView+LookinServer.m"; sourceTree = ""; }; - 5DA1EEEB5386D6FCA6523BE43601C382 /* LookinAutoLayoutConstraint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinAutoLayoutConstraint.m; path = Src/Main/Shared/LookinAutoLayoutConstraint.m; sourceTree = ""; }; + 541552D5AA99C6DF3406BD050E1467DB /* AFNetworking-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "AFNetworking-Info.plist"; sourceTree = ""; }; + 55488AFE93BF97340EF80D0D6C1E2CA0 /* SDImageHEICCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageHEICCoder.h; path = SDWebImage/Core/SDImageHEICCoder.h; sourceTree = ""; }; + 5633AC0E53EEE3085AFE9CB101E6C0CF /* JXCategoryNumberCellModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryNumberCellModel.m; path = Sources/Number/JXCategoryNumberCellModel.m; sourceTree = ""; }; + 568F43CF567335FABEC4825ED4776B19 /* HWPanModalShadow.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HWPanModalShadow.h; path = Sources/View/HWPanModalShadow.h; sourceTree = ""; }; + 56F54F2E70EF1B4C4CD6CC49471EBF8F /* JXPagingView.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = JXPagingView.modulemap; sourceTree = ""; }; + 570A4EA50A989D93BDAC90837E4F3637 /* JXCategoryImageCellModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryImageCellModel.m; path = Sources/Image/JXCategoryImageCellModel.m; sourceTree = ""; }; + 572433DB55AF2085E2E4D419FCE37679 /* MJRefreshTrailer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshTrailer.h; path = MJRefresh/Base/MJRefreshTrailer.h; sourceTree = ""; }; + 57460121EED43E41D624C46A92FE9E08 /* JXPagerListContainerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXPagerListContainerView.h; path = Sources/JXPagerView/JXPagerListContainerView.h; sourceTree = ""; }; + 57A3558C23C0EFA92D7C80FBF8A6332A /* MJPropertyKey.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJPropertyKey.m; path = MJExtension/MJPropertyKey.m; sourceTree = ""; }; + 57B2E23309380B0E15F50C277205AC0D /* AFNetworking.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AFNetworking.release.xcconfig; sourceTree = ""; }; + 59720B9654BC9C6EC9F2FF79FB3FEB5A /* HWPanModal.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = HWPanModal.modulemap; sourceTree = ""; }; + 5978BDDC6A977C5D014B3D0CC0294043 /* SDWebImage.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = SDWebImage.modulemap; sourceTree = ""; }; + 59CF9D4B8C92110B4BC1E1792E4AAEA5 /* SDWebImageTransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageTransition.h; path = SDWebImage/Core/SDWebImageTransition.h; sourceTree = ""; }; + 5B758502F7753329D591359BA2747831 /* UIProgressView+AFNetworking.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIProgressView+AFNetworking.m"; path = "UIKit+AFNetworking/UIProgressView+AFNetworking.m"; sourceTree = ""; }; + 5B766998FBEAD558A15F06134D5A9335 /* JXCategoryIndicatorTriangleView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorTriangleView.h; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorTriangleView.h; sourceTree = ""; }; + 5C64D6AC35DE27CAD74CA154541AF1C9 /* MJRefreshTrailer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshTrailer.m; path = MJRefresh/Base/MJRefreshTrailer.m; sourceTree = ""; }; + 5C847B3748FF7761203F8DDBD028D651 /* LookinServer-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "LookinServer-prefix.pch"; sourceTree = ""; }; + 5CB6F43E2EFE165260D66B0BFF9A8831 /* JXCategoryImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryImageView.m; path = Sources/Image/JXCategoryImageView.m; sourceTree = ""; }; + 5CB726B6B5C83EAABA9AC89E76D45643 /* DZNEmptyDataSet.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DZNEmptyDataSet.release.xcconfig; sourceTree = ""; }; + 5D2F2FDA20E8BC9884D1E9ED05D83DDF /* UITextField+LookinServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UITextField+LookinServer.h"; path = "Src/Main/Server/Category/UITextField+LookinServer.h"; sourceTree = ""; }; 5DA4577FE3BC4A03751108FFED07B385 /* DZNEmptyDataSet */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = DZNEmptyDataSet; path = DZNEmptyDataSet.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 5DB99CA546DA98A4F2641B6CD4635589 /* LookinServer-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "LookinServer-prefix.pch"; sourceTree = ""; }; - 5DEBBB0A3F6FE82FAB648C476116F8AF /* ResourceBundle-SDWebImage-SDWebImage-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-SDWebImage-SDWebImage-Info.plist"; sourceTree = ""; }; - 5E8666C77464C3B683AB0F8D4DEA6951 /* SDAsyncBlockOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAsyncBlockOperation.m; path = SDWebImage/Private/SDAsyncBlockOperation.m; sourceTree = ""; }; - 5F31829B35104CCEC70FD712B1D4D4E2 /* AFHTTPSessionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFHTTPSessionManager.h; path = AFNetworking/AFHTTPSessionManager.h; sourceTree = ""; }; - 5F35F0E5B188FD04E8E889503DEA5841 /* LSTPopViewProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LSTPopViewProtocol.h; path = LSTPopView/Classes/Code/LSTPopViewProtocol.h; sourceTree = ""; }; - 5F4DF3FAFAFDE0BEC7606CB8D4C2C98B /* LookinServer-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "LookinServer-dummy.m"; sourceTree = ""; }; - 5FD7A1D3C3D9D8E6D3476B7C2093A431 /* HWPanModalShadow.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = HWPanModalShadow.m; path = Sources/View/HWPanModalShadow.m; sourceTree = ""; }; - 603287955CE071E6EBDC96A98AB97750 /* JXPagerListRefreshView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXPagerListRefreshView.m; path = Sources/JXPagerView/JXPagerListRefreshView.m; sourceTree = ""; }; - 60461DAD42E3B1F75AD82553A6C40C64 /* AFNetworkReachabilityManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFNetworkReachabilityManager.h; path = AFNetworking/AFNetworkReachabilityManager.h; sourceTree = ""; }; - 60913F6F25D56976457BFFCFF2C2FADC /* LKS_ConnectionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LKS_ConnectionManager.h; path = Src/Main/Server/Connection/LKS_ConnectionManager.h; sourceTree = ""; }; - 60A68C8A5D160FE046F60DF6C446111D /* JXCategoryTitleVerticalZoomCellModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryTitleVerticalZoomCellModel.h; path = Sources/VerticalZoomTitle/JXCategoryTitleVerticalZoomCellModel.h; sourceTree = ""; }; - 61080F57DD92AB8ABC811791B547090C /* SDImageTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageTransformer.h; path = SDWebImage/Core/SDImageTransformer.h; sourceTree = ""; }; - 6194A35582043CD8893F293567547D72 /* HWDimmedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = HWDimmedView.m; path = Sources/View/HWDimmedView.m; sourceTree = ""; }; - 61A0FA60F5E41A8B04C442FE582DA298 /* SDDisplayLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDisplayLink.m; path = SDWebImage/Private/SDDisplayLink.m; sourceTree = ""; }; - 61A7EBF5198D90CFC9C01A0BA03924D8 /* MJFoundation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJFoundation.m; path = MJExtension/MJFoundation.m; sourceTree = ""; }; - 6260795D5ABBA18F8EFECC2CEB871872 /* HWPanModal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HWPanModal.h; path = Sources/HWPanModal.h; sourceTree = ""; }; - 62C28B0ACA1E8D749FA6E65D70CFCB2D /* HWShoppingCartPresentingAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = HWShoppingCartPresentingAnimation.m; path = Sources/Animator/PresentingVCAnimation/HWShoppingCartPresentingAnimation.m; sourceTree = ""; }; - 62CDFF5EFD0FE66B2DEECF2E904EBEC1 /* JXCategoryIndicatorLineView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorLineView.h; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorLineView.h; sourceTree = ""; }; - 63000DF25140BBB4F03EDFC289F2B197 /* LookinHierarchyFile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinHierarchyFile.h; path = Src/Main/Shared/LookinHierarchyFile.h; sourceTree = ""; }; - 6315771A902975A20B41342DD5234115 /* DZNEmptyDataSet.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DZNEmptyDataSet.debug.xcconfig; sourceTree = ""; }; - 634BE374E20F830B5B77550EFCF89612 /* UIView+WebCacheOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+WebCacheOperation.h"; path = "SDWebImage/Core/UIView+WebCacheOperation.h"; sourceTree = ""; }; - 635235003B3FEDB8B457A8FFF46C69E3 /* SDAnimatedImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImageView.m; path = SDWebImage/Core/SDAnimatedImageView.m; sourceTree = ""; }; + 5DC759BB8D0141E0F064F3BCA7197315 /* MBProgressHUD.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MBProgressHUD.h; sourceTree = ""; }; + 5E5C516541F7C7AC40E990C05307FEEF /* UIImage+Metadata.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Metadata.m"; path = "SDWebImage/Core/UIImage+Metadata.m"; sourceTree = ""; }; + 5E9C6ED309FB0F6481FF6639AA9C417B /* MJRefreshComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshComponent.h; path = MJRefresh/Base/MJRefreshComponent.h; sourceTree = ""; }; + 5EA970CCF2164DC59ECEE9DE06B1BCBA /* SDImageGraphics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageGraphics.h; path = SDWebImage/Core/SDImageGraphics.h; sourceTree = ""; }; + 5EADC8693C7692FBBE4CE165F51B28E9 /* JXCategoryTitleImageCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryTitleImageCell.m; path = Sources/TitleImage/JXCategoryTitleImageCell.m; sourceTree = ""; }; + 5EE479D553AE99C7C893E8B21299B3AC /* JXCategoryIndicatorBackgroundView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorBackgroundView.h; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorBackgroundView.h; sourceTree = ""; }; + 5EF3B546633CC3DB26A173DE519AC3D7 /* SDImageCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCoder.h; path = SDWebImage/Core/SDImageCoder.h; sourceTree = ""; }; + 5EFCD05B81004D2C239BFBEBEE4DC3D5 /* JXCategoryIndicatorCellModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorCellModel.h; path = Sources/Indicator/JXCategoryIndicatorCellModel.h; sourceTree = ""; }; + 60195DBDE404C5ECBC4E710D0F5E50E7 /* UIImage+LookinServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+LookinServer.h"; path = "Src/Main/Server/Category/UIImage+LookinServer.h"; sourceTree = ""; }; + 6021531912761F1BDBFE14A61784B26D /* MJRefreshAutoNormalFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshAutoNormalFooter.m; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.m; sourceTree = ""; }; + 60696FE70F42B1A0CD7B0614C2A2F16C /* UIView+MJExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+MJExtension.m"; path = "MJRefresh/UIView+MJExtension.m"; sourceTree = ""; }; + 607560CCA2D3766D85B5AEE557812D0E /* SDWebImageDownloaderRequestModifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderRequestModifier.m; path = SDWebImage/Core/SDWebImageDownloaderRequestModifier.m; sourceTree = ""; }; + 6099FBA2A3EE3D602B49D82E19FA5875 /* SDWebImagePrefetcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImagePrefetcher.h; path = SDWebImage/Core/SDWebImagePrefetcher.h; sourceTree = ""; }; + 60F9066C601EE11D24D22C170F05AF13 /* LookinWeakContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinWeakContainer.m; path = Src/Main/Shared/LookinWeakContainer.m; sourceTree = ""; }; + 6148399DD529311A930CEF2A2AC2FBD4 /* LookinIvarTrace.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinIvarTrace.m; path = Src/Base/LookinIvarTrace.m; sourceTree = ""; }; + 616DFB551B9EEC8F4D98DBDC3C2543CA /* MJExtension.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = MJExtension.modulemap; sourceTree = ""; }; + 61C0CC288A628CFA871D599D497E2A8E /* SDWebImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SDWebImage-dummy.m"; sourceTree = ""; }; + 61D65BB6AAD351E64F3FE46FACDEED4F /* MJRefreshNormalHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshNormalHeader.m; path = MJRefresh/Custom/Header/MJRefreshNormalHeader.m; sourceTree = ""; }; + 6331F4B8E0F66A8F7B8028B33CF71268 /* LSTTimer.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = LSTTimer.modulemap; sourceTree = ""; }; + 633C3F66E9BA0FD7538C55D5287ED77E /* LSTPopView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LSTPopView.m; path = LSTPopView/Classes/Code/LSTPopView.m; sourceTree = ""; }; + 634119E1E65F912498A262851F72517B /* Bugly.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = Bugly.framework; sourceTree = ""; }; 638488B4F5FF9C67F848A841B1A34765 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.0.sdk/System/Library/Frameworks/CoreGraphics.framework; sourceTree = DEVELOPER_DIR; }; - 639A45B880AEBFE1C16D4A9F3AA3D49C /* JXCategoryTitleImageCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryTitleImageCell.h; path = Sources/TitleImage/JXCategoryTitleImageCell.h; sourceTree = ""; }; + 63A3BD4651AA1DDCB216ABB7FBC3A69E /* MJRefreshConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshConst.h; path = MJRefresh/MJRefreshConst.h; sourceTree = ""; }; 641251D3092FFCF2B6259BF8676A212E /* Pods-CustomKeyboard-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-CustomKeyboard-Info.plist"; sourceTree = ""; }; - 64891F4568CD87380D133019B00B2324 /* SDWebImageCompat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCompat.m; path = SDWebImage/Core/SDWebImageCompat.m; sourceTree = ""; }; - 648C72C63334BCDFD466058863FCDAC9 /* MBProgressHUD.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MBProgressHUD.debug.xcconfig; sourceTree = ""; }; - 6549E81907E05317DA862F329B2D4DDC /* JXCategoryTitleVerticalZoomCellModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryTitleVerticalZoomCellModel.m; path = Sources/VerticalZoomTitle/JXCategoryTitleVerticalZoomCellModel.m; sourceTree = ""; }; - 658F3554D0CFB5BC5E252408F8CD5317 /* JXCategoryIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorView.h; path = Sources/Indicator/JXCategoryIndicatorView.h; sourceTree = ""; }; - 659E6E588427268237F9F2C40D2F6CBD /* LookinAttribute.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinAttribute.h; path = Src/Main/Shared/LookinAttribute.h; sourceTree = ""; }; - 65F97EE1352D7FC02982C03FB1D0FBEB /* JXCategoryBaseCellModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryBaseCellModel.h; path = Sources/Base/JXCategoryBaseCellModel.h; sourceTree = ""; }; - 6645D9E2FCEC9ED435B284460DEDDF89 /* UIImage+ForceDecode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+ForceDecode.m"; path = "SDWebImage/Core/UIImage+ForceDecode.m"; sourceTree = ""; }; - 6736D1FBB305C05AEAB982F817CD80C1 /* LKS_HierarchyDetailsHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LKS_HierarchyDetailsHandler.m; path = Src/Main/Server/Connection/RequestHandler/LKS_HierarchyDetailsHandler.m; sourceTree = ""; }; - 673B42B9F094B1F5ED808EE1BA26FC30 /* CALayer+Lookin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "CALayer+Lookin.m"; path = "Src/Main/Shared/Category/CALayer+Lookin.m"; sourceTree = ""; }; - 6749EA453DC312E08B14CE8AFDB79F3C /* HWPanModalPresentationDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = HWPanModalPresentationDelegate.m; path = Sources/Delegate/HWPanModalPresentationDelegate.m; sourceTree = ""; }; - 6999AA4E4990D39E732B0FABF0CBB3CA /* JXCategoryCollectionView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryCollectionView.h; path = Sources/Common/JXCategoryCollectionView.h; sourceTree = ""; }; - 69AE4F19374B51CFBF6330CC5F82B32A /* Lookin_PTChannel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Lookin_PTChannel.m; path = Src/Main/Shared/Peertalk/Lookin_PTChannel.m; sourceTree = ""; }; - 6A2C1D3548C9E3091DE847DA61A18E5B /* ResourceBundle-MJExtension-MJExtension-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-MJExtension-MJExtension-Info.plist"; sourceTree = ""; }; - 6A34A08E72CC7EE2DEDDC6F48148CD79 /* UIColor+LookinServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIColor+LookinServer.h"; path = "Src/Main/Server/Category/UIColor+LookinServer.h"; sourceTree = ""; }; - 6A632B4F7EA06C55CADB3BF7C49D7860 /* SDWebImageOptionsProcessor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageOptionsProcessor.m; path = SDWebImage/Core/SDWebImageOptionsProcessor.m; sourceTree = ""; }; - 6A91961A508CA556983A4A3F57FB3133 /* MJRefreshTrailer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshTrailer.h; path = MJRefresh/Base/MJRefreshTrailer.h; sourceTree = ""; }; - 6B5C2096D95608EEB566217452868E46 /* UIImage+Metadata.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Metadata.m"; path = "SDWebImage/Core/UIImage+Metadata.m"; sourceTree = ""; }; - 6B857386E2ABDB8C3FD8B5797430DF26 /* LookinAttrIdentifiers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinAttrIdentifiers.h; path = Src/Main/Shared/LookinAttrIdentifiers.h; sourceTree = ""; }; - 6BEFA0A1959620AC394975A01082A23B /* SDWebImageCacheSerializer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCacheSerializer.m; path = SDWebImage/Core/SDWebImageCacheSerializer.m; sourceTree = ""; }; - 6C07CC30774DAAE34D68C477CE151A36 /* NSArray+MASAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSArray+MASAdditions.h"; path = "Masonry/NSArray+MASAdditions.h"; sourceTree = ""; }; - 6C2FE2279B0EA1E9F949E0AF58D09E3B /* LKS_InbuiltAttrModificationHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LKS_InbuiltAttrModificationHandler.h; path = Src/Main/Server/Connection/RequestHandler/LKS_InbuiltAttrModificationHandler.h; sourceTree = ""; }; - 6C338AB8936504A929CF0929B7D23C9F /* MJExtension-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "MJExtension-Info.plist"; sourceTree = ""; }; - 6C34880EFF82114AECCB354A57C47E7C /* JXCategoryTitleCellModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryTitleCellModel.h; path = Sources/Title/JXCategoryTitleCellModel.h; sourceTree = ""; }; - 6C3B1F50C3A3E82B67AE98F2BAAD5C3C /* SDImageFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageFrame.h; path = SDWebImage/Core/SDImageFrame.h; sourceTree = ""; }; - 6C70C9B1AD0F41A4C5E9026F5AF7F65F /* JXCategoryListContainerRTLCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryListContainerRTLCell.m; path = Sources/Common/JXCategoryListContainerRTLCell.m; sourceTree = ""; }; - 6CE2A9B22B9FC87A02A230599E72D4F1 /* NSObject+MJKeyValue.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSObject+MJKeyValue.m"; path = "MJExtension/NSObject+MJKeyValue.m"; sourceTree = ""; }; - 6D2CC2D1F9AB2D4CFC68B6327C2793C5 /* MJRefreshAutoNormalFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshAutoNormalFooter.m; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.m; sourceTree = ""; }; - 6D390F38F6574F6D973E2C4A52D004A1 /* JXCategoryTitleVerticalZoomCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryTitleVerticalZoomCell.m; path = Sources/VerticalZoomTitle/JXCategoryTitleVerticalZoomCell.m; sourceTree = ""; }; - 6DB3789FF1142F1817E52B4F6C9BA1B6 /* SDImageCacheDefine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCacheDefine.m; path = SDWebImage/Core/SDImageCacheDefine.m; sourceTree = ""; }; - 6DD8CB4B9EF9002F59BC7DE12F17ED7E /* Lookin_PTPrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Lookin_PTPrivate.h; path = Src/Main/Shared/Peertalk/Lookin_PTPrivate.h; sourceTree = ""; }; - 6EF0D4A56B002AB1528A77EBDA7EC804 /* HWPanIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = HWPanIndicatorView.m; path = Sources/View/HWPanIndicatorView.m; sourceTree = ""; }; - 6FDFBF5B5FE03EAE7CBA31ED300F848E /* Peertalk.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Peertalk.h; path = Src/Main/Shared/Peertalk/Peertalk.h; sourceTree = ""; }; - 7032D81BB8B12F48732F1EBEA7A020D7 /* MJRefreshConst.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshConst.m; path = MJRefresh/MJRefreshConst.m; sourceTree = ""; }; - 709DA7415B508D723EE552B201284026 /* AFNetworking-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "AFNetworking-Info.plist"; sourceTree = ""; }; - 71D68B7747CE473E42AF5D55F07BB002 /* DZNEmptyDataSet-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DZNEmptyDataSet-prefix.pch"; sourceTree = ""; }; - 72F67C5C9E4A93AFE6FF113487609183 /* JXCategoryBaseView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryBaseView.m; path = Sources/Base/JXCategoryBaseView.m; sourceTree = ""; }; - 731627030A2BE88955F55A35D6DCABC1 /* JXPagingView.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = JXPagingView.modulemap; sourceTree = ""; }; - 732327FB0ADC252437B580203795D95F /* CALayer+Lookin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "CALayer+Lookin.h"; path = "Src/Main/Shared/Category/CALayer+Lookin.h"; sourceTree = ""; }; - 74444E41B3920B9EB4DA66DCD2975612 /* JXCategoryIndicatorBackgroundView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorBackgroundView.m; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorBackgroundView.m; sourceTree = ""; }; - 7446E6EDA4118B08C0D538CAA41C47AA /* UIProgressView+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIProgressView+AFNetworking.h"; path = "UIKit+AFNetworking/UIProgressView+AFNetworking.h"; sourceTree = ""; }; - 75A91D4BB6118442A9B7E27598AE7C99 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = Sources/PrivacyInfo.xcprivacy; sourceTree = ""; }; - 75B6A4916D912131001F61C28CCA6565 /* UIImage+ExtendedCacheData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+ExtendedCacheData.h"; path = "SDWebImage/Core/UIImage+ExtendedCacheData.h"; sourceTree = ""; }; - 761A654F557EA15B24079623AF9184F9 /* FLAnimatedImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLAnimatedImage.h; path = FLAnimatedImage/include/FLAnimatedImage.h; sourceTree = ""; }; - 7626DD9951DC84318DF6E875CD7A8C20 /* MJRefresh-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MJRefresh-umbrella.h"; sourceTree = ""; }; - 765DBAD68AB5F355FB80870758AFB22C /* LookinIvarTrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinIvarTrace.h; path = Src/Base/LookinIvarTrace.h; sourceTree = ""; }; - 76724C714C93839E6993DF68B545F17B /* UIViewController+LayoutHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIViewController+LayoutHelper.m"; path = "Sources/Presentable/UIViewController+LayoutHelper.m"; sourceTree = ""; }; - 76DCA3DD0D37AD6B5C7C65D7829AE3A8 /* LSTPopView.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = LSTPopView.modulemap; sourceTree = ""; }; - 7707C9BBD69232F1162D6ACABE70B7ED /* MJRefresh-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MJRefresh-prefix.pch"; sourceTree = ""; }; - 7755C313C99E29481B2A9849C31152BE /* DZNEmptyDataSet.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DZNEmptyDataSet.release.xcconfig; sourceTree = ""; }; - 7778E8300903006F261959B2010A06D2 /* JXCategoryImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryImageView.m; path = Sources/Image/JXCategoryImageView.m; sourceTree = ""; }; - 77BA4318333FADE07B128DB446EA0F64 /* HWPanModalContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = HWPanModalContentView.m; path = Sources/View/PanModal/HWPanModalContentView.m; sourceTree = ""; }; + 64D49E5BC4A3E2ECFAA63B66E38A6F8D /* FLAnimatedImage-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "FLAnimatedImage-Info.plist"; sourceTree = ""; }; + 6516BB90D0CA47F75712B356350A9FC1 /* AFNetworkActivityIndicatorManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFNetworkActivityIndicatorManager.m; path = "UIKit+AFNetworking/AFNetworkActivityIndicatorManager.m"; sourceTree = ""; }; + 6523AFC889399B6B25C08CCBEEE2F0B6 /* DZNEmptyDataSet-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DZNEmptyDataSet-umbrella.h"; sourceTree = ""; }; + 657631264951C7514A1788B1C6316E7F /* CALayer+Lookin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "CALayer+Lookin.m"; path = "Src/Main/Shared/Category/CALayer+Lookin.m"; sourceTree = ""; }; + 659E098AEC86E789470E344EB23EC1DD /* JXPagerListRefreshView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXPagerListRefreshView.m; path = Sources/JXPagerView/JXPagerListRefreshView.m; sourceTree = ""; }; + 65CCB6F10EC6B284E771B999975CE0B0 /* MJExtensionConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJExtensionConst.h; path = MJExtension/MJExtensionConst.h; sourceTree = ""; }; + 6650E50E5FAFFD61FC973E5A0D5C8398 /* SDWebImageDownloaderConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderConfig.m; path = SDWebImage/Core/SDWebImageDownloaderConfig.m; sourceTree = ""; }; + 66E849825D4B5783372753D6820DE97F /* MJRefreshHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshHeader.m; path = MJRefresh/Base/MJRefreshHeader.m; sourceTree = ""; }; + 673C80521DE4F20FDE3E9A82E6EBEC53 /* MASConstraintMaker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASConstraintMaker.m; path = Masonry/MASConstraintMaker.m; sourceTree = ""; }; + 674659ECD497CB56B02FD385F68621CA /* SDAnimatedImageRep.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImageRep.h; path = SDWebImage/Core/SDAnimatedImageRep.h; sourceTree = ""; }; + 6757029D58C1BFD772BCC87D14A52E39 /* UIView+LSTPV.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+LSTPV.h"; path = "LSTPopView/Classes/Code/UIView+LSTPV.h"; sourceTree = ""; }; + 68AAA13D71385283DB69A35327BC2F47 /* LSTTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LSTTimer.h; path = LSTTimer/Classes/LSTTimer.h; sourceTree = ""; }; + 6A2E7581F1DA07EBD6D2568091FCCB71 /* MJRefresh-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MJRefresh-umbrella.h"; sourceTree = ""; }; + 6A41E1A305241C5A627FAD06CB90A275 /* SDImageCachesManagerOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCachesManagerOperation.h; path = SDWebImage/Private/SDImageCachesManagerOperation.h; sourceTree = ""; }; + 6AB6F2617132C99A6B5CB953305CCA89 /* LookinDashboardBlueprint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinDashboardBlueprint.h; path = Src/Main/Shared/LookinDashboardBlueprint.h; sourceTree = ""; }; + 6B94BD4B7CE09D63E43117EFC4B15D0D /* UIScrollView+MJRefresh.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIScrollView+MJRefresh.m"; path = "MJRefresh/UIScrollView+MJRefresh.m"; sourceTree = ""; }; + 6BD04BB450562622E215B33554778CC3 /* LSTPopView.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = LSTPopView.release.xcconfig; sourceTree = ""; }; + 6BD526972490CFC41EE7106FF8E272CC /* UILabel+LookinServer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UILabel+LookinServer.m"; path = "Src/Main/Server/Category/UILabel+LookinServer.m"; sourceTree = ""; }; + 6C1E503B34448DC968FB5BDFADFAE70F /* SDAnimatedImagePlayer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImagePlayer.h; path = SDWebImage/Core/SDAnimatedImagePlayer.h; sourceTree = ""; }; + 6C9E32D40F89FB7470530B4F8AAB6162 /* MJRefreshComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshComponent.m; path = MJRefresh/Base/MJRefreshComponent.m; sourceTree = ""; }; + 6CE98E2FC8B92A0E98F20755C88122A4 /* LSTTimer.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = LSTTimer.debug.xcconfig; sourceTree = ""; }; + 6D00FB0A2824B0B4E8A345D97C52AA3B /* LookinServer-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "LookinServer-dummy.m"; sourceTree = ""; }; + 6D149C2EB765D348E439D96EC2A80A04 /* NSObject+MJClass.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSObject+MJClass.m"; path = "MJExtension/NSObject+MJClass.m"; sourceTree = ""; }; + 6D8BE2762FA18EF88A5BAD861C739B02 /* SDImageFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageFrame.h; path = SDWebImage/Core/SDImageFrame.h; sourceTree = ""; }; + 6DE6908A836615F946533A6FEE623373 /* MJRefreshNormalTrailer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshNormalTrailer.m; path = MJRefresh/Custom/Trailer/MJRefreshNormalTrailer.m; sourceTree = ""; }; + 6EAD8B1C822E0F2BAB884329D798190B /* SDImageTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageTransformer.h; path = SDWebImage/Core/SDImageTransformer.h; sourceTree = ""; }; + 6EB329DC3D8A252CA69C19DAF330A784 /* MASViewConstraint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASViewConstraint.h; path = Masonry/MASViewConstraint.h; sourceTree = ""; }; + 6EE8AE5699FC4ACD4283D4626ACDF742 /* LookinDisplayItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinDisplayItem.h; path = Src/Main/Shared/LookinDisplayItem.h; sourceTree = ""; }; + 6F1245D39980C8CC23C4FFA557C72FA3 /* SDWebImageDownloaderResponseModifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderResponseModifier.h; path = SDWebImage/Core/SDWebImageDownloaderResponseModifier.h; sourceTree = ""; }; + 6FD544A644986722B86F15A292995457 /* JXCategoryBaseCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryBaseCell.m; path = Sources/Base/JXCategoryBaseCell.m; sourceTree = ""; }; + 70021D526E8906DE61E9D2D0F92A78C3 /* UICollectionViewLayout+MJRefresh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UICollectionViewLayout+MJRefresh.h"; path = "MJRefresh/UICollectionViewLayout+MJRefresh.h"; sourceTree = ""; }; + 7083FA062632CC52050FC4EB53D64E3A /* MASViewAttribute.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASViewAttribute.h; path = Masonry/MASViewAttribute.h; sourceTree = ""; }; + 70CD4567ACE296214EA982091E2B8F90 /* MASCompositeConstraint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASCompositeConstraint.m; path = Masonry/MASCompositeConstraint.m; sourceTree = ""; }; + 70D52E1253BDF6EF05A1C5C1D46734EA /* Peertalk.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Peertalk.h; path = Src/Main/Shared/Peertalk/Peertalk.h; sourceTree = ""; }; + 72B1B153E1909E0A9DFA6E6097FD363D /* JXCategoryBaseCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryBaseCell.h; path = Sources/Base/JXCategoryBaseCell.h; sourceTree = ""; }; + 72CEA2C3193763834CD0E25D8DB88F2D /* SDFileAttributeHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDFileAttributeHelper.m; path = SDWebImage/Private/SDFileAttributeHelper.m; sourceTree = ""; }; + 731A2E2A09E554B786F7BD8D9285D1CC /* UIButton+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIButton+WebCache.h"; path = "SDWebImage/Core/UIButton+WebCache.h"; sourceTree = ""; }; + 7376537428F41B571A3D20FF9175747F /* LookinServer.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = LookinServer.debug.xcconfig; sourceTree = ""; }; + 73A2C1D7BD2A650246BEE1A00F6D836C /* LookinDashboardBlueprint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinDashboardBlueprint.m; path = Src/Main/Shared/LookinDashboardBlueprint.m; sourceTree = ""; }; + 73EBDE260791BF4440027F8601391D8B /* LSTTimer.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = LSTTimer.release.xcconfig; sourceTree = ""; }; + 741E2A603352D4102F1DAFBB68C69122 /* MJRefresh-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "MJRefresh-dummy.m"; sourceTree = ""; }; + 74751305705DEA03873DFA2AF4DDC9B7 /* HWPanModalInteractiveAnimator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = HWPanModalInteractiveAnimator.m; path = Sources/Animator/HWPanModalInteractiveAnimator.m; sourceTree = ""; }; + 763CF36C11B6092D9D5485AC2363F205 /* SDImageGIFCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageGIFCoder.m; path = SDWebImage/Core/SDImageGIFCoder.m; sourceTree = ""; }; + 768785318FEB9536A4DAAD47BD76396B /* CALayer+Lookin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "CALayer+Lookin.h"; path = "Src/Main/Shared/Category/CALayer+Lookin.h"; sourceTree = ""; }; + 769C3408F11A51A90B589A6DBB334C55 /* LKS_ConnectionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LKS_ConnectionManager.h; path = Src/Main/Server/Connection/LKS_ConnectionManager.h; sourceTree = ""; }; + 76AEEFCD2262D6843C63EB46FD6663BB /* UIView+LookinServer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+LookinServer.m"; path = "Src/Main/Server/Category/UIView+LookinServer.m"; sourceTree = ""; }; + 7718D3A1CB256B2263AD76B8EFDC9B86 /* MJRefreshGifHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshGifHeader.h; path = MJRefresh/Custom/Header/MJRefreshGifHeader.h; sourceTree = ""; }; + 77715D6F65035CFA25715F00E4915BA5 /* SDImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCache.m; path = SDWebImage/Core/SDImageCache.m; sourceTree = ""; }; + 77973C87CC9649629EBEE249DCC355F5 /* MJRefreshAutoNormalFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshAutoNormalFooter.h; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.h; sourceTree = ""; }; + 77DEC7B6CE458C6AAB89A25A3E05BA4B /* CALayer+LookinServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "CALayer+LookinServer.h"; path = "Src/Main/Server/Category/CALayer+LookinServer.h"; sourceTree = ""; }; + 77E6EFEE426EA2068D5FE2B73740D659 /* HWPanIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = HWPanIndicatorView.m; path = Sources/View/HWPanIndicatorView.m; sourceTree = ""; }; 77F4C0466DFC43C56F1D982F88EF74A0 /* ImageIO.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ImageIO.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.0.sdk/System/Library/Frameworks/ImageIO.framework; sourceTree = DEVELOPER_DIR; }; 7819923046C4F6B199F8D45E9F7BA6B0 /* HWPanModal */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = HWPanModal; path = HWPanModal.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 7965DB1FD06E64A9C5B34CB6D9909B3A /* AFNetworkActivityIndicatorManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFNetworkActivityIndicatorManager.h; path = "UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h"; sourceTree = ""; }; - 797DE6794620B6AD238FF0B8B61A1B32 /* UIScrollView+EmptyDataSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIScrollView+EmptyDataSet.h"; path = "Source/UIScrollView+EmptyDataSet.h"; sourceTree = ""; }; - 7A60D0CF9AE4E6671E2A6BBECEE57E4D /* JXCategoryIndicatorBallView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorBallView.m; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorBallView.m; sourceTree = ""; }; - 7A60F6547480237BC04A6287158556B4 /* LookinTuple.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinTuple.m; path = Src/Main/Shared/LookinTuple.m; sourceTree = ""; }; - 7A8A3FC6E6388A4864974A3D3B9C02F6 /* SDImageCacheDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCacheDefine.h; path = SDWebImage/Core/SDImageCacheDefine.h; sourceTree = ""; }; - 7A9939FAA68717870D107439064CEFF4 /* JXCategoryView.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JXCategoryView.release.xcconfig; sourceTree = ""; }; - 7B4337532A4911F88E85BB14DE78FBB7 /* JXCategoryTitleVerticalZoomView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryTitleVerticalZoomView.m; path = Sources/VerticalZoomTitle/JXCategoryTitleVerticalZoomView.m; sourceTree = ""; }; - 7C0E4900E01624D5262A1ED1DF2F6D35 /* MJRefreshComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshComponent.h; path = MJRefresh/Base/MJRefreshComponent.h; sourceTree = ""; }; - 7C2B7AF68C3BEF4AD97A93A90F9EFF44 /* MASConstraint+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "MASConstraint+Private.h"; path = "Masonry/MASConstraint+Private.h"; sourceTree = ""; }; - 7C36F83AF55E2873F497777F59071760 /* JXCategoryListContainerRTLCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryListContainerRTLCell.h; path = Sources/Common/JXCategoryListContainerRTLCell.h; sourceTree = ""; }; - 7CAEC579F15CFFDB2E384C98A046EA76 /* LookinEventHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinEventHandler.m; path = Src/Main/Shared/LookinEventHandler.m; sourceTree = ""; }; - 7CF7F647B9D3AA2FB234C1CC5BB53582 /* LKS_CustomAttrGroupsMaker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LKS_CustomAttrGroupsMaker.m; path = Src/Main/Server/Others/LKS_CustomAttrGroupsMaker.m; sourceTree = ""; }; - 7D7FC4156E6779F82E6B8036FA7A1307 /* MJRefreshAutoGifFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshAutoGifFooter.m; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.m; sourceTree = ""; }; - 7E02457FB07FECD161E03C2A1A8B72B3 /* LookinAttributesGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinAttributesGroup.m; path = Src/Main/Shared/LookinAttributesGroup.m; sourceTree = ""; }; + 7895C7C58218B5F79C76FA1B5A55E669 /* MJRefresh.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MJRefresh.debug.xcconfig; sourceTree = ""; }; + 798B3DCD95877B6C7D997E0652FB6E9A /* CALayer+LookinServer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "CALayer+LookinServer.m"; path = "Src/Main/Server/Category/CALayer+LookinServer.m"; sourceTree = ""; }; + 7A2AEB4C3E4F6147F107DF9376FA7264 /* UIImage+GIF.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+GIF.m"; path = "SDWebImage/Core/UIImage+GIF.m"; sourceTree = ""; }; + 7A307E6A261D750F85B7C9C1575036E4 /* DZNEmptyDataSet-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DZNEmptyDataSet-prefix.pch"; sourceTree = ""; }; + 7A5F8A5650078BFF9587944F0042AE79 /* UIView+Empty.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+Empty.h"; path = "LYEmptyView/UIView+Empty.h"; sourceTree = ""; }; + 7AC0215893BDD3C5E126FCE996097AB4 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = Sources/PrivacyInfo.xcprivacy; sourceTree = ""; }; + 7B167FA26CB7B8DC98E1A68B1B44BA8A /* JXPagerSmoothView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXPagerSmoothView.h; path = Sources/JXPagerView/JXPagerSmoothView.h; sourceTree = ""; }; + 7B51D3C0C65114DF44F6DDB3ED9C4E4E /* JXCategoryNumberCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryNumberCell.m; path = Sources/Number/JXCategoryNumberCell.m; sourceTree = ""; }; + 7B582290DB93C466A4DA695035B6DA2E /* MJExtension.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MJExtension.release.xcconfig; sourceTree = ""; }; + 7B8734ED62BE39C69073D2C32183C6FC /* JXCategoryNumberView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryNumberView.h; path = Sources/Number/JXCategoryNumberView.h; sourceTree = ""; }; + 7BD134826FCB54429F667B8DBF296710 /* SDCallbackQueue.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDCallbackQueue.m; path = SDWebImage/Core/SDCallbackQueue.m; sourceTree = ""; }; + 7BDFAC11D184E7F4498FC12FE0AFDCFC /* UIScrollView+Helper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIScrollView+Helper.h"; path = "Sources/Category/UIScrollView+Helper.h"; sourceTree = ""; }; + 7C1F5F86210D3FB1EF59D8665E7C4A77 /* SDImageLoadersManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageLoadersManager.h; path = SDWebImage/Core/SDImageLoadersManager.h; sourceTree = ""; }; + 7CE9A594E8A127B7273A7D82E1882497 /* MJRefreshAutoGifFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshAutoGifFooter.h; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.h; sourceTree = ""; }; + 7D6E9AC32A60E19ACB08AED4E4CD31A3 /* LSTTimer-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "LSTTimer-prefix.pch"; sourceTree = ""; }; + 7D7595F0F8BE4F40C64D68F0D491C6C6 /* LSTPopViewProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LSTPopViewProtocol.h; path = LSTPopView/Classes/Code/LSTPopViewProtocol.h; sourceTree = ""; }; + 7D7A76984F1E3BB7440B31DF8D5447F0 /* JXCategoryBaseCellModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryBaseCellModel.h; path = Sources/Base/JXCategoryBaseCellModel.h; sourceTree = ""; }; + 7DCA3ADE9B99025CE2B42367695E1E68 /* LYEmptyView-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "LYEmptyView-Info.plist"; sourceTree = ""; }; + 7DD55E3EFF5073BEBD483D293C40A0D6 /* LookinDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinDefines.h; path = Src/Main/Shared/LookinDefines.h; sourceTree = ""; }; + 7DEDD90DB6CF7DD05B6B753765E65AAD /* MASLayoutConstraint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASLayoutConstraint.m; path = Masonry/MASLayoutConstraint.m; sourceTree = ""; }; + 7E270235979252FF388A0C6D1E54966D /* HWVisualEffectView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HWVisualEffectView.h; path = Sources/View/HWVisualEffectView.h; sourceTree = ""; }; 7E3097CFEFDA621E9FB0E62009FF87FC /* MJRefresh-MJRefresh.Privacy */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "MJRefresh-MJRefresh.Privacy"; path = MJRefresh.Privacy.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 7E8762E22AB8C87B76E6D94D44665136 /* SDCallbackQueue.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDCallbackQueue.m; path = SDWebImage/Core/SDCallbackQueue.m; sourceTree = ""; }; - 7F178706A5ED2B8C0CCCEA56CC4A04B6 /* JXPagerSmoothView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXPagerSmoothView.m; path = Sources/JXPagerView/JXPagerSmoothView.m; sourceTree = ""; }; - 7FBDD10C8770914A56998AB2021E385B /* JXCategoryTitleImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryTitleImageView.h; path = Sources/TitleImage/JXCategoryTitleImageView.h; sourceTree = ""; }; - 806C18993732E8D418AEA50EC6162EDC /* UIImageView+HighlightedWebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+HighlightedWebCache.h"; path = "SDWebImage/Core/UIImageView+HighlightedWebCache.h"; sourceTree = ""; }; - 807026E96F55910EB566C0F4535DF3EB /* SDAnimatedImageRep.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImageRep.h; path = SDWebImage/Core/SDAnimatedImageRep.h; sourceTree = ""; }; - 8087FD233990CE787D9977700977D0B8 /* JXPagerMainTableView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXPagerMainTableView.h; path = Sources/JXPagerView/JXPagerMainTableView.h; sourceTree = ""; }; - 81157F73840FB0C9186268E78281D33C /* FLAnimatedImage.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FLAnimatedImage.modulemap; sourceTree = ""; }; - 8127266FF8D9AAE89CDF3511D05BB245 /* LKS_ObjectRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LKS_ObjectRegistry.m; path = Src/Main/Server/Others/LKS_ObjectRegistry.m; sourceTree = ""; }; - 8179AB093F869B4BCCBBF8427F69555B /* UIView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+WebCache.h"; path = "SDWebImage/Core/UIView+WebCache.h"; sourceTree = ""; }; - 819B57A54180667AB9476455F95835CA /* Masonry-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Masonry-prefix.pch"; sourceTree = ""; }; - 81C5F42CC1579DEC553C5D34C274FD68 /* LSTTimer-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "LSTTimer-Info.plist"; sourceTree = ""; }; - 81D1103F43F39D4BF9AE80E76478FA69 /* AFNetworkReachabilityManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFNetworkReachabilityManager.m; path = AFNetworking/AFNetworkReachabilityManager.m; sourceTree = ""; }; - 81D4FD0C7D7C987D10815371E729DAC0 /* UIActivityIndicatorView+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIActivityIndicatorView+AFNetworking.h"; path = "UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h"; sourceTree = ""; }; - 824A8DE6460C98A565B1EDD8B4432F50 /* NSBundle+MJRefresh.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSBundle+MJRefresh.m"; path = "MJRefresh/NSBundle+MJRefresh.m"; sourceTree = ""; }; - 82BDCD67CE12306B5AF6A9E3DB88E0DA /* SDMemoryCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDMemoryCache.h; path = SDWebImage/Core/SDMemoryCache.h; sourceTree = ""; }; - 82C5C527FD40FDC2434064E6DE931921 /* HWPanModalPresentationDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HWPanModalPresentationDelegate.h; path = Sources/Delegate/HWPanModalPresentationDelegate.h; sourceTree = ""; }; - 82F0AA3C9E3854CEA18B30E16DC474FC /* AFNetworking-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AFNetworking-prefix.pch"; sourceTree = ""; }; - 83B5308ADA544D7E6FCE86EFD21D5CBB /* SDImageCodersManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCodersManager.h; path = SDWebImage/Core/SDImageCodersManager.h; sourceTree = ""; }; - 83D5AD11F2E32B53BA1869D6DE812341 /* HWPanModalPresentable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HWPanModalPresentable.h; path = Sources/Presentable/HWPanModalPresentable.h; sourceTree = ""; }; - 83FBF1722FEB1FC5E339C64BC2275D81 /* HWPanModal-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "HWPanModal-umbrella.h"; sourceTree = ""; }; - 846CA0BB8166DB9008D71F59F4A301EA /* MJRefreshStateTrailer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshStateTrailer.h; path = MJRefresh/Custom/Trailer/MJRefreshStateTrailer.h; sourceTree = ""; }; - 84C7B13561A207799480933E11856D99 /* JXCategoryView-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JXCategoryView-umbrella.h"; sourceTree = ""; }; - 8532F3DD3C373C14A106D14F67A3C301 /* SDAnimatedImagePlayer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImagePlayer.m; path = SDWebImage/Core/SDAnimatedImagePlayer.m; sourceTree = ""; }; - 85E262E36BEDDEA0E7B4F4A870DA4314 /* JXPagingView-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JXPagingView-umbrella.h"; sourceTree = ""; }; - 8618BF2AA2A260801FDF48131074A906 /* JXCategoryTitleImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryTitleImageView.m; path = Sources/TitleImage/JXCategoryTitleImageView.m; sourceTree = ""; }; - 862F24C5813636BD088499E062B47C78 /* HWPanModal-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "HWPanModal-Info.plist"; sourceTree = ""; }; - 874DD2FA3B20B6BCBCBEE03BEEBE1281 /* JXCategoryNumberCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryNumberCell.h; path = Sources/Number/JXCategoryNumberCell.h; sourceTree = ""; }; - 877837A5816B3B110C5B763CCBD0ECFD /* UITextField+LookinServer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UITextField+LookinServer.m"; path = "Src/Main/Server/Category/UITextField+LookinServer.m"; sourceTree = ""; }; - 87DD67829823038B4E0D04582C0CB95C /* FLAnimatedImage-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FLAnimatedImage-umbrella.h"; sourceTree = ""; }; - 886E6269011F3D0F924F30F32F08508F /* LookinWeakContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinWeakContainer.h; path = Src/Main/Shared/LookinWeakContainer.h; sourceTree = ""; }; - 88D5019FBBC4DC80F31FB68B1820A427 /* UIImageView+HighlightedWebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+HighlightedWebCache.m"; path = "SDWebImage/Core/UIImageView+HighlightedWebCache.m"; sourceTree = ""; }; - 88D7B291E3BCDB41106F548FA3B84901 /* HWPanModalAnimator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = HWPanModalAnimator.m; path = Sources/Animator/HWPanModalAnimator.m; sourceTree = ""; }; - 898DE7614EA3416744425477D130D9C7 /* JXCategoryIndicatorDotLineView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorDotLineView.h; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorDotLineView.h; sourceTree = ""; }; - 89DA873F803BF9043720F615E8BC4CD5 /* LookinIvarTrace.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinIvarTrace.m; path = Src/Base/LookinIvarTrace.m; sourceTree = ""; }; - 8A0C74EF09B54680C98CCBF1F2BD297A /* JXCategoryIndicatorBallView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorBallView.h; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorBallView.h; sourceTree = ""; }; - 8A6F594F279129456C02C7701DE5EDC3 /* AFNetworking.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AFNetworking.debug.xcconfig; sourceTree = ""; }; - 8B0013F9906622545E27B913F2092F22 /* SDWebImageDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDefine.h; path = SDWebImage/Core/SDWebImageDefine.h; sourceTree = ""; }; - 8B0B848DED77C21AEA127E58094EE39E /* ResourceBundle-JXPagerView-JXPagingView-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-JXPagerView-JXPagingView-Info.plist"; sourceTree = ""; }; + 7E445C787AA09C1E3A771E4C7DBCE2CA /* LookinCustomAttrModification.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinCustomAttrModification.m; path = Src/Main/Shared/LookinCustomAttrModification.m; sourceTree = ""; }; + 7E73D1DD407F0535009A207AB317F8B7 /* JXCategoryIndicatorCellModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorCellModel.m; path = Sources/Indicator/JXCategoryIndicatorCellModel.m; sourceTree = ""; }; + 7EC4505824D228FB201DC90A544C01B3 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = Sources/PrivacyInfo.xcprivacy; sourceTree = ""; }; + 7FAB126742756E8C628ED27AEC1B9567 /* FLAnimatedImage-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FLAnimatedImage-umbrella.h"; sourceTree = ""; }; + 800ECE845D6F36BE51A284DFCAE27307 /* MJRefreshFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshFooter.h; path = MJRefresh/Base/MJRefreshFooter.h; sourceTree = ""; }; + 8067C53E08CA3787D9D5C3551F86EF9D /* JXCategoryImageCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryImageCell.m; path = Sources/Image/JXCategoryImageCell.m; sourceTree = ""; }; + 80E9CB1F62E65A837FF5E47B2FC3ECA1 /* UIRefreshControl+AFNetworking.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIRefreshControl+AFNetworking.m"; path = "UIKit+AFNetworking/UIRefreshControl+AFNetworking.m"; sourceTree = ""; }; + 81D115D4A9C927BEBA7B66F114F7B4EC /* MJRefresh-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MJRefresh-prefix.pch"; sourceTree = ""; }; + 81F7F63875295940D9A950DB7D2EBDE7 /* SDWebImage.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SDWebImage.release.xcconfig; sourceTree = ""; }; + 82F6D1678A37FB68B3455162AB8BDAA2 /* UIViewController+PanModalPresenter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIViewController+PanModalPresenter.h"; path = "Sources/Presenter/UIViewController+PanModalPresenter.h"; sourceTree = ""; }; + 8310CCDF3085A9EE32455CB865148664 /* JXPagerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXPagerView.h; path = Sources/JXPagerView/JXPagerView.h; sourceTree = ""; }; + 831897EBD9EF72C4D55D02DE399C410A /* HWPanModalPresentationAnimator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = HWPanModalPresentationAnimator.m; path = Sources/Animator/HWPanModalPresentationAnimator.m; sourceTree = ""; }; + 83340409B38BF2A20F089A4B919FC02F /* MJRefreshNormalTrailer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshNormalTrailer.h; path = MJRefresh/Custom/Trailer/MJRefreshNormalTrailer.h; sourceTree = ""; }; + 839CCD719F79C7FBC2909C72822FB470 /* SDImageCachesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCachesManager.h; path = SDWebImage/Core/SDImageCachesManager.h; sourceTree = ""; }; + 83E8510A179E756198B5FC915A27736E /* AFNetworking-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AFNetworking-umbrella.h"; sourceTree = ""; }; + 852A42FAC0EA5F64033033841A03891A /* NSArray+Lookin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSArray+Lookin.h"; path = "Src/Main/Shared/Category/NSArray+Lookin.h"; sourceTree = ""; }; + 855BA7199BD9AC7B4687AF3F66E21279 /* UIImageView+HighlightedWebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+HighlightedWebCache.h"; path = "SDWebImage/Core/UIImageView+HighlightedWebCache.h"; sourceTree = ""; }; + 85C4F1C66A75633558DC8F8AE824BC70 /* LYEmptyView.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = LYEmptyView.modulemap; sourceTree = ""; }; + 860D7179002683A0368E532B751FC40E /* AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFNetworking.h; path = AFNetworking/AFNetworking.h; sourceTree = ""; }; + 862D8BDF52FBE8FCF3A562F5A62C802E /* Lookin_PTChannel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Lookin_PTChannel.m; path = Src/Main/Shared/Peertalk/Lookin_PTChannel.m; sourceTree = ""; }; + 8638AEC16F5A3F7D05EF0F7C39544261 /* MJRefreshConst.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshConst.m; path = MJRefresh/MJRefreshConst.m; sourceTree = ""; }; + 8679B55EBC5DC660D8E798D1B986FC22 /* Image+Lookin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Image+Lookin.h"; path = "Src/Main/Shared/Category/Image+Lookin.h"; sourceTree = ""; }; + 87888E540A812F012C68F804E8F5AE7B /* HWPanModalPresentationController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HWPanModalPresentationController.h; path = Sources/Controller/HWPanModalPresentationController.h; sourceTree = ""; }; + 87B2A7EE05A20B3EDDFE045A6B7911E5 /* SDImageAssetManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageAssetManager.m; path = SDWebImage/Private/SDImageAssetManager.m; sourceTree = ""; }; + 87D7822F88C7B9608DF7E50878B7970B /* JXCategoryDotCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryDotCell.m; path = Sources/Dot/JXCategoryDotCell.m; sourceTree = ""; }; + 883434364AD74D3F77868A0CF2FB7A09 /* SDAnimatedImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImageView.m; path = SDWebImage/Core/SDAnimatedImageView.m; sourceTree = ""; }; + 88D479C435BAEE51B8F3BBF87F8D3CC9 /* AFNetworking.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AFNetworking.debug.xcconfig; sourceTree = ""; }; + 88F65BAED091224357C1ABFEA1C484FA /* LSTTimer-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "LSTTimer-umbrella.h"; sourceTree = ""; }; + 892976CDE28E9BEF86BFABB5F84E72F6 /* JXCategoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryView.h; path = Sources/JXCategoryView.h; sourceTree = ""; }; + 897530E070833B039DC2821D0B63B137 /* JXCategoryBaseCellModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryBaseCellModel.m; path = Sources/Base/JXCategoryBaseCellModel.m; sourceTree = ""; }; + 8A5D6AD5CB7122607D6E477D373A31E2 /* SDAnimatedImagePlayer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImagePlayer.m; path = SDWebImage/Core/SDAnimatedImagePlayer.m; sourceTree = ""; }; + 8A9BFDE06B11541EA7E87336A09C3816 /* UIViewController+LookinServer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIViewController+LookinServer.m"; path = "Src/Main/Server/Category/UIViewController+LookinServer.m"; sourceTree = ""; }; + 8B523AAA92DB90BD5B95092AF6B85BFB /* Lookin_PTPrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Lookin_PTPrivate.h; path = Src/Main/Shared/Peertalk/Lookin_PTPrivate.h; sourceTree = ""; }; + 8B8796E86BD11BC29D00EED72E50AE91 /* LKS_InbuiltAttrModificationHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LKS_InbuiltAttrModificationHandler.h; path = Src/Main/Server/Connection/RequestHandler/LKS_InbuiltAttrModificationHandler.h; sourceTree = ""; }; + 8B890DAD1E942EF3DB7BF5C23113C1B6 /* JXCategoryDotCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryDotCell.h; path = Sources/Dot/JXCategoryDotCell.h; sourceTree = ""; }; + 8B8AB8065F8811289957B59E9EBA6B47 /* View+MASAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "View+MASAdditions.h"; path = "Masonry/View+MASAdditions.h"; sourceTree = ""; }; 8B8FAB0D627B17EDE1366984278705D9 /* MBProgressHUD */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = MBProgressHUD; path = MBProgressHUD.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 8CE6BF39C6199FC5B55217046DDE2CDB /* UIVisualEffectView+LookinServer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIVisualEffectView+LookinServer.m"; path = "Src/Main/Server/Category/UIVisualEffectView+LookinServer.m"; sourceTree = ""; }; - 8E1682EACA92F366216BAB7320C375AA /* UIImageView+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+AFNetworking.h"; path = "UIKit+AFNetworking/UIImageView+AFNetworking.h"; sourceTree = ""; }; - 8E8C0DD47533304FD7479FB5A47A4E3B /* SDImageFramePool.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageFramePool.m; path = SDWebImage/Private/SDImageFramePool.m; sourceTree = ""; }; - 8F0F258366D8ED06A7D9EAD3DFCD004E /* LookinCustomDisplayItemInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinCustomDisplayItemInfo.m; path = Src/Main/Shared/LookinCustomDisplayItemInfo.m; sourceTree = ""; }; - 8FD309B3FADE968B4258080AC443EFCB /* NSObject+MJCoding.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSObject+MJCoding.m"; path = "MJExtension/NSObject+MJCoding.m"; sourceTree = ""; }; - 903038F34EE93C82A3EF6A1F6BDF857B /* View+MASAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "View+MASAdditions.m"; path = "Masonry/View+MASAdditions.m"; sourceTree = ""; }; - 908A8A591A12931E59C177277E1D126D /* LKS_AttrModificationPatchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LKS_AttrModificationPatchHandler.m; path = Src/Main/Server/Connection/RequestHandler/LKS_AttrModificationPatchHandler.m; sourceTree = ""; }; - 908BDA99457974AD8998A674A0C0FB12 /* LookinAppInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinAppInfo.h; path = Src/Main/Shared/LookinAppInfo.h; sourceTree = ""; }; - 911E6F5D1D17453D35BE3FA4A9086972 /* SDImageGIFCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageGIFCoder.h; path = SDWebImage/Core/SDImageGIFCoder.h; sourceTree = ""; }; - 920CD059C1364A6BD18420074E635F40 /* UIViewController+LookinServer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIViewController+LookinServer.m"; path = "Src/Main/Server/Category/UIViewController+LookinServer.m"; sourceTree = ""; }; - 92B0AD9AA2CE09EEB0EF8C040E103B97 /* SDImageAPNGCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageAPNGCoder.m; path = SDWebImage/Core/SDImageAPNGCoder.m; sourceTree = ""; }; - 93081A25D8BCD8327365F5FAC77C46F3 /* MBProgressHUD-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "MBProgressHUD-dummy.m"; sourceTree = ""; }; - 93A6F66AA21D4921B2C52643DAEF998F /* Masonry.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Masonry.debug.xcconfig; sourceTree = ""; }; - 9421B0E41FC583CAD966F98C60445BAB /* SDAssociatedObject.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAssociatedObject.m; path = SDWebImage/Private/SDAssociatedObject.m; sourceTree = ""; }; - 94807C278EC259800EBCD3A346749877 /* UITextField+LookinServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UITextField+LookinServer.h"; path = "Src/Main/Server/Category/UITextField+LookinServer.h"; sourceTree = ""; }; - 94D99E2E2730992302FB9BAA7CCE2A1C /* HWPanModalPresentationController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = HWPanModalPresentationController.m; path = Sources/Controller/HWPanModalPresentationController.m; sourceTree = ""; }; - 94DB79C6893EAE9D1A7D3559B485BCC5 /* SDImageCacheConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCacheConfig.h; path = SDWebImage/Core/SDImageCacheConfig.h; sourceTree = ""; }; - 9545413A1EE5D2E50A21E8D9794A771A /* Lookin_PTProtocol.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Lookin_PTProtocol.m; path = Src/Main/Shared/Peertalk/Lookin_PTProtocol.m; sourceTree = ""; }; - 956C8FF42F553F12124DED23E19FE31D /* Bugly.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Bugly.release.xcconfig; sourceTree = ""; }; - 95BD516A8F354C5C9CD65BFD30C9BED7 /* HWPanModalPanGestureDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HWPanModalPanGestureDelegate.h; path = Sources/Presentable/HWPanModalPanGestureDelegate.h; sourceTree = ""; }; - 95E2C10E638AC6421FE377F88DA72A45 /* UITableView+LookinServer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UITableView+LookinServer.m"; path = "Src/Main/Server/Category/UITableView+LookinServer.m"; sourceTree = ""; }; - 95EB1D88070F8207A333D4573DA43A15 /* LookinTuple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinTuple.h; path = Src/Main/Shared/LookinTuple.h; sourceTree = ""; }; + 8BE10EB8B74E3D1DE4172EF863BC22F8 /* Color+Lookin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Color+Lookin.h"; path = "Src/Main/Shared/Category/Color+Lookin.h"; sourceTree = ""; }; + 8C065D632F2F749CBD48B178A68B1631 /* MJRefreshAutoStateFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshAutoStateFooter.h; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.h; sourceTree = ""; }; + 8CF1445CC744306AE4ECBA85DFD6DB27 /* MJRefreshAutoStateFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshAutoStateFooter.m; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.m; sourceTree = ""; }; + 8D2F3BF5EE9E269F816330AC6BF6745F /* UIImage+ExtendedCacheData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+ExtendedCacheData.h"; path = "SDWebImage/Core/UIImage+ExtendedCacheData.h"; sourceTree = ""; }; + 8E4925A54FF503F963785651A98856BD /* UIView+WebCacheState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+WebCacheState.m"; path = "SDWebImage/Core/UIView+WebCacheState.m"; sourceTree = ""; }; + 8EFBD2E7A88C44123D980C42CB8702A4 /* JXCategoryDotView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryDotView.h; path = Sources/Dot/JXCategoryDotView.h; sourceTree = ""; }; + 8FEE8F6EEF601125225DCB1FEACED91C /* JXCategoryTitleView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryTitleView.m; path = Sources/Title/JXCategoryTitleView.m; sourceTree = ""; }; + 8FF761C99D422AE106C31A4A7AE469C7 /* JXCategoryViewAnimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryViewAnimator.h; path = Sources/Common/JXCategoryViewAnimator.h; sourceTree = ""; }; + 903EBE6439B30182644FFF066DE11129 /* LookinAttribute.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinAttribute.h; path = Src/Main/Shared/LookinAttribute.h; sourceTree = ""; }; + 913F72595D3AEFAFE006FD96A54FD8DA /* JXCategoryIndicatorCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorCell.h; path = Sources/Indicator/JXCategoryIndicatorCell.h; sourceTree = ""; }; + 919C930C4E0162377E3C95D0F6F11177 /* UIView+WebCacheState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+WebCacheState.h"; path = "SDWebImage/Core/UIView+WebCacheState.h"; sourceTree = ""; }; + 91BC18AA2869958B15FBD2C2367C5DFC /* AFNetworking.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = AFNetworking.modulemap; sourceTree = ""; }; + 9230BE776665C8EB51C8889631B1B31B /* HWDimmedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = HWDimmedView.m; path = Sources/View/HWDimmedView.m; sourceTree = ""; }; + 9234E8779322D7F9722AF6E18FF9F6F3 /* JXCategoryImageCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryImageCell.h; path = Sources/Image/JXCategoryImageCell.h; sourceTree = ""; }; + 92670C1E3C13D6C6157E7AFB4347DB17 /* NSString+Lookin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSString+Lookin.h"; path = "Src/Main/Shared/Category/NSString+Lookin.h"; sourceTree = ""; }; + 928339E7523C1267D5DF15E548454A5E /* NSData+ImageContentType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSData+ImageContentType.m"; path = "SDWebImage/Core/NSData+ImageContentType.m"; sourceTree = ""; }; + 92A35222DEEC452079F1343331C6E154 /* JXCategoryIndicatorProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorProtocol.h; path = Sources/Common/JXCategoryIndicatorProtocol.h; sourceTree = ""; }; + 931669FB7F8BA540208B2F23E13B2F19 /* JXCategoryDotCellModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryDotCellModel.h; path = Sources/Dot/JXCategoryDotCellModel.h; sourceTree = ""; }; + 93B896E371962B657B3B85C108092214 /* SDWebImage.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SDWebImage.debug.xcconfig; sourceTree = ""; }; + 949A8C57291DF7D8139F90AD367DB80C /* SDWebImageOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageOperation.h; path = SDWebImage/Core/SDWebImageOperation.h; sourceTree = ""; }; + 94CE97E5A9659D6EE58C83DCB52F73D5 /* HWPanContainerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HWPanContainerView.h; path = Sources/View/HWPanContainerView.h; sourceTree = ""; }; + 954035BEFF37A926FB7C25E5508CD25D /* MJExtension.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MJExtension.debug.xcconfig; sourceTree = ""; }; + 957B3209BD81CDA1C8049B3245F6946E /* LKS_MultiplatformAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LKS_MultiplatformAdapter.m; path = Src/Main/Server/Others/LKS_MultiplatformAdapter.m; sourceTree = ""; }; + 95BCF1B96C9A492409E9634BC63A400B /* JXCategoryViewAnimator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryViewAnimator.m; path = Sources/Common/JXCategoryViewAnimator.m; sourceTree = ""; }; + 962D7794EB805E6D2F4F5F0B58218401 /* SDInternalMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDInternalMacros.h; path = SDWebImage/Private/SDInternalMacros.h; sourceTree = ""; }; 969A9A842778EFB5D62826500DFF4E11 /* Pods-keyBoard-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-keyBoard-dummy.m"; sourceTree = ""; }; - 96BA563F965A1054AC53D0F3D5BD3AFE /* NSObject+MJClass.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSObject+MJClass.m"; path = "MJExtension/NSObject+MJClass.m"; sourceTree = ""; }; - 97428E2E54CAC989DD7A12908613EE16 /* LookinAttributesSection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinAttributesSection.m; path = Src/Main/Shared/LookinAttributesSection.m; sourceTree = ""; }; - 9777292C62AA2375C63BAEF75D1F940C /* NSObject+MJCoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+MJCoding.h"; path = "MJExtension/NSObject+MJCoding.h"; sourceTree = ""; }; - 979A3BAC302F65855776332D6027B80C /* MASConstraintMaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASConstraintMaker.h; path = Masonry/MASConstraintMaker.h; sourceTree = ""; }; - 97E0EEAE3EFB0492B434EC2A704903DE /* LSTPopView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "LSTPopView-dummy.m"; sourceTree = ""; }; - 9820AAA1C732351179414BB46300A1B7 /* SDAsyncBlockOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAsyncBlockOperation.h; path = SDWebImage/Private/SDAsyncBlockOperation.h; sourceTree = ""; }; - 989150BD3DA7E7AE5D05E2F37E778A8D /* LookinConnectionResponseAttachment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinConnectionResponseAttachment.h; path = Src/Main/Shared/LookinConnectionResponseAttachment.h; sourceTree = ""; }; - 98D2F9331639FC6D12A4091DD5F47C96 /* JXCategoryDotCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryDotCell.h; path = Sources/Dot/JXCategoryDotCell.h; sourceTree = ""; }; - 98EB3787337AAE5AD71D422A832D852F /* UIBlurEffect+LookinServer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIBlurEffect+LookinServer.m"; path = "Src/Main/Server/Category/UIBlurEffect+LookinServer.m"; sourceTree = ""; }; - 99302CD0854353E1FA9C8EE70F3FCF59 /* Masonry-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Masonry-dummy.m"; sourceTree = ""; }; - 99CBD01AD35AF793B343AC0ACF2CF164 /* UICollectionViewLayout+MJRefresh.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UICollectionViewLayout+MJRefresh.m"; path = "MJRefresh/UICollectionViewLayout+MJRefresh.m"; sourceTree = ""; }; - 9AFDFE95B53BDA0F282212CF3E9B940F /* UIScrollView+MJRefresh.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIScrollView+MJRefresh.m"; path = "MJRefresh/UIScrollView+MJRefresh.m"; sourceTree = ""; }; - 9B2F1B06BC651834D7B3EA1FBC96E466 /* LSTPopView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LSTPopView.m; path = LSTPopView/Classes/Code/LSTPopView.m; sourceTree = ""; }; - 9B89E97BE59B9448BC63E348FA77F055 /* SDWebImageDownloaderOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderOperation.h; path = SDWebImage/Core/SDWebImageDownloaderOperation.h; sourceTree = ""; }; - 9BAC219B4754C1E13B6929143780BE52 /* UIViewController+PanModalDefault.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIViewController+PanModalDefault.h"; path = "Sources/Presentable/UIViewController+PanModalDefault.h"; sourceTree = ""; }; - 9C599636DAB63CB63CC65E368E1BAAFC /* SDWebImageDefine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDefine.m; path = SDWebImage/Core/SDWebImageDefine.m; sourceTree = ""; }; - 9CE19B5D21ECCFC76311F186D2B3F651 /* SDImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageLoader.h; path = SDWebImage/Core/SDImageLoader.h; sourceTree = ""; }; - 9D31ED01216EF87422BD04709990AFA0 /* LookinDashboardBlueprint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinDashboardBlueprint.h; path = Src/Main/Shared/LookinDashboardBlueprint.h; sourceTree = ""; }; + 96AEDA915084E949F39F28D248C2FB43 /* SDWebImageDownloader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloader.h; path = SDWebImage/Core/SDWebImageDownloader.h; sourceTree = ""; }; + 96D1E2DE4F6F4EB00BD41C7ABD504109 /* JXCategoryListContainerRTLCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryListContainerRTLCell.m; path = Sources/Common/JXCategoryListContainerRTLCell.m; sourceTree = ""; }; + 97DE751E0ED3939932D72FB39C5A934A /* LookinAutoLayoutConstraint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinAutoLayoutConstraint.h; path = Src/Main/Shared/LookinAutoLayoutConstraint.h; sourceTree = ""; }; + 986324EA3CC9A3BDF0E5C7B1763862EE /* NSArray+MASShorthandAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSArray+MASShorthandAdditions.h"; path = "Masonry/NSArray+MASShorthandAdditions.h"; sourceTree = ""; }; + 98768C46376F54DFEB58CDD9F278AC71 /* MBProgressHUD-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MBProgressHUD-prefix.pch"; sourceTree = ""; }; + 98901829A364C7B4F13375AEB6AA0FBE /* SDWeakProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWeakProxy.m; path = SDWebImage/Private/SDWeakProxy.m; sourceTree = ""; }; + 98935AEC9F6608D5CCBFEF667B9F658A /* LKS_CustomDisplayItemsMaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LKS_CustomDisplayItemsMaker.h; path = Src/Main/Server/Others/LKS_CustomDisplayItemsMaker.h; sourceTree = ""; }; + 9897B379E415C6537D86A30137A8D274 /* ResourceBundle-MJRefresh.Privacy-MJRefresh-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-MJRefresh.Privacy-MJRefresh-Info.plist"; sourceTree = ""; }; + 98B3D67E4B164109B9B94A959496BA25 /* SDmetamacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDmetamacros.h; path = SDWebImage/Private/SDmetamacros.h; sourceTree = ""; }; + 99650956C6DC18187951AE72D50E44A2 /* MJFoundation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJFoundation.h; path = MJExtension/MJFoundation.h; sourceTree = ""; }; + 996C55702A2E4E7B3785C0C5454598C9 /* JXCategoryTitleVerticalZoomView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryTitleVerticalZoomView.h; path = Sources/VerticalZoomTitle/JXCategoryTitleVerticalZoomView.h; sourceTree = ""; }; + 99712B41FFAFC24C5F649A94D8DD7FFE /* LookinCodingValueType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinCodingValueType.h; path = Src/Main/Shared/LookinCodingValueType.h; sourceTree = ""; }; + 9A3BA26DC995AB016051D522F5691C91 /* RTLManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RTLManager.m; path = Sources/RLTManager/RTLManager.m; sourceTree = ""; }; + 9AA439B2B87976D37C23F7DCCE897F8C /* SDWebImagePrefetcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImagePrefetcher.m; path = SDWebImage/Core/SDWebImagePrefetcher.m; sourceTree = ""; }; + 9ABEB6B0A44AC8BCBC6CB1A8A8A9A0FF /* UIVisualEffectView+LookinServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIVisualEffectView+LookinServer.h"; path = "Src/Main/Server/Category/UIVisualEffectView+LookinServer.h"; sourceTree = ""; }; + 9C0082C9FF6875DA300AE3D8453DCB62 /* AFNetworkReachabilityManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFNetworkReachabilityManager.h; path = AFNetworking/AFNetworkReachabilityManager.h; sourceTree = ""; }; + 9C0E279B5FFB9696801CC86ACF92805A /* SDImageGIFCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageGIFCoder.h; path = SDWebImage/Core/SDImageGIFCoder.h; sourceTree = ""; }; + 9C2DAB09AC8F3AD6E82FDC5DB2562CB4 /* JXPagerMainTableView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXPagerMainTableView.m; path = Sources/JXPagerView/JXPagerMainTableView.m; sourceTree = ""; }; + 9C47102257C212ED978684D39466579B /* LKS_ExportManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LKS_ExportManager.h; path = Src/Main/Server/Others/LKS_ExportManager.h; sourceTree = ""; }; + 9C75F181A3E07F7E7B4B017B48488393 /* LookinConnectionAttachment.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinConnectionAttachment.m; path = Src/Main/Shared/LookinConnectionAttachment.m; sourceTree = ""; }; 9D41AAC213895165C450F5576DE42CB2 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.0.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; - 9D7E450C43D308EE4C1B879D0B60A4BF /* SDImageCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCoder.m; path = SDWebImage/Core/SDImageCoder.m; sourceTree = ""; }; + 9D4F497397BEDE35BC05F6C2B6D33577 /* LookinAttrIdentifiers.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinAttrIdentifiers.m; path = Src/Main/Shared/LookinAttrIdentifiers.m; sourceTree = ""; }; + 9D7E307063029FFE21DDCDC0455FA473 /* MJProperty.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJProperty.m; path = MJExtension/MJProperty.m; sourceTree = ""; }; 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 9DA5F48CB9575D0E2C775D8D7C262C14 /* AFHTTPSessionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFHTTPSessionManager.m; path = AFNetworking/AFHTTPSessionManager.m; sourceTree = ""; }; - 9DC4AC8D166AB2BD8B557BFA9FA9872C /* SDImageCachesManagerOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCachesManagerOperation.h; path = SDWebImage/Private/SDImageCachesManagerOperation.h; sourceTree = ""; }; 9DDD0462C32F55EF5E9CB1056459809F /* Pods-CustomKeyboard-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-CustomKeyboard-umbrella.h"; sourceTree = ""; }; - 9E18E15D3A7901E5A84136DADC023216 /* MASViewAttribute.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASViewAttribute.h; path = Masonry/MASViewAttribute.h; sourceTree = ""; }; - 9E285AA5C9AFC477B5336B5AC2C863D1 /* UILabel+LookinServer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UILabel+LookinServer.m"; path = "Src/Main/Server/Category/UILabel+LookinServer.m"; sourceTree = ""; }; - 9E54C32C4CB68C01C57E81C03350F4B2 /* MASUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASUtilities.h; path = Masonry/MASUtilities.h; sourceTree = ""; }; - 9E9F380E4292210FA99A8F5918C667C3 /* JXCategoryFactory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryFactory.m; path = Sources/Common/JXCategoryFactory.m; sourceTree = ""; }; - 9F0B0B2E800350D0E38B61EF43E6CE75 /* LKS_AttrModificationPatchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LKS_AttrModificationPatchHandler.h; path = Src/Main/Server/Connection/RequestHandler/LKS_AttrModificationPatchHandler.h; sourceTree = ""; }; - 9F3CA71777F849F0196634A7AB215BDC /* AFURLResponseSerialization.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFURLResponseSerialization.m; path = AFNetworking/AFURLResponseSerialization.m; sourceTree = ""; }; + 9E31AD6314EC8102DE4FC6291C0FE66F /* HWPanModalContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = HWPanModalContentView.m; path = Sources/View/PanModal/HWPanModalContentView.m; sourceTree = ""; }; + 9E91A12C513A640E68663D4ED668C0FC /* JXCategoryTitleImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryTitleImageView.h; path = Sources/TitleImage/JXCategoryTitleImageView.h; sourceTree = ""; }; + 9EC4E80691EA4009AB067722DA72E4D5 /* JXCategoryTitleImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryTitleImageView.m; path = Sources/TitleImage/JXCategoryTitleImageView.m; sourceTree = ""; }; + 9ECA4FF1A4B2A73F055139B44105081C /* NSBundle+MJRefresh.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSBundle+MJRefresh.m"; path = "MJRefresh/NSBundle+MJRefresh.m"; sourceTree = ""; }; + 9F5507B4A6BD90BF5F74B1AAC009AD90 /* SDImageAssetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAssetManager.h; path = SDWebImage/Private/SDImageAssetManager.h; sourceTree = ""; }; 9F5B3C0CF01454E7AC9226E88FDFBAE6 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.0.sdk/System/Library/Frameworks/UIKit.framework; sourceTree = DEVELOPER_DIR; }; - 9F94B604866DB37515D32D88635EFEE2 /* SDImageAssetManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageAssetManager.m; path = SDWebImage/Private/SDImageAssetManager.m; sourceTree = ""; }; - 9FD83B41506E28893BC297C4BDAB1B46 /* NSObject+Lookin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+Lookin.h"; path = "Src/Main/Shared/Category/NSObject+Lookin.h"; sourceTree = ""; }; - 9FEF42DD4D5BC001DB0C88A7EB3DB63B /* LookinServer-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "LookinServer-Info.plist"; sourceTree = ""; }; - A020A834828880C972FE2E839A9DD2B4 /* FLAnimatedImage-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "FLAnimatedImage-Info.plist"; sourceTree = ""; }; - A05508640C7796358B45E0B5C0C73183 /* DZNEmptyDataSet-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DZNEmptyDataSet-umbrella.h"; sourceTree = ""; }; - A1067B051CF7A4C36817E6F668A3E7A6 /* AFNetworking-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AFNetworking-umbrella.h"; sourceTree = ""; }; - A1E84842FBF29954156976CB6DD0F275 /* MJRefreshGifHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshGifHeader.m; path = MJRefresh/Custom/Header/MJRefreshGifHeader.m; sourceTree = ""; }; - A2309A5B4A1B9C14AF7AEDEC1036F76E /* UIButton+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIButton+AFNetworking.h"; path = "UIKit+AFNetworking/UIButton+AFNetworking.h"; sourceTree = ""; }; - A237C0F799BD0639307F9DF3E58B71CE /* MJRefresh-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "MJRefresh-Info.plist"; sourceTree = ""; }; - A2C056F5D1231FA94F92AA3712D545C2 /* JXCategoryIndicatorImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorImageView.m; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorImageView.m; sourceTree = ""; }; + 9FB49DC67A435D7D63695F113C3D398C /* SDWebImage-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "SDWebImage-Info.plist"; sourceTree = ""; }; + A01B197EE310DCCE265AA065FA12EF38 /* JXCategoryView-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "JXCategoryView-Info.plist"; sourceTree = ""; }; + A0329494F5B3BBF4A9C54DD83622388B /* MJPropertyType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJPropertyType.h; path = MJExtension/MJPropertyType.h; sourceTree = ""; }; + A0497973DD4190C4C37CC950C86C6F2B /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = WebImage/PrivacyInfo.xcprivacy; sourceTree = ""; }; + A0925E96742E33F78D548F10A7C0475D /* LKS_CustomAttrSetterManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LKS_CustomAttrSetterManager.h; path = Src/Main/Server/Others/LKS_CustomAttrSetterManager.h; sourceTree = ""; }; + A11C415AC80BAC0B06685E1F8AC7C7C8 /* AFHTTPSessionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFHTTPSessionManager.m; path = AFNetworking/AFHTTPSessionManager.m; sourceTree = ""; }; + A1411B1EA7A3C51DB2072BF40B4D5A60 /* SDAnimatedImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImage.h; path = SDWebImage/Core/SDAnimatedImage.h; sourceTree = ""; }; + A14754CFA2BACA27D3CA6DD44F6D8F10 /* ResourceBundle-SDWebImage-SDWebImage-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-SDWebImage-SDWebImage-Info.plist"; sourceTree = ""; }; + A16556ABD8D8BADE087CDC162140E59B /* MBProgressHUD-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "MBProgressHUD-Info.plist"; sourceTree = ""; }; + A198AAC0BC41558B9FC61F89E90D900F /* AFNetworkActivityIndicatorManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFNetworkActivityIndicatorManager.h; path = "UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h"; sourceTree = ""; }; + A1C4717F035C7128013EA7E000DAC18A /* WKWebView+AFNetworking.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "WKWebView+AFNetworking.m"; path = "UIKit+AFNetworking/WKWebView+AFNetworking.m"; sourceTree = ""; }; + A1DAAC915F745C515E0BF4D613B5CB1C /* LKS_InbuiltAttrModificationHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LKS_InbuiltAttrModificationHandler.m; path = Src/Main/Server/Connection/RequestHandler/LKS_InbuiltAttrModificationHandler.m; sourceTree = ""; }; + A2350DF4D8FE6C892E64B8C644667527 /* KeyValueObserver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KeyValueObserver.m; path = Sources/KVO/KeyValueObserver.m; sourceTree = ""; }; + A23AD7EF4A12F64EAAFE5154D8DC5843 /* JXCategoryNumberCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryNumberCell.h; path = Sources/Number/JXCategoryNumberCell.h; sourceTree = ""; }; + A2C2A9B920BB92B872BA2AC2EA086220 /* SDAnimatedImageView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "SDAnimatedImageView+WebCache.m"; path = "SDWebImage/Core/SDAnimatedImageView+WebCache.m"; sourceTree = ""; }; A2D8E1EB42D41EA6B94901E5B68C9011 /* Pods-keyBoard-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-keyBoard-umbrella.h"; sourceTree = ""; }; - A4D8DE877E59C1B5596F10D0213ADC5D /* UIView+LSTPV.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+LSTPV.m"; path = "LSTPopView/Classes/Code/UIView+LSTPV.m"; sourceTree = ""; }; + A3211D6272FC8FFC9717C01969D328F7 /* LSTTimer-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "LSTTimer-dummy.m"; sourceTree = ""; }; + A324C5885C8FB2DC65900A0EE79A0E45 /* MJRefresh.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MJRefresh.release.xcconfig; sourceTree = ""; }; + A34A186C33DB71F8C4ACB6E0705472D0 /* UIView+Empty.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+Empty.m"; path = "LYEmptyView/UIView+Empty.m"; sourceTree = ""; }; + A39050EBA53940D0CE63B52BF031BE6C /* UIImage+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Transform.h"; path = "SDWebImage/Core/UIImage+Transform.h"; sourceTree = ""; }; + A3E40CB9D351DF0E70C7A452071E82E1 /* SDImageCoderHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCoderHelper.h; path = SDWebImage/Core/SDImageCoderHelper.h; sourceTree = ""; }; + A464713D364DCC51BD1C744435EF31A3 /* SDDiskCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDiskCache.h; path = SDWebImage/Core/SDDiskCache.h; sourceTree = ""; }; + A4B49E8FCEA2AFEE938A133ECC269CF2 /* SDWebImageTransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageTransition.m; path = SDWebImage/Core/SDWebImageTransition.m; sourceTree = ""; }; + A4CFB2BE169777F50B29077639FCFEC4 /* LKSConfigManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LKSConfigManager.h; path = Src/Main/Server/Others/LKSConfigManager.h; sourceTree = ""; }; + A4F1299F85FD74B081B5C5F85EF530B7 /* SDWebImageError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageError.m; path = SDWebImage/Core/SDWebImageError.m; sourceTree = ""; }; A4FA15D44DF6BAC7550EDEED10862AA3 /* AFNetworking */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = AFNetworking; path = AFNetworking.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - A5262AA56B4C8511CBA390D4808E37F2 /* UIView+LSTPV.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+LSTPV.h"; path = "LSTPopView/Classes/Code/UIView+LSTPV.h"; sourceTree = ""; }; - A56B5A6CAF35241FF9D41CAC7DC1D6D2 /* UITextView+LookinServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UITextView+LookinServer.h"; path = "Src/Main/Server/Category/UITextView+LookinServer.h"; sourceTree = ""; }; - A5C74D4E7CA539C956587A3615702D24 /* SDDisplayLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDisplayLink.h; path = SDWebImage/Private/SDDisplayLink.h; sourceTree = ""; }; - A5FC57ACB22E21DCA20F2B582D18A03F /* AFNetworkActivityIndicatorManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFNetworkActivityIndicatorManager.m; path = "UIKit+AFNetworking/AFNetworkActivityIndicatorManager.m"; sourceTree = ""; }; - A67C49E3D329D82553E5FEBB4951ABD7 /* UIImage+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Transform.m"; path = "SDWebImage/Core/UIImage+Transform.m"; sourceTree = ""; }; - A697ED78520252C2C8CA71D13BA57F79 /* AFNetworking.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AFNetworking.release.xcconfig; sourceTree = ""; }; + A527D460219BC25D3D8E05E8A68C23C9 /* JXCategoryIndicatorLineView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorLineView.h; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorLineView.h; sourceTree = ""; }; + A56060BC793E00F370FD0DF3B4157376 /* SDWebImageIndicator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageIndicator.m; path = SDWebImage/Core/SDWebImageIndicator.m; sourceTree = ""; }; + A566FD7AC8F85BE1E72F6DF11FEA6338 /* NSObject+LookinServer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSObject+LookinServer.m"; path = "Src/Main/Server/Category/NSObject+LookinServer.m"; sourceTree = ""; }; + A603B071469D044FB92322560F131681 /* Masonry.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Masonry.debug.xcconfig; sourceTree = ""; }; + A64A22A853C13E4375B73E01D1D90CB1 /* MJRefreshBackNormalFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshBackNormalFooter.m; path = MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.m; sourceTree = ""; }; A6E8FF241173D596A21D4D4B7D86A810 /* Pods-keyBoard.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-keyBoard.release.xcconfig"; sourceTree = ""; }; - A75069F0A291D74DCBF8F50AA213D806 /* NSLayoutConstraint+MASDebugAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSLayoutConstraint+MASDebugAdditions.h"; path = "Masonry/NSLayoutConstraint+MASDebugAdditions.h"; sourceTree = ""; }; - A76F5B96F548930505FADC6CE9430C2D /* LSTTimer.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = LSTTimer.debug.xcconfig; sourceTree = ""; }; - A7A769F7014A1F30EE6690E054898162 /* LookinStaticAsyncUpdateTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinStaticAsyncUpdateTask.h; path = Src/Main/Shared/LookinStaticAsyncUpdateTask.h; sourceTree = ""; }; - A8105D73597438386DADF22233AAD4B3 /* LookinHierarchyInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinHierarchyInfo.h; path = Src/Main/Shared/LookinHierarchyInfo.h; sourceTree = ""; }; - A87C5BAF6B8038E9EE8A33551A798606 /* HWPanModalContainerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HWPanModalContainerView.h; path = Sources/View/PanModal/HWPanModalContainerView.h; sourceTree = ""; }; - A8CBDE62F720E1751DB8B8E4DF3B0E9F /* Masonry-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Masonry-umbrella.h"; sourceTree = ""; }; - A96A60100BE610809D6E0C7741CF992C /* MJRefreshAutoFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshAutoFooter.h; path = MJRefresh/Base/MJRefreshAutoFooter.h; sourceTree = ""; }; - A98C5DE93CCDA0FE6E6A916B05B69DCC /* LookinServer-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "LookinServer-umbrella.h"; sourceTree = ""; }; - A98C848E174628ED3A950CA220B4CB9A /* MBProgressHUD.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MBProgressHUD.h; sourceTree = ""; }; - A9B0E721EBB3914236D06250E333F1E9 /* LKS_HierarchyDisplayItemsMaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LKS_HierarchyDisplayItemsMaker.h; path = Src/Main/Server/Others/LKS_HierarchyDisplayItemsMaker.h; sourceTree = ""; }; - AAF02F3D4DFB903955A463298716DCE2 /* MASViewAttribute.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASViewAttribute.m; path = Masonry/MASViewAttribute.m; sourceTree = ""; }; - AAFEF3383472BCA83D71A7DAAC5522CC /* JXCategoryIndicatorParamsModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorParamsModel.m; path = Sources/Common/JXCategoryIndicatorParamsModel.m; sourceTree = ""; }; - AB253C473EBD2DF633A230C7FAA304B7 /* SDWebImageCompat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCompat.h; path = SDWebImage/Core/SDWebImageCompat.h; sourceTree = ""; }; - ABD4819FE00A1A954ABDDF0893C72587 /* JXCategoryDotCellModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryDotCellModel.h; path = Sources/Dot/JXCategoryDotCellModel.h; sourceTree = ""; }; - AC558AE5F168E24878BD4ACF3EE1274A /* SDImageTransformer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageTransformer.m; path = SDWebImage/Core/SDImageTransformer.m; sourceTree = ""; }; - ACC63F439241C64C221C18A8991C569B /* HWBackgroundConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HWBackgroundConfig.h; path = Sources/View/HWBackgroundConfig.h; sourceTree = ""; }; - AD28EF542A0B7F210E7C92D1D9DEC003 /* SDWebImageIndicator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageIndicator.h; path = SDWebImage/Core/SDWebImageIndicator.h; sourceTree = ""; }; - AE09548D63659FAE72F5C6F1EBF230FC /* MJExtension-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MJExtension-umbrella.h"; sourceTree = ""; }; - AEB0E8A16F89DAA71F5718EDBF3E2A83 /* SDImageCacheConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCacheConfig.m; path = SDWebImage/Core/SDImageCacheConfig.m; sourceTree = ""; }; - AED1D348255F77CE4BB2B0BB61E22F08 /* Bugly.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = Bugly.framework; sourceTree = ""; }; - AF302A5E7BA56F9F631A8591DA72D3C3 /* SDWebImageDownloaderRequestModifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderRequestModifier.h; path = SDWebImage/Core/SDWebImageDownloaderRequestModifier.h; sourceTree = ""; }; - AFBCBD9F77FD5CF26B2BEBE02B1E19D9 /* JXPagingView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "JXPagingView-dummy.m"; sourceTree = ""; }; - AFC299E1B60C8759EA1F35B7A91019A4 /* LookinDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinDefines.h; path = Src/Main/Shared/LookinDefines.h; sourceTree = ""; }; - B05FD8A103E2A06EE08BE59B38FC36B4 /* UIViewController+PanModalPresenter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIViewController+PanModalPresenter.m"; path = "Sources/Presenter/UIViewController+PanModalPresenter.m"; sourceTree = ""; }; - B072B2B3BF7FE061CC694AE00BCF5858 /* UIView+WebCacheState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+WebCacheState.h"; path = "SDWebImage/Core/UIView+WebCacheState.h"; sourceTree = ""; }; + A7A348B5BB8CB7A444F827000C95DAE5 /* UIImage+ExtendedCacheData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+ExtendedCacheData.m"; path = "SDWebImage/Core/UIImage+ExtendedCacheData.m"; sourceTree = ""; }; + A7DF910F689AA8FEAD1EF63DDDFCB780 /* UIVisualEffectView+LookinServer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIVisualEffectView+LookinServer.m"; path = "Src/Main/Server/Category/UIVisualEffectView+LookinServer.m"; sourceTree = ""; }; + A7EA79586CBF531A23E8B00CFA7B82C7 /* MJRefreshBackFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshBackFooter.m; path = MJRefresh/Base/MJRefreshBackFooter.m; sourceTree = ""; }; + A810CCF3953514350B557ABBEEBE5FF6 /* UIColor+LookinServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIColor+LookinServer.h"; path = "Src/Main/Server/Category/UIColor+LookinServer.h"; sourceTree = ""; }; + A8AF8342462E3EDE8E3D40F840DFA00C /* MBProgressHUD-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MBProgressHUD-umbrella.h"; sourceTree = ""; }; + A92BC89EBEE6C3CE964CA994B506EA43 /* SDWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWeakProxy.h; path = SDWebImage/Private/SDWeakProxy.h; sourceTree = ""; }; + A9BB84448AE1154A6E3D359329D6E5D8 /* JXPagingView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JXPagingView-prefix.pch"; sourceTree = ""; }; + AA7E9357D1D22FB737AEE89305734112 /* LKS_GestureTargetActionsSearcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LKS_GestureTargetActionsSearcher.h; path = Src/Main/Server/Others/LKS_GestureTargetActionsSearcher.h; sourceTree = ""; }; + AAA2247A63D832BDB9097AE7D635F20C /* ResourceBundle-JXCategoryView-JXCategoryView-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-JXCategoryView-JXCategoryView-Info.plist"; sourceTree = ""; }; + AB1D54171867DC3B104DAE8C6D30F644 /* MJRefreshStateTrailer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshStateTrailer.h; path = MJRefresh/Custom/Trailer/MJRefreshStateTrailer.h; sourceTree = ""; }; + AB2B98D8DC3605842D8528F53C1896A2 /* LKS_CustomAttrGroupsMaker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LKS_CustomAttrGroupsMaker.m; path = Src/Main/Server/Others/LKS_CustomAttrGroupsMaker.m; sourceTree = ""; }; + AB379411892DE9D6AC2BA478DD047B45 /* MJProperty.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJProperty.h; path = MJExtension/MJProperty.h; sourceTree = ""; }; + ABAC9F2093F2EF164CB968D710D261F5 /* MJRefresh.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = MJRefresh.modulemap; sourceTree = ""; }; + AC0C26DBF6F4D6A9D8C1BF55FE14DABA /* MBProgressHUD.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MBProgressHUD.release.xcconfig; sourceTree = ""; }; + AC368BF52013B3AE323DC35D782A044B /* MASConstraint+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "MASConstraint+Private.h"; path = "Masonry/MASConstraint+Private.h"; sourceTree = ""; }; + AC3EF9D4544217A0B4E13DA6B530C974 /* JXCategoryView-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JXCategoryView-umbrella.h"; sourceTree = ""; }; + ACD18D412C592E0FB706C10554E5283E /* SDWebImageTransitionInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageTransitionInternal.h; path = SDWebImage/Private/SDWebImageTransitionInternal.h; sourceTree = ""; }; + ADF656282B85E6C974597F555BDE3F21 /* LKS_AttrModificationPatchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LKS_AttrModificationPatchHandler.h; path = Src/Main/Server/Connection/RequestHandler/LKS_AttrModificationPatchHandler.h; sourceTree = ""; }; + AE19AE8E2478EF2E39C49272A1998EFE /* LookinDisplayItem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinDisplayItem.m; path = Src/Main/Shared/LookinDisplayItem.m; sourceTree = ""; }; + AE4CC2528765A45B472AD5B813D01119 /* MASCompositeConstraint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASCompositeConstraint.h; path = Masonry/MASCompositeConstraint.h; sourceTree = ""; }; + AEEC6C323BA320F8FE0EFED607BC9994 /* SDWebImageDefine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDefine.m; path = SDWebImage/Core/SDWebImageDefine.m; sourceTree = ""; }; + AF5F1AB306D02EC6A5F39878FAE8BEA1 /* SDWebImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SDWebImage-prefix.pch"; sourceTree = ""; }; + AFBA747DBA20D4BACF78CA8DE98ADF94 /* LKS_RequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LKS_RequestHandler.h; path = Src/Main/Server/Connection/LKS_RequestHandler.h; sourceTree = ""; }; + B041D1C998D0894DB89A31049CC1B872 /* UIBlurEffect+LookinServer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIBlurEffect+LookinServer.m"; path = "Src/Main/Server/Category/UIBlurEffect+LookinServer.m"; sourceTree = ""; }; + B052BF123A39C5CF4B531584A2A83BED /* WKWebView+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "WKWebView+AFNetworking.h"; path = "UIKit+AFNetworking/WKWebView+AFNetworking.h"; sourceTree = ""; }; + B0922492568B0DD6D1F92C0E3B3A53A1 /* LookinWeakContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinWeakContainer.h; path = Src/Main/Shared/LookinWeakContainer.h; sourceTree = ""; }; + B09C6285E70223CDED72989080A8442A /* NSImage+Compatibility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSImage+Compatibility.h"; path = "SDWebImage/Core/NSImage+Compatibility.h"; sourceTree = ""; }; B0B214D775196BA7CA8E17E53048A493 /* SDWebImage */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = SDWebImage; path = SDWebImage.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - B26771C31428D52F8DFB859AE1AC3503 /* MJRefreshStateTrailer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshStateTrailer.m; path = MJRefresh/Custom/Trailer/MJRefreshStateTrailer.m; sourceTree = ""; }; - B2D84B5B7090CE22D8AFB107E403CA13 /* AFURLSessionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFURLSessionManager.h; path = AFNetworking/AFURLSessionManager.h; sourceTree = ""; }; - B3F518DFA534AD602991065542FADB29 /* SDImageLoadersManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageLoadersManager.m; path = SDWebImage/Core/SDImageLoadersManager.m; sourceTree = ""; }; - B4121F7B04BCCD0FB01ED16A27F6E571 /* FLAnimatedImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLAnimatedImageView.m; path = FLAnimatedImage/FLAnimatedImageView.m; sourceTree = ""; }; - B444EEABD213A46C07AC5F1B8D73FBF1 /* UIView+HW_Frame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+HW_Frame.m"; path = "Sources/Category/UIView+HW_Frame.m"; sourceTree = ""; }; - B46184374613AB561CB67E0F1EF14DD8 /* JXCategoryViewAnimator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryViewAnimator.m; path = Sources/Common/JXCategoryViewAnimator.m; sourceTree = ""; }; - B46DF40E1300BE3FC009F0D7D5CF5ED0 /* UIViewController+PanModalPresenter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIViewController+PanModalPresenter.h"; path = "Sources/Presenter/UIViewController+PanModalPresenter.h"; sourceTree = ""; }; - B5C750768FB8EE26E8F613C1D910045B /* UIImage+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Transform.h"; path = "SDWebImage/Core/UIImage+Transform.h"; sourceTree = ""; }; - B5EF3518EEE6DB69526EE34FF9D58DFD /* SDImageGraphics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageGraphics.h; path = SDWebImage/Core/SDImageGraphics.h; sourceTree = ""; }; - B63B552A0A52E65141ED8027A3FCCB0D /* UIView+HW_Frame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+HW_Frame.h"; path = "Sources/Category/UIView+HW_Frame.h"; sourceTree = ""; }; - B7498A05A9D7A9FEE19E027CABE6B9DD /* JXCategoryImageCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryImageCell.m; path = Sources/Image/JXCategoryImageCell.m; sourceTree = ""; }; - B74F835090D47DFE066B4DAD231882AC /* LookinAttributesSection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinAttributesSection.h; path = Src/Main/Shared/LookinAttributesSection.h; sourceTree = ""; }; - B79CB4484CF793AF65C86B424D955922 /* LSTPopView.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = LSTPopView.release.xcconfig; sourceTree = ""; }; - B7AD3647BEEBE4C691B28F5746D51E7D /* SDMemoryCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDMemoryCache.m; path = SDWebImage/Core/SDMemoryCache.m; sourceTree = ""; }; - B8E404753BE7BE627A458AE982427654 /* HWPanModalPresentableHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = HWPanModalPresentableHandler.m; path = Sources/Mediator/HWPanModalPresentableHandler.m; sourceTree = ""; }; - B8E77F018E5BE1F8C021ACB0978497F6 /* LookinServer.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = LookinServer.release.xcconfig; sourceTree = ""; }; - B937D529B74DB9581A000F395FF3B6F7 /* NSArray+Lookin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSArray+Lookin.h"; path = "Src/Main/Shared/Category/NSArray+Lookin.h"; sourceTree = ""; }; - B9C3A1374DADDEAE813F69F05F5A2564 /* HWShoppingCartPresentingAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HWShoppingCartPresentingAnimation.h; path = Sources/Animator/PresentingVCAnimation/HWShoppingCartPresentingAnimation.h; sourceTree = ""; }; - B9D007BE64FBA88DB3F5D92E0EAEDEAD /* LKS_RequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LKS_RequestHandler.h; path = Src/Main/Server/Connection/LKS_RequestHandler.h; sourceTree = ""; }; - BB4D65769822C57911F4A84B9F8FADFA /* SDWebImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImage.h; path = WebImage/SDWebImage.h; sourceTree = ""; }; + B1850D4E22F95780586FA04DA695C24C /* Lookin_PTUSBHub.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Lookin_PTUSBHub.m; path = Src/Main/Shared/Peertalk/Lookin_PTUSBHub.m; sourceTree = ""; }; + B267D6EC269C7ADF7A4202363528E8C2 /* LookinAttribute.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinAttribute.m; path = Src/Main/Shared/LookinAttribute.m; sourceTree = ""; }; + B28192DA39251C0AC1C30AE245A9A547 /* JXCategoryTitleImageCellModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryTitleImageCellModel.m; path = Sources/TitleImage/JXCategoryTitleImageCellModel.m; sourceTree = ""; }; + B2B7D0FDFC6ECF60B59728E60160431B /* LookinConnectionResponseAttachment.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinConnectionResponseAttachment.m; path = Src/Main/Shared/LookinConnectionResponseAttachment.m; sourceTree = ""; }; + B2C2A4CA80B5FE7CB8927FAEE4CAF5F4 /* SDImageCacheDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCacheDefine.h; path = SDWebImage/Core/SDImageCacheDefine.h; sourceTree = ""; }; + B2CE10A014B3B7826BFF751346CE7495 /* SDWebImageDownloaderRequestModifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderRequestModifier.h; path = SDWebImage/Core/SDWebImageDownloaderRequestModifier.h; sourceTree = ""; }; + B3443BE7FBE80A857A146093C743D9BF /* JXCategoryIndicatorImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorImageView.m; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorImageView.m; sourceTree = ""; }; + B4319C3394898C8897D6580DAC5A5124 /* JXPagingView-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JXPagingView-umbrella.h"; sourceTree = ""; }; + B453C947A0F7F0133F2F98F9E8EF1E43 /* SDWebImageDownloader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloader.m; path = SDWebImage/Core/SDWebImageDownloader.m; sourceTree = ""; }; + B4750EDA171CA7EB95AFE62489A712EF /* JXCategoryViewDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryViewDefines.h; path = Sources/Common/JXCategoryViewDefines.h; sourceTree = ""; }; + B49837A2AA042F710F43F143A929D49F /* JXCategoryTitleCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryTitleCell.m; path = Sources/Title/JXCategoryTitleCell.m; sourceTree = ""; }; + B49F76B93F72D361782D7DA99B65ADC9 /* JXCategoryIndicatorLineView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorLineView.m; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorLineView.m; sourceTree = ""; }; + B4F7FC0CFCBE2143A4999C2F356D2B47 /* SDWebImageCacheKeyFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCacheKeyFilter.h; path = SDWebImage/Core/SDWebImageCacheKeyFilter.h; sourceTree = ""; }; + B5157027D16B7E61C1D5AB091D10458E /* LookinTuple.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinTuple.m; path = Src/Main/Shared/LookinTuple.m; sourceTree = ""; }; + B5885DEE0FCB371101A605FDA3D3F35C /* LYEmptyBaseView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LYEmptyBaseView.h; path = LYEmptyView/LYEmptyBaseView.h; sourceTree = ""; }; + B5A6B26A93BDE64568CF7AF44D709974 /* AFURLResponseSerialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFURLResponseSerialization.h; path = AFNetworking/AFURLResponseSerialization.h; sourceTree = ""; }; + B5F6ED51FA52849CB3D9D44DD45396E2 /* SDDisplayLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDisplayLink.h; path = SDWebImage/Private/SDDisplayLink.h; sourceTree = ""; }; + B6242B29A00A9DBC6FF1CD09266BBF54 /* MJRefreshGifHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshGifHeader.m; path = MJRefresh/Custom/Header/MJRefreshGifHeader.m; sourceTree = ""; }; + B628043D13CE1145E17714D58AB2A687 /* UIImageView+AFNetworking.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+AFNetworking.m"; path = "UIKit+AFNetworking/UIImageView+AFNetworking.m"; sourceTree = ""; }; + B6575913AB2C7FDA723D279165349FF6 /* NSObject+Lookin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSObject+Lookin.m"; path = "Src/Main/Shared/Category/NSObject+Lookin.m"; sourceTree = ""; }; + B6ED434773EE7ECEDAB93E7A62107F73 /* FLAnimatedImage.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FLAnimatedImage.modulemap; sourceTree = ""; }; + B705DD8FCD54B3AFD61B70C82828ACE4 /* SDAnimatedImageView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SDAnimatedImageView+WebCache.h"; path = "SDWebImage/Core/SDAnimatedImageView+WebCache.h"; sourceTree = ""; }; + B70A750F053AB9B0B60CBF456ED577A9 /* JXCategoryTitleCellModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryTitleCellModel.m; path = Sources/Title/JXCategoryTitleCellModel.m; sourceTree = ""; }; + B74E719F2E64B3E186B6F4B672482329 /* LSTTimer-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "LSTTimer-Info.plist"; sourceTree = ""; }; + B75E67C2319B8FDBF4D6263203A06D6B /* SDImageIOAnimatedCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOAnimatedCoder.h; path = SDWebImage/Core/SDImageIOAnimatedCoder.h; sourceTree = ""; }; + B77422F87DF00923771B3EF8E6C0A9BF /* UITableView+LookinServer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UITableView+LookinServer.m"; path = "Src/Main/Server/Category/UITableView+LookinServer.m"; sourceTree = ""; }; + B82D0099E75E96FE5ACCF5B647388551 /* JXCategoryFactory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryFactory.m; path = Sources/Common/JXCategoryFactory.m; sourceTree = ""; }; + B8322800FD1F06BC2FEA3A9EEA874E20 /* DZNEmptyDataSet-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DZNEmptyDataSet-dummy.m"; sourceTree = ""; }; + B87895ABF5221A865DF2D53247763F89 /* SDWebImageCompat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCompat.h; path = SDWebImage/Core/SDWebImageCompat.h; sourceTree = ""; }; + B8F1319B150BB3DBD94BEB4C80F6F296 /* UIScrollView+MJExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIScrollView+MJExtension.m"; path = "MJRefresh/UIScrollView+MJExtension.m"; sourceTree = ""; }; + B915A35174E3017D6DC61C0A3E31050E /* LookinAttributeModification.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinAttributeModification.h; path = Src/Main/Shared/LookinAttributeModification.h; sourceTree = ""; }; + B92B905C66437721BB933FEDA5B00CB4 /* SDImageIOAnimatedCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageIOAnimatedCoder.m; path = SDWebImage/Core/SDImageIOAnimatedCoder.m; sourceTree = ""; }; + B95FDE5F86C6AC76E24A82E181084256 /* UIViewController+PanModalDefault.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIViewController+PanModalDefault.m"; path = "Sources/Presentable/UIViewController+PanModalDefault.m"; sourceTree = ""; }; + B9CA9F01554205BFBACCA553143C8676 /* MASViewAttribute.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASViewAttribute.m; path = Masonry/MASViewAttribute.m; sourceTree = ""; }; + B9E1D06297B630EA32D1369915C0CB97 /* SDImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageLoader.m; path = SDWebImage/Core/SDImageLoader.m; sourceTree = ""; }; BB4F011171FCB76B1AEBE390F843E930 /* JXCategoryView-JXCategoryView */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "JXCategoryView-JXCategoryView"; path = JXCategoryView.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - BBB6E7BC9BF649910D7654B98B396BD4 /* AFURLResponseSerialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFURLResponseSerialization.h; path = AFNetworking/AFURLResponseSerialization.h; sourceTree = ""; }; - BBC2FF6B1D45486A6893E456C4B85E05 /* SDWebImageDownloaderResponseModifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderResponseModifier.m; path = SDWebImage/Core/SDWebImageDownloaderResponseModifier.m; sourceTree = ""; }; - BBC5ED786070BB7777881EF2B55FF369 /* SDImageCoderHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCoderHelper.m; path = SDWebImage/Core/SDImageCoderHelper.m; sourceTree = ""; }; - BC38AB7DAEDA3DEEFFAC64BDA7FA3C88 /* Lookin_PTUSBHub.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Lookin_PTUSBHub.m; path = Src/Main/Shared/Peertalk/Lookin_PTUSBHub.m; sourceTree = ""; }; - BC5B799F7FC71DC9649AD62AE8B34DC7 /* HWVisualEffectView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HWVisualEffectView.h; path = Sources/View/HWVisualEffectView.h; sourceTree = ""; }; - BC88BA608872DDF711D78498FD36C1AA /* LKS_GestureTargetActionsSearcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LKS_GestureTargetActionsSearcher.m; path = Src/Main/Server/Others/LKS_GestureTargetActionsSearcher.m; sourceTree = ""; }; - BCAF03C4FF87945F86C061039CB2443F /* SDImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCache.h; path = SDWebImage/Core/SDImageCache.h; sourceTree = ""; }; - BCE8E065BE01E56E0D55097E36AB8FC2 /* LookinDisplayItem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinDisplayItem.m; path = Src/Main/Shared/LookinDisplayItem.m; sourceTree = ""; }; - BD89A8E0323AB57CE283C150C3D4C556 /* FLAnimatedImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLAnimatedImageView.h; path = FLAnimatedImage/include/FLAnimatedImageView.h; sourceTree = ""; }; - BDE2764DE3EEF78845A18DB898232DC0 /* NSObject+MJKeyValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+MJKeyValue.h"; path = "MJExtension/NSObject+MJKeyValue.h"; sourceTree = ""; }; + BBA58A99F7E528A8D41BD96706230160 /* MJRefreshBackGifFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshBackGifFooter.h; path = MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.h; sourceTree = ""; }; + BC30CFC7778FEADF9DCBF0A4ABA1769C /* SDImageAWebPCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageAWebPCoder.m; path = SDWebImage/Core/SDImageAWebPCoder.m; sourceTree = ""; }; + BC7F3F9323470C634DC0D469E7C13B10 /* MJRefreshAutoGifFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshAutoGifFooter.m; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.m; sourceTree = ""; }; + BCDE5AFCF524DCA9CD59B6F4A4738325 /* HWPanModalIndicatorProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HWPanModalIndicatorProtocol.h; path = Sources/View/HWPanModalIndicatorProtocol.h; sourceTree = ""; }; + BCF14CEE3203A4E740B9A9FD66CCABA4 /* MJFoundation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJFoundation.m; path = MJExtension/MJFoundation.m; sourceTree = ""; }; + BD243AB5EB0FB2763BBC742A8BCF80DD /* Masonry-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Masonry-prefix.pch"; sourceTree = ""; }; + BD3BC591D3DAF10375616FB7F294F926 /* Masonry-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Masonry-Info.plist"; sourceTree = ""; }; + BD430BA3E5DB115A0F8BF9D6110923AE /* SDWebImageCacheSerializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCacheSerializer.h; path = SDWebImage/Core/SDWebImageCacheSerializer.h; sourceTree = ""; }; + BDB258BF0BE17AFC3BFB4FB942403B82 /* SDAnimatedImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImage.m; path = SDWebImage/Core/SDAnimatedImage.m; sourceTree = ""; }; BDEE6097B6411333154FEF90A280E3E4 /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.0.sdk/System/Library/Frameworks/QuartzCore.framework; sourceTree = DEVELOPER_DIR; }; - BE09431A1BE57A882CA02B1E434916A8 /* NSObject+MJProperty.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+MJProperty.h"; path = "MJExtension/NSObject+MJProperty.h"; sourceTree = ""; }; - BE10A2A4B13E0F15A962DBEA161DE595 /* LKS_AttrGroupsMaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LKS_AttrGroupsMaker.h; path = Src/Main/Server/Others/LKS_AttrGroupsMaker.h; sourceTree = ""; }; - BE6EFE785E6216D9C7C1D6B7A4EEA5EA /* MJRefreshAutoFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshAutoFooter.m; path = MJRefresh/Base/MJRefreshAutoFooter.m; sourceTree = ""; }; - BEB32B7BEE20F8A74F80D03511F02260 /* JXCategoryDotCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryDotCell.m; path = Sources/Dot/JXCategoryDotCell.m; sourceTree = ""; }; - BEC06B30EADD5F0931B350F94CD4D15C /* UIRefreshControl+AFNetworking.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIRefreshControl+AFNetworking.m"; path = "UIKit+AFNetworking/UIRefreshControl+AFNetworking.m"; sourceTree = ""; }; - BEE43BCA7C1A101BFC7A5856F8793387 /* SDAnimatedImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImageView.h; path = SDWebImage/Core/SDAnimatedImageView.h; sourceTree = ""; }; - BF40FB09CDD92326BB3177C14DF172AD /* LSTPopView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LSTPopView.h; path = LSTPopView/Classes/Code/LSTPopView.h; sourceTree = ""; }; - BF9910B7B2FF86AF620A45955A338072 /* JXCategoryIndicatorCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorCell.h; path = Sources/Indicator/JXCategoryIndicatorCell.h; sourceTree = ""; }; - BFEF7CB304E59179EBDA954FA636E74D /* SDWebImageTransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageTransition.m; path = SDWebImage/Core/SDWebImageTransition.m; sourceTree = ""; }; - C02B6DB0CED9923894E4B972F8B03882 /* NSSet+Lookin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSSet+Lookin.m"; path = "Src/Main/Shared/Category/NSSet+Lookin.m"; sourceTree = ""; }; - C06B04E0ABEA41660753A9D5F58572EE /* FLAnimatedImage.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FLAnimatedImage.release.xcconfig; sourceTree = ""; }; - C0ECED1A3FCBB93D40B1BFFF5AE2F27D /* SDAssociatedObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAssociatedObject.h; path = SDWebImage/Private/SDAssociatedObject.h; sourceTree = ""; }; - C1227D6957584FA14F5EFE311854C54A /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = WebImage/PrivacyInfo.xcprivacy; sourceTree = ""; }; - C181D8B9B1142624BE8BFFA787AA2854 /* LSTTimer-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "LSTTimer-dummy.m"; sourceTree = ""; }; - C1F534C5FFF39633128C9B99F1BBF1B5 /* UIImage+ExtendedCacheData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+ExtendedCacheData.m"; path = "SDWebImage/Core/UIImage+ExtendedCacheData.m"; sourceTree = ""; }; - C205DB74EDBD3C80FB36923BD2255DBB /* SDWebImageCacheKeyFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCacheKeyFilter.h; path = SDWebImage/Core/SDWebImageCacheKeyFilter.h; sourceTree = ""; }; - C371FCAC7DF4BD1C57C3D164BD5A8759 /* JXCategoryView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JXCategoryView-prefix.pch"; sourceTree = ""; }; + BE1A1849BD6BB4B796D54DCBEF79FB7A /* UICollectionViewLayout+MJRefresh.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UICollectionViewLayout+MJRefresh.m"; path = "MJRefresh/UICollectionViewLayout+MJRefresh.m"; sourceTree = ""; }; + BE9E061AE26F933A7BBEFF3D94E9B32D /* NSLayoutConstraint+MASDebugAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSLayoutConstraint+MASDebugAdditions.h"; path = "Masonry/NSLayoutConstraint+MASDebugAdditions.h"; sourceTree = ""; }; + BF0EE7E880EA65C279154531EF91F5E8 /* UIButton+AFNetworking.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIButton+AFNetworking.m"; path = "UIKit+AFNetworking/UIButton+AFNetworking.m"; sourceTree = ""; }; + BF141C03BAA67847DFB6B6DFF0D1CBFC /* UIActivityIndicatorView+AFNetworking.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIActivityIndicatorView+AFNetworking.m"; path = "UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.m"; sourceTree = ""; }; + BF31B533FDEE0B0DA7ED824B4F336534 /* SDImageFramePool.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageFramePool.m; path = SDWebImage/Private/SDImageFramePool.m; sourceTree = ""; }; + BF3C6AEB909F4472F8D8E4E21B25B716 /* SDImageAWebPCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAWebPCoder.h; path = SDWebImage/Core/SDImageAWebPCoder.h; sourceTree = ""; }; + C00601FB0A8CFBE203150BAEC58E95FC /* LYEmptyView-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "LYEmptyView-umbrella.h"; sourceTree = ""; }; + C19EBB7B5E5A5B4CB83F93B794EA02A1 /* LKS_CustomDisplayItemsMaker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LKS_CustomDisplayItemsMaker.m; path = Src/Main/Server/Others/LKS_CustomDisplayItemsMaker.m; sourceTree = ""; }; + C1D06F4343D9C630BC102E7BCD9CECCF /* NSSet+Lookin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSSet+Lookin.h"; path = "Src/Main/Shared/Category/NSSet+Lookin.h"; sourceTree = ""; }; + C202F1C5D8455CDDCAE965BD7BAAFC3B /* SDMemoryCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDMemoryCache.m; path = SDWebImage/Core/SDMemoryCache.m; sourceTree = ""; }; + C31C4A7197700436AFBAB631C088A6AE /* JXCategoryIndicatorTriangleView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorTriangleView.m; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorTriangleView.m; sourceTree = ""; }; + C398AC4FA166ECBDBFA37681D3C108CC /* JXCategoryIndicatorDotLineView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorDotLineView.h; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorDotLineView.h; sourceTree = ""; }; C3A46B03C308EEEB11F2A62BA5D2E8BE /* JXCategoryView */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = JXCategoryView; path = JXCategoryView.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - C4A783F974F95D31DCCDA721D4F965EC /* LSTTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LSTTimer.h; path = LSTTimer/Classes/LSTTimer.h; sourceTree = ""; }; - C4B0E298E792EE24705C7E8457669228 /* MJRefreshGifHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshGifHeader.h; path = MJRefresh/Custom/Header/MJRefreshGifHeader.h; sourceTree = ""; }; - C55730A1966B5DF338B0554ACC4B0B16 /* MJRefreshBackNormalFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshBackNormalFooter.m; path = MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.m; sourceTree = ""; }; - C5719A8B6A945982F0856B5A616B379E /* NSObject+LookinServer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSObject+LookinServer.m"; path = "Src/Main/Server/Category/NSObject+LookinServer.m"; sourceTree = ""; }; - C5A25B7B454717DB3993591B5E8B612E /* NSBezierPath+SDRoundedCorners.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSBezierPath+SDRoundedCorners.m"; path = "SDWebImage/Private/NSBezierPath+SDRoundedCorners.m"; sourceTree = ""; }; - C5A9A86ABA54140CD0A5B6CD44C79740 /* SDWeakProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWeakProxy.m; path = SDWebImage/Private/SDWeakProxy.m; sourceTree = ""; }; - C5FD92D35D7D1F18C67D17C9DD534533 /* LSTTimer-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "LSTTimer-prefix.pch"; sourceTree = ""; }; - C617C2D863C4AC28AF0370EDC02120A9 /* JXCategoryViewDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryViewDefines.h; path = Sources/Common/JXCategoryViewDefines.h; sourceTree = ""; }; - C626E0F07BD081EBE5955DEA5669BF14 /* UIColor+LookinServer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIColor+LookinServer.m"; path = "Src/Main/Server/Category/UIColor+LookinServer.m"; sourceTree = ""; }; - C63ECE6EA6AB3C1B9F676C1A2510CA67 /* SDWebImagePrefetcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImagePrefetcher.h; path = SDWebImage/Core/SDWebImagePrefetcher.h; sourceTree = ""; }; - C6B15D5B29642260AB882050F51A8AE5 /* HWPanModal.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = HWPanModal.debug.xcconfig; sourceTree = ""; }; - C6B6ABC9B259D86AA3C2451E682BE701 /* JXCategoryNumberView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryNumberView.h; path = Sources/Number/JXCategoryNumberView.h; sourceTree = ""; }; - C746AE302AD12A4D0F6E287CACA690C6 /* MJRefreshBackGifFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshBackGifFooter.h; path = MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.h; sourceTree = ""; }; - C74AFAA0D49E0563D9312CEA70CCF8B3 /* JXCategoryNumberCellModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryNumberCellModel.h; path = Sources/Number/JXCategoryNumberCellModel.h; sourceTree = ""; }; - C7E392E347A9555F1447E0FBB3E777E5 /* SDImageCoderHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCoderHelper.h; path = SDWebImage/Core/SDImageCoderHelper.h; sourceTree = ""; }; - C806BECAA1C722F04FE4A89D9B14A0E0 /* UIViewController+Presentation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIViewController+Presentation.m"; path = "Sources/Presentable/UIViewController+Presentation.m"; sourceTree = ""; }; - C8B51A0410EE632DF42E1C298E25B221 /* MJPropertyKey.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJPropertyKey.m; path = MJExtension/MJPropertyKey.m; sourceTree = ""; }; - C8BABB078FC5FF697A3609C777FC51FC /* HWPanModalIndicatorProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HWPanModalIndicatorProtocol.h; path = Sources/View/HWPanModalIndicatorProtocol.h; sourceTree = ""; }; - C947209A5CDFABA11FEBE5D709864961 /* HWPageSheetPresentingAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = HWPageSheetPresentingAnimation.m; path = Sources/Animator/PresentingVCAnimation/HWPageSheetPresentingAnimation.m; sourceTree = ""; }; - C9DDC2FE19D7DC5621872F440C5E8A37 /* MJProperty.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJProperty.m; path = MJExtension/MJProperty.m; sourceTree = ""; }; - C9F0D4D92726FF95FE428AA975E93DE2 /* LookinAttributeModification.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinAttributeModification.h; path = Src/Main/Shared/LookinAttributeModification.h; sourceTree = ""; }; - CA18A067DCACA93C5FD4591EBC943217 /* HWPanModal.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = HWPanModal.release.xcconfig; sourceTree = ""; }; - CAD02815855109CE0DDD83222F913EF8 /* MJRefreshNormalHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshNormalHeader.m; path = MJRefresh/Custom/Header/MJRefreshNormalHeader.m; sourceTree = ""; }; + C3D9450A4AAE9542E6A1A0473B7DF812 /* SDImageCacheConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCacheConfig.m; path = SDWebImage/Core/SDImageCacheConfig.m; sourceTree = ""; }; + C3DBF2503619D6F278D203DBF5D29B4E /* AFAutoPurgingImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFAutoPurgingImageCache.h; path = "UIKit+AFNetworking/AFAutoPurgingImageCache.h"; sourceTree = ""; }; + C41AE199679E3EEC03FA1272FE103027 /* UIBlurEffect+LookinServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIBlurEffect+LookinServer.h"; path = "Src/Main/Server/Category/UIBlurEffect+LookinServer.h"; sourceTree = ""; }; + C45DF4498F0949CD4F02FA86BFE50D93 /* SDImageTransformer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageTransformer.m; path = SDWebImage/Core/SDImageTransformer.m; sourceTree = ""; }; + C4D51AE584C5960F5C6B60C866377741 /* JXCategoryTitleVerticalZoomCellModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryTitleVerticalZoomCellModel.h; path = Sources/VerticalZoomTitle/JXCategoryTitleVerticalZoomCellModel.h; sourceTree = ""; }; + C5D725B550FCED60C80870F1B120D3B4 /* HWShoppingCartPresentingAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = HWShoppingCartPresentingAnimation.m; path = Sources/Animator/PresentingVCAnimation/HWShoppingCartPresentingAnimation.m; sourceTree = ""; }; + C63CFE9D73B31D9EBEF51E32F9AC7286 /* JXCategoryListContainerView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryListContainerView.m; path = Sources/Common/JXCategoryListContainerView.m; sourceTree = ""; }; + C644FF26241C14C759578567892EF00D /* HWPanModalPresentableHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HWPanModalPresentableHandler.h; path = Sources/Mediator/HWPanModalPresentableHandler.h; sourceTree = ""; }; + C64A52A00F5D8A13BA6BD40D1834BF56 /* UITextField+LookinServer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UITextField+LookinServer.m"; path = "Src/Main/Server/Category/UITextField+LookinServer.m"; sourceTree = ""; }; + C6553D3214536278C24D990CC36267F3 /* Image+Lookin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "Image+Lookin.m"; path = "Src/Main/Shared/Category/Image+Lookin.m"; sourceTree = ""; }; + C74EA9D59FFCBE16D0C0E5B7B2D53516 /* SDImageCacheDefine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCacheDefine.m; path = SDWebImage/Core/SDImageCacheDefine.m; sourceTree = ""; }; + C75FCCDECEB6A92A56B67E27033473B6 /* AFNetworkReachabilityManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFNetworkReachabilityManager.m; path = AFNetworking/AFNetworkReachabilityManager.m; sourceTree = ""; }; + C7F42FC60A06A5673FA7DE53298188E2 /* LKS_TraceManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LKS_TraceManager.m; path = Src/Main/Server/Others/LKS_TraceManager.m; sourceTree = ""; }; + C81473AB6162F68681F317D8EC207A4C /* LKS_GestureTargetActionsSearcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LKS_GestureTargetActionsSearcher.m; path = Src/Main/Server/Others/LKS_GestureTargetActionsSearcher.m; sourceTree = ""; }; + C86FEA7FA982FA034501F7AB37760D49 /* JXCategoryDotView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryDotView.m; path = Sources/Dot/JXCategoryDotView.m; sourceTree = ""; }; + C8ED101794ADA1876F4FFCBD1F79D622 /* SDImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageLoader.h; path = SDWebImage/Core/SDImageLoader.h; sourceTree = ""; }; + C909F8904D301FB96965DD62CE4E2CA7 /* SDWebImageCacheKeyFilter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCacheKeyFilter.m; path = SDWebImage/Core/SDWebImageCacheKeyFilter.m; sourceTree = ""; }; + C94F3031AB6C5451E9610DBD24FE9029 /* SDAnimatedImageRep.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImageRep.m; path = SDWebImage/Core/SDAnimatedImageRep.m; sourceTree = ""; }; + C98FF255A58DDF6F211BD72458B9C3D0 /* LSTPopView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "LSTPopView-dummy.m"; sourceTree = ""; }; + C9A08CB30EFC3A6CB342354C253BE4D8 /* NSString+Lookin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSString+Lookin.m"; path = "Src/Main/Shared/Category/NSString+Lookin.m"; sourceTree = ""; }; + C9E1D6C567F43B4A9410AC83170573DE /* LookinAttrType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinAttrType.h; path = Src/Main/Shared/LookinAttrType.h; sourceTree = ""; }; + CA665BB1B8AEA701C3C1A72312BFE105 /* HWPanModal.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = HWPanModal.release.xcconfig; sourceTree = ""; }; CAD1D653361EAFCC0E4FFD8252FC1E74 /* Pods-CustomKeyboard.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-CustomKeyboard.modulemap"; sourceTree = ""; }; - CAD21419CFC8A372DB941E7983ADDD9D /* SDDiskCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDiskCache.h; path = SDWebImage/Core/SDDiskCache.h; sourceTree = ""; }; - CB40236F7A3DB0EECDBA370753BEDDD4 /* LookinAppInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinAppInfo.m; path = Src/Main/Shared/LookinAppInfo.m; sourceTree = ""; }; - CBA389E7DB380F4012EFBD733C81D43A /* JXCategoryView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "JXCategoryView-dummy.m"; sourceTree = ""; }; - CC8BAAD188938B05A876ECFEAA39F2E6 /* JXCategoryIndicatorRainbowLineView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorRainbowLineView.m; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorRainbowLineView.m; sourceTree = ""; }; - CCA4AAE27B9CAF06CC2B0A3C0A3F0594 /* UIScrollView+Helper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIScrollView+Helper.m"; path = "Sources/Category/UIScrollView+Helper.m"; sourceTree = ""; }; - CDE98EE96840F02E6074E842D456A2E3 /* MASConstraintMaker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASConstraintMaker.m; path = Masonry/MASConstraintMaker.m; sourceTree = ""; }; - CE3837EC7E52B2C2855416D01CB974C7 /* FLAnimatedImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLAnimatedImage.m; path = FLAnimatedImage/FLAnimatedImage.m; sourceTree = ""; }; - CE77C4D90418C342647C55D75A5C1AE8 /* SDImageGIFCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageGIFCoder.m; path = SDWebImage/Core/SDImageGIFCoder.m; sourceTree = ""; }; - CF0E98CA3E42AAC3B854E232BB1AF7FB /* LookinCustomDisplayItemInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinCustomDisplayItemInfo.h; path = Src/Main/Shared/LookinCustomDisplayItemInfo.h; sourceTree = ""; }; + CAE21A3C562355122DA705E505CCA673 /* LookinAttributesSection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinAttributesSection.h; path = Src/Main/Shared/LookinAttributesSection.h; sourceTree = ""; }; + CB5214881D82D6C122FB4D3B471F9D93 /* LKS_ObjectRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LKS_ObjectRegistry.m; path = Src/Main/Server/Others/LKS_ObjectRegistry.m; sourceTree = ""; }; + CBB2B3782C3C4626F075A8900436D09D /* UIKit+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIKit+AFNetworking.h"; path = "UIKit+AFNetworking/UIKit+AFNetworking.h"; sourceTree = ""; }; + CBD58A6BE5B4D23DDB42D3D26A87CAEA /* SDWebImageDownloaderConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderConfig.h; path = SDWebImage/Core/SDWebImageDownloaderConfig.h; sourceTree = ""; }; + CD6BC672271DF551FD22D8BABC528CA6 /* LKS_EventHandlerMaker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LKS_EventHandlerMaker.m; path = Src/Main/Server/Others/LKS_EventHandlerMaker.m; sourceTree = ""; }; + CDE56910104E914C73DC565FDFEABE34 /* HWPanModal-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "HWPanModal-Info.plist"; sourceTree = ""; }; + CE2B5265F3721FD7EAE15556CCDB1151 /* NSButton+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSButton+WebCache.h"; path = "SDWebImage/Core/NSButton+WebCache.h"; sourceTree = ""; }; + CE5782C68BCDC8C49DD74B206B3FFFF1 /* LSTTimer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LSTTimer.m; path = LSTTimer/Classes/LSTTimer.m; sourceTree = ""; }; CF1281E58AA1045D4B7F33FC56691C42 /* SDWebImage-SDWebImage */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "SDWebImage-SDWebImage"; path = SDWebImage.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - CF64931699D303A3C9AE1FFC4682E257 /* JXCategoryIndicatorCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorCell.m; path = Sources/Indicator/JXCategoryIndicatorCell.m; sourceTree = ""; }; - CF85D3EF505C17C565E691AC344CCE5C /* JXPagerListContainerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXPagerListContainerView.h; path = Sources/JXPagerView/JXPagerListContainerView.h; sourceTree = ""; }; - CF9BCBE90C3B7C448764C897685CB0E3 /* MASViewConstraint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASViewConstraint.m; path = Masonry/MASViewConstraint.m; sourceTree = ""; }; - CFD12B92C17E28346EDC2EC75D0BF494 /* NSObject+MJProperty.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSObject+MJProperty.m"; path = "MJExtension/NSObject+MJProperty.m"; sourceTree = ""; }; - D013F3B6606D04CFD12051F02350DB55 /* UIVisualEffectView+LookinServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIVisualEffectView+LookinServer.h"; path = "Src/Main/Server/Category/UIVisualEffectView+LookinServer.h"; sourceTree = ""; }; - D0317376A8F5B09CBBAC757A9410CF00 /* LSTPopView.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = LSTPopView.debug.xcconfig; sourceTree = ""; }; - D03FDB7D5A636ED3DC51EF05677C546A /* LookinServerDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinServerDefines.h; path = Src/Main/Server/Others/LookinServerDefines.h; sourceTree = ""; }; - D16058E57E3F07CA628E8A17A3B944C1 /* LKSConfigManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LKSConfigManager.h; path = Src/Main/Server/Others/LKSConfigManager.h; sourceTree = ""; }; - D2F471FC57FF6DD1F698134B35D27C95 /* SDImageIOCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageIOCoder.m; path = SDWebImage/Core/SDImageIOCoder.m; sourceTree = ""; }; - D31BFB25B2F3620735E09AC6DE1CBFE3 /* JXPagerView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXPagerView.m; path = Sources/JXPagerView/JXPagerView.m; sourceTree = ""; }; - D3543E70B7F1B6F0CB25AB731CA0DFBE /* SDImageAssetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAssetManager.h; path = SDWebImage/Private/SDImageAssetManager.h; sourceTree = ""; }; - D3CF8B366EB9A41FEDB94035F404215D /* NSArray+MASAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSArray+MASAdditions.m"; path = "Masonry/NSArray+MASAdditions.m"; sourceTree = ""; }; - D3F906D47799FB7ED8D4AA1C036BF3BC /* JXPagerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXPagerView.h; path = Sources/JXPagerView/JXPagerView.h; sourceTree = ""; }; - D40BB639047461966566FFED666B3ACF /* MJRefreshFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshFooter.h; path = MJRefresh/Base/MJRefreshFooter.h; sourceTree = ""; }; - D40E6AE30D19137ABA0A5D046329BCCD /* NSSet+Lookin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSSet+Lookin.h"; path = "Src/Main/Shared/Category/NSSet+Lookin.h"; sourceTree = ""; }; - D48043130F64D218A676B16D2CDA0ED8 /* ViewController+MASAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ViewController+MASAdditions.h"; path = "Masonry/ViewController+MASAdditions.h"; sourceTree = ""; }; - D4AA530BA675D0E78BDD9644338B48A3 /* JXCategoryTitleImageCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryTitleImageCell.m; path = Sources/TitleImage/JXCategoryTitleImageCell.m; sourceTree = ""; }; - D4BC45247918896A52CA0C54F038B447 /* NSArray+Lookin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSArray+Lookin.m"; path = "Src/Main/Shared/Category/NSArray+Lookin.m"; sourceTree = ""; }; - D4C17E87C77E85F28C83D98FAB4AB7F4 /* JXCategoryImageCellModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryImageCellModel.h; path = Sources/Image/JXCategoryImageCellModel.h; sourceTree = ""; }; - D4E6C9FAE7DD5348F64FBD66AA03DA5B /* JXCategoryIndicatorComponentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorComponentView.m; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorComponentView.m; sourceTree = ""; }; - D4ECB35518D14625B419D0EC58050171 /* ResourceBundle-MJRefresh.Privacy-MJRefresh-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-MJRefresh.Privacy-MJRefresh-Info.plist"; sourceTree = ""; }; - D5100072476E008E3F5E024784855C6A /* MBProgressHUD-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MBProgressHUD-umbrella.h"; sourceTree = ""; }; - D5140E810D9AB3FD3FA724CCDD59D3AD /* Masonry.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Masonry.modulemap; sourceTree = ""; }; - D52171C8DB630868289299203B4ECD0C /* NSObject+Lookin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSObject+Lookin.m"; path = "Src/Main/Shared/Category/NSObject+Lookin.m"; sourceTree = ""; }; - D547696F5943987BC61D389F16B201E8 /* SDAnimatedImageView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "SDAnimatedImageView+WebCache.m"; path = "SDWebImage/Core/SDAnimatedImageView+WebCache.m"; sourceTree = ""; }; - D58A6363674921528AA6EC052D65C890 /* MJRefresh-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "MJRefresh-dummy.m"; sourceTree = ""; }; - D5D75E71D2ABCC5D3DDCC662DACBFAED /* JXCategoryIndicatorImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorImageView.h; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorImageView.h; sourceTree = ""; }; - D675E9EED90BA5941D43EB2C520A01B8 /* WKWebView+AFNetworking.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "WKWebView+AFNetworking.m"; path = "UIKit+AFNetworking/WKWebView+AFNetworking.m"; sourceTree = ""; }; - D68B54EB4EEB9AF6B9ED16CAB83E16BA /* SDWebImageDownloaderOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderOperation.m; path = SDWebImage/Core/SDWebImageDownloaderOperation.m; sourceTree = ""; }; - D6F5B88F49EB151A388B58319A67E2A1 /* JXCategoryIndicatorProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorProtocol.h; path = Sources/Common/JXCategoryIndicatorProtocol.h; sourceTree = ""; }; + CF46C0579CB3C54966C0F025487DB215 /* JXPagerSmoothView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXPagerSmoothView.m; path = Sources/JXPagerView/JXPagerSmoothView.m; sourceTree = ""; }; + CF6ABA6691731EEA533F56170FB03C5C /* UIView+WebCacheOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+WebCacheOperation.h"; path = "SDWebImage/Core/UIView+WebCacheOperation.h"; sourceTree = ""; }; + CF7B4B9CB0EF762A12884D6FE337E068 /* HWPanModalAnimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HWPanModalAnimator.h; path = Sources/Animator/HWPanModalAnimator.h; sourceTree = ""; }; + CF91BA63B659D0E10C9E123EBEAB8FA3 /* UIImage+ForceDecode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+ForceDecode.m"; path = "SDWebImage/Core/UIImage+ForceDecode.m"; sourceTree = ""; }; + CFC8ED8D34DD2679124911EB0F515607 /* LookinObject.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinObject.m; path = Src/Main/Shared/LookinObject.m; sourceTree = ""; }; + D00729EFDA62359B2F2AA1EF43FADFD9 /* LKS_CustomAttrModificationHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LKS_CustomAttrModificationHandler.m; path = Src/Main/Server/Connection/RequestHandler/LKS_CustomAttrModificationHandler.m; sourceTree = ""; }; + D0B1EDD790AB62D80A6CA23D5272938B /* LookinAttributesGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinAttributesGroup.m; path = Src/Main/Shared/LookinAttributesGroup.m; sourceTree = ""; }; + D1046C4A0F4D596969B881D83BCC0FA1 /* FLAnimatedImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLAnimatedImage.m; path = FLAnimatedImage/FLAnimatedImage.m; sourceTree = ""; }; + D25C8F67455D872A48F4797213321EA4 /* JXCategoryIndicatorRainbowLineView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorRainbowLineView.h; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorRainbowLineView.h; sourceTree = ""; }; + D30B8333D334528105E28100C243348D /* MBProgressHUD-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "MBProgressHUD-dummy.m"; sourceTree = ""; }; + D3FD4542A2D174FC95524833AB672073 /* JXPagingView.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JXPagingView.release.xcconfig; sourceTree = ""; }; + D411D25D78A2F9E3CF17B20443ED9F40 /* MJRefreshNormalHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshNormalHeader.h; path = MJRefresh/Custom/Header/MJRefreshNormalHeader.h; sourceTree = ""; }; + D444527057532BACBF8EC98BE62D3E03 /* SDGraphicsImageRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDGraphicsImageRenderer.h; path = SDWebImage/Core/SDGraphicsImageRenderer.h; sourceTree = ""; }; + D44C8E719DA4251716FDA4B2519C022D /* NSObject+MJProperty.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSObject+MJProperty.m"; path = "MJExtension/NSObject+MJProperty.m"; sourceTree = ""; }; + D4CFF1EB3CBDD5217E39DD58BD101359 /* LookinEventHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinEventHandler.m; path = Src/Main/Shared/LookinEventHandler.m; sourceTree = ""; }; + D5119B7CF0FE429CF0E185983E72F98F /* JXCategoryNumberView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryNumberView.m; path = Sources/Number/JXCategoryNumberView.m; sourceTree = ""; }; + D51E4D4230E01D5F3D9340BDF320C3E1 /* JXCategoryImageCellModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryImageCellModel.h; path = Sources/Image/JXCategoryImageCellModel.h; sourceTree = ""; }; + D564B14F434E85E8016FF192E33548A8 /* JXPagerMainTableView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXPagerMainTableView.h; path = Sources/JXPagerView/JXPagerMainTableView.h; sourceTree = ""; }; + D5909A44E1AC01893309CADDDBC4E50C /* UILabel+LookinServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UILabel+LookinServer.h"; path = "Src/Main/Server/Category/UILabel+LookinServer.h"; sourceTree = ""; }; + D5BBA19EC013D7414BE28B29DCA7518D /* FLAnimatedImage.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FLAnimatedImage.release.xcconfig; sourceTree = ""; }; + D68722AFBA338282E0B3C89AFE0F83AC /* JXCategoryIndicatorBackgroundView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorBackgroundView.m; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorBackgroundView.m; sourceTree = ""; }; D742A7EF918BC67B0884AF366F7415FD /* Pods-CustomKeyboard-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-CustomKeyboard-acknowledgements.plist"; sourceTree = ""; }; - D744043462D81E4ED2BB1ECAE8E9F696 /* SDImageCachesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCachesManager.h; path = SDWebImage/Core/SDImageCachesManager.h; sourceTree = ""; }; - D7708C3743D0A5955D7A50F4A72818A5 /* JXCategoryView.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JXCategoryView.debug.xcconfig; sourceTree = ""; }; - D7DFD14540146731FB9E466FA1EB81F0 /* LookinAttrType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinAttrType.h; path = Src/Main/Shared/LookinAttrType.h; sourceTree = ""; }; - D843F393C308E0D3BCB88A0B04FDB291 /* UIImage+ForceDecode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+ForceDecode.h"; path = "SDWebImage/Core/UIImage+ForceDecode.h"; sourceTree = ""; }; - D9922CA9D57AA94D9EE06129264F7958 /* Masonry-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Masonry-Info.plist"; sourceTree = ""; }; - D9DA60EBF6A57B0D3224E3ACD3E51971 /* JXCategoryCollectionView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryCollectionView.m; path = Sources/Common/JXCategoryCollectionView.m; sourceTree = ""; }; - D9EC522C5B6A10C53A05FE81CED85983 /* NSString+Lookin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSString+Lookin.m"; path = "Src/Main/Shared/Category/NSString+Lookin.m"; sourceTree = ""; }; - DA5203B4ACDB110F236306ADB5531C98 /* MJExtension-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MJExtension-prefix.pch"; sourceTree = ""; }; - DAB0E506E749384DE93170FA1EE1FD3B /* HWPanContainerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HWPanContainerView.h; path = Sources/View/HWPanContainerView.h; sourceTree = ""; }; - DACDF6DBB7030D05CC43C7DB516265EE /* HWVisualEffectView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = HWVisualEffectView.m; path = Sources/View/HWVisualEffectView.m; sourceTree = ""; }; - DACFBFCC588CFB73AE8A6DB153DEA42F /* JXCategoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryView.h; path = Sources/JXCategoryView.h; sourceTree = ""; }; - DAFBC54BDE2AC21397492351C31C587A /* HWPanModalPresentableHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HWPanModalPresentableHandler.h; path = Sources/Mediator/HWPanModalPresentableHandler.h; sourceTree = ""; }; - DB3619AB8798CD8CAE31E140F80F2DC0 /* MBProgressHUD.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = MBProgressHUD.m; sourceTree = ""; }; - DB3CBBCBF7B8B49A86FAC8D0A1741C77 /* UIImage+LookinServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+LookinServer.h"; path = "Src/Main/Server/Category/UIImage+LookinServer.h"; sourceTree = ""; }; - DB866CD01C61417D45924946690C442B /* HWPanModal.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = HWPanModal.modulemap; sourceTree = ""; }; - DBE1F0821F32567F3E84359D65C8422C /* SDWebImageDownloaderDecryptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderDecryptor.m; path = SDWebImage/Core/SDWebImageDownloaderDecryptor.m; sourceTree = ""; }; - DBE3855004E17CACAC82F75DF8EFEBD4 /* LSTPopView-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "LSTPopView-umbrella.h"; sourceTree = ""; }; - DC0451732A9C9A896EEC15BEC88B3151 /* LKS_InbuiltAttrModificationHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LKS_InbuiltAttrModificationHandler.m; path = Src/Main/Server/Connection/RequestHandler/LKS_InbuiltAttrModificationHandler.m; sourceTree = ""; }; - DC285A6C8053D7E2AE423BE51B24E8AE /* AFURLRequestSerialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFURLRequestSerialization.h; path = AFNetworking/AFURLRequestSerialization.h; sourceTree = ""; }; - DC82DAFD220FAA7899CE21078C2C649D /* UIView+LookinServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+LookinServer.h"; path = "Src/Main/Server/Category/UIView+LookinServer.h"; sourceTree = ""; }; - DC870A534B766E7815C7744EE9E7E3E1 /* SDImageAWebPCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAWebPCoder.h; path = SDWebImage/Core/SDImageAWebPCoder.h; sourceTree = ""; }; + D7C0280DF79D384D6CBED6E080E02BB8 /* LSTPopView-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "LSTPopView-umbrella.h"; sourceTree = ""; }; + D7F6132E07FDE40130D6C51920456A21 /* UIButton+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIButton+AFNetworking.h"; path = "UIKit+AFNetworking/UIButton+AFNetworking.h"; sourceTree = ""; }; + D8B8A062E76BF87D54F581F6428D4E28 /* NSLayoutConstraint+MASDebugAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSLayoutConstraint+MASDebugAdditions.m"; path = "Masonry/NSLayoutConstraint+MASDebugAdditions.m"; sourceTree = ""; }; + D98B4BEA4820634A8F01172731FF97B7 /* JXCategoryView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "JXCategoryView-dummy.m"; sourceTree = ""; }; + D9BB987ADE61FFDF3C240961F2EB4DDB /* LookinConnectionResponseAttachment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinConnectionResponseAttachment.h; path = Src/Main/Shared/LookinConnectionResponseAttachment.h; sourceTree = ""; }; + D9CF33220A4EDFF59077DE1F83605414 /* JXCategoryListContainerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryListContainerView.h; path = Sources/Common/JXCategoryListContainerView.h; sourceTree = ""; }; + DA08E928976E65BC11D71562A0E4FBA2 /* LSTPopView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "LSTPopView-prefix.pch"; sourceTree = ""; }; + DA0C012CAB8552E7EA8382B0E5D6B738 /* UIImageView+LookinServer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+LookinServer.m"; path = "Src/Main/Server/Category/UIImageView+LookinServer.m"; sourceTree = ""; }; + DA49453EBB9C905AD701D17F18479113 /* LKS_ConnectionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LKS_ConnectionManager.m; path = Src/Main/Server/Connection/LKS_ConnectionManager.m; sourceTree = ""; }; + DB1B5D6DA097974C176F91F3853055EC /* ViewController+MASAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "ViewController+MASAdditions.m"; path = "Masonry/ViewController+MASAdditions.m"; sourceTree = ""; }; + DB3B6BBCBC04C438F099DE5DEC15C188 /* UIViewController+Presentation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIViewController+Presentation.h"; path = "Sources/Presentable/UIViewController+Presentation.h"; sourceTree = ""; }; + DB48FEC8123075E04395CF34F6F8227D /* HWPanModalPresentationAnimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HWPanModalPresentationAnimator.h; path = Sources/Animator/HWPanModalPresentationAnimator.h; sourceTree = ""; }; + DB7D4CE7BA063A9CA415CD86C8825985 /* LSTPopView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LSTPopView.h; path = LSTPopView/Classes/Code/LSTPopView.h; sourceTree = ""; }; + DBFA6FCFCE1CB3F169BDBDCE936950B5 /* LKS_ObjectRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LKS_ObjectRegistry.h; path = Src/Main/Server/Others/LKS_ObjectRegistry.h; sourceTree = ""; }; + DC7496C927F9E881D19A203C207B5417 /* UIView+LookinServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+LookinServer.h"; path = "Src/Main/Server/Category/UIView+LookinServer.h"; sourceTree = ""; }; + DC85B08C4C82F12C3AA7970FE44E1D9F /* UIColor+SDHexString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIColor+SDHexString.h"; path = "SDWebImage/Private/UIColor+SDHexString.h"; sourceTree = ""; }; DCA062FD08AC9694D8D781B3492421C5 /* Pods-keyBoard */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-keyBoard"; path = Pods_keyBoard.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + DCB771163568003A2EA8F4B1A606B9ED /* UIActivityIndicatorView+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIActivityIndicatorView+AFNetworking.h"; path = "UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h"; sourceTree = ""; }; DCFE00F3CC8CED67258D7F7DD13F3156 /* Pods-keyBoard-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-keyBoard-frameworks.sh"; sourceTree = ""; }; - DD1439668AF92748DEFAD18BF418CE55 /* MJRefreshBackStateFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshBackStateFooter.m; path = MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.m; sourceTree = ""; }; - DD3BFE6DB15E8FF64920F720EA31EEDE /* MJRefreshNormalTrailer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshNormalTrailer.m; path = MJRefresh/Custom/Trailer/MJRefreshNormalTrailer.m; sourceTree = ""; }; - DD3CC2F2CD0FD607BD99AA89E970269A /* HWPageSheetPresentingAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HWPageSheetPresentingAnimation.h; path = Sources/Animator/PresentingVCAnimation/HWPageSheetPresentingAnimation.h; sourceTree = ""; }; - DDA8FA3EA27827F124700F1B6176E4CE /* Bugly.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Bugly.debug.xcconfig; sourceTree = ""; }; - DDAA59B8AF34E0C4765874AEE69571F7 /* JXCategoryTitleImageCellModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryTitleImageCellModel.h; path = Sources/TitleImage/JXCategoryTitleImageCellModel.h; sourceTree = ""; }; - DDDA744A029AF23E45515CE37C056256 /* LookinAttribute.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinAttribute.m; path = Src/Main/Shared/LookinAttribute.m; sourceTree = ""; }; + DD2F0E472487CBFBA5CA4F3C62C1BB0B /* NSObject+MJCoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+MJCoding.h"; path = "MJExtension/NSObject+MJCoding.h"; sourceTree = ""; }; + DE0511947F57D1CF3F274B6414AE449B /* UIScrollView+MJRefresh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIScrollView+MJRefresh.h"; path = "MJRefresh/UIScrollView+MJRefresh.h"; sourceTree = ""; }; DE19C7D984CBC535E4768F5543458A1E /* LSTTimer */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = LSTTimer; path = LSTTimer.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - DEDB698B7BC2AF63B53722CF1D2D8E57 /* MJRefreshAutoNormalFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshAutoNormalFooter.h; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.h; sourceTree = ""; }; - DEDFC34DB720F4FD92E634E486425845 /* MASViewConstraint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASViewConstraint.h; path = Masonry/MASViewConstraint.h; sourceTree = ""; }; - E032CFFEFE6D0B2BC568E604265CD74C /* DZNEmptyDataSet.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DZNEmptyDataSet.modulemap; sourceTree = ""; }; + DE378B71C4559C86FA84F1AB2F15BD03 /* AFURLRequestSerialization.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFURLRequestSerialization.m; path = AFNetworking/AFURLRequestSerialization.m; sourceTree = ""; }; + DE4F66BD16AF47C58F5E08D62D7916E3 /* HWPanModalPresenterProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HWPanModalPresenterProtocol.h; path = Sources/Presenter/HWPanModalPresenterProtocol.h; sourceTree = ""; }; + DE7E60B5B6A0850596F935D95CAFE167 /* MJRefreshAutoFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshAutoFooter.h; path = MJRefresh/Base/MJRefreshAutoFooter.h; sourceTree = ""; }; + DEDA7D852A16AEB2E4133F8138BB40A3 /* NSObject+MJClass.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+MJClass.h"; path = "MJExtension/NSObject+MJClass.h"; sourceTree = ""; }; + DEEA81C89F22AF300ABFA4E5550B7B06 /* SDImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCache.h; path = SDWebImage/Core/SDImageCache.h; sourceTree = ""; }; + DEFCE7D8BFD813860A380F7F5B5EB401 /* LKS_AttrModificationPatchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LKS_AttrModificationPatchHandler.m; path = Src/Main/Server/Connection/RequestHandler/LKS_AttrModificationPatchHandler.m; sourceTree = ""; }; + DF017A36F518C19E10298190FD8A84C4 /* LKS_RequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LKS_RequestHandler.m; path = Src/Main/Server/Connection/LKS_RequestHandler.m; sourceTree = ""; }; + DF80C06856CA889ADB8807594055C7DF /* JXCategoryView.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JXCategoryView.release.xcconfig; sourceTree = ""; }; + DF85367F662269F3652AFC693AA2B00F /* LookinAppInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinAppInfo.m; path = Src/Main/Shared/LookinAppInfo.m; sourceTree = ""; }; + DFE214BE294126C1B4FFE49DDADA7AEE /* SDImageCachesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCachesManager.m; path = SDWebImage/Core/SDImageCachesManager.m; sourceTree = ""; }; + E00B4B67B95B1D4B1001EF45F23EF0C4 /* LYEmptyView.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = LYEmptyView.release.xcconfig; sourceTree = ""; }; + E01ADBA325921AF74B0FBD58F7BB5032 /* JXCategoryTitleCellModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryTitleCellModel.h; path = Sources/Title/JXCategoryTitleCellModel.h; sourceTree = ""; }; E03F152E95B6924D2486511337D24503 /* JXPagingView-JXPagerView */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "JXPagingView-JXPagerView"; path = JXPagerView.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - E075739451FCFAA914670EB353642C16 /* UIImage+LookinServer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+LookinServer.m"; path = "Src/Main/Server/Category/UIImage+LookinServer.m"; sourceTree = ""; }; - E0A4E94FB3CF9B468E72117C85C2E773 /* JXCategoryViewAnimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryViewAnimator.h; path = Sources/Common/JXCategoryViewAnimator.h; sourceTree = ""; }; - E138C277A1DD60E5BB20AB4EC7CEBDB2 /* SDWebImageDownloaderConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderConfig.h; path = SDWebImage/Core/SDWebImageDownloaderConfig.h; sourceTree = ""; }; - E152B4E044E172623798E791ACCC157E /* UIProgressView+AFNetworking.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIProgressView+AFNetworking.m"; path = "UIKit+AFNetworking/UIProgressView+AFNetworking.m"; sourceTree = ""; }; - E1921A1332A20D950700741950E97126 /* CALayer+LookinServer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "CALayer+LookinServer.m"; path = "Src/Main/Server/Category/CALayer+LookinServer.m"; sourceTree = ""; }; - E1F236D1BF028AEAD75A9FB3C9DCAE0F /* KeyValueObserver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KeyValueObserver.m; path = Sources/KVO/KeyValueObserver.m; sourceTree = ""; }; + E0742EB318197474CB672E4520705ACC /* JXPagerListContainerView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXPagerListContainerView.m; path = Sources/JXPagerView/JXPagerListContainerView.m; sourceTree = ""; }; + E0DD4370E4AF2D75716AE1B5D67EABEB /* SDWebImageIndicator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageIndicator.h; path = SDWebImage/Core/SDWebImageIndicator.h; sourceTree = ""; }; E214C17CF404D45BDF92DD6C18D371FA /* Pods-keyBoard-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-keyBoard-acknowledgements.markdown"; sourceTree = ""; }; - E259D7D54703B047363E50046A949F68 /* JXPagingView-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "JXPagingView-Info.plist"; sourceTree = ""; }; - E25EECD78C776DB2FDB519D3AA7CB0BD /* JXCategoryListContainerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryListContainerView.h; path = Sources/Common/JXCategoryListContainerView.h; sourceTree = ""; }; - E29E39BBB558CC51A6DB91379351B72E /* UIColor+SDHexString.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIColor+SDHexString.m"; path = "SDWebImage/Private/UIColor+SDHexString.m"; sourceTree = ""; }; - E3535B97DCD1B05E059D045B16700F34 /* FLAnimatedImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FLAnimatedImage-dummy.m"; sourceTree = ""; }; - E392F0E432282B33F9A7A49E5F6DFDE1 /* SDWebImage.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SDWebImage.release.xcconfig; sourceTree = ""; }; - E42238B57F88C70438DE479E184E4352 /* JXCategoryTitleView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryTitleView.h; path = Sources/Title/JXCategoryTitleView.h; sourceTree = ""; }; - E44ED3A05255119AA352B7DE0C64E994 /* View+MASAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "View+MASAdditions.h"; path = "Masonry/View+MASAdditions.h"; sourceTree = ""; }; - E48A50CB4DE0A87DE4F3E1BFE24DC7B7 /* SDWebImagePrefetcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImagePrefetcher.m; path = SDWebImage/Core/SDWebImagePrefetcher.m; sourceTree = ""; }; + E23048DA7D038B179D12173BA0F800DB /* LookinServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinServer.h; path = Src/Main/Server/LookinServer.h; sourceTree = ""; }; + E312EC8FB74A492C6D5A647700644AC4 /* NSSet+Lookin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSSet+Lookin.m"; path = "Src/Main/Shared/Category/NSSet+Lookin.m"; sourceTree = ""; }; + E368F7BC820788B717CC047A744E4326 /* SDImageCacheConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCacheConfig.h; path = SDWebImage/Core/SDImageCacheConfig.h; sourceTree = ""; }; + E386525610DF7AB4E84ED0202969AB8E /* FLAnimatedImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLAnimatedImage.h; path = FLAnimatedImage/include/FLAnimatedImage.h; sourceTree = ""; }; + E38A10934CB29F9B2C75A0785209FA84 /* SDWebImageDownloaderDecryptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderDecryptor.m; path = SDWebImage/Core/SDWebImageDownloaderDecryptor.m; sourceTree = ""; }; + E45A9679E38D826E316675D8F368F69C /* MJRefreshBackNormalFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshBackNormalFooter.h; path = MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.h; sourceTree = ""; }; + E4718E4C19C181FBAEBD080580F8C026 /* SDImageIOCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOCoder.h; path = SDWebImage/Core/SDImageIOCoder.h; sourceTree = ""; }; E49D6D248DD1CEE584E6776B9164A1B2 /* MJRefresh */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = MJRefresh; path = MJRefresh.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - E5592C4FA7C5389CD5E3CCE2F804F447 /* HWPanModal-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "HWPanModal-prefix.pch"; sourceTree = ""; }; - E5AA796F8B4298B625A467D39523F40F /* LKS_EventHandlerMaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LKS_EventHandlerMaker.h; path = Src/Main/Server/Others/LKS_EventHandlerMaker.h; sourceTree = ""; }; - E5B1C13BB84FC1E79BC9BB233B793A5A /* MJExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJExtension.h; path = MJExtension/MJExtension.h; sourceTree = ""; }; - E5EA191D7CFA74A3FEAFB27130A3FEC7 /* RTLManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RTLManager.m; path = Sources/RLTManager/RTLManager.m; sourceTree = ""; }; - E654A0C1F961A76933C784134A3D98E4 /* LookinServer.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = LookinServer.debug.xcconfig; sourceTree = ""; }; - E6B846D03C97210EDD55850D04A8F27A /* SDImageCachesManagerOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCachesManagerOperation.m; path = SDWebImage/Private/SDImageCachesManagerOperation.m; sourceTree = ""; }; - E74AC99A06CC9DE9D81D54044B013F98 /* LKS_CustomDisplayItemsMaker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LKS_CustomDisplayItemsMaker.m; path = Src/Main/Server/Others/LKS_CustomDisplayItemsMaker.m; sourceTree = ""; }; - E87C7E8B87671964EE3B94CB801C492E /* SDWebImage-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "SDWebImage-Info.plist"; sourceTree = ""; }; - E889A3C02C6D9C2F5501AF30759E916C /* SDImageLoadersManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageLoadersManager.h; path = SDWebImage/Core/SDImageLoadersManager.h; sourceTree = ""; }; - E8DC9FFB899510CE978017ADFAFE6D87 /* HWPanModalPresenterProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HWPanModalPresenterProtocol.h; path = Sources/Presenter/HWPanModalPresenterProtocol.h; sourceTree = ""; }; - E9598F4E504AE0DA98A0B2DC305F1C83 /* MJRefreshConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshConfig.h; path = MJRefresh/MJRefreshConfig.h; sourceTree = ""; }; - E95C47EFA2CADA467B5A46831F0EA87A /* SDWebImageCacheSerializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCacheSerializer.h; path = SDWebImage/Core/SDWebImageCacheSerializer.h; sourceTree = ""; }; - E97B2ACE11733D7DD5ECA116979B91D5 /* LookinEventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinEventHandler.h; path = Src/Main/Shared/LookinEventHandler.h; sourceTree = ""; }; - E9CB22320707CAEB4EE4C1DF62EB9E1A /* UIView+LookinServer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+LookinServer.m"; path = "Src/Main/Server/Category/UIView+LookinServer.m"; sourceTree = ""; }; - EAEC3302C39E58E44D49A12FA8699A84 /* SDImageFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageFrame.m; path = SDWebImage/Core/SDImageFrame.m; sourceTree = ""; }; - EB21E143FD58D712C16E9026FBFFE194 /* MASLayoutConstraint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASLayoutConstraint.m; path = Masonry/MASLayoutConstraint.m; sourceTree = ""; }; - EB3C413B4ED21D886E50FCBC0761408E /* LKS_ExportManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LKS_ExportManager.h; path = Src/Main/Server/Others/LKS_ExportManager.h; sourceTree = ""; }; - EC33F9EE9311F0E41E69AB2D40770217 /* SDWebImageDownloaderResponseModifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderResponseModifier.h; path = SDWebImage/Core/SDWebImageDownloaderResponseModifier.h; sourceTree = ""; }; - EC4AC84F5855EC104608477917DF3145 /* JXCategoryIndicatorDotLineView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorDotLineView.m; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorDotLineView.m; sourceTree = ""; }; - EC57F0405D7809ECABB52C0C041C6F2F /* JXCategoryImageCellModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryImageCellModel.m; path = Sources/Image/JXCategoryImageCellModel.m; sourceTree = ""; }; - EC9D66F9AD565D0A6E6595CFC812165E /* LookinStaticAsyncUpdateTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinStaticAsyncUpdateTask.m; path = Src/Main/Shared/LookinStaticAsyncUpdateTask.m; sourceTree = ""; }; - ECA422AB0F45E3F4B650188FEE476C8C /* UIView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+WebCache.m"; path = "SDWebImage/Core/UIView+WebCache.m"; sourceTree = ""; }; - ED2932A528EF3931C345CFE64B9F95D6 /* SDWebImageOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageOperation.m; path = SDWebImage/Core/SDWebImageOperation.m; sourceTree = ""; }; - ED6F94603AF0AF72D292CADE8ABCEEB3 /* MASConstraint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASConstraint.h; path = Masonry/MASConstraint.h; sourceTree = ""; }; - ED71DE4537C6ECADC81696A80C943E64 /* HWBackgroundConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = HWBackgroundConfig.m; path = Sources/View/HWBackgroundConfig.m; sourceTree = ""; }; - ED8D9D4C66EB7593131560466A9EEB08 /* SDWebImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SDWebImage-prefix.pch"; sourceTree = ""; }; - EE1A5661BE1EACFB3D2C7F19D51BF011 /* NSString+MJExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSString+MJExtension.h"; path = "MJExtension/NSString+MJExtension.h"; sourceTree = ""; }; - EE80578D9DB416BD158323BE4D5C76F4 /* HWPanModal-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "HWPanModal-dummy.m"; sourceTree = ""; }; - EEB6F4442CB80A88D94B35721714C121 /* Color+Lookin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Color+Lookin.h"; path = "Src/Main/Shared/Category/Color+Lookin.h"; sourceTree = ""; }; - EED2C7FD129EA6F065286A12502B79B7 /* JXCategoryDotView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryDotView.m; path = Sources/Dot/JXCategoryDotView.m; sourceTree = ""; }; - EF3A8DFB97BB54D169F6E8AC578F498C /* JXCategoryDotCellModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryDotCellModel.m; path = Sources/Dot/JXCategoryDotCellModel.m; sourceTree = ""; }; - EF426A2B87D32263A2C56A13732C8201 /* LSTTimer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LSTTimer.m; path = LSTTimer/Classes/LSTTimer.m; sourceTree = ""; }; - F0FF9B39CB74F30B336CF7D4085E2AE0 /* UICollectionViewLayout+MJRefresh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UICollectionViewLayout+MJRefresh.h"; path = "MJRefresh/UICollectionViewLayout+MJRefresh.h"; sourceTree = ""; }; - F15C652E7FDB0BE287A551718B00B6A8 /* JXCategoryNumberCellModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryNumberCellModel.m; path = Sources/Number/JXCategoryNumberCellModel.m; sourceTree = ""; }; - F1C50876E480E256FAA99FC38F2BC478 /* LKS_ConnectionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LKS_ConnectionManager.m; path = Src/Main/Server/Connection/LKS_ConnectionManager.m; sourceTree = ""; }; - F21EDB4000AA52958FC207353BC36367 /* UIImageView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+WebCache.h"; path = "SDWebImage/Core/UIImageView+WebCache.h"; sourceTree = ""; }; - F246E4D58E65C83AB3493871F692FC9C /* SDDeviceHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDeviceHelper.h; path = SDWebImage/Private/SDDeviceHelper.h; sourceTree = ""; }; - F2698AC3972900E338490644A2E03A2A /* LookinCodingValueType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinCodingValueType.h; path = Src/Main/Shared/LookinCodingValueType.h; sourceTree = ""; }; - F2A8643D9113999359ADC6C79DA48111 /* Color+Lookin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "Color+Lookin.m"; path = "Src/Main/Shared/Category/Color+Lookin.m"; sourceTree = ""; }; - F2EB780D15F77D48AEC0D3A47833557E /* LSTPopView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "LSTPopView-prefix.pch"; sourceTree = ""; }; - F3AD144DF03231D478D237DCFC615D36 /* LookinConnectionAttachment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinConnectionAttachment.h; path = Src/Main/Shared/LookinConnectionAttachment.h; sourceTree = ""; }; - F451B2E12A8192978BB7FB1B45BF1E04 /* MASCompositeConstraint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASCompositeConstraint.h; path = Masonry/MASCompositeConstraint.h; sourceTree = ""; }; - F45F2EB9AE5E2D5BDC0F9860DB695385 /* UIImageView+LookinServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+LookinServer.h"; path = "Src/Main/Server/Category/UIImageView+LookinServer.h"; sourceTree = ""; }; - F4D2D27159CC3A8AAABD93291FBA2B48 /* LookinServer.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = LookinServer.modulemap; sourceTree = ""; }; - F549CCE65FFF5AC81AB62FDCCB6CB8DC /* AFNetworking.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = AFNetworking.modulemap; sourceTree = ""; }; - F55015AACD21AF6274741BBDAC6148E2 /* NSImage+Compatibility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSImage+Compatibility.h"; path = "SDWebImage/Core/NSImage+Compatibility.h"; sourceTree = ""; }; - F6CC661C43717D8BBB4405FD037BDC03 /* LookinCustomAttrModification.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinCustomAttrModification.m; path = Src/Main/Shared/LookinCustomAttrModification.m; sourceTree = ""; }; - F7CD4CF41A222A66B3E435AB32DF697D /* NSObject+MJClass.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+MJClass.h"; path = "MJExtension/NSObject+MJClass.h"; sourceTree = ""; }; - F7FE08919F8BE5AACFB3A1E812E57C03 /* AFAutoPurgingImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFAutoPurgingImageCache.h; path = "UIKit+AFNetworking/AFAutoPurgingImageCache.h"; sourceTree = ""; }; - F86F79271CDA27370B63C4004FB83EF7 /* SDImageFramePool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageFramePool.h; path = SDWebImage/Private/SDImageFramePool.h; sourceTree = ""; }; - F8A31B7D92D4FBD879F8C39ED3139439 /* SDWebImageError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageError.m; path = SDWebImage/Core/SDWebImageError.m; sourceTree = ""; }; - F904F7CF43AB518217FB1AB9236020D4 /* UIColor+JXAdd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIColor+JXAdd.h"; path = "Sources/Common/UIColor+JXAdd.h"; sourceTree = ""; }; - F90D97C684BADB3FE9796E626B98C43A /* LookinDisplayItemDetail.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinDisplayItemDetail.m; path = Src/Main/Shared/LookinDisplayItemDetail.m; sourceTree = ""; }; - FA395F2DBB98D70F218443EA65E0D442 /* SDImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageLoader.m; path = SDWebImage/Core/SDImageLoader.m; sourceTree = ""; }; - FA6406A6E74DC06D367BE38EA6C60243 /* LKS_Helper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LKS_Helper.h; path = Src/Main/Server/Others/LKS_Helper.h; sourceTree = ""; }; - FA94CFBBBF3DC429BAF55FD9493336B4 /* AFImageDownloader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFImageDownloader.h; path = "UIKit+AFNetworking/AFImageDownloader.h"; sourceTree = ""; }; + E4A5839D54BEE8A98756D5288A3E5050 /* NSBezierPath+SDRoundedCorners.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSBezierPath+SDRoundedCorners.h"; path = "SDWebImage/Private/NSBezierPath+SDRoundedCorners.h"; sourceTree = ""; }; + E4BFFACAA945CC17167910BF3C319571 /* SDAssociatedObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAssociatedObject.h; path = SDWebImage/Private/SDAssociatedObject.h; sourceTree = ""; }; + E4F1989DBFF7A3D94A0CF758DF35B3F6 /* HWPresentingVCAnimatedTransitioning.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HWPresentingVCAnimatedTransitioning.h; path = Sources/Animator/HWPresentingVCAnimatedTransitioning.h; sourceTree = ""; }; + E6CAC4483459A4704E779D629644670B /* HWPanModalContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HWPanModalContentView.h; path = Sources/View/PanModal/HWPanModalContentView.h; sourceTree = ""; }; + E6FEAED2BC2A577A78A12FA14FC3BB6B /* LookinAttributesGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinAttributesGroup.h; path = Src/Main/Shared/LookinAttributesGroup.h; sourceTree = ""; }; + E7485AA213719656370219B55A0AAE3C /* MJRefreshBackStateFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshBackStateFooter.m; path = MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.m; sourceTree = ""; }; + E75295D3FB5952A7B3A8B497D502A68D /* ResourceBundle-MJExtension-MJExtension-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-MJExtension-MJExtension-Info.plist"; sourceTree = ""; }; + E81450568229FA708143E74A7A580F89 /* JXCategoryCollectionView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryCollectionView.m; path = Sources/Common/JXCategoryCollectionView.m; sourceTree = ""; }; + E847BE3D7FA245C62A989A8A4F90542A /* UITableView+LookinServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UITableView+LookinServer.h"; path = "Src/Main/Server/Category/UITableView+LookinServer.h"; sourceTree = ""; }; + E8B2553B72F322F7DC0ED38BB760DDC6 /* UIButton+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIButton+WebCache.m"; path = "SDWebImage/Core/UIButton+WebCache.m"; sourceTree = ""; }; + E8C71212CAB0DCBF4059538A93053A4A /* UIViewController+PanModalDefault.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIViewController+PanModalDefault.h"; path = "Sources/Presentable/UIViewController+PanModalDefault.h"; sourceTree = ""; }; + E948F26A10F663204E24603E8527A7F5 /* JXCategoryListContainerRTLCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryListContainerRTLCell.h; path = Sources/Common/JXCategoryListContainerRTLCell.h; sourceTree = ""; }; + E9FA8ED817E86A0F4415B8E73B62DCF8 /* SDImageGraphics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageGraphics.m; path = SDWebImage/Core/SDImageGraphics.m; sourceTree = ""; }; + EA3E73CFAE53223D9EC3DE4B0794DB06 /* AFURLSessionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFURLSessionManager.m; path = AFNetworking/AFURLSessionManager.m; sourceTree = ""; }; + EA759F283932CC196A3C378E0037B993 /* UIColor+JXAdd.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIColor+JXAdd.m"; path = "Sources/Common/UIColor+JXAdd.m"; sourceTree = ""; }; + EB461C49F04DBE8D8B709BDAA4911ADC /* UIProgressView+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIProgressView+AFNetworking.h"; path = "UIKit+AFNetworking/UIProgressView+AFNetworking.h"; sourceTree = ""; }; + EB54379A72A5DCC64A2C9D42F05AE928 /* LookinServerDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinServerDefines.h; path = Src/Main/Server/Others/LookinServerDefines.h; sourceTree = ""; }; + EBEEA0239556FEF194877FD307A4ADD6 /* View+MASShorthandAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "View+MASShorthandAdditions.h"; path = "Masonry/View+MASShorthandAdditions.h"; sourceTree = ""; }; + EC37DBDA721D0EFF5AB018086BE1B195 /* HWPanModal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HWPanModal.h; path = Sources/HWPanModal.h; sourceTree = ""; }; + EC4CFDD75B85C12B1C1393BEA03A165C /* MBProgressHUD.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MBProgressHUD.debug.xcconfig; sourceTree = ""; }; + ECA7ED760D61427E9195A2805DB71798 /* UIView+HW_Frame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+HW_Frame.m"; path = "Sources/Category/UIView+HW_Frame.m"; sourceTree = ""; }; + ED2A7F3394578B0F6BEA7FBFFE1E2291 /* MJRefreshBackStateFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshBackStateFooter.h; path = MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.h; sourceTree = ""; }; + ED332DDCE634104C42A2AF8F698EDFB2 /* UIImageView+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+AFNetworking.h"; path = "UIKit+AFNetworking/UIImageView+AFNetworking.h"; sourceTree = ""; }; + ED87146FC94850F3891F867B1931F652 /* AFAutoPurgingImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFAutoPurgingImageCache.m; path = "UIKit+AFNetworking/AFAutoPurgingImageCache.m"; sourceTree = ""; }; + EDA0AA2D50C091E5400CDFDEC4B5B802 /* LKS_MultiplatformAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LKS_MultiplatformAdapter.h; path = Src/Main/Server/Others/LKS_MultiplatformAdapter.h; sourceTree = ""; }; + EDA5337EF8951852F4AA839734BF6786 /* HWPanModalAnimator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = HWPanModalAnimator.m; path = Sources/Animator/HWPanModalAnimator.m; sourceTree = ""; }; + EDCA67FC2B94130DF2B6CE9E65BC9944 /* AFNetworking-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AFNetworking-prefix.pch"; sourceTree = ""; }; + EE827BC4171898B142EBDE3C763AFC7F /* SDWebImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImage.h; path = WebImage/SDWebImage.h; sourceTree = ""; }; + EE9E5D3590E1EC14CD269A8B340CE3F0 /* SDImageCachesManagerOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCachesManagerOperation.m; path = SDWebImage/Private/SDImageCachesManagerOperation.m; sourceTree = ""; }; + EEB5224BF1CABA409B3D3760EDDAEA0A /* LYEmptyView */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = LYEmptyView; path = LYEmptyView.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + EF1815C1F114106321929B2F631067E5 /* SDImageIOAnimatedCoderInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOAnimatedCoderInternal.h; path = SDWebImage/Private/SDImageIOAnimatedCoderInternal.h; sourceTree = ""; }; + EF2876A2D62001FE741FE92492A10CFF /* JXCategoryIndicatorImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorImageView.h; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorImageView.h; sourceTree = ""; }; + EF62C88D7041DEBD26117AF61789D8AB /* HWPanModalPresentationUpdateProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HWPanModalPresentationUpdateProtocol.h; path = Sources/Presentable/HWPanModalPresentationUpdateProtocol.h; sourceTree = ""; }; + EF7183977EF6286C16A64DBC3D765320 /* HWPanModalHeight.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HWPanModalHeight.h; path = Sources/Presentable/HWPanModalHeight.h; sourceTree = ""; }; + EFC3A24D1CE615DA957AE8C5AC47E5D7 /* SDWebImageManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageManager.m; path = SDWebImage/Core/SDWebImageManager.m; sourceTree = ""; }; + F00B3F2B17BB2816232EB507B7AC9018 /* SDWebImageCompat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCompat.m; path = SDWebImage/Core/SDWebImageCompat.m; sourceTree = ""; }; + F09D5DAEE3CD3FFE1B213DFEF893E818 /* JXCategoryView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JXCategoryView-prefix.pch"; sourceTree = ""; }; + F139F3BFF4ABD0678E7947E118F47774 /* UIImageView+HighlightedWebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+HighlightedWebCache.m"; path = "SDWebImage/Core/UIImageView+HighlightedWebCache.m"; sourceTree = ""; }; + F157AC2A50D3773392D42322F67E0EB0 /* LSTPopView-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "LSTPopView-Info.plist"; sourceTree = ""; }; + F1CF9E4569F5B94286E175AF9D675C11 /* SDInternalMacros.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDInternalMacros.m; path = SDWebImage/Private/SDInternalMacros.m; sourceTree = ""; }; + F1FB9919B7B8171A6A8679BDDA407F68 /* LKS_HierarchyDisplayItemsMaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LKS_HierarchyDisplayItemsMaker.h; path = Src/Main/Server/Others/LKS_HierarchyDisplayItemsMaker.h; sourceTree = ""; }; + F287F335FB60871C584FAC1904FF4181 /* SDDeviceHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDeviceHelper.h; path = SDWebImage/Private/SDDeviceHelper.h; sourceTree = ""; }; + F32705CBE56ACF430653A1C459F5351E /* LookinAttrIdentifiers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinAttrIdentifiers.h; path = Src/Main/Shared/LookinAttrIdentifiers.h; sourceTree = ""; }; + F32DF0242A37C60B9E8BEDC175125BB2 /* MJRefreshBackFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshBackFooter.h; path = MJRefresh/Base/MJRefreshBackFooter.h; sourceTree = ""; }; + F363F53534ED7FE5A4BB0A1E1863D5E7 /* LKS_CustomAttrSetterManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LKS_CustomAttrSetterManager.m; path = Src/Main/Server/Others/LKS_CustomAttrSetterManager.m; sourceTree = ""; }; + F3BAE7C9BD506017B4C0D7BBB9100900 /* JXCategoryTitleVerticalZoomCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryTitleVerticalZoomCell.m; path = Sources/VerticalZoomTitle/JXCategoryTitleVerticalZoomCell.m; sourceTree = ""; }; + F4F901625B3879AD34FA2A0373208F59 /* LookinHierarchyInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinHierarchyInfo.m; path = Src/Main/Shared/LookinHierarchyInfo.m; sourceTree = ""; }; + F5B865CFCA1FF1600CB766B9BC34B8D9 /* LookinCustomAttrModification.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinCustomAttrModification.h; path = Src/Main/Shared/LookinCustomAttrModification.h; sourceTree = ""; }; + F5D8EBF4698D8B331794EA6F9BF47665 /* HWVisualEffectView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = HWVisualEffectView.m; path = Sources/View/HWVisualEffectView.m; sourceTree = ""; }; + F5EB73BE761C595601603CE39EC8D850 /* HWPageSheetPresentingAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = HWPageSheetPresentingAnimation.m; path = Sources/Animator/PresentingVCAnimation/HWPageSheetPresentingAnimation.m; sourceTree = ""; }; + F64D04ACE9EB0341E57129D44479C065 /* MJRefresh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefresh.h; path = MJRefresh/MJRefresh.h; sourceTree = ""; }; + F68616E55705601CBE5D9437AD83B340 /* JXCategoryView.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JXCategoryView.debug.xcconfig; sourceTree = ""; }; + F6CDCEC9BF52B36734600241EB9CC345 /* UIViewController+Presentation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIViewController+Presentation.m"; path = "Sources/Presentable/UIViewController+Presentation.m"; sourceTree = ""; }; + F762DC35806D05FE8346CE64A0357D9A /* JXPagingView-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "JXPagingView-Info.plist"; sourceTree = ""; }; + F764EB4004D4A21398D072493BD19D56 /* HWPanModalPanGestureDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HWPanModalPanGestureDelegate.h; path = Sources/Presentable/HWPanModalPanGestureDelegate.h; sourceTree = ""; }; + F8CCC7FB49429A8093BC8191C6474D58 /* UIView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+WebCache.m"; path = "SDWebImage/Core/UIView+WebCache.m"; sourceTree = ""; }; + F8CEEFBE4317D04F4FD181E44C90A119 /* MJRefreshStateHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshStateHeader.h; path = MJRefresh/Custom/Header/MJRefreshStateHeader.h; sourceTree = ""; }; + F947DB2E34F4112ED83356B8AA944880 /* SDDeviceHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDeviceHelper.m; path = SDWebImage/Private/SDDeviceHelper.m; sourceTree = ""; }; + F9AA00EC509DE2C0E25E749F629EF1F6 /* UIViewController+LayoutHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIViewController+LayoutHelper.m"; path = "Sources/Presentable/UIViewController+LayoutHelper.m"; sourceTree = ""; }; + F9F30602CBEA307F110682B47DBF3B59 /* JXCategoryIndicatorCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorCell.m; path = Sources/Indicator/JXCategoryIndicatorCell.m; sourceTree = ""; }; + F9FBE6B4C01D1445DBFC466AEA64E5D8 /* JXCategoryIndicatorBallView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorBallView.m; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorBallView.m; sourceTree = ""; }; + FA5C6E28985540EE03804DDC4277D459 /* LYEmptyViewHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LYEmptyViewHeader.h; path = LYEmptyView/LYEmptyViewHeader.h; sourceTree = ""; }; + FAA3871C50E5746944D1C3FA3E4736CE /* SDDiskCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDiskCache.m; path = SDWebImage/Core/SDDiskCache.m; sourceTree = ""; }; FAA5F2D71B90788C908800A94534AA92 /* FLAnimatedImage */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = FLAnimatedImage; path = FLAnimatedImage.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - FAC311E0F10AA1170D905B6C90AE765F /* JXCategoryImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryImageView.h; path = Sources/Image/JXCategoryImageView.h; sourceTree = ""; }; - FB1E7E734FDF6F7CAC668B6BD6A2A014 /* Image+Lookin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "Image+Lookin.m"; path = "Src/Main/Shared/Category/Image+Lookin.m"; sourceTree = ""; }; - FB334521D7F08199DE839AB68A37105C /* SDImageAPNGCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAPNGCoder.h; path = SDWebImage/Core/SDImageAPNGCoder.h; sourceTree = ""; }; - FB5DC78AEFAB6098819933CF81AAB15B /* Lookin_PTProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Lookin_PTProtocol.h; path = Src/Main/Shared/Peertalk/Lookin_PTProtocol.h; sourceTree = ""; }; - FBF4C669CA968A448B7E1DD3A141A41C /* SDAnimatedImageRep.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImageRep.m; path = SDWebImage/Core/SDAnimatedImageRep.m; sourceTree = ""; }; - FC52B8F222678A49BF1BA307CD9A7777 /* SDGraphicsImageRenderer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDGraphicsImageRenderer.m; path = SDWebImage/Core/SDGraphicsImageRenderer.m; sourceTree = ""; }; - FD4AB223CCA1E3159EE2C805605A0657 /* JXCategoryIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorView.m; path = Sources/Indicator/JXCategoryIndicatorView.m; sourceTree = ""; }; - FD5B9F06C28C32AA434A5A2FFACDF89A /* JXCategoryIndicatorRainbowLineView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorRainbowLineView.h; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorRainbowLineView.h; sourceTree = ""; }; - FD6EC1E4FB3615CE938900B23CEAD0F8 /* MASCompositeConstraint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASCompositeConstraint.m; path = Masonry/MASCompositeConstraint.m; sourceTree = ""; }; - FDF2879588F648F9ACE28CEDF3C4F456 /* DZNEmptyDataSet-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "DZNEmptyDataSet-Info.plist"; sourceTree = ""; }; - FE8EB43019635F8DC34B96037E258505 /* UIActivityIndicatorView+AFNetworking.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIActivityIndicatorView+AFNetworking.m"; path = "UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.m"; sourceTree = ""; }; - FED61E621A88CB9CE3C421FDEB1106FC /* LookinDisplayItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinDisplayItem.h; path = Src/Main/Shared/LookinDisplayItem.h; sourceTree = ""; }; - FEF91306ED7817FCE47628D37A94BF1B /* JXCategoryIndicatorBackgroundView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorBackgroundView.h; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorBackgroundView.h; sourceTree = ""; }; - FF6C98975F33C466CDCC506B95080046 /* UIView+WebCacheState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+WebCacheState.m"; path = "SDWebImage/Core/UIView+WebCacheState.m"; sourceTree = ""; }; - FFC39DF551599EB371EA8F85F9A9DDCF /* MJExtension.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MJExtension.debug.xcconfig; sourceTree = ""; }; - FFFC6DDC16F58E87A8A30CA92223320F /* DZNEmptyDataSet-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DZNEmptyDataSet-dummy.m"; sourceTree = ""; }; + FB1FCAC52ADC49B2B3A81FFCCD3D56EE /* UIImage+GIF.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+GIF.h"; path = "SDWebImage/Core/UIImage+GIF.h"; sourceTree = ""; }; + FB614FC70886C761E2BA7E9C7E7F2D88 /* AFHTTPSessionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFHTTPSessionManager.h; path = AFNetworking/AFHTTPSessionManager.h; sourceTree = ""; }; + FB718B97DF8D94DCF736C973F8184652 /* UIImageView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+WebCache.m"; path = "SDWebImage/Core/UIImageView+WebCache.m"; sourceTree = ""; }; + FB84DF0F5016EBAF04FE5FE9F22081C0 /* SDWebImage-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SDWebImage-umbrella.h"; sourceTree = ""; }; + FC8583F4233091326F271A4C13185F5B /* HWBackgroundConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HWBackgroundConfig.h; path = Sources/View/HWBackgroundConfig.h; sourceTree = ""; }; + FCA4EBF34C88159600AC127D3548346D /* UITextView+LookinServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UITextView+LookinServer.h"; path = "Src/Main/Server/Category/UITextView+LookinServer.h"; sourceTree = ""; }; + FCBCC9D408AF4A848CBB9CEE3327E256 /* HWShoppingCartPresentingAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HWShoppingCartPresentingAnimation.h; path = Sources/Animator/PresentingVCAnimation/HWShoppingCartPresentingAnimation.h; sourceTree = ""; }; + FCBD8DFA94436F5E62F1AA0F1AD2F2FA /* LookinStaticAsyncUpdateTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinStaticAsyncUpdateTask.m; path = Src/Main/Shared/LookinStaticAsyncUpdateTask.m; sourceTree = ""; }; + FD3C0DF69EC6CFA1DD8299F62B1A84FB /* SDWebImageOptionsProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageOptionsProcessor.h; path = SDWebImage/Core/SDWebImageOptionsProcessor.h; sourceTree = ""; }; + FD61DA71A7253ED59D65D424C86E2C50 /* MASConstraint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASConstraint.h; path = Masonry/MASConstraint.h; sourceTree = ""; }; + FD7C0DEE68BC5E8256170F72FCC61847 /* JXCategoryIndicatorDotLineView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorDotLineView.m; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorDotLineView.m; sourceTree = ""; }; + FD937703BB1091324CC7A54FB95A5217 /* MJRefreshBackGifFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshBackGifFooter.m; path = MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.m; sourceTree = ""; }; + FDCCFFDED68135F2816CA2167E15CF64 /* LookinHierarchyFile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinHierarchyFile.h; path = Src/Main/Shared/LookinHierarchyFile.h; sourceTree = ""; }; + FEA159570B75D1C95DC0E0B5836BACFF /* LKS_HierarchyDetailsHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LKS_HierarchyDetailsHandler.h; path = Src/Main/Server/Connection/RequestHandler/LKS_HierarchyDetailsHandler.h; sourceTree = ""; }; + FED4C87CAD14B9336A225C943B75263C /* ViewController+MASAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ViewController+MASAdditions.h"; path = "Masonry/ViewController+MASAdditions.h"; sourceTree = ""; }; + FED91C88820F2942B3A007C5E5D17ACB /* UIColor+LookinServer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIColor+LookinServer.m"; path = "Src/Main/Server/Category/UIColor+LookinServer.m"; sourceTree = ""; }; + FEE19DBCD45615CC389DD7223D3C447A /* SDImageCoderHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCoderHelper.m; path = SDWebImage/Core/SDImageCoderHelper.m; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ + 04785C72D7E967FCB78D8F7E7635973B /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 0DCF6770445D0657900721EC9917ECFB /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; 11690A588400BBB164423D5F86311C35 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -1598,6 +1648,21 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 2A4C89A05153A8C37E3B9ACF170A9EB8 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 5EFCAC311A0285F51E8B1B0F7416D7D8 /* Foundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 2D2D1D550E12F4C0C9C30D5A3CD01C4E /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; 37145BAEB1B97BA7ADD7D6C3E86E99BD /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -1623,10 +1688,11 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 49A3D4697275EC0A7C6F38E45E2F0217 /* Frameworks */ = { + 58A39759A11D8C551E18D1323674BF34 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + 9D07985CF518269347F3FD5FE6D22609 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -1638,6 +1704,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 6B8E82384925B650051F0C1846383E41 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; 6E39FC1043D864A0759387AEED07D7AC /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -1656,11 +1729,11 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 96D238A614CBDD553073EEECBB41281C /* Frameworks */ = { + 98BB4909B1035551DF579C13A59BAA4D /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - E516B5B11193439E020DD2A908700B79 /* Foundation.framework in Frameworks */, + 47C6C10BB05445BCB8CBCA4DADE7E933 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -1672,13 +1745,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - A815DA3563AEC721C6EAF6B39395CDD4 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; AE750D3363286EC4504AB9516776E757 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -1687,28 +1753,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - AEC8B8EF401BFAE066232C67738FEB8F /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - B48A7E8CCFE81BBD4AEBA45C992E5F7F /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - C44502CD70E5B1200927F3A081A60365 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 72157F8282836C3F6D65008E2F193655 /* Foundation.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; CA6527CF424B1AA12AF1D0BB36EBAF73 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -1738,13 +1782,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - D322DF9855308A001A820F202DCCBA75 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; E672724427269716049B769344D7C3DC /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -1754,284 +1791,406 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + F4019BF639D68EFAB596EA1BD86C37CB /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ - 0727E8966E92BA27516AA23EF6747FF6 /* Security */ = { + 070A9E270BA37B1A5AAC97680E006F46 /* LSTPopView */ = { isa = PBXGroup; children = ( - 2AD36233DB657DAA0ACBB8EEEAEB38EA /* AFSecurityPolicy.h */, - 2458E327D6233EBA29A07B3E63113146 /* AFSecurityPolicy.m */, + EC737F9C95A0D5999B811C9A1D937DBC /* Code */, + 9A6094CFD16104AD70583A90D874C249 /* Support Files */, ); - name = Security; + name = LSTPopView; + path = LSTPopView; sourceTree = ""; }; - 0A1A9864A60D31E01F2EAB72403B1E95 /* NSURLSession */ = { + 0B3501DF96788E261B37AA47988480FF /* Resources */ = { isa = PBXGroup; children = ( - 29C25E996193BA4D1FCBB5C2A7812FB9 /* AFCompatibilityMacros.h */, - 5F31829B35104CCEC70FD712B1D4D4E2 /* AFHTTPSessionManager.h */, - 9DA5F48CB9575D0E2C775D8D7C262C14 /* AFHTTPSessionManager.m */, - B2D84B5B7090CE22D8AFB107E403CA13 /* AFURLSessionManager.h */, - 55E89941A6B7A73D479A0770A9C96C14 /* AFURLSessionManager.m */, - ); - name = NSURLSession; - sourceTree = ""; - }; - 0F19D22A7E286B575974CA8C2AD3F3DF /* Bugly */ = { - isa = PBXGroup; - children = ( - 37D1A84159EF2DA3622D5B6253D94232 /* Frameworks */, - 453238A8EA177DEF4A00D8C859B1DA27 /* Support Files */, - ); - name = Bugly; - path = Bugly; - sourceTree = ""; - }; - 119FAC4028DEE3EECB43C1CA751847B8 /* Support Files */ = { - isa = PBXGroup; - children = ( - 81157F73840FB0C9186268E78281D33C /* FLAnimatedImage.modulemap */, - E3535B97DCD1B05E059D045B16700F34 /* FLAnimatedImage-dummy.m */, - A020A834828880C972FE2E839A9DD2B4 /* FLAnimatedImage-Info.plist */, - 12142FAAA1C74097D8F4441EAD4066E1 /* FLAnimatedImage-prefix.pch */, - 87DD67829823038B4E0D04582C0CB95C /* FLAnimatedImage-umbrella.h */, - 36A28302FD0C37C0A56E64EA97977A8E /* FLAnimatedImage.debug.xcconfig */, - C06B04E0ABEA41660753A9D5F58572EE /* FLAnimatedImage.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/FLAnimatedImage"; - sourceTree = ""; - }; - 17AEA0C7D131B1C990249C70BBD62CDF /* Resources */ = { - isa = PBXGroup; - children = ( - 1C37C8F103EDECD09126133069B80115 /* PrivacyInfo.xcprivacy */, + A0497973DD4190C4C37CC950C86C6F2B /* PrivacyInfo.xcprivacy */, ); name = Resources; sourceTree = ""; }; - 1CD312D2E666224315BB46AF04231D5D /* Products */ = { + 102054A1E3292F59C346E38466BC61C8 /* Resources */ = { isa = PBXGroup; children = ( - A4FA15D44DF6BAC7550EDEED10862AA3 /* AFNetworking */, - 5DA4577FE3BC4A03751108FFED07B385 /* DZNEmptyDataSet */, - FAA5F2D71B90788C908800A94534AA92 /* FLAnimatedImage */, - 7819923046C4F6B199F8D45E9F7BA6B0 /* HWPanModal */, - C3A46B03C308EEEB11F2A62BA5D2E8BE /* JXCategoryView */, - BB4F011171FCB76B1AEBE390F843E930 /* JXCategoryView-JXCategoryView */, - 2F4A1CCB21DB7EA5A2ACEB11E374FBCA /* JXPagingView */, - E03F152E95B6924D2486511337D24503 /* JXPagingView-JXPagerView */, - 25664483ABF4DC8EC03E7472AA04333B /* LookinServer */, - 399102B94B534EB49EE0E5512D150CA8 /* LSTPopView */, - DE19C7D984CBC535E4768F5543458A1E /* LSTTimer */, - 1FFED36A657123030ABB700256D73F15 /* Masonry */, - 8B8FAB0D627B17EDE1366984278705D9 /* MBProgressHUD */, - 2B276B0A79173A1D6E83C9B4FB9A4A57 /* MJExtension */, - 43EAAD2AB7E6B407E80E95F643F93D22 /* MJExtension-MJExtension */, - E49D6D248DD1CEE584E6776B9164A1B2 /* MJRefresh */, - 7E3097CFEFDA621E9FB0E62009FF87FC /* MJRefresh-MJRefresh.Privacy */, - 0B4AAC15A428CDC2A62AF9CC27BEA609 /* Pods-CustomKeyboard */, - DCA062FD08AC9694D8D781B3492421C5 /* Pods-keyBoard */, - B0B214D775196BA7CA8E17E53048A493 /* SDWebImage */, - CF1281E58AA1045D4B7F33FC56691C42 /* SDWebImage-SDWebImage */, - ); - name = Products; - sourceTree = ""; - }; - 1F02F176B54A47E4D2768486D2B0A3DE /* Resources */ = { - isa = PBXGroup; - children = ( - 75A91D4BB6118442A9B7E27598AE7C99 /* PrivacyInfo.xcprivacy */, + 0FFF1AB10AC30C72DB3B2F106B23E5B3 /* PrivacyInfo.xcprivacy */, ); name = Resources; sourceTree = ""; }; - 24E6D9CD604967D0A1CF25370DFD7865 /* Code */ = { + 184D0B412C8826DE321973718A83EAD0 /* Support Files */ = { isa = PBXGroup; children = ( - BF40FB09CDD92326BB3177C14DF172AD /* LSTPopView.h */, - 9B2F1B06BC651834D7B3EA1FBC96E466 /* LSTPopView.m */, - 5F35F0E5B188FD04E8E889503DEA5841 /* LSTPopViewProtocol.h */, - A5262AA56B4C8511CBA390D4808E37F2 /* UIView+LSTPV.h */, - A4D8DE877E59C1B5596F10D0213ADC5D /* UIView+LSTPV.m */, - ); - name = Code; - sourceTree = ""; - }; - 2DD7CD81F0AED96859289DDC12B0E9CF /* Support Files */ = { - isa = PBXGroup; - children = ( - DB866CD01C61417D45924946690C442B /* HWPanModal.modulemap */, - EE80578D9DB416BD158323BE4D5C76F4 /* HWPanModal-dummy.m */, - 862F24C5813636BD088499E062B47C78 /* HWPanModal-Info.plist */, - E5592C4FA7C5389CD5E3CCE2F804F447 /* HWPanModal-prefix.pch */, - 83FBF1722FEB1FC5E339C64BC2275D81 /* HWPanModal-umbrella.h */, - C6B15D5B29642260AB882050F51A8AE5 /* HWPanModal.debug.xcconfig */, - CA18A067DCACA93C5FD4591EBC943217 /* HWPanModal.release.xcconfig */, + 91BC18AA2869958B15FBD2C2367C5DFC /* AFNetworking.modulemap */, + 18106F0763EC023048DB3F77457B9596 /* AFNetworking-dummy.m */, + 541552D5AA99C6DF3406BD050E1467DB /* AFNetworking-Info.plist */, + EDCA67FC2B94130DF2B6CE9E65BC9944 /* AFNetworking-prefix.pch */, + 83E8510A179E756198B5FC915A27736E /* AFNetworking-umbrella.h */, + 88D479C435BAEE51B8F3BBF87F8D3CC9 /* AFNetworking.debug.xcconfig */, + 57B2E23309380B0E15F50C277205AC0D /* AFNetworking.release.xcconfig */, ); name = "Support Files"; - path = "../Target Support Files/HWPanModal"; + path = "../Target Support Files/AFNetworking"; sourceTree = ""; }; - 2E6A5961188FF65067773B356D98FC06 /* JXCategoryView */ = { + 1C6C79318C220E5B8848BEC84F0BF1D4 /* Support Files */ = { isa = PBXGroup; children = ( - 1A08646B05BD58116699CDFD07CA2977 /* JXCategoryBaseCell.h */, - 0B08ADE1A4FFE94FDBBE13FE7CC2C1E5 /* JXCategoryBaseCell.m */, - 65F97EE1352D7FC02982C03FB1D0FBEB /* JXCategoryBaseCellModel.h */, - 51E7542749774862B8EB9AAB7010F1AA /* JXCategoryBaseCellModel.m */, - 173BFB44F7DA63CD3AF5A497970B8203 /* JXCategoryBaseView.h */, - 72F67C5C9E4A93AFE6FF113487609183 /* JXCategoryBaseView.m */, - 6999AA4E4990D39E732B0FABF0CBB3CA /* JXCategoryCollectionView.h */, - D9DA60EBF6A57B0D3224E3ACD3E51971 /* JXCategoryCollectionView.m */, - 98D2F9331639FC6D12A4091DD5F47C96 /* JXCategoryDotCell.h */, - BEB32B7BEE20F8A74F80D03511F02260 /* JXCategoryDotCell.m */, - ABD4819FE00A1A954ABDDF0893C72587 /* JXCategoryDotCellModel.h */, - EF3A8DFB97BB54D169F6E8AC578F498C /* JXCategoryDotCellModel.m */, - 50BCF4AA1A75105CC04AA446B0DB9B40 /* JXCategoryDotView.h */, - EED2C7FD129EA6F065286A12502B79B7 /* JXCategoryDotView.m */, - 2E96574DDD94EB958E64B0AD7C7B20F2 /* JXCategoryFactory.h */, - 9E9F380E4292210FA99A8F5918C667C3 /* JXCategoryFactory.m */, - 0E2875C79F8461486A975B000C1ABDE3 /* JXCategoryImageCell.h */, - B7498A05A9D7A9FEE19E027CABE6B9DD /* JXCategoryImageCell.m */, - D4C17E87C77E85F28C83D98FAB4AB7F4 /* JXCategoryImageCellModel.h */, - EC57F0405D7809ECABB52C0C041C6F2F /* JXCategoryImageCellModel.m */, - FAC311E0F10AA1170D905B6C90AE765F /* JXCategoryImageView.h */, - 7778E8300903006F261959B2010A06D2 /* JXCategoryImageView.m */, - FEF91306ED7817FCE47628D37A94BF1B /* JXCategoryIndicatorBackgroundView.h */, - 74444E41B3920B9EB4DA66DCD2975612 /* JXCategoryIndicatorBackgroundView.m */, - 8A0C74EF09B54680C98CCBF1F2BD297A /* JXCategoryIndicatorBallView.h */, - 7A60D0CF9AE4E6671E2A6BBECEE57E4D /* JXCategoryIndicatorBallView.m */, - BF9910B7B2FF86AF620A45955A338072 /* JXCategoryIndicatorCell.h */, - CF64931699D303A3C9AE1FFC4682E257 /* JXCategoryIndicatorCell.m */, - 3B3FF5D113848A5A9AC244C579FF1441 /* JXCategoryIndicatorCellModel.h */, - 3875C6FE72ED2368D3701E9901F883B7 /* JXCategoryIndicatorCellModel.m */, - 4B0139E3193D3960F1A46D73064CA34A /* JXCategoryIndicatorComponentView.h */, - D4E6C9FAE7DD5348F64FBD66AA03DA5B /* JXCategoryIndicatorComponentView.m */, - 898DE7614EA3416744425477D130D9C7 /* JXCategoryIndicatorDotLineView.h */, - EC4AC84F5855EC104608477917DF3145 /* JXCategoryIndicatorDotLineView.m */, - D5D75E71D2ABCC5D3DDCC662DACBFAED /* JXCategoryIndicatorImageView.h */, - A2C056F5D1231FA94F92AA3712D545C2 /* JXCategoryIndicatorImageView.m */, - 62CDFF5EFD0FE66B2DEECF2E904EBEC1 /* JXCategoryIndicatorLineView.h */, - 1711B81346B8ED1944B5A8A478A4CF3F /* JXCategoryIndicatorLineView.m */, - 4E5F2B584A65C9246E3E8A7A856FF44D /* JXCategoryIndicatorParamsModel.h */, - AAFEF3383472BCA83D71A7DAAC5522CC /* JXCategoryIndicatorParamsModel.m */, - D6F5B88F49EB151A388B58319A67E2A1 /* JXCategoryIndicatorProtocol.h */, - FD5B9F06C28C32AA434A5A2FFACDF89A /* JXCategoryIndicatorRainbowLineView.h */, - CC8BAAD188938B05A876ECFEAA39F2E6 /* JXCategoryIndicatorRainbowLineView.m */, - 3381742E54E03DCDB9DD644DF65C4689 /* JXCategoryIndicatorTriangleView.h */, - 1E17CF24E4278604BB723E30B9997957 /* JXCategoryIndicatorTriangleView.m */, - 658F3554D0CFB5BC5E252408F8CD5317 /* JXCategoryIndicatorView.h */, - FD4AB223CCA1E3159EE2C805605A0657 /* JXCategoryIndicatorView.m */, - 7C36F83AF55E2873F497777F59071760 /* JXCategoryListContainerRTLCell.h */, - 6C70C9B1AD0F41A4C5E9026F5AF7F65F /* JXCategoryListContainerRTLCell.m */, - E25EECD78C776DB2FDB519D3AA7CB0BD /* JXCategoryListContainerView.h */, - 29EA07EA8EF3C7818A9505A783C4FF02 /* JXCategoryListContainerView.m */, - 874DD2FA3B20B6BCBCBEE03BEEBE1281 /* JXCategoryNumberCell.h */, - 1B8FD707DDEC1F98F5C5FE19647F0592 /* JXCategoryNumberCell.m */, - C74AFAA0D49E0563D9312CEA70CCF8B3 /* JXCategoryNumberCellModel.h */, - F15C652E7FDB0BE287A551718B00B6A8 /* JXCategoryNumberCellModel.m */, - C6B6ABC9B259D86AA3C2451E682BE701 /* JXCategoryNumberView.h */, - 44CB5B4F2C2351C8F32C675C94C2EAC0 /* JXCategoryNumberView.m */, - 00B67A73E7EE0522188FAE4145324D19 /* JXCategoryTitleCell.h */, - 057CD48F09C7A5468D77A9691A639803 /* JXCategoryTitleCell.m */, - 6C34880EFF82114AECCB354A57C47E7C /* JXCategoryTitleCellModel.h */, - 3545C9AC3AD500CD4E48A3E2630C521B /* JXCategoryTitleCellModel.m */, - 639A45B880AEBFE1C16D4A9F3AA3D49C /* JXCategoryTitleImageCell.h */, - D4AA530BA675D0E78BDD9644338B48A3 /* JXCategoryTitleImageCell.m */, - DDAA59B8AF34E0C4765874AEE69571F7 /* JXCategoryTitleImageCellModel.h */, - 04AE87BD26EBAF13B558201544C0E822 /* JXCategoryTitleImageCellModel.m */, - 7FBDD10C8770914A56998AB2021E385B /* JXCategoryTitleImageView.h */, - 8618BF2AA2A260801FDF48131074A906 /* JXCategoryTitleImageView.m */, - 54CBDA1EBC8A896E6DB3A15D5332DB1C /* JXCategoryTitleVerticalZoomCell.h */, - 6D390F38F6574F6D973E2C4A52D004A1 /* JXCategoryTitleVerticalZoomCell.m */, - 60A68C8A5D160FE046F60DF6C446111D /* JXCategoryTitleVerticalZoomCellModel.h */, - 6549E81907E05317DA862F329B2D4DDC /* JXCategoryTitleVerticalZoomCellModel.m */, - 059C3C014AA92686FDCE895211A108CE /* JXCategoryTitleVerticalZoomView.h */, - 7B4337532A4911F88E85BB14DE78FBB7 /* JXCategoryTitleVerticalZoomView.m */, - E42238B57F88C70438DE479E184E4352 /* JXCategoryTitleView.h */, - 202D2DE7A9C3209A4BF4D407CF1AB06A /* JXCategoryTitleView.m */, - DACFBFCC588CFB73AE8A6DB153DEA42F /* JXCategoryView.h */, - E0A4E94FB3CF9B468E72117C85C2E773 /* JXCategoryViewAnimator.h */, - B46184374613AB561CB67E0F1EF14DD8 /* JXCategoryViewAnimator.m */, - C617C2D863C4AC28AF0370EDC02120A9 /* JXCategoryViewDefines.h */, - 0E752820782AF474A360AC65F5EFA79D /* RTLManager.h */, - E5EA191D7CFA74A3FEAFB27130A3FEC7 /* RTLManager.m */, - F904F7CF43AB518217FB1AB9236020D4 /* UIColor+JXAdd.h */, - 137AD002D5B6FA89785842F03034A5B1 /* UIColor+JXAdd.m */, - 1F02F176B54A47E4D2768486D2B0A3DE /* Resources */, - C79383FD5154699A5CFAA9706E39AF6C /* Support Files */, + 85C4F1C66A75633558DC8F8AE824BC70 /* LYEmptyView.modulemap */, + 2F19C07EBC4D3E8EF1AD6C474E7F24FE /* LYEmptyView-dummy.m */, + 7DCA3ADE9B99025CE2B42367695E1E68 /* LYEmptyView-Info.plist */, + 517EACA3BDCA2E1CB5B954656D4B9F02 /* LYEmptyView-prefix.pch */, + C00601FB0A8CFBE203150BAEC58E95FC /* LYEmptyView-umbrella.h */, + 5048CCD1406058B50480C383463B3C39 /* LYEmptyView.debug.xcconfig */, + E00B4B67B95B1D4B1001EF45F23EF0C4 /* LYEmptyView.release.xcconfig */, ); - name = JXCategoryView; - path = JXCategoryView; + name = "Support Files"; + path = "../Target Support Files/LYEmptyView"; sourceTree = ""; }; - 36091ADDE4C749A4350E3A117CAA7398 /* MJRefresh */ = { + 2397706FC09C7D8BAD347D387C455173 /* MBProgressHUD */ = { isa = PBXGroup; children = ( - 1325B9E2F97C77F3E9191898C4045E7E /* MJRefresh.h */, - A96A60100BE610809D6E0C7741CF992C /* MJRefreshAutoFooter.h */, - BE6EFE785E6216D9C7C1D6B7A4EEA5EA /* MJRefreshAutoFooter.m */, - 3FAF0BE8296496D28F5C6AA6974B39E8 /* MJRefreshAutoGifFooter.h */, - 7D7FC4156E6779F82E6B8036FA7A1307 /* MJRefreshAutoGifFooter.m */, - DEDB698B7BC2AF63B53722CF1D2D8E57 /* MJRefreshAutoNormalFooter.h */, - 6D2CC2D1F9AB2D4CFC68B6327C2793C5 /* MJRefreshAutoNormalFooter.m */, - 02E945EEF3757BDF2B47E65C51C4D6D6 /* MJRefreshAutoStateFooter.h */, - 401F0F0AAEEDDA40C2D25DB817C9B5C6 /* MJRefreshAutoStateFooter.m */, - 17D9582F158C09F75D84ECE893151E91 /* MJRefreshBackFooter.h */, - 0A5E3A2C0C49EB165C854762A832D48A /* MJRefreshBackFooter.m */, - C746AE302AD12A4D0F6E287CACA690C6 /* MJRefreshBackGifFooter.h */, - 3A8EB0FE66AD3E48C10CDD802521D146 /* MJRefreshBackGifFooter.m */, - 3E42525F0D8B91406B2C7015E3E52B29 /* MJRefreshBackNormalFooter.h */, - C55730A1966B5DF338B0554ACC4B0B16 /* MJRefreshBackNormalFooter.m */, - 15D9AA9876374637F32E00BE13AA1880 /* MJRefreshBackStateFooter.h */, - DD1439668AF92748DEFAD18BF418CE55 /* MJRefreshBackStateFooter.m */, - 7C0E4900E01624D5262A1ED1DF2F6D35 /* MJRefreshComponent.h */, - 4F81509596D525489E9AA55CE4C0B4C1 /* MJRefreshComponent.m */, - E9598F4E504AE0DA98A0B2DC305F1C83 /* MJRefreshConfig.h */, - 42EF67A85226C8C14C983E81C71F392D /* MJRefreshConfig.m */, - 55A76B2979ED12495977612719BE47A2 /* MJRefreshConst.h */, - 7032D81BB8B12F48732F1EBEA7A020D7 /* MJRefreshConst.m */, - D40BB639047461966566FFED666B3ACF /* MJRefreshFooter.h */, - 2CE7B5832F4AC9648A3CEB7DD03473E4 /* MJRefreshFooter.m */, - C4B0E298E792EE24705C7E8457669228 /* MJRefreshGifHeader.h */, - A1E84842FBF29954156976CB6DD0F275 /* MJRefreshGifHeader.m */, - 195B648C25562B52954B1E7C1D8964C3 /* MJRefreshHeader.h */, - 1A2B6D97C6E9B5572232985B40BDA6C4 /* MJRefreshHeader.m */, - 367DF77D41DE010B9FA86137928C7C44 /* MJRefreshNormalHeader.h */, - CAD02815855109CE0DDD83222F913EF8 /* MJRefreshNormalHeader.m */, - 342267EEBD80FDDCEAA647EFBE0EB6BD /* MJRefreshNormalTrailer.h */, - DD3BFE6DB15E8FF64920F720EA31EEDE /* MJRefreshNormalTrailer.m */, - 13B6B935F583A1ED5234B7E3DF044521 /* MJRefreshStateHeader.h */, - 119F71892BB85FDC29B99AE148231087 /* MJRefreshStateHeader.m */, - 846CA0BB8166DB9008D71F59F4A301EA /* MJRefreshStateTrailer.h */, - B26771C31428D52F8DFB859AE1AC3503 /* MJRefreshStateTrailer.m */, - 6A91961A508CA556983A4A3F57FB3133 /* MJRefreshTrailer.h */, - 5128E7CF3F35BE25186575F63661EEF6 /* MJRefreshTrailer.m */, - 10B904BAC9CC3925EE6B4E2130826A6F /* NSBundle+MJRefresh.h */, - 824A8DE6460C98A565B1EDD8B4432F50 /* NSBundle+MJRefresh.m */, - F0FF9B39CB74F30B336CF7D4085E2AE0 /* UICollectionViewLayout+MJRefresh.h */, - 99CBD01AD35AF793B343AC0ACF2CF164 /* UICollectionViewLayout+MJRefresh.m */, - 23648E3B16301958DD4429C021EB223C /* UIScrollView+MJExtension.h */, - 433A3E0D94E768912FBBE36F7C961678 /* UIScrollView+MJExtension.m */, - 241FDB4FE9E3CE45C4854F0FEB6F8BAF /* UIScrollView+MJRefresh.h */, - 9AFDFE95B53BDA0F282212CF3E9B940F /* UIScrollView+MJRefresh.m */, - 47F474CA83A8EC338136568BDBFF8343 /* UIView+MJExtension.h */, - 239F725CB21A7ABF0EDB35FC92732A5C /* UIView+MJExtension.m */, - 4C55C9351E9FED232300EF60CC442288 /* Resources */, - 6095F5BA99A7BC3EDE17ABB647B490AD /* Support Files */, + 5DC759BB8D0141E0F064F3BCA7197315 /* MBProgressHUD.h */, + 347DA9A1002297848F6BF9D97BB1F302 /* MBProgressHUD.m */, + 4E1FCFC15AFF6ACA076B1D8B295CDE1D /* Support Files */, + ); + name = MBProgressHUD; + path = MBProgressHUD; + sourceTree = ""; + }; + 23E095E4ABDFCF286D5B6E1FB3668170 /* MJRefresh */ = { + isa = PBXGroup; + children = ( + F64D04ACE9EB0341E57129D44479C065 /* MJRefresh.h */, + DE7E60B5B6A0850596F935D95CAFE167 /* MJRefreshAutoFooter.h */, + 14CF605A6E1A867AA3131733CCE53D99 /* MJRefreshAutoFooter.m */, + 7CE9A594E8A127B7273A7D82E1882497 /* MJRefreshAutoGifFooter.h */, + BC7F3F9323470C634DC0D469E7C13B10 /* MJRefreshAutoGifFooter.m */, + 77973C87CC9649629EBEE249DCC355F5 /* MJRefreshAutoNormalFooter.h */, + 6021531912761F1BDBFE14A61784B26D /* MJRefreshAutoNormalFooter.m */, + 8C065D632F2F749CBD48B178A68B1631 /* MJRefreshAutoStateFooter.h */, + 8CF1445CC744306AE4ECBA85DFD6DB27 /* MJRefreshAutoStateFooter.m */, + F32DF0242A37C60B9E8BEDC175125BB2 /* MJRefreshBackFooter.h */, + A7EA79586CBF531A23E8B00CFA7B82C7 /* MJRefreshBackFooter.m */, + BBA58A99F7E528A8D41BD96706230160 /* MJRefreshBackGifFooter.h */, + FD937703BB1091324CC7A54FB95A5217 /* MJRefreshBackGifFooter.m */, + E45A9679E38D826E316675D8F368F69C /* MJRefreshBackNormalFooter.h */, + A64A22A853C13E4375B73E01D1D90CB1 /* MJRefreshBackNormalFooter.m */, + ED2A7F3394578B0F6BEA7FBFFE1E2291 /* MJRefreshBackStateFooter.h */, + E7485AA213719656370219B55A0AAE3C /* MJRefreshBackStateFooter.m */, + 5E9C6ED309FB0F6481FF6639AA9C417B /* MJRefreshComponent.h */, + 6C9E32D40F89FB7470530B4F8AAB6162 /* MJRefreshComponent.m */, + 2B4792E0E693278C27DB918B70E58272 /* MJRefreshConfig.h */, + 3C71B9877A51B54673C7FFC0C3276863 /* MJRefreshConfig.m */, + 63A3BD4651AA1DDCB216ABB7FBC3A69E /* MJRefreshConst.h */, + 8638AEC16F5A3F7D05EF0F7C39544261 /* MJRefreshConst.m */, + 800ECE845D6F36BE51A284DFCAE27307 /* MJRefreshFooter.h */, + 0260C833576479A14C0F759F9D161479 /* MJRefreshFooter.m */, + 7718D3A1CB256B2263AD76B8EFDC9B86 /* MJRefreshGifHeader.h */, + B6242B29A00A9DBC6FF1CD09266BBF54 /* MJRefreshGifHeader.m */, + 16308A5AF08E401B61B68CCD953A0528 /* MJRefreshHeader.h */, + 66E849825D4B5783372753D6820DE97F /* MJRefreshHeader.m */, + D411D25D78A2F9E3CF17B20443ED9F40 /* MJRefreshNormalHeader.h */, + 61D65BB6AAD351E64F3FE46FACDEED4F /* MJRefreshNormalHeader.m */, + 83340409B38BF2A20F089A4B919FC02F /* MJRefreshNormalTrailer.h */, + 6DE6908A836615F946533A6FEE623373 /* MJRefreshNormalTrailer.m */, + F8CEEFBE4317D04F4FD181E44C90A119 /* MJRefreshStateHeader.h */, + 3259CC7D8EE4331CC9B8A86DA09EA5B3 /* MJRefreshStateHeader.m */, + AB1D54171867DC3B104DAE8C6D30F644 /* MJRefreshStateTrailer.h */, + 29792A8AE7CB7444FE7BA20424B814AD /* MJRefreshStateTrailer.m */, + 572433DB55AF2085E2E4D419FCE37679 /* MJRefreshTrailer.h */, + 5C64D6AC35DE27CAD74CA154541AF1C9 /* MJRefreshTrailer.m */, + 412FD8B68949345873B82E2D0C864C85 /* NSBundle+MJRefresh.h */, + 9ECA4FF1A4B2A73F055139B44105081C /* NSBundle+MJRefresh.m */, + 70021D526E8906DE61E9D2D0F92A78C3 /* UICollectionViewLayout+MJRefresh.h */, + BE1A1849BD6BB4B796D54DCBEF79FB7A /* UICollectionViewLayout+MJRefresh.m */, + 304FA88F8B2636C2DD7FA535D2BD617D /* UIScrollView+MJExtension.h */, + B8F1319B150BB3DBD94BEB4C80F6F296 /* UIScrollView+MJExtension.m */, + DE0511947F57D1CF3F274B6414AE449B /* UIScrollView+MJRefresh.h */, + 6B94BD4B7CE09D63E43117EFC4B15D0D /* UIScrollView+MJRefresh.m */, + 38C2193309DE8B485EA6F0495C08B115 /* UIView+MJExtension.h */, + 60696FE70F42B1A0CD7B0614C2A2F16C /* UIView+MJExtension.m */, + 27463477E43B49707581CF13A6E099B2 /* Resources */, + 28E2A9A1CEAC3F154F646A51F0227786 /* Support Files */, ); name = MJRefresh; path = MJRefresh; sourceTree = ""; }; - 37D1A84159EF2DA3622D5B6253D94232 /* Frameworks */ = { + 27463477E43B49707581CF13A6E099B2 /* Resources */ = { isa = PBXGroup; children = ( - AED1D348255F77CE4BB2B0BB61E22F08 /* Bugly.framework */, + 083F5143D12F213638EF9FE439F1CEFA /* MJRefresh.bundle */, + 20674A80959A90C9F9E51DBDC8807D93 /* PrivacyInfo.xcprivacy */, ); - name = Frameworks; + name = Resources; + sourceTree = ""; + }; + 276C8F966392FC7A9273EA1CF3239640 /* HWPanModal */ = { + isa = PBXGroup; + children = ( + FC8583F4233091326F271A4C13185F5B /* HWBackgroundConfig.h */, + 3F0DA836C065C821DDDE100A36B1C087 /* HWBackgroundConfig.m */, + 0F1705DF1CC5E82194523F85FE871354 /* HWDimmedView.h */, + 9230BE776665C8EB51C8889631B1B31B /* HWDimmedView.m */, + 1EC115C953943E0027F6AD5AFEE41A30 /* HWPageSheetPresentingAnimation.h */, + F5EB73BE761C595601603CE39EC8D850 /* HWPageSheetPresentingAnimation.m */, + 94CE97E5A9659D6EE58C83DCB52F73D5 /* HWPanContainerView.h */, + 453FB14441528B4AE2CF3592D5874C54 /* HWPanContainerView.m */, + 4A15AB0AB6FCF1589E2A6CEDC3CF0B95 /* HWPanIndicatorView.h */, + 77E6EFEE426EA2068D5FE2B73740D659 /* HWPanIndicatorView.m */, + EC37DBDA721D0EFF5AB018086BE1B195 /* HWPanModal.h */, + CF7B4B9CB0EF762A12884D6FE337E068 /* HWPanModalAnimator.h */, + EDA5337EF8951852F4AA839734BF6786 /* HWPanModalAnimator.m */, + 091DAAA7597B1233173C3BB1DC8D1D79 /* HWPanModalContainerView.h */, + 0BED1E57A7780D7944D806EF7FB48648 /* HWPanModalContainerView.m */, + E6CAC4483459A4704E779D629644670B /* HWPanModalContentView.h */, + 9E31AD6314EC8102DE4FC6291C0FE66F /* HWPanModalContentView.m */, + EF7183977EF6286C16A64DBC3D765320 /* HWPanModalHeight.h */, + BCDE5AFCF524DCA9CD59B6F4A4738325 /* HWPanModalIndicatorProtocol.h */, + 47A97040129EEE8B96AEEA0A9B73DA45 /* HWPanModalInteractiveAnimator.h */, + 74751305705DEA03873DFA2AF4DDC9B7 /* HWPanModalInteractiveAnimator.m */, + F764EB4004D4A21398D072493BD19D56 /* HWPanModalPanGestureDelegate.h */, + 3A10B1AFB4B6959F4A11AB1B1BC4A437 /* HWPanModalPresentable.h */, + C644FF26241C14C759578567892EF00D /* HWPanModalPresentableHandler.h */, + 0FC2E352D2D0DD942A9B4488E3654AB0 /* HWPanModalPresentableHandler.m */, + DB48FEC8123075E04395CF34F6F8227D /* HWPanModalPresentationAnimator.h */, + 831897EBD9EF72C4D55D02DE399C410A /* HWPanModalPresentationAnimator.m */, + 87888E540A812F012C68F804E8F5AE7B /* HWPanModalPresentationController.h */, + 1F9506DDA8FBAA7420E9B8137BFCFDFA /* HWPanModalPresentationController.m */, + 4EBFFAE4CE0471C78DB70755CFCC7609 /* HWPanModalPresentationDelegate.h */, + 1724C0944D7BC65545806EE9EDED203D /* HWPanModalPresentationDelegate.m */, + EF62C88D7041DEBD26117AF61789D8AB /* HWPanModalPresentationUpdateProtocol.h */, + DE4F66BD16AF47C58F5E08D62D7916E3 /* HWPanModalPresenterProtocol.h */, + 568F43CF567335FABEC4825ED4776B19 /* HWPanModalShadow.h */, + 513C1A2EE22268DD51EB02AE24E3B579 /* HWPanModalShadow.m */, + E4F1989DBFF7A3D94A0CF758DF35B3F6 /* HWPresentingVCAnimatedTransitioning.h */, + FCBCC9D408AF4A848CBB9CEE3327E256 /* HWShoppingCartPresentingAnimation.h */, + C5D725B550FCED60C80870F1B120D3B4 /* HWShoppingCartPresentingAnimation.m */, + 7E270235979252FF388A0C6D1E54966D /* HWVisualEffectView.h */, + F5D8EBF4698D8B331794EA6F9BF47665 /* HWVisualEffectView.m */, + 05D708E8F9065868500ABC98E789B739 /* KeyValueObserver.h */, + A2350DF4D8FE6C892E64B8C644667527 /* KeyValueObserver.m */, + 7BDFAC11D184E7F4498FC12FE0AFDCFC /* UIScrollView+Helper.h */, + 330AFA4D280CBB2EE073DCC942489EAB /* UIScrollView+Helper.m */, + 2B0B272843C604B68C602DEE1AD3605F /* UIView+HW_Frame.h */, + ECA7ED760D61427E9195A2805DB71798 /* UIView+HW_Frame.m */, + 2DC211B96CB1A7D40B3203E4778066C9 /* UIViewController+LayoutHelper.h */, + F9AA00EC509DE2C0E25E749F629EF1F6 /* UIViewController+LayoutHelper.m */, + E8C71212CAB0DCBF4059538A93053A4A /* UIViewController+PanModalDefault.h */, + B95FDE5F86C6AC76E24A82E181084256 /* UIViewController+PanModalDefault.m */, + 82F6D1678A37FB68B3455162AB8BDAA2 /* UIViewController+PanModalPresenter.h */, + 2A1E2D85798C902C2A1E1B714EF78587 /* UIViewController+PanModalPresenter.m */, + DB3B6BBCBC04C438F099DE5DEC15C188 /* UIViewController+Presentation.h */, + F6CDCEC9BF52B36734600241EB9CC345 /* UIViewController+Presentation.m */, + F9D546C8B0F4E1C342B53CD786B328AB /* Support Files */, + ); + name = HWPanModal; + path = HWPanModal; + sourceTree = ""; + }; + 288FC03C5D2C78A45B56AFFEE5C2C9F7 /* LSTTimer */ = { + isa = PBXGroup; + children = ( + 68AAA13D71385283DB69A35327BC2F47 /* LSTTimer.h */, + CE5782C68BCDC8C49DD74B206B3FFFF1 /* LSTTimer.m */, + EDCE25045C1BBF6ECB7211723055D0DB /* Support Files */, + ); + name = LSTTimer; + path = LSTTimer; + sourceTree = ""; + }; + 28E2A9A1CEAC3F154F646A51F0227786 /* Support Files */ = { + isa = PBXGroup; + children = ( + ABAC9F2093F2EF164CB968D710D261F5 /* MJRefresh.modulemap */, + 741E2A603352D4102F1DAFBB68C69122 /* MJRefresh-dummy.m */, + 04996832466C0B682760DEB660586A88 /* MJRefresh-Info.plist */, + 81D115D4A9C927BEBA7B66F114F7B4EC /* MJRefresh-prefix.pch */, + 6A2E7581F1DA07EBD6D2568091FCCB71 /* MJRefresh-umbrella.h */, + 7895C7C58218B5F79C76FA1B5A55E669 /* MJRefresh.debug.xcconfig */, + A324C5885C8FB2DC65900A0EE79A0E45 /* MJRefresh.release.xcconfig */, + 9897B379E415C6537D86A30137A8D274 /* ResourceBundle-MJRefresh.Privacy-MJRefresh-Info.plist */, + ); + name = "Support Files"; + path = "../Target Support Files/MJRefresh"; + sourceTree = ""; + }; + 2F8EF5B81FDAABB39353996747C04D04 /* Core */ = { + isa = PBXGroup; + children = ( + E4A5839D54BEE8A98756D5288A3E5050 /* NSBezierPath+SDRoundedCorners.h */, + 34F0487226F5EBEBA3C6D3E1743C5260 /* NSBezierPath+SDRoundedCorners.m */, + CE2B5265F3721FD7EAE15556CCDB1151 /* NSButton+WebCache.h */, + 53155231B4EB5B29274A0546D6F39B91 /* NSButton+WebCache.m */, + 00449113F3BDDB46E11CEE02CF1F29A1 /* NSData+ImageContentType.h */, + 928339E7523C1267D5DF15E548454A5E /* NSData+ImageContentType.m */, + B09C6285E70223CDED72989080A8442A /* NSImage+Compatibility.h */, + 23763927ED025640A4CAA94867A3D823 /* NSImage+Compatibility.m */, + A1411B1EA7A3C51DB2072BF40B4D5A60 /* SDAnimatedImage.h */, + BDB258BF0BE17AFC3BFB4FB942403B82 /* SDAnimatedImage.m */, + 6C1E503B34448DC968FB5BDFADFAE70F /* SDAnimatedImagePlayer.h */, + 8A5D6AD5CB7122607D6E477D373A31E2 /* SDAnimatedImagePlayer.m */, + 674659ECD497CB56B02FD385F68621CA /* SDAnimatedImageRep.h */, + C94F3031AB6C5451E9610DBD24FE9029 /* SDAnimatedImageRep.m */, + 37977014CE5B8A9E93F1EC56C3AC6D52 /* SDAnimatedImageView.h */, + 883434364AD74D3F77868A0CF2FB7A09 /* SDAnimatedImageView.m */, + B705DD8FCD54B3AFD61B70C82828ACE4 /* SDAnimatedImageView+WebCache.h */, + A2C2A9B920BB92B872BA2AC2EA086220 /* SDAnimatedImageView+WebCache.m */, + E4BFFACAA945CC17167910BF3C319571 /* SDAssociatedObject.h */, + 321334B98147E6E64FCE056E3717FEE0 /* SDAssociatedObject.m */, + 026BB0AEDD69539DEC39191EE0C5214B /* SDAsyncBlockOperation.h */, + 2A03E8820B42DFF0FCE849CB64302CAF /* SDAsyncBlockOperation.m */, + 402736588AC9D07AA589F2943BAE3C89 /* SDCallbackQueue.h */, + 7BD134826FCB54429F667B8DBF296710 /* SDCallbackQueue.m */, + F287F335FB60871C584FAC1904FF4181 /* SDDeviceHelper.h */, + F947DB2E34F4112ED83356B8AA944880 /* SDDeviceHelper.m */, + A464713D364DCC51BD1C744435EF31A3 /* SDDiskCache.h */, + FAA3871C50E5746944D1C3FA3E4736CE /* SDDiskCache.m */, + B5F6ED51FA52849CB3D9D44DD45396E2 /* SDDisplayLink.h */, + 1679E08A4A241FB86455E71FDFB20D9F /* SDDisplayLink.m */, + 0ED5656E5971882A3EA314E222EBC2C5 /* SDFileAttributeHelper.h */, + 72CEA2C3193763834CD0E25D8DB88F2D /* SDFileAttributeHelper.m */, + D444527057532BACBF8EC98BE62D3E03 /* SDGraphicsImageRenderer.h */, + 46F71F9F19999F6D4F186847FA3CC8F7 /* SDGraphicsImageRenderer.m */, + 3501E850F701BA678364B4AFBF1C8417 /* SDImageAPNGCoder.h */, + 07274C755D75F4A07C925D1DDE5FA529 /* SDImageAPNGCoder.m */, + 9F5507B4A6BD90BF5F74B1AAC009AD90 /* SDImageAssetManager.h */, + 87B2A7EE05A20B3EDDFE045A6B7911E5 /* SDImageAssetManager.m */, + BF3C6AEB909F4472F8D8E4E21B25B716 /* SDImageAWebPCoder.h */, + BC30CFC7778FEADF9DCBF0A4ABA1769C /* SDImageAWebPCoder.m */, + DEEA81C89F22AF300ABFA4E5550B7B06 /* SDImageCache.h */, + 77715D6F65035CFA25715F00E4915BA5 /* SDImageCache.m */, + E368F7BC820788B717CC047A744E4326 /* SDImageCacheConfig.h */, + C3D9450A4AAE9542E6A1A0473B7DF812 /* SDImageCacheConfig.m */, + B2C2A4CA80B5FE7CB8927FAEE4CAF5F4 /* SDImageCacheDefine.h */, + C74EA9D59FFCBE16D0C0E5B7B2D53516 /* SDImageCacheDefine.m */, + 839CCD719F79C7FBC2909C72822FB470 /* SDImageCachesManager.h */, + DFE214BE294126C1B4FFE49DDADA7AEE /* SDImageCachesManager.m */, + 6A41E1A305241C5A627FAD06CB90A275 /* SDImageCachesManagerOperation.h */, + EE9E5D3590E1EC14CD269A8B340CE3F0 /* SDImageCachesManagerOperation.m */, + 5EF3B546633CC3DB26A173DE519AC3D7 /* SDImageCoder.h */, + 2E79D80C613F4B57826DA627018BB1C5 /* SDImageCoder.m */, + A3E40CB9D351DF0E70C7A452071E82E1 /* SDImageCoderHelper.h */, + FEE19DBCD45615CC389DD7223D3C447A /* SDImageCoderHelper.m */, + 0BC7EB117F009B160822B3FFCCC63F2A /* SDImageCodersManager.h */, + 03700B93F7A3FF6F3675D80E5DB1C1C7 /* SDImageCodersManager.m */, + 6D8BE2762FA18EF88A5BAD861C739B02 /* SDImageFrame.h */, + 452754C8CDFE17EC42C563B4B6E1F69A /* SDImageFrame.m */, + 449CCE39A5A9EA789B9A284113D1025E /* SDImageFramePool.h */, + BF31B533FDEE0B0DA7ED824B4F336534 /* SDImageFramePool.m */, + 9C0E279B5FFB9696801CC86ACF92805A /* SDImageGIFCoder.h */, + 763CF36C11B6092D9D5485AC2363F205 /* SDImageGIFCoder.m */, + 5EA970CCF2164DC59ECEE9DE06B1BCBA /* SDImageGraphics.h */, + E9FA8ED817E86A0F4415B8E73B62DCF8 /* SDImageGraphics.m */, + 55488AFE93BF97340EF80D0D6C1E2CA0 /* SDImageHEICCoder.h */, + 1CA6A325AACF7253FFEB9D258746335D /* SDImageHEICCoder.m */, + B75E67C2319B8FDBF4D6263203A06D6B /* SDImageIOAnimatedCoder.h */, + B92B905C66437721BB933FEDA5B00CB4 /* SDImageIOAnimatedCoder.m */, + EF1815C1F114106321929B2F631067E5 /* SDImageIOAnimatedCoderInternal.h */, + E4718E4C19C181FBAEBD080580F8C026 /* SDImageIOCoder.h */, + 04094D9F916F0B3E8A409CF5EEC45FCC /* SDImageIOCoder.m */, + C8ED101794ADA1876F4FFCBD1F79D622 /* SDImageLoader.h */, + B9E1D06297B630EA32D1369915C0CB97 /* SDImageLoader.m */, + 7C1F5F86210D3FB1EF59D8665E7C4A77 /* SDImageLoadersManager.h */, + 2E585503EB164F6C036C85B124140368 /* SDImageLoadersManager.m */, + 6EAD8B1C822E0F2BAB884329D798190B /* SDImageTransformer.h */, + C45DF4498F0949CD4F02FA86BFE50D93 /* SDImageTransformer.m */, + 962D7794EB805E6D2F4F5F0B58218401 /* SDInternalMacros.h */, + F1CF9E4569F5B94286E175AF9D675C11 /* SDInternalMacros.m */, + 256D50D68BFC3FD314552D1D0BC2044D /* SDMemoryCache.h */, + C202F1C5D8455CDDCAE965BD7BAAFC3B /* SDMemoryCache.m */, + 98B3D67E4B164109B9B94A959496BA25 /* SDmetamacros.h */, + A92BC89EBEE6C3CE964CA994B506EA43 /* SDWeakProxy.h */, + 98901829A364C7B4F13375AEB6AA0FBE /* SDWeakProxy.m */, + EE827BC4171898B142EBDE3C763AFC7F /* SDWebImage.h */, + B4F7FC0CFCBE2143A4999C2F356D2B47 /* SDWebImageCacheKeyFilter.h */, + C909F8904D301FB96965DD62CE4E2CA7 /* SDWebImageCacheKeyFilter.m */, + BD430BA3E5DB115A0F8BF9D6110923AE /* SDWebImageCacheSerializer.h */, + 0D6771046C7CF97C82B7D303F2AFD49E /* SDWebImageCacheSerializer.m */, + B87895ABF5221A865DF2D53247763F89 /* SDWebImageCompat.h */, + F00B3F2B17BB2816232EB507B7AC9018 /* SDWebImageCompat.m */, + 3313EDBDBF7A4CA0DC32526D9ED0B496 /* SDWebImageDefine.h */, + AEEC6C323BA320F8FE0EFED607BC9994 /* SDWebImageDefine.m */, + 96AEDA915084E949F39F28D248C2FB43 /* SDWebImageDownloader.h */, + B453C947A0F7F0133F2F98F9E8EF1E43 /* SDWebImageDownloader.m */, + CBD58A6BE5B4D23DDB42D3D26A87CAEA /* SDWebImageDownloaderConfig.h */, + 6650E50E5FAFFD61FC973E5A0D5C8398 /* SDWebImageDownloaderConfig.m */, + 3ED4F75E10F9C3D76FF139C89BBB8154 /* SDWebImageDownloaderDecryptor.h */, + E38A10934CB29F9B2C75A0785209FA84 /* SDWebImageDownloaderDecryptor.m */, + 304D443FD07AF14BA7F1628D80971669 /* SDWebImageDownloaderOperation.h */, + 35B67A3C0E25A19B996355E03ED4A3CD /* SDWebImageDownloaderOperation.m */, + B2CE10A014B3B7826BFF751346CE7495 /* SDWebImageDownloaderRequestModifier.h */, + 607560CCA2D3766D85B5AEE557812D0E /* SDWebImageDownloaderRequestModifier.m */, + 6F1245D39980C8CC23C4FFA557C72FA3 /* SDWebImageDownloaderResponseModifier.h */, + 4BC98580A0BA844CDD661F01812A35C7 /* SDWebImageDownloaderResponseModifier.m */, + 16465B6B7358098E137335C9985BBBBC /* SDWebImageError.h */, + A4F1299F85FD74B081B5C5F85EF530B7 /* SDWebImageError.m */, + E0DD4370E4AF2D75716AE1B5D67EABEB /* SDWebImageIndicator.h */, + A56060BC793E00F370FD0DF3B4157376 /* SDWebImageIndicator.m */, + 253C2858A52DB3FD4BE13D65D2B6C2A6 /* SDWebImageManager.h */, + EFC3A24D1CE615DA957AE8C5AC47E5D7 /* SDWebImageManager.m */, + 949A8C57291DF7D8139F90AD367DB80C /* SDWebImageOperation.h */, + 0A70A9B1B9D076F21A4C704EAC69B3E9 /* SDWebImageOperation.m */, + FD3C0DF69EC6CFA1DD8299F62B1A84FB /* SDWebImageOptionsProcessor.h */, + 1B82CFD6AD23DAB70352983FFFA8DBBE /* SDWebImageOptionsProcessor.m */, + 6099FBA2A3EE3D602B49D82E19FA5875 /* SDWebImagePrefetcher.h */, + 9AA439B2B87976D37C23F7DCCE897F8C /* SDWebImagePrefetcher.m */, + 59CF9D4B8C92110B4BC1E1792E4AAEA5 /* SDWebImageTransition.h */, + A4B49E8FCEA2AFEE938A133ECC269CF2 /* SDWebImageTransition.m */, + ACD18D412C592E0FB706C10554E5283E /* SDWebImageTransitionInternal.h */, + 731A2E2A09E554B786F7BD8D9285D1CC /* UIButton+WebCache.h */, + E8B2553B72F322F7DC0ED38BB760DDC6 /* UIButton+WebCache.m */, + DC85B08C4C82F12C3AA7970FE44E1D9F /* UIColor+SDHexString.h */, + 343C42E325F84441C510AF8DEE739ADF /* UIColor+SDHexString.m */, + 8D2F3BF5EE9E269F816330AC6BF6745F /* UIImage+ExtendedCacheData.h */, + A7A348B5BB8CB7A444F827000C95DAE5 /* UIImage+ExtendedCacheData.m */, + 317AEF64C0405ADA2DB47569A6D72FC4 /* UIImage+ForceDecode.h */, + CF91BA63B659D0E10C9E123EBEAB8FA3 /* UIImage+ForceDecode.m */, + FB1FCAC52ADC49B2B3A81FFCCD3D56EE /* UIImage+GIF.h */, + 7A2AEB4C3E4F6147F107DF9376FA7264 /* UIImage+GIF.m */, + 0055AF44029FABEF5E29D1BC1B86CC15 /* UIImage+MemoryCacheCost.h */, + 0451FF8513ABCE79BA473B450192579B /* UIImage+MemoryCacheCost.m */, + 429004AF40A48DE835234068590E6A94 /* UIImage+Metadata.h */, + 5E5C516541F7C7AC40E990C05307FEEF /* UIImage+Metadata.m */, + 517D8EDC9F4BA34E4E4060247125B56D /* UIImage+MultiFormat.h */, + 373258A2F6DFCE8ADD1C1D42DE5EF5D3 /* UIImage+MultiFormat.m */, + A39050EBA53940D0CE63B52BF031BE6C /* UIImage+Transform.h */, + 0EBF81CE72AA8B4B06F1BC37CFA7B96A /* UIImage+Transform.m */, + 855BA7199BD9AC7B4687AF3F66E21279 /* UIImageView+HighlightedWebCache.h */, + F139F3BFF4ABD0678E7947E118F47774 /* UIImageView+HighlightedWebCache.m */, + 0B5075BB968E268BB5D61B393C333DB4 /* UIImageView+WebCache.h */, + FB718B97DF8D94DCF736C973F8184652 /* UIImageView+WebCache.m */, + 36BEAD7507B8644D14D46C852A6EF20B /* UIView+WebCache.h */, + F8CCC7FB49429A8093BC8191C6474D58 /* UIView+WebCache.m */, + CF6ABA6691731EEA533F56170FB03C5C /* UIView+WebCacheOperation.h */, + 43901AAA2BB40AE5F534540676833E30 /* UIView+WebCacheOperation.m */, + 919C930C4E0162377E3C95D0F6F11177 /* UIView+WebCacheState.h */, + 8E4925A54FF503F963785651A98856BD /* UIView+WebCacheState.m */, + 0B3501DF96788E261B37AA47988480FF /* Resources */, + ); + name = Core; + sourceTree = ""; + }; + 3FB59ED98513C1B8FA6DBF40283EB341 /* Serialization */ = { + isa = PBXGroup; + children = ( + 4228538168305A12A3465600D6FA372A /* AFURLRequestSerialization.h */, + DE378B71C4559C86FA84F1AB2F15BD03 /* AFURLRequestSerialization.m */, + B5A6B26A93BDE64568CF7AF44D709974 /* AFURLResponseSerialization.h */, + 1DD3D7BBD826081D1399FCDA65D59838 /* AFURLResponseSerialization.m */, + ); + name = Serialization; sourceTree = ""; }; 4098ED899C8DF8E013F9F260ECFAA236 /* Pods-keyBoard */ = { @@ -2051,203 +2210,6 @@ path = "Target Support Files/Pods-keyBoard"; sourceTree = ""; }; - 4121134849DA04BCD3BB12CF65EEF182 /* Core */ = { - isa = PBXGroup; - children = ( - 32CCCC7F014C0FE2CA551D9AF48EEF89 /* NSBezierPath+SDRoundedCorners.h */, - C5A25B7B454717DB3993591B5E8B612E /* NSBezierPath+SDRoundedCorners.m */, - 0A7095DB3527991440F374C9F9DB5050 /* NSButton+WebCache.h */, - 4A970B89D7ECEFF994ACF22A5493E001 /* NSButton+WebCache.m */, - 4561971E2CF7A1F1B00AC6091B3448DE /* NSData+ImageContentType.h */, - 2132EF8C73164960BCAFD57CF9C7A53F /* NSData+ImageContentType.m */, - F55015AACD21AF6274741BBDAC6148E2 /* NSImage+Compatibility.h */, - 102C92CE02746A6588B44F852322AB39 /* NSImage+Compatibility.m */, - 167D63F7114C5D501803C08C617324CA /* SDAnimatedImage.h */, - 5B609960A71B1FE2AB814B679D9E7609 /* SDAnimatedImage.m */, - 2BEAAFCDD4CD23AABA4CD7359454B646 /* SDAnimatedImagePlayer.h */, - 8532F3DD3C373C14A106D14F67A3C301 /* SDAnimatedImagePlayer.m */, - 807026E96F55910EB566C0F4535DF3EB /* SDAnimatedImageRep.h */, - FBF4C669CA968A448B7E1DD3A141A41C /* SDAnimatedImageRep.m */, - BEE43BCA7C1A101BFC7A5856F8793387 /* SDAnimatedImageView.h */, - 635235003B3FEDB8B457A8FFF46C69E3 /* SDAnimatedImageView.m */, - 13D84A2503CDD440D0A0063FF97A2EB4 /* SDAnimatedImageView+WebCache.h */, - D547696F5943987BC61D389F16B201E8 /* SDAnimatedImageView+WebCache.m */, - C0ECED1A3FCBB93D40B1BFFF5AE2F27D /* SDAssociatedObject.h */, - 9421B0E41FC583CAD966F98C60445BAB /* SDAssociatedObject.m */, - 9820AAA1C732351179414BB46300A1B7 /* SDAsyncBlockOperation.h */, - 5E8666C77464C3B683AB0F8D4DEA6951 /* SDAsyncBlockOperation.m */, - 491DFACE04BF80FD0F37C4ECFE908522 /* SDCallbackQueue.h */, - 7E8762E22AB8C87B76E6D94D44665136 /* SDCallbackQueue.m */, - F246E4D58E65C83AB3493871F692FC9C /* SDDeviceHelper.h */, - 4CF942497E18FEE75DD2CDC6779A790A /* SDDeviceHelper.m */, - CAD21419CFC8A372DB941E7983ADDD9D /* SDDiskCache.h */, - 45505B1DFA133379CEE6DD6D8148013D /* SDDiskCache.m */, - A5C74D4E7CA539C956587A3615702D24 /* SDDisplayLink.h */, - 61A0FA60F5E41A8B04C442FE582DA298 /* SDDisplayLink.m */, - 3201B19667C12026E1C92EA1DD973BB7 /* SDFileAttributeHelper.h */, - 41B90877BBAECA72C2F67A5E39E1E87A /* SDFileAttributeHelper.m */, - 3653F678D1C9DBE34F6262A65263C642 /* SDGraphicsImageRenderer.h */, - FC52B8F222678A49BF1BA307CD9A7777 /* SDGraphicsImageRenderer.m */, - FB334521D7F08199DE839AB68A37105C /* SDImageAPNGCoder.h */, - 92B0AD9AA2CE09EEB0EF8C040E103B97 /* SDImageAPNGCoder.m */, - D3543E70B7F1B6F0CB25AB731CA0DFBE /* SDImageAssetManager.h */, - 9F94B604866DB37515D32D88635EFEE2 /* SDImageAssetManager.m */, - DC870A534B766E7815C7744EE9E7E3E1 /* SDImageAWebPCoder.h */, - 2E5DB75D5C223CDC5703FA115447A148 /* SDImageAWebPCoder.m */, - BCAF03C4FF87945F86C061039CB2443F /* SDImageCache.h */, - 11EEC0D59FA31FAAD209A208EB338575 /* SDImageCache.m */, - 94DB79C6893EAE9D1A7D3559B485BCC5 /* SDImageCacheConfig.h */, - AEB0E8A16F89DAA71F5718EDBF3E2A83 /* SDImageCacheConfig.m */, - 7A8A3FC6E6388A4864974A3D3B9C02F6 /* SDImageCacheDefine.h */, - 6DB3789FF1142F1817E52B4F6C9BA1B6 /* SDImageCacheDefine.m */, - D744043462D81E4ED2BB1ECAE8E9F696 /* SDImageCachesManager.h */, - 25A5CCE05BC1D97AB685203E1D41C4B0 /* SDImageCachesManager.m */, - 9DC4AC8D166AB2BD8B557BFA9FA9872C /* SDImageCachesManagerOperation.h */, - E6B846D03C97210EDD55850D04A8F27A /* SDImageCachesManagerOperation.m */, - 471A02E298FA363A6051045C83C8BE05 /* SDImageCoder.h */, - 9D7E450C43D308EE4C1B879D0B60A4BF /* SDImageCoder.m */, - C7E392E347A9555F1447E0FBB3E777E5 /* SDImageCoderHelper.h */, - BBC5ED786070BB7777881EF2B55FF369 /* SDImageCoderHelper.m */, - 83B5308ADA544D7E6FCE86EFD21D5CBB /* SDImageCodersManager.h */, - 3D1EF86D80B6333688465CCC41BA33F7 /* SDImageCodersManager.m */, - 6C3B1F50C3A3E82B67AE98F2BAAD5C3C /* SDImageFrame.h */, - EAEC3302C39E58E44D49A12FA8699A84 /* SDImageFrame.m */, - F86F79271CDA27370B63C4004FB83EF7 /* SDImageFramePool.h */, - 8E8C0DD47533304FD7479FB5A47A4E3B /* SDImageFramePool.m */, - 911E6F5D1D17453D35BE3FA4A9086972 /* SDImageGIFCoder.h */, - CE77C4D90418C342647C55D75A5C1AE8 /* SDImageGIFCoder.m */, - B5EF3518EEE6DB69526EE34FF9D58DFD /* SDImageGraphics.h */, - 2504FFB7834ECCFC15329B28F3C9A331 /* SDImageGraphics.m */, - 0F050843F5053FDD98D8FE72C1E28A5F /* SDImageHEICCoder.h */, - 3125F7D904D9F1F20C7699EF5186B19F /* SDImageHEICCoder.m */, - 390647665D633FF246584D1E27162F0D /* SDImageIOAnimatedCoder.h */, - 3504487D6CA5438A7FB00D149564DDFC /* SDImageIOAnimatedCoder.m */, - 06077AACB035D8452C9F730B2E1F00DF /* SDImageIOAnimatedCoderInternal.h */, - 31894250FE81D510485178A2F984B715 /* SDImageIOCoder.h */, - D2F471FC57FF6DD1F698134B35D27C95 /* SDImageIOCoder.m */, - 9CE19B5D21ECCFC76311F186D2B3F651 /* SDImageLoader.h */, - FA395F2DBB98D70F218443EA65E0D442 /* SDImageLoader.m */, - E889A3C02C6D9C2F5501AF30759E916C /* SDImageLoadersManager.h */, - B3F518DFA534AD602991065542FADB29 /* SDImageLoadersManager.m */, - 61080F57DD92AB8ABC811791B547090C /* SDImageTransformer.h */, - AC558AE5F168E24878BD4ACF3EE1274A /* SDImageTransformer.m */, - 3422D3CB84719A98D68CD9DE2857E694 /* SDInternalMacros.h */, - 123714F0F2335CBE901933785D4D26FB /* SDInternalMacros.m */, - 82BDCD67CE12306B5AF6A9E3DB88E0DA /* SDMemoryCache.h */, - B7AD3647BEEBE4C691B28F5746D51E7D /* SDMemoryCache.m */, - 5A6A16B78780399804F5DD15816ADE2B /* SDmetamacros.h */, - 45880427FEDFE00B81EA46DB6F5AFD52 /* SDWeakProxy.h */, - C5A9A86ABA54140CD0A5B6CD44C79740 /* SDWeakProxy.m */, - BB4D65769822C57911F4A84B9F8FADFA /* SDWebImage.h */, - C205DB74EDBD3C80FB36923BD2255DBB /* SDWebImageCacheKeyFilter.h */, - 34C31D8DFEC22296E69E97BC5CEAE316 /* SDWebImageCacheKeyFilter.m */, - E95C47EFA2CADA467B5A46831F0EA87A /* SDWebImageCacheSerializer.h */, - 6BEFA0A1959620AC394975A01082A23B /* SDWebImageCacheSerializer.m */, - AB253C473EBD2DF633A230C7FAA304B7 /* SDWebImageCompat.h */, - 64891F4568CD87380D133019B00B2324 /* SDWebImageCompat.m */, - 8B0013F9906622545E27B913F2092F22 /* SDWebImageDefine.h */, - 9C599636DAB63CB63CC65E368E1BAAFC /* SDWebImageDefine.m */, - 402826B784C1198142F399AD251F2A3A /* SDWebImageDownloader.h */, - 2FED06425BD958CD54FC4A96C6FF1992 /* SDWebImageDownloader.m */, - E138C277A1DD60E5BB20AB4EC7CEBDB2 /* SDWebImageDownloaderConfig.h */, - 47655EC4466A20F4BEC0C76B8F4C5440 /* SDWebImageDownloaderConfig.m */, - 5716AF79F54782358457FBB452B73975 /* SDWebImageDownloaderDecryptor.h */, - DBE1F0821F32567F3E84359D65C8422C /* SDWebImageDownloaderDecryptor.m */, - 9B89E97BE59B9448BC63E348FA77F055 /* SDWebImageDownloaderOperation.h */, - D68B54EB4EEB9AF6B9ED16CAB83E16BA /* SDWebImageDownloaderOperation.m */, - AF302A5E7BA56F9F631A8591DA72D3C3 /* SDWebImageDownloaderRequestModifier.h */, - 02986FE530B6F5FD0ABF721900839DA5 /* SDWebImageDownloaderRequestModifier.m */, - EC33F9EE9311F0E41E69AB2D40770217 /* SDWebImageDownloaderResponseModifier.h */, - BBC2FF6B1D45486A6893E456C4B85E05 /* SDWebImageDownloaderResponseModifier.m */, - 109DC293F90D678E22D453F41A197049 /* SDWebImageError.h */, - F8A31B7D92D4FBD879F8C39ED3139439 /* SDWebImageError.m */, - AD28EF542A0B7F210E7C92D1D9DEC003 /* SDWebImageIndicator.h */, - 0A8F3B5ED5052E8AFF569E50436DC3C0 /* SDWebImageIndicator.m */, - 32DEFB57DAEAFA1A97A9826678533D16 /* SDWebImageManager.h */, - 2ED4FAFE5BD7891D4471852209337077 /* SDWebImageManager.m */, - 2ECB40CAF1E6F3F4A5F02F74E30B95E8 /* SDWebImageOperation.h */, - ED2932A528EF3931C345CFE64B9F95D6 /* SDWebImageOperation.m */, - 1FCD0CB41F1E259546B6F8A9BFF05378 /* SDWebImageOptionsProcessor.h */, - 6A632B4F7EA06C55CADB3BF7C49D7860 /* SDWebImageOptionsProcessor.m */, - C63ECE6EA6AB3C1B9F676C1A2510CA67 /* SDWebImagePrefetcher.h */, - E48A50CB4DE0A87DE4F3E1BFE24DC7B7 /* SDWebImagePrefetcher.m */, - 28EBA38DF7DE3C55A1DCF1C9536E3712 /* SDWebImageTransition.h */, - BFEF7CB304E59179EBDA954FA636E74D /* SDWebImageTransition.m */, - 2A543722998E5C6171A0B4A729D11BBB /* SDWebImageTransitionInternal.h */, - 4C4CB24406FFC32C73C615D12F0532C7 /* UIButton+WebCache.h */, - 21C74D93A3238750FF610EABE13EB50F /* UIButton+WebCache.m */, - 368AF39857A6659131D7CD15698E6867 /* UIColor+SDHexString.h */, - E29E39BBB558CC51A6DB91379351B72E /* UIColor+SDHexString.m */, - 75B6A4916D912131001F61C28CCA6565 /* UIImage+ExtendedCacheData.h */, - C1F534C5FFF39633128C9B99F1BBF1B5 /* UIImage+ExtendedCacheData.m */, - D843F393C308E0D3BCB88A0B04FDB291 /* UIImage+ForceDecode.h */, - 6645D9E2FCEC9ED435B284460DEDDF89 /* UIImage+ForceDecode.m */, - 21199D87A8FB4561900F6BC425147989 /* UIImage+GIF.h */, - 35205291EDA412911A7CCBF5DB6087EB /* UIImage+GIF.m */, - 06EFD395C240E38E2ED0DCAF40CE73FC /* UIImage+MemoryCacheCost.h */, - 5107F5A871AC7AEDAD8C78C1F1AB8E40 /* UIImage+MemoryCacheCost.m */, - 3EA0FACBE46F43AB7A99266BBBF20510 /* UIImage+Metadata.h */, - 6B5C2096D95608EEB566217452868E46 /* UIImage+Metadata.m */, - 35DC020855ECA02C5E2568299594E9C0 /* UIImage+MultiFormat.h */, - 5734E5CBE9E63CD37E71A375796587B5 /* UIImage+MultiFormat.m */, - B5C750768FB8EE26E8F613C1D910045B /* UIImage+Transform.h */, - A67C49E3D329D82553E5FEBB4951ABD7 /* UIImage+Transform.m */, - 806C18993732E8D418AEA50EC6162EDC /* UIImageView+HighlightedWebCache.h */, - 88D5019FBBC4DC80F31FB68B1820A427 /* UIImageView+HighlightedWebCache.m */, - F21EDB4000AA52958FC207353BC36367 /* UIImageView+WebCache.h */, - 1A1600286757D192233397A2BF1A2371 /* UIImageView+WebCache.m */, - 8179AB093F869B4BCCBBF8427F69555B /* UIView+WebCache.h */, - ECA422AB0F45E3F4B650188FEE476C8C /* UIView+WebCache.m */, - 634BE374E20F830B5B77550EFCF89612 /* UIView+WebCacheOperation.h */, - 0A19BDA4E648916460C20489D6D183F0 /* UIView+WebCacheOperation.m */, - B072B2B3BF7FE061CC694AE00BCF5858 /* UIView+WebCacheState.h */, - FF6C98975F33C466CDCC506B95080046 /* UIView+WebCacheState.m */, - F897C86CB2866AB045A64520219B6522 /* Resources */, - ); - name = Core; - sourceTree = ""; - }; - 412E12540DFA0D72BBEB364F09064325 /* MJExtension */ = { - isa = PBXGroup; - children = ( - E5B1C13BB84FC1E79BC9BB233B793A5A /* MJExtension.h */, - 04A50C0A5F4CA1B3AF632BFE12460FC6 /* MJExtensionConst.h */, - 47A777C7602E23E11AE500103D52A253 /* MJExtensionConst.m */, - 0C9F5466A18204DE825F30433C784EDB /* MJFoundation.h */, - 61A7EBF5198D90CFC9C01A0BA03924D8 /* MJFoundation.m */, - 1326C5B7B2B67B2A6E9A785F1ECEA87F /* MJProperty.h */, - C9DDC2FE19D7DC5621872F440C5E8A37 /* MJProperty.m */, - 367088C36E8BF33957802AE4A6256CC1 /* MJPropertyKey.h */, - C8B51A0410EE632DF42E1C298E25B221 /* MJPropertyKey.m */, - 4E2D9F4632DB7036D701CB57007800AB /* MJPropertyType.h */, - 4688EE09ADCEE19CD4BDF95833F7E81D /* MJPropertyType.m */, - F7CD4CF41A222A66B3E435AB32DF697D /* NSObject+MJClass.h */, - 96BA563F965A1054AC53D0F3D5BD3AFE /* NSObject+MJClass.m */, - 9777292C62AA2375C63BAEF75D1F940C /* NSObject+MJCoding.h */, - 8FD309B3FADE968B4258080AC443EFCB /* NSObject+MJCoding.m */, - BDE2764DE3EEF78845A18DB898232DC0 /* NSObject+MJKeyValue.h */, - 6CE2A9B22B9FC87A02A230599E72D4F1 /* NSObject+MJKeyValue.m */, - BE09431A1BE57A882CA02B1E434916A8 /* NSObject+MJProperty.h */, - CFD12B92C17E28346EDC2EC75D0BF494 /* NSObject+MJProperty.m */, - EE1A5661BE1EACFB3D2C7F19D51BF011 /* NSString+MJExtension.h */, - 5B4EF64EB8018D8E9CE7C8CB5FACCD5B /* NSString+MJExtension.m */, - 17AEA0C7D131B1C990249C70BBD62CDF /* Resources */, - FFFE14F5389A574527140C5AC02880B9 /* Support Files */, - ); - name = MJExtension; - path = MJExtension; - sourceTree = ""; - }; - 453238A8EA177DEF4A00D8C859B1DA27 /* Support Files */ = { - isa = PBXGroup; - children = ( - DDA8FA3EA27827F124700F1B6176E4CE /* Bugly.debug.xcconfig */, - 956C8FF42F553F12124DED23E19FE31D /* Bugly.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/Bugly"; - sourceTree = ""; - }; 47B776543D6613BCB6FB72308F863018 /* Pods-CustomKeyboard */ = { isa = PBXGroup; children = ( @@ -2264,458 +2226,462 @@ path = "Target Support Files/Pods-CustomKeyboard"; sourceTree = ""; }; - 4B2DDDE1A44400085093EA342624D230 /* Support Files */ = { + 4C9B1F2E52EB330FD3C540E9E187C896 /* JXCategoryView */ = { isa = PBXGroup; children = ( - 20BCC481544CBBCE47AC61F792449041 /* MBProgressHUD.modulemap */, - 93081A25D8BCD8327365F5FAC77C46F3 /* MBProgressHUD-dummy.m */, - 0FABDACBA6BA6926D5F19E502E77474E /* MBProgressHUD-Info.plist */, - 2BF8D28C7089A47299DB62B980D954C8 /* MBProgressHUD-prefix.pch */, - D5100072476E008E3F5E024784855C6A /* MBProgressHUD-umbrella.h */, - 648C72C63334BCDFD466058863FCDAC9 /* MBProgressHUD.debug.xcconfig */, - 035807D7A9181D8E0DF6FAF1E2D6B33C /* MBProgressHUD.release.xcconfig */, + 72B1B153E1909E0A9DFA6E6097FD363D /* JXCategoryBaseCell.h */, + 6FD544A644986722B86F15A292995457 /* JXCategoryBaseCell.m */, + 7D7A76984F1E3BB7440B31DF8D5447F0 /* JXCategoryBaseCellModel.h */, + 897530E070833B039DC2821D0B63B137 /* JXCategoryBaseCellModel.m */, + 45E71D8592674E85D7D5DA4831A592BE /* JXCategoryBaseView.h */, + 39D939E1825294C23871CD06F0A1E6A2 /* JXCategoryBaseView.m */, + 051A66FC7C22537DD150BA86539EC9D4 /* JXCategoryCollectionView.h */, + E81450568229FA708143E74A7A580F89 /* JXCategoryCollectionView.m */, + 8B890DAD1E942EF3DB7BF5C23113C1B6 /* JXCategoryDotCell.h */, + 87D7822F88C7B9608DF7E50878B7970B /* JXCategoryDotCell.m */, + 931669FB7F8BA540208B2F23E13B2F19 /* JXCategoryDotCellModel.h */, + 3AF0216318F4C1EBD4207012E5E70EB1 /* JXCategoryDotCellModel.m */, + 8EFBD2E7A88C44123D980C42CB8702A4 /* JXCategoryDotView.h */, + C86FEA7FA982FA034501F7AB37760D49 /* JXCategoryDotView.m */, + 1C9E2AC9C9AE14EBBFDCDBBA925613E4 /* JXCategoryFactory.h */, + B82D0099E75E96FE5ACCF5B647388551 /* JXCategoryFactory.m */, + 9234E8779322D7F9722AF6E18FF9F6F3 /* JXCategoryImageCell.h */, + 8067C53E08CA3787D9D5C3551F86EF9D /* JXCategoryImageCell.m */, + D51E4D4230E01D5F3D9340BDF320C3E1 /* JXCategoryImageCellModel.h */, + 570A4EA50A989D93BDAC90837E4F3637 /* JXCategoryImageCellModel.m */, + 31C9A23E37AE09BB9DC1BC766BD3A6AA /* JXCategoryImageView.h */, + 5CB6F43E2EFE165260D66B0BFF9A8831 /* JXCategoryImageView.m */, + 5EE479D553AE99C7C893E8B21299B3AC /* JXCategoryIndicatorBackgroundView.h */, + D68722AFBA338282E0B3C89AFE0F83AC /* JXCategoryIndicatorBackgroundView.m */, + 2A4AC508097EE18B75D5D75FDA7CF5C1 /* JXCategoryIndicatorBallView.h */, + F9FBE6B4C01D1445DBFC466AEA64E5D8 /* JXCategoryIndicatorBallView.m */, + 913F72595D3AEFAFE006FD96A54FD8DA /* JXCategoryIndicatorCell.h */, + F9F30602CBEA307F110682B47DBF3B59 /* JXCategoryIndicatorCell.m */, + 5EFCD05B81004D2C239BFBEBEE4DC3D5 /* JXCategoryIndicatorCellModel.h */, + 7E73D1DD407F0535009A207AB317F8B7 /* JXCategoryIndicatorCellModel.m */, + 37C2A3B1C753D4547646108720BF5321 /* JXCategoryIndicatorComponentView.h */, + 1D490F15AED6B55BCD64F4D5193A9375 /* JXCategoryIndicatorComponentView.m */, + C398AC4FA166ECBDBFA37681D3C108CC /* JXCategoryIndicatorDotLineView.h */, + FD7C0DEE68BC5E8256170F72FCC61847 /* JXCategoryIndicatorDotLineView.m */, + EF2876A2D62001FE741FE92492A10CFF /* JXCategoryIndicatorImageView.h */, + B3443BE7FBE80A857A146093C743D9BF /* JXCategoryIndicatorImageView.m */, + A527D460219BC25D3D8E05E8A68C23C9 /* JXCategoryIndicatorLineView.h */, + B49F76B93F72D361782D7DA99B65ADC9 /* JXCategoryIndicatorLineView.m */, + 30E03A823CD994C7C3DEA8D91B90C5DE /* JXCategoryIndicatorParamsModel.h */, + 1936EF3FEE34E513D746BA5037CDEE80 /* JXCategoryIndicatorParamsModel.m */, + 92A35222DEEC452079F1343331C6E154 /* JXCategoryIndicatorProtocol.h */, + D25C8F67455D872A48F4797213321EA4 /* JXCategoryIndicatorRainbowLineView.h */, + 021930E01F482BDF2DEAAA2AF9FDCF18 /* JXCategoryIndicatorRainbowLineView.m */, + 5B766998FBEAD558A15F06134D5A9335 /* JXCategoryIndicatorTriangleView.h */, + C31C4A7197700436AFBAB631C088A6AE /* JXCategoryIndicatorTriangleView.m */, + 2DFC8007FA865661CA9E295ADD1014BA /* JXCategoryIndicatorView.h */, + 1817B2506E6D89DAFA8176C4A51738C0 /* JXCategoryIndicatorView.m */, + E948F26A10F663204E24603E8527A7F5 /* JXCategoryListContainerRTLCell.h */, + 96D1E2DE4F6F4EB00BD41C7ABD504109 /* JXCategoryListContainerRTLCell.m */, + D9CF33220A4EDFF59077DE1F83605414 /* JXCategoryListContainerView.h */, + C63CFE9D73B31D9EBEF51E32F9AC7286 /* JXCategoryListContainerView.m */, + A23AD7EF4A12F64EAAFE5154D8DC5843 /* JXCategoryNumberCell.h */, + 7B51D3C0C65114DF44F6DDB3ED9C4E4E /* JXCategoryNumberCell.m */, + 292BBC0398F56F3818017A7314541B45 /* JXCategoryNumberCellModel.h */, + 5633AC0E53EEE3085AFE9CB101E6C0CF /* JXCategoryNumberCellModel.m */, + 7B8734ED62BE39C69073D2C32183C6FC /* JXCategoryNumberView.h */, + D5119B7CF0FE429CF0E185983E72F98F /* JXCategoryNumberView.m */, + 0CF1A36FA548FCE3A4F7DA66625E9583 /* JXCategoryTitleCell.h */, + B49837A2AA042F710F43F143A929D49F /* JXCategoryTitleCell.m */, + E01ADBA325921AF74B0FBD58F7BB5032 /* JXCategoryTitleCellModel.h */, + B70A750F053AB9B0B60CBF456ED577A9 /* JXCategoryTitleCellModel.m */, + 524557CADCF9674C470A7B1764594AEC /* JXCategoryTitleImageCell.h */, + 5EADC8693C7692FBBE4CE165F51B28E9 /* JXCategoryTitleImageCell.m */, + 3B812F8DDDC6CC3E3ACDB1D17716E70C /* JXCategoryTitleImageCellModel.h */, + B28192DA39251C0AC1C30AE245A9A547 /* JXCategoryTitleImageCellModel.m */, + 9E91A12C513A640E68663D4ED668C0FC /* JXCategoryTitleImageView.h */, + 9EC4E80691EA4009AB067722DA72E4D5 /* JXCategoryTitleImageView.m */, + 25475D081A3343232AD119F5F5A5F24A /* JXCategoryTitleVerticalZoomCell.h */, + F3BAE7C9BD506017B4C0D7BBB9100900 /* JXCategoryTitleVerticalZoomCell.m */, + C4D51AE584C5960F5C6B60C866377741 /* JXCategoryTitleVerticalZoomCellModel.h */, + 230B07768E56A05E48373DAA2EAC05DE /* JXCategoryTitleVerticalZoomCellModel.m */, + 996C55702A2E4E7B3785C0C5454598C9 /* JXCategoryTitleVerticalZoomView.h */, + 43BA7B9A75BE654B8242649314595C2D /* JXCategoryTitleVerticalZoomView.m */, + 5105F32D29B4C0D80B780EE2DF6D2898 /* JXCategoryTitleView.h */, + 8FEE8F6EEF601125225DCB1FEACED91C /* JXCategoryTitleView.m */, + 892976CDE28E9BEF86BFABB5F84E72F6 /* JXCategoryView.h */, + 8FF761C99D422AE106C31A4A7AE469C7 /* JXCategoryViewAnimator.h */, + 95BCF1B96C9A492409E9634BC63A400B /* JXCategoryViewAnimator.m */, + B4750EDA171CA7EB95AFE62489A712EF /* JXCategoryViewDefines.h */, + 22A80188C121A76950A88A3321260BFD /* RTLManager.h */, + 9A3BA26DC995AB016051D522F5691C91 /* RTLManager.m */, + 3D72A1C48CB238B4D5F50BA925DEDEAE /* UIColor+JXAdd.h */, + EA759F283932CC196A3C378E0037B993 /* UIColor+JXAdd.m */, + 5FEA93EEEC74A71E4D426F48D7F850F2 /* Resources */, + F4552932065591EFBCEA1E5854647226 /* Support Files */, + ); + name = JXCategoryView; + path = JXCategoryView; + sourceTree = ""; + }; + 4D01249FF2A98F37C991C38E6B67067C /* JXPagingView */ = { + isa = PBXGroup; + children = ( + B4640B79F6E1B39F4E2822274BC61D23 /* Pager */, + DB5A3B2FEE3BD7A679B91E83BA32906B /* Support Files */, + ); + name = JXPagingView; + path = JXPagingView; + sourceTree = ""; + }; + 4E1FCFC15AFF6ACA076B1D8B295CDE1D /* Support Files */ = { + isa = PBXGroup; + children = ( + 3C530EFDCDFFC732A409BADBE3F0D068 /* MBProgressHUD.modulemap */, + D30B8333D334528105E28100C243348D /* MBProgressHUD-dummy.m */, + A16556ABD8D8BADE087CDC162140E59B /* MBProgressHUD-Info.plist */, + 98768C46376F54DFEB58CDD9F278AC71 /* MBProgressHUD-prefix.pch */, + A8AF8342462E3EDE8E3D40F840DFA00C /* MBProgressHUD-umbrella.h */, + EC4CFDD75B85C12B1C1393BEA03A165C /* MBProgressHUD.debug.xcconfig */, + AC0C26DBF6F4D6A9D8C1BF55FE14DABA /* MBProgressHUD.release.xcconfig */, ); name = "Support Files"; path = "../Target Support Files/MBProgressHUD"; sourceTree = ""; }; - 4C55C9351E9FED232300EF60CC442288 /* Resources */ = { + 579E4939EC6AC009496870BECBDEC208 /* Reachability */ = { isa = PBXGroup; children = ( - 43F4AA149B8B7307ED5DA363EBC93DBF /* MJRefresh.bundle */, - 187A3F425AA5E5A93F8784E11F9E28CF /* PrivacyInfo.xcprivacy */, + 9C0082C9FF6875DA300AE3D8453DCB62 /* AFNetworkReachabilityManager.h */, + C75FCCDECEB6A92A56B67E27033473B6 /* AFNetworkReachabilityManager.m */, + ); + name = Reachability; + sourceTree = ""; + }; + 5FEA21AFA94BB3973C15EEFD1CA50FFA /* LookinServer */ = { + isa = PBXGroup; + children = ( + 8083A32807E86242A863314EF6818E55 /* Core */, + 831477AC631FF14EDA7861CA75B58087 /* Support Files */, + ); + name = LookinServer; + path = LookinServer; + sourceTree = ""; + }; + 5FEA93EEEC74A71E4D426F48D7F850F2 /* Resources */ = { + isa = PBXGroup; + children = ( + 7AC0215893BDD3C5E126FCE996097AB4 /* PrivacyInfo.xcprivacy */, ); name = Resources; sourceTree = ""; }; - 4EE34BF885F3E77A23F8FE0A5F1EF29E /* SDWebImage */ = { + 619A9868F13BC15F5FC65525C1D9E2CF /* DZNEmptyDataSet */ = { isa = PBXGroup; children = ( - 4121134849DA04BCD3BB12CF65EEF182 /* Core */, - 57091A5F19D7165DCEE12C9F477836F7 /* Support Files */, + 2945888F89AB6D3ECBBEDD6E09D1B949 /* UIScrollView+EmptyDataSet.h */, + 45FCB10C5ADD911EC17F1E6BAAFE9892 /* UIScrollView+EmptyDataSet.m */, + 6243689E5C76660F684D23A4B8790B3A /* Support Files */, ); - name = SDWebImage; - path = SDWebImage; + name = DZNEmptyDataSet; + path = DZNEmptyDataSet; sourceTree = ""; }; - 52BEEDAD6FE6860B049D64EEC5ED3599 /* Support Files */ = { + 6243689E5C76660F684D23A4B8790B3A /* Support Files */ = { isa = PBXGroup; children = ( - 731627030A2BE88955F55A35D6DCABC1 /* JXPagingView.modulemap */, - AFBCBD9F77FD5CF26B2BEBE02B1E19D9 /* JXPagingView-dummy.m */, - E259D7D54703B047363E50046A949F68 /* JXPagingView-Info.plist */, - 0E90E49C067121A7254AE81E49E663A2 /* JXPagingView-prefix.pch */, - 85E262E36BEDDEA0E7B4F4A870DA4314 /* JXPagingView-umbrella.h */, - 29485CC6A452A36B28B71FA9AC5A4CE4 /* JXPagingView.debug.xcconfig */, - 23FBEE27BD56B7C8EB3849A2221CDA65 /* JXPagingView.release.xcconfig */, - 8B0B848DED77C21AEA127E58094EE39E /* ResourceBundle-JXPagerView-JXPagingView-Info.plist */, + 406C8D3FB686F0A24482B5EC0964787A /* DZNEmptyDataSet.modulemap */, + B8322800FD1F06BC2FEA3A9EEA874E20 /* DZNEmptyDataSet-dummy.m */, + 2B53DEB14A9698F954D95E54715C1911 /* DZNEmptyDataSet-Info.plist */, + 7A307E6A261D750F85B7C9C1575036E4 /* DZNEmptyDataSet-prefix.pch */, + 6523AFC889399B6B25C08CCBEEE2F0B6 /* DZNEmptyDataSet-umbrella.h */, + 48E1ED2BAC3C5C1B077AAB67F3325D4E /* DZNEmptyDataSet.debug.xcconfig */, + 5CB726B6B5C83EAABA9AC89E76D45643 /* DZNEmptyDataSet.release.xcconfig */, ); name = "Support Files"; - path = "../Target Support Files/JXPagingView"; + path = "../Target Support Files/DZNEmptyDataSet"; sourceTree = ""; }; - 57091A5F19D7165DCEE12C9F477836F7 /* Support Files */ = { + 6D1FBB10825D24E335F04D97066D9C66 /* NSURLSession */ = { isa = PBXGroup; children = ( - 5DEBBB0A3F6FE82FAB648C476116F8AF /* ResourceBundle-SDWebImage-SDWebImage-Info.plist */, - 46461C91DF1586852C84C6489E5ED4BA /* SDWebImage.modulemap */, - 13B82D87F3DD4A8EB4C508E0BFA04090 /* SDWebImage-dummy.m */, - E87C7E8B87671964EE3B94CB801C492E /* SDWebImage-Info.plist */, - ED8D9D4C66EB7593131560466A9EEB08 /* SDWebImage-prefix.pch */, - 5409A465D5BE745D21B9F8847B798BD5 /* SDWebImage-umbrella.h */, - 2252400966339192E785E1533182460B /* SDWebImage.debug.xcconfig */, - E392F0E432282B33F9A7A49E5F6DFDE1 /* SDWebImage.release.xcconfig */, + 060133813AFA51D11B917CB91A3D4950 /* AFCompatibilityMacros.h */, + FB614FC70886C761E2BA7E9C7E7F2D88 /* AFHTTPSessionManager.h */, + A11C415AC80BAC0B06685E1F8AC7C7C8 /* AFHTTPSessionManager.m */, + 1612A7E2EB4D912BD038AFA9FAE11CFD /* AFURLSessionManager.h */, + EA3E73CFAE53223D9EC3DE4B0794DB06 /* AFURLSessionManager.m */, + ); + name = NSURLSession; + sourceTree = ""; + }; + 7DD842DFF9E829253FACA707DA5ADAAB /* FLAnimatedImage */ = { + isa = PBXGroup; + children = ( + E386525610DF7AB4E84ED0202969AB8E /* FLAnimatedImage.h */, + D1046C4A0F4D596969B881D83BCC0FA1 /* FLAnimatedImage.m */, + 18EAC20398B46C2C580B542618314D9E /* FLAnimatedImageView.h */, + 148EEB030F62D4D33B4C03AE45AD6C08 /* FLAnimatedImageView.m */, + CABD2BCBA14C84A63E7608CED87846A3 /* Support Files */, + ); + name = FLAnimatedImage; + path = FLAnimatedImage; + sourceTree = ""; + }; + 8082051853063B4647901F5178837B33 /* Support Files */ = { + isa = PBXGroup; + children = ( + A14754CFA2BACA27D3CA6DD44F6D8F10 /* ResourceBundle-SDWebImage-SDWebImage-Info.plist */, + 5978BDDC6A977C5D014B3D0CC0294043 /* SDWebImage.modulemap */, + 61C0CC288A628CFA871D599D497E2A8E /* SDWebImage-dummy.m */, + 9FB49DC67A435D7D63695F113C3D398C /* SDWebImage-Info.plist */, + AF5F1AB306D02EC6A5F39878FAE8BEA1 /* SDWebImage-prefix.pch */, + FB84DF0F5016EBAF04FE5FE9F22081C0 /* SDWebImage-umbrella.h */, + 93B896E371962B657B3B85C108092214 /* SDWebImage.debug.xcconfig */, + 81F7F63875295940D9A950DB7D2EBDE7 /* SDWebImage.release.xcconfig */, ); name = "Support Files"; path = "../Target Support Files/SDWebImage"; sourceTree = ""; }; - 5BDD879F155F843CED343AAC8812F0D6 /* Support Files */ = { + 8083A32807E86242A863314EF6818E55 /* Core */ = { isa = PBXGroup; children = ( - 76DCA3DD0D37AD6B5C7C65D7829AE3A8 /* LSTPopView.modulemap */, - 97E0EEAE3EFB0492B434EC2A704903DE /* LSTPopView-dummy.m */, - 2219CD4B41E42AA4B9864251F1CFEF59 /* LSTPopView-Info.plist */, - F2EB780D15F77D48AEC0D3A47833557E /* LSTPopView-prefix.pch */, - DBE3855004E17CACAC82F75DF8EFEBD4 /* LSTPopView-umbrella.h */, - D0317376A8F5B09CBBAC757A9410CF00 /* LSTPopView.debug.xcconfig */, - B79CB4484CF793AF65C86B424D955922 /* LSTPopView.release.xcconfig */, + 768785318FEB9536A4DAAD47BD76396B /* CALayer+Lookin.h */, + 657631264951C7514A1788B1C6316E7F /* CALayer+Lookin.m */, + 77DEC7B6CE458C6AAB89A25A3E05BA4B /* CALayer+LookinServer.h */, + 798B3DCD95877B6C7D997E0652FB6E9A /* CALayer+LookinServer.m */, + 8BE10EB8B74E3D1DE4172EF863BC22F8 /* Color+Lookin.h */, + 4B2681504ECC11F7B0563ECF0A1FDDFA /* Color+Lookin.m */, + 8679B55EBC5DC660D8E798D1B986FC22 /* Image+Lookin.h */, + C6553D3214536278C24D990CC36267F3 /* Image+Lookin.m */, + 313050E8524ED89E2B2CF8F5C1CC7633 /* LKS_AttrGroupsMaker.h */, + 00AE10F23D2B898E9F45884FD9904B2F /* LKS_AttrGroupsMaker.m */, + ADF656282B85E6C974597F555BDE3F21 /* LKS_AttrModificationPatchHandler.h */, + DEFCE7D8BFD813860A380F7F5B5EB401 /* LKS_AttrModificationPatchHandler.m */, + 769C3408F11A51A90B589A6DBB334C55 /* LKS_ConnectionManager.h */, + DA49453EBB9C905AD701D17F18479113 /* LKS_ConnectionManager.m */, + 52FF07E10C8C0B816653B6836CCFFD04 /* LKS_CustomAttrGroupsMaker.h */, + AB2B98D8DC3605842D8528F53C1896A2 /* LKS_CustomAttrGroupsMaker.m */, + 1EFF4D34DD5391DCE7D206B11306BCE5 /* LKS_CustomAttrModificationHandler.h */, + D00729EFDA62359B2F2AA1EF43FADFD9 /* LKS_CustomAttrModificationHandler.m */, + A0925E96742E33F78D548F10A7C0475D /* LKS_CustomAttrSetterManager.h */, + F363F53534ED7FE5A4BB0A1E1863D5E7 /* LKS_CustomAttrSetterManager.m */, + 98935AEC9F6608D5CCBFEF667B9F658A /* LKS_CustomDisplayItemsMaker.h */, + C19EBB7B5E5A5B4CB83F93B794EA02A1 /* LKS_CustomDisplayItemsMaker.m */, + 51AB8F5FA4517AC80D7763B2894462EB /* LKS_EventHandlerMaker.h */, + CD6BC672271DF551FD22D8BABC528CA6 /* LKS_EventHandlerMaker.m */, + 9C47102257C212ED978684D39466579B /* LKS_ExportManager.h */, + 207535A186296DE018201ED1B7DDD076 /* LKS_ExportManager.m */, + AA7E9357D1D22FB737AEE89305734112 /* LKS_GestureTargetActionsSearcher.h */, + C81473AB6162F68681F317D8EC207A4C /* LKS_GestureTargetActionsSearcher.m */, + 3CA454A209E71894BC9366B10B95D086 /* LKS_Helper.h */, + 4D2B4D757199E020DE43661B60EB2819 /* LKS_Helper.m */, + FEA159570B75D1C95DC0E0B5836BACFF /* LKS_HierarchyDetailsHandler.h */, + 0719BBC5095E9B709A7485C347010514 /* LKS_HierarchyDetailsHandler.m */, + F1FB9919B7B8171A6A8679BDDA407F68 /* LKS_HierarchyDisplayItemsMaker.h */, + 00B27A1456536538B2E7220C71AA3F4F /* LKS_HierarchyDisplayItemsMaker.m */, + 8B8796E86BD11BC29D00EED72E50AE91 /* LKS_InbuiltAttrModificationHandler.h */, + A1DAAC915F745C515E0BF4D613B5CB1C /* LKS_InbuiltAttrModificationHandler.m */, + EDA0AA2D50C091E5400CDFDEC4B5B802 /* LKS_MultiplatformAdapter.h */, + 957B3209BD81CDA1C8049B3245F6946E /* LKS_MultiplatformAdapter.m */, + DBFA6FCFCE1CB3F169BDBDCE936950B5 /* LKS_ObjectRegistry.h */, + CB5214881D82D6C122FB4D3B471F9D93 /* LKS_ObjectRegistry.m */, + AFBA747DBA20D4BACF78CA8DE98ADF94 /* LKS_RequestHandler.h */, + DF017A36F518C19E10298190FD8A84C4 /* LKS_RequestHandler.m */, + 52AF8374431A1EA8420BA1E29139131E /* LKS_TraceManager.h */, + C7F42FC60A06A5673FA7DE53298188E2 /* LKS_TraceManager.m */, + A4CFB2BE169777F50B29077639FCFEC4 /* LKSConfigManager.h */, + 32E665F5EEABCF137D52CE4A3889C9F0 /* LKSConfigManager.m */, + 07C3DB4C7661755654D296A929BE2CE7 /* Lookin_PTChannel.h */, + 862D8BDF52FBE8FCF3A562F5A62C802E /* Lookin_PTChannel.m */, + 8B523AAA92DB90BD5B95092AF6B85BFB /* Lookin_PTPrivate.h */, + 3E05D85B85A84A7D628539AD042EC841 /* Lookin_PTProtocol.h */, + 4B6F5F5F32C55F6B9F4E87EC57A0A074 /* Lookin_PTProtocol.m */, + 210B700E8324769F741C26126E6B1F4A /* Lookin_PTUSBHub.h */, + B1850D4E22F95780586FA04DA695C24C /* Lookin_PTUSBHub.m */, + 3D8A828331C79742A41F54C2050C90A8 /* LookinAppInfo.h */, + DF85367F662269F3652AFC693AA2B00F /* LookinAppInfo.m */, + 903EBE6439B30182644FFF066DE11129 /* LookinAttribute.h */, + B267D6EC269C7ADF7A4202363528E8C2 /* LookinAttribute.m */, + B915A35174E3017D6DC61C0A3E31050E /* LookinAttributeModification.h */, + 39592D3DD29808CC34F5BDE8FFAD64E6 /* LookinAttributeModification.m */, + E6FEAED2BC2A577A78A12FA14FC3BB6B /* LookinAttributesGroup.h */, + D0B1EDD790AB62D80A6CA23D5272938B /* LookinAttributesGroup.m */, + CAE21A3C562355122DA705E505CCA673 /* LookinAttributesSection.h */, + 4F8D39C76EB84B28054B453882C78E41 /* LookinAttributesSection.m */, + F32705CBE56ACF430653A1C459F5351E /* LookinAttrIdentifiers.h */, + 9D4F497397BEDE35BC05F6C2B6D33577 /* LookinAttrIdentifiers.m */, + C9E1D6C567F43B4A9410AC83170573DE /* LookinAttrType.h */, + 97DE751E0ED3939932D72FB39C5A934A /* LookinAutoLayoutConstraint.h */, + 38F21B02ED02115E613C152CE563BD5A /* LookinAutoLayoutConstraint.m */, + 99712B41FFAFC24C5F649A94D8DD7FFE /* LookinCodingValueType.h */, + 10DBEAC7DAAC95D5A947ACA061058C0B /* LookinConnectionAttachment.h */, + 9C75F181A3E07F7E7B4B017B48488393 /* LookinConnectionAttachment.m */, + D9BB987ADE61FFDF3C240961F2EB4DDB /* LookinConnectionResponseAttachment.h */, + B2B7D0FDFC6ECF60B59728E60160431B /* LookinConnectionResponseAttachment.m */, + F5B865CFCA1FF1600CB766B9BC34B8D9 /* LookinCustomAttrModification.h */, + 7E445C787AA09C1E3A771E4C7DBCE2CA /* LookinCustomAttrModification.m */, + 3DDFB85C3FF1851267A20FACB64B4497 /* LookinCustomDisplayItemInfo.h */, + 44B0B0F109E74E6F92B6497967BCE536 /* LookinCustomDisplayItemInfo.m */, + 6AB6F2617132C99A6B5CB953305CCA89 /* LookinDashboardBlueprint.h */, + 73A2C1D7BD2A650246BEE1A00F6D836C /* LookinDashboardBlueprint.m */, + 7DD55E3EFF5073BEBD483D293C40A0D6 /* LookinDefines.h */, + 6EE8AE5699FC4ACD4283D4626ACDF742 /* LookinDisplayItem.h */, + AE19AE8E2478EF2E39C49272A1998EFE /* LookinDisplayItem.m */, + 407D327724ADF96791DFD9B922AA254A /* LookinDisplayItemDetail.h */, + 15D6A20A536D39FB4F4DE78CEC3512CE /* LookinDisplayItemDetail.m */, + 05EE9449F14265ADB3100E60632AB642 /* LookinEventHandler.h */, + D4CFF1EB3CBDD5217E39DD58BD101359 /* LookinEventHandler.m */, + FDCCFFDED68135F2816CA2167E15CF64 /* LookinHierarchyFile.h */, + 3A1C13D0C9F5E8ED93D0398C379507C1 /* LookinHierarchyFile.m */, + 26469EA2BF7F49FCDA80695277950B2B /* LookinHierarchyInfo.h */, + F4F901625B3879AD34FA2A0373208F59 /* LookinHierarchyInfo.m */, + 00C9A4038FA1CE3381055E02DAAEC90E /* LookinIvarTrace.h */, + 6148399DD529311A930CEF2A2AC2FBD4 /* LookinIvarTrace.m */, + 371A20C759D3E78183B0BC7EA626FA2D /* LookinObject.h */, + CFC8ED8D34DD2679124911EB0F515607 /* LookinObject.m */, + E23048DA7D038B179D12173BA0F800DB /* LookinServer.h */, + EB54379A72A5DCC64A2C9D42F05AE928 /* LookinServerDefines.h */, + 09799A44FC43F3184E20B590CC73FFC7 /* LookinStaticAsyncUpdateTask.h */, + FCBD8DFA94436F5E62F1AA0F1AD2F2FA /* LookinStaticAsyncUpdateTask.m */, + 17A16F153D08C8BBF15070C730EC0C3A /* LookinTuple.h */, + B5157027D16B7E61C1D5AB091D10458E /* LookinTuple.m */, + B0922492568B0DD6D1F92C0E3B3A53A1 /* LookinWeakContainer.h */, + 60F9066C601EE11D24D22C170F05AF13 /* LookinWeakContainer.m */, + 852A42FAC0EA5F64033033841A03891A /* NSArray+Lookin.h */, + 4AAF4EE016C54A7F264F9B8FBB0853C8 /* NSArray+Lookin.m */, + 4A2BDE1ACE119E645C72F92B4CCAECF4 /* NSObject+Lookin.h */, + B6575913AB2C7FDA723D279165349FF6 /* NSObject+Lookin.m */, + 3A9477BE731926B610D9B847EF5B7347 /* NSObject+LookinServer.h */, + A566FD7AC8F85BE1E72F6DF11FEA6338 /* NSObject+LookinServer.m */, + C1D06F4343D9C630BC102E7BCD9CECCF /* NSSet+Lookin.h */, + E312EC8FB74A492C6D5A647700644AC4 /* NSSet+Lookin.m */, + 92670C1E3C13D6C6157E7AFB4347DB17 /* NSString+Lookin.h */, + C9A08CB30EFC3A6CB342354C253BE4D8 /* NSString+Lookin.m */, + 70D52E1253BDF6EF05A1C5C1D46734EA /* Peertalk.h */, + C41AE199679E3EEC03FA1272FE103027 /* UIBlurEffect+LookinServer.h */, + B041D1C998D0894DB89A31049CC1B872 /* UIBlurEffect+LookinServer.m */, + A810CCF3953514350B557ABBEEBE5FF6 /* UIColor+LookinServer.h */, + FED91C88820F2942B3A007C5E5D17ACB /* UIColor+LookinServer.m */, + 60195DBDE404C5ECBC4E710D0F5E50E7 /* UIImage+LookinServer.h */, + 20C453B83E1025092DAD587080018B43 /* UIImage+LookinServer.m */, + 310DC522C0637DDB20D8D38412CB4153 /* UIImageView+LookinServer.h */, + DA0C012CAB8552E7EA8382B0E5D6B738 /* UIImageView+LookinServer.m */, + D5909A44E1AC01893309CADDDBC4E50C /* UILabel+LookinServer.h */, + 6BD526972490CFC41EE7106FF8E272CC /* UILabel+LookinServer.m */, + E847BE3D7FA245C62A989A8A4F90542A /* UITableView+LookinServer.h */, + B77422F87DF00923771B3EF8E6C0A9BF /* UITableView+LookinServer.m */, + 5D2F2FDA20E8BC9884D1E9ED05D83DDF /* UITextField+LookinServer.h */, + C64A52A00F5D8A13BA6BD40D1834BF56 /* UITextField+LookinServer.m */, + FCA4EBF34C88159600AC127D3548346D /* UITextView+LookinServer.h */, + 1D8DC297A0249D2FB0109542F14B89AB /* UITextView+LookinServer.m */, + DC7496C927F9E881D19A203C207B5417 /* UIView+LookinServer.h */, + 76AEEFCD2262D6843C63EB46FD6663BB /* UIView+LookinServer.m */, + 4C7F47A09BE728487DF546FE00CA555E /* UIViewController+LookinServer.h */, + 8A9BFDE06B11541EA7E87336A09C3816 /* UIViewController+LookinServer.m */, + 9ABEB6B0A44AC8BCBC6CB1A8A8A9A0FF /* UIVisualEffectView+LookinServer.h */, + A7DF910F689AA8FEAD1EF63DDDFCB780 /* UIVisualEffectView+LookinServer.m */, + ); + name = Core; + sourceTree = ""; + }; + 831477AC631FF14EDA7861CA75B58087 /* Support Files */ = { + isa = PBXGroup; + children = ( + 0DEA9604C374890EC86557DA00C054E0 /* LookinServer.modulemap */, + 6D00FB0A2824B0B4E8A345D97C52AA3B /* LookinServer-dummy.m */, + 06878A6718B46A5E825D03CB581CD8B2 /* LookinServer-Info.plist */, + 5C847B3748FF7761203F8DDBD028D651 /* LookinServer-prefix.pch */, + 469576EF612EDF18C057B4FB1E423192 /* LookinServer-umbrella.h */, + 7376537428F41B571A3D20FF9175747F /* LookinServer.debug.xcconfig */, + 438B056E0DAE53D40DB4894FF36879AF /* LookinServer.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/LookinServer"; + sourceTree = ""; + }; + 83B95F67C4195EA01B02C929A0C06C54 /* Support Files */ = { + isa = PBXGroup; + children = ( + 616DFB551B9EEC8F4D98DBDC3C2543CA /* MJExtension.modulemap */, + 43E163147E40F868F458CD979D77C4E4 /* MJExtension-dummy.m */, + 23B693321C3E2CA46CF401E48AE2795D /* MJExtension-Info.plist */, + 4531FCCC5DE7D00D6F827809F7CD4289 /* MJExtension-prefix.pch */, + 2713EAAF042877733E01E359F3224ABF /* MJExtension-umbrella.h */, + 954035BEFF37A926FB7C25E5508CD25D /* MJExtension.debug.xcconfig */, + 7B582290DB93C466A4DA695035B6DA2E /* MJExtension.release.xcconfig */, + E75295D3FB5952A7B3A8B497D502A68D /* ResourceBundle-MJExtension-MJExtension-Info.plist */, + ); + name = "Support Files"; + path = "../Target Support Files/MJExtension"; + sourceTree = ""; + }; + 8B3672DA9A8B9E29E7BA1D933AD6F3B2 /* Bugly */ = { + isa = PBXGroup; + children = ( + BD3E878C18624C95338F2E281FA906B8 /* Frameworks */, + C910B48399196A5E00BB083DA443CDA1 /* Support Files */, + ); + name = Bugly; + path = Bugly; + sourceTree = ""; + }; + 9A6094CFD16104AD70583A90D874C249 /* Support Files */ = { + isa = PBXGroup; + children = ( + 2795C0F083BB71E948BE56DAFC73957B /* LSTPopView.modulemap */, + C98FF255A58DDF6F211BD72458B9C3D0 /* LSTPopView-dummy.m */, + F157AC2A50D3773392D42322F67E0EB0 /* LSTPopView-Info.plist */, + DA08E928976E65BC11D71562A0E4FBA2 /* LSTPopView-prefix.pch */, + D7C0280DF79D384D6CBED6E080E02BB8 /* LSTPopView-umbrella.h */, + 163DD1C8E32A767AC162D451FB47DECB /* LSTPopView.debug.xcconfig */, + 6BD04BB450562622E215B33554778CC3 /* LSTPopView.release.xcconfig */, ); name = "Support Files"; path = "../Target Support Files/LSTPopView"; sourceTree = ""; }; - 6095F5BA99A7BC3EDE17ABB647B490AD /* Support Files */ = { + 9F5BA1D45C5B890529791B582CDD92E6 /* MJExtension */ = { isa = PBXGroup; children = ( - 3415299E0D5D7B9C22E99D16B6F89983 /* MJRefresh.modulemap */, - D58A6363674921528AA6EC052D65C890 /* MJRefresh-dummy.m */, - A237C0F799BD0639307F9DF3E58B71CE /* MJRefresh-Info.plist */, - 7707C9BBD69232F1162D6ACABE70B7ED /* MJRefresh-prefix.pch */, - 7626DD9951DC84318DF6E875CD7A8C20 /* MJRefresh-umbrella.h */, - 0B18274068E3388B3808CDDEB810ECFA /* MJRefresh.debug.xcconfig */, - 580E2C96AABF74B3FD0C199D09864253 /* MJRefresh.release.xcconfig */, - D4ECB35518D14625B419D0EC58050171 /* ResourceBundle-MJRefresh.Privacy-MJRefresh-Info.plist */, + 13AC6B7EC0E45B7BC751451206C8C575 /* MJExtension.h */, + 65CCB6F10EC6B284E771B999975CE0B0 /* MJExtensionConst.h */, + 2D0DE149DDBAC4B5DCFA0C2217970015 /* MJExtensionConst.m */, + 99650956C6DC18187951AE72D50E44A2 /* MJFoundation.h */, + BCF14CEE3203A4E740B9A9FD66CCABA4 /* MJFoundation.m */, + AB379411892DE9D6AC2BA478DD047B45 /* MJProperty.h */, + 9D7E307063029FFE21DDCDC0455FA473 /* MJProperty.m */, + 05A7B005509B15E31ECEED7DFEEB1EDB /* MJPropertyKey.h */, + 57A3558C23C0EFA92D7C80FBF8A6332A /* MJPropertyKey.m */, + A0329494F5B3BBF4A9C54DD83622388B /* MJPropertyType.h */, + 073DE0C455B2CE33A0FBA3C6ECF4F8CF /* MJPropertyType.m */, + DEDA7D852A16AEB2E4133F8138BB40A3 /* NSObject+MJClass.h */, + 6D149C2EB765D348E439D96EC2A80A04 /* NSObject+MJClass.m */, + DD2F0E472487CBFBA5CA4F3C62C1BB0B /* NSObject+MJCoding.h */, + 0249A8711339B6CD1E26258C064677E9 /* NSObject+MJCoding.m */, + 1B41D364B66F85CF33EB15116929CF48 /* NSObject+MJKeyValue.h */, + 0C7575113B17F46DF34D3C118CB31308 /* NSObject+MJKeyValue.m */, + 0C6F8F3E8953AADD74838D4A882F45A1 /* NSObject+MJProperty.h */, + D44C8E719DA4251716FDA4B2519C022D /* NSObject+MJProperty.m */, + 12702606A08588ACD81E031A777BAB70 /* NSString+MJExtension.h */, + 15C39377834B42681C3BF6A5471C5F78 /* NSString+MJExtension.m */, + 102054A1E3292F59C346E38466BC61C8 /* Resources */, + 83B95F67C4195EA01B02C929A0C06C54 /* Support Files */, ); - name = "Support Files"; - path = "../Target Support Files/MJRefresh"; + name = MJExtension; + path = MJExtension; sourceTree = ""; }; - 6DF1AE20DC3ECAE9AA7B19DCCDE41F5C /* Core */ = { + A06A903601EA30E66A3EFB3445AE0486 /* Support Files */ = { isa = PBXGroup; children = ( - 732327FB0ADC252437B580203795D95F /* CALayer+Lookin.h */, - 673B42B9F094B1F5ED808EE1BA26FC30 /* CALayer+Lookin.m */, - 26925632A670841DDFC5067C12B16515 /* CALayer+LookinServer.h */, - E1921A1332A20D950700741950E97126 /* CALayer+LookinServer.m */, - EEB6F4442CB80A88D94B35721714C121 /* Color+Lookin.h */, - F2A8643D9113999359ADC6C79DA48111 /* Color+Lookin.m */, - 17FBA36FB2D4DFAA4437CEE5C69F4BBE /* Image+Lookin.h */, - FB1E7E734FDF6F7CAC668B6BD6A2A014 /* Image+Lookin.m */, - BE10A2A4B13E0F15A962DBEA161DE595 /* LKS_AttrGroupsMaker.h */, - 1C4B5B00D7224F098F6B2FE0962E5086 /* LKS_AttrGroupsMaker.m */, - 9F0B0B2E800350D0E38B61EF43E6CE75 /* LKS_AttrModificationPatchHandler.h */, - 908A8A591A12931E59C177277E1D126D /* LKS_AttrModificationPatchHandler.m */, - 60913F6F25D56976457BFFCFF2C2FADC /* LKS_ConnectionManager.h */, - F1C50876E480E256FAA99FC38F2BC478 /* LKS_ConnectionManager.m */, - 3B2ACD52F18B25CE1FB40A0F1DF81B4A /* LKS_CustomAttrGroupsMaker.h */, - 7CF7F647B9D3AA2FB234C1CC5BB53582 /* LKS_CustomAttrGroupsMaker.m */, - 137E45FE90DEED579DF255BB11ADABF4 /* LKS_CustomAttrModificationHandler.h */, - 29CA4DC7FB25B91EAA2B3847B7BB46A9 /* LKS_CustomAttrModificationHandler.m */, - 38E107BE978505B98A952E3564F532AA /* LKS_CustomAttrSetterManager.h */, - 567674319F769F7E8B80920BBBD444B6 /* LKS_CustomAttrSetterManager.m */, - 230F8C4FD68EA2D95EA48F31DA295CE9 /* LKS_CustomDisplayItemsMaker.h */, - E74AC99A06CC9DE9D81D54044B013F98 /* LKS_CustomDisplayItemsMaker.m */, - E5AA796F8B4298B625A467D39523F40F /* LKS_EventHandlerMaker.h */, - 1C21A04AB85F6948BCB44480387E46C5 /* LKS_EventHandlerMaker.m */, - EB3C413B4ED21D886E50FCBC0761408E /* LKS_ExportManager.h */, - 44ABB514E2C8BB7AA8881283E1F0FE47 /* LKS_ExportManager.m */, - 029DB3501B51C5C14FA8EC0A89559639 /* LKS_GestureTargetActionsSearcher.h */, - BC88BA608872DDF711D78498FD36C1AA /* LKS_GestureTargetActionsSearcher.m */, - FA6406A6E74DC06D367BE38EA6C60243 /* LKS_Helper.h */, - 38A98EA0745C9E839DCFD56B22BF1256 /* LKS_Helper.m */, - 21696AB985A15DE2C63BD9A8CD978F59 /* LKS_HierarchyDetailsHandler.h */, - 6736D1FBB305C05AEAB982F817CD80C1 /* LKS_HierarchyDetailsHandler.m */, - A9B0E721EBB3914236D06250E333F1E9 /* LKS_HierarchyDisplayItemsMaker.h */, - 3D3112C49688EF3F713F0D64A22E6E66 /* LKS_HierarchyDisplayItemsMaker.m */, - 6C2FE2279B0EA1E9F949E0AF58D09E3B /* LKS_InbuiltAttrModificationHandler.h */, - DC0451732A9C9A896EEC15BEC88B3151 /* LKS_InbuiltAttrModificationHandler.m */, - 06BE908D1EBE4269ACB69B26DE9B834E /* LKS_MultiplatformAdapter.h */, - 1FBD8AFE7FA55EAB140791EC34C18CD4 /* LKS_MultiplatformAdapter.m */, - 4A2FC8CB1CFEB2812A4E5E466940232C /* LKS_ObjectRegistry.h */, - 8127266FF8D9AAE89CDF3511D05BB245 /* LKS_ObjectRegistry.m */, - B9D007BE64FBA88DB3F5D92E0EAEDEAD /* LKS_RequestHandler.h */, - 15E765BB9B77EA9AC2800F30D2802C1C /* LKS_RequestHandler.m */, - 1278AB0B776862F23D89B7E8596E3598 /* LKS_TraceManager.h */, - 36457C61634F1414F6DDF4C701ABF567 /* LKS_TraceManager.m */, - D16058E57E3F07CA628E8A17A3B944C1 /* LKSConfigManager.h */, - 17DDB1AC9EC1929E6B6DFC0CFA9D927D /* LKSConfigManager.m */, - 35269DC2485E9AA07A892FDEB96B16C7 /* Lookin_PTChannel.h */, - 69AE4F19374B51CFBF6330CC5F82B32A /* Lookin_PTChannel.m */, - 6DD8CB4B9EF9002F59BC7DE12F17ED7E /* Lookin_PTPrivate.h */, - FB5DC78AEFAB6098819933CF81AAB15B /* Lookin_PTProtocol.h */, - 9545413A1EE5D2E50A21E8D9794A771A /* Lookin_PTProtocol.m */, - 3416384E4A531494C7B12CDD1AEA74A1 /* Lookin_PTUSBHub.h */, - BC38AB7DAEDA3DEEFFAC64BDA7FA3C88 /* Lookin_PTUSBHub.m */, - 908BDA99457974AD8998A674A0C0FB12 /* LookinAppInfo.h */, - CB40236F7A3DB0EECDBA370753BEDDD4 /* LookinAppInfo.m */, - 659E6E588427268237F9F2C40D2F6CBD /* LookinAttribute.h */, - DDDA744A029AF23E45515CE37C056256 /* LookinAttribute.m */, - C9F0D4D92726FF95FE428AA975E93DE2 /* LookinAttributeModification.h */, - 0B35D70EDD8A3E56FE6F0E6934A400CC /* LookinAttributeModification.m */, - 57D32F597DFAC06B9198FA1F48D2995D /* LookinAttributesGroup.h */, - 7E02457FB07FECD161E03C2A1A8B72B3 /* LookinAttributesGroup.m */, - B74F835090D47DFE066B4DAD231882AC /* LookinAttributesSection.h */, - 97428E2E54CAC989DD7A12908613EE16 /* LookinAttributesSection.m */, - 6B857386E2ABDB8C3FD8B5797430DF26 /* LookinAttrIdentifiers.h */, - 41EF7420DD5FC6E4D1134632895868F3 /* LookinAttrIdentifiers.m */, - D7DFD14540146731FB9E466FA1EB81F0 /* LookinAttrType.h */, - 1FFD17C3FF6DE53EF72736C597DF5B82 /* LookinAutoLayoutConstraint.h */, - 5DA1EEEB5386D6FCA6523BE43601C382 /* LookinAutoLayoutConstraint.m */, - F2698AC3972900E338490644A2E03A2A /* LookinCodingValueType.h */, - F3AD144DF03231D478D237DCFC615D36 /* LookinConnectionAttachment.h */, - 595E9691CC1A487C44431E51893A1D01 /* LookinConnectionAttachment.m */, - 989150BD3DA7E7AE5D05E2F37E778A8D /* LookinConnectionResponseAttachment.h */, - 4ED1A3436209E7EBF3356CEC094C7391 /* LookinConnectionResponseAttachment.m */, - 06A633B376D525417B93138405029540 /* LookinCustomAttrModification.h */, - F6CC661C43717D8BBB4405FD037BDC03 /* LookinCustomAttrModification.m */, - CF0E98CA3E42AAC3B854E232BB1AF7FB /* LookinCustomDisplayItemInfo.h */, - 8F0F258366D8ED06A7D9EAD3DFCD004E /* LookinCustomDisplayItemInfo.m */, - 9D31ED01216EF87422BD04709990AFA0 /* LookinDashboardBlueprint.h */, - 2783C33881FB9ED3037D4D66B93FAD7E /* LookinDashboardBlueprint.m */, - AFC299E1B60C8759EA1F35B7A91019A4 /* LookinDefines.h */, - FED61E621A88CB9CE3C421FDEB1106FC /* LookinDisplayItem.h */, - BCE8E065BE01E56E0D55097E36AB8FC2 /* LookinDisplayItem.m */, - 1E7F18004D9337D64F0F606975492DF4 /* LookinDisplayItemDetail.h */, - F90D97C684BADB3FE9796E626B98C43A /* LookinDisplayItemDetail.m */, - E97B2ACE11733D7DD5ECA116979B91D5 /* LookinEventHandler.h */, - 7CAEC579F15CFFDB2E384C98A046EA76 /* LookinEventHandler.m */, - 63000DF25140BBB4F03EDFC289F2B197 /* LookinHierarchyFile.h */, - 16E6E00D729B1498CE18200F50778930 /* LookinHierarchyFile.m */, - A8105D73597438386DADF22233AAD4B3 /* LookinHierarchyInfo.h */, - 0D8B581D78D02F65425434F924BB64B3 /* LookinHierarchyInfo.m */, - 765DBAD68AB5F355FB80870758AFB22C /* LookinIvarTrace.h */, - 89DA873F803BF9043720F615E8BC4CD5 /* LookinIvarTrace.m */, - 0B1D41519ED222707112BD66393CC6B2 /* LookinObject.h */, - 05B3B08A0927761DC2CBA02E9412CD21 /* LookinObject.m */, - 2E80EA469F2079302F38A991886C4B5A /* LookinServer.h */, - D03FDB7D5A636ED3DC51EF05677C546A /* LookinServerDefines.h */, - A7A769F7014A1F30EE6690E054898162 /* LookinStaticAsyncUpdateTask.h */, - EC9D66F9AD565D0A6E6595CFC812165E /* LookinStaticAsyncUpdateTask.m */, - 95EB1D88070F8207A333D4573DA43A15 /* LookinTuple.h */, - 7A60F6547480237BC04A6287158556B4 /* LookinTuple.m */, - 886E6269011F3D0F924F30F32F08508F /* LookinWeakContainer.h */, - 16464E573FCB8AFF2E7DB58E7A507D73 /* LookinWeakContainer.m */, - B937D529B74DB9581A000F395FF3B6F7 /* NSArray+Lookin.h */, - D4BC45247918896A52CA0C54F038B447 /* NSArray+Lookin.m */, - 9FD83B41506E28893BC297C4BDAB1B46 /* NSObject+Lookin.h */, - D52171C8DB630868289299203B4ECD0C /* NSObject+Lookin.m */, - 3B26E1BE3EBF37131688F5656289ACA2 /* NSObject+LookinServer.h */, - C5719A8B6A945982F0856B5A616B379E /* NSObject+LookinServer.m */, - D40E6AE30D19137ABA0A5D046329BCCD /* NSSet+Lookin.h */, - C02B6DB0CED9923894E4B972F8B03882 /* NSSet+Lookin.m */, - 06AB57BB46CC82FE3257276649BAF8EA /* NSString+Lookin.h */, - D9EC522C5B6A10C53A05FE81CED85983 /* NSString+Lookin.m */, - 6FDFBF5B5FE03EAE7CBA31ED300F848E /* Peertalk.h */, - 4BC6F317480167EA6C97C3ED771D57CA /* UIBlurEffect+LookinServer.h */, - 98EB3787337AAE5AD71D422A832D852F /* UIBlurEffect+LookinServer.m */, - 6A34A08E72CC7EE2DEDDC6F48148CD79 /* UIColor+LookinServer.h */, - C626E0F07BD081EBE5955DEA5669BF14 /* UIColor+LookinServer.m */, - DB3CBBCBF7B8B49A86FAC8D0A1741C77 /* UIImage+LookinServer.h */, - E075739451FCFAA914670EB353642C16 /* UIImage+LookinServer.m */, - F45F2EB9AE5E2D5BDC0F9860DB695385 /* UIImageView+LookinServer.h */, - 5C560A21071D707C98AE6CD75AED8BFD /* UIImageView+LookinServer.m */, - 015571B1499F434BC7171DE7EA094577 /* UILabel+LookinServer.h */, - 9E285AA5C9AFC477B5336B5AC2C863D1 /* UILabel+LookinServer.m */, - 40380EFCFB5E34558C193A723D077BE3 /* UITableView+LookinServer.h */, - 95E2C10E638AC6421FE377F88DA72A45 /* UITableView+LookinServer.m */, - 94807C278EC259800EBCD3A346749877 /* UITextField+LookinServer.h */, - 877837A5816B3B110C5B763CCBD0ECFD /* UITextField+LookinServer.m */, - A56B5A6CAF35241FF9D41CAC7DC1D6D2 /* UITextView+LookinServer.h */, - 3791DA4B477B236E8816C08DD01E3B45 /* UITextView+LookinServer.m */, - DC82DAFD220FAA7899CE21078C2C649D /* UIView+LookinServer.h */, - E9CB22320707CAEB4EE4C1DF62EB9E1A /* UIView+LookinServer.m */, - 3753072CB1EE987F4CDC7E86385B9A99 /* UIViewController+LookinServer.h */, - 920CD059C1364A6BD18420074E635F40 /* UIViewController+LookinServer.m */, - D013F3B6606D04CFD12051F02350DB55 /* UIVisualEffectView+LookinServer.h */, - 8CE6BF39C6199FC5B55217046DDE2CDB /* UIVisualEffectView+LookinServer.m */, - ); - name = Core; - sourceTree = ""; - }; - 797CA9CCA9EBB2192EC635FA118D2257 /* Pods */ = { - isa = PBXGroup; - children = ( - F401BC1732EB9D32AE09D69A4179A68F /* AFNetworking */, - 0F19D22A7E286B575974CA8C2AD3F3DF /* Bugly */, - FE875CB7596498A67CF56F73315D2BDD /* DZNEmptyDataSet */, - D44B6A743503D502C7C50E1E40396614 /* FLAnimatedImage */, - 7C33CFE60683D6E5574D89F3B2808B60 /* HWPanModal */, - 2E6A5961188FF65067773B356D98FC06 /* JXCategoryView */, - A2B6865A0533CF3250BDF1CA362E6B54 /* JXPagingView */, - E186B0D6F7241CA024EE1DBD99B15A49 /* LookinServer */, - E603CC254B20E39E7561F9D06E23A39C /* LSTPopView */, - FB21115538DDA6029001E62F3AB59544 /* LSTTimer */, - 8FE7351622DF7632BCAC51C89CCF56EE /* Masonry */, - F3242F712BF128531D3F535A6FD297FA /* MBProgressHUD */, - 412E12540DFA0D72BBEB364F09064325 /* MJExtension */, - 36091ADDE4C749A4350E3A117CAA7398 /* MJRefresh */, - 4EE34BF885F3E77A23F8FE0A5F1EF29E /* SDWebImage */, - ); - name = Pods; - sourceTree = ""; - }; - 7C33CFE60683D6E5574D89F3B2808B60 /* HWPanModal */ = { - isa = PBXGroup; - children = ( - ACC63F439241C64C221C18A8991C569B /* HWBackgroundConfig.h */, - ED71DE4537C6ECADC81696A80C943E64 /* HWBackgroundConfig.m */, - 017032FDD415E1762246EBCDD2228351 /* HWDimmedView.h */, - 6194A35582043CD8893F293567547D72 /* HWDimmedView.m */, - DD3CC2F2CD0FD607BD99AA89E970269A /* HWPageSheetPresentingAnimation.h */, - C947209A5CDFABA11FEBE5D709864961 /* HWPageSheetPresentingAnimation.m */, - DAB0E506E749384DE93170FA1EE1FD3B /* HWPanContainerView.h */, - 2310AA8AAF9A85F5E639409B8AF0F292 /* HWPanContainerView.m */, - 4DE32E1B12FEE2A9EAE1F5A67697D6E8 /* HWPanIndicatorView.h */, - 6EF0D4A56B002AB1528A77EBDA7EC804 /* HWPanIndicatorView.m */, - 6260795D5ABBA18F8EFECC2CEB871872 /* HWPanModal.h */, - 42F934D080B2CC7F2CD859E2B472A585 /* HWPanModalAnimator.h */, - 88D7B291E3BCDB41106F548FA3B84901 /* HWPanModalAnimator.m */, - A87C5BAF6B8038E9EE8A33551A798606 /* HWPanModalContainerView.h */, - 2BB86632EEB3EB44D0413B3A6F7F6875 /* HWPanModalContainerView.m */, - 2CAA34C64434033ACBB7F68A74F4D15B /* HWPanModalContentView.h */, - 77BA4318333FADE07B128DB446EA0F64 /* HWPanModalContentView.m */, - 5731585BDD8DA229201CF537357BCA56 /* HWPanModalHeight.h */, - C8BABB078FC5FF697A3609C777FC51FC /* HWPanModalIndicatorProtocol.h */, - 3DAB18271BAF2DB3E49BCAF049FC4F01 /* HWPanModalInteractiveAnimator.h */, - 0BE68C7303DE07C8DA01573CDDE9003F /* HWPanModalInteractiveAnimator.m */, - 95BD516A8F354C5C9CD65BFD30C9BED7 /* HWPanModalPanGestureDelegate.h */, - 83D5AD11F2E32B53BA1869D6DE812341 /* HWPanModalPresentable.h */, - DAFBC54BDE2AC21397492351C31C587A /* HWPanModalPresentableHandler.h */, - B8E404753BE7BE627A458AE982427654 /* HWPanModalPresentableHandler.m */, - 552D2F14AF7B393E80A67680A66A34D4 /* HWPanModalPresentationAnimator.h */, - 15D78A0355CAA0B846DBC1DAC7B101F4 /* HWPanModalPresentationAnimator.m */, - 195F1795B17C3F026E46BBEF64C1EA67 /* HWPanModalPresentationController.h */, - 94D99E2E2730992302FB9BAA7CCE2A1C /* HWPanModalPresentationController.m */, - 82C5C527FD40FDC2434064E6DE931921 /* HWPanModalPresentationDelegate.h */, - 6749EA453DC312E08B14CE8AFDB79F3C /* HWPanModalPresentationDelegate.m */, - 4B98EB1E5D5490C1C17C90E124262C80 /* HWPanModalPresentationUpdateProtocol.h */, - E8DC9FFB899510CE978017ADFAFE6D87 /* HWPanModalPresenterProtocol.h */, - 039AC3B9A6AA2BDAB5EB71E7A54C1EF5 /* HWPanModalShadow.h */, - 5FD7A1D3C3D9D8E6D3476B7C2093A431 /* HWPanModalShadow.m */, - 5AEB6DDDE2B74ABEB1D68CE037D784DC /* HWPresentingVCAnimatedTransitioning.h */, - B9C3A1374DADDEAE813F69F05F5A2564 /* HWShoppingCartPresentingAnimation.h */, - 62C28B0ACA1E8D749FA6E65D70CFCB2D /* HWShoppingCartPresentingAnimation.m */, - BC5B799F7FC71DC9649AD62AE8B34DC7 /* HWVisualEffectView.h */, - DACDF6DBB7030D05CC43C7DB516265EE /* HWVisualEffectView.m */, - 2E70DDAD553B6A4AC2379D01C3F133EF /* KeyValueObserver.h */, - E1F236D1BF028AEAD75A9FB3C9DCAE0F /* KeyValueObserver.m */, - 22613DFB1026F3E41B141E34C637D600 /* UIScrollView+Helper.h */, - CCA4AAE27B9CAF06CC2B0A3C0A3F0594 /* UIScrollView+Helper.m */, - B63B552A0A52E65141ED8027A3FCCB0D /* UIView+HW_Frame.h */, - B444EEABD213A46C07AC5F1B8D73FBF1 /* UIView+HW_Frame.m */, - 23A344AF55814873B0105902E9FBBB2A /* UIViewController+LayoutHelper.h */, - 76724C714C93839E6993DF68B545F17B /* UIViewController+LayoutHelper.m */, - 9BAC219B4754C1E13B6929143780BE52 /* UIViewController+PanModalDefault.h */, - 3474F65ACB0FE00EF732580936B91D06 /* UIViewController+PanModalDefault.m */, - B46DF40E1300BE3FC009F0D7D5CF5ED0 /* UIViewController+PanModalPresenter.h */, - B05FD8A103E2A06EE08BE59B38FC36B4 /* UIViewController+PanModalPresenter.m */, - 201E2681B892F05C3D7CAFE9E9927D15 /* UIViewController+Presentation.h */, - C806BECAA1C722F04FE4A89D9B14A0E0 /* UIViewController+Presentation.m */, - 2DD7CD81F0AED96859289DDC12B0E9CF /* Support Files */, - ); - name = HWPanModal; - path = HWPanModal; - sourceTree = ""; - }; - 89DEB64DC275ABFAFABFE909ED131FA2 /* Reachability */ = { - isa = PBXGroup; - children = ( - 60461DAD42E3B1F75AD82553A6C40C64 /* AFNetworkReachabilityManager.h */, - 81D1103F43F39D4BF9AE80E76478FA69 /* AFNetworkReachabilityManager.m */, - ); - name = Reachability; - sourceTree = ""; - }; - 8F7F6DF25B41B68A636D15AEFC153E23 /* Serialization */ = { - isa = PBXGroup; - children = ( - DC285A6C8053D7E2AE423BE51B24E8AE /* AFURLRequestSerialization.h */, - 32F3C5B0B7D11631504E27D25E8CB5A2 /* AFURLRequestSerialization.m */, - BBB6E7BC9BF649910D7654B98B396BD4 /* AFURLResponseSerialization.h */, - 9F3CA71777F849F0196634A7AB215BDC /* AFURLResponseSerialization.m */, - ); - name = Serialization; - sourceTree = ""; - }; - 8FE7351622DF7632BCAC51C89CCF56EE /* Masonry */ = { - isa = PBXGroup; - children = ( - F451B2E12A8192978BB7FB1B45BF1E04 /* MASCompositeConstraint.h */, - FD6EC1E4FB3615CE938900B23CEAD0F8 /* MASCompositeConstraint.m */, - ED6F94603AF0AF72D292CADE8ABCEEB3 /* MASConstraint.h */, - 3A94C1FE25186BE811E6EC878BFA019B /* MASConstraint.m */, - 7C2B7AF68C3BEF4AD97A93A90F9EFF44 /* MASConstraint+Private.h */, - 979A3BAC302F65855776332D6027B80C /* MASConstraintMaker.h */, - CDE98EE96840F02E6074E842D456A2E3 /* MASConstraintMaker.m */, - 1D56371580E6496005BC9D35C2C49570 /* MASLayoutConstraint.h */, - EB21E143FD58D712C16E9026FBFFE194 /* MASLayoutConstraint.m */, - 56642F6C221107F2F8D033758EEB482A /* Masonry.h */, - 9E54C32C4CB68C01C57E81C03350F4B2 /* MASUtilities.h */, - 9E18E15D3A7901E5A84136DADC023216 /* MASViewAttribute.h */, - AAF02F3D4DFB903955A463298716DCE2 /* MASViewAttribute.m */, - DEDFC34DB720F4FD92E634E486425845 /* MASViewConstraint.h */, - CF9BCBE90C3B7C448764C897685CB0E3 /* MASViewConstraint.m */, - 6C07CC30774DAAE34D68C477CE151A36 /* NSArray+MASAdditions.h */, - D3CF8B366EB9A41FEDB94035F404215D /* NSArray+MASAdditions.m */, - 3A8DC30D2C209AB66D8E812915E6F319 /* NSArray+MASShorthandAdditions.h */, - A75069F0A291D74DCBF8F50AA213D806 /* NSLayoutConstraint+MASDebugAdditions.h */, - 25A7097BBC72B099A6C5D8BE403878A8 /* NSLayoutConstraint+MASDebugAdditions.m */, - E44ED3A05255119AA352B7DE0C64E994 /* View+MASAdditions.h */, - 903038F34EE93C82A3EF6A1F6BDF857B /* View+MASAdditions.m */, - 4D93DBFF5810549335063D430FB33721 /* View+MASShorthandAdditions.h */, - D48043130F64D218A676B16D2CDA0ED8 /* ViewController+MASAdditions.h */, - 1BABE1F324CED82D14350741682D422B /* ViewController+MASAdditions.m */, - 99E8B32C59458ECDE2883334F4E8B17F /* Support Files */, - ); - name = Masonry; - path = Masonry; - sourceTree = ""; - }; - 95AF65BE191D8A598CB99DF63AF5085C /* Resources */ = { - isa = PBXGroup; - children = ( - 360A9029323DBF687A82BCD2C22F386C /* PrivacyInfo.xcprivacy */, - ); - name = Resources; - sourceTree = ""; - }; - 99E8B32C59458ECDE2883334F4E8B17F /* Support Files */ = { - isa = PBXGroup; - children = ( - D5140E810D9AB3FD3FA724CCDD59D3AD /* Masonry.modulemap */, - 99302CD0854353E1FA9C8EE70F3FCF59 /* Masonry-dummy.m */, - D9922CA9D57AA94D9EE06129264F7958 /* Masonry-Info.plist */, - 819B57A54180667AB9476455F95835CA /* Masonry-prefix.pch */, - A8CBDE62F720E1751DB8B8E4DF3B0E9F /* Masonry-umbrella.h */, - 93A6F66AA21D4921B2C52643DAEF998F /* Masonry.debug.xcconfig */, - 0B0EEEE5F23AC446F4729522F4FC7A73 /* Masonry.release.xcconfig */, + 0A7D8AD4481BE4F0D7389A1662CCA111 /* Masonry.modulemap */, + 07001E763AE097A75E1AFBEB80197373 /* Masonry-dummy.m */, + BD3BC591D3DAF10375616FB7F294F926 /* Masonry-Info.plist */, + BD243AB5EB0FB2763BBC742A8BCF80DD /* Masonry-prefix.pch */, + 128CF11122A7C2009F733361122E39A1 /* Masonry-umbrella.h */, + A603B071469D044FB92322560F131681 /* Masonry.debug.xcconfig */, + 4A4AE7A504C340AE8EE98F70C318D63C /* Masonry.release.xcconfig */, ); name = "Support Files"; path = "../Target Support Files/Masonry"; sourceTree = ""; }; - 9CF605192227F87CF3E8D7EE63BDF0B1 /* Support Files */ = { - isa = PBXGroup; - children = ( - 0210A2376F4634FAF99E871533D6AD1C /* LSTTimer.modulemap */, - C181D8B9B1142624BE8BFFA787AA2854 /* LSTTimer-dummy.m */, - 81C5F42CC1579DEC553C5D34C274FD68 /* LSTTimer-Info.plist */, - C5FD92D35D7D1F18C67D17C9DD534533 /* LSTTimer-prefix.pch */, - 3F5F8D57BABE5A9AD2D0BC75B55D1A52 /* LSTTimer-umbrella.h */, - A76F5B96F548930505FADC6CE9430C2D /* LSTTimer.debug.xcconfig */, - 294754F45B0BF3519369080425B4F2FD /* LSTTimer.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/LSTTimer"; - sourceTree = ""; - }; - A1A0EBDEE093FF055ADC1FB66AD4A1B8 /* UIKit */ = { - isa = PBXGroup; - children = ( - F7FE08919F8BE5AACFB3A1E812E57C03 /* AFAutoPurgingImageCache.h */, - 4A984C0F36AC5CCB478D87C1F7E4019D /* AFAutoPurgingImageCache.m */, - FA94CFBBBF3DC429BAF55FD9493336B4 /* AFImageDownloader.h */, - 25A773C46121E6091EEB9AC88DC4E2A2 /* AFImageDownloader.m */, - 7965DB1FD06E64A9C5B34CB6D9909B3A /* AFNetworkActivityIndicatorManager.h */, - A5FC57ACB22E21DCA20F2B582D18A03F /* AFNetworkActivityIndicatorManager.m */, - 81D4FD0C7D7C987D10815371E729DAC0 /* UIActivityIndicatorView+AFNetworking.h */, - FE8EB43019635F8DC34B96037E258505 /* UIActivityIndicatorView+AFNetworking.m */, - A2309A5B4A1B9C14AF7AEDEC1036F76E /* UIButton+AFNetworking.h */, - 5C519E29CD93815AEE0C119E2109F0A2 /* UIButton+AFNetworking.m */, - 8E1682EACA92F366216BAB7320C375AA /* UIImageView+AFNetworking.h */, - 156CBD2266287775279363430A374818 /* UIImageView+AFNetworking.m */, - 4AD6EDFD2A6C9CC51CFC6A4BAA9C72A9 /* UIKit+AFNetworking.h */, - 7446E6EDA4118B08C0D538CAA41C47AA /* UIProgressView+AFNetworking.h */, - E152B4E044E172623798E791ACCC157E /* UIProgressView+AFNetworking.m */, - 4D000260D6BB658E0BB519087E88F883 /* UIRefreshControl+AFNetworking.h */, - BEC06B30EADD5F0931B350F94CD4D15C /* UIRefreshControl+AFNetworking.m */, - 21E66554273E5793F0BC4D1CD5A058CD /* WKWebView+AFNetworking.h */, - D675E9EED90BA5941D43EB2C520A01B8 /* WKWebView+AFNetworking.m */, - ); - name = UIKit; - sourceTree = ""; - }; - A2B6865A0533CF3250BDF1CA362E6B54 /* JXPagingView */ = { - isa = PBXGroup; - children = ( - CA7AF39BD3D9214EBF1CEE7DE0683EE0 /* Pager */, - 52BEEDAD6FE6860B049D64EEC5ED3599 /* Support Files */, - ); - name = JXPagingView; - path = JXPagingView; - sourceTree = ""; - }; A55E2B2247987FBEC60B3A5F75016BFF /* iOS */ = { isa = PBXGroup; children = ( @@ -2728,19 +2694,49 @@ name = iOS; sourceTree = ""; }; - B5D3B16165F3FDCE26DFE706A413FE76 /* Support Files */ = { + A5CE40587B1D0DEFF98742773A62CA50 /* Security */ = { isa = PBXGroup; children = ( - F4D2D27159CC3A8AAABD93291FBA2B48 /* LookinServer.modulemap */, - 5F4DF3FAFAFDE0BEC7606CB8D4C2C98B /* LookinServer-dummy.m */, - 9FEF42DD4D5BC001DB0C88A7EB3DB63B /* LookinServer-Info.plist */, - 5DB99CA546DA98A4F2641B6CD4635589 /* LookinServer-prefix.pch */, - A98C5DE93CCDA0FE6E6A916B05B69DCC /* LookinServer-umbrella.h */, - E654A0C1F961A76933C784134A3D98E4 /* LookinServer.debug.xcconfig */, - B8E77F018E5BE1F8C021ACB0978497F6 /* LookinServer.release.xcconfig */, + 4C354F545C0CC91C4033DC0D648B3819 /* AFSecurityPolicy.h */, + 4883D2BC668CDDE38C319AC414885077 /* AFSecurityPolicy.m */, ); - name = "Support Files"; - path = "../Target Support Files/LookinServer"; + name = Security; + sourceTree = ""; + }; + A989CAE17245D9B811F7FFC909DD86CA /* LYEmptyView */ = { + isa = PBXGroup; + children = ( + B5885DEE0FCB371101A605FDA3D3F35C /* LYEmptyBaseView.h */, + 1D0C4CB17BF463D490AE3400293A0D47 /* LYEmptyBaseView.m */, + 374CEB5E4CAC5B1889E4B3A57B47546E /* LYEmptyView.h */, + 39267406AD82F75ABB872A20BE14F010 /* LYEmptyView.m */, + FA5C6E28985540EE03804DDC4277D459 /* LYEmptyViewHeader.h */, + 7A5F8A5650078BFF9587944F0042AE79 /* UIView+Empty.h */, + A34A186C33DB71F8C4ACB6E0705472D0 /* UIView+Empty.m */, + 0CA8B3EFCD9E73829676C70CE3E88BE0 /* UIView+LYExtension.h */, + 0B4EEA7B77703F45AB157AC651CEF4EA /* UIView+LYExtension.m */, + 1C6C79318C220E5B8848BEC84F0BF1D4 /* Support Files */, + ); + name = LYEmptyView; + path = LYEmptyView; + sourceTree = ""; + }; + B4640B79F6E1B39F4E2822274BC61D23 /* Pager */ = { + isa = PBXGroup; + children = ( + 57460121EED43E41D624C46A92FE9E08 /* JXPagerListContainerView.h */, + E0742EB318197474CB672E4520705ACC /* JXPagerListContainerView.m */, + 3B250EFB659FBBBBA5D680859085344D /* JXPagerListRefreshView.h */, + 659E098AEC86E789470E344EB23EC1DD /* JXPagerListRefreshView.m */, + D564B14F434E85E8016FF192E33548A8 /* JXPagerMainTableView.h */, + 9C2DAB09AC8F3AD6E82FDC5DB2562CB4 /* JXPagerMainTableView.m */, + 7B167FA26CB7B8DC98E1A68B1B44BA8A /* JXPagerSmoothView.h */, + CF46C0579CB3C54966C0F025487DB215 /* JXPagerSmoothView.m */, + 8310CCDF3085A9EE32455CB865148664 /* JXPagerView.h */, + 044A47D1E36901CA79D51CC72EA995C9 /* JXPagerView.m */, + F671FF7CE184FC6A84ADEF036DEA2F7D /* Resources */, + ); + name = Pager; sourceTree = ""; }; B94D7768568A9992200DB461E8CF687F /* Frameworks */ = { @@ -2751,38 +2747,37 @@ name = Frameworks; sourceTree = ""; }; - C79383FD5154699A5CFAA9706E39AF6C /* Support Files */ = { + BD3E878C18624C95338F2E281FA906B8 /* Frameworks */ = { isa = PBXGroup; children = ( - 231F7AC591603501EC449D697A5C6668 /* JXCategoryView.modulemap */, - CBA389E7DB380F4012EFBD733C81D43A /* JXCategoryView-dummy.m */, - 4AA7B1CA514C2D6FAA50ACF865AF4203 /* JXCategoryView-Info.plist */, - C371FCAC7DF4BD1C57C3D164BD5A8759 /* JXCategoryView-prefix.pch */, - 84C7B13561A207799480933E11856D99 /* JXCategoryView-umbrella.h */, - D7708C3743D0A5955D7A50F4A72818A5 /* JXCategoryView.debug.xcconfig */, - 7A9939FAA68717870D107439064CEFF4 /* JXCategoryView.release.xcconfig */, - 3E8FEF4AED255508CB8E745D200EDE89 /* ResourceBundle-JXCategoryView-JXCategoryView-Info.plist */, + 634119E1E65F912498A262851F72517B /* Bugly.framework */, ); - name = "Support Files"; - path = "../Target Support Files/JXCategoryView"; + name = Frameworks; sourceTree = ""; }; - CA7AF39BD3D9214EBF1CEE7DE0683EE0 /* Pager */ = { + C910B48399196A5E00BB083DA443CDA1 /* Support Files */ = { isa = PBXGroup; children = ( - CF85D3EF505C17C565E691AC344CCE5C /* JXPagerListContainerView.h */, - 3BC6BE1672FC4A4AA70F4CBD7E23C808 /* JXPagerListContainerView.m */, - 359AD735B8CFD982730F6CEB0F56A487 /* JXPagerListRefreshView.h */, - 603287955CE071E6EBDC96A98AB97750 /* JXPagerListRefreshView.m */, - 8087FD233990CE787D9977700977D0B8 /* JXPagerMainTableView.h */, - 119B8F0EF70910D693FCCA816529E357 /* JXPagerMainTableView.m */, - 3A2E4F46AFE1B8413F8C1C81323B5831 /* JXPagerSmoothView.h */, - 7F178706A5ED2B8C0CCCEA56CC4A04B6 /* JXPagerSmoothView.m */, - D3F906D47799FB7ED8D4AA1C036BF3BC /* JXPagerView.h */, - D31BFB25B2F3620735E09AC6DE1CBFE3 /* JXPagerView.m */, - 95AF65BE191D8A598CB99DF63AF5085C /* Resources */, + 3DF983F1377AD739C3DF33AE51632FCF /* Bugly.debug.xcconfig */, + 0AD4477B34BC6EAF1A362183974F34DC /* Bugly.release.xcconfig */, ); - name = Pager; + name = "Support Files"; + path = "../Target Support Files/Bugly"; + sourceTree = ""; + }; + CABD2BCBA14C84A63E7608CED87846A3 /* Support Files */ = { + isa = PBXGroup; + children = ( + B6ED434773EE7ECEDAB93E7A62107F73 /* FLAnimatedImage.modulemap */, + 2CCD2F6CD21BCE8D4DC6CE0FB91B91CB /* FLAnimatedImage-dummy.m */, + 64D49E5BC4A3E2ECFAA63B66E38A6F8D /* FLAnimatedImage-Info.plist */, + 353BBBDE951248D62CFDF267ACFAD0A7 /* FLAnimatedImage-prefix.pch */, + 7FAB126742756E8C628ED27AEC1B9567 /* FLAnimatedImage-umbrella.h */, + 2CB55990BE7673BB5930FB77BB2A2C33 /* FLAnimatedImage.debug.xcconfig */, + D5BBA19EC013D7414BE28B29DCA7518D /* FLAnimatedImage.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/FLAnimatedImage"; sourceTree = ""; }; CF1408CF629C7361332E53B88F7BD30C = { @@ -2790,99 +2785,214 @@ children = ( 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */, B94D7768568A9992200DB461E8CF687F /* Frameworks */, - 797CA9CCA9EBB2192EC635FA118D2257 /* Pods */, - 1CD312D2E666224315BB46AF04231D5D /* Products */, + E3282B046A353048174B1E513DFF9A4E /* Pods */, + D3828787C1DCC6E76B71C947B6C876AE /* Products */, F7ED90CD818DD0484BF7DB0E1E3B9AB2 /* Targets Support Files */, ); sourceTree = ""; }; - D44B6A743503D502C7C50E1E40396614 /* FLAnimatedImage */ = { + D3828787C1DCC6E76B71C947B6C876AE /* Products */ = { isa = PBXGroup; children = ( - 761A654F557EA15B24079623AF9184F9 /* FLAnimatedImage.h */, - CE3837EC7E52B2C2855416D01CB974C7 /* FLAnimatedImage.m */, - BD89A8E0323AB57CE283C150C3D4C556 /* FLAnimatedImageView.h */, - B4121F7B04BCCD0FB01ED16A27F6E571 /* FLAnimatedImageView.m */, - 119FAC4028DEE3EECB43C1CA751847B8 /* Support Files */, + A4FA15D44DF6BAC7550EDEED10862AA3 /* AFNetworking */, + 5DA4577FE3BC4A03751108FFED07B385 /* DZNEmptyDataSet */, + FAA5F2D71B90788C908800A94534AA92 /* FLAnimatedImage */, + 7819923046C4F6B199F8D45E9F7BA6B0 /* HWPanModal */, + C3A46B03C308EEEB11F2A62BA5D2E8BE /* JXCategoryView */, + BB4F011171FCB76B1AEBE390F843E930 /* JXCategoryView-JXCategoryView */, + 2F4A1CCB21DB7EA5A2ACEB11E374FBCA /* JXPagingView */, + E03F152E95B6924D2486511337D24503 /* JXPagingView-JXPagerView */, + 25664483ABF4DC8EC03E7472AA04333B /* LookinServer */, + 399102B94B534EB49EE0E5512D150CA8 /* LSTPopView */, + DE19C7D984CBC535E4768F5543458A1E /* LSTTimer */, + EEB5224BF1CABA409B3D3760EDDAEA0A /* LYEmptyView */, + 1FFED36A657123030ABB700256D73F15 /* Masonry */, + 8B8FAB0D627B17EDE1366984278705D9 /* MBProgressHUD */, + 2B276B0A79173A1D6E83C9B4FB9A4A57 /* MJExtension */, + 43EAAD2AB7E6B407E80E95F643F93D22 /* MJExtension-MJExtension */, + E49D6D248DD1CEE584E6776B9164A1B2 /* MJRefresh */, + 7E3097CFEFDA621E9FB0E62009FF87FC /* MJRefresh-MJRefresh.Privacy */, + 0B4AAC15A428CDC2A62AF9CC27BEA609 /* Pods-CustomKeyboard */, + DCA062FD08AC9694D8D781B3492421C5 /* Pods-keyBoard */, + B0B214D775196BA7CA8E17E53048A493 /* SDWebImage */, + CF1281E58AA1045D4B7F33FC56691C42 /* SDWebImage-SDWebImage */, ); - name = FLAnimatedImage; - path = FLAnimatedImage; + name = Products; sourceTree = ""; }; - E186B0D6F7241CA024EE1DBD99B15A49 /* LookinServer */ = { + D453386A36746D9803EFAF894ED288F7 /* SDWebImage */ = { isa = PBXGroup; children = ( - 6DF1AE20DC3ECAE9AA7B19DCCDE41F5C /* Core */, - B5D3B16165F3FDCE26DFE706A413FE76 /* Support Files */, + 2F8EF5B81FDAABB39353996747C04D04 /* Core */, + 8082051853063B4647901F5178837B33 /* Support Files */, ); - name = LookinServer; - path = LookinServer; + name = SDWebImage; + path = SDWebImage; sourceTree = ""; }; - E603CC254B20E39E7561F9D06E23A39C /* LSTPopView */ = { + DB5A3B2FEE3BD7A679B91E83BA32906B /* Support Files */ = { isa = PBXGroup; children = ( - 24E6D9CD604967D0A1CF25370DFD7865 /* Code */, - 5BDD879F155F843CED343AAC8812F0D6 /* Support Files */, - ); - name = LSTPopView; - path = LSTPopView; - sourceTree = ""; - }; - EBAE2342A272E945D29705DB9B28137D /* Support Files */ = { - isa = PBXGroup; - children = ( - E032CFFEFE6D0B2BC568E604265CD74C /* DZNEmptyDataSet.modulemap */, - FFFC6DDC16F58E87A8A30CA92223320F /* DZNEmptyDataSet-dummy.m */, - FDF2879588F648F9ACE28CEDF3C4F456 /* DZNEmptyDataSet-Info.plist */, - 71D68B7747CE473E42AF5D55F07BB002 /* DZNEmptyDataSet-prefix.pch */, - A05508640C7796358B45E0B5C0C73183 /* DZNEmptyDataSet-umbrella.h */, - 6315771A902975A20B41342DD5234115 /* DZNEmptyDataSet.debug.xcconfig */, - 7755C313C99E29481B2A9849C31152BE /* DZNEmptyDataSet.release.xcconfig */, + 56F54F2E70EF1B4C4CD6CC49471EBF8F /* JXPagingView.modulemap */, + 10AACE3BDEFABB8B9E709942B03E5595 /* JXPagingView-dummy.m */, + F762DC35806D05FE8346CE64A0357D9A /* JXPagingView-Info.plist */, + A9BB84448AE1154A6E3D359329D6E5D8 /* JXPagingView-prefix.pch */, + B4319C3394898C8897D6580DAC5A5124 /* JXPagingView-umbrella.h */, + 39D7BCC784A30383722D127896FE591E /* JXPagingView.debug.xcconfig */, + D3FD4542A2D174FC95524833AB672073 /* JXPagingView.release.xcconfig */, + 2F04E40EC66FE8A57ECA4BC540959E1D /* ResourceBundle-JXPagerView-JXPagingView-Info.plist */, ); name = "Support Files"; - path = "../Target Support Files/DZNEmptyDataSet"; + path = "../Target Support Files/JXPagingView"; sourceTree = ""; }; - F3242F712BF128531D3F535A6FD297FA /* MBProgressHUD */ = { + E3282B046A353048174B1E513DFF9A4E /* Pods */ = { isa = PBXGroup; children = ( - A98C848E174628ED3A950CA220B4CB9A /* MBProgressHUD.h */, - DB3619AB8798CD8CAE31E140F80F2DC0 /* MBProgressHUD.m */, - 4B2DDDE1A44400085093EA342624D230 /* Support Files */, + F50E68E76DBF5D25ABBDA080A797818B /* AFNetworking */, + 8B3672DA9A8B9E29E7BA1D933AD6F3B2 /* Bugly */, + 619A9868F13BC15F5FC65525C1D9E2CF /* DZNEmptyDataSet */, + 7DD842DFF9E829253FACA707DA5ADAAB /* FLAnimatedImage */, + 276C8F966392FC7A9273EA1CF3239640 /* HWPanModal */, + 4C9B1F2E52EB330FD3C540E9E187C896 /* JXCategoryView */, + 4D01249FF2A98F37C991C38E6B67067C /* JXPagingView */, + 5FEA21AFA94BB3973C15EEFD1CA50FFA /* LookinServer */, + 070A9E270BA37B1A5AAC97680E006F46 /* LSTPopView */, + 288FC03C5D2C78A45B56AFFEE5C2C9F7 /* LSTTimer */, + A989CAE17245D9B811F7FFC909DD86CA /* LYEmptyView */, + EE105AE032C43766E8A0D667D3647744 /* Masonry */, + 2397706FC09C7D8BAD347D387C455173 /* MBProgressHUD */, + 9F5BA1D45C5B890529791B582CDD92E6 /* MJExtension */, + 23E095E4ABDFCF286D5B6E1FB3668170 /* MJRefresh */, + D453386A36746D9803EFAF894ED288F7 /* SDWebImage */, ); - name = MBProgressHUD; - path = MBProgressHUD; + name = Pods; sourceTree = ""; }; - F401BC1732EB9D32AE09D69A4179A68F /* AFNetworking */ = { + E56FC4F1AC3134805F24F088D231587A /* UIKit */ = { isa = PBXGroup; children = ( - 3B56A01456E5166288620482B2A2180C /* AFNetworking.h */, - 0A1A9864A60D31E01F2EAB72403B1E95 /* NSURLSession */, - 89DEB64DC275ABFAFABFE909ED131FA2 /* Reachability */, - 0727E8966E92BA27516AA23EF6747FF6 /* Security */, - 8F7F6DF25B41B68A636D15AEFC153E23 /* Serialization */, - F7991E885F1A08F44C8372D9EB91EF60 /* Support Files */, - A1A0EBDEE093FF055ADC1FB66AD4A1B8 /* UIKit */, + C3DBF2503619D6F278D203DBF5D29B4E /* AFAutoPurgingImageCache.h */, + ED87146FC94850F3891F867B1931F652 /* AFAutoPurgingImageCache.m */, + 36CBA5AB35EE7DE7B4A5CDBAC4BE20A8 /* AFImageDownloader.h */, + 41B61F60FDADCD1988F2A5F1B93F6FB0 /* AFImageDownloader.m */, + A198AAC0BC41558B9FC61F89E90D900F /* AFNetworkActivityIndicatorManager.h */, + 6516BB90D0CA47F75712B356350A9FC1 /* AFNetworkActivityIndicatorManager.m */, + DCB771163568003A2EA8F4B1A606B9ED /* UIActivityIndicatorView+AFNetworking.h */, + BF141C03BAA67847DFB6B6DFF0D1CBFC /* UIActivityIndicatorView+AFNetworking.m */, + D7F6132E07FDE40130D6C51920456A21 /* UIButton+AFNetworking.h */, + BF0EE7E880EA65C279154531EF91F5E8 /* UIButton+AFNetworking.m */, + ED332DDCE634104C42A2AF8F698EDFB2 /* UIImageView+AFNetworking.h */, + B628043D13CE1145E17714D58AB2A687 /* UIImageView+AFNetworking.m */, + CBB2B3782C3C4626F075A8900436D09D /* UIKit+AFNetworking.h */, + EB461C49F04DBE8D8B709BDAA4911ADC /* UIProgressView+AFNetworking.h */, + 5B758502F7753329D591359BA2747831 /* UIProgressView+AFNetworking.m */, + 48A816CF0BA23EA39A514E31ED98C5D3 /* UIRefreshControl+AFNetworking.h */, + 80E9CB1F62E65A837FF5E47B2FC3ECA1 /* UIRefreshControl+AFNetworking.m */, + B052BF123A39C5CF4B531584A2A83BED /* WKWebView+AFNetworking.h */, + A1C4717F035C7128013EA7E000DAC18A /* WKWebView+AFNetworking.m */, + ); + name = UIKit; + sourceTree = ""; + }; + EC737F9C95A0D5999B811C9A1D937DBC /* Code */ = { + isa = PBXGroup; + children = ( + DB7D4CE7BA063A9CA415CD86C8825985 /* LSTPopView.h */, + 633C3F66E9BA0FD7538C55D5287ED77E /* LSTPopView.m */, + 7D7595F0F8BE4F40C64D68F0D491C6C6 /* LSTPopViewProtocol.h */, + 6757029D58C1BFD772BCC87D14A52E39 /* UIView+LSTPV.h */, + 1B1E80842E43848FFB0F162AFF96E774 /* UIView+LSTPV.m */, + ); + name = Code; + sourceTree = ""; + }; + EDCE25045C1BBF6ECB7211723055D0DB /* Support Files */ = { + isa = PBXGroup; + children = ( + 6331F4B8E0F66A8F7B8028B33CF71268 /* LSTTimer.modulemap */, + A3211D6272FC8FFC9717C01969D328F7 /* LSTTimer-dummy.m */, + B74E719F2E64B3E186B6F4B672482329 /* LSTTimer-Info.plist */, + 7D6E9AC32A60E19ACB08AED4E4CD31A3 /* LSTTimer-prefix.pch */, + 88F65BAED091224357C1ABFEA1C484FA /* LSTTimer-umbrella.h */, + 6CE98E2FC8B92A0E98F20755C88122A4 /* LSTTimer.debug.xcconfig */, + 73EBDE260791BF4440027F8601391D8B /* LSTTimer.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/LSTTimer"; + sourceTree = ""; + }; + EE105AE032C43766E8A0D667D3647744 /* Masonry */ = { + isa = PBXGroup; + children = ( + AE4CC2528765A45B472AD5B813D01119 /* MASCompositeConstraint.h */, + 70CD4567ACE296214EA982091E2B8F90 /* MASCompositeConstraint.m */, + FD61DA71A7253ED59D65D424C86E2C50 /* MASConstraint.h */, + 23B6D3BC0C4291E4CB154E7F35862BCB /* MASConstraint.m */, + AC368BF52013B3AE323DC35D782A044B /* MASConstraint+Private.h */, + 404BBFC3B5A2ADAEF4E188881B357111 /* MASConstraintMaker.h */, + 673C80521DE4F20FDE3E9A82E6EBEC53 /* MASConstraintMaker.m */, + 2A98EB9CE425ECC87D9747E4EAC3DB0C /* MASLayoutConstraint.h */, + 7DEDD90DB6CF7DD05B6B753765E65AAD /* MASLayoutConstraint.m */, + 1E2CD23DF8D29ECCE7278412B1BFFFA2 /* Masonry.h */, + 1BFABBA210FF6BEF09CABCCBE8AE590F /* MASUtilities.h */, + 7083FA062632CC52050FC4EB53D64E3A /* MASViewAttribute.h */, + B9CA9F01554205BFBACCA553143C8676 /* MASViewAttribute.m */, + 6EB329DC3D8A252CA69C19DAF330A784 /* MASViewConstraint.h */, + 0CE35A6903D3E473ACA2703E7286A28E /* MASViewConstraint.m */, + 05FF40C91ADEB302CBF4314535A1A6E7 /* NSArray+MASAdditions.h */, + 3E34DAE4904CE87FBB70688EA36DF9D3 /* NSArray+MASAdditions.m */, + 986324EA3CC9A3BDF0E5C7B1763862EE /* NSArray+MASShorthandAdditions.h */, + BE9E061AE26F933A7BBEFF3D94E9B32D /* NSLayoutConstraint+MASDebugAdditions.h */, + D8B8A062E76BF87D54F581F6428D4E28 /* NSLayoutConstraint+MASDebugAdditions.m */, + 8B8AB8065F8811289957B59E9EBA6B47 /* View+MASAdditions.h */, + 1069EA3A85D1A1A87FE087B0FE402436 /* View+MASAdditions.m */, + EBEEA0239556FEF194877FD307A4ADD6 /* View+MASShorthandAdditions.h */, + FED4C87CAD14B9336A225C943B75263C /* ViewController+MASAdditions.h */, + DB1B5D6DA097974C176F91F3853055EC /* ViewController+MASAdditions.m */, + A06A903601EA30E66A3EFB3445AE0486 /* Support Files */, + ); + name = Masonry; + path = Masonry; + sourceTree = ""; + }; + F4552932065591EFBCEA1E5854647226 /* Support Files */ = { + isa = PBXGroup; + children = ( + 526BF014AFB62CD2E2E5312B573388BC /* JXCategoryView.modulemap */, + D98B4BEA4820634A8F01172731FF97B7 /* JXCategoryView-dummy.m */, + A01B197EE310DCCE265AA065FA12EF38 /* JXCategoryView-Info.plist */, + F09D5DAEE3CD3FFE1B213DFEF893E818 /* JXCategoryView-prefix.pch */, + AC3EF9D4544217A0B4E13DA6B530C974 /* JXCategoryView-umbrella.h */, + F68616E55705601CBE5D9437AD83B340 /* JXCategoryView.debug.xcconfig */, + DF80C06856CA889ADB8807594055C7DF /* JXCategoryView.release.xcconfig */, + AAA2247A63D832BDB9097AE7D635F20C /* ResourceBundle-JXCategoryView-JXCategoryView-Info.plist */, + ); + name = "Support Files"; + path = "../Target Support Files/JXCategoryView"; + sourceTree = ""; + }; + F50E68E76DBF5D25ABBDA080A797818B /* AFNetworking */ = { + isa = PBXGroup; + children = ( + 860D7179002683A0368E532B751FC40E /* AFNetworking.h */, + 6D1FBB10825D24E335F04D97066D9C66 /* NSURLSession */, + 579E4939EC6AC009496870BECBDEC208 /* Reachability */, + A5CE40587B1D0DEFF98742773A62CA50 /* Security */, + 3FB59ED98513C1B8FA6DBF40283EB341 /* Serialization */, + 184D0B412C8826DE321973718A83EAD0 /* Support Files */, + E56FC4F1AC3134805F24F088D231587A /* UIKit */, ); name = AFNetworking; path = AFNetworking; sourceTree = ""; }; - F7991E885F1A08F44C8372D9EB91EF60 /* Support Files */ = { + F671FF7CE184FC6A84ADEF036DEA2F7D /* Resources */ = { isa = PBXGroup; children = ( - F549CCE65FFF5AC81AB62FDCCB6CB8DC /* AFNetworking.modulemap */, - 17CD950341D8F0132ADFEDC39B7267A7 /* AFNetworking-dummy.m */, - 709DA7415B508D723EE552B201284026 /* AFNetworking-Info.plist */, - 82F0AA3C9E3854CEA18B30E16DC474FC /* AFNetworking-prefix.pch */, - A1067B051CF7A4C36817E6F668A3E7A6 /* AFNetworking-umbrella.h */, - 8A6F594F279129456C02C7701DE5EDC3 /* AFNetworking.debug.xcconfig */, - A697ED78520252C2C8CA71D13BA57F79 /* AFNetworking.release.xcconfig */, + 7EC4505824D228FB201DC90A544C01B3 /* PrivacyInfo.xcprivacy */, ); - name = "Support Files"; - path = "../Target Support Files/AFNetworking"; + name = Resources; sourceTree = ""; }; F7ED90CD818DD0484BF7DB0E1E3B9AB2 /* Targets Support Files */ = { @@ -2894,50 +3004,19 @@ name = "Targets Support Files"; sourceTree = ""; }; - F897C86CB2866AB045A64520219B6522 /* Resources */ = { + F9D546C8B0F4E1C342B53CD786B328AB /* Support Files */ = { isa = PBXGroup; children = ( - C1227D6957584FA14F5EFE311854C54A /* PrivacyInfo.xcprivacy */, - ); - name = Resources; - sourceTree = ""; - }; - FB21115538DDA6029001E62F3AB59544 /* LSTTimer */ = { - isa = PBXGroup; - children = ( - C4A783F974F95D31DCCDA721D4F965EC /* LSTTimer.h */, - EF426A2B87D32263A2C56A13732C8201 /* LSTTimer.m */, - 9CF605192227F87CF3E8D7EE63BDF0B1 /* Support Files */, - ); - name = LSTTimer; - path = LSTTimer; - sourceTree = ""; - }; - FE875CB7596498A67CF56F73315D2BDD /* DZNEmptyDataSet */ = { - isa = PBXGroup; - children = ( - 797DE6794620B6AD238FF0B8B61A1B32 /* UIScrollView+EmptyDataSet.h */, - 3F77AB571A5252972C84B67134918B5F /* UIScrollView+EmptyDataSet.m */, - EBAE2342A272E945D29705DB9B28137D /* Support Files */, - ); - name = DZNEmptyDataSet; - path = DZNEmptyDataSet; - sourceTree = ""; - }; - FFFE14F5389A574527140C5AC02880B9 /* Support Files */ = { - isa = PBXGroup; - children = ( - 19AE4F199F0E794B9F2956EE4530887A /* MJExtension.modulemap */, - 4D4A62A4549AC17B0296FF7D29E15454 /* MJExtension-dummy.m */, - 6C338AB8936504A929CF0929B7D23C9F /* MJExtension-Info.plist */, - DA5203B4ACDB110F236306ADB5531C98 /* MJExtension-prefix.pch */, - AE09548D63659FAE72F5C6F1EBF230FC /* MJExtension-umbrella.h */, - FFC39DF551599EB371EA8F85F9A9DDCF /* MJExtension.debug.xcconfig */, - 04A5DA1EDA3B5149D813E6B1D2B5ADDD /* MJExtension.release.xcconfig */, - 6A2C1D3548C9E3091DE847DA61A18E5B /* ResourceBundle-MJExtension-MJExtension-Info.plist */, + 59720B9654BC9C6EC9F2FF79FB3FEB5A /* HWPanModal.modulemap */, + 0AE235E52EF7BBF7348F9B4CAB71F7D8 /* HWPanModal-dummy.m */, + CDE56910104E914C73DC565FDFEABE34 /* HWPanModal-Info.plist */, + 4F973225F70967D6C01DF18ABCACA3C4 /* HWPanModal-prefix.pch */, + 1EFF4EEBD779C7DB39B6B044205385FA /* HWPanModal-umbrella.h */, + 4201C2CD51C00E5AC0EC45DC41B32695 /* HWPanModal.debug.xcconfig */, + CA665BB1B8AEA701C3C1A72312BFE105 /* HWPanModal.release.xcconfig */, ); name = "Support Files"; - path = "../Target Support Files/MJExtension"; + path = "../Target Support Files/HWPanModal"; sourceTree = ""; }; /* End PBXGroup section */ @@ -2994,6 +3073,27 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 195AA888551D84C490CBCAED7AE25EBE /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 7BC817F176759B34FDC3C9A3BDE900BF /* LYEmptyBaseView.h in Headers */, + EF51279C724969A99FF5EF85F832FC00 /* LYEmptyView.h in Headers */, + F2892F71762EC5410EE733B862712BB3 /* LYEmptyView-umbrella.h in Headers */, + 9C6A760E54D2281BBE39A443C0F78D55 /* LYEmptyViewHeader.h in Headers */, + 1ED0D560CC57BCED931C26E643B2A96A /* UIView+Empty.h in Headers */, + 9F8A77D8902C98115735987BA80BD5C9 /* UIView+LYExtension.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 1BBE9495F3D97388AE8F965FB5CA16AD /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 2C2405D23D1A7428F65C7D740476ABA2 /* Pods-keyBoard-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 22C4F6C2D1258108CF5B6E74F03D0EB2 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -3232,23 +3332,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 8DFBCFE77A898FBE83C48772D7F569F9 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 2EEB29D2C570F11620D4CF90D7DFD569 /* Pods-keyBoard-umbrella.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 920775366A5F97AE256FADDDCDBD9740 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 060B00D5B019369654AEAB7C116DC119 /* LSTTimer.h in Headers */, - 48EB84614F04E6089393ADDFA4BA8603 /* LSTTimer-umbrella.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 93691E22DE50657D0D08BA5D05234F57 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -3374,6 +3457,15 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + FFA880310EDC0CF0A2515E0ED18689B0 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + EC6671997676ABEBC34F2BE6C01266B1 /* LSTTimer.h in Headers */, + CA543D086B4C8E314FB43F0B78147FE9 /* LSTTimer-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; /* End PBXHeadersBuildPhase section */ /* Begin PBXNativeTarget section */ @@ -3397,11 +3489,11 @@ }; 16704C6B67439DA959DB043702C75A7A /* JXPagingView-JXPagerView */ = { isa = PBXNativeTarget; - buildConfigurationList = DDFDCCDD059A0AA2C5DEAA3588DE41A7 /* Build configuration list for PBXNativeTarget "JXPagingView-JXPagerView" */; + buildConfigurationList = 404863FC7F43060AAE7C6FA66F917915 /* Build configuration list for PBXNativeTarget "JXPagingView-JXPagerView" */; buildPhases = ( - 2BCD1AC59060560FEAF74FFFB66F0F9F /* Sources */, - AEC8B8EF401BFAE066232C67738FEB8F /* Frameworks */, - 3A5A6604A2DC218F056C1D04F3DB43CD /* Resources */, + 5E3F655370D8F2DAABC53D59D069B3A1 /* Sources */, + 2D2D1D550E12F4C0C9C30D5A3CD01C4E /* Frameworks */, + 860DF70163CE0C8308216A41597A40DF /* Resources */, ); buildRules = ( ); @@ -3414,31 +3506,32 @@ }; 18BD026D2210082A239FC15D072FD5BF /* Pods-keyBoard */ = { isa = PBXNativeTarget; - buildConfigurationList = 0C35983ABF9DEA95C8B29A7F8482E5AE /* Build configuration list for PBXNativeTarget "Pods-keyBoard" */; + buildConfigurationList = 48C48CA74E925091D509EAE661A5D87D /* Build configuration list for PBXNativeTarget "Pods-keyBoard" */; buildPhases = ( - 8DFBCFE77A898FBE83C48772D7F569F9 /* Headers */, - 6F3E38196FED4BD0677C98E1E0C6C80C /* Sources */, - 96D238A614CBDD553073EEECBB41281C /* Frameworks */, - 0D07E8D675635C881CCB2DF69C6E7629 /* Resources */, + 1BBE9495F3D97388AE8F965FB5CA16AD /* Headers */, + E3AA8B53287F6ACBF2F2800146C6ECD0 /* Sources */, + 2A4C89A05153A8C37E3B9ACF170A9EB8 /* Frameworks */, + 2B9BFC6488F4ABCC9916C35510BB7D7C /* Resources */, ); buildRules = ( ); dependencies = ( - C9B3D25C71255E9DFCE9A741B4BFF3BA /* PBXTargetDependency */, - 3A364CBA383FC741F9B9507BAD524A1F /* PBXTargetDependency */, - BFFE20AC77F2320185030DE7FAF95A94 /* PBXTargetDependency */, - D1DA99819466A8666489AD8ABE8C04A5 /* PBXTargetDependency */, - B48CA5483F83ECB025E2CF88895F910F /* PBXTargetDependency */, - E3CE26F82AC9FA20A1C696AD05CBE607 /* PBXTargetDependency */, - 3B95059A3ABF817D0636F90C4FE24A57 /* PBXTargetDependency */, - 5B8D2BAFD03C6848DC5CAC776971023C /* PBXTargetDependency */, - A036241AE2FD9088F99D8A60AFCD1514 /* PBXTargetDependency */, - 3A33DC80646EE1FEC3F5A81D6D88094E /* PBXTargetDependency */, - 7986360E8EC5F57AE4012FDDB8A6D701 /* PBXTargetDependency */, - 67D06D25CF9C7EFF394097D2AFFD9DF9 /* PBXTargetDependency */, - 75023E301D2D56786B69F7BD1B998E06 /* PBXTargetDependency */, - 004C87AF28627224BAF0F49A32B4B934 /* PBXTargetDependency */, - A8CFE4713F435C9FF4AA9FA8D460F3A7 /* PBXTargetDependency */, + D431884F2F2835EF4FDB44219ADAA88B /* PBXTargetDependency */, + 3067995C8EDFEF1A63CA85F6D091AD0B /* PBXTargetDependency */, + E7B53C78EB3FA9751B3C978B6CB97980 /* PBXTargetDependency */, + D6DB70831F359F7235B8C97A50300DDF /* PBXTargetDependency */, + C0EEAAE6B64FC5B6DFCE16644E06B2CA /* PBXTargetDependency */, + CE8F85B0B6965EE090F12CB8B384E2A3 /* PBXTargetDependency */, + BB84628766B4F66DF4DC34732901F40E /* PBXTargetDependency */, + 90059A9ED4F8080EA23A70C0EB5FE47E /* PBXTargetDependency */, + 7D1F8A3DE88EF01CF89EF4750D0835BC /* PBXTargetDependency */, + F750881392263D81A5BB4E131005A44E /* PBXTargetDependency */, + 28BE8BB7BD4C9C6AB673350A1570FA84 /* PBXTargetDependency */, + FE3D9C468529CF310D88B6383BEFBFDD /* PBXTargetDependency */, + 9403290AE1B7249ADE1ED8950739EE94 /* PBXTargetDependency */, + 22268E07F0FDFC08F0EE9D82FF083DD6 /* PBXTargetDependency */, + ABAA3F7B666DBB2B8C2E114433F7A89D /* PBXTargetDependency */, + D2B74321DDAF41730531D5172D454257 /* PBXTargetDependency */, ); name = "Pods-keyBoard"; productName = Pods_keyBoard; @@ -3475,7 +3568,7 @@ buildRules = ( ); dependencies = ( - E918590C6B33D5799C74C34CD2BB5722 /* PBXTargetDependency */, + D37914A752321FFCFF48251614F3D1B6 /* PBXTargetDependency */, ); name = SDWebImage; productName = SDWebImage; @@ -3500,6 +3593,24 @@ productReference = FAA5F2D71B90788C908800A94534AA92 /* FLAnimatedImage */; productType = "com.apple.product-type.framework"; }; + 4AA4C7BB776C55F3421BA137B643DD64 /* LYEmptyView */ = { + isa = PBXNativeTarget; + buildConfigurationList = 511C0840C50AF349D9A51E73BA56D28D /* Build configuration list for PBXNativeTarget "LYEmptyView" */; + buildPhases = ( + 195AA888551D84C490CBCAED7AE25EBE /* Headers */, + E8A558A3C629ABA805E9D912FCCBCD2F /* Sources */, + 98BB4909B1035551DF579C13A59BAA4D /* Frameworks */, + 311EF2CB460B544059B769919A899ECA /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = LYEmptyView; + productName = LYEmptyView; + productReference = EEB5224BF1CABA409B3D3760EDDAEA0A /* LYEmptyView */; + productType = "com.apple.product-type.framework"; + }; 4D3BA58D0583DF37575CACAB3DDADC85 /* MJExtension */ = { isa = PBXNativeTarget; buildConfigurationList = 547AC2DDC5CDD1783E0827EEA7D453E1 /* Build configuration list for PBXNativeTarget "MJExtension" */; @@ -3512,7 +3623,7 @@ buildRules = ( ); dependencies = ( - CA5A82B04166A988C7834D6E5F130D24 /* PBXTargetDependency */, + 1D289FBB39D9730B46C50BB58E35DEDD /* PBXTargetDependency */, ); name = MJExtension; productName = MJExtension; @@ -3539,12 +3650,12 @@ }; 5A2609DB0612F95A3450D2E02CA850A0 /* LSTTimer */ = { isa = PBXNativeTarget; - buildConfigurationList = 15624921AFB223858478F40D5FC30D8A /* Build configuration list for PBXNativeTarget "LSTTimer" */; + buildConfigurationList = C43E72A521778768A4BFF773BB3A3E73 /* Build configuration list for PBXNativeTarget "LSTTimer" */; buildPhases = ( - 920775366A5F97AE256FADDDCDBD9740 /* Headers */, - FEEB3280DD885E20A0F8EE0C8798CAB2 /* Sources */, - C44502CD70E5B1200927F3A081A60365 /* Frameworks */, - 848FF7A10EE5C029902ADD3C55750C9F /* Resources */, + FFA880310EDC0CF0A2515E0ED18689B0 /* Headers */, + 960664E0DAFB6A287268BB843AE03C4D /* Sources */, + 58A39759A11D8C551E18D1323674BF34 /* Frameworks */, + 3E9DF1CA7088EFD9A83405BFA3BA49AB /* Resources */, ); buildRules = ( ); @@ -3585,7 +3696,7 @@ buildRules = ( ); dependencies = ( - 7244D798B35A90122DF5F2EBC2C25073 /* PBXTargetDependency */, + 4B67FE65673F595E9C8A068417DA514D /* PBXTargetDependency */, ); name = MJRefresh; productName = MJRefresh; @@ -3622,7 +3733,7 @@ buildRules = ( ); dependencies = ( - C8CAA3DF1F34F4917BE346E82645B672 /* PBXTargetDependency */, + 88EAB6CB023EDFC5B53D2E9C22425E3A /* PBXTargetDependency */, ); name = LSTPopView; productName = LSTPopView; @@ -3641,7 +3752,7 @@ buildRules = ( ); dependencies = ( - C11D50FE786831BFAA5FB3ED4D276FC5 /* PBXTargetDependency */, + 840E5121538D55EE93FDAA52D266DA70 /* PBXTargetDependency */, ); name = JXCategoryView; productName = JXCategoryView; @@ -3650,11 +3761,11 @@ }; 94CFBA7D633ECA58DF85C327B035E6A3 /* SDWebImage-SDWebImage */ = { isa = PBXNativeTarget; - buildConfigurationList = D0D337F808B517A6F9A6D14C71CB5B25 /* Build configuration list for PBXNativeTarget "SDWebImage-SDWebImage" */; + buildConfigurationList = FB913463BEC55EE719AD5BC32990DB46 /* Build configuration list for PBXNativeTarget "SDWebImage-SDWebImage" */; buildPhases = ( - 23F7311CB240548CE74F13BA30E805B5 /* Sources */, - 49A3D4697275EC0A7C6F38E45E2F0217 /* Frameworks */, - 104904C13744D5C7625092B68974D183 /* Resources */, + A3408CB3584697A2B6167BD69AA21B2F /* Sources */, + 0DCF6770445D0657900721EC9917ECFB /* Frameworks */, + 0F4454263AF02A68EA280CFD2F6F0009 /* Resources */, ); buildRules = ( ); @@ -3667,11 +3778,11 @@ }; B26054DF1DEA11585A231AF6D1D80D5E /* MJRefresh-MJRefresh.Privacy */ = { isa = PBXNativeTarget; - buildConfigurationList = 6245C5FFE40FC7DFDD2CA00871D0EA40 /* Build configuration list for PBXNativeTarget "MJRefresh-MJRefresh.Privacy" */; + buildConfigurationList = BA6D8ED14C9A066F526869BBA7BFA2F0 /* Build configuration list for PBXNativeTarget "MJRefresh-MJRefresh.Privacy" */; buildPhases = ( - D505A0E271350076957F6F32073544D2 /* Sources */, - A815DA3563AEC721C6EAF6B39395CDD4 /* Frameworks */, - 8AF3FF976A1DE9EA4258B9F5B490733A /* Resources */, + 25D101E1E3D7EB40B6BF4B0D063D4CFB /* Sources */, + 04785C72D7E967FCB78D8F7E7635973B /* Frameworks */, + BD0C56EEEF7BFD5736E628E5DAEDE627 /* Resources */, ); buildRules = ( ); @@ -3684,11 +3795,11 @@ }; B32AF3F43989CBA171BB1FB3957A4509 /* MJExtension-MJExtension */ = { isa = PBXNativeTarget; - buildConfigurationList = B662A4FAD3B72B94AAE82FA4EF54A8A1 /* Build configuration list for PBXNativeTarget "MJExtension-MJExtension" */; + buildConfigurationList = 97AAB185F08FD001A3F3B9102E506695 /* Build configuration list for PBXNativeTarget "MJExtension-MJExtension" */; buildPhases = ( - 1FAEC8C9D1FFBAF2D815698CBBF41366 /* Sources */, - B48A7E8CCFE81BBD4AEBA45C992E5F7F /* Frameworks */, - 79F5ED799353ADB8EFED141CD4F84A84 /* Resources */, + 4B87B289E4FC9DF2FE22A240DAB0E3AD /* Sources */, + 6B8E82384925B650051F0C1846383E41 /* Frameworks */, + 3D2CFD627094E91914BED90AC6A972BE /* Resources */, ); buildRules = ( ); @@ -3711,7 +3822,7 @@ buildRules = ( ); dependencies = ( - 82007E5716B41B7A56E454204B106954 /* PBXTargetDependency */, + CFAD2B6D6431A495BD1CA533779A67B0 /* PBXTargetDependency */, ); name = JXPagingView; productName = JXPagingView; @@ -3730,11 +3841,11 @@ buildRules = ( ); dependencies = ( - 33D09C01EF80EA558D42C96911714DFF /* PBXTargetDependency */, - 8DBC9C82D4F645E38F5388E4EC6F8837 /* PBXTargetDependency */, - C5827E035098A10C8DC173D8807B0496 /* PBXTargetDependency */, - 2DE7668F0442330FCC1AB4038419404C /* PBXTargetDependency */, - 37008CECA85E062E163E323B0DBF02EA /* PBXTargetDependency */, + 516A94BC5E451EEB51F643D23D85E82C /* PBXTargetDependency */, + B5024FC019BD8A112152FB369A67EAFA /* PBXTargetDependency */, + 285B72F62A1DE2E9A5E2E4D45F15828C /* PBXTargetDependency */, + 3B6CA3026290428D105D8C0E16BC28C0 /* PBXTargetDependency */, + 418F39BD767B7F3EBD3B862DC77F178A /* PBXTargetDependency */, ); name = "Pods-CustomKeyboard"; productName = Pods_CustomKeyboard; @@ -3743,11 +3854,11 @@ }; E79E29F55A2453370D27112480FCF6A2 /* JXCategoryView-JXCategoryView */ = { isa = PBXNativeTarget; - buildConfigurationList = F688458307583BA2FC79B1282B37D611 /* Build configuration list for PBXNativeTarget "JXCategoryView-JXCategoryView" */; + buildConfigurationList = 931B4A41B3614242C4D8813983B29AE7 /* Build configuration list for PBXNativeTarget "JXCategoryView-JXCategoryView" */; buildPhases = ( - 17BD1ACA0E8D92E2DF87A056B0D17AF7 /* Sources */, - D322DF9855308A001A820F202DCCBA75 /* Frameworks */, - 570AFF54CA367A3A6FC6B25F8F89E223 /* Resources */, + E7FC7BB552A8FE956E421E3474419D5D /* Sources */, + F4019BF639D68EFAB596EA1BD86C37CB /* Frameworks */, + 1461F55480D564BB754551A6E8B059D2 /* Resources */, ); buildRules = ( ); @@ -3796,7 +3907,7 @@ mainGroup = CF1408CF629C7361332E53B88F7BD30C; minimizedProjectReferenceProxies = 0; preferredProjectObjectVersion = 77; - productRefGroup = 1CD312D2E666224315BB46AF04231D5D /* Products */; + productRefGroup = D3828787C1DCC6E76B71C947B6C876AE /* Products */; projectDirPath = ""; projectRoot = ""; targets = ( @@ -3812,6 +3923,7 @@ 638FEAAFC575BB76BC6AC055CDDA3506 /* LookinServer */, 8B7D23DD98E41BAE91418E9E85F191D6 /* LSTPopView */, 5A2609DB0612F95A3450D2E02CA850A0 /* LSTTimer */, + 4AA4C7BB776C55F3421BA137B643DD64 /* LYEmptyView */, 55AF53E6C77A10ED4985E04D74A8878E /* Masonry */, 82B0A41D3031FF27D78E17B0A9A46FB0 /* MBProgressHUD */, 4D3BA58D0583DF37575CACAB3DDADC85 /* MJExtension */, @@ -3827,18 +3939,19 @@ /* End PBXProject section */ /* Begin PBXResourcesBuildPhase section */ - 0D07E8D675635C881CCB2DF69C6E7629 /* Resources */ = { + 0F4454263AF02A68EA280CFD2F6F0009 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( + 7DFACBAC8324FE3F177FA465E0006A9C /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 104904C13744D5C7625092B68974D183 /* Resources */ = { + 1461F55480D564BB754551A6E8B059D2 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 6F3A575F2B9E1CEB696248B9CB96F357 /* PrivacyInfo.xcprivacy in Resources */, + 7D4B5D7A593F4436B57347FD2A5072B4 /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -3864,11 +3977,32 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 3A5A6604A2DC218F056C1D04F3DB43CD /* Resources */ = { + 2B9BFC6488F4ABCC9916C35510BB7D7C /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 311EF2CB460B544059B769919A899ECA /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 3D2CFD627094E91914BED90AC6A972BE /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + B2E706AF15CBC9BBDA6B180AA008345E /* PrivacyInfo.xcprivacy in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 3E9DF1CA7088EFD9A83405BFA3BA49AB /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 5DF02901155278BE109057E17C7C1D99 /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -3889,14 +4023,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 570AFF54CA367A3A6FC6B25F8F89E223 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 95CCA80D6790CF64F974A53E815420F8 /* PrivacyInfo.xcprivacy in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 5C89912961D7B3B99680563233DBEA04 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; @@ -3905,26 +4031,11 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 79F5ED799353ADB8EFED141CD4F84A84 /* Resources */ = { + 860DF70163CE0C8308216A41597A40DF /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - EC078D5CD76868BDE0F67BBEAFFEA217 /* PrivacyInfo.xcprivacy in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 848FF7A10EE5C029902ADD3C55750C9F /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 8AF3FF976A1DE9EA4258B9F5B490733A /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - B61728EFE4A95013413ED38D371A33B0 /* PrivacyInfo.xcprivacy in Resources */, + 27CE2AFFB3219A5D3717045970929C80 /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -3949,6 +4060,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + BD0C56EEEF7BFD5736E628E5DAEDE627 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 1F2863645F3DEAC57B592AFFB45D5E77 /* PrivacyInfo.xcprivacy in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; D518E37278D48F046F4C76EA0E72D5AC /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; @@ -4095,28 +4214,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 17BD1ACA0E8D92E2DF87A056B0D17AF7 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 1FAEC8C9D1FFBAF2D815698CBBF41366 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 23F7311CB240548CE74F13BA30E805B5 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 2BCD1AC59060560FEAF74FFFB66F0F9F /* Sources */ = { + 25D101E1E3D7EB40B6BF4B0D063D4CFB /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -4154,11 +4252,17 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 6F3E38196FED4BD0677C98E1E0C6C80C /* Sources */ = { + 4B87B289E4FC9DF2FE22A240DAB0E3AD /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 5E3F655370D8F2DAABC53D59D069B3A1 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 3BF23DD02B40D2A2E98FF9D042A5AF4E /* Pods-keyBoard-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -4282,6 +4386,15 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 960664E0DAFB6A287268BB843AE03C4D /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 21232E67D630EBF8EA4CB3322B359F0D /* LSTTimer.m in Sources */, + 9C623DECA454522DB641AA29C86F6387 /* LSTTimer-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 9F03A6C166C310270FB3F4AFE9D7573D /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -4304,6 +4417,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + A3408CB3584697A2B6167BD69AA21B2F /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; D08DDDF416AB9EEE26C8FFEE674F7A12 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -4327,13 +4447,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - D505A0E271350076957F6F32073544D2 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; DA0B6A6F9B3EDF226BF081DAC7E777E7 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -4384,6 +4497,33 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + E3AA8B53287F6ACBF2F2800146C6ECD0 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 58852265A6A355CDF8D25BCD71F54F3D /* Pods-keyBoard-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + E7FC7BB552A8FE956E421E3474419D5D /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + E8A558A3C629ABA805E9D912FCCBCD2F /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 7D1C6E10B8E0F98E19048BB416A39A0D /* LYEmptyBaseView.m in Sources */, + 2210A1E405AB21104E7AF86D05C8AD39 /* LYEmptyView.m in Sources */, + A59F64C74CB407EBC0385F026FC7234A /* LYEmptyView-dummy.m in Sources */, + 0E97928FD3B4476EDC015E83A8E2CAA3 /* UIView+Empty.m in Sources */, + 743BBA00940EF6877AE1D5014755D0D6 /* UIView+LYExtension.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; E8CCE3C7763C30E81A067AE9AC1B8915 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -4412,187 +4552,294 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - FEEB3280DD885E20A0F8EE0C8798CAB2 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ADAB2E78F005C6413F9F3699D60CF727 /* LSTTimer.m in Sources */, - 4E0FBD829EB07B8D5D2A5F6115457BE7 /* LSTTimer-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; /* End PBXSourcesBuildPhase section */ /* Begin PBXTargetDependency section */ - 004C87AF28627224BAF0F49A32B4B934 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Masonry; - target = 55AF53E6C77A10ED4985E04D74A8878E /* Masonry */; - targetProxy = F121CDAC85A6DCADB4F82D081323C7C5 /* PBXContainerItemProxy */; - }; - 2DE7668F0442330FCC1AB4038419404C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = MJExtension; - target = 4D3BA58D0583DF37575CACAB3DDADC85 /* MJExtension */; - targetProxy = 79523FDE8CA807F68BC7DF678B3199B5 /* PBXContainerItemProxy */; - }; - 33D09C01EF80EA558D42C96911714DFF /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = AFNetworking; - target = 0130B3724283586C0E9D2A112D4F2AA1 /* AFNetworking */; - targetProxy = 398B300FAF20E4012B54089285C6D68D /* PBXContainerItemProxy */; - }; - 37008CECA85E062E163E323B0DBF02EA /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Masonry; - target = 55AF53E6C77A10ED4985E04D74A8878E /* Masonry */; - targetProxy = 39F2619DE86130266FA45394FE5C260D /* PBXContainerItemProxy */; - }; - 3A33DC80646EE1FEC3F5A81D6D88094E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = LookinServer; - target = 638FEAAFC575BB76BC6AC055CDDA3506 /* LookinServer */; - targetProxy = AE8D5D579627FAFF8F43B7CEFE066FF2 /* PBXContainerItemProxy */; - }; - 3A364CBA383FC741F9B9507BAD524A1F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Bugly; - target = 4A68CFD979D413A619DF631BB121D98F /* Bugly */; - targetProxy = 4262F1710F9698DFC113026BA2E31021 /* PBXContainerItemProxy */; - }; - 3B95059A3ABF817D0636F90C4FE24A57 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = JXPagingView; - target = C4E1020AF425614337737213AA26DBD5 /* JXPagingView */; - targetProxy = 6DB0C5460735B353E7FB2A7058DEB8F3 /* PBXContainerItemProxy */; - }; - 5B8D2BAFD03C6848DC5CAC776971023C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = LSTPopView; - target = 8B7D23DD98E41BAE91418E9E85F191D6 /* LSTPopView */; - targetProxy = 0A1A465C500FD28324C60FF2111766F1 /* PBXContainerItemProxy */; - }; - 67D06D25CF9C7EFF394097D2AFFD9DF9 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = MJExtension; - target = 4D3BA58D0583DF37575CACAB3DDADC85 /* MJExtension */; - targetProxy = 4E0DD9B103CA9ED24B513A6147DEDB93 /* PBXContainerItemProxy */; - }; - 7244D798B35A90122DF5F2EBC2C25073 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "MJRefresh-MJRefresh.Privacy"; - target = B26054DF1DEA11585A231AF6D1D80D5E /* MJRefresh-MJRefresh.Privacy */; - targetProxy = C279C7A3A264FD3391C8C73B80D3A426 /* PBXContainerItemProxy */; - }; - 75023E301D2D56786B69F7BD1B998E06 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = MJRefresh; - target = 6868056D761E163D10FDAF8CF1C4D9B8 /* MJRefresh */; - targetProxy = 9E88A4DD9EF59B6718F28ECC701DF551 /* PBXContainerItemProxy */; - }; - 7986360E8EC5F57AE4012FDDB8A6D701 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = MBProgressHUD; - target = 82B0A41D3031FF27D78E17B0A9A46FB0 /* MBProgressHUD */; - targetProxy = F9F28B72CAD6F7E15F267C3F8D685EA8 /* PBXContainerItemProxy */; - }; - 82007E5716B41B7A56E454204B106954 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "JXPagingView-JXPagerView"; - target = 16704C6B67439DA959DB043702C75A7A /* JXPagingView-JXPagerView */; - targetProxy = C389A17163C51915594BC17BC8BF9DE0 /* PBXContainerItemProxy */; - }; - 8DBC9C82D4F645E38F5388E4EC6F8837 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DZNEmptyDataSet; - target = F1BCD9702276377FB5B3BDB6EAF709D7 /* DZNEmptyDataSet */; - targetProxy = 6FA747ECA11691BE7229C287223E399A /* PBXContainerItemProxy */; - }; - A036241AE2FD9088F99D8A60AFCD1514 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = LSTTimer; - target = 5A2609DB0612F95A3450D2E02CA850A0 /* LSTTimer */; - targetProxy = 0CEF032AE3DE8459AABC366D5EAD57AC /* PBXContainerItemProxy */; - }; - A8CFE4713F435C9FF4AA9FA8D460F3A7 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = SDWebImage; - target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; - targetProxy = 803F302DC5C2EA85B4CBBDCD27A43286 /* PBXContainerItemProxy */; - }; - B48CA5483F83ECB025E2CF88895F910F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = HWPanModal; - target = 31DCABABCA873FBA7A92FEB47D71ED8E /* HWPanModal */; - targetProxy = DB3A9F97FFF5759DFB4E243D0C12B290 /* PBXContainerItemProxy */; - }; - BFFE20AC77F2320185030DE7FAF95A94 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DZNEmptyDataSet; - target = F1BCD9702276377FB5B3BDB6EAF709D7 /* DZNEmptyDataSet */; - targetProxy = 36EAD987437C03F015C383238BF3C1B7 /* PBXContainerItemProxy */; - }; - C11D50FE786831BFAA5FB3ED4D276FC5 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "JXCategoryView-JXCategoryView"; - target = E79E29F55A2453370D27112480FCF6A2 /* JXCategoryView-JXCategoryView */; - targetProxy = 7B014B80CCB8DDBC4906B5D8D3002093 /* PBXContainerItemProxy */; - }; - C5827E035098A10C8DC173D8807B0496 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = MBProgressHUD; - target = 82B0A41D3031FF27D78E17B0A9A46FB0 /* MBProgressHUD */; - targetProxy = 686994C0035F8FADAF6A6C4E910239B2 /* PBXContainerItemProxy */; - }; - C8CAA3DF1F34F4917BE346E82645B672 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = LSTTimer; - target = 5A2609DB0612F95A3450D2E02CA850A0 /* LSTTimer */; - targetProxy = 2635D33260052793F7319FAC3997C416 /* PBXContainerItemProxy */; - }; - C9B3D25C71255E9DFCE9A741B4BFF3BA /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = AFNetworking; - target = 0130B3724283586C0E9D2A112D4F2AA1 /* AFNetworking */; - targetProxy = EF1EC9615D03559D465834BE2D7F527F /* PBXContainerItemProxy */; - }; - CA5A82B04166A988C7834D6E5F130D24 /* PBXTargetDependency */ = { + 1D289FBB39D9730B46C50BB58E35DEDD /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "MJExtension-MJExtension"; target = B32AF3F43989CBA171BB1FB3957A4509 /* MJExtension-MJExtension */; - targetProxy = D89A563DA511A2A01EFDD5299EBCEE42 /* PBXContainerItemProxy */; + targetProxy = C30FB24BD734A3779E20934DB3D4D9C8 /* PBXContainerItemProxy */; }; - D1DA99819466A8666489AD8ABE8C04A5 /* PBXTargetDependency */ = { + 22268E07F0FDFC08F0EE9D82FF083DD6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FLAnimatedImage; - target = 4A8E8992707D01510894596DB9BCCA00 /* FLAnimatedImage */; - targetProxy = CE0514BD8BDC97E49F2A38CD065EDCFC /* PBXContainerItemProxy */; + name = MJRefresh; + target = 6868056D761E163D10FDAF8CF1C4D9B8 /* MJRefresh */; + targetProxy = B0121AEB150BEE5708989CCC69A51E6E /* PBXContainerItemProxy */; }; - E3CE26F82AC9FA20A1C696AD05CBE607 /* PBXTargetDependency */ = { + 285B72F62A1DE2E9A5E2E4D45F15828C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = MBProgressHUD; + target = 82B0A41D3031FF27D78E17B0A9A46FB0 /* MBProgressHUD */; + targetProxy = 70663BD3E4659CFF0C7EF0B56DBC9C78 /* PBXContainerItemProxy */; + }; + 28BE8BB7BD4C9C6AB673350A1570FA84 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = LookinServer; + target = 638FEAAFC575BB76BC6AC055CDDA3506 /* LookinServer */; + targetProxy = 71C3BF8323A3B89C42C815297FB1B486 /* PBXContainerItemProxy */; + }; + 3067995C8EDFEF1A63CA85F6D091AD0B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Bugly; + target = 4A68CFD979D413A619DF631BB121D98F /* Bugly */; + targetProxy = 02FAAF39D5DC83544D9E66B036B176EA /* PBXContainerItemProxy */; + }; + 3B6CA3026290428D105D8C0E16BC28C0 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = MJExtension; + target = 4D3BA58D0583DF37575CACAB3DDADC85 /* MJExtension */; + targetProxy = 492374464B2EEB82B866DBC203FB6CF9 /* PBXContainerItemProxy */; + }; + 418F39BD767B7F3EBD3B862DC77F178A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Masonry; + target = 55AF53E6C77A10ED4985E04D74A8878E /* Masonry */; + targetProxy = F24DDDDEE9FC26F48E2EA84062015B72 /* PBXContainerItemProxy */; + }; + 4B67FE65673F595E9C8A068417DA514D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "MJRefresh-MJRefresh.Privacy"; + target = B26054DF1DEA11585A231AF6D1D80D5E /* MJRefresh-MJRefresh.Privacy */; + targetProxy = A2D6E99D61C37E2D571D73F75FCFE0B4 /* PBXContainerItemProxy */; + }; + 516A94BC5E451EEB51F643D23D85E82C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = AFNetworking; + target = 0130B3724283586C0E9D2A112D4F2AA1 /* AFNetworking */; + targetProxy = C548A30C8E9A6CD52D6655421F9E80B2 /* PBXContainerItemProxy */; + }; + 7D1F8A3DE88EF01CF89EF4750D0835BC /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = LSTTimer; + target = 5A2609DB0612F95A3450D2E02CA850A0 /* LSTTimer */; + targetProxy = A3A1467D883FED3ABCAC49113A737098 /* PBXContainerItemProxy */; + }; + 840E5121538D55EE93FDAA52D266DA70 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "JXCategoryView-JXCategoryView"; + target = E79E29F55A2453370D27112480FCF6A2 /* JXCategoryView-JXCategoryView */; + targetProxy = BAEC79AAEBBDF2BA3087612B7E05FD8E /* PBXContainerItemProxy */; + }; + 88EAB6CB023EDFC5B53D2E9C22425E3A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = LSTTimer; + target = 5A2609DB0612F95A3450D2E02CA850A0 /* LSTTimer */; + targetProxy = 9D62F9D7E8B03E6D53909480991C8AEA /* PBXContainerItemProxy */; + }; + 90059A9ED4F8080EA23A70C0EB5FE47E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = LSTPopView; + target = 8B7D23DD98E41BAE91418E9E85F191D6 /* LSTPopView */; + targetProxy = D9630B9E5DE60DCADFA9106CF013D735 /* PBXContainerItemProxy */; + }; + 9403290AE1B7249ADE1ED8950739EE94 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = MJExtension; + target = 4D3BA58D0583DF37575CACAB3DDADC85 /* MJExtension */; + targetProxy = 4F853CA6F77CC1808AF5BAF0CCAB86C0 /* PBXContainerItemProxy */; + }; + ABAA3F7B666DBB2B8C2E114433F7A89D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Masonry; + target = 55AF53E6C77A10ED4985E04D74A8878E /* Masonry */; + targetProxy = F518DC696627DF925BE789501947DBC7 /* PBXContainerItemProxy */; + }; + B5024FC019BD8A112152FB369A67EAFA /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DZNEmptyDataSet; + target = F1BCD9702276377FB5B3BDB6EAF709D7 /* DZNEmptyDataSet */; + targetProxy = F02666E823668E7F6E705B610204BBE2 /* PBXContainerItemProxy */; + }; + BB84628766B4F66DF4DC34732901F40E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = JXPagingView; + target = C4E1020AF425614337737213AA26DBD5 /* JXPagingView */; + targetProxy = CEFF12BAC2DF7A2FB2A16265805F8779 /* PBXContainerItemProxy */; + }; + C0EEAAE6B64FC5B6DFCE16644E06B2CA /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = HWPanModal; + target = 31DCABABCA873FBA7A92FEB47D71ED8E /* HWPanModal */; + targetProxy = DB09B1B3C4EF493AB0763F0795077728 /* PBXContainerItemProxy */; + }; + CE8F85B0B6965EE090F12CB8B384E2A3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = JXCategoryView; target = 8BEAFAA726C1965864B79B4B441AA513 /* JXCategoryView */; - targetProxy = 648F8AAC5DF3351FEF10F1C29B3E11DF /* PBXContainerItemProxy */; + targetProxy = 0AC2AD8EAFB742F27A3D34C64E40AFC6 /* PBXContainerItemProxy */; }; - E918590C6B33D5799C74C34CD2BB5722 /* PBXTargetDependency */ = { + CFAD2B6D6431A495BD1CA533779A67B0 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "JXPagingView-JXPagerView"; + target = 16704C6B67439DA959DB043702C75A7A /* JXPagingView-JXPagerView */; + targetProxy = 4B52CF33FA25735578A3E44A4CD0C61E /* PBXContainerItemProxy */; + }; + D2B74321DDAF41730531D5172D454257 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = SDWebImage; + target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; + targetProxy = 6C532ADBCD9DB30208C8082362062867 /* PBXContainerItemProxy */; + }; + D37914A752321FFCFF48251614F3D1B6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "SDWebImage-SDWebImage"; target = 94CFBA7D633ECA58DF85C327B035E6A3 /* SDWebImage-SDWebImage */; - targetProxy = B296FC77430103DDB971813228C8D4EF /* PBXContainerItemProxy */; + targetProxy = 6B502CE29B8265D64E66B68DA64E8BAF /* PBXContainerItemProxy */; + }; + D431884F2F2835EF4FDB44219ADAA88B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = AFNetworking; + target = 0130B3724283586C0E9D2A112D4F2AA1 /* AFNetworking */; + targetProxy = 586A5F02457EAA9AECE8CFCC7EDC4A36 /* PBXContainerItemProxy */; + }; + D6DB70831F359F7235B8C97A50300DDF /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FLAnimatedImage; + target = 4A8E8992707D01510894596DB9BCCA00 /* FLAnimatedImage */; + targetProxy = FD339A2CF804D4CD1FADE6633BE4DB45 /* PBXContainerItemProxy */; + }; + E7B53C78EB3FA9751B3C978B6CB97980 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DZNEmptyDataSet; + target = F1BCD9702276377FB5B3BDB6EAF709D7 /* DZNEmptyDataSet */; + targetProxy = D031B103E98AAB5CEC13491B24F6A82E /* PBXContainerItemProxy */; + }; + F750881392263D81A5BB4E131005A44E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = LYEmptyView; + target = 4AA4C7BB776C55F3421BA137B643DD64 /* LYEmptyView */; + targetProxy = 080FDB8CF401316D3CCD779F38297489 /* PBXContainerItemProxy */; + }; + FE3D9C468529CF310D88B6383BEFBFDD /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = MBProgressHUD; + target = 82B0A41D3031FF27D78E17B0A9A46FB0 /* MBProgressHUD */; + targetProxy = 6C0462143C24DADCF6D346CFCCF1F2DF /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin XCBuildConfiguration section */ - 056C2C119D321A1782845A1C09FB3561 /* Release */ = { + 024C9A3B861ABA20A2346A6A466EB015 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 23FBEE27BD56B7C8EB3849A2221CDA65 /* JXPagingView.release.xcconfig */; + baseConfigurationReference = F68616E55705601CBE5D9437AD83B340 /* JXCategoryView.debug.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/JXPagingView"; - IBSC_MODULE = JXPagingView; - INFOPLIST_FILE = "Target Support Files/JXPagingView/ResourceBundle-JXPagerView-JXPagingView-Info.plist"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/JXCategoryView"; + IBSC_MODULE = JXCategoryView; + INFOPLIST_FILE = "Target Support Files/JXCategoryView/ResourceBundle-JXCategoryView-JXCategoryView-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + PRODUCT_NAME = JXCategoryView; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; + 083F4B327F32BA42082C93DA3678A905 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 35BFA337F4E1FDE67C773A82CCDFD6DA /* Pods-keyBoard.debug.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_MODULE_VERIFIER = NO; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + INFOPLIST_FILE = "Target Support Files/Pods-keyBoard/Pods-keyBoard-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-keyBoard/Pods-keyBoard.modulemap"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + 0BAEB6F6833BF585A150B8AD74FDBC03 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 6CE98E2FC8B92A0E98F20755C88122A4 /* LSTTimer.debug.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_MODULE_VERIFIER = NO; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_PREFIX_HEADER = "Target Support Files/LSTTimer/LSTTimer-prefix.pch"; + GENERATE_INFOPLIST_FILE = NO; + INFOPLIST_FILE = "Target Support Files/LSTTimer/LSTTimer-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; - PRODUCT_NAME = JXPagerView; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/LSTTimer/LSTTimer.modulemap"; + PRODUCT_MODULE_NAME = LSTTimer; + PRODUCT_NAME = LSTTimer; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_INSTALL_OBJC_HEADER = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + 0FF9630F4FA55B5D0AE7A67F275961B4 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = A324C5885C8FB2DC65900A0EE79A0E45 /* MJRefresh.release.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/MJRefresh"; + IBSC_MODULE = MJRefresh; + INFOPLIST_FILE = "Target Support Files/MJRefresh/ResourceBundle-MJRefresh.Privacy-MJRefresh-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_NAME = MJRefresh.Privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Release; + }; + 124345EDBC5F34B7AF5C60B83C477235 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 81F7F63875295940D9A950DB7D2EBDE7 /* SDWebImage.release.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/SDWebImage"; + IBSC_MODULE = SDWebImage; + INFOPLIST_FILE = "Target Support Files/SDWebImage/ResourceBundle-SDWebImage-SDWebImage-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + PRODUCT_NAME = SDWebImage; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; @@ -4602,7 +4849,7 @@ }; 1A69165A21A7A1CC42A38CF8ADE98215 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B8E77F018E5BE1F8C021ACB0978497F6 /* LookinServer.release.xcconfig */; + baseConfigurationReference = 438B056E0DAE53D40DB4894FF36879AF /* LookinServer.release.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -4677,9 +4924,43 @@ }; name = Release; }; + 26A0DE2A2C5EEB5AB1D9315AE03103A7 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 954035BEFF37A926FB7C25E5508CD25D /* MJExtension.debug.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/MJExtension"; + IBSC_MODULE = MJExtension; + INFOPLIST_FILE = "Target Support Files/MJExtension/ResourceBundle-MJExtension-MJExtension-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_NAME = MJExtension; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; + 2B066301F5B1D4BFFD95FEB2D9535180 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = D3FD4542A2D174FC95524833AB672073 /* JXPagingView.release.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/JXPagingView"; + IBSC_MODULE = JXPagingView; + INFOPLIST_FILE = "Target Support Files/JXPagingView/ResourceBundle-JXPagerView-JXPagingView-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + PRODUCT_NAME = JXPagerView; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Release; + }; 2D1085CA7BD144CABF012FC10C6C9120 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 93A6F66AA21D4921B2C52643DAEF998F /* Masonry.debug.xcconfig */; + baseConfigurationReference = A603B071469D044FB92322560F131681 /* Masonry.debug.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -4716,7 +4997,7 @@ }; 35044A57510DB3F4E442A9C16E980E4A /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6315771A902975A20B41342DD5234115 /* DZNEmptyDataSet.debug.xcconfig */; + baseConfigurationReference = 48E1ED2BAC3C5C1B077AAB67F3325D4E /* DZNEmptyDataSet.debug.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -4751,9 +5032,63 @@ }; name = Debug; }; - 4414117132ADFB2C5F5B1E433FC53228 /* Release */ = { + 3565929B4632DC589BC25FDD7CE29119 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7A9939FAA68717870D107439064CEFF4 /* JXCategoryView.release.xcconfig */; + baseConfigurationReference = 5048CCD1406058B50480C383463B3C39 /* LYEmptyView.debug.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_MODULE_VERIFIER = NO; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_PREFIX_HEADER = "Target Support Files/LYEmptyView/LYEmptyView-prefix.pch"; + GENERATE_INFOPLIST_FILE = NO; + INFOPLIST_FILE = "Target Support Files/LYEmptyView/LYEmptyView-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/LYEmptyView/LYEmptyView.modulemap"; + PRODUCT_MODULE_NAME = LYEmptyView; + PRODUCT_NAME = LYEmptyView; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_INSTALL_OBJC_HEADER = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + 40403C5D9FB335BD8C765DF3FE61B9E5 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 7B582290DB93C466A4DA695035B6DA2E /* MJExtension.release.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/MJExtension"; + IBSC_MODULE = MJExtension; + INFOPLIST_FILE = "Target Support Files/MJExtension/ResourceBundle-MJExtension-MJExtension-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_NAME = MJExtension; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Release; + }; + 44E4190BC3FB54D917C88AC4FC84B935 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = DF80C06856CA889ADB8807594055C7DF /* JXCategoryView.release.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/JXCategoryView"; @@ -4768,46 +5103,9 @@ }; name = Release; }; - 4949308A42E0BAB6B0B815F496FC5869 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = A76F5B96F548930505FADC6CE9430C2D /* LSTTimer.debug.xcconfig */; - buildSettings = { - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_MODULE_VERIFIER = NO; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - GCC_PREFIX_HEADER = "Target Support Files/LSTTimer/LSTTimer-prefix.pch"; - GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/LSTTimer/LSTTimer-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/LSTTimer/LSTTimer.modulemap"; - PRODUCT_MODULE_NAME = LSTTimer; - PRODUCT_NAME = LSTTimer; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_INSTALL_OBJC_HEADER = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; 49CEA33268972C89BF290FCBF8F9DFC0 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7755C313C99E29481B2A9849C31152BE /* DZNEmptyDataSet.release.xcconfig */; + baseConfigurationReference = 5CB726B6B5C83EAABA9AC89E76D45643 /* DZNEmptyDataSet.release.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -4843,26 +5141,9 @@ }; name = Release; }; - 49F55F836D397AB94087D90F9BE32CB2 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 580E2C96AABF74B3FD0C199D09864253 /* MJRefresh.release.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/MJRefresh"; - IBSC_MODULE = MJRefresh; - INFOPLIST_FILE = "Target Support Files/MJRefresh/ResourceBundle-MJRefresh.Privacy-MJRefresh-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_NAME = MJRefresh.Privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Release; - }; 51753BD6FE635BB9421BCA4C05F63C6A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 580E2C96AABF74B3FD0C199D09864253 /* MJRefresh.release.xcconfig */; + baseConfigurationReference = A324C5885C8FB2DC65900A0EE79A0E45 /* MJRefresh.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -4899,26 +5180,9 @@ }; name = Release; }; - 53552C84CADFAFE2D92EA24C81A4B387 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = D7708C3743D0A5955D7A50F4A72818A5 /* JXCategoryView.debug.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/JXCategoryView"; - IBSC_MODULE = JXCategoryView; - INFOPLIST_FILE = "Target Support Files/JXCategoryView/ResourceBundle-JXCategoryView-JXCategoryView-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - PRODUCT_NAME = JXCategoryView; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; 571314BC8A84B1CED724D0AFB1CED826 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7A9939FAA68717870D107439064CEFF4 /* JXCategoryView.release.xcconfig */; + baseConfigurationReference = DF80C06856CA889ADB8807594055C7DF /* JXCategoryView.release.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -4954,9 +5218,47 @@ }; name = Release; }; + 5FA85455B8129B5351F63A65BE01DE60 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = E00B4B67B95B1D4B1001EF45F23EF0C4 /* LYEmptyView.release.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_MODULE_VERIFIER = NO; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_PREFIX_HEADER = "Target Support Files/LYEmptyView/LYEmptyView-prefix.pch"; + GENERATE_INFOPLIST_FILE = NO; + INFOPLIST_FILE = "Target Support Files/LYEmptyView/LYEmptyView-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/LYEmptyView/LYEmptyView.modulemap"; + PRODUCT_MODULE_NAME = LYEmptyView; + PRODUCT_NAME = LYEmptyView; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_INSTALL_OBJC_HEADER = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; 614F7847ADAD2F1EEC9E48FAEC955108 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0B18274068E3388B3808CDDEB810ECFA /* MJRefresh.debug.xcconfig */; + baseConfigurationReference = 7895C7C58218B5F79C76FA1B5A55E669 /* MJRefresh.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -4994,7 +5296,7 @@ }; 618AB008538F74AAF983C04297207BB6 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E654A0C1F961A76933C784134A3D98E4 /* LookinServer.debug.xcconfig */; + baseConfigurationReference = 7376537428F41B571A3D20FF9175747F /* LookinServer.debug.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -5028,26 +5330,9 @@ }; name = Debug; }; - 62792DAC98F4B79EB2EFE6B1EBB47A34 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 0B18274068E3388B3808CDDEB810ECFA /* MJRefresh.debug.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/MJRefresh"; - IBSC_MODULE = MJRefresh; - INFOPLIST_FILE = "Target Support Files/MJRefresh/ResourceBundle-MJRefresh.Privacy-MJRefresh-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_NAME = MJRefresh.Privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; 63708B35D08B13BC40AB51386020974A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CA18A067DCACA93C5FD4591EBC943217 /* HWPanModal.release.xcconfig */; + baseConfigurationReference = CA665BB1B8AEA701C3C1A72312BFE105 /* HWPanModal.release.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -5083,26 +5368,26 @@ }; name = Release; }; - 674DB84A106C256BD3A902B6559D9288 /* Release */ = { + 64F655C37D34116A6844DB785A318D16 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E392F0E432282B33F9A7A49E5F6DFDE1 /* SDWebImage.release.xcconfig */; + baseConfigurationReference = 39D7BCC784A30383722D127896FE591E /* JXPagingView.debug.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/SDWebImage"; - IBSC_MODULE = SDWebImage; - INFOPLIST_FILE = "Target Support Files/SDWebImage/ResourceBundle-SDWebImage-SDWebImage-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - PRODUCT_NAME = SDWebImage; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/JXPagingView"; + IBSC_MODULE = JXPagingView; + INFOPLIST_FILE = "Target Support Files/JXPagingView/ResourceBundle-JXPagerView-JXPagingView-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + PRODUCT_NAME = JXPagerView; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; 67BAB382C3420CD62CB414CAA4D8A5B1 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C06B04E0ABEA41660753A9D5F58572EE /* FLAnimatedImage.release.xcconfig */; + baseConfigurationReference = D5BBA19EC013D7414BE28B29DCA7518D /* FLAnimatedImage.release.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -5138,23 +5423,6 @@ }; name = Release; }; - 751527A9729DD8ADD668EBD1AFCD16A0 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = FFC39DF551599EB371EA8F85F9A9DDCF /* MJExtension.debug.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/MJExtension"; - IBSC_MODULE = MJExtension; - INFOPLIST_FILE = "Target Support Files/MJExtension/ResourceBundle-MJExtension-MJExtension-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_NAME = MJExtension; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; 7BB5AE2225500DE9658B6277FED45BCD /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = 0D6215D1BCCE125B8DF73E38013CBBDC /* Pods-CustomKeyboard.debug.xcconfig */; @@ -5196,7 +5464,7 @@ }; 869A260EDB31DBC8F1FD513756A77A93 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 29485CC6A452A36B28B71FA9AC5A4CE4 /* JXPagingView.debug.xcconfig */; + baseConfigurationReference = 39D7BCC784A30383722D127896FE591E /* JXPagingView.debug.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -5300,7 +5568,7 @@ }; 8EAC2F834160F0D756B3363236E0940A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 23FBEE27BD56B7C8EB3849A2221CDA65 /* JXPagingView.release.xcconfig */; + baseConfigurationReference = D3FD4542A2D174FC95524833AB672073 /* JXPagingView.release.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -5339,7 +5607,7 @@ }; 8F481C1C1CF7C89F42A9EFE335DEA2BC /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B79CB4484CF793AF65C86B424D955922 /* LSTPopView.release.xcconfig */; + baseConfigurationReference = 6BD04BB450562622E215B33554778CC3 /* LSTPopView.release.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -5375,6 +5643,46 @@ }; name = Release; }; + 9B8AB2F5A292514588D0A1ECFA2D15C4 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = A6E8FF241173D596A21D4D4B7D86A810 /* Pods-keyBoard.release.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_MODULE_VERIFIER = NO; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + INFOPLIST_FILE = "Target Support Files/Pods-keyBoard/Pods-keyBoard-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-keyBoard/Pods-keyBoard.modulemap"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; 9E406C6AAF85E580207CD97B0044DEAB /* Release */ = { isa = XCBuildConfiguration; buildSettings = { @@ -5439,7 +5747,7 @@ }; 9E9FB1E032B56896F9380263D45A0F9A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 04A5DA1EDA3B5149D813E6B1D2B5ADDD /* MJExtension.release.xcconfig */; + baseConfigurationReference = 7B582290DB93C466A4DA695035B6DA2E /* MJExtension.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -5478,7 +5786,7 @@ }; 9F519E5162C0E51D10B7E999E2FD0125 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E392F0E432282B33F9A7A49E5F6DFDE1 /* SDWebImage.release.xcconfig */; + baseConfigurationReference = 81F7F63875295940D9A950DB7D2EBDE7 /* SDWebImage.release.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -5516,7 +5824,7 @@ }; A04019026E1B09655264B132BF5345A4 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D7708C3743D0A5955D7A50F4A72818A5 /* JXCategoryView.debug.xcconfig */; + baseConfigurationReference = F68616E55705601CBE5D9437AD83B340 /* JXCategoryView.debug.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -5553,7 +5861,7 @@ }; B04295D726C1883ADA40A304483D7E33 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2252400966339192E785E1533182460B /* SDWebImage.debug.xcconfig */; + baseConfigurationReference = 93B896E371962B657B3B85C108092214 /* SDWebImage.debug.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -5588,65 +5896,9 @@ }; name = Debug; }; - B0474165CD8F05374CFDCCDA05985E9E /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 2252400966339192E785E1533182460B /* SDWebImage.debug.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/SDWebImage"; - IBSC_MODULE = SDWebImage; - INFOPLIST_FILE = "Target Support Files/SDWebImage/ResourceBundle-SDWebImage-SDWebImage-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - PRODUCT_NAME = SDWebImage; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; - B1990C10B74E98AD1A318202655814D4 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 35BFA337F4E1FDE67C773A82CCDFD6DA /* Pods-keyBoard.debug.xcconfig */; - buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_MODULE_VERIFIER = NO; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - INFOPLIST_FILE = "Target Support Files/Pods-keyBoard/Pods-keyBoard-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-keyBoard/Pods-keyBoard.modulemap"; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; B26FBB655ABB114E4C0D589843814D6C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 956C8FF42F553F12124DED23E19FE31D /* Bugly.release.xcconfig */; + baseConfigurationReference = 0AD4477B34BC6EAF1A362183974F34DC /* Bugly.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -5662,26 +5914,9 @@ }; name = Release; }; - B413A840D435DD0DE4EA09E77C5232AA /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 29485CC6A452A36B28B71FA9AC5A4CE4 /* JXPagingView.debug.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/JXPagingView"; - IBSC_MODULE = JXPagingView; - INFOPLIST_FILE = "Target Support Files/JXPagingView/ResourceBundle-JXPagerView-JXPagingView-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - PRODUCT_NAME = JXPagerView; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; B429B9740B8EB5894C5BF953D9590A46 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 36A28302FD0C37C0A56E64EA97977A8E /* FLAnimatedImage.debug.xcconfig */; + baseConfigurationReference = 2CB55990BE7673BB5930FB77BB2A2C33 /* FLAnimatedImage.debug.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -5718,7 +5953,7 @@ }; BCD70A0BB22D0C72BAF7207A7D4F44BD /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 648C72C63334BCDFD466058863FCDAC9 /* MBProgressHUD.debug.xcconfig */; + baseConfigurationReference = EC4CFDD75B85C12B1C1393BEA03A165C /* MBProgressHUD.debug.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -5753,9 +5988,47 @@ }; name = Debug; }; + BD1821022C3B758BEA9CB5616F987BC7 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 73EBDE260791BF4440027F8601391D8B /* LSTTimer.release.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_MODULE_VERIFIER = NO; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_PREFIX_HEADER = "Target Support Files/LSTTimer/LSTTimer-prefix.pch"; + GENERATE_INFOPLIST_FILE = NO; + INFOPLIST_FILE = "Target Support Files/LSTTimer/LSTTimer-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/LSTTimer/LSTTimer.modulemap"; + PRODUCT_MODULE_NAME = LSTTimer; + PRODUCT_NAME = LSTTimer; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_INSTALL_OBJC_HEADER = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; BDD02D9903A09C2C9D362C7536416CFB /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C6B15D5B29642260AB882050F51A8AE5 /* HWPanModal.debug.xcconfig */; + baseConfigurationReference = 4201C2CD51C00E5AC0EC45DC41B32695 /* HWPanModal.debug.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -5792,7 +6065,7 @@ }; BE0CDEB7BE0A402663AFCC2111742430 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 035807D7A9181D8E0DF6FAF1E2D6B33C /* MBProgressHUD.release.xcconfig */; + baseConfigurationReference = AC0C26DBF6F4D6A9D8C1BF55FE14DABA /* MBProgressHUD.release.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -5828,47 +6101,9 @@ }; name = Release; }; - C9E0A2B5A2A51C141248D224C0567EBC /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 294754F45B0BF3519369080425B4F2FD /* LSTTimer.release.xcconfig */; - buildSettings = { - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_MODULE_VERIFIER = NO; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - GCC_PREFIX_HEADER = "Target Support Files/LSTTimer/LSTTimer-prefix.pch"; - GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/LSTTimer/LSTTimer-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/LSTTimer/LSTTimer.modulemap"; - PRODUCT_MODULE_NAME = LSTTimer; - PRODUCT_NAME = LSTTimer; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_INSTALL_OBJC_HEADER = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; CBAFED52B4B51F600FAF2141BA449F2E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DDA8FA3EA27827F124700F1B6176E4CE /* Bugly.debug.xcconfig */; + baseConfigurationReference = 3DF983F1377AD739C3DF33AE51632FCF /* Bugly.debug.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -5885,7 +6120,7 @@ }; CEE7FEC0A1B23DE7053203A448EEB294 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8A6F594F279129456C02C7701DE5EDC3 /* AFNetworking.debug.xcconfig */; + baseConfigurationReference = 88D479C435BAEE51B8F3BBF87F8D3CC9 /* AFNetworking.debug.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -5920,66 +6155,9 @@ }; name = Debug; }; - CFF1A479BBAF93B993D005A4C4B2808E /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 04A5DA1EDA3B5149D813E6B1D2B5ADDD /* MJExtension.release.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/MJExtension"; - IBSC_MODULE = MJExtension; - INFOPLIST_FILE = "Target Support Files/MJExtension/ResourceBundle-MJExtension-MJExtension-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_NAME = MJExtension; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Release; - }; - D02A5C00C024FCD02DABC63A4DA783E8 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = A6E8FF241173D596A21D4D4B7D86A810 /* Pods-keyBoard.release.xcconfig */; - buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_MODULE_VERIFIER = NO; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - INFOPLIST_FILE = "Target Support Files/Pods-keyBoard/Pods-keyBoard-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-keyBoard/Pods-keyBoard.modulemap"; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; D0AB0AEF4014B926FCD853D3AE0A370A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0B0EEEE5F23AC446F4729522F4FC7A73 /* Masonry.release.xcconfig */; + baseConfigurationReference = 4A4AE7A504C340AE8EE98F70C318D63C /* Masonry.release.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -6015,9 +6193,43 @@ }; name = Release; }; + D82E0E1859E0296A83015DC35BE95E81 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 7895C7C58218B5F79C76FA1B5A55E669 /* MJRefresh.debug.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/MJRefresh"; + IBSC_MODULE = MJRefresh; + INFOPLIST_FILE = "Target Support Files/MJRefresh/ResourceBundle-MJRefresh.Privacy-MJRefresh-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_NAME = MJRefresh.Privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; + D9D1855EA0BF7C903F0263AEDAADE1E7 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 93B896E371962B657B3B85C108092214 /* SDWebImage.debug.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/SDWebImage"; + IBSC_MODULE = SDWebImage; + INFOPLIST_FILE = "Target Support Files/SDWebImage/ResourceBundle-SDWebImage-SDWebImage-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + PRODUCT_NAME = SDWebImage; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; DA533AA9B577872DAFB44EF2CF26C49A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A697ED78520252C2C8CA71D13BA57F79 /* AFNetworking.release.xcconfig */; + baseConfigurationReference = 57B2E23309380B0E15F50C277205AC0D /* AFNetworking.release.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -6055,7 +6267,7 @@ }; EC66105EE15F9DC9B6F20F58FB67957D /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FFC39DF551599EB371EA8F85F9A9DDCF /* MJExtension.debug.xcconfig */; + baseConfigurationReference = 954035BEFF37A926FB7C25E5508CD25D /* MJExtension.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -6093,7 +6305,7 @@ }; F48613BDFA945AC2A18363244F54E67C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D0317376A8F5B09CBBAC757A9410CF00 /* LSTPopView.debug.xcconfig */; + baseConfigurationReference = 163DD1C8E32A767AC162D451FB47DECB /* LSTPopView.debug.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -6131,24 +6343,6 @@ /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ - 0C35983ABF9DEA95C8B29A7F8482E5AE /* Build configuration list for PBXNativeTarget "Pods-keyBoard" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - B1990C10B74E98AD1A318202655814D4 /* Debug */, - D02A5C00C024FCD02DABC63A4DA783E8 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 15624921AFB223858478F40D5FC30D8A /* Build configuration list for PBXNativeTarget "LSTTimer" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 4949308A42E0BAB6B0B815F496FC5869 /* Debug */, - C9E0A2B5A2A51C141248D224C0567EBC /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; 1CF7CA11A791652D6975B2EDE2FC6719 /* Build configuration list for PBXNativeTarget "DZNEmptyDataSet" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -6176,6 +6370,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 404863FC7F43060AAE7C6FA66F917915 /* Build configuration list for PBXNativeTarget "JXPagingView-JXPagerView" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 64F655C37D34116A6844DB785A318D16 /* Debug */, + 2B066301F5B1D4BFFD95FEB2D9535180 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -6185,6 +6388,24 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 48C48CA74E925091D509EAE661A5D87D /* Build configuration list for PBXNativeTarget "Pods-keyBoard" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 083F4B327F32BA42082C93DA3678A905 /* Debug */, + 9B8AB2F5A292514588D0A1ECFA2D15C4 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 511C0840C50AF349D9A51E73BA56D28D /* Build configuration list for PBXNativeTarget "LYEmptyView" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 3565929B4632DC589BC25FDD7CE29119 /* Debug */, + 5FA85455B8129B5351F63A65BE01DE60 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 547AC2DDC5CDD1783E0827EEA7D453E1 /* Build configuration list for PBXNativeTarget "MJExtension" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -6194,15 +6415,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 6245C5FFE40FC7DFDD2CA00871D0EA40 /* Build configuration list for PBXNativeTarget "MJRefresh-MJRefresh.Privacy" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 62792DAC98F4B79EB2EFE6B1EBB47A34 /* Debug */, - 49F55F836D397AB94087D90F9BE32CB2 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; 773A22765B846DE10CADF4D2E77FE841 /* Build configuration list for PBXNativeTarget "JXPagingView" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -6230,6 +6442,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 931B4A41B3614242C4D8813983B29AE7 /* Build configuration list for PBXNativeTarget "JXCategoryView-JXCategoryView" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 024C9A3B861ABA20A2346A6A466EB015 /* Debug */, + 44E4190BC3FB54D917C88AC4FC84B935 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 945C0F2B41CBADE68A142120AE9A4AF3 /* Build configuration list for PBXNativeTarget "MBProgressHUD" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -6239,6 +6460,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 97AAB185F08FD001A3F3B9102E506695 /* Build configuration list for PBXNativeTarget "MJExtension-MJExtension" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 26A0DE2A2C5EEB5AB1D9315AE03103A7 /* Debug */, + 40403C5D9FB335BD8C765DF3FE61B9E5 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 9CC7AA793D9397C15E010F8242EE1046 /* Build configuration list for PBXAggregateTarget "Bugly" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -6266,20 +6496,20 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - B662A4FAD3B72B94AAE82FA4EF54A8A1 /* Build configuration list for PBXNativeTarget "MJExtension-MJExtension" */ = { + BA6D8ED14C9A066F526869BBA7BFA2F0 /* Build configuration list for PBXNativeTarget "MJRefresh-MJRefresh.Privacy" */ = { isa = XCConfigurationList; buildConfigurations = ( - 751527A9729DD8ADD668EBD1AFCD16A0 /* Debug */, - CFF1A479BBAF93B993D005A4C4B2808E /* Release */, + D82E0E1859E0296A83015DC35BE95E81 /* Debug */, + 0FF9630F4FA55B5D0AE7A67F275961B4 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - D0D337F808B517A6F9A6D14C71CB5B25 /* Build configuration list for PBXNativeTarget "SDWebImage-SDWebImage" */ = { + C43E72A521778768A4BFF773BB3A3E73 /* Build configuration list for PBXNativeTarget "LSTTimer" */ = { isa = XCConfigurationList; buildConfigurations = ( - B0474165CD8F05374CFDCCDA05985E9E /* Debug */, - 674DB84A106C256BD3A902B6559D9288 /* Release */, + 0BAEB6F6833BF585A150B8AD74FDBC03 /* Debug */, + BD1821022C3B758BEA9CB5616F987BC7 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -6302,15 +6532,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - DDFDCCDD059A0AA2C5DEAA3588DE41A7 /* Build configuration list for PBXNativeTarget "JXPagingView-JXPagerView" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - B413A840D435DD0DE4EA09E77C5232AA /* Debug */, - 056C2C119D321A1782845A1C09FB3561 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; E7624967EDC883D80ED3DA81C495736B /* Build configuration list for PBXNativeTarget "LookinServer" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -6329,11 +6550,11 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - F688458307583BA2FC79B1282B37D611 /* Build configuration list for PBXNativeTarget "JXCategoryView-JXCategoryView" */ = { + FB913463BEC55EE719AD5BC32990DB46 /* Build configuration list for PBXNativeTarget "SDWebImage-SDWebImage" */ = { isa = XCConfigurationList; buildConfigurations = ( - 53552C84CADFAFE2D92EA24C81A4B387 /* Debug */, - 4414117132ADFB2C5F5B1E433FC53228 /* Release */, + D9D1855EA0BF7C903F0263AEDAADE1E7 /* Debug */, + 124345EDBC5F34B7AF5C60B83C477235 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; diff --git a/Pods/Pods.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/LYEmptyView.xcscheme b/Pods/Pods.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/LYEmptyView.xcscheme new file mode 100644 index 0000000..0994b8d --- /dev/null +++ b/Pods/Pods.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/LYEmptyView.xcscheme @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Pods/Target Support Files/LYEmptyView/LYEmptyView-Info.plist b/Pods/Target Support Files/LYEmptyView/LYEmptyView-Info.plist new file mode 100644 index 0000000..77bb479 --- /dev/null +++ b/Pods/Target Support Files/LYEmptyView/LYEmptyView-Info.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + ${PODS_DEVELOPMENT_LANGUAGE} + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIdentifier + ${PRODUCT_BUNDLE_IDENTIFIER} + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.3.1 + CFBundleSignature + ???? + CFBundleVersion + ${CURRENT_PROJECT_VERSION} + NSPrincipalClass + + + diff --git a/Pods/Target Support Files/LYEmptyView/LYEmptyView-dummy.m b/Pods/Target Support Files/LYEmptyView/LYEmptyView-dummy.m new file mode 100644 index 0000000..5a0e24f --- /dev/null +++ b/Pods/Target Support Files/LYEmptyView/LYEmptyView-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_LYEmptyView : NSObject +@end +@implementation PodsDummy_LYEmptyView +@end diff --git a/Pods/Target Support Files/LYEmptyView/LYEmptyView-prefix.pch b/Pods/Target Support Files/LYEmptyView/LYEmptyView-prefix.pch new file mode 100644 index 0000000..beb2a24 --- /dev/null +++ b/Pods/Target Support Files/LYEmptyView/LYEmptyView-prefix.pch @@ -0,0 +1,12 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + diff --git a/Pods/Target Support Files/LYEmptyView/LYEmptyView-umbrella.h b/Pods/Target Support Files/LYEmptyView/LYEmptyView-umbrella.h new file mode 100644 index 0000000..13a8301 --- /dev/null +++ b/Pods/Target Support Files/LYEmptyView/LYEmptyView-umbrella.h @@ -0,0 +1,21 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + +#import "LYEmptyBaseView.h" +#import "LYEmptyView.h" +#import "LYEmptyViewHeader.h" +#import "UIView+Empty.h" +#import "UIView+LYExtension.h" + +FOUNDATION_EXPORT double LYEmptyViewVersionNumber; +FOUNDATION_EXPORT const unsigned char LYEmptyViewVersionString[]; + diff --git a/Pods/Target Support Files/LYEmptyView/LYEmptyView.debug.xcconfig b/Pods/Target Support Files/LYEmptyView/LYEmptyView.debug.xcconfig new file mode 100644 index 0000000..83c7092 --- /dev/null +++ b/Pods/Target Support Files/LYEmptyView/LYEmptyView.debug.xcconfig @@ -0,0 +1,12 @@ +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/LYEmptyView +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE} +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/LYEmptyView +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/Pods/Target Support Files/LYEmptyView/LYEmptyView.modulemap b/Pods/Target Support Files/LYEmptyView/LYEmptyView.modulemap new file mode 100644 index 0000000..7bc3100 --- /dev/null +++ b/Pods/Target Support Files/LYEmptyView/LYEmptyView.modulemap @@ -0,0 +1,6 @@ +framework module LYEmptyView { + umbrella header "LYEmptyView-umbrella.h" + + export * + module * { export * } +} diff --git a/Pods/Target Support Files/LYEmptyView/LYEmptyView.release.xcconfig b/Pods/Target Support Files/LYEmptyView/LYEmptyView.release.xcconfig new file mode 100644 index 0000000..83c7092 --- /dev/null +++ b/Pods/Target Support Files/LYEmptyView/LYEmptyView.release.xcconfig @@ -0,0 +1,12 @@ +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/LYEmptyView +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE} +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/LYEmptyView +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/Pods/Target Support Files/Pods-keyBoard/Pods-keyBoard-acknowledgements.markdown b/Pods/Target Support Files/Pods-keyBoard/Pods-keyBoard-acknowledgements.markdown index 4a433e6..811fe3a 100644 --- a/Pods/Target Support Files/Pods-keyBoard/Pods-keyBoard-acknowledgements.markdown +++ b/Pods/Target Support Files/Pods-keyBoard/Pods-keyBoard-acknowledgements.markdown @@ -183,6 +183,31 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +## LYEmptyView + +MIT License + +Copyright (c) 2017 yang + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + ## LookinServer MIT License diff --git a/Pods/Target Support Files/Pods-keyBoard/Pods-keyBoard-acknowledgements.plist b/Pods/Target Support Files/Pods-keyBoard/Pods-keyBoard-acknowledgements.plist index 446a6f9..6b69ac6 100644 --- a/Pods/Target Support Files/Pods-keyBoard/Pods-keyBoard-acknowledgements.plist +++ b/Pods/Target Support Files/Pods-keyBoard/Pods-keyBoard-acknowledgements.plist @@ -246,6 +246,37 @@ THE SOFTWARE. FooterText MIT License +Copyright (c) 2017 yang + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + License + MIT + Title + LYEmptyView + Type + PSGroupSpecifier + + + FooterText + MIT License + Copyright (c) [2023] [LI KAI] Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/Pods/Target Support Files/Pods-keyBoard/Pods-keyBoard-frameworks-Debug-input-files.xcfilelist b/Pods/Target Support Files/Pods-keyBoard/Pods-keyBoard-frameworks-Debug-input-files.xcfilelist index 466ee5a..34d8e4e 100644 --- a/Pods/Target Support Files/Pods-keyBoard/Pods-keyBoard-frameworks-Debug-input-files.xcfilelist +++ b/Pods/Target Support Files/Pods-keyBoard/Pods-keyBoard-frameworks-Debug-input-files.xcfilelist @@ -7,6 +7,7 @@ ${BUILT_PRODUCTS_DIR}/JXCategoryView/JXCategoryView.framework ${BUILT_PRODUCTS_DIR}/JXPagingView/JXPagingView.framework ${BUILT_PRODUCTS_DIR}/LSTPopView/LSTPopView.framework ${BUILT_PRODUCTS_DIR}/LSTTimer/LSTTimer.framework +${BUILT_PRODUCTS_DIR}/LYEmptyView/LYEmptyView.framework ${BUILT_PRODUCTS_DIR}/LookinServer/LookinServer.framework ${BUILT_PRODUCTS_DIR}/MBProgressHUD/MBProgressHUD.framework ${BUILT_PRODUCTS_DIR}/MJExtension/MJExtension.framework diff --git a/Pods/Target Support Files/Pods-keyBoard/Pods-keyBoard-frameworks-Debug-output-files.xcfilelist b/Pods/Target Support Files/Pods-keyBoard/Pods-keyBoard-frameworks-Debug-output-files.xcfilelist index 41036e9..9d68623 100644 --- a/Pods/Target Support Files/Pods-keyBoard/Pods-keyBoard-frameworks-Debug-output-files.xcfilelist +++ b/Pods/Target Support Files/Pods-keyBoard/Pods-keyBoard-frameworks-Debug-output-files.xcfilelist @@ -6,6 +6,7 @@ ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/JXCategoryView.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/JXPagingView.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/LSTPopView.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/LSTTimer.framework +${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/LYEmptyView.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/LookinServer.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/MBProgressHUD.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/MJExtension.framework diff --git a/Pods/Target Support Files/Pods-keyBoard/Pods-keyBoard-frameworks-Release-input-files.xcfilelist b/Pods/Target Support Files/Pods-keyBoard/Pods-keyBoard-frameworks-Release-input-files.xcfilelist index a7b1474..b977d53 100644 --- a/Pods/Target Support Files/Pods-keyBoard/Pods-keyBoard-frameworks-Release-input-files.xcfilelist +++ b/Pods/Target Support Files/Pods-keyBoard/Pods-keyBoard-frameworks-Release-input-files.xcfilelist @@ -7,6 +7,7 @@ ${BUILT_PRODUCTS_DIR}/JXCategoryView/JXCategoryView.framework ${BUILT_PRODUCTS_DIR}/JXPagingView/JXPagingView.framework ${BUILT_PRODUCTS_DIR}/LSTPopView/LSTPopView.framework ${BUILT_PRODUCTS_DIR}/LSTTimer/LSTTimer.framework +${BUILT_PRODUCTS_DIR}/LYEmptyView/LYEmptyView.framework ${BUILT_PRODUCTS_DIR}/MBProgressHUD/MBProgressHUD.framework ${BUILT_PRODUCTS_DIR}/MJExtension/MJExtension.framework ${BUILT_PRODUCTS_DIR}/MJRefresh/MJRefresh.framework diff --git a/Pods/Target Support Files/Pods-keyBoard/Pods-keyBoard-frameworks-Release-output-files.xcfilelist b/Pods/Target Support Files/Pods-keyBoard/Pods-keyBoard-frameworks-Release-output-files.xcfilelist index 6400ccd..f4eb712 100644 --- a/Pods/Target Support Files/Pods-keyBoard/Pods-keyBoard-frameworks-Release-output-files.xcfilelist +++ b/Pods/Target Support Files/Pods-keyBoard/Pods-keyBoard-frameworks-Release-output-files.xcfilelist @@ -6,6 +6,7 @@ ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/JXCategoryView.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/JXPagingView.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/LSTPopView.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/LSTTimer.framework +${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/LYEmptyView.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/MBProgressHUD.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/MJExtension.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/MJRefresh.framework diff --git a/Pods/Target Support Files/Pods-keyBoard/Pods-keyBoard-frameworks.sh b/Pods/Target Support Files/Pods-keyBoard/Pods-keyBoard-frameworks.sh index b51cb50..66535f4 100755 --- a/Pods/Target Support Files/Pods-keyBoard/Pods-keyBoard-frameworks.sh +++ b/Pods/Target Support Files/Pods-keyBoard/Pods-keyBoard-frameworks.sh @@ -184,6 +184,7 @@ if [[ "$CONFIGURATION" == "Debug" ]]; then install_framework "${BUILT_PRODUCTS_DIR}/JXPagingView/JXPagingView.framework" install_framework "${BUILT_PRODUCTS_DIR}/LSTPopView/LSTPopView.framework" install_framework "${BUILT_PRODUCTS_DIR}/LSTTimer/LSTTimer.framework" + install_framework "${BUILT_PRODUCTS_DIR}/LYEmptyView/LYEmptyView.framework" install_framework "${BUILT_PRODUCTS_DIR}/LookinServer/LookinServer.framework" install_framework "${BUILT_PRODUCTS_DIR}/MBProgressHUD/MBProgressHUD.framework" install_framework "${BUILT_PRODUCTS_DIR}/MJExtension/MJExtension.framework" @@ -200,6 +201,7 @@ if [[ "$CONFIGURATION" == "Release" ]]; then install_framework "${BUILT_PRODUCTS_DIR}/JXPagingView/JXPagingView.framework" install_framework "${BUILT_PRODUCTS_DIR}/LSTPopView/LSTPopView.framework" install_framework "${BUILT_PRODUCTS_DIR}/LSTTimer/LSTTimer.framework" + install_framework "${BUILT_PRODUCTS_DIR}/LYEmptyView/LYEmptyView.framework" install_framework "${BUILT_PRODUCTS_DIR}/MBProgressHUD/MBProgressHUD.framework" install_framework "${BUILT_PRODUCTS_DIR}/MJExtension/MJExtension.framework" install_framework "${BUILT_PRODUCTS_DIR}/MJRefresh/MJRefresh.framework" diff --git a/Pods/Target Support Files/Pods-keyBoard/Pods-keyBoard.debug.xcconfig b/Pods/Target Support Files/Pods-keyBoard/Pods-keyBoard.debug.xcconfig index 490ea4d..96285cf 100644 --- a/Pods/Target Support Files/Pods-keyBoard/Pods-keyBoard.debug.xcconfig +++ b/Pods/Target Support Files/Pods-keyBoard/Pods-keyBoard.debug.xcconfig @@ -1,10 +1,10 @@ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO -FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking" "${PODS_CONFIGURATION_BUILD_DIR}/DZNEmptyDataSet" "${PODS_CONFIGURATION_BUILD_DIR}/FLAnimatedImage" "${PODS_CONFIGURATION_BUILD_DIR}/HWPanModal" "${PODS_CONFIGURATION_BUILD_DIR}/JXCategoryView" "${PODS_CONFIGURATION_BUILD_DIR}/JXPagingView" "${PODS_CONFIGURATION_BUILD_DIR}/LSTPopView" "${PODS_CONFIGURATION_BUILD_DIR}/LSTTimer" "${PODS_CONFIGURATION_BUILD_DIR}/LookinServer" "${PODS_CONFIGURATION_BUILD_DIR}/MBProgressHUD" "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension" "${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh" "${PODS_CONFIGURATION_BUILD_DIR}/Masonry" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking" "${PODS_CONFIGURATION_BUILD_DIR}/DZNEmptyDataSet" "${PODS_CONFIGURATION_BUILD_DIR}/FLAnimatedImage" "${PODS_CONFIGURATION_BUILD_DIR}/HWPanModal" "${PODS_CONFIGURATION_BUILD_DIR}/JXCategoryView" "${PODS_CONFIGURATION_BUILD_DIR}/JXPagingView" "${PODS_CONFIGURATION_BUILD_DIR}/LSTPopView" "${PODS_CONFIGURATION_BUILD_DIR}/LSTTimer" "${PODS_CONFIGURATION_BUILD_DIR}/LYEmptyView" "${PODS_CONFIGURATION_BUILD_DIR}/LookinServer" "${PODS_CONFIGURATION_BUILD_DIR}/MBProgressHUD" "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension" "${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh" "${PODS_CONFIGURATION_BUILD_DIR}/Masonry" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking/AFNetworking.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/DZNEmptyDataSet/DZNEmptyDataSet.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FLAnimatedImage/FLAnimatedImage.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/HWPanModal/HWPanModal.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/JXCategoryView/JXCategoryView.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/JXPagingView/JXPagingView.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/LSTPopView/LSTPopView.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/LSTTimer/LSTTimer.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/LookinServer/LookinServer.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MBProgressHUD/MBProgressHUD.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension/MJExtension.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh/MJRefresh.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Masonry/Masonry.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage/SDWebImage.framework/Headers" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking/AFNetworking.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/DZNEmptyDataSet/DZNEmptyDataSet.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FLAnimatedImage/FLAnimatedImage.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/HWPanModal/HWPanModal.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/JXCategoryView/JXCategoryView.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/JXPagingView/JXPagingView.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/LSTPopView/LSTPopView.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/LSTTimer/LSTTimer.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/LYEmptyView/LYEmptyView.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/LookinServer/LookinServer.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MBProgressHUD/MBProgressHUD.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension/MJExtension.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh/MJRefresh.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Masonry/Masonry.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage/SDWebImage.framework/Headers" LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' -OTHER_LDFLAGS = $(inherited) -framework "AFNetworking" -framework "CoreGraphics" -framework "DZNEmptyDataSet" -framework "FLAnimatedImage" -framework "Foundation" -framework "HWPanModal" -framework "ImageIO" -framework "JXCategoryView" -framework "JXPagingView" -framework "LSTPopView" -framework "LSTTimer" -framework "LookinServer" -framework "MBProgressHUD" -framework "MJExtension" -framework "MJRefresh" -framework "Masonry" -framework "QuartzCore" -framework "SDWebImage" -framework "UIKit" -OTHER_MODULE_VERIFIER_FLAGS = $(inherited) "-F${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking" "-F${PODS_CONFIGURATION_BUILD_DIR}/DZNEmptyDataSet" "-F${PODS_CONFIGURATION_BUILD_DIR}/FLAnimatedImage" "-F${PODS_CONFIGURATION_BUILD_DIR}/HWPanModal" "-F${PODS_CONFIGURATION_BUILD_DIR}/JXCategoryView" "-F${PODS_CONFIGURATION_BUILD_DIR}/JXPagingView" "-F${PODS_CONFIGURATION_BUILD_DIR}/LSTPopView" "-F${PODS_CONFIGURATION_BUILD_DIR}/LSTTimer" "-F${PODS_CONFIGURATION_BUILD_DIR}/LookinServer" "-F${PODS_CONFIGURATION_BUILD_DIR}/MBProgressHUD" "-F${PODS_CONFIGURATION_BUILD_DIR}/MJExtension" "-F${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh" "-F${PODS_CONFIGURATION_BUILD_DIR}/Masonry" "-F${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" +OTHER_LDFLAGS = $(inherited) -framework "AFNetworking" -framework "CoreGraphics" -framework "DZNEmptyDataSet" -framework "FLAnimatedImage" -framework "Foundation" -framework "HWPanModal" -framework "ImageIO" -framework "JXCategoryView" -framework "JXPagingView" -framework "LSTPopView" -framework "LSTTimer" -framework "LYEmptyView" -framework "LookinServer" -framework "MBProgressHUD" -framework "MJExtension" -framework "MJRefresh" -framework "Masonry" -framework "QuartzCore" -framework "SDWebImage" -framework "UIKit" +OTHER_MODULE_VERIFIER_FLAGS = $(inherited) "-F${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking" "-F${PODS_CONFIGURATION_BUILD_DIR}/DZNEmptyDataSet" "-F${PODS_CONFIGURATION_BUILD_DIR}/FLAnimatedImage" "-F${PODS_CONFIGURATION_BUILD_DIR}/HWPanModal" "-F${PODS_CONFIGURATION_BUILD_DIR}/JXCategoryView" "-F${PODS_CONFIGURATION_BUILD_DIR}/JXPagingView" "-F${PODS_CONFIGURATION_BUILD_DIR}/LSTPopView" "-F${PODS_CONFIGURATION_BUILD_DIR}/LSTTimer" "-F${PODS_CONFIGURATION_BUILD_DIR}/LYEmptyView" "-F${PODS_CONFIGURATION_BUILD_DIR}/LookinServer" "-F${PODS_CONFIGURATION_BUILD_DIR}/MBProgressHUD" "-F${PODS_CONFIGURATION_BUILD_DIR}/MJExtension" "-F${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh" "-F${PODS_CONFIGURATION_BUILD_DIR}/Masonry" "-F${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) PODS_PODFILE_DIR_PATH = ${SRCROOT}/. diff --git a/Pods/Target Support Files/Pods-keyBoard/Pods-keyBoard.release.xcconfig b/Pods/Target Support Files/Pods-keyBoard/Pods-keyBoard.release.xcconfig index 1e97dd5..c13eb51 100644 --- a/Pods/Target Support Files/Pods-keyBoard/Pods-keyBoard.release.xcconfig +++ b/Pods/Target Support Files/Pods-keyBoard/Pods-keyBoard.release.xcconfig @@ -1,10 +1,10 @@ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO -FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking" "${PODS_CONFIGURATION_BUILD_DIR}/DZNEmptyDataSet" "${PODS_CONFIGURATION_BUILD_DIR}/FLAnimatedImage" "${PODS_CONFIGURATION_BUILD_DIR}/HWPanModal" "${PODS_CONFIGURATION_BUILD_DIR}/JXCategoryView" "${PODS_CONFIGURATION_BUILD_DIR}/JXPagingView" "${PODS_CONFIGURATION_BUILD_DIR}/LSTPopView" "${PODS_CONFIGURATION_BUILD_DIR}/LSTTimer" "${PODS_CONFIGURATION_BUILD_DIR}/MBProgressHUD" "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension" "${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh" "${PODS_CONFIGURATION_BUILD_DIR}/Masonry" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_ROOT}/Bugly" +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking" "${PODS_CONFIGURATION_BUILD_DIR}/DZNEmptyDataSet" "${PODS_CONFIGURATION_BUILD_DIR}/FLAnimatedImage" "${PODS_CONFIGURATION_BUILD_DIR}/HWPanModal" "${PODS_CONFIGURATION_BUILD_DIR}/JXCategoryView" "${PODS_CONFIGURATION_BUILD_DIR}/JXPagingView" "${PODS_CONFIGURATION_BUILD_DIR}/LSTPopView" "${PODS_CONFIGURATION_BUILD_DIR}/LSTTimer" "${PODS_CONFIGURATION_BUILD_DIR}/LYEmptyView" "${PODS_CONFIGURATION_BUILD_DIR}/MBProgressHUD" "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension" "${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh" "${PODS_CONFIGURATION_BUILD_DIR}/Masonry" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_ROOT}/Bugly" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking/AFNetworking.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/DZNEmptyDataSet/DZNEmptyDataSet.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FLAnimatedImage/FLAnimatedImage.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/HWPanModal/HWPanModal.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/JXCategoryView/JXCategoryView.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/JXPagingView/JXPagingView.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/LSTPopView/LSTPopView.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/LSTTimer/LSTTimer.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MBProgressHUD/MBProgressHUD.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension/MJExtension.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh/MJRefresh.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Masonry/Masonry.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage/SDWebImage.framework/Headers" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking/AFNetworking.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/DZNEmptyDataSet/DZNEmptyDataSet.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FLAnimatedImage/FLAnimatedImage.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/HWPanModal/HWPanModal.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/JXCategoryView/JXCategoryView.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/JXPagingView/JXPagingView.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/LSTPopView/LSTPopView.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/LSTTimer/LSTTimer.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/LYEmptyView/LYEmptyView.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MBProgressHUD/MBProgressHUD.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension/MJExtension.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh/MJRefresh.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Masonry/Masonry.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage/SDWebImage.framework/Headers" LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' -OTHER_LDFLAGS = $(inherited) -ObjC -l"c++" -l"z" -framework "AFNetworking" -framework "Bugly" -framework "CoreGraphics" -framework "DZNEmptyDataSet" -framework "FLAnimatedImage" -framework "Foundation" -framework "HWPanModal" -framework "ImageIO" -framework "JXCategoryView" -framework "JXPagingView" -framework "LSTPopView" -framework "LSTTimer" -framework "MBProgressHUD" -framework "MJExtension" -framework "MJRefresh" -framework "Masonry" -framework "QuartzCore" -framework "SDWebImage" -framework "Security" -framework "SystemConfiguration" -framework "UIKit" -OTHER_MODULE_VERIFIER_FLAGS = $(inherited) "-F${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking" "-F${PODS_CONFIGURATION_BUILD_DIR}/Bugly" "-F${PODS_CONFIGURATION_BUILD_DIR}/DZNEmptyDataSet" "-F${PODS_CONFIGURATION_BUILD_DIR}/FLAnimatedImage" "-F${PODS_CONFIGURATION_BUILD_DIR}/HWPanModal" "-F${PODS_CONFIGURATION_BUILD_DIR}/JXCategoryView" "-F${PODS_CONFIGURATION_BUILD_DIR}/JXPagingView" "-F${PODS_CONFIGURATION_BUILD_DIR}/LSTPopView" "-F${PODS_CONFIGURATION_BUILD_DIR}/LSTTimer" "-F${PODS_CONFIGURATION_BUILD_DIR}/MBProgressHUD" "-F${PODS_CONFIGURATION_BUILD_DIR}/MJExtension" "-F${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh" "-F${PODS_CONFIGURATION_BUILD_DIR}/Masonry" "-F${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" +OTHER_LDFLAGS = $(inherited) -ObjC -l"c++" -l"z" -framework "AFNetworking" -framework "Bugly" -framework "CoreGraphics" -framework "DZNEmptyDataSet" -framework "FLAnimatedImage" -framework "Foundation" -framework "HWPanModal" -framework "ImageIO" -framework "JXCategoryView" -framework "JXPagingView" -framework "LSTPopView" -framework "LSTTimer" -framework "LYEmptyView" -framework "MBProgressHUD" -framework "MJExtension" -framework "MJRefresh" -framework "Masonry" -framework "QuartzCore" -framework "SDWebImage" -framework "Security" -framework "SystemConfiguration" -framework "UIKit" +OTHER_MODULE_VERIFIER_FLAGS = $(inherited) "-F${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking" "-F${PODS_CONFIGURATION_BUILD_DIR}/Bugly" "-F${PODS_CONFIGURATION_BUILD_DIR}/DZNEmptyDataSet" "-F${PODS_CONFIGURATION_BUILD_DIR}/FLAnimatedImage" "-F${PODS_CONFIGURATION_BUILD_DIR}/HWPanModal" "-F${PODS_CONFIGURATION_BUILD_DIR}/JXCategoryView" "-F${PODS_CONFIGURATION_BUILD_DIR}/JXPagingView" "-F${PODS_CONFIGURATION_BUILD_DIR}/LSTPopView" "-F${PODS_CONFIGURATION_BUILD_DIR}/LSTTimer" "-F${PODS_CONFIGURATION_BUILD_DIR}/LYEmptyView" "-F${PODS_CONFIGURATION_BUILD_DIR}/MBProgressHUD" "-F${PODS_CONFIGURATION_BUILD_DIR}/MJExtension" "-F${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh" "-F${PODS_CONFIGURATION_BUILD_DIR}/Masonry" "-F${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) PODS_PODFILE_DIR_PATH = ${SRCROOT}/. diff --git a/keyBoard.xcodeproj/project.pbxproj b/keyBoard.xcodeproj/project.pbxproj index 7820df6..6b89a7e 100644 --- a/keyBoard.xcodeproj/project.pbxproj +++ b/keyBoard.xcodeproj/project.pbxproj @@ -70,6 +70,8 @@ 048908EF2EBF861800FABA60 /* KBSkinSectionTitleCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 048908EE2EBF861800FABA60 /* KBSkinSectionTitleCell.m */; }; 048908F22EC047FD00FABA60 /* KBShopHeadView.m in Sources */ = {isa = PBXBuildFile; fileRef = 048908F12EC047FD00FABA60 /* KBShopHeadView.m */; }; 048908F52EC0496400FABA60 /* KBShopItemVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 048908F42EC0496400FABA60 /* KBShopItemVC.m */; }; + 048909F62EC0AAAA00FABA60 /* KBCategoryTitleCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 048909F12EC0AAAA00FABA60 /* KBCategoryTitleCell.m */; }; + 048909F72EC0AAAA00FABA60 /* KBCategoryTitleView.m in Sources */ = {isa = PBXBuildFile; fileRef = 048909F32EC0AAAA00FABA60 /* KBCategoryTitleView.m */; }; 04A9FE0F2EB481100020DB6D /* KBHUD.m in Sources */ = {isa = PBXBuildFile; fileRef = 04FC97082EB31B14007BD342 /* KBHUD.m */; }; 04A9FE132EB4D0D20020DB6D /* KBFullAccessManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 04A9FE112EB4D0D20020DB6D /* KBFullAccessManager.m */; }; 04A9FE162EB873C80020DB6D /* UIViewController+Extension.m in Sources */ = {isa = PBXBuildFile; fileRef = 04A9FE152EB873C80020DB6D /* UIViewController+Extension.m */; }; @@ -124,8 +126,6 @@ A1B2E1012EBC7AAA00000001 /* KBTopThreeView.m in Sources */ = {isa = PBXBuildFile; fileRef = A1B2E0022EBC7AAA00000001 /* KBTopThreeView.m */; }; A1B2E1022EBC7AAA00000001 /* HomeHotCell.m in Sources */ = {isa = PBXBuildFile; fileRef = A1B2E0042EBC7AAA00000001 /* HomeHotCell.m */; }; ECC9EE02174D86E8D792472F /* Pods_keyBoard.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 967065BB5230E43F293B3AF9 /* Pods_keyBoard.framework */; }; - 048909F62EC0AAAA00FABA60 /* KBCategoryTitleCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 048909F12EC0AAAA00FABA60 /* KBCategoryTitleCell.m */; }; - 048909F72EC0AAAA00FABA60 /* KBCategoryTitleView.m in Sources */ = {isa = PBXBuildFile; fileRef = 048909F32EC0AAAA00FABA60 /* KBCategoryTitleView.m */; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ @@ -250,6 +250,10 @@ 048908F12EC047FD00FABA60 /* KBShopHeadView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = KBShopHeadView.m; sourceTree = ""; }; 048908F32EC0496400FABA60 /* KBShopItemVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = KBShopItemVC.h; sourceTree = ""; }; 048908F42EC0496400FABA60 /* KBShopItemVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = KBShopItemVC.m; sourceTree = ""; }; + 048909F02EC0AAAA00FABA60 /* KBCategoryTitleCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = KBCategoryTitleCell.h; sourceTree = ""; }; + 048909F12EC0AAAA00FABA60 /* KBCategoryTitleCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = KBCategoryTitleCell.m; sourceTree = ""; }; + 048909F22EC0AAAA00FABA60 /* KBCategoryTitleView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = KBCategoryTitleView.h; sourceTree = ""; }; + 048909F32EC0AAAA00FABA60 /* KBCategoryTitleView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = KBCategoryTitleView.m; sourceTree = ""; }; 04A9A67D2EB9E1690023B8F4 /* KBResponderUtils.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = KBResponderUtils.h; sourceTree = ""; }; 04A9FE102EB4D0D20020DB6D /* KBFullAccessManager.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = KBFullAccessManager.h; sourceTree = ""; }; 04A9FE112EB4D0D20020DB6D /* KBFullAccessManager.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = KBFullAccessManager.m; sourceTree = ""; }; @@ -355,10 +359,6 @@ B12EC429812407B9F0E67565 /* Pods-CustomKeyboard.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-CustomKeyboard.release.xcconfig"; path = "Target Support Files/Pods-CustomKeyboard/Pods-CustomKeyboard.release.xcconfig"; sourceTree = ""; }; B8CA018AB878499327504AAD /* Pods-CustomKeyboard.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-CustomKeyboard.debug.xcconfig"; path = "Target Support Files/Pods-CustomKeyboard/Pods-CustomKeyboard.debug.xcconfig"; sourceTree = ""; }; F67DDBD716E4E616D8CC2C9C /* Pods-keyBoard.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-keyBoard.debug.xcconfig"; path = "Target Support Files/Pods-keyBoard/Pods-keyBoard.debug.xcconfig"; sourceTree = ""; }; - 048909F02EC0AAAA00FABA60 /* KBCategoryTitleCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = KBCategoryTitleCell.h; sourceTree = ""; }; - 048909F12EC0AAAA00FABA60 /* KBCategoryTitleCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = KBCategoryTitleCell.m; sourceTree = ""; }; - 048909F22EC0AAAA00FABA60 /* KBCategoryTitleView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = KBCategoryTitleView.h; sourceTree = ""; }; - 048909F32EC0AAAA00FABA60 /* KBCategoryTitleView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = KBCategoryTitleView.m; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ @@ -496,10 +496,10 @@ children = ( 048908F02EC047FD00FABA60 /* KBShopHeadView.h */, 048908F12EC047FD00FABA60 /* KBShopHeadView.m */, - 048909F02EC0AAAA00FABA60 /* KBCategoryTitleCell.h */, - 048909F12EC0AAAA00FABA60 /* KBCategoryTitleCell.m */, - 048909F22EC0AAAA00FABA60 /* KBCategoryTitleView.h */, - 048909F32EC0AAAA00FABA60 /* KBCategoryTitleView.m */, + 048909F02EC0AAAA00FABA60 /* KBCategoryTitleCell.h */, + 048909F12EC0AAAA00FABA60 /* KBCategoryTitleCell.m */, + 048909F22EC0AAAA00FABA60 /* KBCategoryTitleView.h */, + 048909F32EC0AAAA00FABA60 /* KBCategoryTitleView.m */, ); path = V; sourceTree = ""; @@ -1239,14 +1239,10 @@ inputFileListPaths = ( "${PODS_ROOT}/Target Support Files/Pods-keyBoard/Pods-keyBoard-frameworks-${CONFIGURATION}-input-files.xcfilelist", ); - inputPaths = ( - ); name = "[CP] Embed Pods Frameworks"; outputFileListPaths = ( "${PODS_ROOT}/Target Support Files/Pods-keyBoard/Pods-keyBoard-frameworks-${CONFIGURATION}-output-files.xcfilelist", ); - outputPaths = ( - ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-keyBoard/Pods-keyBoard-frameworks.sh\"\n"; @@ -1308,8 +1304,8 @@ isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 048909F62EC0AAAA00FABA60 /* KBCategoryTitleCell.m in Sources */, - 048909F72EC0AAAA00FABA60 /* KBCategoryTitleView.m in Sources */, + 048909F62EC0AAAA00FABA60 /* KBCategoryTitleCell.m in Sources */, + 048909F72EC0AAAA00FABA60 /* KBCategoryTitleView.m in Sources */, 04FC95E92EB23B67007BD342 /* KBNetworkManager.m in Sources */, 04FC95D22EB1E7AE007BD342 /* MyVC.m in Sources */, 047C65582EBCC06D0035E841 /* HomeRankCardCell.m in Sources */,