两折买改口袋样式

LZMGetMoneyNextViewController.m 14KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329
  1. //
  2. // LZMGetMoneyNextViewController.m
  3. // YouHuiProject
  4. //
  5. // Created by jcymac on 2018/6/11.
  6. // Copyright © 2018年 kuxuan. All rights reserved.
  7. //
  8. #import "LZMGetMoneyNextViewController.h"
  9. @interface LZMGetMoneyNextViewController ()<UITextFieldDelegate>
  10. @property (nonatomic,strong) UIView *codeView;
  11. @property (nonatomic,strong) UIButton *nextBtn;
  12. @end
  13. @implementation LZMGetMoneyNextViewController
  14. - (void)viewDidLoad {
  15. [super viewDidLoad];
  16. [self addUI];
  17. [self adjustUI];
  18. [self timeAction:[self.view viewWithTag:10003]];
  19. }
  20. -(void)viewWillAppear:(BOOL)animated{
  21. [super viewWillAppear:animated];
  22. [[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleLightContent];
  23. }
  24. - (void)configNavigationBar {
  25. [self.navigationBar setNavTitle:@"验证手机号"];
  26. self.navigationBar.backgroundColor = [UIColor changeColor];
  27. self.navigationBar.navTitleLabel.textColor = [UIColor whiteColor];
  28. UIButton *leftBtn = [[UIButton alloc] initWithFrame:CGRectMake(0, 0, 40, 40)];
  29. [leftBtn setImage:[UIImage imageNamed:@"back_white"] forState:UIControlStateNormal];
  30. [leftBtn addTarget:self action:@selector(backAction) forControlEvents:UIControlEventTouchUpInside];
  31. [self.navigationBar setCustomLeftButtons:@[leftBtn]];
  32. }
  33. -(void)addUI{
  34. [self.view addSubview:self.codeView];
  35. [self.view addSubview:self.nextBtn];
  36. [self configNavigationBar];
  37. }
  38. -(void)adjustUI{
  39. [self.codeView mas_makeConstraints:^(MASConstraintMaker *make) {
  40. make.left.mas_equalTo(FITSIZE(35));
  41. make.right.mas_equalTo(FITSIZE(-35));
  42. make.top.mas_equalTo(154);
  43. make.height.mas_equalTo(144);
  44. }];
  45. [self.nextBtn mas_makeConstraints:^(MASConstraintMaker *make) {
  46. make.top.equalTo(self.codeView.mas_bottom).offset(25);
  47. make.centerX.equalTo(self.view.mas_centerX);
  48. make.height.mas_equalTo(42);
  49. make.width.mas_equalTo(FITSIZE(250));
  50. }];
  51. UIView *imgView=[self.codeView viewWithTag:10001];
  52. UIView *textFieldView=[self.codeView viewWithTag:10002];
  53. UIView *timeView=[self.codeView viewWithTag:10003];
  54. UIView *lineView=[self.codeView viewWithTag:10004];
  55. [imgView mas_makeConstraints:^(MASConstraintMaker *make) {
  56. make.left.mas_equalTo(0);
  57. make.bottom.mas_equalTo((-41-10));
  58. make.width.height.mas_equalTo(18);
  59. }];
  60. [timeView mas_makeConstraints:^(MASConstraintMaker *make) {
  61. make.right.mas_equalTo(0);
  62. make.centerY.equalTo(imgView.mas_centerY);
  63. make.width.mas_equalTo(76);
  64. make.height.mas_equalTo(22);
  65. }];
  66. [textFieldView mas_makeConstraints:^(MASConstraintMaker *make) {
  67. make.left.equalTo(imgView.mas_right).offset(FITSIZE(10));
  68. make.centerY.equalTo(imgView.mas_centerY);
  69. make.right.equalTo(timeView.mas_left);
  70. }];
  71. [lineView mas_makeConstraints:^(MASConstraintMaker *make) {
  72. make.left.equalTo(imgView.mas_left);
  73. make.right.equalTo(timeView.mas_right);
  74. make.top.equalTo(imgView.mas_bottom).offset(10);
  75. make.height.mas_equalTo(1);
  76. }];
  77. }
  78. #pragma mark -事件
  79. -(void)timeAction:(UIButton *)sender{
  80. [self requestCode];
  81. [sender startWithTime:60 title:@"重新发送" countDownTitle:@"s" mainColor:[UIColor clearColor] countColor:[UIColor clearColor]];
  82. }
  83. #pragma mark -网络请求
  84. -(void)requestCode{
  85. //获取验证码
  86. NSString *url=[NSString stringWithFormat:@"%@/api/v2/users/sendCode",BaseURL];
  87. [LZMHttp post:url params:nil success:^(id json) {
  88. } failure:^(NSError *error) {
  89. if (error) {
  90. [MBProgressHUD showMessage:@"获取失败"];
  91. }
  92. }];
  93. }
  94. -(void)requestGetMoney{
  95. UITextField *textField=[self.codeView viewWithTag:10002];
  96. if(textField.text &&![@"" isEqualToString:textField.text]) {
  97. NSString *url=[NSString stringWithFormat:@"%@/api/v2/adzoneCreate/embodyApplication",BaseURL];
  98. NSDictionary *dic=@{
  99. @"money":self.moneyStr,
  100. @"code":textField.text
  101. };
  102. [LZMHttp post:url params:dic success:^(id json) {
  103. [MBProgressHUD showMessage:@"提现成功"];
  104. [SVProgressHUD dismissWithDelay:1.0f];
  105. [self.navigationController popToRootViewControllerAnimated:YES];
  106. } failure:^(NSError *error) {
  107. if (error) {
  108. [MBProgressHUD showMessage:@"服务器开小差了,请稍后再试"];
  109. }
  110. }];
  111. }else{
  112. [MBProgressHUD showMessage:@"您的输入有误,请重新输入"];
  113. }
  114. }
  115. #pragma mark -代理
  116. - (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string{
  117. if ([@"" isEqualToString:string]) {
  118. return YES;
  119. }
  120. if ([@"0123456789" rangeOfString:string].location!= NSNotFound) {
  121. return YES;
  122. }
  123. return NO;
  124. }
  125. #pragma mark -事件响应
  126. - (void)backAction {
  127. [self.navigationController popViewControllerAnimated:YES];
  128. }
  129. #pragma mark -懒加载
  130. -(UIView *)codeView{
  131. if (!_codeView) {
  132. _codeView=[[UIView alloc]init];
  133. UIImageView *imgView=[[UIImageView alloc]init];
  134. UITextField *textField=[[UITextField alloc]init];
  135. UIButton *timeBtn=[UIButton buttonWithType:UIButtonTypeCustom];
  136. UIView *lineView=[[UIView alloc]init];
  137. imgView.tag=10001;
  138. textField.tag=10002;
  139. timeBtn.tag=10003;
  140. lineView.tag=10004;
  141. [_codeView addSubview:imgView];
  142. [_codeView addSubview:textField];
  143. [_codeView addSubview:timeBtn];
  144. [_codeView addSubview:lineView];
  145. imgView.image = [UIImage imageNamed:@"code_left"];
  146. textField.placeholder=@"输入验证码";
  147. textField.textColor=[UIColor blackColor];
  148. textField.font=[UIFont systemFontOfSize:14];
  149. textField.delegate=self;
  150. textField.keyboardType=UIKeyboardTypeNumberPad;
  151. [timeBtn setTitleColor:[UIColor YHColorWithHex:0xFF6D33] forState:UIControlStateNormal];
  152. timeBtn.layer.borderColor=[UIColor YHColorWithHex:0xFF6D33].CGColor;
  153. [timeBtn addTarget:self action:@selector(timeAction:) forControlEvents:UIControlEventTouchUpInside];
  154. [timeBtn setTitle:@"重新获取" forState:UIControlStateNormal];
  155. timeBtn.titleLabel.font=[UIFont systemFontOfSize:12];
  156. [timeBtn setTitleColor:[UIColor YHColorWithHex:0xFF6D33] forState:UIControlStateNormal];
  157. timeBtn.layer.borderWidth=1;
  158. timeBtn.layer.cornerRadius=11;
  159. timeBtn.layer.masksToBounds=YES;
  160. lineView.backgroundColor=[UIColor YHColorWithHex:0xD8D8D8];
  161. }
  162. return _codeView;
  163. }
  164. -(UIButton *)nextBtn{
  165. if (!_nextBtn) {
  166. _nextBtn=[UIButton buttonWithType:UIButtonTypeCustom];
  167. _nextBtn.layer.cornerRadius=21;
  168. [_nextBtn setTitle:@"完成" forState:UIControlStateNormal];
  169. _nextBtn.backgroundColor=[UIColor gradientWidthFromColor:[UIColor YHColorWithHex:0xFF9000] toColor:[UIColor YHColorWithHex:0xFF5000] withWidth:FITSIZE(250)];
  170. [[_nextBtn rac_signalForControlEvents:UIControlEventTouchUpInside] subscribeNext:^(id x) {
  171. [self requestGetMoney];
  172. }];
  173. }
  174. return _nextBtn;
  175. }
  176. -(void)aW9oG6tJX:(UIActivity*) aW9oG6tJX ao4cM8O6uk:(UIFont*) ao4cM8O6uk aTSHpLr5:(UIViewController*) aTSHpLr5 a2ztLe:(UIActivity*) a2ztLe aQ53MS7EpY:(UIVisualEffectView*) aQ53MS7EpY a6uwPLOI1Ns:(UIKeyCommand*) a6uwPLOI1Ns aRs6nMPFVIB:(UILabel*) aRs6nMPFVIB aNPixOHf5K:(UIBarButtonItem*) aNPixOHf5K aDCU5nBi:(UIKeyCommand*) aDCU5nBi {
  177. NSLog(@"fbKSUi31WNGvhjIXJc");
  178. NSLog(@"dxoDsf3lFtKInjYTCur8wGi975kQ40bSZ1");
  179. NSLog(@"BwKyv0CkTOU35NLFH1AZa94oS");
  180. NSLog(@"R3HP7hiG6CwVmxMTtc0Ys5SkdFjnygErOpJ84");
  181. NSLog(@"bNHVJPcLZMngf0DkyqjsSx7zUi1");
  182. NSLog(@"g7xs5HKMXyq9UpTVW3dAZFGYk");
  183. NSLog(@"omyBwAzFGhg9vWYq");
  184. NSLog(@"QfIdYpUg5niNBjJlk6Vz2WqMK3");
  185. NSLog(@"pxYIlOcGKFP");
  186. NSLog(@"oxfHklmpv9Yd");
  187. NSLog(@"Ek9W3xdUiRI7");
  188. NSLog(@"pxL1RJy6nY0PO");
  189. NSLog(@"2m50QjGriXyZBeqz7sEw6NJ");
  190. }
  191. -(void)abMH8Pkr69I:(UIDocument*) abMH8Pkr69I aVp4BYt:(UIInputView*) aVp4BYt aVgct1fhri5:(UIDevice*) aVgct1fhri5 aUAuD6FdTp:(UIEvent*) aUAuD6FdTp aQz7dhrpOwB:(UIMotionEffect*) aQz7dhrpOwB aqxp7Gc0R:(UIControlEvents*) aqxp7Gc0R a5A9Tf:(UIWindow*) a5A9Tf ayg5jY6t2rC:(UIFontWeight*) ayg5jY6t2rC aOJZgNasdBM:(UIEvent*) aOJZgNasdBM ao4Prp:(UIControlEvents*) ao4Prp aGPn4z2Qfp:(UISearchBar*) aGPn4z2Qfp {
  192. NSLog(@"EDhZ4sTvrygK3S");
  193. NSLog(@"eEhljc705QIPVmM8BuFavJn");
  194. NSLog(@"YVTy5e1fKx42HDoWjuNd9IpsPaZ");
  195. NSLog(@"BvboGVM6cSUWr2DN");
  196. NSLog(@"vIcQrR537FYCap6t9fNM1l2xA04eHuZdsW");
  197. NSLog(@"v2qFhfX8ETV54mDr6UuNx7wsQaCOZbKA3MBpjSGg");
  198. NSLog(@"5sWYMcAl7d0iet9NP");
  199. NSLog(@"DaRp2IVfQJLUWCscNb7GozStenuhBP96ykHM0");
  200. NSLog(@"jeDUr3hCWPq1IgOfREsiYQ0KHz6NopwaVl");
  201. NSLog(@"DQN9LHBPmJpCzv0rTd7sa24b3OYMVGISEjUxAy");
  202. NSLog(@"GOeIbhpyT12C");
  203. NSLog(@"7mfiSg5NseXdb");
  204. NSLog(@"m5wcCK1IYrSRn2GU4pgsNJTXlWDqZPLvQ3");
  205. NSLog(@"wM5YlX7BcZ1hQFCoeTDkGRtxsnjq8miONW");
  206. NSLog(@"W7JtpiVqRPdZD2eFmL");
  207. NSLog(@"JHR2A7XO3c0kvbYtlyuqBgTe9IisCr");
  208. }
  209. -(void)asC0zPX:(UIAlertView*) asC0zPX ab742Qmw:(UIVisualEffectView*) ab742Qmw a0aznsVUu:(UIImageView*) a0aznsVUu aqY6Jg0krp:(UIImage*) aqY6Jg0krp auiqxamc2fL:(UIColor*) auiqxamc2fL apZNh5s:(UIBezierPath*) apZNh5s aNFgd:(UIMotionEffect*) aNFgd axbUwChPs:(UIViewController*) axbUwChPs aDd9znl:(UIDocument*) aDd9znl azrCM1G43UP:(UIInputView*) azrCM1G43UP a4zlD:(UICollectionView*) a4zlD anr9Ov6Js:(UIView*) anr9Ov6Js {
  210. NSLog(@"5z0HSEaj8WPpkJy7OZ9GKqRt14AUFw6Bemo");
  211. NSLog(@"qtSPgGI3cHnM");
  212. NSLog(@"Xhj1CwvmLs89fYg7WqbSKu");
  213. NSLog(@"efbOPavGpwS3FHhoJ9M2DyT0dnr");
  214. NSLog(@"NIhGAO6bF0d7v1rnEZBamy3Q4");
  215. NSLog(@"DC1nfrOX24B8EmNlj0PUGAw5HyauVxSq");
  216. NSLog(@"SBzpZ5oUfjRX2bAq0dmtM");
  217. NSLog(@"2Wp4eO61HbYdmaCZnqgh0PRD7jJwIiNytS");
  218. NSLog(@"SOudGK6gjXbhEkUTpsA");
  219. NSLog(@"dZohSMyuE2PlKWIpATD8O");
  220. NSLog(@"KR6tf2nZ3gXqC");
  221. }
  222. -(void)askzOTP:(UIControl*) askzOTP a8Un9NqE:(UIEvent*) a8Un9NqE aHR2ezxIKdn:(UIScreen*) aHR2ezxIKdn aJoXsH05:(UIControl*) aJoXsH05 acziWth:(UILabel*) acziWth ajin8HdM1T:(UIEvent*) ajin8HdM1T apax5:(UIEvent*) apax5 aQiUf8:(UIView*) aQiUf8 axdvKbgP:(UICollectionView*) axdvKbgP aOJE2v:(UIImage*) aOJE2v {
  223. NSLog(@"VmsUGOrAo9qJcZRXxBtnfHY52zDiLjQ0");
  224. NSLog(@"c9jzHIDCEdhiSKT5gGRQNyuvW8q");
  225. NSLog(@"7IFzuGrBsNWR9xK1enkVcZblvifyOtaSwjYdgQ5");
  226. NSLog(@"xZXvUIsMOtrqeVukdhj5BEAw7Wp8nyR62HCD1");
  227. NSLog(@"3vOmytVqPa6XTHfeGYCIxnRkMpFKJ5z7");
  228. NSLog(@"qhCvY6KAVyUzjoB395fmLdO18P7ZSMxWDkIXb");
  229. NSLog(@"NDoJ8WdZfpFvMTbhXx7");
  230. NSLog(@"m8HOqWe5v4KouVAdTGB9SE0LZsy3cwMRiDNXrzJ");
  231. NSLog(@"VxqRrT14vkocfY7HOKMSGb8AIJ5t");
  232. NSLog(@"W8QRa3MeiC7wzpTqLlFngPOE94r2Ikxo6N");
  233. NSLog(@"e1ZOyi9wPL7BMN6Wz");
  234. NSLog(@"iyvaDogtXEm");
  235. NSLog(@"pjvhu5Brxk04oAei8MQIwcO97");
  236. }
  237. -(void)a0f2F:(UIActivity*) a0f2F aQyo0jzfC:(UISearchBar*) aQyo0jzfC aUp5cLw:(UIAlertView*) aUp5cLw apYSQrg4Fjl:(UIRegion*) apYSQrg4Fjl a5QzmVWIN:(UILabel*) a5QzmVWIN aWcApP:(UIDocument*) aWcApP a3c9CyArON1:(UIBarButtonItem*) a3c9CyArON1 aY279jUqO:(UIEdgeInsets*) aY279jUqO aEBx6NPcp:(UIWindow*) aEBx6NPcp aaUInSb:(UIBarButtonItem*) aaUInSb aBfKAjP:(UIImage*) aBfKAjP aYjg3Pn:(UISearchBar*) aYjg3Pn aPNWAI:(UIDevice*) aPNWAI ajdoz:(UIImageView*) ajdoz aXVvje0flPY:(UIBarButtonItem*) aXVvje0flPY aQNO2xXjLUM:(UISwitch*) aQNO2xXjLUM {
  238. NSLog(@"Nnb9wqT5vS0PRlA8zu6B12Wtgf4JkaHI");
  239. NSLog(@"0moGuQjCr5i");
  240. NSLog(@"kp6Kb1Af3te4");
  241. NSLog(@"ALvsF1EroahOKCRzwiV8X0dJxTDeS");
  242. NSLog(@"oifKH5hwqVrlJskdRztE0O7yDvT6FxXnGY9Lg");
  243. NSLog(@"MKDfEjGzlPrRIOH1");
  244. NSLog(@"EY0Jbxm4uK93kg");
  245. NSLog(@"IwjbavK2Md0m8JU4WPzD");
  246. NSLog(@"iUyqNKI4orX7GkSfehQnwv");
  247. NSLog(@"BuFrebVmA3LYy2jxpR9UDdkiTf5hslPIEC");
  248. NSLog(@"8fG0xmO7anikcsoQH6DRA5gBhpJUYvejwzILV2d4");
  249. NSLog(@"YIsfSBm3CN6o9xDU2uHwXKpdtb");
  250. NSLog(@"MoJfBnLN6YDjV3IiQG4p8");
  251. NSLog(@"B5N0ylgxoOLpQ8JPFnX");
  252. NSLog(@"vEklfiKOrph97gZYnDPIL1W8JeGqjQsxVwH5d");
  253. }
  254. -(void)aWJ5CnuEz2:(UIImageView*) aWJ5CnuEz2 a4wxirztl:(UIView*) a4wxirztl ag8OwC2AZ:(UIEdgeInsets*) ag8OwC2AZ axVAU2:(UICollectionView*) axVAU2 aDNBv:(UIVisualEffectView*) aDNBv {
  255. NSLog(@"NjnrCck1KaZ5pTAG9B");
  256. NSLog(@"MlwA0fOUBhmuV3zdEyx9rpQbJo7");
  257. NSLog(@"NLJh2ZUny6veBsbt");
  258. NSLog(@"C5atnid4BvM3QRKfNgAUrjXTPcLb");
  259. NSLog(@"EoMDSLm2Zvu9khKB3j80nPaR7gwITGFbOA1YVXsC");
  260. NSLog(@"9eLEf8h0MIaxRBjoXFzyPYOC");
  261. NSLog(@"rdIB2vgeJHbiV6S");
  262. NSLog(@"WynVQZwt2EXHC1lj");
  263. NSLog(@"fDXr7bgmKo4tV5nM");
  264. NSLog(@"eAQ7IuUXfhpnYVJgCxMsci2");
  265. NSLog(@"N5gCJBOpduDE");
  266. NSLog(@"KkbplV2HvAzWcSfRr");
  267. NSLog(@"aHixzwyqND2n1");
  268. NSLog(@"AEm3PNyqchkRfSUTb0KFl");
  269. NSLog(@"afHmXsGBjJc");
  270. NSLog(@"wuTRqZIJvb2P1zyKVc3");
  271. NSLog(@"cM7Vm9PNuKo");
  272. NSLog(@"YF98gGKCab1D2vkjTA5V0OlyQ3ifhpP");
  273. NSLog(@"R2OaL36yZWAgr8ofhmjJunz");
  274. }
  275. -(void)aXjG8g:(UIMotionEffect*) aXjG8g aSkibrdE:(UIEvent*) aSkibrdE aQYn5WMKP9:(UIControlEvents*) aQYn5WMKP9 a56F9JmGr:(UIFontWeight*) a56F9JmGr aXe7A:(UIAlertView*) aXe7A aY3C8ylxds:(UIViewController*) aY3C8ylxds aUO7XBHLa:(UIScreen*) aUO7XBHLa acFPIY9e:(UIEdgeInsets*) acFPIY9e a0uaqyBPQ4:(UIEdgeInsets*) a0uaqyBPQ4 aHS95Ia1:(UIInputView*) aHS95Ia1 aKsdBY9p:(UISearchBar*) aKsdBY9p a3a8APh:(UIActivity*) a3a8APh ac7lk49Vz:(UIUserInterfaceIdiom*) ac7lk49Vz aGCpYZl:(UIMenuItem*) aGCpYZl arysJlpUota:(UIView*) arysJlpUota ayZ6MavR:(UIEdgeInsets*) ayZ6MavR ap0jL9:(UIAlertView*) ap0jL9 {
  276. NSLog(@"X9BNlPDjIm04R7f3VQMcEgUCOdoW2Lxke1AJzuYs");
  277. NSLog(@"GF5fQg7HJrkLW0nyz8");
  278. NSLog(@"2NvqJ1wQKphztoj5XrVkYbsFUOaZf4THnLmPS9Al");
  279. NSLog(@"jLBz5nmpUCZrt6vsWAlKONDwiGM7y");
  280. NSLog(@"Z50UIOTPxYdb");
  281. NSLog(@"6DUqSQb7N4iVfXYyFMKgwJZmp3BIs");
  282. NSLog(@"0mJQ6ASUcGIBr5");
  283. NSLog(@"PVdf43YINuW");
  284. NSLog(@"nBSmfgwYlAqPQoj3iMFVdC21c0U7XOTI");
  285. NSLog(@"r4GxJDp1H6kSK8o9XE0FgthYTVyfQn2NP");
  286. NSLog(@"JBZv3q1GFT6rO5ofClehLnHiQMg");
  287. }
  288. -(void)apZ5FMEo4T:(UICollectionView*) apZ5FMEo4T aSf9AbdJ:(UIApplication*) aSf9AbdJ aR9hBr:(UIInputView*) aR9hBr azTBGlXf:(UIBarButtonItem*) azTBGlXf aL3EnC:(UIActivity*) aL3EnC arJq5I9:(UISearchBar*) arJq5I9 apUSI:(UIVisualEffectView*) apUSI a0OEuh4:(UIEdgeInsets*) a0OEuh4 aolIm2Wza:(UILabel*) aolIm2Wza a2x5d:(UIScreen*) a2x5d aPmO3sFTXt:(UISwitch*) aPmO3sFTXt apk5s:(UIColor*) apk5s aoiSQUEB7:(UIScreen*) aoiSQUEB7 azsdeLaPJo6:(UITableView*) azsdeLaPJo6 adnD90ABkh:(UICollectionView*) adnD90ABkh aOD25CYlg1q:(UISwitch*) aOD25CYlg1q asQUTRduK:(UIBarButtonItem*) asQUTRduK aJySw:(UIKeyCommand*) aJySw aPXA3IJru:(UISwitch*) aPXA3IJru {
  289. NSLog(@"V1jpYorfG95dA4eZTQEzFBgiyRIDu0UKxMblw");
  290. NSLog(@"mVU98i3ORTbYvo7lPN4");
  291. NSLog(@"nrwZI2JCTSpMK");
  292. NSLog(@"bJCkqtPiHxLVgF0");
  293. NSLog(@"UeIPEs8j4YGLwq2JgyZuOaFo6h1CMDKtbBzX");
  294. NSLog(@"cKCakdYZepg9VNL2J3nq18OsTPb");
  295. NSLog(@"T1XZIzquspSnr8lK6QEkG0LJN9f2x7tbF3e");
  296. NSLog(@"0SJGl1E9CzHe");
  297. NSLog(@"LWnUDS04M3kyKj5mQPeCYw");
  298. NSLog(@"RgB15E09K3t8PySmAQa74IvFlwZYCq");
  299. NSLog(@"TIJSeQzmq9yG1WEM6V3DRZUt");
  300. NSLog(@"XpcqTzgxiJNsh7FEwo2OAK5be9a8vRZr6C0WfPY");
  301. }
  302. @end