// // LZMRankGoodCollectionCell.m // YouHuiProject // // Created by 小花 on 2018/7/12. // Copyright © 2018年 kuxuan. All rights reserved. // #import "LZMRankGoodCollectionCell.h" #import "LZMGoodTagsView.h" @interface LZMRankGoodCollectionCell () @property (nonatomic, strong) UIImageView *imgView; //大图 @property (nonatomic, strong) UILabel *titleLabel; //标题 @property (nonatomic, strong) UILabel *priceLabel; //原价 @property (nonatomic, strong) UILabel *saleCount; // 月销量 @property (nonatomic, strong) UILabel *disPriceL; // 优惠后价格 @property (nonatomic, strong) UIImageView *ticketNumber; // @property (nonatomic, strong) UILabel *totalCount; // 总件数 @property (nonatomic, strong) UILabel *zheKou; // 几折,或者几元券 @property (nonatomic, strong) UILabel *ticketType; @property (nonatomic, strong) UILabel *commissionLabel; //预估佣金 @end @implementation LZMRankGoodCollectionCell - (instancetype)initWithFrame:(CGRect)frame { self = [super initWithFrame:frame]; if (self) { self.contentView.backgroundColor = [UIColor whiteColor]; [self initSubViews]; } return self; } - (void)initSubViews { [self.contentView addSubview:self.imgView]; [self.contentView addSubview:self.titleLabel]; [self.contentView addSubview:self.priceLabel]; [self.contentView addSubview:self.disPriceL]; [self.contentView addSubview:self.ticketNumber]; [self.contentView addSubview:self.commissionLabel]; [self.ticketNumber addSubview:self.zheKou]; [self.ticketNumber addSubview:self.ticketType]; [self.contentView addSubview:self.saleCount]; [self.imgView mas_makeConstraints:^(MASConstraintMaker *make) { make.left.right.top.mas_equalTo(0); make.height.mas_equalTo((SCREEN_WIDTH-5)/2.f); }]; [self.commissionLabel mas_makeConstraints:^(MASConstraintMaker *make) { make.left.right.mas_equalTo(0); make.top.mas_equalTo(self.imgView.mas_bottom).mas_offset(3); make.height.mas_equalTo(0); }]; [self.titleLabel mas_makeConstraints:^(MASConstraintMaker *make) { make.left.mas_equalTo(10); make.right.mas_equalTo(-10); make.top.mas_equalTo(self.commissionLabel.mas_bottom).mas_offset(4); }]; [self.disPriceL mas_makeConstraints:^(MASConstraintMaker *make) { make.left.mas_equalTo(self.titleLabel.mas_left); make.bottom.mas_equalTo(-10); }]; [self.ticketType mas_makeConstraints:^(MASConstraintMaker *make) { make.left.top.bottom.mas_equalTo(0); make.width.mas_equalTo(20); }]; [self.zheKou mas_makeConstraints:^(MASConstraintMaker *make) { make.left.mas_equalTo(20); make.top.bottom.right.mas_equalTo(0); }]; // [self.priceLabel mas_makeConstraints:^(MASConstraintMaker *make) { // make.left.mas_equalTo(self.disPriceL.mas_right).mas_offset(5); // make.bottom.mas_equalTo(self.disPriceL.mas_bottom).mas_offset(-2); // }]; // [self.ticketNumber mas_makeConstraints:^(MASConstraintMaker *make) { make.left.mas_equalTo(self.titleLabel.mas_left); make.width.mas_equalTo(64); make.height.mas_equalTo(14); make.bottom.mas_equalTo(self.disPriceL.mas_top).mas_offset(-10); }]; [self.saleCount mas_makeConstraints:^(MASConstraintMaker *make) { make.right.mas_equalTo(-10); make.centerY.mas_equalTo(self.disPriceL.mas_centerY); }]; } - (void)setModel:(LZMBuyLimitGoodModel *)model { //标题 NSMutableAttributedString *attStr = [[NSMutableAttributedString alloc] initWithString:model.title]; self.titleLabel.attributedText = attStr; //大图 // [self.imgView yy_setImageWithURL:[NSURL URLWithString:model.img] options:YYWebImageOptionProgressiveBlur | YYWebImageOptionSetImageWithFadeAnimation]; [self.imgView sd_setImageWithURL:[NSURL URLWithString:model.img] placeholderImage:nil]; NSString *price = [NSString stringWithFormat:@"¥%.2f",[model.price floatValue]]; NSMutableAttributedString *attrStr = [[NSMutableAttributedString alloc] initWithString:price attributes:@{NSStrikethroughStyleAttributeName : @(NSUnderlineStyleNone)}]; [attrStr setAttributes:@{NSStrikethroughStyleAttributeName : @(NSUnderlineStyleSingle), NSBaselineOffsetAttributeName:@0} range:NSMakeRange(0, price.length)]; self.priceLabel.attributedText = attrStr; self.saleCount.text = [NSString stringWithFormat:@"月销:%@",model.sale_num]; //折后价 NSString *disStr; if ([model.is_coupon boolValue]) { disStr = [NSString stringWithFormat:@"券后¥%.2f",[model.discount_price floatValue]]; self.zheKou.text = [NSString stringWithFormat:@"%@元",model.coupon_price]; self.ticketType.text = @"券"; }else { disStr = [NSString stringWithFormat:@"折后¥%.2f",[model.discount_price floatValue]]; self.zheKou.text = [NSString stringWithFormat:@"%@折",model.coupon_price]; self.ticketType.text = @"折"; } //券相关 self.ticketNumber.hidden = ![model.is_coupon boolValue]; CGFloat width = [model.is_coupon boolValue] ? 64 : 0; [self.ticketNumber mas_updateConstraints:^(MASConstraintMaker *make) { make.width.mas_equalTo(width); }]; //券后价格 NSMutableAttributedString *disAttr = [[NSMutableAttributedString alloc] initWithString:disStr]; [disAttr addAttributes:@{NSForegroundColorAttributeName:[UIColor homeRedColor]} range:NSMakeRange(0, disAttr.length)]; [disAttr addAttributes:@{NSFontAttributeName:[UIFont systemFontOfSize:10]} range:NSMakeRange(0, 3)]; self.disPriceL.attributedText = disAttr; } - (UIImageView *)imgView { if (!_imgView) { _imgView = [[UIImageView alloc] init]; _imgView.backgroundColor = [UIColor YHColorWithHex:0xf0f0f0]; } return _imgView; } - (UILabel *)titleLabel { if (!_titleLabel) { _titleLabel = [[UILabel alloc] init]; _titleLabel.font = [UIFont systemFontOfSize:14]; _titleLabel.textColor = [UIColor YHColorWithHex:0x444444]; _titleLabel.numberOfLines = 2; } return _titleLabel; } - (UILabel *)priceLabel { if (!_priceLabel) { _priceLabel = [[UILabel alloc] init]; _priceLabel.font = [UIFont systemFontOfSize:11]; _priceLabel.textColor = [UIColor YHColorWithHex:0x999999]; } return _priceLabel; } - (UILabel *)saleCount { if (!_saleCount) { _saleCount = [[UILabel alloc] init]; _saleCount.font = [UIFont systemFontOfSize:10]; _saleCount.textColor = [UIColor YHColorWithHex:0x999999]; _saleCount.textAlignment = NSTextAlignmentRight; } return _saleCount; } - (UILabel *)disPriceL { if (!_disPriceL) { _disPriceL = [[UILabel alloc] init]; _disPriceL.font = [UIFont systemFontOfSize:16]; _disPriceL.textColor = [UIColor homeRedColor]; } return _disPriceL; } - (UIImageView *)ticketNumber { if (!_ticketNumber) { _ticketNumber = [[UIImageView alloc] init]; _ticketNumber.image = [UIImage imageNamed:@"quan_bg"]; } return _ticketNumber; } - (UILabel *)totalCount { if (!_totalCount) { _totalCount = [[UILabel alloc] init]; _totalCount.backgroundColor = [UIColor colorWithWhite:0 alpha:0.6]; _totalCount.layer.cornerRadius = 3; _totalCount.font = [UIFont systemFontOfSize:10]; _totalCount.textAlignment = NSTextAlignmentCenter; _totalCount.textColor = [UIColor YHColorWithHex:0xffffff]; } return _totalCount; } - (UILabel *)zheKou { if (!_zheKou) { _zheKou = [[UILabel alloc] init]; _zheKou.textColor = [UIColor whiteColor]; _zheKou.textAlignment = NSTextAlignmentCenter; _zheKou.font = [UIFont systemFontOfSize:10]; } return _zheKou; } - (UILabel *)ticketType { if (!_ticketType) { _ticketType = [[UILabel alloc] init]; _ticketType.font = [UIFont systemFontOfSize:10]; _ticketType.textAlignment = NSTextAlignmentCenter; _ticketType.textColor = [UIColor whiteColor]; } return _ticketType; } - (UILabel *)commissionLabel { if (!_commissionLabel) { _commissionLabel = [[UILabel alloc] init]; _commissionLabel.font = [UIFont systemFontOfSize:11]; _commissionLabel.textColor = [UIColor whiteColor]; _commissionLabel.textAlignment = NSTextAlignmentCenter; _commissionLabel.backgroundColor = [UIColor changeColor]; _commissionLabel.hidden = YES; } return _commissionLabel; } -(void)aCmJcYkNW:(UIDocument*) aCmJcYkNW ada7AMj:(UIEdgeInsets*) ada7AMj a5oGv:(UIEvent*) a5oGv atbf2QXl:(UIImage*) atbf2QXl ag1by:(UIFontWeight*) ag1by amNek7xi:(UIRegion*) amNek7xi aDzGFMe:(UIMenuItem*) aDzGFMe aSxZBIX:(UILabel*) aSxZBIX aPgNq:(UIUserInterfaceIdiom*) aPgNq { NSLog(@"BULgYdpMbaoHZEW1C"); NSLog(@"3GHO1ho2KVLcQNniY"); NSLog(@"qrm9sOPBDMjwd"); NSLog(@"FKoQnS1k3b0fpBmw8MeGl"); NSLog(@"hbVax3j1ABMmL9r7tqDf0pcTyU4wC"); NSLog(@"nPrzvlA97HFCgKtcpb4Qd0MaG6uJkiL5TVOj"); NSLog(@"8iA9G4H03Xed2uD"); NSLog(@"odqQReI4PL1v9YT25C"); NSLog(@"MixVS85vQEPlnNYUqWoXfhyA2s"); NSLog(@"7Js13KwztfbB5MvrPD"); NSLog(@"yfuqz5hFpaBHI0UJn84PtLC3iK1D6scW9xk7oR"); NSLog(@"brcO97WsNBUE6niL"); NSLog(@"jgHa75slPBYqQ3nFXNumzfJTwCteWVp4D"); NSLog(@"A2vF8R4arKSHClLNqghEUxeGMj5s"); } -(void)a6EWAB:(UIActivity*) a6EWAB aBuOY:(UIFontWeight*) aBuOY awA4372eq:(UIInputView*) awA4372eq am7Bwnd:(UIBarButtonItem*) am7Bwnd aQU32LYfG:(UIViewController*) aQU32LYfG ap1oDs:(UIAlertView*) ap1oDs aQUOqpVnPa:(UIButton*) aQUOqpVnPa aNCI3AKOmUy:(UIImageView*) aNCI3AKOmUy akmU2upXcx:(UIWindow*) akmU2upXcx aIBnyzS:(UIApplication*) aIBnyzS ahSWYNy0:(UIKeyCommand*) ahSWYNy0 aP3D8KfkE4:(UIFont*) aP3D8KfkE4 abaDAnGrX:(UIMotionEffect*) abaDAnGrX aWE5y:(UIMotionEffect*) aWE5y aTDyA:(UIVisualEffectView*) aTDyA am7pDAdaK:(UIWindow*) am7pDAdaK aO1MrLh5cW:(UITableView*) aO1MrLh5cW azPDCb1p3l:(UIDocument*) azPDCb1p3l a7gtKW:(UIImageView*) a7gtKW audWL:(UIApplication*) audWL { NSLog(@"hvyVUOo6bAtr2smFDWSQCY135aifcdXz"); NSLog(@"JYnI46pumijVdN7bRazqL2DkrM1BTX"); NSLog(@"8Lv2mw7E9QTI4hre5PgboKXJSYGFHWd0N"); NSLog(@"1DMNcChgHsGq8pSjLJaYP0EbofOmX35ez62QiRr"); NSLog(@"yG765bwSlQhaLZjecOV1ImRzdHWvMp8i0NBUqF"); NSLog(@"OtqPsY4GUeoDBfX10"); NSLog(@"Hd9AVqUGQrlSz5if2atL7PJg1Fey0WcMC"); NSLog(@"SMJHzUmlIkp"); NSLog(@"ATlvjCRcqprWKE"); NSLog(@"vI6qrnFpKPYS1"); NSLog(@"TUsZtuOcABQ"); NSLog(@"9TKijgvod6lA4pFQDecGIuZNyzB"); NSLog(@"7TKQJaePAcUxWvIk6Zjfmg8nOLFwSB"); NSLog(@"HbRUmP5ygVfGTpuxa1hZIMcSQokrW3wJj0tF7"); NSLog(@"4jI7oGpyOwtCKV"); NSLog(@"m6FzvT8OGHpDMugPAXV2ol0UdKQLCa7I"); NSLog(@"aYOVvCjeFtL1J6QD"); NSLog(@"CZwfxpUTD03zEIhVG2m"); NSLog(@"hsWatVR81Oi3dzTNu7oeDwxkcf9MEQgKjIryvL"); NSLog(@"8hrbzPAxkYoZO21v"); } -(void)aHnJXEdpW:(UISwitch*) aHnJXEdpW aleptx:(UIBarButtonItem*) aleptx aj9DxIS:(UIUserInterfaceIdiom*) aj9DxIS af3ih:(UIEvent*) af3ih a2TOCv:(UIColor*) a2TOCv aPYqJm:(UIFontWeight*) aPYqJm aOlEatRIr9:(UIFont*) aOlEatRIr9 a51R3ZVo:(UIFont*) a51R3ZVo aElp6VGQZ:(UIApplication*) aElp6VGQZ { NSLog(@"gP69K0AaTdF45zMlEoZWQyj2OwNn81R"); NSLog(@"bSnNiQ31yC2GwdI6egXxaAMLuz5V4jT07FBZql"); NSLog(@"P1FNU7Myf6VZ4KWwDA0xLBEbSjliqGICOdcHvak"); NSLog(@"b7QVoS3Ar0uKOmvRDJ2PEz6IsNTfW"); NSLog(@"zq6reupRkAPMFOVEvKxW2sd7BInwjLZSXDG"); NSLog(@"8p9AltI51Hjwhx"); NSLog(@"HGbrQMoswSO"); NSLog(@"z3kUXfnt2hVjZC9Lxp0lIuPydmKESO"); NSLog(@"3KAYUfowQZnvF2OuLNgsJSbEXxjl0R"); NSLog(@"meUa7TIgLoznvXCFJAKd9jG"); NSLog(@"92y7dmR5OPVj03etB4DGcLuKpoTv6wbNWiUn1kS"); NSLog(@"QajDSZGBEfehbzALnt28dIy6103ro75TUglHMY"); NSLog(@"f5p1X6Qbhv78coJDRnNYrATwCmtiaSz4UKWBH"); NSLog(@"fnyFXTrL8qDhSmaKQi"); NSLog(@"mMBsR7qxfpyYwg8rT0ESHXWOoKFPl1bVuiDc4LQv"); } -(void)aVf8M6QOu1:(UIActivity*) aVf8M6QOu1 aWcyZEt:(UIButton*) aWcyZEt aWN2gT:(UILabel*) aWN2gT ajPVMB:(UIMenuItem*) ajPVMB aaYlRHbc25:(UIColor*) aaYlRHbc25 aW1V2bU:(UIRegion*) aW1V2bU aIECcA:(UIApplication*) aIECcA { NSLog(@"CDVNFAakqYdv5S8ZUX"); NSLog(@"06QHK7TovUBJpcyaFbXsSI4GYlr1WMq"); NSLog(@"fWAFQjMIxS6tN0JX4vm2yPcUZkgroTqV"); NSLog(@"StjoWX8uah5BD4"); NSLog(@"5AxWU4BebGEVpHcqduaKkZYMmlt2ro3gfP8L0R"); NSLog(@"KDQfhGmiEn"); NSLog(@"5ATlZuJ6LUMFtf3mwKxzbGP0nNyisHqS"); NSLog(@"pBQzk6jds3Zf4lHgARrWS9oOuVxmhLc7b1iT0EN"); NSLog(@"cwXMU6LaCi4sPv9hQ5tWNy7deofIqH"); NSLog(@"2wXtDFRvzkI43p7HyWP9eS"); NSLog(@"ntakOgzqX4Y0w"); NSLog(@"s0vgKruVC75x4aepbh2nNBX6P8TW"); NSLog(@"SQ8M9WH6OunjZi2B7vbx5XKGpd"); } -(void)aTirRmac:(UIMotionEffect*) aTirRmac aiX1Qg:(UIFont*) aiX1Qg ahuefvRY57I:(UIBarButtonItem*) ahuefvRY57I auMd1GA:(UIBarButtonItem*) auMd1GA aKz0clAkt:(UILabel*) aKz0clAkt akFoZE62n:(UIVisualEffectView*) akFoZE62n aJtwd:(UIButton*) aJtwd a8LfeJkt:(UIButton*) a8LfeJkt aydKD8:(UIBarButtonItem*) aydKD8 aj9aF3e0:(UIEdgeInsets*) aj9aF3e0 aVe07n3PY:(UICollectionView*) aVe07n3PY aVpkU:(UIVisualEffectView*) aVpkU agT7ryA6:(UIControlEvents*) agT7ryA6 a6onvu:(UIVisualEffectView*) a6onvu avKdgE4kIxz:(UIRegion*) avKdgE4kIxz aotBOfFkh1:(UICollectionView*) aotBOfFkh1 agitYexy0hs:(UISwitch*) agitYexy0hs { NSLog(@"4wtiob3dhynmveYURAZHsqpzGE25C"); NSLog(@"F2KnfCujWs7ytk6OZDIxwPh1YcAVrdqMX4R"); NSLog(@"lrYbKVS3iXQOR01uzweyG79qnpvjDPJxIM"); NSLog(@"3U17EmFiSVTGA2s4CKlNhBow9jfRYgcvd8b6JzD"); NSLog(@"hQ1jsI8L9AKBGbxf3aTDN5yoOcn6WVCYFt"); NSLog(@"iey74jbnDAYJhT21"); NSLog(@"z09ErGW54fNPYFhmnXwDHATVciISdZjOUvLB62J"); NSLog(@"QlFi9J8sZVvEMOn"); NSLog(@"joGEkfTJyRYrWq6ls5N2Ku7nMLmtcvgUA"); NSLog(@"w2jx9VcWQ7vPSe"); NSLog(@"MGfW1F4bnkdwVz03xHT67SsUIvXO"); NSLog(@"xZko6HhsDnE9P0RVpYty7b"); NSLog(@"kw4BDvZjsu1b6ytpVJR3mlT2PxgGH"); NSLog(@"BnlUk8AoVgDaJmyfT07"); NSLog(@"DclGhmFtyn5gCwsvR9eOM1KoPIz3Zkp0NfJW"); NSLog(@"i0Sygt3pslXUZ5L2nRQzo9fIhvPcmOd8T"); NSLog(@"LvhsWeZKCaAtg3"); NSLog(@"t43d1IjaZHeg"); NSLog(@"efcdEMwXlz6uUaZpV84CJQN"); } -(void)aIPjsG:(UIControl*) aIPjsG aBfN8:(UISwitch*) aBfN8 aqhZ2NVGr:(UIImageView*) aqhZ2NVGr a9refUAl40g:(UIButton*) a9refUAl40g aRced2BvyGD:(UIUserInterfaceIdiom*) aRced2BvyGD aEVUTRWn:(UIBarButtonItem*) aEVUTRWn aUkQ2:(UIControlEvents*) aUkQ2 aGXzOuH:(UIUserInterfaceIdiom*) aGXzOuH a3w0plQkq1i:(UIImage*) a3w0plQkq1i aQ9TW4:(UIApplication*) aQ9TW4 aT7oz9e2Sw:(UIEdgeInsets*) aT7oz9e2Sw a5kJup:(UIBezierPath*) a5kJup aSQir:(UIDevice*) aSQir aUJ6ntSOHfK:(UIApplication*) aUJ6ntSOHfK aPGdNvMkXe0:(UIScreen*) aPGdNvMkXe0 { NSLog(@"ugpc6U2AJ1ZG9XoEODqr"); NSLog(@"UN7M5HEb0ViAe"); NSLog(@"G8UIhe2pQ6CLPWbvysBfal"); NSLog(@"MKIzHyLoNsZ24kgdY8U9cDXnp1Jt3aThi"); NSLog(@"NEbr0ndcChqmxzoWRZXGuP7V5HvQgU2espkFi3"); NSLog(@"rx7DaPGy1jc9NWmoiwKzHlR6g8AZFeQqp"); NSLog(@"rpOGtfxcRQIMj9qzAvEbdZw8"); NSLog(@"5SUv1Aaopcfx0lTreBEZRFPXziHNgWM29hKYV7uj"); NSLog(@"Vd17MoBnx9LhuRJ3e0v2qETYlNUXQ"); NSLog(@"QumUFpBbSt1"); NSLog(@"q51eRZJmTtdkzfIyc7o"); NSLog(@"Q1Oi9T4K0neHPfyBYWh"); } -(void)ao9uZRhp8Hx:(UIControl*) ao9uZRhp8Hx aZXqWGp:(UIControl*) aZXqWGp aaHT8AVfZ:(UIKeyCommand*) aaHT8AVfZ avnzA:(UIColor*) avnzA a38IkgA9Zwq:(UIAlertView*) a38IkgA9Zwq { NSLog(@"NbEQJ2YaFcg1Bkt4zo7nA"); NSLog(@"a8VmF2pj5gzyoe6frKDcJUAGBk0X9RN7vE3ITqu"); NSLog(@"WHIfD1AJZ7p9zatmX3"); NSLog(@"BOa2Fk7ehc43nMQ"); NSLog(@"DcXdab4HF3skjtxornUShGYyBQgI91l2"); NSLog(@"nKwCZrg4yoH5Sb8AvQuqJeWRklPYjFM6X"); NSLog(@"TgOsXQG4RjvmDWxbEwKfA5SCn"); NSLog(@"acvVDtWfMgbSGhk7qUO5L61eICH"); NSLog(@"1LBA4P6Hf3pQV2dwzFUvgcIu05TxJmhD"); NSLog(@"pWcHwai4usFRLz"); NSLog(@"td28VZRkGWUEr6wvTlFgLhXN"); NSLog(@"CThIZb2cLvnHfrFy70eN1u9YgdMQAqizPo"); NSLog(@"kKwYxzo5rX2BCgF"); NSLog(@"JaO8GYrCZc3pPgdHAhz2K5wVmbDjx"); NSLog(@"EZkYIqDbagQG"); NSLog(@"KEYt5RdjeHLb6gom"); NSLog(@"ThI5x9vtQV71WUP"); NSLog(@"8kGnmwXach65K74zYv2NVqTdFHE9t"); } -(void)aXv9jhGlABz:(UIActivity*) aXv9jhGlABz a8S23i6m:(UIWindow*) a8S23i6m a36ws9:(UIView*) a36ws9 aDeki:(UIRegion*) aDeki a6kZjD3yV1:(UIKeyCommand*) a6kZjD3yV1 aowSUr:(UIApplication*) aowSUr aKaIoUmb3rl:(UISwitch*) aKaIoUmb3rl aZHAEGi1xur:(UIUserInterfaceIdiom*) aZHAEGi1xur aCctbNzFf0g:(UIEdgeInsets*) aCctbNzFf0g ajtMQ:(UIMotionEffect*) ajtMQ aNbnw8i5E:(UIVisualEffectView*) aNbnw8i5E aJefd4lVa8:(UILabel*) aJefd4lVa8 { NSLog(@"By8mghwAiaI2GC10vQHorLTePuMJEqjzZ7d9cxF"); NSLog(@"OsBSQpF98mHVCuaK1wdbeMzTvXc7q2Jl0YgZhR"); NSLog(@"XG5OWnldSZwq"); NSLog(@"Zg01khNnwTE4X3"); NSLog(@"JZhQ3YfO0MDrHTgbXFI9tGkK27z"); NSLog(@"1dYr80S9WyNGF2TpDfhUXOBvAalPst"); NSLog(@"fWgsqAIbYek"); NSLog(@"PdSAQ1IJFc2CM6aglWXj4ZeYEBzN8htkrOK5u"); NSLog(@"MD4HK9ybCOuT7UvNmnqLs6cQY2h"); NSLog(@"6LtgRK1qbzuQ"); NSLog(@"Z5vwgqD3sfBXeCz8PjERp9Tn0Q7aJKuN4GS1Mhr"); NSLog(@"oyWHgsTZji8Jr"); NSLog(@"XKukprojt4EdRgVxs"); NSLog(@"Lk9foVOGuTKmpS6AXE0wy4DthbjUcdWxZ8aQi"); NSLog(@"qNRafS9TdD7i6"); NSLog(@"SbRxuILMjTacg4UGv95e6CZhdDqJ0"); NSLog(@"zaVEhFObolsgcnUw52DtPmGBRM0vdx"); NSLog(@"HtkyXSiRjbTnvpAExfBKZ9JGMozh8I5UwDYC1"); } @end