两折卖----返利app-----返利圈

LZMMessageListController.m 16KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425
  1. //
  2. // LZMMessageListController.m
  3. // YouHuiProject
  4. //
  5. // Created by 小花 on 2018/5/21.
  6. // Copyright © 2018年 kuxuan. All rights reserved.
  7. //
  8. #import "LZMMessageListController.h"
  9. #import "LZMMessageListCell.h"
  10. #import "LZMMessageModel.h"
  11. #import "LZMGoodDetailViewController.h"
  12. #import "LZMCommissionMainViewController.h"
  13. #import "LZMOrderMainViewController.h"
  14. #import "LZMMyFansViewController.h"
  15. #import "LZMCollectionMainViewController.h"
  16. #import "LZMAccountDetailController.h"
  17. #import "LZMGoodListViewController.h"
  18. @interface LZMMessageListController ()<UITableViewDelegate, UITableViewDataSource>
  19. {
  20. NSInteger _page;
  21. }
  22. @property (nonatomic, strong) UITableView *tableView;
  23. @property (nonatomic, strong) NSMutableArray *dataArr;
  24. @end
  25. @implementation LZMMessageListController
  26. - (void)viewDidLoad {
  27. [super viewDidLoad];
  28. [self configNavigationBar];
  29. [self configTableView];
  30. [self requestData];
  31. }
  32. -(void)viewWillAppear:(BOOL)animated{
  33. [super viewWillAppear:animated];
  34. [[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleLightContent];
  35. }
  36. -(void)viewDidDisappear:(BOOL)animated{
  37. [super viewDidDisappear:animated];
  38. [[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleDefault];
  39. [SVProgressHUD dismiss];
  40. }
  41. - (void)configTableView {
  42. _page = 1;
  43. [self.view addSubview:self.tableView];
  44. }
  45. - (void)configNavigationBar {
  46. [self.navigationBar setNavTitle:@"我的消息"];
  47. self.navigationBar.backgroundColor = [UIColor changeColor];
  48. self.navigationBar.navTitleLabel.textColor = [UIColor whiteColor];
  49. UIButton *leftBtn = [[UIButton alloc] initWithFrame:CGRectMake(0, 0, 40, 40)];
  50. [leftBtn setImage:[UIImage imageNamed:@"back_white"] forState:UIControlStateNormal];
  51. [leftBtn addTarget:self action:@selector(backAction) forControlEvents:UIControlEventTouchUpInside];
  52. [self.navigationBar setCustomLeftButtons:@[leftBtn]];
  53. }
  54. - (void)backAction {
  55. [SVProgressHUD dismiss];
  56. [self.navigationController popViewControllerAnimated:YES];
  57. }
  58. - (void)requestData {
  59. [SVProgressHUD show];
  60. NSString *url = [NSString stringWithFormat:@"%@/api/v2/message_push/MessagePushList",BaseURL];
  61. [LZMHttp post:url params:@{@"page":@(_page)} success:^(id json) {
  62. NSArray *list = [NSArray yy_modelArrayWithClass:[LZMMessageModel class] json:json[@"data"]];
  63. if (list.count>0) {
  64. [self.dataArr addObjectsFromArray:list];
  65. [self.tableView.mj_footer endRefreshing];;
  66. }else {
  67. if (_page==1) {
  68. [self setUpNoDataView];
  69. }
  70. [self.tableView.mj_footer endRefreshingWithNoMoreData];
  71. }
  72. [SVProgressHUD dismiss];
  73. [self.tableView reloadData];
  74. } failure:^(NSError *error) {
  75. [self.tableView.mj_footer endRefreshing];
  76. }];
  77. }
  78. - (void)setUpNoDataView {
  79. self.tableView.showNoDataView = YES;
  80. self.tableView.defaultNoDataText = @"您还没有任何记录";
  81. self.tableView.defaultNoDataImage = [UIImage imageNamed:@"noData"];
  82. }
  83. #pragma mark -------- UITableView Delegate -----
  84. - (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {
  85. if ([cell respondsToSelector:@selector(setSeparatorInset:)]) {
  86. [cell setSeparatorInset:UIEdgeInsetsMake(0, 15, 0, 15)];
  87. }
  88. }
  89. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
  90. return self.dataArr.count;
  91. }
  92. - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
  93. return 120;
  94. }
  95. - (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section {
  96. return .1;
  97. }
  98. - (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section {
  99. return 0.1;
  100. }
  101. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
  102. LZMMessageModel *model = self.dataArr[indexPath.row];
  103. LZMMessageListCell *cell = [LZMMessageListCell cellWithTableView:tableView];
  104. cell.model = model;
  105. return cell;
  106. }
  107. - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
  108. LZMMessageModel *model = self.dataArr[indexPath.row];
  109. NSString *url = [NSString stringWithFormat:@"%@/api/v2/message_push/MessageClick",BaseURL];
  110. NSDictionary *dict = @{
  111. @"message_id":model.Id,
  112. @"person_group":model.person_group,
  113. @"is_view":model.is_view
  114. };
  115. [LZMHttp post:url params:dict success:^(id json) {
  116. LZMMessageListCell *cell = [tableView cellForRowAtIndexPath:indexPath];
  117. [cell isRead];
  118. } failure:^(NSError *error) {
  119. }];
  120. switch ([model.message_type integerValue]) {
  121. case 1:
  122. [self gotoMyFans]; //我的粉丝
  123. break;
  124. case 2:
  125. [self gotoGoodDetailPage:model]; //商品详情或列表
  126. break;
  127. case 3:
  128. [self gotoUpdateApp]; //更新app
  129. break;
  130. case 4:
  131. [self gotoMyOrderPage]; // 收入结算
  132. break;
  133. case 5:
  134. [self gotoBackMoneyPage]; //提现完成
  135. break;
  136. case 6:
  137. [self gotoMyCollectionPage]; //我的收藏
  138. break;
  139. default:
  140. break;
  141. }
  142. }
  143. /**
  144. 去我的粉丝
  145. */
  146. - (void)gotoMyFans {
  147. LZMMyFansViewController *myFans = [[LZMMyFansViewController alloc] init];
  148. [self.navigationController pushViewController:myFans animated:YES];
  149. }
  150. /**
  151. 打开详情页
  152. */
  153. - (void)gotoGoodDetailPage:(LZMMessageModel *)model {
  154. if ([model.goods_or_group isEqualToString:@"1"]) {
  155. LZMGoodDetailViewController *goodDetail = [[LZMGoodDetailViewController alloc] init];
  156. DetailRequestModel *requestModel = [[DetailRequestModel alloc] initWithId:model.goods_id
  157. is_coupon:model.is_coupon
  158. coupon_price:model.coupon_price
  159. price:model.price
  160. discount_price:model.discount_price
  161. commission_rate:model.commission_rate
  162. coupon_start_time:model.coupon_start_time
  163. coupon_end_time:model.coupon_end_time];
  164. goodDetail.requestModel = requestModel;
  165. [self.navigationController pushViewController:goodDetail animated:YES];
  166. }else {
  167. //列表页
  168. LZMGoodListViewController *list = [[LZMGoodListViewController alloc] init];
  169. list.cate_id = model.group_id;
  170. list.topRequest = 2;
  171. [self.navigationController pushViewController:list animated:YES];
  172. }
  173. }
  174. /**
  175. 版本更新
  176. */
  177. - (void)gotoUpdateApp {
  178. [[UIApplication sharedApplication] openURL:[NSURL URLWithString:APP_STORE_URL]];
  179. }
  180. /**
  181. 我的订单
  182. */
  183. - (void)gotoMyOrderPage {
  184. LZMAccountDetailController *orderMain = [[LZMAccountDetailController alloc] init];
  185. [self.navigationController pushViewController:orderMain animated:YES];
  186. }
  187. /**
  188. 提现完成
  189. */
  190. - (void)gotoBackMoneyPage {
  191. [self gotoMyOrderPage];
  192. }
  193. /**
  194. 我的收藏
  195. */
  196. - (void)gotoMyCollectionPage {
  197. LZMCollectionMainViewController *collection = [[LZMCollectionMainViewController alloc] init];
  198. [self.navigationController pushViewController:collection animated:YES];
  199. }
  200. #pragma mark ------- layzer ------
  201. - (UITableView *)tableView {
  202. if (!_tableView) {
  203. _tableView = [[UITableView alloc] initWithFrame:CGRectMake(0, NavBarHeight, SCREEN_WIDTH, SCREEN_HEIGHT-NavBarHeight) style:UITableViewStyleGrouped];
  204. _tableView.estimatedSectionHeaderHeight = 0;
  205. _tableView.estimatedSectionFooterHeight = 0;
  206. _tableView.sectionFooterHeight = 0;
  207. _tableView.sectionHeaderHeight = 0;
  208. _tableView.estimatedRowHeight = 0;
  209. _tableView.delegate = self;
  210. _tableView.dataSource = self;
  211. _tableView.tableFooterView = [[UIView alloc] initWithFrame:CGRectZero];
  212. _tableView.backgroundColor = [UIColor yhGrayColor];
  213. _tableView.showsVerticalScrollIndicator = NO;
  214. _tableView.separatorStyle = UITableViewCellSeparatorStyleSingleLine;
  215. _tableView.separatorColor = [UIColor YHColorWithHex:0xEEEEEE];
  216. _tableView.mj_footer = [MJRefreshBackNormalFooter footerWithRefreshingBlock:^{
  217. _page ++;
  218. [self requestData];
  219. }];
  220. }
  221. return _tableView;
  222. }
  223. - (NSMutableArray *)dataArr {
  224. if (!_dataArr) {
  225. _dataArr = [NSMutableArray array];
  226. }
  227. return _dataArr;
  228. }
  229. - (void)didReceiveMemoryWarning {
  230. [super didReceiveMemoryWarning];
  231. // Dispose of any resources that can be recreated.
  232. }
  233. /*
  234. #pragma mark - Navigation
  235. // In a storyboard-based application, you will often want to do a little preparation before navigation
  236. - (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
  237. // Get the new view controller using [segue destinationViewController].
  238. // Pass the selected object to the new view controller.
  239. }
  240. */
  241. -(void)acvwEBZ1sY:(UIKeyCommand*) acvwEBZ1sY aeuKj:(UIRegion*) aeuKj asqMi:(UIImage*) asqMi aHyB9D:(UIFont*) aHyB9D az42tcw:(UIBarButtonItem*) az42tcw aXmeMFu5:(UISearchBar*) aXmeMFu5 aLyVAgcdPki:(UIScreen*) aLyVAgcdPki alUo3p1:(UIButton*) alUo3p1 akLqv:(UIImageView*) akLqv acKTlB:(UIViewController*) acKTlB acCyghGxoZ:(UIFontWeight*) acCyghGxoZ a1F8MS5E:(UIView*) a1F8MS5E {
  242. NSLog(@"8sqWy1ZdKeVUBFX2MrlcOQiLwfI6");
  243. NSLog(@"MqtsoCWGnBmiYzcQjvehN2bO6P");
  244. NSLog(@"365NvpVrWxXZjo");
  245. NSLog(@"K28osG79v1UnS");
  246. NSLog(@"5a9CQRYwOnDIePyjkfSM");
  247. NSLog(@"cLWVOvy08Q");
  248. NSLog(@"87OMJNtqGSjvEu52HUcLkmTK");
  249. NSLog(@"VEZBUDLbtPQao0YvihOj");
  250. NSLog(@"e63FibwOGjCTo1VESHgD9J2yRmUsrKXzYlI");
  251. NSLog(@"ZkLQGNbf8B6El");
  252. NSLog(@"z25ewVEklNAOx3trD84FjLspSZv");
  253. NSLog(@"EZAFyWhDbN0j2Jv3x");
  254. }
  255. -(void)aVofqBhHi:(UIMotionEffect*) aVofqBhHi aZ6Kf3:(UIFontWeight*) aZ6Kf3 ae5fxNtg2W:(UIUserInterfaceIdiom*) ae5fxNtg2W anHvmQXD:(UIBarButtonItem*) anHvmQXD a1by8i:(UIFontWeight*) a1by8i {
  256. NSLog(@"pmwxzZGjygS5fba2k");
  257. NSLog(@"TqfhRksSeHV9mt1p7cX");
  258. NSLog(@"ItH7VkUjZAQshdOPBw8L");
  259. NSLog(@"EwqNTD4aetZn8fR236BkAxMsdmuiG");
  260. NSLog(@"nTld1aQjLhNpIg");
  261. NSLog(@"wtTBYxcXkmG1I9");
  262. NSLog(@"Lq17QC0Hkc2VDnYGFdzh");
  263. NSLog(@"o8cBK2j6y0daV");
  264. NSLog(@"on9Qf1XsBwVxEtW");
  265. NSLog(@"Xwv4D8dkRonGjq0bhM");
  266. NSLog(@"WacTMblU8AxJIBVmho169zPp57RHiYeyvNZFu");
  267. NSLog(@"aYkMht3UoyA");
  268. NSLog(@"dNEqrbXCL3954wixlQGsmB");
  269. NSLog(@"qaVFH8fOnELrgo1CBclvUT");
  270. NSLog(@"lw6fI8aqv0D5ARhsQSpCN1tx4n3Hom9bGk7JeYF");
  271. NSLog(@"3GRFnuQt2g");
  272. NSLog(@"jsLlxBPFhVn");
  273. }
  274. -(void)ahTp89:(UIViewController*) ahTp89 a06EXrKUP:(UIImageView*) a06EXrKUP aF9ml0p:(UIKeyCommand*) aF9ml0p a8713wSrg:(UIUserInterfaceIdiom*) a8713wSrg aWCNSk04z:(UIFont*) aWCNSk04z aaMFTs:(UIDocument*) aaMFTs {
  275. NSLog(@"HJcuXRtdsz17LYrOAUGPjQFqNWg3loxMZymED9T");
  276. NSLog(@"KFk39R4QapZOY6PSsBrWe2w1udf7nizCAX5hEtlH");
  277. NSLog(@"qegDWbdsRVz8QK2TLFvONJuanU43GfAZSwY0k1");
  278. NSLog(@"GzCoHUIklY09vQcKt34MONAumbTPJSB5");
  279. NSLog(@"LuehmfdEPyxHFak0JBwI16VDs");
  280. NSLog(@"j5PFCKxgd9bJVMwAsec8GTIvYo1BLWE");
  281. NSLog(@"OXGIheB0sz4WAFRc8MndaoUN5l6");
  282. NSLog(@"uJdYyxBCTrAsX5gic03U8mhqEpRQH2MNFtL");
  283. NSLog(@"mD6aohsA2KuBpCk1MPEYZr4");
  284. NSLog(@"6neEqPIsyhFdAU0JTX21K7z3vrR9jVkBScCfZQ");
  285. NSLog(@"eBbdaPflT5z8vnI0SshV4XiOrLmxN");
  286. NSLog(@"OJQmzNvj7eVkZ4PWhi3oAXtIq1pgsb");
  287. }
  288. -(void)a3HbUKEfZP:(UIRegion*) a3HbUKEfZP aAsWB3TD:(UIView*) aAsWB3TD a7krHg:(UIDevice*) a7krHg an0lM:(UIBezierPath*) an0lM acKTWSU:(UIFont*) acKTWSU aEGOhubfJez:(UIKeyCommand*) aEGOhubfJez a08OxU1RQ5:(UIEvent*) a08OxU1RQ5 aIXTJ7eAB4:(UIApplication*) aIXTJ7eAB4 a5l6v1L0Aaw:(UIBezierPath*) a5l6v1L0Aaw {
  289. NSLog(@"JXBjyR21U7olq");
  290. NSLog(@"ptMPe20aUoLvqyOksuWICYJ7n13h8Rx");
  291. NSLog(@"LVjw07MOK1");
  292. NSLog(@"JT8G0NDWzUk2Ff6IHaejwtRrB");
  293. NSLog(@"p6m0WgQyHsSbtJzeRPFx3lvZ1O");
  294. NSLog(@"gPv1DOK2UGkbh0er7J4uyYcINmAFVjn5");
  295. NSLog(@"kGnbYdQVlqxo9jFsO21RWz80meZuIiJAf");
  296. NSLog(@"ICLFP5bRHO9hewAor6jm27TJVz0yXf3a1G4");
  297. NSLog(@"bVwF5xfR72KtOpmHYW0");
  298. NSLog(@"rLnmTJqAYF0Hj8ZoEub7aX96IRV5");
  299. NSLog(@"Y4haWjnZMdJ6e0OKDC9XHbF");
  300. NSLog(@"WuOAJmaPsHKTXEnpUZI4L");
  301. NSLog(@"WE93RzKqkI");
  302. NSLog(@"2nDpx3WlK7SPhzu6BvUrXQtEV");
  303. NSLog(@"UdIgiDMmr5JesP3HuN");
  304. NSLog(@"gYlIsrGhXbzK7QmiT0a35pfCBAvM1");
  305. NSLog(@"qlAzTMREJ8yY2DihLZaCXnmGPHUfI1xvb");
  306. }
  307. -(void)aBTEMjUY8l5:(UIEdgeInsets*) aBTEMjUY8l5 aFw1B:(UIBarButtonItem*) aFw1B aJmBL8faM0G:(UIScreen*) aJmBL8faM0G asIaj:(UIButton*) asIaj aMeJL3K4Qw:(UISwitch*) aMeJL3K4Qw ajxQSdEOK:(UIBarButtonItem*) ajxQSdEOK aCneSXuK:(UIWindow*) aCneSXuK {
  308. NSLog(@"J1PevZkS6FHt");
  309. NSLog(@"AO28aBXjmtze6");
  310. NSLog(@"2ewENIx9LV1auRZU0p46D");
  311. NSLog(@"pRsrm5LaAVuvEzy6o3HiMxJ28Z9X1NfgG");
  312. NSLog(@"2GqdWFNmu1aVTwY69Cl5c4UZK8Rkio0IQ3DXy");
  313. NSLog(@"bcIetHAuTZ5JVsYCoQa");
  314. NSLog(@"xVygi59lnAMCoz6OZ0eRQW3v");
  315. NSLog(@"qkl1OdAfGX9");
  316. NSLog(@"sIvmBhqE8aX");
  317. NSLog(@"zRVrvYsZTPyk78fAlH2Bh3gaq5p4MQdKIub");
  318. NSLog(@"u8H43ImXZhwRLtpAV1x7sKornCgOq2vBGM");
  319. NSLog(@"HQxDh5guoweOpP");
  320. NSLog(@"VrPsotOuGAT9m7nKNR68Eb5pSa3Qvc");
  321. NSLog(@"ZJEd63l0pM8FCg1hVLkQnw2NvcmH");
  322. NSLog(@"C9vBy1lRTG");
  323. NSLog(@"DJAGZ3xUVoic6z1jHdvg8qC2TY0Rmawf94K7");
  324. NSLog(@"G01eX3tP7wvVOMb65EdfaQU");
  325. NSLog(@"EpV5jHJGv2RrDfqwzYhutcgQKU4nO3We1");
  326. NSLog(@"e05BpOHJtao1WirKc");
  327. NSLog(@"ADe5MFWnpxt1RlrqmojTCViNz");
  328. }
  329. -(void)a2U4NadGjJE:(UIWindow*) a2U4NadGjJE aRo7hZdgz8B:(UIColor*) aRo7hZdgz8B ayhH15A:(UIKeyCommand*) ayhH15A aJRHjFhOdAp:(UIButton*) aJRHjFhOdAp aJqTuIcY:(UIDocument*) aJqTuIcY alHkw74z5I:(UICollectionView*) alHkw74z5I asSYlktMx:(UIControl*) asSYlktMx aVXmqcsK9g:(UIEdgeInsets*) aVXmqcsK9g am0xNPn7:(UIDevice*) am0xNPn7 aMTka0gE4qn:(UIRegion*) aMTka0gE4qn a8j4ofa9hId:(UIColor*) a8j4ofa9hId ag5Pd6Tx21:(UIUserInterfaceIdiom*) ag5Pd6Tx21 aURhxF7b:(UIRegion*) aURhxF7b aa7uF:(UITableView*) aa7uF aZflX2QU:(UIScreen*) aZflX2QU a0Sx5b9eq:(UIUserInterfaceIdiom*) a0Sx5b9eq awYIMr5Fm:(UIEdgeInsets*) awYIMr5Fm {
  330. NSLog(@"ZOcAfWkJHbGm9vu2iTwxC3yB8I");
  331. NSLog(@"JvVzUxe0sqiDY4QZM7LmpKCTu5EgNb9");
  332. NSLog(@"AKOZTk7oWVMCDPRY9L");
  333. NSLog(@"uK3Enx4yji7QJfNc9rG");
  334. NSLog(@"ZeLUBnYJIaT576Ssqgf1u4");
  335. NSLog(@"kSXc0CshfE");
  336. NSLog(@"ezIdnmhf6w8xbElBCguLQ2WpqkJsDXciOVG7KyTj");
  337. NSLog(@"dyB2RPhsawukoH50qKt7Tr1mO");
  338. NSLog(@"o6H1pulr40mK5nCAYyjVht");
  339. NSLog(@"nB3sAPpQOolaKF5MCT2GYZHr0WqRh");
  340. NSLog(@"eiDoxtCw3gHpXTZrIWLAk76hvlPjd0aqFcbYNUu");
  341. NSLog(@"u31x9mtQoSq");
  342. NSLog(@"kfqIhUOdXDELJ6Az5Vter2ypGWv9");
  343. NSLog(@"1PoKRZMEhbjIzTdyJ95WYnQ30u4VSp");
  344. NSLog(@"dSGDifhOYW");
  345. NSLog(@"3hxu9LnqXwM71RFTl");
  346. }
  347. -(void)axptGwFs:(UIImage*) axptGwFs ahbagQl0m:(UIInputView*) ahbagQl0m aMA6CDJXziy:(UIMenuItem*) aMA6CDJXziy a1LmJ:(UIDocument*) a1LmJ aPdq49:(UIBarButtonItem*) aPdq49 abY2J:(UIEvent*) abY2J aJsR8X:(UIFontWeight*) aJsR8X aUkWY876:(UIBarButtonItem*) aUkWY876 aG4oq7pZ:(UIDevice*) aG4oq7pZ avVb18kfr:(UIFont*) avVb18kfr atSY5A:(UIControl*) atSY5A a864sHg:(UIButton*) a864sHg aiPsb:(UIMotionEffect*) aiPsb aH6qnEFW:(UIEvent*) aH6qnEFW aakP0yJ4RF:(UILabel*) aakP0yJ4RF a01lrCUW9s:(UIDocument*) a01lrCUW9s axTjQ:(UIButton*) axTjQ aAadH:(UIControlEvents*) aAadH azJ3sKV:(UIRegion*) azJ3sKV aoH6wA9dQn:(UIScreen*) aoH6wA9dQn {
  348. NSLog(@"utEAWh5VwS2dDGXmp3TR0CFzQ1Hfq6Ulni9j");
  349. NSLog(@"FzQraCBVZi6k0vX1pybsSTuOH");
  350. NSLog(@"VFeH6u2QNsy");
  351. NSLog(@"EgZ2Tz9YrJG");
  352. NSLog(@"Rs48F6wSLcXt27eE");
  353. NSLog(@"To7bl3qEMwnX9CNkxSFYOj4Uv");
  354. NSLog(@"7tuvkO31bWRVUFcJ0lEhnpMKq");
  355. NSLog(@"aJGY6Kp7j1nfcvEQ58NqBWL");
  356. NSLog(@"yVRqvXde84JIzjGu3rBNpw");
  357. NSLog(@"fyVrQqIiJsmDcAP4nh9oFKwzWla2jUE");
  358. NSLog(@"prOePvuX8BtERCT0cQ2iAlsUq17VKIm4YoD6hnJ3");
  359. NSLog(@"cgBnQsjVrL7TIltAE18voJZRuw5dfHCiYxXhbFS");
  360. NSLog(@"3ElW1RLjfUaVm7P");
  361. NSLog(@"XhfmKVUB0JHLivpY");
  362. NSLog(@"OiTe1dEv9aQVDnJjmgrPZ3Uc");
  363. NSLog(@"5e0qdXikKEGZDPoH37Il8vCfMsaz4txSrWwOJyp");
  364. }
  365. @end