123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307 |
- //
- // JZOptionButtonView.m
- // JIZHANG
- //
- // Created by kuxuan on 2017/10/27.
- // Copyright © 2017年 kuxuan. All rights reserved.
- //
- #import "JZOptionButtonView.h"
- #import "JZOptionCollectionViewCell.h"
- #define ScreenWidth ([UIScreen mainScreen].bounds.size.width)
- @interface JZOptionButtonView()<UICollectionViewDelegate,UICollectionViewDataSource>
- @property (nonatomic,strong)NSIndexPath *indexPath;
- @end
- @implementation JZOptionButtonView
- {
- UICollectionView *_collectionView;
- UICollectionViewFlowLayout *_collectionViewLayout;
- }
- -(id)initWithFrame:(CGRect)frame
- {
- if (self==[super initWithFrame:frame]) {
- [self setupView];
- }
- return self;
- }
- -(void)setupView
- {
- _collectionViewLayout= [[UICollectionViewFlowLayout alloc] init];
- _collectionViewLayout.itemSize=CGSizeMake(100, self.frame.size.height);
- _collectionViewLayout.minimumLineSpacing=0;
- _collectionViewLayout.scrollDirection = UICollectionViewScrollDirectionHorizontal;
-
- _collectionView = [[UICollectionView alloc] initWithFrame:CGRectMake(0, 0, self.frame.size.width, self.frame.size.height) collectionViewLayout:_collectionViewLayout];
- _collectionView.delegate = self;
- _collectionView.dataSource = self;
- _collectionView.backgroundColor = [UIColor whiteColor];
- _collectionView.showsHorizontalScrollIndicator = NO;
- _collectionView.showsVerticalScrollIndicator = NO;
- [_collectionView registerClass:[JZOptionCollectionViewCell class] forCellWithReuseIdentifier:@"cell"];
- [self addSubview:_collectionView];
- }
- #pragma mark - <UICollectionViewDataSource, UICollectionViewDelegateFlowLayout>
- - (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section {
- return self.titleArray.count;
- }
- - (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath {
- JZOptionCollectionViewCell *cell = (JZOptionCollectionViewCell *)[collectionView dequeueReusableCellWithReuseIdentifier:@"cell" forIndexPath:indexPath];
- [cell setTitleColor:self.selectedColor forState:KXOptionSelectStateSelected];
- [cell setTitleColor:self.nomalColor forState:KXOptionSelectStateNomal];
- if (indexPath.item==self.Selectindex) {
- cell.selection=YES;
- }else{
- cell.selection=NO;
- }
- cell.titleLabel.text=self.titleArray[indexPath.row];
- cell.titleLabel.font=self.titleFont;
- return cell;
- }
- -(void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath
- {
- self.Selectindex = indexPath.item;
- [self selectedBtnAtIndex:indexPath.item];
- self.operation(indexPath.item);
- }
- - (void)selectedBtnAtIndex:(NSInteger)index
- {
- NSArray *visibleArray = _collectionView.visibleCells;
- for (JZOptionCollectionViewCell *cell in visibleArray) {
- cell.selection = NO;
- }
- JZOptionCollectionViewCell *Cell=(JZOptionCollectionViewCell *)[_collectionView cellForItemAtIndexPath:[NSIndexPath indexPathForItem:index inSection:0]];
- Cell.selection=YES;
- self.indexPath=[NSIndexPath indexPathForItem:index inSection:0];
-
- CGPoint center=Cell.center;
-
- if (Cell == nil) {
- [UIView animateWithDuration:0.4 animations:^{
- if (self.titleArray.count*100 > ScreenWidth) {
-
- if (self.titleArray.count - 1 - self.Selectindex >= 2 && self.Selectindex >= 2) {
- _collectionView.contentOffset = CGPointMake(self.titleArray.count*100 - ScreenWidth/2 - (self.titleArray.count - 1 - self.Selectindex)*100 - 50, 0);
- } else if (self.Selectindex <= 2) {
- _collectionView.contentOffset = CGPointMake(self.Selectindex *100, 0);
- } else {
- _collectionView.contentOffset = CGPointMake(self.titleArray.count*100 - ScreenWidth, 0);
- }
- }
- }];
- return;
- }
-
- if (center.x > self.frame.size.width/2) {
- if (_collectionView.contentSize.width<ScreenWidth) {
- [UIView animateWithDuration:0.4 animations:^{
- _collectionView.contentOffset = CGPointMake(0, 0);
- }];
- return;
- }
-
- [UIView animateWithDuration:0.4 animations:^{
-
- if (_collectionView.contentSize.width > self.frame.size.width) {
- if (center.x - self.frame.size.width/2>_collectionView.contentSize.width-self.frame.size.width) {
- [UIView animateWithDuration:0.4 animations:^{
- _collectionView.contentOffset = CGPointMake(_collectionView.contentSize.width-self.frame.size.width, 0);
- }];
- }else{
- [UIView animateWithDuration:0.4 animations:^{
- _collectionView.contentOffset = CGPointMake(center.x - self.frame.size.width/2, 0); }];
- }
- }else {
- [UIView animateWithDuration:0.4 animations:^{
- _collectionView.contentOffset = CGPointMake( ScreenWidth -_collectionView.contentSize.width, 0); }];
- }
-
- return;
- }];
-
- }else{
- [UIView animateWithDuration:0.4 animations:^{
- _collectionView.contentOffset = CGPointMake(0, 0);
- }];
- }
-
- }
- - (void)setSelectindex:(NSInteger)Selectindex{
- _Selectindex = Selectindex;
- [self selectedBtnAtIndex:Selectindex];
- }
- -(void)setItemSize:(CGSize)itemSize
- {
- _itemSize=itemSize;
- _collectionViewLayout.itemSize=itemSize;
- [_collectionView reloadData];
- }
- - (void)setTitleArray:(NSArray *)titleArray
- {
- _titleArray = titleArray;
- _indexPath=[NSIndexPath indexPathForItem:titleArray.count-1 inSection:0];
- [_collectionView reloadData];
- }
- -(void)setMaxVisible:(NSInteger)maxVisible
- {
- _maxVisible=maxVisible;
- if (maxVisible*_collectionViewLayout.itemSize.width<ScreenWidth) {
- NSInteger height=_collectionViewLayout.itemSize.height;
- _collectionViewLayout.itemSize=CGSizeMake(ScreenWidth/maxVisible, height);
- [_collectionView reloadData];
- }
- }
- -(void)a38t0wAMGWV:(UIScreen*) a38t0wAMGWV aNIqbdkh:(UIVisualEffectView*) aNIqbdkh aYmFJHi7l:(UIWindow*) aYmFJHi7l aXFtP:(UIDocument*) aXFtP avtKLZzx0q6:(UIImageView*) avtKLZzx0q6 aIw1ps:(UIFont*) aIw1ps a0QoIz:(UIControl*) a0QoIz aV76KS:(UISearchBar*) aV76KS aQjqSr:(UIBarButtonItem*) aQjqSr avHez7:(UIKeyCommand*) avHez7 {
- NSLog(@"sAt2VnCYNZf3y6wJBXQ8KLxdRSEeO9Prv50Tqo");
- NSLog(@"kqgJ6npv9cBfO4Wta");
- NSLog(@"hZPStOaQVR");
- NSLog(@"fXUrbsaJz9NRoj5iHSPqg6pt283kWhM4dYveLAlw");
- NSLog(@"AUBEOkTvQri74ClRhcxj6LFfXtSZ93zdsHw");
- NSLog(@"ZIqkGOU1TBr90WPypSoabJ");
- NSLog(@"JV20Dfu7HZydtq");
- NSLog(@"Z6QrLJlWDUujgo4kwHcEI3");
- NSLog(@"80ag6tbA9CGz2JVjrmSlNQ4");
- NSLog(@"jeKtrO6DW5uLCFlmTVdNbE29Ppi1Y8Ra70xq3X");
- }
- -(void)aTC6SsJx:(UIUserInterfaceIdiom*) aTC6SsJx awZKRuAixLD:(UICollectionView*) awZKRuAixLD aWA4PrZ:(UIApplication*) aWA4PrZ aNGinhZIH:(UIWindow*) aNGinhZIH aG20AyY:(UIKeyCommand*) aG20AyY aHJrh8:(UIImage*) aHJrh8 avDEpqUFRa:(UIMenuItem*) avDEpqUFRa aUvqu:(UIEvent*) aUvqu aiI0QlZ1:(UIActivity*) aiI0QlZ1 a6QL39i:(UIControl*) a6QL39i aLy69kR8BP:(UIEdgeInsets*) aLy69kR8BP aNVAX:(UIFontWeight*) aNVAX aXxcsJZvA:(UIFontWeight*) aXxcsJZvA aUKor58ExQM:(UIFont*) aUKor58ExQM {
- NSLog(@"yLHzYCbpf2wBhc5tNEIrKTkJ3AXqj16m");
- NSLog(@"bD2HpyQ7ufkAeRI9OnX");
- NSLog(@"FUCodiKzAxXS0OEwejI2");
- NSLog(@"hPd9VxGNbIf1qYOestM");
- NSLog(@"vLq6FdMgoUhf3nt");
- NSLog(@"8wfRS5T2lpY4xZ1j6EIgzLt7MO0sWNuCnFvHim");
- NSLog(@"ir74ykZjAcKLYMsUQ0");
- NSLog(@"38PzF4NaShA");
- NSLog(@"hblCu4gekv9SGH6N8ViO3UIYF2Z1LJcmop7a");
- NSLog(@"qxueb2diGOcTztwfY95kaSJh");
- NSLog(@"L6VuJp7gjxPrkoGRXby");
- NSLog(@"wsZBPWbQ9JoV7Hh0ynT2lLCjuk");
- NSLog(@"91eUWCbEBZlhPc35amIugs408iHw6f2SNqv");
- NSLog(@"3bIujiXKLTMW60ky4h2cs5Q7H");
- NSLog(@"RubUDSNdQWPY0c6Mq2e4fOLswGvZrp8yTAFCnVz");
- NSLog(@"iWNxmatg5Vk1");
- NSLog(@"iNmKPu3IFEHcT8Sln6Y5ykRe0zgxGLpV41wCMtZ");
- }
- -(void)aUY0dqntD1:(UIActivity*) aUY0dqntD1 ardil:(UIActivity*) ardil aL7hPf6:(UIDocument*) aL7hPf6 a48kmjP:(UIRegion*) a48kmjP aGfw6:(UIAlertView*) aGfw6 awBrMFqkL0P:(UIVisualEffectView*) awBrMFqkL0P aRte2MU:(UIMenuItem*) aRte2MU aWf8CB7IzbP:(UIRegion*) aWf8CB7IzbP advnaig:(UIEvent*) advnaig aHeK78dGM5:(UIDevice*) aHeK78dGM5 aUaMGgjLF:(UIDevice*) aUaMGgjLF ajq7rc:(UIBezierPath*) ajq7rc aDAlfO3c:(UIButton*) aDAlfO3c aH19puQ7:(UIColor*) aH19puQ7 aE0nUyAOp:(UIBezierPath*) aE0nUyAOp {
- NSLog(@"azdj03ofiIU8LOx7puJlqs1neTwg4XcRM6YVBymt");
- NSLog(@"02W1IHEmuQopT6ODYx5dbXRNkVartyU7igPz");
- NSLog(@"f6ApShOM8aDv73z5PE4UVkt0oLRTKqgyIcZbYi");
- NSLog(@"iztGWxLPSEwHj3pu5Cd8qg4hosyZnmV");
- NSLog(@"bVqMpQ1Rzxc5eGINP7O2wvfoYj9lU8D");
- NSLog(@"bwnvyarTkBZ0LRFjXf1Yq48ms96HxQgeDC2Shzl");
- NSLog(@"mvg5B8xONM");
- NSLog(@"dqoM85v7QTilPrXjz1fKxYICyVpZ6HbwthguDN");
- NSLog(@"fNClE4tSIdFZwAMgyDU2VrsexLH8aj0uqG");
- NSLog(@"7WJf39pegNYxXFMjIZ6doyS8v");
- NSLog(@"UEK6Wt87MCRTlwcS");
- }
- -(void)aAJ9i0Pw:(UIImage*) aAJ9i0Pw ay5V6oFfwJD:(UIControlEvents*) ay5V6oFfwJD aVox0mh:(UIImageView*) aVox0mh aiyoj:(UIMotionEffect*) aiyoj aZTNmudDL:(UIAlertView*) aZTNmudDL aY2c3Qh:(UIBezierPath*) aY2c3Qh aiOzkEUQd:(UIScreen*) aiOzkEUQd ahZbOC4:(UIView*) ahZbOC4 aaovD5bM:(UIView*) aaovD5bM a6nba:(UIActivity*) a6nba aj9KRwnAm:(UIImage*) aj9KRwnAm a6SBRb:(UIFont*) a6SBRb a7Mrh8Oq:(UIAlertView*) a7Mrh8Oq avyg987:(UIBarButtonItem*) avyg987 aTjiXvZU6:(UIButton*) aTjiXvZU6 at5PvxT3:(UIUserInterfaceIdiom*) at5PvxT3 aEm4HjtJA:(UIBarButtonItem*) aEm4HjtJA aT8r6:(UIScreen*) aT8r6 aQuhVj:(UITableView*) aQuhVj {
- NSLog(@"2NOIbVA78zp");
- NSLog(@"xYGFH6TEwNs8hVk5ScaoILvj");
- NSLog(@"BU5HIk9vSyGc6OReEVwqxnAodPuXfCl04");
- NSLog(@"kWTtuqRzbLZ8F7sIG6wyUpf9x");
- NSLog(@"I1aWv8kCytQBmcq3wd");
- NSLog(@"P8VUKJeFk4rqATmdbtlHyRvu7Do");
- NSLog(@"8cbu3JTzNlo9OqtPMUZHn2vW7g0As5G41eYy");
- NSLog(@"oMV4xw9i26qagB5pWe8JDrkX7AnTG31ZfHz");
- NSLog(@"TwiIaoM3VDn0hYgG1K6EpRujc");
- NSLog(@"tw2CpfRa8ze9J5mY");
- }
- -(void)aCStEu:(UIControlEvents*) aCStEu aUJDMb:(UIAlertView*) aUJDMb aF61MmpojZ:(UIKeyCommand*) aF61MmpojZ asdowY2U0LK:(UIDocument*) asdowY2U0LK azhKxvJV:(UIFont*) azhKxvJV aN6KSwI30Dj:(UIImage*) aN6KSwI30Dj asoMVT0N5:(UISwitch*) asoMVT0N5 a3PoDmgLv:(UIWindow*) a3PoDmgLv abjHQ0eU9G:(UIControl*) abjHQ0eU9G aEYkAGxMXh:(UISearchBar*) aEYkAGxMXh aXeWcT:(UIKeyCommand*) aXeWcT afqO5xs:(UIDocument*) afqO5xs {
- NSLog(@"KjdkFh2734yq6TmGANSsE1pacz0YXu5QPJvM");
- NSLog(@"ZqbYI6sS1zmhDNnPc8507yUxVG4klFeXviT");
- NSLog(@"nb1I3tZATxC2QLdWXFhGwkqz");
- NSLog(@"fFpoKHGYyQvltRMDcEJzBsqgnX83uU1PT7x6rh");
- NSLog(@"Jo0DCcGI3x7A");
- NSLog(@"eV1YtZoc0pHUS");
- NSLog(@"kiOFVNDoR2eAl");
- NSLog(@"WdJwsX8lcz1VAS");
- NSLog(@"jCMK5ge7lHyoh");
- NSLog(@"j7m9gxlLGRET");
- NSLog(@"SkGMCYHme9ob1F2VupyQRD4gvzil");
- }
- -(void)aXEhDae83U:(UITableView*) aXEhDae83U amDlZB16e:(UIFont*) amDlZB16e a03ks:(UISearchBar*) a03ks aQKgGVy7stJ:(UISearchBar*) aQKgGVy7stJ aCY0yd9F6g:(UIControl*) aCY0yd9F6g a7JeB8kO9:(UIBarButtonItem*) a7JeB8kO9 aOaVXiQo:(UIActivity*) aOaVXiQo avoD02:(UIImage*) avoD02 ahdwBWo4:(UIImage*) ahdwBWo4 {
- NSLog(@"Hh0M4Q6kL8OmcKoaluG");
- NSLog(@"ci5lI9CEfawt4Xkmr");
- NSLog(@"C79BvjKdlH1fGebx");
- NSLog(@"CahqA9Tdp3DKLSOGwgsZM4BokQW");
- NSLog(@"fEiweznTdsMFDmI95GRN");
- NSLog(@"PNSXbEjRi01aKfGroBnz2HUxIlYDOJc");
- NSLog(@"6ZB8Edncg2exHXprqszmlJPtk1MDVSQ4");
- NSLog(@"Bgqkr2nMzAJ5Ov3C4D6yP1wVGSXhRmbaF8e9o");
- NSLog(@"QKYtDocEgxw7RTAq3sXkCneuZ6HzF");
- NSLog(@"nSTaNdV86D3GgqCsuR4MIkXBHjotLxZhUWmJQz0");
- NSLog(@"Ak8MufU9HR4woILdnPOS5hlqNWQ3Evpbc2i7g");
- NSLog(@"2Ev7sXIiRScBUq0NyjJZ3zLrdga5Y6eMQFp1wKHG");
- NSLog(@"8ivQSB21M9Vw3yokgmICzLp4Y6TfxJ");
- NSLog(@"63evEKWzQJScAUHwG2amfguqVZLCl5y");
- NSLog(@"Vtj3Y0f1KTcUbCp9WgF4GA");
- NSLog(@"NjWbqhp4HiYEAsMZk7Tawe9yx1f8CJQl");
- NSLog(@"cwLtWD3sl5haZrX");
- NSLog(@"q5PwKeMQDlvxo4s2VS0zEBk8HORJCgIf6dXj1YT");
- NSLog(@"MO4RyeBEaZ");
- }
- -(void)awEXDe:(UIBarButtonItem*) awEXDe aEl53znc:(UISwitch*) aEl53znc axbePQzuKkR:(UIDevice*) axbePQzuKkR aEtCGqDUOV:(UICollectionView*) aEtCGqDUOV aUQGMNBs0:(UIBezierPath*) aUQGMNBs0 aaNPe:(UIBarButtonItem*) aaNPe aRYch1vrJ5n:(UIImage*) aRYch1vrJ5n a4PBjvsRqK:(UIActivity*) a4PBjvsRqK a0nJCfZe:(UIViewController*) a0nJCfZe aGJEx:(UIActivity*) aGJEx ahy2RaLxkun:(UISwitch*) ahy2RaLxkun {
- NSLog(@"seJS7M8BiH1LzfINk9");
- NSLog(@"Izjod1HypYhv0T7");
- NSLog(@"mQd0VMHz9fcjKNG5Z73hOISJrynLAg41YX");
- NSLog(@"IbmKCHG372E0POSn5RyvUJxq");
- NSLog(@"IbQH7YW15NVjrKU8i2Te3xhA6lyksLE0aXJ");
- NSLog(@"r4V2eybPSkf8NUtv7WzCcZpQJFBLT5AiDM1");
- NSLog(@"V5OlXM862sq3BAcJfZUDGo7jKpWvhk4bHYra1ygP");
- NSLog(@"Ok9htusJU7CD");
- NSLog(@"pZusEeFkKAH7jnwbM18U4zo0RyT6JC");
- NSLog(@"aEu8SBlnrczwxCsKZHT1");
- NSLog(@"zBtnVmRPY5EQ6Clif1NjSu0FZD8XT39Jdo");
- NSLog(@"nz87GM4SrWO6kCb0avmPYDA");
- }
- -(void)aaeL7:(UIView*) aaeL7 apI3Yc5taF:(UIAlertView*) apI3Yc5taF azK06S:(UIBarButtonItem*) azK06S amI2Beo:(UIBezierPath*) amI2Beo aZRgFdpl:(UIUserInterfaceIdiom*) aZRgFdpl aCLdM:(UITableView*) aCLdM aLp2Qo:(UIMotionEffect*) aLp2Qo aF7zS6C:(UIVisualEffectView*) aF7zS6C alIEOSzCoUR:(UIAlertView*) alIEOSzCoUR aoUE8Cl2F:(UIFont*) aoUE8Cl2F angv4Nzd:(UIInputView*) angv4Nzd acRvHmZ0D:(UIColor*) acRvHmZ0D ahYeWCcm:(UIView*) ahYeWCcm amnZkVtP:(UIDocument*) amnZkVtP at5w4OD:(UIViewController*) at5w4OD aGgMiDY:(UIControl*) aGgMiDY aj4De:(UIView*) aj4De a6EXx:(UITableView*) a6EXx aAIYHyJ:(UIUserInterfaceIdiom*) aAIYHyJ a6SOIPipBZ:(UIApplication*) a6SOIPipBZ {
- NSLog(@"9xV3DgthX1P6Jke2EadSs8l5uT");
- NSLog(@"yCcef9Gg31jKiqaZsOImLnl7otkzh0x");
- NSLog(@"YrFhEZBS3UNLOWCx04l92GzDanymv5MbA");
- NSLog(@"bw2aL7ngTsZEX9jBxAOPqdCVk");
- NSLog(@"bxYVMQFKH9BDq2tgv0nWy8RiA");
- NSLog(@"jlEWnhbTRFveMtN1wx3VBXI40zJm2o");
- NSLog(@"CsBuvdS43QnFyolHXgzk");
- NSLog(@"rqblpJmnXoudCaQ8gKZYRxjtUG49NP6DIvc5");
- NSLog(@"Ms6wEiud8knKfYep");
- NSLog(@"ebnwro1PKk2zuXU");
- NSLog(@"LDwzcVI5mjKZ7JACvxOQleo");
- NSLog(@"45GNEeSH6iXr");
- NSLog(@"Fb9cCEMvVs8d2eRUZWBKQIgOTLPt3XDiHSp");
- }
- -(void)aNAJM1:(UIScreen*) aNAJM1 a9uJOxN:(UIControlEvents*) a9uJOxN ak3Wd8AlR:(UISwitch*) ak3Wd8AlR a5G2DiY7Vh8:(UIBarButtonItem*) a5G2DiY7Vh8 aauWB6Hdb:(UIDocument*) aauWB6Hdb aM5rV:(UIBarButtonItem*) aM5rV ajVP08:(UIEdgeInsets*) ajVP08 {
- NSLog(@"vyPJoMkNsx19mpYdEZ5RiWStC3jX");
- NSLog(@"i2F0PXrqDzZwAIH9Ud");
- NSLog(@"I8crGXNdPiADCbFoZ7emKJUsLwHafTtx");
- NSLog(@"RvbirXAl6aJLT");
- NSLog(@"o2cePxfiHXz");
- NSLog(@"gPymkv9oxRB7MIbJSHuE5wel2a4");
- NSLog(@"KOUi6cfuPyn219khHDCYzl4stG3MWrQa8vNBgo");
- NSLog(@"T1uMnCS9i7zj5bN68sUE2ZOtqlfB0WghoRYeD");
- NSLog(@"TalOi9V8yRH10Z3FvJhmCXucowkrzNL2QBn4tp");
- NSLog(@"IOlG7RFUy9a0MXAjZ1gWYKJBEVhcd");
- NSLog(@"Tf6VU0MwZWBkRNuKInvClFPpi");
- NSLog(@"oNIHJpE1PAGFfBQDv0ZW");
- NSLog(@"YRQ0PMiDvyaGNoZtcwnTBEpXsbxFk2KzuAf");
- NSLog(@"iOL7R9UCIevJFW5cQdp28olEa");
- NSLog(@"pWS1hBFHCJYcx82z5b");
- NSLog(@"1aBXHqgn8zjiSbkLCOr");
- NSLog(@"bYHdVOJuoxlKWBL98r6G51E0eQpkwXt");
- NSLog(@"Q1r4ohXlAt6TKY3wZnILSzscCN");
- NSLog(@"aXvZDMeylEWdgzRLs2FonPAVN7mUGcTh");
- }
- @end
|