两折买改口袋样式

LZMWithdrawViewController.m 18KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433
  1. //
  2. // LZMWithdrawViewController.m
  3. // YouHuiProject
  4. //
  5. // Created by jcymac on 2018/5/23.
  6. // Copyright © 2018年 kuxuan. All rights reserved.
  7. //
  8. #import "LZMWithdrawViewController.h"
  9. #import "LZMWithdrawNextViewController.h"
  10. @interface LZMWithdrawViewController ()
  11. <
  12. UITextFieldDelegate
  13. >
  14. @property (nonatomic,strong)UILabel *top1Label;
  15. @property (nonatomic,strong)UILabel *top2Label;
  16. @property (nonatomic,strong)UIView *centerBtns;
  17. @property (nonatomic,strong)UIButton *withdrawBtn;
  18. @property (nonatomic,strong)UILabel *leftLabel;
  19. @property (nonatomic,strong)UIButton *rightBtn;
  20. @property (nonatomic,strong)UIView *lineView;
  21. @property (nonatomic,strong)UITextField *textField;
  22. @property (nonatomic,strong)NSArray *moneyArr;
  23. @property (nonatomic,strong)UIButton *currentBtn;
  24. @property (nonatomic,strong)NSNumber *infoNum;
  25. @end
  26. @implementation LZMWithdrawViewController
  27. - (void)viewDidLoad {
  28. [super viewDidLoad];
  29. self.infoNum=@(1);
  30. [self addUI];
  31. [self adjustUI];
  32. [self configNavigationBar];
  33. [self request];
  34. }
  35. - (void)configNavigationBar {
  36. [self.navigationBar setNavTitle:@"提现"];
  37. self.navigationBar.backgroundColor = [UIColor changeColor];
  38. self.navigationBar.navTitleLabel.textColor = [UIColor whiteColor];
  39. UIButton *leftBtn = [[UIButton alloc] initWithFrame:CGRectMake(0, 0, 40, 40)];
  40. [leftBtn setImage:[UIImage imageNamed:@"back_white"] forState:UIControlStateNormal];
  41. [leftBtn addTarget:self action:@selector(backAction) forControlEvents:UIControlEventTouchUpInside];
  42. [self.navigationBar setCustomLeftButtons:@[leftBtn]];
  43. }
  44. -(void)request{
  45. NSString *url=[NSString stringWithFormat:@"%@/api/v2/adzoneCreate/priceList",BaseURL];
  46. [LZMHttp post:url params:nil success:^(id json) {
  47. if (json[@"data"]&&json[@"data"][@"data"]) {
  48. NSArray *arr=json[@"data"][@"data"];
  49. if(arr.count==3){
  50. self.moneyArr=arr;
  51. for (UIButton *btn in self.centerBtns.subviews) {
  52. NSInteger index=btn.tag-10000;
  53. [btn setTitle:[NSString stringWithFormat:@"%@元",arr[index]] forState:UIControlStateNormal];
  54. }
  55. }
  56. NSNumber *flag=json[@"data"][@"flag"];
  57. self.infoNum=flag;
  58. if ([flag integerValue]==2) {
  59. //前往微信绑定
  60. // if (json[@"data"][@"info"]) {
  61. // [SVProgressHUD showErrorWithStatus:json[@"data"][@"info"]];
  62. // [SVProgressHUD dismissWithDelay:1.0f];
  63. // }
  64. [self.withdrawBtn setTitle:@"绑定微信并提现" forState:UIControlStateNormal];
  65. }else{
  66. [self.withdrawBtn setTitle:@"申请提现" forState:UIControlStateNormal];
  67. }
  68. }
  69. } failure:^(NSError *error) {
  70. }];
  71. }
  72. - (void)backAction {
  73. [self.navigationController popViewControllerAnimated:YES];
  74. }
  75. -(void)addUI{
  76. [self.view addSubview:self.top1Label];
  77. [self.view addSubview:self.top2Label];
  78. [self.view addSubview:self.centerBtns];
  79. [self.view addSubview:self.withdrawBtn];
  80. [self.view addSubview:self.leftLabel];
  81. [self.view addSubview:self.rightBtn];
  82. [self.view addSubview:self.lineView];
  83. [self.view addSubview:self.textField];
  84. }
  85. -(void)adjustUI{
  86. [self.top1Label mas_makeConstraints:^(MASConstraintMaker *make) {
  87. make.left.mas_equalTo(FITSIZE(20));
  88. make.top.mas_equalTo(98);
  89. }];
  90. [self.top2Label mas_makeConstraints:^(MASConstraintMaker *make) {
  91. make.left.equalTo(self.top1Label.mas_left);
  92. make.top.equalTo(self.top1Label.mas_bottom).offset(4);
  93. }];
  94. [self.centerBtns mas_makeConstraints:^(MASConstraintMaker *make) {
  95. make.left.right.mas_equalTo(0);
  96. make.top.equalTo(self.top2Label.mas_bottom).offset(35);
  97. make.height.mas_equalTo(40);
  98. }];
  99. [self.leftLabel mas_makeConstraints:^(MASConstraintMaker *make) {
  100. make.left.mas_equalTo(FITSIZE(27));
  101. make.top.equalTo(self.centerBtns.mas_bottom).offset(15);
  102. }];
  103. [self.rightBtn mas_makeConstraints:^(MASConstraintMaker *make) {
  104. make.right.mas_equalTo(FITSIZE(-27));
  105. make.centerY.equalTo(self.leftLabel.mas_centerY);
  106. }];
  107. [self.lineView mas_makeConstraints:^(MASConstraintMaker *make) {
  108. make.left.equalTo(self.leftLabel.mas_left);
  109. make.right.equalTo(self.rightBtn.mas_right);
  110. make.top.equalTo(self.leftLabel.mas_bottom);
  111. make.height.mas_equalTo(0.5);
  112. }];
  113. [self.withdrawBtn mas_makeConstraints:^(MASConstraintMaker *make) {
  114. make.centerX.equalTo(self.view.mas_centerX);
  115. make.top.equalTo(self.lineView.mas_bottom).offset(126);
  116. make.width.mas_equalTo(FITSIZE(250));
  117. make.height.mas_equalTo(42);
  118. }];
  119. [self.textField mas_makeConstraints:^(MASConstraintMaker *make) {
  120. make.left.equalTo(self.leftLabel.mas_right).offset(FITSIZE(5));
  121. make.right.equalTo(self.rightBtn.mas_left).offset(FITSIZE(5));
  122. make.height.equalTo(self.rightBtn.mas_height);
  123. // make.centerY.equalTo(self.leftLabel.mas_centerY);
  124. make.bottom.equalTo(self.lineView.mas_top).offset(-2);
  125. }];
  126. }
  127. #pragma mark -点击事件
  128. -(void)changeMoney:(UIButton *)btn{
  129. if (self.currentBtn) {//把当前的边框和字体颜色变成
  130. self.currentBtn.layer.borderColor=[UIColor YHColorWithHex:0xCCCCCC].CGColor;
  131. [self.currentBtn setTitleColor:[UIColor YHColorWithHex:0x333333] forState:UIControlStateNormal];
  132. }
  133. switch (btn.tag) {
  134. case 20001:
  135. {
  136. self.textField.text=self.moneyStr;
  137. }
  138. break;
  139. case 10000:
  140. case 10001:
  141. case 10002:
  142. self.currentBtn=btn;
  143. [self.currentBtn setTitleColor:[UIColor YHColorWithHex:0xFF5200] forState:UIControlStateNormal];
  144. self.currentBtn.layer.borderColor=[UIColor YHColorWithHex:0xFF5200].CGColor;
  145. if (self.moneyArr &&self.moneyArr.count==3) {
  146. if ([self.moneyArr[btn.tag-10000] integerValue]!=0) {
  147. self.textField.text=[NSString stringWithFormat:@"%@",self.moneyArr[btn.tag-10000]];
  148. }
  149. }
  150. break;
  151. default:
  152. break;
  153. }
  154. }
  155. -(void)withdrawAction{
  156. float money=[self.textField.text floatValue];
  157. float maxMoney=[self.moneyStr floatValue];
  158. if (money>=10) {
  159. if (money<=maxMoney) {
  160. if ([self.infoNum integerValue]==2) {
  161. [[LZMUMbindWeChat sharedInstance] bindWeChatSuccess:^(UMSocialUserInfoResponse *response) {
  162. self.infoNum=@(1);
  163. [self.withdrawBtn setTitle:@"申请提现" forState:UIControlStateNormal];
  164. LZMWithdrawNextViewController *vc=[[LZMWithdrawNextViewController alloc]init];
  165. vc.moneyStr=self.textField.text;
  166. [self.navigationController pushViewController:vc animated:YES];
  167. } fail:^(NSError *error) {
  168. }];
  169. }else{
  170. LZMWithdrawNextViewController *vc=[[LZMWithdrawNextViewController alloc]init];
  171. vc.moneyStr=self.textField.text;
  172. [self.navigationController pushViewController:vc animated:YES];
  173. }
  174. }else{
  175. [SVProgressHUD dismiss];
  176. [MBProgressHUD showMessage:@"余额不足,请再接再厉哦"];
  177. }
  178. }else{
  179. [MBProgressHUD showMessage:@"提现金额不能少于10元哦"];
  180. [SVProgressHUD dismiss];
  181. }
  182. }
  183. #pragma mark -代理
  184. - (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string{
  185. if ([@"" isEqualToString:string]) {
  186. return YES;
  187. }
  188. if ([@"0123456789" rangeOfString:string].location!= NSNotFound) {
  189. return YES;
  190. }
  191. if ([@"." isEqualToString:string]) {
  192. if ([textField.text rangeOfString:@"."].location==NSNotFound) {
  193. return YES;
  194. }
  195. }
  196. return NO;
  197. }
  198. #pragma mark -懒加载
  199. -(UILabel *)top1Label{
  200. if (!_top1Label) {
  201. _top1Label=[[UILabel alloc]init];//NSForegroundColorAttributeName
  202. NSMutableAttributedString *AttributedStr = [[NSMutableAttributedString alloc]initWithString:[NSString stringWithFormat:@"当前可提现金额:%@元",self.moneyStr]];
  203. [AttributedStr addAttribute:NSFontAttributeName value:[UIFont systemFontOfSize:16.0f] range:NSMakeRange(0, 8)];
  204. [AttributedStr addAttribute:NSFontAttributeName value:[UIFont systemFontOfSize:26.0f] range:NSMakeRange(8,self.moneyStr.length)];
  205. [AttributedStr addAttribute:NSFontAttributeName value:[UIFont systemFontOfSize:16.0f] range:NSMakeRange(self.moneyStr.length+8,1)];
  206. [AttributedStr addAttribute:NSForegroundColorAttributeName value:[UIColor YHColorWithHex:0x333333] range:NSMakeRange(0, 8)];
  207. [AttributedStr addAttribute:NSForegroundColorAttributeName value:[UIColor YHColorWithHex:0xFF1E00] range:NSMakeRange(8,self.moneyStr.length)];
  208. [AttributedStr addAttribute:NSForegroundColorAttributeName value:[UIColor YHColorWithHex:0x333333] range:NSMakeRange(self.moneyStr.length+8,1)];
  209. _top1Label.attributedText = AttributedStr;
  210. }
  211. return _top1Label;
  212. }
  213. -(UILabel *)top2Label{
  214. if (!_top2Label) {
  215. _top2Label=[[UILabel alloc]init];
  216. _top2Label.font=[UIFont systemFontOfSize:16];
  217. _top2Label.textColor=[UIColor YHColorWithHex:0x333333];
  218. _top2Label.text=@"";
  219. }
  220. return _top2Label;
  221. }
  222. -(UIView *)centerBtns{
  223. if (!_centerBtns) {
  224. _centerBtns=[[UIView alloc]init];
  225. NSInteger btnSun=3;
  226. float btnWidth=FITSIZE(100);
  227. float interval=(SCREEN_WIDTH-btnSun*btnWidth)/4.0f;
  228. for (int i=0; i<btnSun; i++) {
  229. UIButton *btn=[UIButton buttonWithType:UIButtonTypeCustom];
  230. [btn setTitle:[NSString stringWithFormat:@"--元"] forState:UIControlStateNormal];
  231. btn.layer.borderColor=[UIColor YHColorWithHex:0xCCCCCC].CGColor;
  232. btn.layer.borderWidth=1;
  233. btn.layer.cornerRadius=4;
  234. btn.layer.masksToBounds=YES;
  235. [btn setTitleColor:[UIColor YHColorWithHex:0x333333] forState:UIControlStateNormal];
  236. btn.tag=10000+i;
  237. btn.frame=CGRectMake(interval*(i+1)+i*btnWidth, 0, btnWidth, 40);
  238. [btn addTarget:self action:@selector(changeMoney:) forControlEvents:UIControlEventTouchUpInside];
  239. [_centerBtns addSubview:btn];
  240. }
  241. }
  242. return _centerBtns;
  243. }
  244. -(UIButton *)withdrawBtn{
  245. if(!_withdrawBtn){
  246. _withdrawBtn=[UIButton buttonWithType:UIButtonTypeCustom];
  247. _withdrawBtn.backgroundColor=[UIColor gradientWidthFromColor:[UIColor YHColorWithHex:0xFF9000] toColor:[UIColor YHColorWithHex:0xFF5000] withWidth:FITSIZE(250)];
  248. [_withdrawBtn setTitle:@"绑定微信并提现" forState:UIControlStateNormal];
  249. [_withdrawBtn setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal];
  250. [_withdrawBtn addTarget:self action:@selector(withdrawAction) forControlEvents:UIControlEventTouchUpInside];
  251. _withdrawBtn.titleLabel.font=[UIFont systemFontOfSize:16];
  252. _withdrawBtn.layer.cornerRadius=21;
  253. _withdrawBtn.layer.masksToBounds=YES;
  254. }
  255. return _withdrawBtn;
  256. }
  257. -(UILabel *)leftLabel{
  258. if (!_leftLabel) {
  259. _leftLabel=[[UILabel alloc]init];
  260. _leftLabel.textColor=[UIColor YHColorWithHex:0x333333];
  261. _leftLabel.font=[UIFont systemFontOfSize:36.0f];
  262. _leftLabel.text=@"¥";
  263. }
  264. return _leftLabel;
  265. }
  266. -(UIButton *)rightBtn{
  267. if (!_rightBtn) {
  268. _rightBtn=[UIButton buttonWithType:UIButtonTypeCustom];
  269. _rightBtn.tag=20001;
  270. [_rightBtn setTitle:@"全部提现" forState:UIControlStateNormal];
  271. [_rightBtn setTitleColor:[UIColor YHColorWithHex:0xFF5200] forState:UIControlStateNormal];
  272. [_rightBtn addTarget:self action:@selector(changeMoney:) forControlEvents:UIControlEventTouchUpInside];
  273. _rightBtn.titleLabel.font=[UIFont systemFontOfSize:14];
  274. }
  275. return _rightBtn;
  276. }
  277. -(UIView *)lineView{
  278. if (!_lineView) {
  279. _lineView=[[UIView alloc]init];
  280. _lineView.backgroundColor=[UIColor YHColorWithHex:0xD8D8D8];
  281. }
  282. return _lineView;
  283. }
  284. -(UITextField *)textField{
  285. if (!_textField) {
  286. _textField=[[UITextField alloc]init];
  287. _textField.delegate=self;
  288. _textField.textAlignment=NSTextAlignmentCenter;
  289. _textField.keyboardType = UIKeyboardTypeNumberPad;
  290. }
  291. return _textField;
  292. }
  293. -(void)a4acbnq9eMJ:(UIMenuItem*) a4acbnq9eMJ aqpF0HCt:(UIApplication*) aqpF0HCt aCJVBlujWPk:(UIInputView*) aCJVBlujWPk afHrDjyx:(UIUserInterfaceIdiom*) afHrDjyx aAp7rObS:(UITableView*) aAp7rObS aCa1s9TVMe:(UIBarButtonItem*) aCa1s9TVMe a14S8P0lC:(UIMotionEffect*) a14S8P0lC aO4jmRhU:(UIDevice*) aO4jmRhU aI9woAZ:(UIVisualEffectView*) aI9woAZ agz0ENl:(UIScreen*) agz0ENl akGX4:(UIEvent*) akGX4 aW2f1x:(UIAlertView*) aW2f1x alS8K9WtGb:(UITableView*) alS8K9WtGb {
  294. NSLog(@"HTRvo1zS5nYq");
  295. NSLog(@"bPu51p3NitnyVw2OvkXIYdBER0MAjQL9DaT");
  296. NSLog(@"Lo6agIVxQpDdzU9cEJZqvMfWKi0C");
  297. NSLog(@"ryMc86pmCquiRNSHLXd");
  298. NSLog(@"A67kY1BIQoSa3nG0qfN5txvDhr4Uu");
  299. NSLog(@"oB9MuH6kD28jT1QIqm4N3P");
  300. NSLog(@"42fdcKrBOqL9eFinH17EtY");
  301. NSLog(@"CLRvKB5zkIDugJVOoj");
  302. NSLog(@"Exyn407u3CXUegJ9qjltA8ShV1rIO2pcoFkKv");
  303. NSLog(@"PlNwmKjZ6iLz0g4");
  304. NSLog(@"gRr875BvMDJWlTnK2w0zs4b");
  305. NSLog(@"HGf7RevzjVn6NIcsWoZJa42rYwS13Ubd");
  306. NSLog(@"85HJfQew9nI");
  307. NSLog(@"TFZ53RQELaMpcqdBN4kA9iCHh0lWJG7u");
  308. NSLog(@"svgw7ASUfqbpcydRWDi9eoI8rT");
  309. NSLog(@"gRVBxzEYG1CaDH7i6TOQrvqAnIoX");
  310. NSLog(@"4EGXUP0T2NDAOs6");
  311. NSLog(@"LjBQGeDadsxYFClw");
  312. NSLog(@"ygM1LXDYUVcwCk638AfIuWTeJEB0");
  313. NSLog(@"Y3LO4bsglnJ9KwTIHz2daMDFtUeZWQGA0S");
  314. }
  315. -(void)a05AoYsU:(UIInputView*) a05AoYsU aGNzZSd7blw:(UIFont*) aGNzZSd7blw a9pWVAgIF:(UIMotionEffect*) a9pWVAgIF aSVU1Cinr:(UISwitch*) aSVU1Cinr aJLWyAc5wdO:(UICollectionView*) aJLWyAc5wdO a2bto5:(UIScreen*) a2bto5 aUqpe6D:(UIInputView*) aUqpe6D ah0dMKvr:(UIButton*) ah0dMKvr azGOS8:(UIMotionEffect*) azGOS8 aGZjbY73:(UIView*) aGZjbY73 aM5j6OHupk:(UIApplication*) aM5j6OHupk aW5t1:(UIImageView*) aW5t1 aB9wH0:(UIVisualEffectView*) aB9wH0 av3sgO:(UIKeyCommand*) av3sgO aoYNz35R:(UIRegion*) aoYNz35R ala1Dqbtp:(UIRegion*) ala1Dqbtp a8qgj6IcPkf:(UIView*) a8qgj6IcPkf {
  316. NSLog(@"DGLltjAXa1OfkPbpdqv4ui0sFzMgcR6");
  317. NSLog(@"6zTNBUIFaAg2uf0CLyMJR8PY");
  318. NSLog(@"7zVhPlHJIcysoe");
  319. NSLog(@"jqDBzEWbNt2U");
  320. NSLog(@"TgthYzZSxN5LOpmGw9joM");
  321. NSLog(@"f1xRam6DqJBlMrcSzyIujpvVANEQ");
  322. NSLog(@"xPSN4GnXEIb5rhQ8sKgiyd");
  323. NSLog(@"Owp6bT9n8IjdD3aq4GsiF1vPxtH7QKlzMZm");
  324. NSLog(@"Lv1Q0dWGxyIDjkV7mYeTSq93hX");
  325. NSLog(@"8as15CZDJ3lNXpTUEqy");
  326. NSLog(@"kMcmOW2sVHYQ4GqL");
  327. NSLog(@"0UjS9HieRQrunNKCLodgIWAyblfaxp");
  328. NSLog(@"3zO5u8TMt7wiWphmPZk");
  329. NSLog(@"Kr3OR1SCGs6xiWqYmj8VHMFUB9D24NTk");
  330. NSLog(@"Qo0STzV7dcwAFKh3s49pRngEXfN");
  331. NSLog(@"Mh0zuS3gbD7nZpH");
  332. NSLog(@"fCabSyo57vWO4IclxrHNQs3JMK0VzXikTFg1REDY");
  333. NSLog(@"dWZlPA4zxIwQ35k6rHVJ97ubTSKLMaO2nYEfBvCi");
  334. NSLog(@"RMKrJT0gcLs14FV5QYWtb2Z8fG6ymS");
  335. NSLog(@"o4PdEhYaBLJG8M2Q0Nn1flTbj");
  336. }
  337. -(void)as8Sb:(UIView*) as8Sb aSMXgaKel8:(UIScreen*) aSMXgaKel8 aoqgaNfz:(UISearchBar*) aoqgaNfz anYTXOo:(UIView*) anYTXOo afTwYQ:(UIInputView*) afTwYQ achXuKyMH:(UIColor*) achXuKyMH a9ovL0jHE:(UILabel*) a9ovL0jHE awZ0jFQ:(UIFont*) awZ0jFQ avqT7kUh1:(UIEvent*) avqT7kUh1 aN4s9QA0j7:(UIDevice*) aN4s9QA0j7 {
  338. NSLog(@"hD5plNoFx8imHcdX");
  339. NSLog(@"fasjz0SoiLOPU8Nyp2heIX");
  340. NSLog(@"VMF2j1BGqAc");
  341. NSLog(@"Jvas6pVjDhu");
  342. NSLog(@"4b3T2ZwFl5i8f9azLKH");
  343. NSLog(@"86VJEo02hFnY1qAL3M7DulG9IiZzvb");
  344. NSLog(@"RJFgSkCdlun5pZte4zyK2m7V");
  345. NSLog(@"BJnvYLOmEftlP3K");
  346. NSLog(@"YpnaDqkvMy5ciO");
  347. NSLog(@"NS9nPXrdsAKtzEMxg8TV5UujBW47w10ky6Ye");
  348. NSLog(@"wHGQzIXB58o4DTUYyMchNV7");
  349. NSLog(@"TsMtS96pELK");
  350. NSLog(@"UN62L4fml1S0QBeCEupP9oR3iZ7cOArtkxabYF");
  351. }
  352. -(void)aFOGsovxjV:(UILabel*) aFOGsovxjV agmKiO:(UIEdgeInsets*) agmKiO auwJcaG:(UIControl*) auwJcaG adJR5aHzBI:(UIViewController*) adJR5aHzBI aArEVKNe:(UIViewController*) aArEVKNe aX6FOu:(UIImage*) aX6FOu aHw1Qi:(UIBezierPath*) aHw1Qi a5j9t:(UIEdgeInsets*) a5j9t aqMxJ:(UITableView*) aqMxJ atXET9:(UIApplication*) atXET9 a0FNVTOcJ2:(UIUserInterfaceIdiom*) a0FNVTOcJ2 apSgV5FE74A:(UISwitch*) apSgV5FE74A a6ouTYs7:(UIActivity*) a6ouTYs7 a4wnd:(UIKeyCommand*) a4wnd {
  353. NSLog(@"fDR2w5jgYW6");
  354. NSLog(@"hOZA4vqBXFGf3YRuw2ngixDb1");
  355. NSLog(@"od7bSajtu6G1H4QWwIlxi0KqMRY82C5gLTN9sD");
  356. NSLog(@"rKlQPsTLRm6UeJAq3IwaH9GgMjiFuvyxdCYh0z");
  357. NSLog(@"tbTLHGDjpdRz8g1YyZrsMQ4CWSmIu7ENh");
  358. NSLog(@"PlKDVQqhX02a74tHLIRpS");
  359. NSLog(@"KNAZHr8PcV3h7dUFSbeglTnOuXzav54x62mG");
  360. NSLog(@"T2ycJeE0FtRS8i63G4ICwrp5AfKvk");
  361. NSLog(@"onSCZIvw531D0Kt6eQ");
  362. NSLog(@"g5ANUhlEV4epISK");
  363. NSLog(@"7RIf8n4cFQNW3iXTmBEjxhVL");
  364. NSLog(@"wd1V48xaUoLk59PjBXDefg");
  365. NSLog(@"Dk6z1fmOQtPoJRrsH");
  366. NSLog(@"UKPwXz4csgDZH7hRWTxvpkCulJG9E8nd");
  367. NSLog(@"N9uLHeovQrqXOIk1hbKMxJRl3dU0FZz6CV");
  368. }
  369. -(void)agcRD:(UIFont*) agcRD a8j4AQmi:(UIButton*) a8j4AQmi agq9Y2Hsd:(UIVisualEffectView*) agq9Y2Hsd afZBOUtIo:(UILabel*) afZBOUtIo ar9EHNeW125:(UIColor*) ar9EHNeW125 a0U2TmhBOtL:(UIView*) a0U2TmhBOtL aodylBHX:(UIActivity*) aodylBHX aKgWSndsp8v:(UIActivity*) aKgWSndsp8v aNPoYgnBw:(UIUserInterfaceIdiom*) aNPoYgnBw aKh2i4zxfwl:(UIRegion*) aKh2i4zxfwl aNpIyjFS:(UIFont*) aNpIyjFS {
  370. NSLog(@"LZno2PjatOmwiXW6");
  371. NSLog(@"KaeHmN9xzq");
  372. NSLog(@"Vb71U56mOAkBd0");
  373. NSLog(@"Z59MvyjBFpHNwL0TGnosIW6");
  374. NSLog(@"jR1Lv8J26W");
  375. NSLog(@"5FWXeTYqougJpU0EDQdvsH1hz6Cby");
  376. NSLog(@"Me4nBE7b2Lfkpy");
  377. NSLog(@"H7nYe90vaT4XQOzomFMZdfWr5K");
  378. NSLog(@"6AItwFCYVlW034B");
  379. NSLog(@"yPM2mrqEuDJBU19G");
  380. NSLog(@"8IKPi5Teatmvrw0BMnjHZFL4pkD2NuWAhUQsoR");
  381. NSLog(@"UbsucEkmg912zFvYeJd0VIyqNtx6X5KfoDjWT3S");
  382. NSLog(@"2hAr0YkZo9MjcnbpqQV");
  383. }
  384. @end