uid
uint64 | meta
large_string | token_ids
large list | text
large_string |
---|---|---|---|
214,400 | Github | [
605,
187,
605,
50276,
7519,
49382,
18281,
25467,
17547,
15,
73,
187,
605,
50276,
22740,
18938,
187,
605,
187,
605,
50276,
20968,
20919,
4022,
8217,
3690,
15,
1876,
3570,
10827,
15,
187,
605,
187,
187,
4,
2948,
654,
22740,
18938,
16,
7519,
17547,
15,
73,
31,
187,
187,
3122,
3932,
368,
476,
626,
871,
752,
8781,
436,
3894,
310,
275,
1078,
368,
20279,
697,
21464,
13,
368,
778,
1408,
436,
4254,
275,
667,
8781,
368,
452,
2289,
281,
1738,
187,
187,
33,
2437,
17939,
18281,
25467,
13,
17939,
49382,
18281,
25467,
10976,
28,
187,
187,
4883,
64,
1719,
6971,
5288,
64,
34656,
15522,
64,
32077,
187,
11252,
64,
5851,
22823,
8908,
9,
12432,
375,
9,
740,
15,
805,
582,
891,
375,
9,
740,
15,
17,
582,
23055,
375,
9,
740,
15,
17,
582,
3698,
375,
9,
20,
15,
17,
1228,
187,
33,
15049,
17939,
49382,
18281,
25467,
17547,
1163,
17939,
17547,
187,
187,
14,
313,
6839,
1377,
40427,
10,
4478,
6640,
64,
19578,
13003,
11657,
64,
25844,
13859,
18769,
947,
28,
187,
14,
313,
6839,
1377,
40427,
10,
4478,
3378,
18281,
9715,
84,
10477,
4883,
6542,
29,
4883,
9715,
475,
31,
9657,
18316,
9715,
84,
28,
187,
187,
33,
9134,
313,
42264,
13,
3491,
13,
3635,
494,
10,
6640,
6542,
29,
4883,
9715,
475,
31,
475,
18316,
9715,
84,
28,
187,
187,
3122,
1310,
873,
281,
22487,
13,
253,
4795,
17939,
18281,
25467,
588,
452,
247,
5230,
16324,
1789,
6898,
562,
15,
50276,
49447,
281,
7651,
15,
187,
380,
4795,
17939,
18281,
25467,
588,
452,
247,
5230,
16324,
1838,
2867,
10159,
273,
253,
1318,
273,
436,
2867,
15,
1738,
187,
33,
9134,
313,
42264,
13,
9212,
10,
46013,
943,
49382,
16560,
16324,
28,
187,
187,
3122,
17403,
4420,
534,
2608,
14,
7769,
10149,
943,
320,
8264,
2147,
285,
2879,
281,
253,
4795,
5230,
16324,
15,
50276,
11564,
33444,
604,
943,
49382,
16560,
16324,
310,
22487,
15,
187,
1310,
5296,
13,
34852,
253,
2862,
5230,
1924,
943,
320,
20582,
15,
1310,
873,
281,
271,
6325,
3781,
13,
34852,
326,
642,
2608,
4910,
943,
320,
20582,
15,
50276,
49447,
281,
5296,
15,
1738,
187,
33,
9134,
313,
42264,
13,
3491,
13,
3635,
494,
10,
6640,
6542,
29,
26648,
475,
31,
475,
9723,
16324,
4476,
1250,
25076,
28,
187,
187,
33,
9134,
313,
42264,
13,
3491,
13,
3635,
494,
10,
2991,
313,
63,
468,
18281,
25467,
11144,
2769,
4883,
9715,
475,
18316,
9715,
13,
17939,
18281,
25467,
475,
795,
44761,
3894,
25467,
13,
427,
2354,
37369,
475,
795,
44761,
2228,
558,
187,
187,
33,
9134,
313,
42264,
13,
3491,
13,
3635,
494,
10,
2991,
313,
63,
24717,
18281,
25467,
49767,
11144,
2769,
47,
2354,
37369,
475,
795,
44761,
4254,
4756,
558,
187,
187,
33,
423,
187,
4883,
64,
1719,
6971,
5288,
64,
34656,
15522,
64,
8112,
187
] | //
// CKFetchShareMetadataOperation.h
// CloudKit
//
// Copyright © 2016 Apple Inc. All rights reserved.
//
#import <CloudKit/CKOperation.h>
/* Since you can't know what container this share is in before you fetch its metadata, you may run this operation in any container you have access to */
@class CKShareMetadata, CKFetchShareMetadataOptions;
NS_ASSUME_NONNULL_BEGIN
API_AVAILABLE(macos(10.12), ios(10.0), tvos(10.0), watchos(3.0))
@interface CKFetchShareMetadataOperation : CKOperation
- (instancetype)init NS_DESIGNATED_INITIALIZER;
- (instancetype)initWithShareURLs:(NSArray<NSURL *> *)shareURLs;
@property (nonatomic, copy, nullable) NSArray<NSURL *> *shareURLs;
/* If set to YES, the resulting CKShareMetadata will have a rootRecord object filled out. Defaults to NO.
The resulting CKShareMetadata will have a rootRecordID property regardless of the value of this property. */
@property (nonatomic, assign) BOOL shouldFetchRootRecord;
/* Declares which user-defined keys should be fetched and added to the resulting rootRecord. Only consulted if shouldFetchRootRecord is YES.
If nil, declares the entire root record should be downloaded. If set to an empty array, declares that no user fields should be downloaded. Defaults to nil. */
@property (nonatomic, copy, nullable) NSArray<NSString *> *rootRecordDesiredKeys;
@property (nonatomic, copy, nullable) void (^perShareMetadataBlock)(NSURL *shareURL, CKShareMetadata * _Nullable shareMetadata, NSError * _Nullable error);
@property (nonatomic, copy, nullable) void (^fetchShareMetadataCompletionBlock)(NSError * _Nullable operationError);
@end
NS_ASSUME_NONNULL_END
|
214,401 | Github | [
3122,
187,
475,
50276,
274,
11495,
272,
5623,
4556,
68,
187,
475,
50276,
5757,
1062,
18938,
22,
187,
475,
187,
475,
50276,
1552,
1873,
310,
629,
273,
23681,
1062,
18938,
15,
187,
475,
187,
475,
50276,
5757,
1062,
18938,
310,
1959,
3694,
27,
368,
476,
25529,
352,
285,
16,
263,
10007,
187,
475,
50276,
262,
762,
253,
2426,
273,
253,
11963,
32425,
4214,
5259,
4637,
347,
3863,
407,
187,
475,
50276,
783,
7648,
9107,
6807,
13,
2057,
2715,
495,
273,
253,
4637,
13,
390,
187,
475,
50276,
9,
255,
634,
4500,
10,
667,
1996,
2715,
15,
187,
475,
187,
475,
50276,
5757,
1062,
18938,
310,
5939,
275,
253,
3524,
326,
352,
588,
320,
4217,
13,
187,
475,
50276,
2858,
15002,
9103,
23181,
28,
1293,
1014,
253,
10466,
17529,
273,
187,
475,
50276,
38097,
20386,
390,
20524,
6651,
329,
20383,
20103,
15,
50276,
5035,
253,
187,
475,
50276,
47509,
32425,
4214,
5259,
4637,
323,
625,
4278,
15,
187,
475,
187,
475,
50276,
1394,
943,
452,
2959,
247,
3491,
273,
253,
11963,
32425,
4214,
5259,
4637,
187,
475,
50276,
28694,
342,
23681,
1062,
18938,
15,
50276,
2042,
417,
13,
923,
654,
2413,
1358,
2700,
15,
26497,
15,
2061,
16,
17130,
40000,
187,
475,
187,
475,
50276,
1909,
247,
2714,
6517,
13,
253,
9451,
26160,
273,
436,
6335,
1918,
368,
187,
475,
50276,
33290,
281,
3048,
436,
6335,
342,
3907,
11911,
281,
4711,
271,
187,
475,
50276,
9993,
13508,
13,
10159,
273,
253,
7981,
2426,
273,
841,
3907,
11911,
13,
285,
281,
187,
475,
50276,
12557,
285,
16969,
253,
4795,
33375,
762,
2426,
273,
634,
4327,
13,
187,
475,
50276,
33850,
326,
368,
671,
2525,
13,
323,
1016,
7939,
3907,
6333,
13,
253,
2426,
285,
187,
475,
50276,
32978,
273,
253,
7981,
273,
326,
6333,
15,
743,
3907,
6333,
310,
247,
6333,
187,
475,
50276,
4609,
310,
6747,
6012,
432,
4543,
1754,
327,
436,
6335,
15,
1310,
368,
10007,
436,
187,
475,
50276,
17921,
13,
368,
778,
9017,
436,
6517,
281,
634,
2715,
273,
253,
6335,
13,
533,
368,
187,
475,
50276,
609,
417,
37782,
281,
513,
594,
15,
1310,
368,
513,
417,
5730,
281,
513,
594,
13,
11352,
436,
6517,
187,
475,
50276,
25322,
432,
634,
2715,
15,
187,
475,
187,
475,
50276,
20968,
4104,
12073,
82,
363,
13,
16169,
15,
187,
475,
50276,
20968,
6469,
14,
6620,
23681,
1062,
4896,
13,
3690,
15,
187,
475,
187,
475,
50276,
14897,
9,
84,
2262,
39329,
76,
48285,
611,
4611,
13,
15887,
25852,
187,
475,
187,
1738,
187,
187,
4,
33943,
6647,
64,
8022,
57,
3887,
64,
31447,
64,
39228,
187,
4,
33943,
6647,
64,
8022,
57,
3887,
64,
31447,
64,
2648,
4280,
187,
4,
33943,
6647,
64,
8022,
57,
3887,
64,
31447,
64,
1934,
2648,
187,
4,
3182,
6647,
64,
8022,
57,
3887,
64,
31447,
64,
36,
187,
4,
33943,
6647,
64,
8022,
57,
3887,
64,
31447,
64,
30697,
187,
4,
33943,
6647,
64,
8022,
57,
3887,
64,
31447,
64,
58,
36,
187,
4,
33943,
6647,
64,
8022,
57,
3887,
64,
31447,
64,
39228,
64,
42164,
187,
4,
33943,
6647,
64,
8022,
57,
3887,
64,
31447,
64,
2648,
4280,
64,
2417,
3712,
187,
4,
33943,
6647,
64,
8022,
57,
3887,
64,
31447,
64,
2648,
4280,
64,
2031,
2031,
187,
187,
4,
33943,
6647,
64,
29317,
3887,
2637,
64,
18828,
64,
32814,
64,
39,
187,
4,
33943,
6647,
64,
29317,
3887,
2637,
64,
8835,
12752,
64,
11991,
2449,
64,
39,
187,
4,
33943,
6647,
64,
29317,
3887,
2637,
64,
43234,
64,
35894,
64,
39,
187,
4,
33943,
6647,
64,
29317,
3887,
2637,
64,
2350,
2088,
53,
11477,
187,
187,
4,
3709,
346,
274,
11495,
272,
5623,
15,
73,
3,
187
] | /*
* arLabelingSub*.c
* ARToolKit5
*
* This file is part of ARToolKit.
*
* ARToolKit is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* ARToolKit is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with ARToolKit. If not, see <http://www.gnu.org/licenses/>.
*
* As a special exception, the copyright holders of this library give you
* permission to link this library with independent modules to produce an
* executable, regardless of the license terms of these independent modules, and to
* copy and distribute the resulting executable under terms of your choice,
* provided that you also meet, for each linked independent module, the terms and
* conditions of the license of that module. An independent module is a module
* which is neither derived from nor based on this library. If you modify this
* library, you may extend this exception to your version of the library, but you
* are not obligated to do so. If you do not wish to do so, delete this exception
* statement from your version.
*
* Copyright 2015 Daqri, LLC.
* Copyright 2003-2015 ARToolworks, Inc.
*
* Author(s): Hirokazu Kato, Philip Lamb
*
*/
#undef AR_PIXEL_FORMAT_CCC
#undef AR_PIXEL_FORMAT_CCCA
#undef AR_PIXEL_FORMAT_ACCC
#define AR_PIXEL_FORMAT_C
#undef AR_PIXEL_FORMAT_CY
#undef AR_PIXEL_FORMAT_YC
#undef AR_PIXEL_FORMAT_CCC_565
#undef AR_PIXEL_FORMAT_CCCA_5551
#undef AR_PIXEL_FORMAT_CCCA_4444
#undef AR_LABELING_DEBUG_ENABLE_F
#undef AR_LABELING_WHITE_REGION_F
#undef AR_LABELING_FRAME_IMAGE_F
#undef AR_LABELING_ADAPTIVE
#include "arLabelingSub.h"
|
214,402 | Github | [
30952,
32735,
14271,
31,
187,
29,
2974,
31,
187,
50274,
29,
2522,
31,
187,
50270,
29,
13518,
29308,
568,
17880,
14,
25,
1138,
187,
50270,
29,
13518,
3944,
14,
8275,
568,
57,
14,
25588,
14,
30616,
917,
3,
2600,
568,
23079,
30,
18,
1138,
187,
50270,
29,
13518,
1416,
568,
1374,
631,
3,
2600,
568,
3429,
30,
10933,
14,
3429,
13,
3302,
14,
7527,
30,
18,
13,
2608,
14,
24606,
494,
30,
2369,
1138,
187,
50270,
29,
3866,
1511,
568,
1156,
16,
14606,
3,
6740,
568,
605,
2327,
15,
881,
11554,
15,
3024,
16,
75,
15453,
25,
82,
89,
83,
15,
4305,
6750,
3866,
31,
187,
50270,
29,
3866,
1511,
568,
1156,
16,
14606,
1138,
14626,
92,
2548,
11554,
15,
2799,
1874,
94,
28293,
9,
70,
910,
28379,
3866,
31,
187,
50270,
29,
4492,
774,
568,
23745,
3,
3860,
12227,
9016,
16,
12233,
15,
9016,
3,
4725,
187,
50270,
29,
4492,
774,
568,
23745,
3,
3860,
12227,
9016,
16,
12233,
14,
40927,
14,
24326,
14,
37672,
15,
9016,
3,
4725,
187,
50270,
29,
4826,
31,
187,
50266,
2915,
551,
187,
50262,
4909,
14,
11807,
27,
346,
856,
3266,
66,
14,
79,
8947,
995,
346,
9494,
87,
47479,
3532,
489,
995,
20155,
14,
40004,
28,
187,
50262,
4897,
27,
1852,
24447,
28,
187,
50266,
94,
535,
50266,
15,
22860,
14,
5598,
551,
187,
50262,
15456,
27,
1052,
3498,
28,
187,
50262,
7436,
27,
7469,
3498,
28,
187,
50262,
3429,
27,
7469,
3498,
28,
187,
50262,
8412,
27,
13866,
14,
6172,
28,
187,
50262,
27745,
27,
6753,
28,
187,
50262,
14224,
27,
374,
3498,
4891,
1852,
1796,
70,
28,
187,
50262,
17333,
27,
3387,
3498,
28,
187,
50266,
94,
187,
50270,
870,
4826,
31,
187,
50274,
870,
2522,
31,
187,
50274,
29,
2915,
31,
187,
50270,
29,
2154,
966,
568,
22860,
14,
5598,
1138,
187,
50266,
29,
81,
31,
1552,
310,
247,
12494,
273,
2505,
870,
81,
31,
187,
50266,
29,
81,
31,
1552,
310,
247,
12494,
273,
2505,
870,
81,
31,
187,
50266,
29,
81,
2730,
66,
3860,
568,
14606,
27,
16352,
966,
568,
12233,
14,
40927,
3,
941,
14,
40927,
14,
6071,
568,
41995,
13,
309,
1353,
247,
4968,
22076,
3,
941,
14,
38729,
568,
3956,
4055,
1138,
13285,
22076,
327,
9872,
870,
66,
3073,
81,
31,
187,
50266,
29,
81,
31,
1552,
310,
247,
12494,
273,
2505,
870,
81,
31,
187,
50266,
29,
81,
31,
1552,
310,
247,
12494,
273,
2505,
870,
81,
31,
187,
50266,
29,
81,
2730,
66,
3860,
568,
14606,
27,
16352,
966,
568,
12233,
14,
40927,
3,
941,
14,
40927,
14,
6071,
568,
41995,
13,
309,
1353,
247,
4968,
22076,
3,
941,
14,
38729,
568,
10492,
4055,
1138,
13285,
22076,
327,
36035,
870,
66,
3073,
81,
31,
187,
50266,
29,
81,
31,
1552,
310,
247,
12494,
273,
2505,
870,
81,
31,
187,
50266,
29,
81,
31,
1552,
310,
247,
12494,
273,
2505,
870,
81,
31,
187,
50266,
29,
81,
2730,
66,
3860,
568,
14606,
27,
16352,
966,
568,
12233,
14,
40927,
3,
941,
14,
40927,
14,
6071,
568,
41995,
13,
309,
1353,
247,
4968,
22076,
3,
941,
14,
38729,
568,
1274,
4766,
1138,
13285,
22076,
327,
15584,
870,
66,
3073,
81,
31,
187,
50266,
29,
81,
31,
1552,
310,
247,
12494,
273,
2505,
870,
81,
31,
187,
50266,
29,
81,
31,
1552,
310,
247,
12494,
273,
2505,
870,
81,
31,
187,
50266,
29,
81,
2730,
66,
3860,
568,
14606,
27,
16352,
966,
568,
12233,
14,
40927,
3,
941,
14,
40927,
14,
6071,
568,
41995,
13,
309,
1353,
247,
4968,
22076,
3,
941,
14,
38729,
568,
918,
4766,
1138,
13285,
22076,
327,
10154,
870,
66,
3073,
81,
31,
187,
50266,
29,
81,
31,
1552,
310,
247,
12494,
273,
2505,
870,
81,
31,
187,
50266,
29,
81,
31,
1552,
310,
247,
12494,
273,
2505,
870,
81,
31,
187,
50266,
29,
81,
2730,
66,
3860,
568,
14606,
27,
16352,
966,
568,
12233,
14,
40927,
3,
941,
14,
40927,
14,
6071,
568,
41995,
13,
309,
1353,
247,
4968,
22076,
3,
941,
14,
38729,
568,
10492,
1669,
1138,
13285,
22076,
327,
36035,
15584,
870,
66,
3073,
81,
31,
187,
50266,
29,
81,
31,
1552,
310,
247,
12494,
273,
2505,
870,
81,
31,
187,
50266,
29,
81,
31,
1552,
310,
247,
12494,
273,
2505,
870,
81,
31,
187,
50266,
29,
81,
2730,
66,
3860,
568,
14606,
27,
16352,
966,
568,
12233,
14,
40927,
3,
941,
14,
40927,
14,
6071,
568,
41995,
13,
309,
1353,
247,
4968,
22076,
3,
941,
14,
38729,
568,
10492,
987,
1138,
13285,
22076,
327,
36035,
10154,
870,
66,
3073,
81,
31,
187,
50266,
29,
81,
31,
1552,
310,
247,
12494,
273,
2505,
870,
81,
31,
187,
50266,
29,
81,
31,
1552,
310,
247,
12494,
273,
2505,
870,
81,
31,
187,
50266,
29,
81,
2730,
66,
3860,
568,
14606,
27,
16352,
966,
568,
12233,
14,
40927,
3,
941,
14,
40927,
14,
6071,
568,
41995,
13,
309,
1353,
247,
4968,
22076,
3,
941,
14,
38729,
568,
3956,
1669,
1138,
13285,
22076,
327,
9872,
15584,
870,
66,
3073,
81,
31,
187,
50266,
29,
81,
31,
1552,
310,
247,
12494,
273,
2505,
870,
81,
31,
187,
50266,
29,
81,
31,
1552,
310,
247,
12494,
273,
2505,
870,
81,
31,
187,
50266,
29,
81,
2730,
66,
3860,
568,
14606,
27,
16352,
966,
568,
12233,
14,
40927,
3,
941,
14,
40927,
14,
6071,
568,
41995,
13,
309,
1353,
247,
4968,
22076,
3,
941,
14,
38729,
568,
3956,
987,
1138,
13285,
22076,
327,
9872,
10154,
870,
66,
3073,
81,
31,
187,
50266,
29,
81,
31,
1552,
310,
247,
12494,
273,
2505,
870,
81,
31,
187,
50266,
29,
81,
31,
1552,
310,
247,
12494,
273,
2505,
870,
81,
31,
187,
50266,
29,
81,
2730,
66,
3860,
568,
14606,
27,
16352,
966,
568,
12233,
14,
40927,
3,
941,
14,
40927,
14,
6071,
568,
41995,
13,
309,
1353,
247,
4968,
22076,
3,
941,
14,
38729,
568,
1274,
5004,
1138,
13285,
22076,
327,
15584,
36035,
870,
66,
3073,
81,
31,
187,
50266,
29,
81,
31,
1552,
310,
247,
12494,
273,
2505,
870,
81,
31,
187,
50266,
29,
81,
31,
1552,
310,
247,
12494,
273,
2505,
870,
81,
31,
187,
50266,
29,
81,
2730,
66,
3860,
568,
14606,
27,
16352,
966,
568,
12233,
14,
40927,
3,
941,
14,
40927,
14,
6071,
568,
41995,
13,
309,
1353,
247,
4968,
22076,
3,
941,
14,
38729,
568,
1274,
1755,
1138,
13285,
22076,
327,
15584,
9872,
870,
66,
3073,
81,
31,
187,
50266,
29,
81,
31,
1552,
310,
247,
12494,
273,
2505,
870,
81,
31,
187,
50266,
29,
81,
31,
1552,
310,
247,
12494,
273,
2505,
870,
81,
31,
187,
50266,
29,
81,
2730,
66,
3860,
568,
14606,
27,
16352,
966,
568,
12233,
14,
40927,
3,
941,
14,
40927,
14,
6071,
568,
41995,
13,
309,
1353,
247,
4968,
22076,
3,
941,
14,
38729,
568,
918,
5004,
1138,
13285,
22076,
327,
10154,
36035,
870,
66,
3073,
81,
31,
187,
50266,
29,
81,
31,
1552,
310,
247,
12494,
273,
2505,
870,
81,
31,
187,
50266,
29,
81,
31,
1552,
310,
247,
12494,
273,
2505,
870,
81,
31,
187,
50266,
29,
81,
2730,
66,
3860,
568,
14606,
27,
16352,
966,
568,
12233,
14,
40927,
3,
941,
14,
40927,
14,
6071,
568,
41995,
13,
309,
1353,
247,
4968,
22076,
3,
941,
14,
38729,
568,
918,
1755,
1138,
13285,
22076,
327,
10154,
9872,
870,
66,
3073,
81,
31,
187,
50266,
29,
81,
31,
1552,
310,
247,
12494,
273,
2505,
870,
81,
31,
187,
50266,
29,
81,
31,
1552,
310,
247,
12494,
273,
2505,
870,
81,
31,
187,
50270,
870,
2154,
31,
535,
50270,
29,
3866,
6740,
17517,
21830,
16,
4305,
16,
2808,
15,
4305,
6750,
3866,
31,
187,
50270,
29,
3866,
6740,
17517,
21830,
16,
4305,
16,
19203,
15,
4305,
6750,
3866,
31,
187,
50270,
29,
3866,
6740,
12227,
18833,
15,
4305,
6750,
3866,
31,
187,
50270,
29,
3866,
6740,
12227,
85,
7851,
15,
4305,
6750,
3866,
31,
187,
50270,
29,
3866,
6740,
17779,
12233,
16,
12233,
15,
1222,
15,
4305,
6750,
3866,
31,
187,
50270,
29,
3866,
6740,
12227,
40927,
15,
4305,
6750,
3866,
31,
187,
50270,
29,
3866,
6740,
12227,
30995,
15,
4305,
6750,
3866,
31,
187,
50270,
29,
3866,
31,
187,
50266,
5,
27174,
12233,
14,
40927,
8539,
14382,
9,
3701,
14574,
187,
50262,
1826,
16235,
22076,
7506,
187,
50258,
293,
27,
436,
13,
187,
50258,
38729,
27,
3019,
2520,
481,
2203,
2073,
38729,
3401,
187,
50262,
9897,
187,
50266,
9897,
187,
50270,
870,
3866,
31,
187,
50274,
870,
2915,
31,
187,
870,
2974,
31,
187
] | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<script type="text/javascript" src="//use.typekit.net/jbn8qxr.js"></script>
<script type="text/javascript">try{Typekit.load();}catch(e){}</script>
<link rel="stylesheet" href="../../css/drop.css" />
<link rel="stylesheet" href="../../css/drop-tooltip-theme-arrows.css" />
<style>
body {
font-family: "proxima-nova", "Helvetica Neue", sans-serif;
color: #444;
}
.scroll-parent {
margin: 200px;
height: 300px;
width: 300px;
display: inline-block;
overflow: auto;
border: 2px solid #eee;
padding: 40px;
}
</style>
</head>
<body>
<div class="scroll-parent">
<p>This is a paragraph of text</p>
<p>This is a paragraph of text</p>
<p><a href="javascript:;" class="drop-tooltip" data-tooltip-content="Whoa, I'm a tooltip" data-attach="top center">Tooltip on Top</a></p>
<p>This is a paragraph of text</p>
<p>This is a paragraph of text</p>
<p><a href="javascript:;" class="drop-tooltip" data-tooltip-content="Whoa, I'm a tooltip" data-attach="bottom center">Tooltip on Bottom</a></p>
<p>This is a paragraph of text</p>
<p>This is a paragraph of text</p>
<p><a href="javascript:;" class="drop-tooltip" data-tooltip-content="Whoa, I'm a tooltip" data-attach="left middle">Tooltip on Left</a></p>
<p>This is a paragraph of text</p>
<p>This is a paragraph of text</p>
<p><a href="javascript:;" class="drop-tooltip" data-tooltip-content="Whoa, I'm a tooltip" data-attach="right middle">Tooltip on Right</a></p>
<p>This is a paragraph of text</p>
<p>This is a paragraph of text</p>
<p><a href="javascript:;" class="drop-tooltip" data-tooltip-content="Whoa, I'm a tooltip" data-attach="bottom left">Tooltip on Bottom Left</a></p>
<p>This is a paragraph of text</p>
<p>This is a paragraph of text</p>
<p><a href="javascript:;" class="drop-tooltip" data-tooltip-content="Whoa, I'm a tooltip" data-attach="bottom right">Tooltip on Bottom Right</a></p>
<p>This is a paragraph of text</p>
<p>This is a paragraph of text</p>
<p><a href="javascript:;" class="drop-tooltip" data-tooltip-content="Whoa, I'm a tooltip" data-attach="top left">Tooltip on Top Left</a></p>
<p>This is a paragraph of text</p>
<p>This is a paragraph of text</p>
<p><a href="javascript:;" class="drop-tooltip" data-tooltip-content="Whoa, I'm a tooltip" data-attach="top right">Tooltip on Top Right</a></p>
<p>This is a paragraph of text</p>
<p>This is a paragraph of text</p>
<p><a href="javascript:;" class="drop-tooltip" data-tooltip-content="Whoa, I'm a tooltip" data-attach="left bottom">Tooltip on Left Bottom</a></p>
<p>This is a paragraph of text</p>
<p>This is a paragraph of text</p>
<p><a href="javascript:;" class="drop-tooltip" data-tooltip-content="Whoa, I'm a tooltip" data-attach="left top">Tooltip on Left Top</a></p>
<p>This is a paragraph of text</p>
<p>This is a paragraph of text</p>
<p><a href="javascript:;" class="drop-tooltip" data-tooltip-content="Whoa, I'm a tooltip" data-attach="right bottom">Tooltip on Right Bottom</a></p>
<p>This is a paragraph of text</p>
<p>This is a paragraph of text</p>
<p><a href="javascript:;" class="drop-tooltip" data-tooltip-content="Whoa, I'm a tooltip" data-attach="right top">Tooltip on Right Top</a></p>
<p>This is a paragraph of text</p>
<p>This is a paragraph of text</p>
</div>
<script src="../resources/js/log.js"></script>
<script src="../resources/js/jquery.js"></script>
<script src="../../utils.js"></script>
<script src="../../tether.js"></script>
<script src="/drop/drop.min.js"></script>
<script src="../../tooltip.js"></script>
<script src="../../constraint.js"></script>
<script>
$('.drop-tooltip').each(function(){
new Tooltip({
el: this,
attach: $(this).data('attach')
});
});
</script>
</body>
</html>
|
214,403 | Github | [
2775,
21642,
15012,
64,
17037,
568,
17,
15,
20,
15,
26,
3,
187,
21642,
6159,
1410,
30,
1082,
187,
187,
1542,
14035,
275,
12122,
41464,
16,
2178,
16,
18241,
447,
3,
12122,
30851,
14206,
18241,
447,
3664,
513,
187,
186,
14598,
428,
69,
12122,
7341,
3,
3857,
428,
79,
48023,
5200,
428,
34,
12122,
7341,
2807,
3,
5032,
62,
3857,
39572,
6159,
1410,
34788,
1587,
5,
7341,
3,
3122,
10,
187,
17506,
187,
328,
1178,
14035,
187,
187,
3701,
448,
26176,
64,
19511,
1082,
187,
92,
187,
186,
14598,
428,
91,
12122,
21642,
15012,
64,
34101,
3,
5032,
62,
3857,
1091,
535,
186,
18999,
568,
35490,
18999,
27,
3664,
46536,
31961,
18999,
605,
35490,
21642,
15012,
64,
34101,
15591,
4805,
21610,
27,
13272,
187,
186,
14598,
428,
79,
12122,
40,
3172,
64,
34101,
3,
5032,
62,
3857,
46536,
31961,
18999,
605,
35490,
40,
3172,
64,
34101,
15591,
4805,
21610,
27,
13272,
535,
186,
338,
6048,
530,
1838,
3613,
470,
2387,
558,
840,
996,
186,
14598,
428,
79,
12122,
40,
3172,
64,
30851,
3,
5032,
62,
3857,
46536,
31961,
18999,
605,
35490,
40,
3172,
64,
30851,
15591,
4805,
21610,
27,
13272,
6886,
186,
40,
3172,
64,
18999,
568,
35490,
40,
3172,
64,
18999,
5136,
996,
186,
14598,
428,
79,
12122,
40,
3172,
64,
30851,
3,
5032,
62,
3857,
443,
3172,
64,
18999,
31961,
40,
3172,
64,
18999,
605,
35490,
40,
3172,
64,
30851,
21610,
27,
13272,
996,
186,
14598,
428,
79,
12122,
40,
3172,
64,
34101,
3,
5032,
62,
3857,
443,
3172,
64,
18999,
31961,
40,
3172,
64,
18999,
605,
35490,
40,
3172,
64,
34101,
21610,
27,
13272,
996,
186,
40,
3172,
64,
18999,
31961,
40,
3172,
64,
18999,
10326,
94,
3664,
443,
3172,
64,
18999,
31961,
40,
3172,
64,
18999,
6,
27,
13272,
6886,
186,
328,
1178,
443,
3172,
64,
30851,
996,
186,
14598,
428,
91,
12122,
40,
3172,
64,
18999,
3,
5032,
62,
3857,
440,
1178,
443,
3172,
64,
18999,
187,
186,
11125,
535,
186,
18999,
31961,
18999,
10326,
94,
3664,
46536,
31961,
18999,
6,
27,
13272,
187,
186,
328,
1178,
39572,
15012,
64,
34101,
39572,
15012,
64,
40861,
7570,
39572,
15012,
64,
17037,
39572,
15012,
18904,
443,
3172,
64,
34101,
187,
186,
13362,
428,
83,
187,
94,
187,
187,
3701,
448,
26176,
64,
2327,
1082,
187,
92,
187,
186,
338,
8605,
2195,
428,
89,
12122,
18,
16,
4805,
16,
26176,
3,
5032,
2194,
840,
996,
186,
13088,
346,
348,
26176,
27,
370,
18,
16,
4805,
16,
26176,
417,
33375,
3,
2239,
7,
19,
996,
186,
2309,
337,
187,
186,
11125,
535,
186,
14598,
428,
79,
12122,
21642,
15012,
64,
34101,
3,
5032,
62,
3857,
448,
26176,
64,
19511,
535,
186,
15035,
39572,
15012,
64,
34101,
31462,
18,
3,
187,
186,
15035,
39572,
15012,
18904,
31462,
19,
3,
187,
186,
15035,
46536,
31462,
21642,
15012,
64,
34101,
16,
4805,
35490,
18999,
3,
535,
186,
15419,
48023,
21642,
15012,
40,
3172,
52,
64,
40,
3172,
2573,
3299,
20679,
12122,
21642,
15012,
64,
34101,
16,
4805,
16,
26176,
3,
428,
5291,
34812,
187,
1065,
84,
346,
15035,
39572,
15012,
64,
40861,
7570,
18350,
92,
4241,
15,
3474,
64,
7769,
32,
20805,
21642,
15012,
64,
40861,
7570,
10,
3736,
39572,
15012,
64,
40861,
7570,
1163,
686,
26176,
8,
4718,
3,
187,
1065,
84,
346,
15035,
39572,
15012,
64,
17037,
18350,
92,
21642,
15012,
64,
17037,
4718,
3,
187,
2043,
28,
2430,
686,
18241,
11550,
3030,
5618,
12516,
346,
15035,
443,
3172,
64,
34101,
18350,
92,
40,
358,
15,
6986,
64,
7341,
15,
968,
808,
4718,
3664,
14471,
16676,
4756,
28,
990,
187,
34812,
187,
6844,
187,
186,
15035,
46536,
31961,
40,
3172,
64,
34101,
27,
23547,
40,
3172,
64,
34101,
16,
4805,
27,
724,
18999,
3,
535,
186,
338,
6048,
530,
1838,
3613,
470,
2387,
558,
840,
996,
186,
15035,
443,
3172,
64,
30851,
31462,
30851,
14206,
25460,
27781,
21642,
15012,
64,
40861,
7570,
27781,
21642,
15012,
64,
17037,
3,
996,
186,
15035,
443,
3172,
64,
18999,
31462,
40,
3172,
64,
30851,
8626,
40,
3172,
64,
34101,
27,
12,
35490,
40,
3172,
64,
34101,
724,
92,
40,
3172,
64,
18999,
27,
12,
35490,
40,
3172,
64,
18999,
13272,
996,
186,
15035,
46536,
31462,
40,
3172,
64,
30851,
16,
4805,
35490,
18999,
3,
187,
186,
11125,
535,
186,
13362,
428,
83,
187,
94,
187,
187,
3701,
448,
26176,
1082,
187,
92,
187,
186,
5045,
12122,
18,
3,
275,
996,
186,
14,
73,
93,
283,
13070,
10,
988,
186,
13088,
346,
24483,
27,
448,
26176,
544,
21642,
15012,
93,
17037,
93,
10394,
62,
544,
21642,
15012,
18904,
1051,
9336,
988,
186,
12723,
996,
186,
14,
55,
93,
283,
4149,
10,
988,
186,
13088,
346,
348,
26176,
27,
370,
2775,
21642,
15012,
64,
17037,
3,
988,
186,
12723,
996,
186,
3,
2807,
988,
186,
6790,
14035,
40110,
988,
186,
1542,
14035,
275,
26107,
21642,
6159,
1410,
683,
18095,
3664,
513,
2657,
186,
7341,
31961,
7341,
7847,
16,
94,
3664,
40110,
31961,
7341,
817,
8480,
13272,
2657,
186,
338,
8605,
12122,
7341,
3,
2295,
12122,
21642,
15012,
64,
34101,
3,
5032,
2194,
840,
2664,
186,
13088,
346,
475,
7224,
26176,
94,
7224,
21642,
15012,
18904,
13272,
2657,
186,
7271,
2664,
186,
13088,
346,
50275,
8626,
26176,
13272,
2657,
186,
11125,
11866,
186,
17506,
988,
186,
12723,
996,
186,
10394,
10,
448,
26176,
64,
19511,
28513,
996,
186,
5627,
988,
186,
6790,
14035,
40110,
3761,
988,
186,
1542,
14035,
275,
26107,
21642,
6159,
1410,
683,
18095,
3664,
513,
2657,
186,
7341,
31961,
7341,
7847,
16,
94,
3664,
40110,
31961,
7341,
817,
8480,
13272,
2657,
186,
5045,
12122,
26176,
3,
275,
2664,
186,
3,
5,
18,
2807,
186,
8992,
31462,
7341,
3,
3857,
2740,
28513,
2664,
186,
35797,
5,
18,
3,
5627,
186,
8992,
31462,
7341,
3,
28513,
2657,
186,
265,
317,
988,
186,
17506,
11866,
186,
338,
8605,
428,
91,
12122,
8992,
3,
5032,
2194,
840,
2657,
186,
13088,
346,
348,
26176,
27,
7202,
21521,
27,
370,
18,
3,
2239,
7,
19,
2657,
186,
2309,
337,
988,
186,
11125,
11866,
186,
11551,
988,
186,
348,
26176,
64,
2327,
12122,
8992,
3,
12122,
35797,
988,
186,
12723,
187,
186,
265,
317,
187,
94,
187
] | CHRUBY_VERSION="0.3.9"
RUBIES=()
for dir in "$PREFIX/opt/rubies" "$HOME/.rubies"; do
[[ -d "$dir" && -n "$(ls -A "$dir")" ]] && RUBIES+=("$dir"/*)
done
unset dir
function chruby_reset()
{
[[ -z "$RUBY_ROOT" ]] && return
PATH=":$PATH:"; PATH="${PATH//:$RUBY_ROOT\/bin:/:}"
[[ -n "$GEM_ROOT" ]] && PATH="${PATH//:$GEM_ROOT\/bin:/:}"
if (( UID != 0 )); then
[[ -n "$GEM_HOME" ]] && PATH="${PATH//:$GEM_HOME\/bin:/:}"
GEM_PATH=":$GEM_PATH:"
[[ -n "$GEM_HOME" ]] && GEM_PATH="${GEM_PATH//:$GEM_HOME:/:}"
[[ -n "$GEM_ROOT" ]] && GEM_PATH="${GEM_PATH//:$GEM_ROOT:/:}"
GEM_PATH="${GEM_PATH#:}"; GEM_PATH="${GEM_PATH%:}"
unset GEM_HOME
[[ -z "$GEM_PATH" ]] && unset GEM_PATH
fi
PATH="${PATH#:}"; PATH="${PATH%:}"
unset RUBY_ROOT RUBY_ENGINE RUBY_VERSION RUBYOPT GEM_ROOT
hash -r
}
function chruby_use()
{
if [[ ! -x "$1/bin/ruby" ]]; then
echo "chruby: $1/bin/ruby not executable" >&2
return 1
fi
[[ -n "$RUBY_ROOT" ]] && chruby_reset
export RUBY_ROOT="$1"
export RUBYOPT="$2"
export PATH="$RUBY_ROOT/bin:$PATH"
eval "$(RUBYGEMS_GEMDEPS="" "$RUBY_ROOT/bin/ruby" - <<EOF
puts "export RUBY_ENGINE=#{Object.const_defined?(:RUBY_ENGINE) ? RUBY_ENGINE : 'ruby'};"
puts "export RUBY_VERSION=#{RUBY_VERSION};"
begin; require 'rubygems'; puts "export GEM_ROOT=#{Gem.default_dir.inspect};"; rescue LoadError; end
EOF
)"
export PATH="${GEM_ROOT:+$GEM_ROOT/bin:}$PATH"
if (( UID != 0 )); then
export GEM_HOME="$HOME/.gem/$RUBY_ENGINE/$RUBY_VERSION"
export GEM_PATH="$GEM_HOME${GEM_ROOT:+:$GEM_ROOT}${GEM_PATH:+:$GEM_PATH}"
export PATH="$GEM_HOME/bin:$PATH"
fi
hash -r
}
function chruby()
{
case "$1" in
-h|--help)
echo "usage: chruby [RUBY|VERSION|system] [RUBYOPT...]"
;;
-V|--version)
echo "chruby: $CHRUBY_VERSION"
;;
"")
local dir ruby
for dir in "${RUBIES[@]}"; do
dir="${dir%%/}"; ruby="${dir##*/}"
if [[ "$dir" == "$RUBY_ROOT" ]]; then
echo " * ${ruby} ${RUBYOPT}"
else
echo " ${ruby}"
fi
done
;;
system) chruby_reset ;;
*)
local dir ruby match
for dir in "${RUBIES[@]}"; do
dir="${dir%%/}"; ruby="${dir##*/}"
case "$ruby" in
"$1") match="$dir" && break ;;
*"$1"*) match="$dir" ;;
esac
done
if [[ -z "$match" ]]; then
echo "chruby: unknown Ruby: $1" >&2
return 1
fi
shift
chruby_use "$match" "$*"
;;
esac
}
|
214,404 | Github | [
9344,
14,
90,
186,
34788,
1964,
15,
80,
9978,
15,
80,
3496,
82,
15,
80,
187
] | obj-y += prom.o setup.o irq.o
|
214,405 | Github | [
605,
8283,
313,
68,
10,
4059,
14,
15068,
13,
6745,
13,
3690,
15,
1876,
3570,
10827,
15,
187,
605,
187,
605,
1422,
403,
20585,
7169,
247,
1327,
14,
911,
7426,
13,
11762,
13,
37283,
14,
4924,
7981,
281,
897,
13,
187,
605,
3491,
13,
10007,
13,
285,
16969,
436,
3694,
275,
2603,
2127,
390,
8985,
830,
323,
897,
187,
605,
275,
4602,
342,
253,
4384,
3238,
285,
33261,
2530,
407,
6745,
15,
187,
605,
187,
605,
1284,
342,
667,
3694,
326,
49661,
342,
253,
6745,
5147,
13,
634,
897,
273,
187,
605,
436,
3694,
310,
2256,
281,
253,
6745,
37305,
43655,
285,
47670,
447,
187,
605,
544,
2413,
1358,
16714,
398,
15,
24557,
15,
681,
16,
22872,
16,
1570,
831,
9451,
4366,
3091,
320,
187,
605,
2908,
275,
512,
10125,
390,
6832,
11821,
273,
253,
3694,
15,
187,
605,
187,
605,
3003,
19295,
4110,
33278,
346,
1719,
4110,
995,
15002,
23181,
3481,
9103,
19329,
13,
31643,
4145,
187,
605,
25900,
13,
31877,
17706,
5803,
25666,
5935,
3003,
15466,
3481,
20863,
13,
20524,
187,
605,
6651,
329,
20383,
20103,
4889,
36429,
1042,
6764,
2637,
17260,
15,
2949,
7651,
30609,
32221,
3003,
31501,
16902,
4145,
187,
605,
28827,
43227,
8728,
34745,
6651,
9103,
46533,
13,
32024,
4145,
19359,
27255,
13,
33206,
187,
605,
2949,
2933,
37457,
3481,
32833,
13,
34915,
4145,
35497,
13,
34984,
10727,
13,
16341,
3481,
4145,
2949,
187,
605,
42867,
8286,
9277,
3003,
19295,
4145,
3003,
19226,
4145,
19359,
49731,
19212,
2949,
3003,
19295,
15,
187,
187,
4,
2948,
654,
38034,
16,
38034,
15,
73,
31,
187,
187,
4,
2948,
654,
18446,
45007,
13745,
18938,
16,
18446,
45007,
15499,
6825,
13457,
15,
73,
31,
187,
187,
4,
2948,
346,
18446,
45007,
13815,
2921,
15,
73,
3,
187,
187,
33,
2437,
30284,
45007,
11501,
11200,
28,
187,
33,
2437,
30284,
45007,
15499,
6825,
28,
187,
187,
6930,
50276,
4883,
27193,
21972,
1416,
7809,
247,
906,
273,
247,
4242,
2412,
26363,
3177,
15,
380,
9269,
1789,
588,
320,
271,
427,
2354,
37369,
4227,
15,
1738,
187,
18446,
45007,
64,
4237,
46811,
31681,
475,
3474,
30284,
45007,
2946,
24121,
6800,
3390,
9179,
27193,
28,
187,
187,
6930,
50276,
21676,
499,
382,
2234,
5550,
25116,
6800,
3390,
9677,
2946,
1838,
2807,
323,
4758,
2634,
36193,
9677,
2946,
1838,
65,
1738,
187,
18446,
45007,
64,
4237,
46811,
31681,
475,
3474,
30284,
45007,
2946,
24121,
9677,
2946,
1838,
18099,
4814,
28,
187,
187,
6930,
535,
6640,
64,
1400,
5529,
313,
4883,
54,
16467,
13,
30284,
45007,
2946,
24121,
6623,
2345,
38066,
10,
535,
50276,
8546,
7790,
672,
2634,
18446,
45007,
2946,
24121,
65,
16965,
2412,
3394,
281,
253,
4771,
15,
535,
1738,
187,
17743,
6640,
64,
1400,
5529,
9,
4883,
54,
16467,
13,
30284,
45007,
2946,
24121,
6623,
2345,
38066,
10,
187,
92,
535,
50276,
6930,
2884,
2345,
8356,
27,
28557,
313,
19131,
247,
7017,
390,
1046,
2233,
24917,
3394,
10,
285,
1900,
387,
622,
8071,
7639,
15,
1738,
187,
50276,
18446,
45007,
2946,
24121,
6623,
2345,
38066,
22156,
426,
470,
13,
535,
50276,
6930,
7214,
26363,
672,
253,
2634,
34459,
65,
1332,
310,
1925,
15,
2091,
271,
622,
310,
4395,
281,
4114,
16,
20792,
456,
13,
253,
187,
50275,
20969,
403,
32178,
285,
294,
14,
21877,
387,
5743,
13,
533,
597,
588,
760,
320,
3542,
342,
271,
187,
50275,
911,
20692,
1067,
281,
2634,
34459,
16433,
1738,
187,
50276,
18446,
45007,
2946,
24121,
6623,
2345,
38066,
1672,
20692,
11564,
13,
187,
187,
4718,
187,
187,
6930,
187,
1214,
9349,
4399,
18271,
37224,
2362,
4454,
323,
20893,
3394,
1846,
281,
1142,
11222,
15,
50276,
6800,
3390,
6634,
949,
253,
2634,
2808,
5949,
65,
2021,
273,
3082,
327,
2634,
18446,
45007,
2946,
24121,
16433,
187,
10200,
2362,
3602,
403,
2530,
275,
253,
2634,
18446,
45007,
2946,
24121,
15402,
14090,
11,
65,
14637,
15,
187,
1738,
187,
187,
6930,
8192,
436,
2362,
672,
253,
2608,
556,
6786,
247,
1268,
275,
253,
622,
15,
1738,
187,
18446,
45007,
64,
4237,
46811,
31681,
475,
3474,
30284,
45007,
2946,
5949,
2402,
34,
2942,
1272,
13019,
28,
187,
187,
6930,
8192,
436,
2362,
672,
253,
2608,
556,
5966,
616,
7830,
8692,
15,
1738,
187,
18446,
45007,
64,
4237,
46811,
31681,
475,
3474,
30284,
45007,
2946,
5949,
2402,
33988,
45412,
6074,
28,
187,
187,
6930,
8192,
436,
2362,
672,
253,
2608,
556,
2879,
271,
5382,
281,
616,
7281,
15,
50276,
510,
1318,
1992,
11808,
4817,
281,
2412,
5949,
943,
320,
253,
5382,
434,
4376,
15,
1738,
187,
18446,
45007,
64,
4237,
46811,
31681,
475,
3474,
30284,
45007,
2946,
5949,
2402,
33988,
1992,
34395,
28,
187,
187,
6930,
8192,
436,
2362,
672,
253,
2608,
556,
2879,
271,
5382,
281,
616,
5730,
3550,
15,
50276,
510,
1318,
1992,
11808,
4817,
281,
2412,
5949,
943,
320,
253,
5382,
434,
4376,
15,
1738,
187,
18446,
45007,
64,
4237,
46811,
31681,
475,
3474,
30284,
45007,
2946,
5949,
2402,
33988,
1992,
56,
763,
3550,
28,
187,
187,
6930,
8192,
436,
2362,
672,
247,
2608,
556,
6312,
12960,
342,
253,
622,
15,
1738,
187,
18446,
45007,
64,
4237,
46811,
31681,
475,
3474,
30284,
45007,
2946,
5949,
2402,
45653,
46563,
28,
187,
187,
6930,
8192,
436,
2362,
672,
253,
2608,
556,
6312,
247,
23647,
275,
253,
622,
15,
1738,
187,
18446,
45007,
64,
4237,
46811,
31681,
475,
3474,
30284,
45007,
2946,
5949,
2402,
45653,
53,
37929,
28,
187,
187,
6930,
8192,
436,
2362,
672,
253,
2608,
556,
5966,
253,
36620,
1232,
15,
50276,
510,
1318,
1992,
11808,
4817,
281,
2412,
5949,
943,
320,
253,
2264,
4376,
275,
253,
7281,
15,
1738,
187,
18446,
45007,
64,
4237,
46811,
31681,
475,
3474,
30284,
45007,
2946,
5949,
2402,
10828,
4215,
9063,
483,
28,
187,
187,
6930,
8192,
436,
2362,
672,
253,
2608,
556,
20139,
271,
5382,
275,
253,
622,
15,
50276,
510,
1318,
1992,
11808,
4817,
281,
2412,
5949,
943,
320,
253,
31437,
13716,
15,
1738,
187,
18446,
45007,
64,
4237,
46811,
31681,
475,
3474,
30284,
45007,
2946,
5949,
2402,
51,
456,
28,
187,
187,
6930,
8192,
436,
2362,
672,
247,
2608,
556,
2684,
247,
3186,
1561,
253,
622,
15,
1738,
187,
18446,
45007,
64,
4237,
46811,
31681,
475,
3474,
30284,
45007,
2946,
5949,
2402,
52,
613,
2147,
28,
187,
187,
6930,
8192,
436,
2362,
672,
253,
2608,
556,
5262,
622,
20079,
15,
50276,
510,
1318,
1992,
11808,
4817,
281,
2412,
5949,
943,
320,
253,
1180,
273,
20079,
5262,
15,
1738,
187,
18446,
45007,
64,
4237,
46811,
31681,
475,
3474,
30284,
45007,
2946,
5949,
2402,
6104,
290,
29981,
953,
28,
187,
187,
6930,
8192,
436,
2362,
672,
253,
2608,
556,
37572,
271,
19797,
275,
253,
622,
15,
1738,
187,
18446,
45007,
64,
4237,
46811,
31681,
475,
3474,
30284,
45007,
2946,
5949,
2402,
2447,
30730,
34,
2942,
41562,
28,
187,
187,
6930,
8192,
436,
2362,
672,
247,
2608,
556,
11575,
247,
830,
273,
2600,
275,
253,
622,
15,
1738,
187,
18446,
45007,
64,
4237,
46811,
31681,
475,
3474,
30284,
45007,
2946,
5949,
2402,
3145,
264,
8590,
28,
187,
187,
6930,
187,
1214,
9349,
4399,
18271,
37224,
2362,
1416,
3602,
323,
1846,
3081,
1491,
281,
13920,
3394,
24917,
949,
253,
2634,
2808,
5949,
65,
2021,
187,
273,
3082,
327,
2634,
18446,
45007,
2946,
24121,
16433,
50276,
18170,
2362,
4454,
403,
2530,
275,
253,
2634,
18446,
2946,
5949,
2402,
11,
65,
14637,
15,
187,
1738,
535,
6401,
187,
50276,
11,
35475,
2234,
908,
281,
13199,
941,
323,
253,
581,
390,
625,
7437,
273,
2600,
1146,
24917,
670,
15,
187,
50276,
11,
5128,
943,
320,
247,
13922,
16202,
2876,
15,
187,
50276,
11,
18466,
27,
187,
50276,
11,
5749,
464,
3,
301,
24089,
12114,
28941,
31875,
12114,
47704,
24089,
374,
13,
12114,
4835,
64,
19209,
24089,
608,
15,
1525,
2023,
1926,
3,
301,
24089,
12114,
22,
25025,
31875,
12114,
47704,
24089,
337,
13,
12114,
4835,
64,
19209,
24089,
898,
15,
1525,
94,
9336,
187,
50276,
8480,
187,
18446,
45007,
64,
4237,
46811,
31681,
475,
3474,
30284,
45007,
2946,
5949,
15402,
2402,
8590,
28,
187,
187,
6930,
35475,
2234,
908,
281,
13199,
271,
5417,
323,
253,
2173,
5313,
273,
2600,
1146,
24917,
670,
15,
50276,
18179,
320,
271,
444,
1539,
13,
3929,
21674,
13,
3966,
904,
7293,
327,
253,
3753,
273,
253,
622,
15,
1738,
187,
18446,
45007,
64,
4237,
46811,
31681,
475,
3474,
30284,
45007,
2946,
5949,
15402,
2402,
8590,
1838,
28,
187,
187,
6930,
35475,
2234,
908,
281,
13199,
247,
12314,
2600,
1511,
16,
11807,
323,
253,
24917,
2362,
13,
299,
15,
72,
15,
346,
30911,
995,
346,
24442,
995,
346,
16455,
3446,
50276,
10976,
281,
897,
588,
6889,
1754,
2220,
752,
253,
622,
310,
512,
670,
15,
1738,
187,
18446,
45007,
64,
4237,
46811,
31681,
475,
3474,
30284,
45007,
2946,
5949,
15402,
2402,
8590,
2548,
28,
187,
187,
6930,
35475,
2234,
908,
281,
13199,
14731,
908,
342,
24917,
2362,
15,
50276,
38,
15,
72,
15,
346,
38169,
995,
346,
38,
3322,
995,
346,
6920,
49,
3446,
50276,
5035,
22776,
14,
2945,
1166,
323,
2173,
2193,
15,
50276,
4041,
3806,
323,
841,
310,
654,
2413,
1358,
257,
15,
25842,
15,
2061,
16,
16123,
16,
28783,
64,
2945,
1166,
13208,
1738,
187,
18446,
45007,
64,
4237,
46811,
31681,
475,
3474,
30284,
45007,
2946,
5949,
15402,
2402,
18191,
7549,
28,
187,
187,
6930,
35475,
2234,
908,
281,
13199,
247,
5740,
4569,
281,
253,
2362,
1146,
24917,
15,
50276,
38,
15,
72,
904,
253,
1416,
273,
253,
19797,
37572,
275,
253,
2634,
18446,
2946,
5949,
2402,
34,
2942,
41562,
2447,
30730,
65,
2362,
15,
1738,
187,
18446,
45007,
64,
4237,
46811,
31681,
475,
3474,
30284,
45007,
2946,
5949,
15402,
2402,
11185,
28,
187,
187,
6930,
35475,
2234,
908,
281,
13199,
253,
1268,
6786,
275,
247,
2634,
18446,
2946,
5949,
2402,
34,
2942,
1272,
65,
2362,
15,
1738,
187,
18446,
45007,
64,
4237,
46811,
31681,
475,
3474,
30284,
45007,
2946,
5949,
15402,
2402,
13019,
28,
187,
187,
6930,
35475,
2234,
908,
281,
13199,
253,
4869,
13716,
2130,
323,
253,
2634,
18446,
2946,
5949,
2402,
25977,
65,
2362,
15,
50276,
38,
15,
72,
904,
346,
22,
3,
390,
346,
740,
3446,
1738,
187,
18446,
45007,
64,
4237,
46811,
31681,
475,
3474,
30284,
45007,
2946,
5949,
15402,
2402,
9684,
46464,
3902,
28,
187,
187,
6930,
35475,
2234,
908,
281,
13199,
849,
1142,
4957,
403,
1146,
11742,
323,
271,
2634,
18446,
2946,
5949,
2402,
10828,
4215,
9063,
483,
65,
390,
2634,
18446,
2946,
5949,
2402,
49,
3201,
833,
65,
2362,
15,
1738,
187,
18446,
45007,
64,
4237,
46811,
31681,
475,
3474,
30284,
45007,
2946,
5949,
15402,
2402,
12753,
16379,
28,
187,
187,
6930,
35475,
2234,
908,
281,
13199,
1880,
7830,
8692,
310,
2130,
323,
253,
2634,
18446,
2946,
5949,
2402,
10828,
4215,
9063,
483,
65,
2362,
15,
50276,
65,
18446,
45007,
2946,
5949,
15402,
3902,
4374,
65,
285,
2634,
18446,
45007,
2946,
5949,
15402,
3902,
2302,
65,
403,
1175,
15516,
2193,
281,
897,
323,
436,
4764,
15,
1738,
187,
18446,
45007,
64,
4237,
46811,
31681,
475,
3474,
30284,
45007,
2946,
5949,
15402,
2402,
45412,
6074,
31130,
28,
187,
187,
6930,
35475,
2234,
908,
281,
13199,
1332,
2608,
556,
908,
281,
8749,
323,
253,
622,
13,
299,
15,
72,
904,
346,
25116,
995,
346,
12812,
995,
346,
31068,
995,
3966,
1738,
187,
18446,
45007,
64,
4237,
46811,
31681,
475,
3474,
30284,
45007,
2946,
5949,
15402,
2402,
46563,
6942,
28,
187,
187,
6930,
35475,
2234,
908,
281,
13199,
253,
2876,
2530,
407,
253,
2608,
323,
247,
3186,
4254,
15,
1738,
187,
18446,
45007,
64,
4237,
46811,
31681,
475,
3474,
30284,
45007,
2946,
5949,
15402,
2402,
13422,
2776,
28,
187,
187,
6930,
35475,
2234,
908,
281,
13199,
1880,
253,
2425,
1146,
24917,
670,
369,
5547,
390,
417,
15,
50276,
65,
18446,
45007,
2946,
5949,
15402,
3902,
4374,
65,
285,
2634,
18446,
45007,
2946,
5949,
15402,
3902,
2302,
65,
403,
1175,
15516,
2193,
281,
897,
323,
436,
4764,
15,
1738,
187,
18446,
45007,
64,
4237,
46811,
31681,
475,
3474,
30284,
45007,
2946,
5949,
15402,
2402,
23779,
28,
187,
187,
3122,
187,
1214,
9349,
4399,
18271,
37224,
2193,
281,
9212,
281,
2362,
3602,
326,
13920,
3394,
24917,
949,
253,
2634,
2808,
5949,
65,
2021,
187,
273,
3082,
327,
2634,
18446,
45007,
2946,
24121,
16433,
50276,
18170,
2362,
3602,
403,
2530,
275,
253,
2634,
18446,
45007,
2946,
5949,
15402,
2402,
11,
65,
14637,
15,
187,
1738,
187,
187,
6930,
6279,
14,
24995,
4764,
1318,
281,
320,
908,
342,
4764,
10149,
326,
878,
247,
6279,
16,
2302,
1318,
1738,
187,
18446,
45007,
64,
4237,
46811,
31681,
475,
3474,
30284,
45007,
2946,
5949,
15402,
3902,
4374,
28,
187,
187,
6930,
1621,
14,
24995,
4764,
1318,
281,
320,
908,
342,
4764,
10149,
326,
878,
247,
6279,
16,
2302,
1318,
1738,
187,
18446,
45007,
64,
4237,
46811,
31681,
475,
3474,
30284,
45007,
2946,
5949,
15402,
3902,
2302,
28,
535,
187,
6930,
2756,
50276,
8975,
14,
2189,
2362,
20893,
323,
18052,
2898,
31140,
2130,
949,
6745,
2051,
6995,
4380,
187,
285,
323,
897,
342,
6745,
329,
1397,
9436,
12544,
285,
13757,
15,
5429,
380,
2634,
18446,
45007,
2946,
24121,
65,
4228,
966,
556,
247,
1643,
2905,
9503,
27,
535,
559,
8192,
3390,
41364,
285,
2898,
14,
7769,
3394,
281,
6745,
2051,
6995,
4380,
342,
247,
187,
31437,
1318,
281,
2020,
2439,
247,
1781,
1180,
273,
3394,
13,
285,
271,
15266,
873,
273,
2234,
16,
2877,
187,
3602,
326,
4853,
346,
339,
14908,
3,
323,
436,
2362,
313,
70,
15,
72,
904,
686,
81,
3201,
12290,
9505,
8,
1163,
686,
71,
38976,
1383,
390,
187,
686,
72,
13429,
13019,
8,
1163,
686,
2388,
8613,
3401,
535,
559,
8192,
3390,
3394,
281,
1996,
320,
908,
323,
16557,
13757,
1475,
12702,
1318,
15,
535,
559,
13277,
326,
1453,
253,
1039,
275,
534,
3394,
403,
38644,
562,
281,
253,
6745,
14903,
15,
535,
3856,
403,
690,
1774,
5319,
273,
253,
20893,
5122,
2530,
407,
2634,
18446,
45007,
2946,
24121,
38416,
535,
559,
28310,
403,
417,
2197,
4745,
672,
24917,
15,
50276,
3726,
1472,
37164,
285,
38644,
562,
281,
253,
6745,
14903,
187,
275,
247,
1180,
273,
9534,
27,
187,
428,
672,
271,
2362,
1385,
7887,
310,
4817,
313,
47590,
2233,
24917,
3394,
481,
187,
428,
672,
247,
673,
7887,
310,
4817,
313,
47590,
1458,
7253,
481,
187,
428,
672,
271,
622,
556,
4783,
281,
4114,
285,
310,
840,
3982,
896,
281,
253,
35936,
15,
535,
559,
28310,
588,
320,
20821,
672,
253,
622,
310,
275,
247,
33817,
1375,
13,
285,
2197,
672,
253,
4602,
310,
187,
16789,
285,
581,
273,
253,
1840,
686,
34459,
8,
2515,
403,
1313,
15,
535,
559,
380,
2634,
18446,
45007,
2946,
24121,
65,
966,
310,
6293,
14,
22768,
275,
326,
3394,
778,
320,
24917,
432,
667,
273,
253,
622,
434,
17059,
15,
535,
559,
380,
13722,
476,
873,
253,
2634,
34459,
38066,
65,
327,
2634,
18446,
45007,
2946,
24121,
65,
281,
3490,
253,
892,
7849,
273,
3394,
281,
760,
187,
2826,
327,
271,
6843,
1067,
281,
253,
2634,
34459,
65,
1332,
15,
535,
559,
380,
13722,
476,
1614,
327,
9667,
13844,
3453,
323,
2362,
20893,
285,
892,
7849,
281,
253,
4771,
407,
970,
187,
253,
2634,
18446,
45007,
6800,
3390,
38066,
2946,
24121,
65,
1318,
275,
2634,
60,
39,
4449,
12950,
873,
6800,
3390,
38066,
34417,
16433,
535,
3808,
1841,
281,
3877,
672,
20893,
3394,
27,
535,
559,
1707,
310,
247,
2701,
327,
253,
1180,
273,
4451,
2362,
4454,
271,
622,
476,
897,
13,
327,
253,
1340,
273,
9098,
15,
187,
559,
1707,
310,
247,
2701,
281,
253,
1180,
273,
4451,
4764,
4454,
275,
253,
2530,
3602,
326,
476,
187,
320,
908,
591,
2362,
13,
327,
253,
1340,
273,
2030,
15,
50276,
1552,
310,
417,
816,
323,
271,
2060,
1067,
13,
533,
323,
512,
187,
828,
47575,
323,
326,
2362,
2402,
15,
187,
559,
11846,
4454,
285,
4764,
4454,
313,
783,
10149,
275,
253,
427,
3871,
10052,
10,
1364,
320,
875,
374,
285,
3387,
5810,
13,
285,
187,
1364,
2882,
273,
355,
15671,
360,
6555,
5810,
13,
13830,
48568,
390,
8470,
15,
187,
559,
380,
2978,
273,
1016,
4764,
1318,
476,
320,
642,
625,
685,
327,
253,
1340,
273,
2233,
5810,
15,
535,
1738,
187,
33,
15049,
30284,
45007,
2946,
24121,
1163,
6640,
4241,
187,
187,
3122,
187,
475,
20233,
2362,
20893,
187,
1738,
187,
187,
6930,
535,
50276,
6800,
271,
2362,
342,
816,
271,
2362,
2402,
15,
535,
428,
35475,
2362,
2402,
27,
50275,
510,
1416,
273,
253,
2362,
281,
1924,
15,
50276,
24314,
569,
327,
1180,
273,
3394,
285,
1416,
2978,
187,
403,
1677,
275,
253,
2634,
18446,
45007,
2946,
24121,
65,
10097,
15,
535,
1738,
187,
12,
313,
4353,
10,
2808,
5949,
10477,
26648,
9657,
8045,
2402,
28,
187,
187,
6930,
535,
50276,
6800,
271,
2362,
342,
271,
2362,
2402,
285,
247,
31437,
1318,
281,
320,
40006,
342,
643,
3394,
273,
436,
1416,
15,
535,
428,
35475,
2362,
2402,
27,
50275,
510,
1416,
273,
253,
2362,
281,
1924,
15,
50276,
24314,
569,
327,
1180,
273,
3394,
285,
1416,
2978,
187,
403,
1677,
275,
253,
2634,
18446,
45007,
2946,
24121,
65,
10097,
15,
50276,
18170,
2362,
4454,
403,
2530,
275,
2634,
18446,
2946,
5949,
2402,
11,
65,
14637,
15,
535,
428,
35475,
1318,
1992,
11808,
27,
50276,
35277,
281,
320,
40006,
715,
512,
3394,
273,
436,
2362,
2402,
13,
285,
2051,
6995,
4380,
588,
1304,
187,
253,
18849,
285,
3388,
1318,
273,
436,
2408,
15,
187,
1738,
187,
12,
313,
4353,
10,
2808,
5949,
10477,
26648,
9657,
8045,
2402,
187,
50272,
2877,
1992,
11808,
10477,
12237,
10,
2877,
1992,
11808,
28,
535,
187,
6930,
535,
50276,
6800,
271,
2362,
342,
271,
2362,
2402,
285,
247,
873,
273,
2234,
16,
2877,
8557,
275,
253,
3602,
19034,
15,
187,
35475,
7364,
403,
2529,
1840,
15,
535,
428,
35475,
2362,
2402,
27,
50275,
510,
1416,
273,
253,
2362,
281,
1924,
15,
50276,
24314,
569,
327,
1180,
273,
3394,
285,
1416,
5140,
187,
403,
1677,
275,
253,
2634,
18446,
45007,
2946,
24121,
65,
10097,
15,
50276,
18170,
2362,
4454,
403,
2530,
275,
2634,
18446,
2946,
5949,
2402,
11,
65,
14637,
15,
535,
428,
35475,
3602,
27,
50276,
2906,
2713,
26257,
4764,
19034,
273,
5319,
15,
380,
10149,
281,
436,
19034,
1364,
187,
320,
31681,
434,
13,
285,
253,
2193,
403,
3264,
281,
320,
31681,
390,
6640,
8447,
15,
50276,
24314,
569,
327,
253,
1180,
273,
187,
3602,
285,
1416,
5140,
403,
1677,
275,
253,
2634,
18446,
45007,
2946,
24121,
65,
10097,
15,
50276,
18170,
314,
908,
4764,
4454,
187,
403,
2530,
275,
2634,
18446,
45007,
2946,
5949,
15402,
2402,
11,
65,
14637,
15,
187,
1738,
187,
12,
313,
4353,
10,
2808,
5949,
10477,
26648,
9657,
8045,
2402,
187,
50272,
22041,
10477,
47,
3871,
10052,
9657,
22041,
28,
187,
187,
6930,
535,
50276,
6800,
271,
2362,
342,
271,
2362,
2402,
13,
247,
31437,
1318,
281,
320,
40006,
342,
643,
3394,
273,
436,
1416,
13,
187,
285,
247,
873,
273,
2234,
16,
2877,
8557,
275,
253,
3602,
19034,
15,
535,
428,
35475,
2362,
2402,
27,
50275,
510,
1416,
273,
253,
2362,
281,
1924,
15,
50276,
24314,
569,
327,
1180,
273,
3394,
285,
1416,
5140,
187,
403,
1677,
275,
253,
2634,
18446,
45007,
2946,
24121,
65,
10097,
15,
50276,
18170,
2362,
4454,
403,
2530,
275,
2634,
18446,
2946,
5949,
2402,
11,
65,
14637,
15,
535,
428,
35475,
1318,
1992,
11808,
27,
50276,
35277,
281,
320,
40006,
715,
512,
3394,
273,
436,
2362,
2402,
13,
285,
2051,
6995,
4380,
588,
1304,
187,
253,
18849,
285,
3388,
1318,
273,
436,
2408,
15,
535,
428,
35475,
3602,
27,
50276,
2906,
2713,
26257,
4764,
19034,
273,
5319,
15,
380,
10149,
281,
436,
19034,
1364,
187,
320,
31681,
434,
13,
285,
253,
2193,
403,
3264,
281,
320,
31681,
390,
6640,
8447,
15,
50276,
24314,
569,
327,
253,
1180,
273,
187,
3602,
285,
1416,
5140,
403,
1677,
275,
253,
2634,
18446,
45007,
2946,
24121,
65,
10097,
15,
50276,
18170,
314,
908,
4764,
4454,
187,
403,
2530,
275,
2634,
18446,
45007,
2946,
5949,
15402,
2402,
11,
65,
14637,
15,
535,
1738,
187,
12,
313,
4353,
10,
2808,
5949,
10477,
26648,
9657,
8045,
2402,
187,
50272,
2877,
1992,
11808,
10477,
12237,
10,
2877,
1992,
11808,
187,
50272,
22041,
10477,
47,
3871,
10052,
9657,
22041,
28,
535,
187,
6930,
535,
50276,
6800,
271,
2362,
342,
271,
2362,
2402,
13,
247,
31437,
1318,
281,
320,
40006,
342,
643,
3394,
273,
436,
1416,
13,
187,
285,
247,
873,
273,
2234,
16,
2877,
8557,
275,
253,
3602,
19034,
15,
50276,
11509,
2821,
6874,
14935,
253,
13722,
187,
2303,
247,
1798,
654,
39,
4449,
2738,
13208,
50276,
2042,
5296,
310,
2530,
13,
840,
2634,
60,
39,
4449,
2738,
3939,
16282,
62,
65,
588,
320,
908,
15,
535,
428,
35475,
2362,
2402,
27,
50275,
510,
1416,
273,
253,
2362,
281,
1924,
15,
50276,
24314,
569,
327,
1180,
273,
3394,
285,
1416,
5140,
187,
403,
1677,
275,
253,
2634,
18446,
45007,
2946,
24121,
65,
10097,
15,
50276,
18170,
2362,
4454,
403,
2530,
275,
2634,
18446,
2946,
5949,
2402,
11,
65,
14637,
15,
535,
428,
35475,
1318,
1992,
11808,
27,
50276,
35277,
281,
320,
40006,
715,
512,
3394,
273,
436,
2362,
2402,
13,
285,
2051,
6995,
4380,
588,
1304,
187,
253,
18849,
285,
3388,
1318,
273,
436,
2408,
15,
50276,
8497,
326,
436,
310,
271,
6640,
8447,
13,
285,
247,
1318,
273,
2634,
18789,
65,
12853,
187,
326,
436,
2362,
2506,
626,
452,
247,
1318,
2330,
342,
352,
323,
36138,
15,
535,
428,
35475,
3602,
27,
50276,
2906,
2713,
26257,
4764,
19034,
273,
5319,
15,
380,
10149,
281,
436,
19034,
1364,
187,
320,
31681,
434,
13,
285,
253,
2193,
403,
3264,
281,
320,
31681,
390,
6640,
8447,
15,
50276,
24314,
569,
327,
253,
1180,
273,
187,
3602,
285,
1416,
5140,
403,
1677,
275,
253,
2634,
18446,
45007,
2946,
24121,
65,
10097,
15,
50276,
18170,
314,
908,
4764,
4454,
187,
403,
2530,
275,
2634,
18446,
45007,
2946,
5949,
15402,
2402,
11,
65,
14637,
15,
535,
428,
35475,
2289,
11200,
27,
50276,
510,
15266,
2289,
10669,
281,
2412,
253,
2362,
347,
15,
187,
1738,
187,
12,
313,
4353,
10,
2808,
5949,
10477,
26648,
9657,
8045,
2402,
187,
50272,
2877,
1992,
11808,
10477,
4883,
8447,
9657,
2877,
1992,
11808,
187,
50272,
22041,
10477,
47,
3871,
10052,
9657,
22041,
187,
50273,
10773,
11200,
10477,
18446,
45007,
11501,
11200,
9657,
10773,
11200,
28,
187,
187,
3122,
187,
475,
47368,
20893,
187,
1738,
187,
187,
6930,
535,
50276,
6800,
247,
7471,
273,
253,
7616,
2408,
13,
275,
253,
7616,
14731,
15,
535,
428,
35475,
7471,
35277,
27,
50274,
49,
25125,
2408,
281,
320,
24917,
13,
347,
4469,
275,
253,
7616,
14731,
15,
50276,
1552,
1318,
187,
588,
320,
9971,
281,
253,
8014,
20556,
1659,
313,
70,
15,
72,
904,
1249,
15,
16767,
2251,
4916,
1249,
15,
26140,
481,
535,
428,
35475,
14731,
27,
50268,
18191,
7549,
13,
310,
17007,
347,
13,
299,
15,
72,
15,
346,
38169,
995,
346,
38,
3322,
995,
346,
6920,
49,
3446,
50276,
5035,
22776,
14,
2945,
1166,
323,
187,
2173,
2193,
15,
50276,
4041,
3806,
323,
841,
310,
654,
2413,
1358,
257,
15,
25842,
15,
2061,
16,
16123,
16,
28783,
64,
2945,
1166,
13208,
2756,
50264,
1552,
2362,
4745,
23785,
247,
26363,
273,
253,
2634,
18446,
45007,
2946,
24121,
65,
2362,
15154,
13,
5734,
253,
2634,
34459,
38066,
65,
310,
873,
187,
281,
2634,
18446,
45007,
2946,
24121,
6623,
2345,
38066,
1672,
20692,
11564,
16433,
535,
1738,
187,
12,
313,
4353,
10,
2808,
49,
25125,
10477,
12237,
10,
81,
25125,
35277,
187,
50267,
32029,
10477,
26648,
9657,
32029,
28,
187,
187,
6930,
535,
50276,
6800,
247,
7471,
273,
253,
7616,
2408,
13,
275,
253,
7616,
14731,
13,
671,
5277,
247,
873,
273,
187,
3081,
5319,
12930,
253,
7471,
15,
535,
428,
35475,
7471,
35277,
27,
50276,
49,
25125,
2408,
281,
320,
24917,
13,
347,
4469,
275,
253,
7616,
14731,
15,
1552,
1318,
187,
588,
320,
9971,
281,
253,
8014,
20556,
1659,
313,
70,
15,
72,
904,
1249,
15,
16767,
2251,
4916,
1249,
15,
26140,
481,
535,
428,
35475,
14731,
27,
50270,
18191,
7549,
13,
310,
17007,
347,
13,
299,
15,
72,
15,
346,
38169,
995,
346,
38,
3322,
995,
346,
6920,
49,
3446,
50276,
5035,
22776,
14,
2945,
1166,
323,
187,
2173,
2193,
15,
50276,
4041,
3806,
323,
841,
310,
654,
2413,
1358,
257,
15,
25842,
15,
2061,
16,
16123,
16,
28783,
64,
2945,
1166,
13208,
535,
428,
35475,
3602,
27,
50272,
2906,
2713,
26257,
4764,
19034,
273,
5319,
15,
380,
10149,
281,
436,
19034,
1364,
187,
320,
31681,
434,
13,
285,
253,
2193,
403,
3264,
281,
320,
31681,
390,
6640,
8447,
15,
50276,
24314,
569,
327,
253,
1180,
273,
187,
3602,
285,
1416,
5140,
403,
1677,
275,
253,
2634,
18446,
45007,
2946,
24121,
65,
10097,
15,
50276,
18170,
314,
908,
4764,
4454,
187,
403,
2530,
275,
2634,
18446,
45007,
2946,
5949,
15402,
2402,
11,
65,
14637,
15,
2756,
50264,
1552,
2362,
4745,
23785,
247,
26363,
273,
253,
2634,
18446,
45007,
2946,
24121,
65,
2362,
15154,
13,
5734,
253,
2634,
34459,
38066,
65,
310,
873,
187,
281,
2634,
18446,
45007,
2946,
24121,
6623,
2345,
38066,
1672,
20692,
11564,
16433,
535,
1738,
187,
12,
313,
4353,
10,
2808,
49,
25125,
10477,
12237,
10,
81,
25125,
35277,
187,
50267,
32029,
10477,
26648,
9657,
32029,
187,
50269,
22041,
10477,
47,
3871,
10052,
9657,
22041,
28,
187,
187,
6930,
535,
50276,
6800,
247,
7471,
273,
253,
7616,
2408,
13,
275,
253,
7616,
14731,
13,
671,
5277,
247,
873,
273,
187,
3081,
5319,
12930,
253,
7471,
13,
347,
973,
347,
271,
654,
39,
4449,
2738,
31,
281,
2412,
281,
15,
535,
428,
35475,
7471,
35277,
27,
50276,
49,
25125,
2408,
281,
320,
24917,
13,
347,
4469,
275,
253,
7616,
14731,
15,
1552,
1318,
187,
588,
320,
9971,
281,
253,
8014,
20556,
1659,
313,
70,
15,
72,
904,
1249,
15,
16767,
2251,
4916,
1249,
15,
26140,
481,
535,
428,
35475,
14731,
27,
50270,
18191,
7549,
13,
310,
17007,
347,
13,
299,
15,
72,
15,
346,
38169,
995,
346,
38,
3322,
995,
346,
6920,
49,
3446,
50276,
5035,
22776,
14,
2945,
1166,
323,
187,
2173,
2193,
15,
50276,
4041,
3806,
323,
841,
310,
654,
2413,
1358,
257,
15,
25842,
15,
2061,
16,
16123,
16,
28783,
64,
2945,
1166,
13208,
535,
428,
35475,
3602,
27,
50272,
2906,
2713,
26257,
4764,
19034,
273,
5319,
15,
380,
10149,
281,
436,
19034,
1364,
187,
320,
31681,
434,
13,
285,
253,
2193,
403,
3264,
281,
320,
31681,
390,
6640,
8447,
15,
50276,
24314,
569,
327,
253,
1180,
273,
187,
3602,
285,
1416,
5140,
403,
1677,
275,
253,
2634,
18446,
45007,
2946,
24121,
65,
10097,
15,
50276,
18170,
314,
908,
4764,
4454,
187,
403,
2530,
275,
2634,
18446,
45007,
2946,
5949,
15402,
2402,
11,
65,
14637,
15,
535,
428,
35475,
2289,
11200,
27,
50276,
510,
15266,
2289,
10669,
281,
2412,
253,
2362,
347,
15,
2756,
50266,
1552,
2362,
4745,
23785,
247,
26363,
273,
253,
2634,
18446,
45007,
2946,
24121,
65,
2362,
15154,
13,
5734,
253,
2634,
34459,
38066,
65,
310,
873,
187,
281,
2634,
18446,
45007,
2946,
24121,
6623,
2345,
38066,
1672,
20692,
11564,
16433,
535,
1738,
187,
12,
313,
4353,
10,
2808,
49,
25125,
10477,
12237,
10,
81,
25125,
35277,
187,
50267,
32029,
10477,
26648,
9657,
32029,
187,
50269,
22041,
10477,
47,
3871,
10052,
9657,
22041,
187,
50270,
10773,
11200,
10477,
18446,
45007,
11501,
11200,
9657,
10773,
11200,
28,
535,
187,
3122,
187,
475,
36978,
3105,
6787,
8192,
3390,
187,
1738,
187,
187,
6930,
187,
50276,
6800,
271,
622,
2362,
326,
11411,
326,
253,
2898,
369,
1527,
3066,
36978,
50002,
15,
535,
428,
35475,
24098,
27,
50002,
24098,
2959,
3066,
2634,
9571,
12332,
23757,
16433,
187,
1738,
187,
12,
313,
4353,
10,
2808,
37331,
27193,
9807,
10477,
47,
3871,
10052,
9657,
35704,
28,
187,
187,
6930,
187,
50276,
6800,
271,
622,
2362,
326,
11411,
326,
247,
2840,
2250,
369,
2668,
432,
247,
7450,
19313,
15,
535,
428,
35475,
24098,
27,
50002,
24098,
2959,
3066,
2634,
9571,
12332,
23757,
16433,
187,
428,
35475,
2250,
27,
50276,
2402,
273,
253,
2250,
326,
369,
2668,
15,
187,
1738,
187,
12,
313,
4353,
10,
2808,
37331,
27193,
9807,
10477,
47,
3871,
10052,
9657,
35704,
2250,
10477,
26648,
9657,
1913,
28,
187,
187,
6930,
535,
50276,
3650,
7790,
253,
3394,
985,
326,
253,
622,
556,
10098,
285,
13,
672,
4569,
13,
20131,
271,
346,
18132,
622,
3,
2362,
15,
187,
831,
1159,
310,
1925,
8356,
432,
30284,
45007,
12332,
23757,
2898,
8917,
35,
886,
485,
16754,
13,
5734,
187,
581,
17797,
1487,
686,
25116,
22156,
6800,
2946,
24121,
19157,
8,
2234,
281,
3221,
275,
253,
2199,
8692,
499,
382,
1873,
15,
187,
496,
1083,
686,
25116,
22156,
6800,
2946,
24121,
19157,
8,
310,
873,
281,
3221,
13,
840,
352,
943,
5431,
320,
4845,
275,
253,
187,
622,
30679,
8,
2634,
13259,
8917,
35,
886,
485,
16754,
30337,
1332,
15,
535,
831,
1332,
671,
3936,
1557,
273,
20893,
253,
2362,
7809,
253,
806,
673,
436,
622,
556,
644,
10098,
13,
534,
13,
2190,
643,
1841,
13,
310,
908,
281,
187,
3540,
2608,
11931,
285,
622,
3334,
16557,
43576,
15,
5429,
2634,
36915,
2946,
65,
588,
417,
2412,
271,
2362,
327,
1046,
622,
8027,
13,
1580,
37048,
5108,
1046,
673,
253,
622,
310,
4114,
264,
285,
840,
35936,
264,
15,
187,
346,
18132,
622,
3,
3394,
588,
320,
24917,
672,
253,
622,
556,
417,
644,
3939,
323,
625,
685,
3925,
7253,
15,
50276,
1552,
1332,
671,
5997,
247,
346,
615,
18132,
622,
3,
187,
2362,
281,
320,
24917,
672,
12154,
403,
346,
47954,
995,
285,
841,
3394,
403,
24917,
342,
253,
6874,
2978,
13,
342,
271,
14011,
273,
849,
1199,
187,
673,
556,
38667,
875,
12154,
13,
285,
342,
253,
1180,
273,
4114,
16,
922,
2595,
11606,
621,
326,
6874,
574,
15,
50276,
1552,
941,
187,
310,
512,
7985,
275,
634,
622,
434,
2051,
28310,
6995,
4380,
15,
187,
1738,
187,
12,
313,
4353,
10,
36915,
2946,
28,
187,
187,
3122,
187,
475,
36978,
3105,
6787,
39927,
187,
1738,
187,
187,
6930,
187,
50276,
46238,
285,
16965,
2813,
10669,
281,
8749,
253,
1655,
2898,
323,
7450,
30584,
15,
5429,
34730,
285,
16965,
247,
2813,
10669,
432,
2634,
4883,
3233,
65,
6779,
326,
368,
755,
432,
2634,
9571,
12332,
23757,
8634,
13259,
27,
14958,
16601,
2214,
32842,
3650,
6787,
3378,
15982,
11200,
27,
16433,
535,
428,
35475,
2813,
11200,
27,
27048,
10669,
941,
15,
187,
1738,
187,
12,
313,
4353,
10,
1178,
37331,
3650,
6787,
15982,
11200,
10477,
4883,
3233,
9657,
10933,
11200,
28,
187,
187,
3122,
187,
475,
9175,
689,
2362,
14604,
272,
16,
1258,
7849,
187,
1738,
187,
187,
6930,
535,
50276,
3633,
253,
1655,
2362,
892,
7849,
3879,
31238,
672,
3394,
403,
2197,
896,
281,
6745,
14903,
15,
187,
1738,
187,
12,
313,
18446,
45007,
2946,
24121,
6623,
2345,
38066,
10,
34459,
38066,
28,
187,
187,
6930,
535,
50276,
4531,
253,
1655,
2362,
892,
7849,
3879,
31238,
672,
3394,
403,
2197,
896,
281,
6745,
14903,
15,
535,
428,
35475,
26363,
38066,
27,
50275,
510,
6799,
2634,
18446,
45007,
2946,
24121,
6623,
2345,
38066,
65,
281,
320,
908,
15,
187,
1738,
187,
12,
313,
4353,
10,
1178,
6623,
2345,
38066,
10477,
18446,
45007,
2946,
24121,
6623,
2345,
38066,
10,
34459,
38066,
28,
187,
187,
6930,
187,
50276,
4531,
253,
686,
37488,
8,
2051,
5417,
323,
2051,
11846,
20893,
15,
5429,
496,
690,
2219,
13,
11222,
971,
281,
897,
581,
6745,
2051,
5417,
323,
16164,
285,
2675,
3361,
285,
1529,
187,
323,
2051,
11846,
20893,
15,
50276,
9,
1145,
1650,
310,
604,
2709,
11222,
432,
253,
1072,
2567,
3894,
271,
622,
5417,
323,
16164,
13,
533,
187,
971,
5799,
20893,
2698,
50276,
3463,
4284,
13,
436,
1318,
310,
2634,
18789,
11976,
285,
809,
398,
281,
253,
2634,
18446,
45007,
2946,
24121,
9677,
2946,
1838,
18099,
4814,
65,
187,
499,
382,
1318,
15,
50276,
2042,
326,
434,
417,
873,
13,
352,
30470,
281,
2634,
60,
18446,
3871,
14007,
12950,
622,
1838,
62,
16433,
535,
831,
943,
320,
873,
1078,
667,
643,
5841,
403,
1160,
281,
2634,
18446,
45007,
2946,
24121,
16433,
50276,
14131,
13,
368,
943,
873,
352,
275,
634,
2898,
187,
24565,
434,
2634,
13259,
27,
14958,
48082,
41803,
272,
3378,
10976,
30337,
24565,
15,
535,
428,
35475,
622,
1838,
27,
380,
6745,
2051,
5417,
281,
320,
908,
323,
2051,
11846,
20893,
15,
187,
1738,
187,
12,
313,
4353,
10,
1178,
6800,
3390,
9677,
2946,
1838,
10477,
26648,
9657,
1212,
1838,
28,
187,
187,
6930,
187,
50276,
3633,
253,
686,
37488,
8,
2051,
5417,
323,
2051,
11846,
20893,
15,
535,
187,
14,
2594,
27,
1178,
6800,
3390,
9677,
2946,
1838,
27,
535,
1738,
187,
12,
313,
26648,
9657,
36193,
9677,
2946,
1838,
28,
535,
187,
6930,
187,
50276,
1672,
20692,
314,
8386,
745,
892,
7849,
273,
3394,
281,
6745,
15,
50276,
1552,
310,
271,
35576,
1332,
13,
533,
352,
1057,
23070,
271,
8993,
187,
8386,
745,
15,
50276,
12023,
20101,
588,
320,
2361,
949,
253,
50002,
21972,
342,
19313,
5417,
2634,
18446,
45007,
2946,
24121,
6800,
3390,
9179,
27193,
16433,
187,
1738,
187,
12,
313,
4353,
10,
34459,
28,
187,
187,
6930,
187,
50276,
21164,
265,
247,
2748,
9999,
253,
15941,
8990,
1067,
281,
19553,
247,
12047,
12469,
1482,
346,
19016,
3128,
5417,
3,
323,
253,
622,
434,
6745,
2608,
15,
187,
9368,
398,
588,
5007,
436,
5417,
896,
281,
616,
1211,
14903,
13,
4822,
598,
247,
873,
281,
2794,
247,
6745,
12047,
12469,
1482,
342,
13,
187,
285,
840,
897,
253,
29395,
12047,
12469,
1482,
281,
2303,
16557,
15,
535,
428,
35475,
2289,
11200,
27,
380,
2289,
10669,
281,
897,
281,
5100,
253,
2608,
434,
6489,
323,
4212,
24917,
715,
6745,
949,
436,
622,
15,
187,
1310,
2634,
18789,
11976,
840,
253,
2634,
60,
18446,
45007,
11501,
11200,
1655,
11501,
11200,
62,
65,
310,
908,
15,
5429,
380,
13922,
275,
253,
2748,
434,
2380,
588,
2486,
271,
346,
13994,
64,
5353,
1482,
64,
19016,
64,
14824,
64,
301,
3,
2234,
16,
2877,
4667,
13,
342,
253,
1318,
1146,
253,
5417,
22111,
15,
187,
831,
5417,
310,
271,
28454,
9706,
273,
253,
6745,
2608,
434,
5417,
285,
253,
42203,
6745,
622,
5417,
15,
187,
20815,
5841,
342,
253,
1072,
2608,
588,
1091,
1027,
36919,
13,
3021,
841,
36919,
2550,
320,
908,
281,
24888,
3879,
187,
2439,
4095,
390,
4893,
13,
285,
403,
760,
14282,
672,
2197,
896,
281,
6745,
323,
6153,
12047,
12469,
7545,
15,
535,
380,
5417,
22111,
6125,
253,
6745,
2608,
3636,
275,
253,
1563,
1039,
27,
604,
253,
7616,
2289,
10669,
310,
3588,
13,
187,
253,
5417,
588,
1957,
253,
2608,
2330,
342,
326,
10669,
28,
5010,
253,
5417,
588,
1957,
253,
2608,
24917,
715,
253,
187,
7925,
6745,
622,
327,
253,
2813,
15,
50276,
2042,
627,
310,
642,
7925,
6745,
622,
13,
642,
581,
310,
24917,
715,
352,
13,
390,
253,
2608,
556,
33549,
562,
187,
387,
253,
16567,
1268,
432,
519,
12544,
13,
840,
247,
2634,
18789,
65,
5417,
588,
320,
4895,
15,
535,
831,
1332,
6548,
2634,
18789,
65,
604,
2057,
253,
2608,
556,
33549,
14,
483,
313,
13917,
16567,
10,
432,
2006,
1535,
10892,
13,
253,
622,
3139,
556,
3710,
2362,
10393,
187,
3066,
253,
2634,
60,
18446,
3871,
14007,
12950,
2701,
5949,
1898,
3233,
31838,
62,
65,
7908,
13,
390,
247,
2173,
6745,
2608,
2550,
320,
3636,
15,
187,
1738,
187,
12,
313,
18446,
45007,
15499,
6825,
9657,
9629,
2214,
13510,
18142,
1482,
25110,
43357,
1838,
3378,
11501,
11200,
10477,
18446,
45007,
11501,
11200,
9657,
10773,
11200,
28,
187,
187,
3122,
187,
50276,
46238,
247,
2840,
2608,
5417,
281,
15629,
342,
512,
622,
3394,
15,
535,
380,
2608,
1838,
310,
32178,
1919,
352,
310,
16481,
407,
8136,
5296,
15,
187,
1738,
187,
12,
313,
4353,
10,
1178,
6989,
1838,
10477,
26648,
9657,
4537,
1838,
28,
187,
187,
3122,
187,
50276,
34551,
253,
873,
2840,
2608,
5417,
15,
187,
1738,
187,
12,
313,
26648,
9657,
4537,
1838,
28,
187,
187,
3122,
187,
50276,
52,
1727,
247,
2748,
281,
5731,
253,
3607,
323,
253,
1655,
2608,
13,
873,
407,
2634,
1178,
6989,
1838,
30337,
535,
1422,
1364,
1067,
2634,
18446,
45007,
2946,
24121,
873,
6989,
1838,
30337,
1078,
2403,
436,
1067,
15,
187,
428,
35475,
3607,
27,
253,
2840,
2608,
3607,
187,
428,
35475,
16454,
27,
253,
15266,
12240,
16454,
187,
1738,
187,
12,
313,
4353,
10,
11183,
6989,
18401,
10477,
47,
3871,
10052,
9657,
19402,
16454,
10477,
18446,
45007,
15499,
6825,
9294,
10,
20238,
28,
187,
187,
33,
423,
187
] | // Copyright (c) 2014-present, Facebook, Inc. All rights reserved.
//
// You are hereby granted a non-exclusive, worldwide, royalty-free license to use,
// copy, modify, and distribute this software in source code or binary form for use
// in connection with the web services and APIs provided by Facebook.
//
// As with any software that integrates with the Facebook platform, your use of
// this software is subject to the Facebook Developer Principles and Policies
// [http://developers.facebook.com/policy/]. This copyright notice shall be
// included in all copies or substantial portions of the software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
// FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
// COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
// IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#import <Foundation/Foundation.h>
#import <FBSDKCoreKit/FBSDKGraphRequestConnection.h>
#import "FBSDKMacros.h"
@class FBSDKAccessToken;
@class FBSDKGraphRequest;
/** NSNotificationCenter name indicating a result of a failed log flush attempt. The posted object will be an NSError instance. */
FBSDK_EXTERN NSString *const FBSDKAppEventsLoggingResultNotification;
/** optional plist key ("FacebookLoggingOverrideAppID") for setting `loggingOverrideAppID` */
FBSDK_EXTERN NSString *const FBSDKAppEventsOverrideAppIDBundleKey;
/**
NS_ENUM (NSUInteger, FBSDKAppEventsFlushBehavior)
Specifies when `FBSDKAppEvents` sends log events to the server.
*/
typedef NS_ENUM(NSUInteger, FBSDKAppEventsFlushBehavior)
{
/** Flush automatically: periodically (once a minute or every 100 logged events) and always at app reactivation. */
FBSDKAppEventsFlushBehaviorAuto = 0,
/** Only flush when the `flush` method is called. When an app is moved to background/terminated, the
events are persisted and re-established at activation, but they will only be written with an
explicit call to `flush`. */
FBSDKAppEventsFlushBehaviorExplicitOnly,
};
/**
@methodgroup Predefined event names for logging events common to many apps. Logging occurs through the `logEvent` family of methods on `FBSDKAppEvents`.
Common event parameters are provided in the `FBSDKAppEventsParameterNames*` constants.
*/
/** Log this event when the user has achieved a level in the app. */
FBSDK_EXTERN NSString *const FBSDKAppEventNameAchievedLevel;
/** Log this event when the user has entered their payment info. */
FBSDK_EXTERN NSString *const FBSDKAppEventNameAddedPaymentInfo;
/** Log this event when the user has added an item to their cart. The valueToSum passed to logEvent should be the item's price. */
FBSDK_EXTERN NSString *const FBSDKAppEventNameAddedToCart;
/** Log this event when the user has added an item to their wishlist. The valueToSum passed to logEvent should be the item's price. */
FBSDK_EXTERN NSString *const FBSDKAppEventNameAddedToWishlist;
/** Log this event when a user has completed registration with the app. */
FBSDK_EXTERN NSString *const FBSDKAppEventNameCompletedRegistration;
/** Log this event when the user has completed a tutorial in the app. */
FBSDK_EXTERN NSString *const FBSDKAppEventNameCompletedTutorial;
/** Log this event when the user has entered the checkout process. The valueToSum passed to logEvent should be the total price in the cart. */
FBSDK_EXTERN NSString *const FBSDKAppEventNameInitiatedCheckout;
/** Log this event when the user has rated an item in the app. The valueToSum passed to logEvent should be the numeric rating. */
FBSDK_EXTERN NSString *const FBSDKAppEventNameRated;
/** Log this event when a user has performed a search within the app. */
FBSDK_EXTERN NSString *const FBSDKAppEventNameSearched;
/** Log this event when the user has spent app credits. The valueToSum passed to logEvent should be the number of credits spent. */
FBSDK_EXTERN NSString *const FBSDKAppEventNameSpentCredits;
/** Log this event when the user has unlocked an achievement in the app. */
FBSDK_EXTERN NSString *const FBSDKAppEventNameUnlockedAchievement;
/** Log this event when a user has viewed a form of content in the app. */
FBSDK_EXTERN NSString *const FBSDKAppEventNameViewedContent;
/**
@methodgroup Predefined event name parameters for common additional information to accompany events logged through the `logEvent` family
of methods on `FBSDKAppEvents`. Common event names are provided in the `FBAppEventName*` constants.
*/
/**
* Parameter key used to specify data for the one or more pieces of content being logged about.
* Data should be a JSON encoded string.
* Example:
* "[{\"id\": \"1234\", \"quantity\": 2, \"item_price\": 5.99}, {\"id\": \"5678\", \"quantity\": 1, \"item_price\": 9.99}]"
*/
FBSDK_EXTERN NSString *const FBSDKAppEventParameterNameContent;
/** Parameter key used to specify an ID for the specific piece of content being logged about. Could be an EAN, article identifier, etc., depending on the nature of the app. */
FBSDK_EXTERN NSString *const FBSDKAppEventParameterNameContentID;
/** Parameter key used to specify a generic content type/family for the logged event, e.g. "music", "photo", "video". Options to use will vary based upon what the app is all about. */
FBSDK_EXTERN NSString *const FBSDKAppEventParameterNameContentType;
/** Parameter key used to specify currency used with logged event. E.g. "USD", "EUR", "GBP". See ISO-4217 for specific values. One reference for these is <http://en.wikipedia.org/wiki/ISO_4217>. */
FBSDK_EXTERN NSString *const FBSDKAppEventParameterNameCurrency;
/** Parameter key used to specify a description appropriate to the event being logged. E.g., the name of the achievement unlocked in the `FBAppEventNameAchievementUnlocked` event. */
FBSDK_EXTERN NSString *const FBSDKAppEventParameterNameDescription;
/** Parameter key used to specify the level achieved in a `FBAppEventNameAchieved` event. */
FBSDK_EXTERN NSString *const FBSDKAppEventParameterNameLevel;
/** Parameter key used to specify the maximum rating available for the `FBAppEventNameRate` event. E.g., "5" or "10". */
FBSDK_EXTERN NSString *const FBSDKAppEventParameterNameMaxRatingValue;
/** Parameter key used to specify how many items are being processed for an `FBAppEventNameInitiatedCheckout` or `FBAppEventNamePurchased` event. */
FBSDK_EXTERN NSString *const FBSDKAppEventParameterNameNumItems;
/** Parameter key used to specify whether payment info is available for the `FBAppEventNameInitiatedCheckout` event. `FBSDKAppEventParameterValueYes` and `FBSDKAppEventParameterValueNo` are good canonical values to use for this parameter. */
FBSDK_EXTERN NSString *const FBSDKAppEventParameterNamePaymentInfoAvailable;
/** Parameter key used to specify method user has used to register for the app, e.g., "Facebook", "email", "Twitter", etc */
FBSDK_EXTERN NSString *const FBSDKAppEventParameterNameRegistrationMethod;
/** Parameter key used to specify the string provided by the user for a search operation. */
FBSDK_EXTERN NSString *const FBSDKAppEventParameterNameSearchString;
/** Parameter key used to specify whether the activity being logged about was successful or not. `FBSDKAppEventParameterValueYes` and `FBSDKAppEventParameterValueNo` are good canonical values to use for this parameter. */
FBSDK_EXTERN NSString *const FBSDKAppEventParameterNameSuccess;
/*
@methodgroup Predefined values to assign to event parameters that accompany events logged through the `logEvent` family
of methods on `FBSDKAppEvents`. Common event parameters are provided in the `FBSDKAppEventParameterName*` constants.
*/
/** Yes-valued parameter value to be used with parameter keys that need a Yes/No value */
FBSDK_EXTERN NSString *const FBSDKAppEventParameterValueYes;
/** No-valued parameter value to be used with parameter keys that need a Yes/No value */
FBSDK_EXTERN NSString *const FBSDKAppEventParameterValueNo;
/**
Client-side event logging for specialized application analytics available through Facebook App Insights
and for use with Facebook Ads conversion tracking and optimization.
The `FBSDKAppEvents` static class has a few related roles:
+ Logging predefined and application-defined events to Facebook App Insights with a
numeric value to sum across a large number of events, and an optional set of key/value
parameters that define "segments" for this event (e.g., 'purchaserStatus' : 'frequent', or
'gamerLevel' : 'intermediate')
+ Logging events to later be used for ads optimization around lifetime value.
+ Methods that control the way in which events are flushed out to the Facebook servers.
Here are some important characteristics of the logging mechanism provided by `FBSDKAppEvents`:
+ Events are not sent immediately when logged. They're cached and flushed out to the Facebook servers
in a number of situations:
- when an event count threshold is passed (currently 100 logged events).
- when a time threshold is passed (currently 15 seconds).
- when an app has gone to background and is then brought back to the foreground.
+ Events will be accumulated when the app is in a disconnected state, and sent when the connection is
restored and one of the above 'flush' conditions are met.
+ The `FBSDKAppEvents` class is thread-safe in that events may be logged from any of the app's threads.
+ The developer can set the `flushBehavior` on `FBSDKAppEvents` to force the flushing of events to only
occur on an explicit call to the `flush` method.
+ The developer can turn on console debug output for event logging and flushing to the server by using
the `FBSDKLoggingBehaviorAppEvents` value in `[FBSettings setLoggingBehavior:]`.
Some things to note when logging events:
+ There is a limit on the number of unique event names an app can use, on the order of 1000.
+ There is a limit to the number of unique parameter names in the provided parameters that can
be used per event, on the order of 25. This is not just for an individual call, but for all
invocations for that eventName.
+ Event names and parameter names (the keys in the NSDictionary) must be between 2 and 40 characters, and
must consist of alphanumeric characters, _, -, or spaces.
+ The length of each parameter value can be no more than on the order of 100 characters.
*/
@interface FBSDKAppEvents : NSObject
/*
* Basic event logging
*/
/**
Log an event with just an eventName.
- Parameter eventName: The name of the event to record. Limitations on number of events and name length
are given in the `FBSDKAppEvents` documentation.
*/
+ (void)logEvent:(NSString *)eventName;
/**
Log an event with an eventName and a numeric value to be aggregated with other events of this name.
- Parameter eventName: The name of the event to record. Limitations on number of events and name length
are given in the `FBSDKAppEvents` documentation. Common event names are provided in `FBAppEventName*` constants.
- Parameter valueToSum: Amount to be aggregated into all events of this eventName, and App Insights will report
the cumulative and average value of this amount.
*/
+ (void)logEvent:(NSString *)eventName
valueToSum:(double)valueToSum;
/**
Log an event with an eventName and a set of key/value pairs in the parameters dictionary.
Parameter limitations are described above.
- Parameter eventName: The name of the event to record. Limitations on number of events and name construction
are given in the `FBSDKAppEvents` documentation. Common event names are provided in `FBAppEventName*` constants.
- Parameter parameters: Arbitrary parameter dictionary of characteristics. The keys to this dictionary must
be NSString's, and the values are expected to be NSString or NSNumber. Limitations on the number of
parameters and name construction are given in the `FBSDKAppEvents` documentation. Commonly used parameter names
are provided in `FBSDKAppEventParameterName*` constants.
*/
+ (void)logEvent:(NSString *)eventName
parameters:(NSDictionary *)parameters;
/**
Log an event with an eventName, a numeric value to be aggregated with other events of this name,
and a set of key/value pairs in the parameters dictionary.
- Parameter eventName: The name of the event to record. Limitations on number of events and name construction
are given in the `FBSDKAppEvents` documentation. Common event names are provided in `FBAppEventName*` constants.
- Parameter valueToSum: Amount to be aggregated into all events of this eventName, and App Insights will report
the cumulative and average value of this amount.
- Parameter parameters: Arbitrary parameter dictionary of characteristics. The keys to this dictionary must
be NSString's, and the values are expected to be NSString or NSNumber. Limitations on the number of
parameters and name construction are given in the `FBSDKAppEvents` documentation. Commonly used parameter names
are provided in `FBSDKAppEventParameterName*` constants.
*/
+ (void)logEvent:(NSString *)eventName
valueToSum:(double)valueToSum
parameters:(NSDictionary *)parameters;
/**
Log an event with an eventName, a numeric value to be aggregated with other events of this name,
and a set of key/value pairs in the parameters dictionary. Providing session lets the developer
target a particular <FBSession>. If nil is provided, then `[FBSession activeSession]` will be used.
- Parameter eventName: The name of the event to record. Limitations on number of events and name construction
are given in the `FBSDKAppEvents` documentation. Common event names are provided in `FBAppEventName*` constants.
- Parameter valueToSum: Amount to be aggregated into all events of this eventName, and App Insights will report
the cumulative and average value of this amount. Note that this is an NSNumber, and a value of `nil` denotes
that this event doesn't have a value associated with it for summation.
- Parameter parameters: Arbitrary parameter dictionary of characteristics. The keys to this dictionary must
be NSString's, and the values are expected to be NSString or NSNumber. Limitations on the number of
parameters and name construction are given in the `FBSDKAppEvents` documentation. Commonly used parameter names
are provided in `FBSDKAppEventParameterName*` constants.
- Parameter accessToken: The optional access token to log the event as.
*/
+ (void)logEvent:(NSString *)eventName
valueToSum:(NSNumber *)valueToSum
parameters:(NSDictionary *)parameters
accessToken:(FBSDKAccessToken *)accessToken;
/*
* Purchase logging
*/
/**
Log a purchase of the specified amount, in the specified currency.
- Parameter purchaseAmount: Purchase amount to be logged, as expressed in the specified currency. This value
will be rounded to the thousandths place (e.g., 12.34567 becomes 12.346).
- Parameter currency: Currency, is denoted as, e.g. "USD", "EUR", "GBP". See ISO-4217 for
specific values. One reference for these is <http://en.wikipedia.org/wiki/ISO_4217>.
This event immediately triggers a flush of the `FBSDKAppEvents` event queue, unless the `flushBehavior` is set
to `FBSDKAppEventsFlushBehaviorExplicitOnly`.
*/
+ (void)logPurchase:(double)purchaseAmount
currency:(NSString *)currency;
/**
Log a purchase of the specified amount, in the specified currency, also providing a set of
additional characteristics describing the purchase.
- Parameter purchaseAmount: Purchase amount to be logged, as expressed in the specified currency.This value
will be rounded to the thousandths place (e.g., 12.34567 becomes 12.346).
- Parameter currency: Currency, is denoted as, e.g. "USD", "EUR", "GBP". See ISO-4217 for
specific values. One reference for these is <http://en.wikipedia.org/wiki/ISO_4217>.
- Parameter parameters: Arbitrary parameter dictionary of characteristics. The keys to this dictionary must
be NSString's, and the values are expected to be NSString or NSNumber. Limitations on the number of
parameters and name construction are given in the `FBSDKAppEvents` documentation. Commonly used parameter names
are provided in `FBSDKAppEventParameterName*` constants.
This event immediately triggers a flush of the `FBSDKAppEvents` event queue, unless the `flushBehavior` is set
to `FBSDKAppEventsFlushBehaviorExplicitOnly`.
*/
+ (void)logPurchase:(double)purchaseAmount
currency:(NSString *)currency
parameters:(NSDictionary *)parameters;
/**
Log a purchase of the specified amount, in the specified currency, also providing a set of
additional characteristics describing the purchase, as well as an <FBSession> to log to.
- Parameter purchaseAmount: Purchase amount to be logged, as expressed in the specified currency.This value
will be rounded to the thousandths place (e.g., 12.34567 becomes 12.346).
- Parameter currency: Currency, is denoted as, e.g. "USD", "EUR", "GBP". See ISO-4217 for
specific values. One reference for these is <http://en.wikipedia.org/wiki/ISO_4217>.
- Parameter parameters: Arbitrary parameter dictionary of characteristics. The keys to this dictionary must
be NSString's, and the values are expected to be NSString or NSNumber. Limitations on the number of
parameters and name construction are given in the `FBSDKAppEvents` documentation. Commonly used parameter names
are provided in `FBSDKAppEventParameterName*` constants.
- Parameter accessToken: The optional access token to log the event as.
This event immediately triggers a flush of the `FBSDKAppEvents` event queue, unless the `flushBehavior` is set
to `FBSDKAppEventsFlushBehaviorExplicitOnly`.
*/
+ (void)logPurchase:(double)purchaseAmount
currency:(NSString *)currency
parameters:(NSDictionary *)parameters
accessToken:(FBSDKAccessToken *)accessToken;
/*
* Push Notifications Logging
*/
/**
Log an app event that tracks that the application was open via Push Notification.
- Parameter payload: Notification payload received via `UIApplicationDelegate`.
*/
+ (void)logPushNotificationOpen:(NSDictionary *)payload;
/**
Log an app event that tracks that a custom action was taken from a push notification.
- Parameter payload: Notification payload received via `UIApplicationDelegate`.
- Parameter action: Name of the action that was taken.
*/
+ (void)logPushNotificationOpen:(NSDictionary *)payload action:(NSString *)action;
/**
Notifies the events system that the app has launched and, when appropriate, logs an "activated app" event.
This function is called automatically from FBSDKApplicationDelegate applicationDidBecomeActive, unless
one overrides 'FacebookAutoLogAppEventsEnabled' key to false in the project info plist file.
In case 'FacebookAutoLogAppEventsEnabled' is set to false, then it should typically be placed in the
app delegates' `applicationDidBecomeActive:` method.
This method also takes care of logging the event indicating the first time this app has been launched, which, among other things, is used to
track user acquisition and app install ads conversions.
`activateApp` will not log an event on every app launch, since launches happen every time the app is backgrounded and then foregrounded.
"activated app" events will be logged when the app has not been active for more than 60 seconds. This method also causes a "deactivated app"
event to be logged when sessions are "completed", and these events are logged with the session length, with an indication of how much
time has elapsed between sessions, and with the number of background/foreground interruptions that session had. This data
is all visible in your app's App Events Insights.
*/
+ (void)activateApp;
/*
* Push Notifications Registration
*/
/**
Sets and sends device token to register the current application for push notifications.
Sets and sends a device token from `NSData` representation that you get from `UIApplicationDelegate.-application:didRegisterForRemoteNotificationsWithDeviceToken:`.
- Parameter deviceToken: Device token data.
*/
+ (void)setPushNotificationsDeviceToken:(NSData *)deviceToken;
/*
* Control over event batching/flushing
*/
/**
Get the current event flushing behavior specifying when events are sent back to Facebook servers.
*/
+ (FBSDKAppEventsFlushBehavior)flushBehavior;
/**
Set the current event flushing behavior specifying when events are sent back to Facebook servers.
- Parameter flushBehavior: The desired `FBSDKAppEventsFlushBehavior` to be used.
*/
+ (void)setFlushBehavior:(FBSDKAppEventsFlushBehavior)flushBehavior;
/**
Set the 'override' App ID for App Event logging.
In some cases, apps want to use one Facebook App ID for login and social presence and another
for App Event logging. (An example is if multiple apps from the same company share an app ID for login, but
want distinct logging.) By default, this value is `nil`, and defers to the `FBSDKAppEventsOverrideAppIDBundleKey`
plist value. If that's not set, it defaults to `[FBSDKSettings appID]`.
This should be set before any other calls are made to `FBSDKAppEvents`. Thus, you should set it in your application
delegate's `application:didFinishLaunchingWithOptions:` delegate.
- Parameter appID: The Facebook App ID to be used for App Event logging.
*/
+ (void)setLoggingOverrideAppID:(NSString *)appID;
/**
Get the 'override' App ID for App Event logging.
- See:setLoggingOverrideAppID:
*/
+ (NSString *)loggingOverrideAppID;
/**
Explicitly kick off flushing of events to Facebook. This is an asynchronous method, but it does initiate an immediate
kick off. Server failures will be reported through the NotificationCenter with notification ID `FBSDKAppEventsLoggingResultNotification`.
*/
+ (void)flush;
/**
Creates a request representing the Graph API call to retrieve a Custom Audience "third party ID" for the app's Facebook user.
Callers will send this ID back to their own servers, collect up a set to create a Facebook Custom Audience with,
and then use the resultant Custom Audience to target ads.
- Parameter accessToken: The access token to use to establish the user's identity for users logged into Facebook through this app.
If `nil`, then the `[FBSDKAccessToken currentAccessToken]` is used.
The JSON in the request's response will include an "custom_audience_third_party_id" key/value pair, with the value being the ID retrieved.
This ID is an encrypted encoding of the Facebook user's ID and the invoking Facebook app ID.
Multiple calls with the same user will return different IDs, thus these IDs cannot be used to correlate behavior
across devices or applications, and are only meaningful when sent back to Facebook for creating Custom Audiences.
The ID retrieved represents the Facebook user identified in the following way: if the specified access token is valid,
the ID will represent the user associated with that token; otherwise the ID will represent the user logged into the
native Facebook app on the device. If there is no native Facebook app, no one is logged into it, or the user has opted out
at the iOS level from ad tracking, then a `nil` ID will be returned.
This method returns `nil` if either the user has opted-out (via iOS) from Ad Tracking, the app itself has limited event usage
via the `[FBSDKSettings limitEventAndDataUsage]` flag, or a specific Facebook user cannot be identified.
*/
+ (FBSDKGraphRequest *)requestForCustomAudienceThirdPartyIDWithAccessToken:(FBSDKAccessToken *)accessToken;
/*
Sets a custom user ID to associate with all app events.
The userID is persisted until it is cleared by passing nil.
*/
+ (void)setUserID:(NSString *)userID;
/*
Returns the set custom user ID.
*/
+ (NSString *)userID;
/*
Sends a request to update the properties for the current user, set by `setUserID:`
You must call `FBSDKAppEvents setUserID:` before making this call.
- Parameter properties: the custom user properties
- Parameter handler: the optional completion handler
*/
+ (void)updateUserProperties:(NSDictionary *)properties handler:(FBSDKGraphRequestHandler)handler;
@end
|
214,406 | Github | [
3122,
187,
475,
187,
475,
8283,
4104,
305,
48095,
4477,
15,
187,
475,
187,
475,
21737,
762,
253,
14325,
4637,
13,
11099,
374,
15,
17,
313,
783,
346,
17736,
3287,
187,
475,
368,
778,
417,
897,
436,
1873,
3707,
275,
10276,
342,
253,
4637,
15,
187,
475,
1422,
778,
4044,
247,
3491,
273,
253,
4637,
387,
187,
475,
187,
475,
50273,
2413,
1358,
2700,
15,
8418,
15,
2061,
16,
17130,
16,
17821,
14,
19,
15,
17,
187,
475,
187,
475,
15999,
2424,
407,
7763,
1569,
390,
5821,
281,
275,
4028,
13,
3694,
187,
475,
5939,
762,
253,
4637,
310,
5939,
327,
271,
346,
1719,
4110,
3,
23440,
13,
187,
475,
15002,
15466,
4145,
22998,
3481,
9103,
19329,
13,
2057,
3890,
390,
10466,
15,
187,
475,
2594,
253,
4637,
323,
253,
2173,
3448,
13200,
15607,
285,
187,
475,
7364,
762,
253,
4637,
15,
187,
475,
187,
1738,
187,
187,
4,
3709,
654,
737,
5902,
16,
13821,
16,
631,
64,
19161,
15,
73,
31,
187,
187,
4,
3709,
346,
7614,
16,
6443,
16,
4658,
16,
13980,
16,
25798,
15738,
16,
80,
14399,
19,
16,
80,
14399,
19,
64,
25798,
15738,
15,
73,
3,
187,
187,
4,
3709,
654,
2703,
15,
73,
31,
187,
187,
4,
3709,
346,
7614,
16,
6443,
16,
4658,
16,
13980,
16,
8906,
16,
8456,
64,
8906,
15,
73,
3,
187,
4,
3709,
346,
7614,
16,
6443,
16,
4658,
16,
26555,
16,
6682,
64,
20668,
15,
73,
3,
187,
187,
4,
3709,
654,
737,
5902,
16,
13821,
16,
10835,
15,
73,
31,
187,
4,
3709,
654,
737,
5902,
16,
13821,
16,
2808,
15,
73,
31,
187,
4,
3709,
654,
737,
5902,
16,
13821,
16,
2703,
64,
8906,
15,
73,
31,
187,
187,
605,
187,
605,
21326,
7567,
2935,
35097,
15,
187,
605,
187,
187,
565,
650,
5902,
64,
14399,
64,
38664,
64,
13763,
64,
261,
64,
7210,
9,
187,
50274,
3474,
650,
5902,
64,
14399,
64,
38664,
64,
13763,
11,
22906,
64,
13763,
10,
551,
187,
50276,
2309,
313,
38664,
64,
13763,
3613,
28471,
10,
3857,
187,
50269,
1344,
21630,
9,
38664,
64,
13763,
1168,
881,
13,
9942,
5077,
64,
37482,
64,
17635,
64,
10560,
64,
35557,
558,
187,
94,
187,
187,
737,
5902,
64,
14399,
64,
38664,
64,
13763,
650,
5902,
64,
14399,
64,
38664,
64,
13763,
64,
6953,
64,
4064,
64,
8456,
9,
187,
50274,
3474,
650,
5902,
64,
8456,
11,
14113,
10,
551,
187,
50276,
737,
5902,
64,
14399,
64,
38664,
64,
13763,
906,
28,
187,
50276,
3474,
1018,
11,
4198,
64,
2877,
28,
187,
50276,
565,
2323,
426,
470,
28,
535,
50276,
6441,
1178,
6395,
6870,
13,
470,
13,
13322,
9,
737,
5902,
64,
14399,
64,
38664,
64,
13763,
4027,
187,
50276,
6870,
15,
881,
426,
9942,
5077,
64,
37482,
64,
17635,
64,
10560,
64,
35557,
28,
187,
50276,
338,
313,
8456,
2295,
28471,
10,
551,
187,
50274,
72,
1087,
64,
2808,
9,
40,
3175,
64,
12641,
13,
346,
19504,
14113,
23715,
187,
50274,
18026,
990,
28,
187,
50276,
94,
535,
50276,
8560,
64,
2877,
426,
650,
5902,
64,
8456,
64,
788,
64,
2703,
64,
9134,
9,
8456,
13,
346,
881,
3287,
187,
50276,
338,
313,
8560,
64,
2877,
2295,
28471,
2785,
187,
50272,
1344,
21630,
9,
8560,
64,
2877,
13,
9942,
5077,
64,
37482,
64,
17635,
64,
10560,
64,
37482,
1372,
18769,
1703,
64,
23131,
1228,
551,
187,
50274,
18026,
990,
28,
187,
50276,
94,
187,
50276,
6870,
15,
881,
426,
9942,
5077,
64,
37482,
64,
17635,
64,
10560,
64,
37482,
1372,
18769,
1703,
64,
23131,
28,
535,
50276,
338,
6522,
737,
5902,
64,
12557,
64,
8456,
64,
2703,
64,
9134,
9,
8456,
13,
346,
8780,
64,
22882,
995,
187,
50254,
50264,
7,
6870,
15,
8780,
64,
22882,
10,
2785,
187,
50272,
2,
737,
5902,
64,
12557,
64,
8456,
64,
2703,
64,
9134,
9,
8456,
13,
346,
8780,
64,
301,
995,
708,
6870,
15,
8780,
64,
301,
10,
2785,
187,
50272,
2,
737,
5902,
64,
12557,
64,
8456,
64,
2703,
64,
9134,
9,
8456,
13,
346,
38664,
64,
13763,
995,
187,
50254,
50264,
7,
6870,
15,
38664,
64,
13763,
1228,
551,
187,
50274,
18026,
990,
28,
187,
50276,
94,
187,
50276,
12566,
426,
337,
28,
187,
187,
423,
27,
187,
50276,
338,
6522,
12566,
10,
650,
5902,
64,
14399,
64,
38664,
64,
13763,
64,
43739,
6395,
6870,
558,
187,
50276,
2309,
906,
28,
187,
94,
187,
187,
737,
5902,
64,
14399,
64,
38664,
64,
13763,
650,
5902,
64,
14399,
64,
38664,
64,
13763,
64,
6953,
64,
4064,
64,
2703,
9,
187,
50274,
3474,
1018,
11,
14113,
64,
2703,
10,
551,
187,
50276,
3615,
11,
20041,
11022,
426,
305,
1087,
64,
1344,
34856,
9,
8456,
64,
2703,
558,
187,
50276,
737,
5902,
64,
8456,
11,
14113,
426,
650,
5902,
64,
8456,
64,
12083,
64,
2703,
9,
8658,
1506,
11022,
558,
187,
50276,
737,
5902,
64,
14399,
64,
38664,
64,
13763,
906,
426,
187,
50272,
737,
5902,
64,
14399,
64,
38664,
64,
13763,
64,
6953,
64,
4064,
64,
8456,
9,
8456,
558,
187,
50276,
338,
313,
8456,
3613,
28471,
10,
650,
5902,
64,
8456,
64,
26316,
9,
8456,
558,
187,
50276,
72,
1087,
64,
4924,
9,
8658,
1506,
11022,
558,
187,
50276,
2309,
906,
28,
187,
94,
187,
187,
4353,
650,
5902,
64,
14399,
64,
38664,
64,
13763,
64,
43739,
9,
737,
5902,
64,
14399,
64,
38664,
64,
13763,
11,
22906,
64,
13763,
10,
551,
187,
50276,
338,
313,
38664,
64,
13763,
2295,
28471,
10,
1091,
28,
187,
50276,
38664,
64,
13763,
1168,
881,
426,
9942,
5077,
64,
37482,
64,
17635,
64,
10560,
64,
35557,
28,
187,
50276,
338,
313,
38664,
64,
13763,
1168,
8780,
64,
301,
3613,
28471,
10,
551,
187,
50274,
72,
1087,
64,
4924,
9,
38664,
64,
13763,
1168,
8780,
64,
301,
558,
187,
50274,
38664,
64,
13763,
1168,
8780,
64,
301,
426,
28471,
28,
187,
50276,
94,
187,
50276,
338,
313,
38664,
64,
13763,
1168,
8780,
64,
22882,
3613,
28471,
10,
551,
187,
50274,
72,
1087,
64,
4924,
9,
38664,
64,
13763,
1168,
8780,
64,
22882,
558,
187,
50274,
38664,
64,
13763,
1168,
8780,
64,
22882,
426,
28471,
28,
187,
50276,
94,
187,
50276,
338,
313,
38664,
64,
13763,
1168,
38664,
64,
13763,
3613,
28471,
10,
551,
187,
50274,
72,
1087,
64,
4924,
9,
38664,
64,
13763,
1168,
38664,
64,
13763,
558,
187,
50274,
38664,
64,
13763,
1168,
38664,
64,
13763,
426,
28471,
28,
187,
50276,
94,
187,
94,
187,
187,
605,
187,
605,
473,
14399,
19,
35097,
401,
292,
5316,
23820,
15,
187,
605,
187,
187,
4659,
2991,
258,
14399,
19,
64,
13763,
64,
39792,
5316,
64,
43739,
9,
737,
5902,
64,
4065,
64,
25798,
15738,
11,
3552,
84,
10,
551,
187,
50276,
737,
5902,
64,
80,
14399,
19,
64,
13763,
64,
39792,
5316,
64,
25798,
15738,
11,
260,
426,
187,
50272,
250,
22416,
64,
4008,
29,
737,
5902,
64,
80,
14399,
19,
64,
13763,
64,
39792,
5316,
64,
25798,
15738,
46802,
25798,
84,
558,
187,
50276,
6217,
5077,
64,
46,
2573,
1843,
46,
64,
4037,
15619,
9,
68,
1168,
10773,
64,
13763,
64,
6535,
558,
187,
50276,
72,
1087,
64,
1906,
64,
26316,
6395,
68,
1168,
1906,
558,
187,
50276,
737,
5902,
64,
30209,
1178,
64,
1178,
64,
26316,
9,
737,
5902,
64,
4818,
1981,
64,
21294,
64,
30209,
1178,
64,
1178,
6395,
68,
1168,
30209,
290,
4027,
187,
50276,
737,
5902,
64,
2413,
31010,
64,
8882,
64,
26316,
6395,
68,
1168,
2413,
31010,
64,
8882,
558,
187,
94,
187,
187,
737,
5902,
64,
25798,
15738,
64,
8581,
187,
737,
5902,
64,
80,
14399,
19,
64,
13763,
64,
39792,
5316,
64,
25798,
15738,
64,
12083,
64,
9438,
64,
10927,
9,
187,
50274,
3474,
650,
5902,
64,
2413,
64,
10927,
11,
2380,
13,
650,
5902,
64,
78,
615,
5616,
11,
10669,
64,
6535,
13,
187,
50274,
737,
5902,
64,
17993,
261,
11,
10669,
64,
6458,
7816,
10,
551,
187,
50276,
3615,
11,
3635,
64,
20792,
456,
64,
2915,
426,
28471,
28,
187,
50276,
3615,
11,
747,
64,
10773,
64,
13763,
426,
28471,
28,
187,
50276,
737,
5902,
64,
25798,
15738,
64,
8581,
3708,
426,
9942,
5077,
64,
1311,
1703,
34172,
52,
64,
10249,
28,
187,
50276,
737,
5902,
64,
8456,
11,
14113,
426,
28471,
28,
535,
50276,
338,
313,
10927,
2295,
28471,
10,
551,
187,
50274,
72,
1087,
64,
2808,
9,
40,
3175,
64,
12641,
13,
346,
41672,
5812,
2380,
23715,
187,
50274,
8581,
426,
9942,
5077,
64,
1311,
1703,
34172,
52,
64,
12641,
28,
187,
50274,
18026,
990,
28,
187,
50276,
94,
535,
50276,
338,
313,
10927,
1168,
2915,
64,
3985,
2239,
470,
10,
551,
187,
50274,
8629,
64,
20792,
456,
64,
2915,
426,
187,
50270,
4659,
64,
4008,
29,
3615,
46802,
72,
1087,
64,
44754,
9,
10927,
1168,
2915,
64,
3985,
559,
337,
4027,
187,
50274,
8629,
64,
20792,
456,
64,
2915,
60,
10927,
1168,
2915,
64,
3985,
62,
426,
18116,
17,
5618,
187,
50274,
47962,
9,
8629,
64,
20792,
456,
64,
2915,
13,
2380,
1168,
2915,
13,
2380,
1168,
2915,
64,
3985,
558,
187,
50276,
94,
535,
50276,
338,
313,
10927,
1168,
8581,
3613,
1052,
10,
551,
187,
50274,
72,
1087,
64,
2808,
9,
40,
3175,
64,
12641,
13,
346,
7865,
281,
3944,
4771,
7402,
342,
2228,
2462,
69,
544,
6,
84,
62,
17295,
187,
50266,
10927,
1168,
8581,
13,
187,
50266,
8629,
64,
20792,
456,
64,
2915,
3613,
28471,
3736,
3635,
64,
20792,
456,
64,
2915,
1163,
346,
3287,
187,
50274,
8581,
426,
9942,
5077,
64,
1311,
1703,
34172,
52,
64,
12641,
28,
187,
50274,
18026,
990,
28,
187,
50276,
94,
2010,
551,
187,
50274,
737,
5902,
64,
8456,
11,
2289,
64,
13763,
426,
28471,
28,
187,
50274,
737,
5902,
64,
8456,
11,
10669,
64,
881,
426,
28471,
28,
187,
50274,
737,
5902,
64,
8456,
11,
47117,
64,
249,
426,
28471,
28,
187,
50274,
737,
5902,
64,
8456,
11,
27028,
28,
187,
50274,
8456,
426,
650,
5902,
64,
8456,
64,
12083,
64,
2703,
9,
8629,
64,
20792,
456,
64,
2915,
558,
187,
50274,
338,
313,
8456,
2295,
28471,
10,
551,
187,
50272,
72,
1087,
64,
2808,
9,
40,
3175,
64,
12641,
13,
346,
18179,
417,
14390,
13922,
432,
2462,
84,
995,
3635,
64,
20792,
456,
64,
2915,
558,
187,
50272,
8581,
426,
9942,
5077,
64,
1311,
1703,
34172,
52,
64,
12641,
28,
187,
50272,
18026,
990,
28,
187,
50274,
94,
187,
50274,
338,
313,
8456,
1168,
881,
3613,
9942,
5077,
64,
17635,
64,
35581,
10,
551,
187,
50272,
72,
1087,
64,
2808,
9,
40,
3175,
64,
12641,
13,
346,
9604,
943,
320,
247,
13922,
1789,
3287,
187,
50272,
8581,
426,
9942,
5077,
64,
1311,
1703,
34172,
52,
64,
12641,
28,
187,
50272,
18026,
990,
28,
187,
50274,
94,
187,
50274,
1542,
313,
4773,
426,
14113,
1168,
7003,
28,
27028,
28,
27028,
426,
27028,
1168,
8384,
10,
551,
187,
50272,
338,
313,
1344,
21630,
9,
4773,
1168,
2364,
13,
346,
10773,
64,
13763,
2807,
2295,
470,
10,
551,
187,
50270,
10773,
64,
13763,
426,
27028,
28,
187,
50272,
94,
2010,
604,
313,
1344,
21630,
9,
4773,
1168,
2364,
13,
346,
13763,
64,
881,
2807,
2295,
470,
10,
551,
187,
50270,
13763,
64,
881,
426,
27028,
28,
187,
50272,
94,
2010,
604,
313,
1344,
21630,
9,
4773,
1168,
2364,
13,
346,
911,
31659,
64,
249,
2807,
2295,
470,
10,
551,
187,
50270,
911,
31659,
64,
249,
426,
27028,
28,
187,
50272,
94,
187,
50274,
94,
187,
50274,
338,
313,
10773,
64,
13763,
2295,
28471,
2785,
2289,
64,
13763,
1168,
881,
3613,
9942,
5077,
64,
17635,
64,
24458,
10,
551,
187,
50272,
72,
1087,
64,
2808,
9,
40,
3175,
64,
12641,
13,
346,
36840,
390,
12078,
2289,
64,
13763,
275,
13922,
23715,
187,
50272,
8581,
426,
9942,
5077,
64,
1311,
1703,
34172,
52,
64,
12641,
28,
187,
50272,
18026,
990,
28,
187,
50274,
94,
187,
50274,
338,
313,
13763,
64,
881,
2295,
28471,
2785,
10669,
64,
881,
1168,
881,
3613,
9942,
5077,
64,
17635,
64,
24458,
10,
551,
187,
50272,
72,
1087,
64,
2808,
9,
40,
3175,
64,
12641,
13,
346,
36840,
390,
12078,
10669,
64,
881,
275,
13922,
23715,
187,
50272,
8581,
426,
9942,
5077,
64,
1311,
1703,
34172,
52,
64,
12641,
28,
187,
50272,
18026,
990,
28,
187,
50274,
94,
187,
50274,
338,
313,
911,
31659,
64,
249,
2295,
28471,
2785,
47117,
64,
249,
1168,
881,
3613,
9942,
5077,
64,
17635,
64,
40804,
10,
551,
187,
50272,
72,
1087,
64,
2808,
9,
40,
3175,
64,
12641,
13,
346,
36840,
390,
12078,
47117,
64,
249,
275,
13922,
23715,
187,
50272,
8581,
426,
9942,
5077,
64,
1311,
1703,
34172,
52,
64,
12641,
28,
187,
50272,
18026,
990,
28,
187,
50274,
94,
187,
50274,
72,
1087,
64,
284,
13108,
6395,
1826,
64,
10773,
64,
13763,
13,
17280,
84,
2462,
84,
995,
10669,
64,
881,
1168,
2877,
13,
187,
50261,
10773,
64,
13763,
1168,
2877,
558,
187,
50274,
11,
13763,
64,
6458,
7816,
426,
1213,
34776,
9,
911,
31659,
64,
249,
1168,
2877,
13,
28471,
13,
884,
10,
475,
443,
3175,
64,
3338,
64,
10810,
64,
20869,
28,
187,
50274,
338,
6522,
6217,
5077,
64,
7414,
1830,
15522,
9672,
13763,
64,
6535,
1228,
9942,
5077,
64,
46,
2573,
1843,
46,
64,
4037,
15619,
9672,
13763,
64,
6535,
558,
187,
50274,
11,
13763,
64,
6535,
426,
650,
5902,
64,
78,
615,
5616,
64,
4064,
64,
84,
663,
265,
9,
187,
50270,
737,
5902,
64,
27494,
64,
4064,
64,
4659,
64,
2703,
9,
6217,
5077,
64,
37482,
1372,
18769,
6570,
64,
28723,
2350,
9033,
64,
13888,
582,
187,
50270,
737,
5902,
64,
27494,
64,
4064,
64,
21592,
728,
64,
2703,
9,
1826,
64,
10773,
64,
13763,
4027,
187,
50274,
8581,
426,
9942,
5077,
64,
1311,
1703,
34172,
52,
64,
10249,
28,
187,
50276,
94,
187,
187,
423,
27,
187,
50276,
338,
313,
8581,
3613,
9942,
5077,
64,
1311,
1703,
34172,
52,
64,
10249,
3857,
2195,
6217,
5077,
64,
7414,
1830,
15522,
9672,
13763,
64,
6535,
1228,
551,
187,
50274,
6217,
5077,
64,
46,
2573,
1843,
46,
64,
4037,
15619,
9672,
13763,
64,
6535,
558,
187,
50274,
11,
13763,
64,
6535,
426,
9942,
5077,
64,
7414,
15522,
28,
187,
50276,
94,
187,
50276,
338,
313,
8629,
64,
20792,
456,
64,
2915,
3613,
28471,
10,
305,
1087,
64,
4924,
9,
8629,
64,
20792,
456,
64,
2915,
558,
187,
50276,
338,
313,
1826,
64,
10773,
64,
13763,
3613,
28471,
10,
305,
1087,
64,
4924,
9,
1826,
64,
10773,
64,
13763,
558,
187,
50276,
338,
313,
8456,
3613,
28471,
10,
650,
5902,
64,
8456,
64,
26316,
9,
8456,
558,
187,
50276,
2309,
3708,
28,
187,
94,
187,
187,
4659,
2991,
327,
64,
80,
14399,
19,
64,
13763,
64,
39792,
5316,
64,
2413,
64,
10927,
9,
4353,
11,
2608,
64,
2203,
13,
187,
50254,
50254,
50276,
737,
5902,
64,
3775,
11,
2228,
10,
551,
187,
50276,
6217,
5077,
64,
21273,
64,
3801,
64,
12641,
1587,
80,
14399,
64,
24717,
995,
9942,
5077,
64,
12641,
64,
15619,
9,
3775,
4027,
187,
50276,
737,
5902,
64,
25798,
15738,
64,
21552,
64,
9629,
11,
391,
426,
187,
50272,
4659,
64,
4008,
29,
737,
5902,
64,
25798,
15738,
64,
21552,
64,
9629,
46802,
4537,
64,
2203,
558,
187,
50276,
737,
5902,
64,
80,
14399,
19,
64,
13763,
64,
39792,
5316,
64,
25798,
15738,
11,
260,
426,
187,
50272,
250,
22416,
64,
4008,
29,
737,
5902,
64,
80,
14399,
19,
64,
13763,
64,
39792,
5316,
64,
25798,
15738,
46802,
83,
1168,
25798,
84,
558,
187,
50276,
737,
5902,
64,
78,
615,
5616,
2289,
64,
13763,
64,
6535,
426,
9942,
5077,
64,
7414,
15522,
28,
187,
50276,
737,
5902,
64,
17993,
261,
10669,
64,
6458,
7816,
28,
187,
50276,
737,
5902,
64,
25798,
15738,
64,
8581,
3708,
426,
187,
50272,
737,
5902,
64,
80,
14399,
19,
64,
13763,
64,
39792,
5316,
64,
25798,
15738,
64,
12083,
64,
9438,
64,
10927,
9,
187,
50268,
7,
83,
1168,
10927,
13,
708,
10773,
64,
13763,
64,
6535,
13,
708,
13763,
64,
6458,
7816,
558,
187,
50276,
605,
17251,
11556,
285,
10013,
1618,
273,
13910,
9762,
15,
187,
50276,
72,
1087,
64,
1906,
64,
4348,
6395,
68,
1168,
1906,
558,
187,
50276,
68,
1168,
13763,
64,
24717,
64,
33965,
426,
3221,
28,
187,
50276,
68,
1168,
10773,
64,
13763,
64,
6535,
426,
9942,
5077,
64,
46,
2573,
1843,
46,
64,
15619,
9,
10773,
64,
13763,
64,
6535,
558,
187,
50276,
68,
1168,
13763,
64,
4347,
10153,
426,
3708,
2295,
9942,
5077,
64,
1311,
1703,
34172,
52,
64,
10249,
187,
50254,
50274,
32,
650,
5902,
64,
6443,
1450,
12560,
5229,
89,
1450,
3633,
18331,
4125,
1082,
559,
10669,
64,
6458,
7816,
187,
50254,
50274,
27,
470,
28,
187,
50276,
737,
5902,
64,
80,
14399,
19,
64,
33965,
64,
788,
64,
9629,
64,
21552,
11,
13910,
64,
9629,
426,
187,
50272,
68,
1168,
33965,
64,
45983,
28,
187,
50276,
68,
1168,
33965,
64,
45983,
426,
28471,
28,
187,
50276,
72,
1087,
64,
1906,
64,
25919,
6395,
68,
1168,
1906,
558,
187,
50276,
605,
17595,
3136,
1067,
12270,
323,
512,
13910,
9762,
15,
187,
50276,
6050,
313,
33965,
64,
9629,
3613,
28471,
10,
551,
187,
50274,
338,
313,
8581,
2295,
9942,
5077,
64,
1311,
1703,
34172,
52,
64,
10249,
10,
551,
187,
50272,
737,
5902,
64,
25798,
15738,
64,
78,
615,
5616,
64,
3728,
64,
1911,
9,
33965,
64,
9629,
1168,
6535,
64,
3728,
13,
187,
50254,
50262,
10773,
64,
13763,
64,
6535,
558,
187,
50274,
94,
2010,
551,
187,
50272,
3775,
426,
9942,
5077,
64,
12641,
64,
25875,
64,
15619,
947,
20712,
2637,
64,
22050,
64,
38386,
64,
24458,
9,
187,
50268,
3,
4756,
1609,
1520,
672,
8264,
7695,
258,
14399,
19,
10669,
17295,
708,
3775,
13,
337,
558,
187,
50274,
94,
187,
50274,
6217,
5077,
64,
3207,
2697,
10860,
64,
49670,
1703,
9,
33965,
64,
9629,
1168,
251,
64,
9629,
64,
21552,
13,
2228,
558,
187,
50274,
737,
5902,
64,
4818,
1981,
64,
21294,
64,
7555,
64,
4064,
64,
30209,
1178,
64,
1178,
9,
187,
50270,
33965,
64,
9629,
1168,
30209,
290,
13,
650,
5902,
64,
4818,
1981,
64,
21294,
64,
30209,
1178,
64,
1178,
6395,
68,
1168,
30209,
290,
4027,
187,
50274,
737,
5902,
64,
80,
14399,
19,
64,
33965,
64,
788,
64,
9629,
64,
21552,
11,
1404,
426,
13910,
64,
9629,
28,
187,
50274,
33965,
64,
9629,
426,
13910,
64,
9629,
1168,
8384,
28,
187,
50274,
72,
1087,
64,
4924,
9,
22340,
558,
187,
50276,
94,
187,
50276,
6217,
5077,
64,
46,
2573,
1843,
46,
64,
4037,
15619,
9,
10773,
64,
13763,
64,
6535,
558,
187,
50276,
737,
5902,
64,
4065,
64,
25798,
15738,
64,
328,
709,
9,
83,
1168,
25798,
84,
558,
187,
50276,
737,
5902,
64,
25798,
15738,
64,
21552,
64,
9629,
64,
26316,
9,
83,
558,
187,
94,
187,
187,
4659,
7301,
258,
14399,
19,
64,
13763,
64,
39792,
5316,
64,
788,
64,
9629,
64,
21552,
9,
187,
50274,
737,
5902,
64,
4065,
64,
25798,
15738,
11,
3552,
84,
13,
650,
5902,
64,
4818,
1981,
64,
21294,
11,
8461,
290,
13,
187,
50274,
737,
5902,
64,
14399,
64,
21552,
64,
8882,
3634,
13,
650,
5902,
64,
25798,
15738,
64,
78,
615,
5616,
64,
3728,
11,
31934,
64,
3728,
13,
187,
50274,
737,
5902,
64,
14019,
11,
327,
64,
9629,
64,
21552,
13,
650,
5902,
64,
3775,
424,
2228,
10,
551,
187,
50276,
737,
5902,
64,
80,
14399,
19,
64,
13763,
64,
39792,
5316,
64,
25798,
15738,
11,
260,
426,
187,
50272,
250,
22416,
64,
4008,
29,
737,
5902,
64,
80,
14399,
19,
64,
13763,
64,
39792,
5316,
64,
25798,
15738,
46802,
25798,
84,
558,
187,
50276,
605,
9423,
604,
359,
476,
897,
253,
37164,
10669,
15,
187,
50276,
737,
5902,
64,
17993,
261,
22906,
64,
34503,
426,
187,
50272,
6217,
5077,
64,
20869,
10860,
64,
7058,
39373,
64,
1848,
6764,
45514,
64,
3886,
13045,
41,
15930,
64,
2354,
5166,
475,
443,
3175,
64,
3338,
64,
10810,
64,
20869,
28,
187,
50276,
737,
5902,
64,
78,
615,
5616,
37164,
64,
10773,
64,
13763,
64,
6535,
426,
9942,
5077,
64,
7414,
15522,
28,
187,
50276,
72,
1087,
64,
1906,
64,
4348,
6395,
68,
1168,
1906,
558,
187,
50276,
338,
6522,
6217,
5077,
64,
7414,
1830,
15522,
9,
68,
1168,
10773,
64,
13763,
64,
6535,
10,
3857,
187,
50272,
9,
68,
1168,
13763,
64,
4347,
10153,
428,
650,
5902,
64,
6443,
1450,
12560,
5229,
89,
1450,
3633,
18331,
4125,
1082,
2239,
187,
50271,
38664,
64,
34503,
1228,
551,
187,
50274,
45438,
64,
10773,
64,
13763,
64,
6535,
426,
9942,
5077,
64,
46,
2573,
1843,
46,
64,
15619,
9,
68,
1168,
10773,
64,
13763,
64,
6535,
558,
187,
50276,
94,
187,
50276,
338,
6522,
6217,
5077,
64,
7414,
1830,
15522,
9,
45438,
64,
10773,
64,
13763,
64,
6535,
1228,
551,
187,
50274,
72,
1087,
64,
1906,
64,
25919,
6395,
68,
1168,
1906,
558,
187,
50274,
737,
5902,
64,
25798,
15738,
64,
78,
615,
5616,
64,
3728,
64,
1911,
9,
6535,
64,
3728,
13,
37164,
64,
10773,
64,
13763,
64,
6535,
558,
187,
50274,
6217,
5077,
64,
46,
2573,
1843,
46,
64,
4037,
15619,
9,
45438,
64,
10773,
64,
13763,
64,
6535,
558,
187,
50274,
2309,
2032,
28,
187,
50276,
94,
187,
50276,
605,
16574,
79,
626,
755,
253,
10669,
432,
253,
11556,
15,
187,
50276,
605,
5733,
2748,
281,
260,
1168,
33965,
64,
45983,
285,
1265,
247,
747,
20279,
604,
3058,
15,
187,
50276,
737,
5902,
64,
80,
14399,
19,
64,
33965,
64,
788,
64,
9629,
64,
21552,
11,
13910,
64,
9629,
426,
187,
50272,
4659,
64,
4008,
29,
737,
5902,
64,
80,
14399,
19,
64,
33965,
64,
788,
64,
9629,
64,
21552,
46802,
187,
50268,
72,
1087,
64,
44754,
9,
23269,
9672,
33965,
64,
9629,
23090,
187,
50276,
33965,
64,
9629,
1168,
6535,
64,
3728,
426,
31934,
64,
3728,
28,
187,
50276,
33965,
64,
9629,
1168,
251,
64,
9629,
64,
21552,
426,
327,
64,
9629,
64,
21552,
28,
187,
50276,
33965,
64,
9629,
1168,
30209,
290,
426,
8461,
290,
28,
187,
50276,
737,
5902,
64,
4818,
1981,
64,
21294,
64,
1911,
64,
936,
64,
30209,
1178,
64,
1178,
9,
187,
50272,
30209,
290,
13,
650,
5902,
64,
4818,
1981,
64,
21294,
64,
30209,
1178,
64,
1178,
6395,
68,
1168,
30209,
290,
4027,
187,
50276,
33965,
64,
9629,
1168,
8384,
426,
260,
1168,
33965,
64,
45983,
28,
187,
50276,
68,
1168,
33965,
64,
45983,
426,
13910,
64,
9629,
28,
187,
50276,
10975,
1265,
64,
24717,
426,
3221,
28,
187,
50276,
338,
6522,
68,
1168,
13763,
64,
24717,
64,
33965,
10,
551,
187,
50274,
68,
1168,
13763,
64,
24717,
64,
33965,
426,
2032,
28,
187,
50274,
5478,
64,
24717,
426,
2032,
28,
187,
50276,
94,
187,
50276,
72,
1087,
64,
1906,
64,
25919,
6395,
68,
1168,
1906,
558,
187,
50276,
338,
313,
5478,
64,
24717,
10,
551,
187,
50274,
737,
5902,
64,
4065,
64,
25798,
15738,
64,
709,
9,
25798,
84,
558,
187,
50274,
68,
1168,
24717,
64,
4997,
9,
737,
5902,
64,
25798,
15738,
64,
21552,
64,
9629,
64,
6953,
9,
25798,
84,
582,
187,
50260,
7,
68,
1168,
2413,
31010,
64,
8882,
13,
708,
68,
1168,
30209,
290,
13,
187,
50260,
251,
64,
80,
14399,
19,
64,
13763,
64,
39792,
5316,
64,
2413,
64,
10927,
13,
187,
50260,
737,
5902,
64,
6443,
1450,
12560,
5229,
89,
1450,
3633,
18331,
4125,
1082,
559,
22906,
64,
34503,
558,
187,
50276,
94,
187,
50276,
2309,
3221,
28,
187,
94,
187,
187,
4659,
2991,
258,
14399,
19,
64,
13763,
64,
39792,
5316,
64,
35899,
64,
788,
64,
9629,
64,
21552,
9,
187,
50274,
737,
5902,
64,
4065,
64,
25798,
15738,
11,
3552,
84,
13,
650,
5902,
64,
25798,
15738,
64,
78,
615,
5616,
64,
3728,
11,
31934,
64,
3728,
13,
187,
50274,
737,
5902,
64,
3775,
11,
2228,
10,
551,
187,
50276,
737,
5902,
64,
80,
14399,
19,
64,
13763,
64,
39792,
5316,
64,
25798,
15738,
11,
260,
426,
187,
50272,
250,
22416,
64,
4008,
29,
737,
5902,
64,
80,
14399,
19,
64,
13763,
64,
39792,
5316,
64,
25798,
15738,
46802,
25798,
84,
558,
187,
50276,
72,
1087,
64,
1906,
64,
4348,
6395,
68,
1168,
1906,
558,
187,
50276,
737,
5902,
64,
80,
14399,
19,
64,
33965,
64,
788,
64,
9629,
64,
21552,
11,
1404,
426,
28471,
28,
187,
50276,
737,
5902,
64,
80,
14399,
19,
64,
33965,
64,
788,
64,
9629,
64,
21552,
11,
13910,
64,
9629,
426,
187,
50272,
68,
1168,
33965,
64,
45983,
28,
187,
50276,
6050,
313,
33965,
64,
9629,
3613,
28471,
10,
551,
187,
50274,
338,
313,
33965,
64,
9629,
1168,
6535,
64,
3728,
2295,
31934,
64,
3728,
10,
551,
187,
50272,
605,
20004,
11038,
13910,
2748,
432,
253,
1618,
15,
187,
50272,
338,
313,
22340,
3613,
28471,
10,
551,
187,
50270,
22340,
1168,
8384,
426,
13910,
64,
9629,
1168,
8384,
28,
187,
50272,
94,
2010,
551,
187,
50270,
68,
1168,
33965,
64,
45983,
426,
13910,
64,
9629,
1168,
8384,
28,
187,
50272,
94,
187,
50272,
605,
17595,
3136,
253,
15259,
4745,
342,
271,
2228,
15,
187,
50272,
6217,
5077,
64,
3207,
2697,
10860,
64,
49670,
1703,
9,
33965,
64,
9629,
1168,
251,
64,
9629,
64,
21552,
13,
187,
50254,
9942,
5077,
64,
12641,
64,
15619,
9,
3775,
4027,
187,
50272,
72,
1087,
64,
4924,
9,
33965,
64,
9629,
558,
187,
50272,
7054,
28,
187,
50274,
94,
187,
50274,
22340,
426,
13910,
64,
9629,
28,
187,
50274,
33965,
64,
9629,
426,
13910,
64,
9629,
1168,
8384,
28,
187,
50276,
94,
187,
50276,
72,
1087,
64,
1906,
64,
25919,
6395,
68,
1168,
1906,
558,
187,
50276,
6217,
5077,
64,
12641,
64,
4037,
15619,
9,
3775,
558,
187,
94,
187,
187,
4659,
2991,
2012,
64,
80,
14399,
19,
64,
13763,
64,
39792,
5316,
9,
737,
5902,
64,
80,
14399,
19,
64,
13763,
64,
39792,
5316,
64,
25798,
15738,
11,
260,
13,
187,
50254,
50264,
737,
5902,
64,
24717,
64,
80,
14399,
19,
64,
4997,
20279,
64,
4997,
10,
551,
187,
50276,
6441,
1178,
9,
68,
13,
470,
13,
13322,
9,
737,
5902,
64,
80,
14399,
19,
64,
13763,
64,
39792,
5316,
64,
25798,
15738,
4027,
187,
50276,
68,
1168,
4793,
15,
881,
426,
9942,
5077,
64,
24434,
64,
1311,
1703,
34172,
52,
64,
10560,
64,
31794,
19366,
19,
28,
187,
50276,
72,
1087,
64,
709,
64,
4478,
6395,
68,
1168,
4793,
15,
709,
5560,
13,
337,
558,
187,
50276,
72,
1087,
64,
1906,
64,
4478,
6395,
68,
1168,
1906,
558,
187,
50276,
68,
1168,
13763,
64,
4347,
10153,
426,
470,
28,
187,
50276,
68,
1168,
24717,
64,
4997,
426,
20279,
64,
4997,
28,
187,
50276,
68,
1168,
30209,
290,
426,
187,
50272,
737,
5902,
64,
4818,
1981,
64,
21294,
64,
6953,
64,
4064,
64,
30209,
1178,
64,
1178,
9,
737,
5902,
64,
30209,
1178,
64,
1178,
64,
6953,
6020,
187,
50276,
737,
5902,
64,
2413,
31010,
64,
8882,
64,
4478,
6395,
68,
1168,
2413,
31010,
64,
8882,
558,
187,
94,
187,
187,
605,
187,
605,
50276,
17664,
45947,
10797,
23820,
15,
187,
605,
187,
187,
4659,
650,
5902,
64,
4065,
64,
25798,
15738,
64,
87,
2420,
11897,
64,
15179,
64,
87,
2420,
426,
551,
187,
50274,
80,
14399,
19,
64,
13763,
64,
39792,
5316,
64,
43739,
13,
258,
14399,
19,
64,
13763,
64,
39792,
5316,
64,
788,
64,
9629,
64,
21552,
13,
187,
50274,
80,
14399,
19,
64,
13763,
64,
39792,
5316,
64,
35899,
64,
788,
64,
9629,
64,
21552,
4718,
187,
187,
4659,
2991,
11897,
64,
15179,
64,
24717,
64,
80,
14399,
19,
9,
187,
50274,
737,
5902,
64,
25798,
15738,
64,
21552,
64,
9629,
11,
21464,
64,
12250,
13,
187,
50274,
737,
5902,
64,
2413,
31010,
64,
8882,
11,
3944,
31010,
64,
8882,
13,
650,
5902,
64,
4818,
1981,
64,
21294,
11,
8461,
290,
13,
187,
50274,
737,
5902,
64,
48673,
737,
64,
11316,
64,
4997,
2380,
64,
11316,
13,
650,
5902,
64,
17993,
261,
20639,
10,
551,
187,
50276,
737,
5902,
64,
2413,
64,
10146,
10478,
426,
48469,
3615,
5627,
3,
25467,
14,
6623,
15100,
995,
313,
3615,
5627,
3,
17664,
13334,
187,
50276,
737,
5902,
64,
2413,
31010,
64,
9629,
2748,
28,
187,
50276,
6441,
1178,
6395,
9629,
13,
470,
13,
13322,
9,
737,
5902,
64,
2413,
31010,
64,
9629,
4027,
187,
50276,
9629,
15,
5465,
426,
313,
3615,
5627,
6217,
5077,
64,
9507,
16143,
38,
64,
40861,
7570,
64,
28723,
2350,
9033,
64,
31621,
28,
187,
50276,
9629,
15,
2413,
15,
3967,
426,
313,
3615,
5627,
6217,
5077,
64,
9507,
16143,
38,
64,
40861,
7570,
64,
28723,
2350,
9033,
64,
7058,
39373,
64,
18999,
28,
187,
50276,
9629,
15,
2413,
15,
26241,
64,
5560,
426,
337,
28,
187,
50276,
9629,
15,
2413,
15,
13838,
2967,
426,
708,
10146,
28,
187,
50276,
3122,
24202,
9,
291,
6626,
2262,
2639,
610,
253,
7741,
64,
371,
5503,
275,
20921,
285,
3894,
352,
342,
253,
3167,
187,
50273,
13695,
15,
831,
651,
1581,
441,
281,
14002,
271,
19676,
7316,
672,
762,
187,
50273,
2068,
4190,
3541,
3473,
15,
1738,
187,
50276,
737,
5902,
64,
15024,
64,
371,
5503,
11,
7741,
64,
371,
5503,
426,
187,
50272,
737,
5902,
64,
15024,
64,
371,
5503,
64,
6953,
1587,
80,
14399,
19,
64,
25798,
15738,
3287,
187,
50276,
737,
5902,
64,
2413,
31010,
64,
788,
9,
187,
50272,
2413,
31010,
64,
8882,
13,
8461,
290,
13,
7741,
64,
371,
5503,
13,
708,
9629,
13,
20639,
13,
187,
50272,
6217,
5077,
64,
3207,
2697,
10860,
64,
25875,
9,
10927,
64,
11316,
13,
21464,
64,
12250,
13,
650,
5902,
64,
44128,
64,
251,
64,
9993,
64,
11154,
582,
187,
50272,
7,
21552,
64,
12250,
1168,
10927,
558,
187,
50276,
737,
5902,
64,
15024,
64,
371,
5503,
64,
328,
709,
64,
11577,
9,
15024,
64,
371,
5503,
558,
187,
94,
187,
187,
737,
5902,
64,
4065,
64,
25798,
15738,
11,
650,
5902,
64,
9906,
64,
39413,
64,
15179,
64,
25798,
15738,
64,
6953,
9,
187,
50274,
4353,
11,
10827,
10,
551,
187,
50276,
737,
5902,
64,
80,
14399,
19,
64,
13763,
64,
39792,
5316,
64,
25798,
15738,
11,
260,
426,
187,
50272,
4659,
64,
4008,
29,
737,
5902,
64,
80,
14399,
19,
64,
13763,
64,
39792,
5316,
64,
25798,
15738,
46802,
187,
50268,
72,
1087,
64,
44754,
9,
23269,
9,
737,
5902,
64,
80,
14399,
19,
64,
13763,
64,
39792,
5316,
64,
25798,
15738,
23090,
187,
50276,
6217,
5077,
64,
11252,
64,
38448,
1587,
737,
5902,
64,
39413,
64,
15179,
64,
25798,
15738,
64,
6953,
9,
47849,
23869,
81,
22719,
337,
13,
187,
50261,
9,
47849,
4027,
187,
50276,
40,
3175,
64,
25202,
9,
47849,
2295,
28471,
558,
187,
50276,
4478,
64,
80,
14399,
19,
64,
13763,
64,
39792,
5316,
9,
68,
13,
11897,
64,
15179,
64,
24717,
64,
80,
14399,
19,
558,
187,
50276,
68,
1168,
4793,
15,
87,
2420,
426,
708,
39413,
64,
15179,
64,
87,
2420,
28,
187,
50276,
2309,
708,
68,
1168,
4793,
28,
187,
94,
187,
187,
605,
187,
605,
5559,
7567,
2935,
35097,
23820,
15,
187,
605,
187,
187,
4659,
2991,
22906,
64,
13763,
64,
43739,
9,
737,
5902,
64,
4065,
64,
25798,
15738,
11,
3552,
84,
10,
551,
187,
50276,
737,
5902,
64,
9906,
64,
38664,
64,
13763,
64,
25798,
15738,
11,
260,
426,
187,
50272,
250,
22416,
64,
4008,
29,
737,
5902,
64,
9906,
64,
38664,
64,
13763,
64,
25798,
15738,
46802,
25798,
84,
558,
187,
50276,
737,
5902,
64,
14399,
64,
38664,
64,
13763,
64,
43739,
6395,
68,
1168,
38664,
64,
13763,
558,
187,
50276,
80,
14399,
19,
64,
13763,
64,
39792,
5316,
64,
43739,
6395,
68,
1168,
4793,
15,
4793,
558,
187,
94,
187,
187,
4659,
650,
5902,
64,
4065,
64,
25798,
15738,
64,
87,
2420,
22906,
64,
13763,
64,
87,
2420,
426,
551,
187,
50274,
38664,
64,
13763,
64,
43739,
13,
258,
14399,
19,
64,
13763,
64,
39792,
5316,
64,
788,
64,
9629,
64,
21552,
13,
187,
50274,
80,
14399,
19,
64,
13763,
64,
39792,
5316,
64,
35899,
64,
788,
64,
9629,
64,
21552,
4718,
187,
187,
4659,
2991,
22906,
64,
13763,
64,
24717,
64,
80,
14399,
19,
9,
187,
50274,
737,
5902,
64,
25798,
15738,
64,
21552,
64,
9629,
11,
21464,
64,
12250,
13,
187,
50274,
737,
5902,
64,
2413,
31010,
64,
8882,
11,
3944,
31010,
64,
8882,
13,
650,
5902,
64,
4818,
1981,
64,
21294,
11,
8461,
290,
13,
187,
50274,
737,
5902,
64,
48673,
737,
64,
11316,
64,
4997,
2380,
64,
11316,
13,
650,
5902,
64,
17993,
261,
20639,
10,
551,
187,
50276,
737,
5902,
64,
9906,
64,
38664,
64,
13763,
64,
25798,
15738,
11,
260,
426,
187,
50272,
250,
22416,
64,
4008,
29,
737,
5902,
64,
9906,
64,
38664,
64,
13763,
64,
25798,
15738,
46802,
187,
50268,
21552,
64,
12250,
1168,
25798,
84,
558,
187,
50276,
737,
5902,
64,
2413,
64,
10146,
10478,
426,
48469,
3615,
5627,
3,
8590,
14,
2548,
995,
187,
50254,
50273,
9,
3615,
5627,
3,
13259,
16,
89,
14,
2700,
14,
630,
14,
6434,
36034,
13334,
187,
50276,
737,
5902,
64,
2413,
31010,
64,
9629,
2748,
28,
187,
50276,
3615,
11,
2133,
426,
28471,
28,
187,
50276,
72,
1087,
64,
284,
13108,
6395,
2915,
13,
9942,
5077,
64,
1848,
6764,
45514,
64,
7058,
39373,
64,
15743,
64,
35,
35867,
64,
31447,
64,
24458,
13,
187,
50263,
68,
1168,
38664,
64,
13763,
15,
8780,
64,
301,
13,
260,
1168,
38664,
64,
13763,
15,
8780,
64,
22882,
13,
187,
50263,
68,
1168,
38664,
64,
13763,
15,
38664,
64,
13763,
558,
187,
50276,
6441,
1178,
6395,
9629,
13,
470,
13,
13322,
9,
737,
5902,
64,
2413,
31010,
64,
9629,
4027,
187,
50276,
9629,
15,
5465,
426,
313,
3615,
5627,
6217,
5077,
64,
40,
29367,
64,
31794,
19366,
19,
64,
21355,
8875,
64,
31621,
28,
187,
50276,
9629,
15,
2413,
15,
3967,
426,
313,
3615,
5627,
6217,
5077,
64,
40,
29367,
64,
31794,
19366,
19,
64,
21355,
8875,
64,
7058,
39373,
64,
18999,
28,
187,
50276,
9629,
15,
2413,
15,
26241,
64,
5560,
426,
337,
28,
187,
50276,
9629,
15,
2413,
15,
13838,
2967,
426,
708,
10146,
28,
187,
50276,
9629,
15,
4608,
1200,
4584,
426,
708,
737,
5902,
64,
2413,
31010,
64,
28908,
28,
187,
50276,
3122,
24202,
9,
291,
6626,
2262,
2639,
610,
253,
7741,
64,
371,
5503,
275,
20921,
285,
3894,
352,
342,
253,
3167,
187,
50273,
13695,
15,
831,
651,
1581,
441,
281,
14002,
271,
19676,
7316,
672,
762,
187,
50273,
2068,
4190,
3541,
3473,
15,
1738,
187,
50276,
737,
5902,
64,
15024,
64,
371,
5503,
11,
7741,
64,
371,
5503,
426,
187,
50272,
737,
5902,
64,
15024,
64,
371,
5503,
64,
6953,
1587,
80,
14399,
19,
64,
25798,
15738,
64,
38664,
3287,
187,
50276,
737,
5902,
64,
2413,
31010,
64,
5996,
9,
187,
50272,
2413,
31010,
64,
8882,
13,
8461,
290,
13,
7741,
64,
371,
5503,
13,
708,
9629,
13,
2133,
13,
47287,
9,
2915,
582,
187,
50272,
26928,
1282,
13,
187,
50272,
6217,
5077,
64,
3207,
2697,
10860,
64,
25875,
9,
10927,
64,
11316,
13,
21464,
64,
12250,
13,
650,
5902,
64,
44128,
64,
251,
64,
9993,
64,
11154,
582,
187,
50272,
7,
21552,
64,
12250,
1168,
10927,
558,
187,
50276,
737,
5902,
64,
15024,
64,
371,
5503,
64,
328,
709,
64,
11577,
9,
15024,
64,
371,
5503,
558,
187,
50276,
72,
1087,
64,
4924,
9,
2915,
558,
187,
94,
187,
187,
737,
5902,
64,
4065,
64,
25798,
15738,
11,
187,
737,
5902,
64,
38664,
64,
13763,
64,
25798,
15738,
64,
6953,
64,
4064,
64,
14399,
64,
38664,
64,
13763,
9,
187,
50274,
737,
5902,
64,
14399,
64,
38664,
64,
13763,
22906,
64,
13763,
10,
551,
187,
50276,
737,
5902,
64,
9906,
64,
38664,
64,
13763,
64,
25798,
15738,
11,
260,
28,
187,
50276,
338,
6522,
737,
5902,
64,
14399,
64,
38664,
64,
13763,
64,
261,
64,
7210,
6395,
38664,
64,
13763,
1228,
551,
187,
50274,
72,
1087,
64,
2808,
9,
40,
3175,
64,
12641,
13,
346,
19504,
3280,
323,
22906,
10669,
23820,
8869,
3287,
187,
50274,
2309,
28471,
28,
187,
50276,
94,
187,
50276,
68,
426,
4228,
64,
4008,
29,
737,
5902,
64,
9906,
64,
38664,
64,
13763,
64,
25798,
15738,
46802,
187,
50272,
72,
1087,
64,
91,
10835,
9,
23269,
9,
737,
5902,
64,
9906,
64,
38664,
64,
13763,
64,
25798,
15738,
23090,
187,
50276,
4478,
64,
80,
14399,
19,
64,
13763,
64,
39792,
5316,
6395,
68,
1168,
4793,
13,
22906,
64,
13763,
64,
24717,
64,
80,
14399,
19,
558,
187,
50276,
68,
1168,
4793,
15,
4793,
15,
87,
2420,
426,
708,
38664,
64,
13763,
64,
87,
2420,
28,
187,
50276,
68,
1168,
38664,
64,
13763,
426,
22906,
64,
13763,
28,
187,
50276,
2309,
708,
68,
1168,
4793,
15,
4793,
28,
187,
94,
187,
187,
4659,
1018,
11,
2794,
64,
2808,
72,
494,
64,
38664,
64,
13763,
9,
737,
5902,
64,
14399,
64,
38664,
64,
13763,
11,
10669,
10,
551,
187,
50276,
338,
313,
1344,
21630,
9,
13763,
1168,
881,
13,
9942,
5077,
64,
37482,
64,
17635,
64,
10560,
64,
35557,
10,
2295,
470,
10,
551,
187,
50274,
2309,
305,
1087,
64,
1344,
34856,
43467,
19504,
14113,
10669,
31,
3287,
187,
50276,
94,
187,
50276,
3615,
11,
2412,
72,
494,
64,
13763,
426,
28471,
28,
187,
50276,
72,
1087,
64,
284,
13108,
6395,
2808,
72,
494,
64,
13763,
13,
187,
50263,
3,
464,
79,
1511,
27,
2462,
84,
61,
79,
5268,
64,
301,
27,
2462,
84,
61,
79,
5268,
64,
22882,
27,
346,
187,
50263,
3,
29,
433,
33019,
13544,
79,
22906,
64,
13763,
27,
654,
433,
33019,
13544,
79,
32722,
187,
50263,
13763,
1168,
881,
13,
10669,
1168,
8780,
64,
301,
558,
187,
50276,
2309,
2412,
72,
494,
64,
13763,
28,
187,
94,
187,
187,
737,
5902,
64,
4065,
64,
25798,
15738,
11,
650,
5902,
64,
9906,
64,
38664,
64,
13763,
64,
25798,
15738,
64,
6953,
9,
187,
50274,
3474,
1018,
11,
14113,
64,
38664,
64,
13763,
13,
2991,
11,
10827,
10,
551,
187,
50276,
737,
5902,
64,
14399,
64,
38664,
64,
13763,
10669,
426,
187,
50272,
737,
5902,
64,
14399,
64,
38664,
64,
13763,
64,
6953,
64,
4064,
64,
2703,
9,
8456,
64,
38664,
64,
13763,
558,
187,
50276,
338,
313,
737,
5902,
64,
6682,
64,
20668,
15,
22331,
6649,
551,
187,
50274,
3615,
11,
2412,
72,
494,
64,
13763,
426,
2794,
64,
2808,
72,
494,
64,
38664,
64,
13763,
6395,
13763,
558,
187,
50274,
72,
1087,
64,
2808,
9,
40,
3175,
64,
16615,
13,
187,
50266,
3,
737,
5902,
64,
38664,
64,
13763,
64,
25798,
15738,
64,
6953,
9,
8456,
64,
38664,
64,
13763,
23869,
84,
13,
346,
187,
50266,
3,
47849,
23869,
81,
22719,
187,
50266,
2808,
72,
494,
64,
13763,
13,
10827,
558,
187,
50274,
72,
1087,
64,
4924,
9,
2808,
72,
494,
64,
13763,
558,
187,
50276,
94,
187,
50276,
40,
3175,
64,
25202,
9,
47849,
2295,
28471,
558,
187,
50276,
2309,
650,
5902,
64,
38664,
64,
13763,
64,
25798,
15738,
64,
6953,
64,
4064,
64,
14399,
64,
38664,
64,
13763,
9,
13763,
558,
187,
94,
187,
187,
605,
187,
605,
473,
14399,
19,
13135,
35097,
23820,
15,
187,
605,
187,
187,
4659,
2991,
2289,
64,
13763,
64,
43739,
9,
737,
5902,
64,
4065,
64,
25798,
15738,
11,
3552,
84,
10,
551,
187,
50276,
737,
5902,
64,
10773,
64,
13763,
64,
25798,
15738,
11,
260,
426,
187,
50272,
250,
22416,
64,
4008,
29,
737,
5902,
64,
10773,
64,
13763,
64,
25798,
15738,
46802,
25798,
84,
558,
187,
50276,
6217,
5077,
64,
46,
2573,
1843,
46,
64,
4037,
15619,
9,
68,
1168,
10773,
64,
13763,
64,
6535,
558,
187,
94,
187,
187,
4659,
7301,
2289,
64,
13763,
64,
788,
64,
9629,
64,
21552,
9,
187,
50274,
737,
5902,
64,
4065,
64,
25798,
15738,
11,
3552,
84,
13,
650,
5902,
64,
4818,
1981,
64,
21294,
11,
8461,
290,
13,
187,
50274,
737,
5902,
64,
14399,
64,
21552,
64,
8882,
3634,
13,
650,
5902,
64,
25798,
15738,
64,
78,
615,
5616,
64,
3728,
11,
31934,
64,
3728,
13,
187,
50274,
737,
5902,
64,
14019,
11,
327,
64,
9629,
64,
21552,
13,
650,
5902,
64,
3775,
424,
2228,
10,
551,
187,
50276,
737,
5902,
64,
10773,
64,
13763,
64,
25798,
15738,
11,
260,
426,
187,
50272,
250,
22416,
64,
4008,
29,
737,
5902,
64,
10773,
64,
13763,
64,
25798,
15738,
46802,
25798,
84,
558,
187,
50276,
737,
5902,
64,
25798,
15738,
64,
78,
615,
5616,
64,
3728,
64,
1911,
9,
6535,
64,
3728,
13,
260,
1168,
10773,
64,
13763,
64,
6535,
558,
187,
50276,
2309,
2032,
28,
187,
94,
187,
187,
4659,
2991,
2289,
64,
13763,
64,
35899,
64,
788,
64,
9629,
64,
21552,
9,
187,
50274,
737,
5902,
64,
4065,
64,
25798,
15738,
11,
260,
13,
650,
5902,
64,
25798,
15738,
64,
78,
615,
5616,
64,
3728,
11,
31934,
64,
3728,
13,
187,
50274,
737,
5902,
64,
3775,
11,
2228,
10,
551,
187,
50276,
6217,
5077,
64,
12641,
64,
4037,
15619,
9,
3775,
558,
187,
94,
187,
187,
4659,
650,
5902,
64,
4065,
64,
25798,
15738,
64,
87,
2420,
2289,
64,
13763,
64,
87,
2420,
426,
551,
187,
50274,
10773,
64,
13763,
64,
43739,
13,
2289,
64,
13763,
64,
788,
64,
9629,
64,
21552,
13,
187,
50274,
10773,
64,
13763,
64,
35899,
64,
788,
64,
9629,
64,
21552,
4718,
187,
187,
737,
5902,
64,
4065,
64,
25798,
15738,
11,
650,
5902,
64,
10773,
64,
13763,
64,
25798,
15738,
64,
6953,
9,
187,
50274,
3474,
1018,
11,
2289,
64,
13763,
13,
2991,
11,
10827,
10,
551,
187,
50276,
737,
5902,
64,
10773,
64,
13763,
64,
25798,
15738,
11,
260,
426,
187,
50272,
4659,
64,
4008,
29,
737,
5902,
64,
10773,
64,
13763,
64,
25798,
15738,
46802,
187,
50268,
72,
1087,
64,
91,
10835,
9,
23269,
9,
737,
5902,
64,
10773,
64,
13763,
64,
25798,
15738,
23090,
187,
50276,
6217,
5077,
64,
11252,
64,
38448,
9,
187,
50272,
3,
737,
5902,
64,
10773,
64,
13763,
64,
25798,
15738,
64,
6953,
9,
10773,
64,
13763,
30,
29,
433,
33019,
9983,
346,
187,
50272,
3,
47849,
23869,
81,
22719,
187,
50272,
18,
13,
313,
47849,
4027,
187,
50276,
40,
3175,
64,
25202,
9,
47849,
2295,
28471,
558,
187,
50276,
68,
1168,
4793,
15,
881,
426,
9942,
5077,
64,
24434,
64,
1311,
1703,
34172,
52,
64,
10560,
64,
31794,
19366,
19,
28,
187,
50276,
68,
1168,
4793,
15,
87,
2420,
426,
708,
10773,
64,
13763,
64,
87,
2420,
28,
187,
50276,
72,
1087,
64,
709,
64,
4478,
6395,
68,
1168,
4793,
15,
709,
5560,
13,
337,
558,
187,
50276,
3615,
11,
10669,
64,
6535,
64,
2877,
28,
187,
50276,
72,
1087,
64,
284,
13108,
6395,
13763,
64,
6535,
64,
2877,
13,
346,
4678,
12287,
2462,
84,
995,
2289,
64,
13763,
558,
187,
50276,
737,
5902,
64,
6443,
1450,
12560,
5229,
89,
3244,
64,
11154,
28,
187,
50276,
68,
1168,
10773,
64,
13763,
64,
6535,
426,
650,
5902,
64,
78,
615,
5616,
64,
4064,
64,
84,
663,
265,
9,
187,
50272,
737,
5902,
64,
27494,
64,
4064,
64,
4659,
64,
2703,
9,
6217,
5077,
64,
37482,
1372,
18769,
6570,
64,
28723,
2350,
9033,
64,
13888,
582,
187,
50272,
737,
5902,
64,
27494,
64,
4064,
64,
21592,
728,
64,
2703,
9,
13763,
64,
6535,
64,
2877,
4027,
535,
50276,
72,
1087,
64,
4924,
9,
13763,
64,
6535,
64,
2877,
558,
187,
50276,
2309,
708,
68,
1168,
4793,
28,
187,
94,
187
] | /*
*
* Copyright 2015 gRPC authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
#include <grpc/support/port_platform.h>
#include "src/core/lib/security/credentials/oauth2/oauth2_credentials.h"
#include <string.h>
#include "src/core/lib/security/util/json_util.h"
#include "src/core/lib/surface/api_trace.h"
#include <grpc/support/alloc.h>
#include <grpc/support/log.h>
#include <grpc/support/string_util.h>
//
// Auth Refresh Token.
//
int grpc_auth_refresh_token_is_valid(
const grpc_auth_refresh_token* refresh_token) {
return (refresh_token != nullptr) &&
strcmp(refresh_token->type, GRPC_AUTH_JSON_TYPE_INVALID);
}
grpc_auth_refresh_token grpc_auth_refresh_token_create_from_json(
const grpc_json* json) {
grpc_auth_refresh_token result;
const char* prop_value;
int success = 0;
memset(&result, 0, sizeof(grpc_auth_refresh_token));
result.type = GRPC_AUTH_JSON_TYPE_INVALID;
if (json == nullptr) {
gpr_log(GPR_ERROR, "Invalid json.");
goto end;
}
prop_value = grpc_json_get_string_property(json, "type");
if (prop_value == nullptr ||
strcmp(prop_value, GRPC_AUTH_JSON_TYPE_AUTHORIZED_USER)) {
goto end;
}
result.type = GRPC_AUTH_JSON_TYPE_AUTHORIZED_USER;
if (!grpc_copy_json_string_property(json, "client_secret",
&result.client_secret) ||
!grpc_copy_json_string_property(json, "client_id", &result.client_id) ||
!grpc_copy_json_string_property(json, "refresh_token",
&result.refresh_token)) {
goto end;
}
success = 1;
end:
if (!success) grpc_auth_refresh_token_destruct(&result);
return result;
}
grpc_auth_refresh_token grpc_auth_refresh_token_create_from_string(
const char* json_string) {
char* scratchpad = gpr_strdup(json_string);
grpc_json* json = grpc_json_parse_string(scratchpad);
grpc_auth_refresh_token result =
grpc_auth_refresh_token_create_from_json(json);
if (json != nullptr) grpc_json_destroy(json);
gpr_free(scratchpad);
return result;
}
void grpc_auth_refresh_token_destruct(grpc_auth_refresh_token* refresh_token) {
if (refresh_token == nullptr) return;
refresh_token->type = GRPC_AUTH_JSON_TYPE_INVALID;
if (refresh_token->client_id != nullptr) {
gpr_free(refresh_token->client_id);
refresh_token->client_id = nullptr;
}
if (refresh_token->client_secret != nullptr) {
gpr_free(refresh_token->client_secret);
refresh_token->client_secret = nullptr;
}
if (refresh_token->refresh_token != nullptr) {
gpr_free(refresh_token->refresh_token);
refresh_token->refresh_token = nullptr;
}
}
//
// Oauth2 Token Fetcher credentials.
//
static void oauth2_token_fetcher_destruct(grpc_call_credentials* creds) {
grpc_oauth2_token_fetcher_credentials* c =
reinterpret_cast<grpc_oauth2_token_fetcher_credentials*>(creds);
GRPC_MDELEM_UNREF(c->access_token_md);
gpr_mu_destroy(&c->mu);
grpc_pollset_set_destroy(grpc_polling_entity_pollset_set(&c->pollent));
grpc_httpcli_context_destroy(&c->httpcli_context);
}
grpc_credentials_status
grpc_oauth2_token_fetcher_credentials_parse_server_response(
const grpc_http_response* response, grpc_mdelem* token_md,
grpc_millis* token_lifetime) {
char* null_terminated_body = nullptr;
char* new_access_token = nullptr;
grpc_credentials_status status = GRPC_CREDENTIALS_OK;
grpc_json* json = nullptr;
if (response == nullptr) {
gpr_log(GPR_ERROR, "Received NULL response.");
status = GRPC_CREDENTIALS_ERROR;
goto end;
}
if (response->body_length > 0) {
null_terminated_body =
static_cast<char*>(gpr_malloc(response->body_length + 1));
null_terminated_body[response->body_length] = '\0';
memcpy(null_terminated_body, response->body, response->body_length);
}
if (response->status != 200) {
gpr_log(GPR_ERROR, "Call to http server ended with error %d [%s].",
response->status,
null_terminated_body != nullptr ? null_terminated_body : "");
status = GRPC_CREDENTIALS_ERROR;
goto end;
} else {
grpc_json* access_token = nullptr;
grpc_json* token_type = nullptr;
grpc_json* expires_in = nullptr;
grpc_json* ptr;
json = grpc_json_parse_string(null_terminated_body);
if (json == nullptr) {
gpr_log(GPR_ERROR, "Could not parse JSON from %s", null_terminated_body);
status = GRPC_CREDENTIALS_ERROR;
goto end;
}
if (json->type != GRPC_JSON_OBJECT) {
gpr_log(GPR_ERROR, "Response should be a JSON object");
status = GRPC_CREDENTIALS_ERROR;
goto end;
}
for (ptr = json->child; ptr; ptr = ptr->next) {
if (strcmp(ptr->key, "access_token") == 0) {
access_token = ptr;
} else if (strcmp(ptr->key, "token_type") == 0) {
token_type = ptr;
} else if (strcmp(ptr->key, "expires_in") == 0) {
expires_in = ptr;
}
}
if (access_token == nullptr || access_token->type != GRPC_JSON_STRING) {
gpr_log(GPR_ERROR, "Missing or invalid access_token in JSON.");
status = GRPC_CREDENTIALS_ERROR;
goto end;
}
if (token_type == nullptr || token_type->type != GRPC_JSON_STRING) {
gpr_log(GPR_ERROR, "Missing or invalid token_type in JSON.");
status = GRPC_CREDENTIALS_ERROR;
goto end;
}
if (expires_in == nullptr || expires_in->type != GRPC_JSON_NUMBER) {
gpr_log(GPR_ERROR, "Missing or invalid expires_in in JSON.");
status = GRPC_CREDENTIALS_ERROR;
goto end;
}
gpr_asprintf(&new_access_token, "%s %s", token_type->value,
access_token->value);
*token_lifetime = strtol(expires_in->value, nullptr, 10) * GPR_MS_PER_SEC;
if (!GRPC_MDISNULL(*token_md)) GRPC_MDELEM_UNREF(*token_md);
*token_md = grpc_mdelem_from_slices(
grpc_slice_from_static_string(GRPC_AUTHORIZATION_METADATA_KEY),
grpc_slice_from_copied_string(new_access_token));
status = GRPC_CREDENTIALS_OK;
}
end:
if (status != GRPC_CREDENTIALS_OK && !GRPC_MDISNULL(*token_md)) {
GRPC_MDELEM_UNREF(*token_md);
*token_md = GRPC_MDNULL;
}
if (null_terminated_body != nullptr) gpr_free(null_terminated_body);
if (new_access_token != nullptr) gpr_free(new_access_token);
if (json != nullptr) grpc_json_destroy(json);
return status;
}
static void on_oauth2_token_fetcher_http_response(void* user_data,
grpc_error* error) {
GRPC_LOG_IF_ERROR("oauth_fetch", GRPC_ERROR_REF(error));
grpc_credentials_metadata_request* r =
static_cast<grpc_credentials_metadata_request*>(user_data);
grpc_oauth2_token_fetcher_credentials* c =
reinterpret_cast<grpc_oauth2_token_fetcher_credentials*>(r->creds);
grpc_mdelem access_token_md = GRPC_MDNULL;
grpc_millis token_lifetime;
grpc_credentials_status status =
grpc_oauth2_token_fetcher_credentials_parse_server_response(
&r->response, &access_token_md, &token_lifetime);
// Update cache and grab list of pending requests.
gpr_mu_lock(&c->mu);
c->token_fetch_pending = false;
c->access_token_md = GRPC_MDELEM_REF(access_token_md);
c->token_expiration = status == GRPC_CREDENTIALS_OK
? grpc_core::ExecCtx::Get()->Now() + token_lifetime
: 0;
grpc_oauth2_pending_get_request_metadata* pending_request =
c->pending_requests;
c->pending_requests = nullptr;
gpr_mu_unlock(&c->mu);
// Invoke callbacks for all pending requests.
while (pending_request != nullptr) {
if (status == GRPC_CREDENTIALS_OK) {
grpc_credentials_mdelem_array_add(pending_request->md_array,
access_token_md);
} else {
error = GRPC_ERROR_CREATE_REFERENCING_FROM_STATIC_STRING(
"Error occured when fetching oauth2 token.", &error, 1);
}
GRPC_CLOSURE_SCHED(pending_request->on_request_metadata, error);
grpc_polling_entity_del_from_pollset_set(
pending_request->pollent, grpc_polling_entity_pollset_set(&c->pollent));
grpc_oauth2_pending_get_request_metadata* prev = pending_request;
pending_request = pending_request->next;
gpr_free(prev);
}
GRPC_MDELEM_UNREF(access_token_md);
grpc_call_credentials_unref(r->creds);
grpc_credentials_metadata_request_destroy(r);
}
static bool oauth2_token_fetcher_get_request_metadata(
grpc_call_credentials* creds, grpc_polling_entity* pollent,
grpc_auth_metadata_context context, grpc_credentials_mdelem_array* md_array,
grpc_closure* on_request_metadata, grpc_error** error) {
grpc_oauth2_token_fetcher_credentials* c =
reinterpret_cast<grpc_oauth2_token_fetcher_credentials*>(creds);
// Check if we can use the cached token.
grpc_millis refresh_threshold =
GRPC_SECURE_TOKEN_REFRESH_THRESHOLD_SECS * GPR_MS_PER_SEC;
grpc_mdelem cached_access_token_md = GRPC_MDNULL;
gpr_mu_lock(&c->mu);
if (!GRPC_MDISNULL(c->access_token_md) &&
(c->token_expiration - grpc_core::ExecCtx::Get()->Now() >
refresh_threshold)) {
cached_access_token_md = GRPC_MDELEM_REF(c->access_token_md);
}
if (!GRPC_MDISNULL(cached_access_token_md)) {
gpr_mu_unlock(&c->mu);
grpc_credentials_mdelem_array_add(md_array, cached_access_token_md);
GRPC_MDELEM_UNREF(cached_access_token_md);
return true;
}
// Couldn't get the token from the cache.
// Add request to c->pending_requests and start a new fetch if needed.
grpc_oauth2_pending_get_request_metadata* pending_request =
static_cast<grpc_oauth2_pending_get_request_metadata*>(
gpr_malloc(sizeof(*pending_request)));
pending_request->md_array = md_array;
pending_request->on_request_metadata = on_request_metadata;
pending_request->pollent = pollent;
grpc_polling_entity_add_to_pollset_set(
pollent, grpc_polling_entity_pollset_set(&c->pollent));
pending_request->next = c->pending_requests;
c->pending_requests = pending_request;
bool start_fetch = false;
if (!c->token_fetch_pending) {
c->token_fetch_pending = true;
start_fetch = true;
}
gpr_mu_unlock(&c->mu);
if (start_fetch) {
grpc_call_credentials_ref(creds);
c->fetch_func(grpc_credentials_metadata_request_create(creds),
&c->httpcli_context, &c->pollent,
on_oauth2_token_fetcher_http_response,
grpc_core::ExecCtx::Get()->Now() + refresh_threshold);
}
return false;
}
static void oauth2_token_fetcher_cancel_get_request_metadata(
grpc_call_credentials* creds, grpc_credentials_mdelem_array* md_array,
grpc_error* error) {
grpc_oauth2_token_fetcher_credentials* c =
reinterpret_cast<grpc_oauth2_token_fetcher_credentials*>(creds);
gpr_mu_lock(&c->mu);
grpc_oauth2_pending_get_request_metadata* prev = nullptr;
grpc_oauth2_pending_get_request_metadata* pending_request =
c->pending_requests;
while (pending_request != nullptr) {
if (pending_request->md_array == md_array) {
// Remove matching pending request from the list.
if (prev != nullptr) {
prev->next = pending_request->next;
} else {
c->pending_requests = pending_request->next;
}
// Invoke the callback immediately with an error.
GRPC_CLOSURE_SCHED(pending_request->on_request_metadata,
GRPC_ERROR_REF(error));
gpr_free(pending_request);
break;
}
prev = pending_request;
pending_request = pending_request->next;
}
gpr_mu_unlock(&c->mu);
GRPC_ERROR_UNREF(error);
}
static void init_oauth2_token_fetcher(grpc_oauth2_token_fetcher_credentials* c,
grpc_fetch_oauth2_func fetch_func) {
memset(c, 0, sizeof(grpc_oauth2_token_fetcher_credentials));
c->base.type = GRPC_CALL_CREDENTIALS_TYPE_OAUTH2;
gpr_ref_init(&c->base.refcount, 1);
gpr_mu_init(&c->mu);
c->token_expiration = 0;
c->fetch_func = fetch_func;
c->pollent =
grpc_polling_entity_create_from_pollset_set(grpc_pollset_set_create());
grpc_httpcli_context_init(&c->httpcli_context);
}
//
// Google Compute Engine credentials.
//
static grpc_call_credentials_vtable compute_engine_vtable = {
oauth2_token_fetcher_destruct, oauth2_token_fetcher_get_request_metadata,
oauth2_token_fetcher_cancel_get_request_metadata};
static void compute_engine_fetch_oauth2(
grpc_credentials_metadata_request* metadata_req,
grpc_httpcli_context* httpcli_context, grpc_polling_entity* pollent,
grpc_iomgr_cb_func response_cb, grpc_millis deadline) {
grpc_http_header header = {(char*)"Metadata-Flavor", (char*)"Google"};
grpc_httpcli_request request;
memset(&request, 0, sizeof(grpc_httpcli_request));
request.host = (char*)GRPC_COMPUTE_ENGINE_METADATA_HOST;
request.http.path = (char*)GRPC_COMPUTE_ENGINE_METADATA_TOKEN_PATH;
request.http.hdr_count = 1;
request.http.hdrs = &header;
/* TODO(ctiller): Carry the resource_quota in ctx and share it with the host
channel. This would allow us to cancel an authentication query when under
extreme memory pressure. */
grpc_resource_quota* resource_quota =
grpc_resource_quota_create("oauth2_credentials");
grpc_httpcli_get(
httpcli_context, pollent, resource_quota, &request, deadline,
GRPC_CLOSURE_CREATE(response_cb, metadata_req, grpc_schedule_on_exec_ctx),
&metadata_req->response);
grpc_resource_quota_unref_internal(resource_quota);
}
grpc_call_credentials* grpc_google_compute_engine_credentials_create(
void* reserved) {
grpc_oauth2_token_fetcher_credentials* c =
static_cast<grpc_oauth2_token_fetcher_credentials*>(
gpr_malloc(sizeof(grpc_oauth2_token_fetcher_credentials)));
GRPC_API_TRACE("grpc_compute_engine_credentials_create(reserved=%p)", 1,
(reserved));
GPR_ASSERT(reserved == nullptr);
init_oauth2_token_fetcher(c, compute_engine_fetch_oauth2);
c->base.vtable = &compute_engine_vtable;
return &c->base;
}
//
// Google Refresh Token credentials.
//
static void refresh_token_destruct(grpc_call_credentials* creds) {
grpc_google_refresh_token_credentials* c =
reinterpret_cast<grpc_google_refresh_token_credentials*>(creds);
grpc_auth_refresh_token_destruct(&c->refresh_token);
oauth2_token_fetcher_destruct(&c->base.base);
}
static grpc_call_credentials_vtable refresh_token_vtable = {
refresh_token_destruct, oauth2_token_fetcher_get_request_metadata,
oauth2_token_fetcher_cancel_get_request_metadata};
static void refresh_token_fetch_oauth2(
grpc_credentials_metadata_request* metadata_req,
grpc_httpcli_context* httpcli_context, grpc_polling_entity* pollent,
grpc_iomgr_cb_func response_cb, grpc_millis deadline) {
grpc_google_refresh_token_credentials* c =
reinterpret_cast<grpc_google_refresh_token_credentials*>(
metadata_req->creds);
grpc_http_header header = {(char*)"Content-Type",
(char*)"application/x-www-form-urlencoded"};
grpc_httpcli_request request;
char* body = nullptr;
gpr_asprintf(&body, GRPC_REFRESH_TOKEN_POST_BODY_FORMAT_STRING,
c->refresh_token.client_id, c->refresh_token.client_secret,
c->refresh_token.refresh_token);
memset(&request, 0, sizeof(grpc_httpcli_request));
request.host = (char*)GRPC_GOOGLE_OAUTH2_SERVICE_HOST;
request.http.path = (char*)GRPC_GOOGLE_OAUTH2_SERVICE_TOKEN_PATH;
request.http.hdr_count = 1;
request.http.hdrs = &header;
request.handshaker = &grpc_httpcli_ssl;
/* TODO(ctiller): Carry the resource_quota in ctx and share it with the host
channel. This would allow us to cancel an authentication query when under
extreme memory pressure. */
grpc_resource_quota* resource_quota =
grpc_resource_quota_create("oauth2_credentials_refresh");
grpc_httpcli_post(
httpcli_context, pollent, resource_quota, &request, body, strlen(body),
deadline,
GRPC_CLOSURE_CREATE(response_cb, metadata_req, grpc_schedule_on_exec_ctx),
&metadata_req->response);
grpc_resource_quota_unref_internal(resource_quota);
gpr_free(body);
}
grpc_call_credentials*
grpc_refresh_token_credentials_create_from_auth_refresh_token(
grpc_auth_refresh_token refresh_token) {
grpc_google_refresh_token_credentials* c;
if (!grpc_auth_refresh_token_is_valid(&refresh_token)) {
gpr_log(GPR_ERROR, "Invalid input for refresh token credentials creation");
return nullptr;
}
c = static_cast<grpc_google_refresh_token_credentials*>(
gpr_zalloc(sizeof(grpc_google_refresh_token_credentials)));
init_oauth2_token_fetcher(&c->base, refresh_token_fetch_oauth2);
c->base.base.vtable = &refresh_token_vtable;
c->refresh_token = refresh_token;
return &c->base.base;
}
static char* create_loggable_refresh_token(grpc_auth_refresh_token* token) {
if (strcmp(token->type, GRPC_AUTH_JSON_TYPE_INVALID) == 0) {
return gpr_strdup("<Invalid json token>");
}
char* loggable_token = nullptr;
gpr_asprintf(&loggable_token,
"{\n type: %s\n client_id: %s\n client_secret: "
"<redacted>\n refresh_token: <redacted>\n}",
token->type, token->client_id);
return loggable_token;
}
grpc_call_credentials* grpc_google_refresh_token_credentials_create(
const char* json_refresh_token, void* reserved) {
grpc_auth_refresh_token token =
grpc_auth_refresh_token_create_from_string(json_refresh_token);
if (grpc_api_trace.enabled()) {
char* loggable_token = create_loggable_refresh_token(&token);
gpr_log(GPR_INFO,
"grpc_refresh_token_credentials_create(json_refresh_token=%s, "
"reserved=%p)",
loggable_token, reserved);
gpr_free(loggable_token);
}
GPR_ASSERT(reserved == nullptr);
return grpc_refresh_token_credentials_create_from_auth_refresh_token(token);
}
//
// Oauth2 Access Token credentials.
//
static void access_token_destruct(grpc_call_credentials* creds) {
grpc_access_token_credentials* c =
reinterpret_cast<grpc_access_token_credentials*>(creds);
GRPC_MDELEM_UNREF(c->access_token_md);
}
static bool access_token_get_request_metadata(
grpc_call_credentials* creds, grpc_polling_entity* pollent,
grpc_auth_metadata_context context, grpc_credentials_mdelem_array* md_array,
grpc_closure* on_request_metadata, grpc_error** error) {
grpc_access_token_credentials* c =
reinterpret_cast<grpc_access_token_credentials*>(creds);
grpc_credentials_mdelem_array_add(md_array, c->access_token_md);
return true;
}
static void access_token_cancel_get_request_metadata(
grpc_call_credentials* c, grpc_credentials_mdelem_array* md_array,
grpc_error* error) {
GRPC_ERROR_UNREF(error);
}
static grpc_call_credentials_vtable access_token_vtable = {
access_token_destruct, access_token_get_request_metadata,
access_token_cancel_get_request_metadata};
grpc_call_credentials* grpc_access_token_credentials_create(
const char* access_token, void* reserved) {
grpc_access_token_credentials* c =
static_cast<grpc_access_token_credentials*>(
gpr_zalloc(sizeof(grpc_access_token_credentials)));
GRPC_API_TRACE(
"grpc_access_token_credentials_create(access_token=<redacted>, "
"reserved=%p)",
1, (reserved));
GPR_ASSERT(reserved == nullptr);
c->base.type = GRPC_CALL_CREDENTIALS_TYPE_OAUTH2;
c->base.vtable = &access_token_vtable;
gpr_ref_init(&c->base.refcount, 1);
char* token_md_value;
gpr_asprintf(&token_md_value, "Bearer %s", access_token);
grpc_core::ExecCtx exec_ctx;
c->access_token_md = grpc_mdelem_from_slices(
grpc_slice_from_static_string(GRPC_AUTHORIZATION_METADATA_KEY),
grpc_slice_from_copied_string(token_md_value));
gpr_free(token_md_value);
return &c->base;
}
|
214,407 | Github | [
283,
36501,
327,
27,
5307,
14,
1762,
14,
740,
187,
283,
36501,
407,
27,
1244,
5292,
36855,
1400,
8199,
187,
283,
8283,
313,
68,
10,
5307,
14,
6759,
41631,
330,
30104,
24259,
33918,
187,
283,
187,
283,
831,
1873,
310,
629,
273,
7489,
330,
30104,
24259,
10784,
3694,
6335,
15,
187,
283,
187,
283,
831,
6335,
310,
1959,
3694,
28,
368,
476,
25529,
352,
285,
16,
263,
10007,
352,
762,
187,
283,
253,
2426,
273,
253,
11963,
32425,
4214,
5259,
4637,
2715,
374,
15,
18,
347,
3863,
187,
283,
407,
253,
7648,
9107,
6807,
13,
342,
2714,
6517,
2931,
275,
253,
1873,
187,
283,
27202,
1647,
64,
37673,
3859,
64,
44788,
2449,
15,
10134,
15,
27560,
253,
1873,
21826,
64,
37673,
3859,
64,
1797,
15,
10134,
2908,
275,
27202,
1647,
187,
283,
3268,
323,
3426,
2505,
273,
253,
7981,
285,
27578,
273,
667,
17529,
15,
187,
283,
187,
283,
20564,
13,
436,
1873,
778,
320,
908,
762,
253,
2426,
273,
7489,
330,
30104,
24259,
187,
283,
6264,
7981,
390,
30727,
4345,
15,
187,
187,
283,
15345,
1080,
27,
186,
5892,
1992,
24226,
313,
4237,
22400,
5204,
330,
30104,
24259,
16,
57,
1267,
13801,
46925,
1080,
10,
657,
18,
15,
18,
187,
187,
2437,
416,
56,
6802,
46812,
432,
416,
56,
13996,
2088,
21866,
535,
50274,
1532,
30431,
3014,
27,
6707,
708,
19566,
4968,
323,
2719,
46812,
187,
187,
5123,
187,
50274,
9063,
432,
33106,
13,
187,
50274,
13996,
16978,
432,
18952,
3233,
13,
187,
50274,
13996,
15283,
3233,
432,
18952,
3233,
13,
187,
50274,
14984,
22782,
432,
33106,
13,
187,
50274,
6802,
46812,
432,
18952,
2088,
21866,
187,
187,
261,
187,
50274,
9395,
6548,
416,
56,
6802,
46812,
432,
416,
56,
13996,
2088,
21866,
28,
187,
186,
1532,
30431,
3014,
27,
45598,
16757,
535,
50274,
5703,
13996,
313,
1405,
28,
941,
27,
18952,
15283,
3233,
432,
18952,
3233,
28,
930,
27,
22008,
28,
187,
50260,
607,
1163,
275,
562,
9423,
432,
33106,
28,
187,
50260,
290,
1163,
2719,
46812,
432,
18952,
2088,
21866,
558,
187,
186,
1532,
30431,
3014,
27,
6707,
84,
2719,
46812,
535,
50274,
10639,
13996,
313,
1405,
28,
13710,
27,
275,
562,
18952,
16978,
432,
18952,
3233,
28,
187,
50259,
290,
27,
2719,
46812,
432,
18952,
2088,
21866,
558,
187,
186,
1532,
30431,
3014,
27,
16679,
265,
2719,
46812,
535,
50274,
18281,
313,
1405,
28,
994,
1163,
2719,
46812,
432,
18952,
2088,
21866,
28,
187,
50263,
2562,
27,
275,
562,
33162,
22782,
432,
33106,
558,
187,
186,
1532,
30431,
3014,
27,
401,
3171,
941,
323,
4216,
313,
18867,
4957,
10,
187,
187,
423,
416,
56,
6802,
46812,
28,
187
] | -- Created on: 2000-05-10
-- Created by: Andrey BETENEV
-- Copyright (c) 2000-2014 OPEN CASCADE SAS
--
-- This file is part of Open CASCADE Technology software library.
--
-- This library is free software; you can redistribute it and/or modify it under
-- the terms of the GNU Lesser General Public License version 2.1 as published
-- by the Free Software Foundation, with special exception defined in the file
-- OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
-- distribution for complete text of the license and disclaimer of any warranty.
--
-- Alternatively, this file may be used under the terms of Open CASCADE
-- commercial license or contractual agreement.
-- Generator: ExpToCas (EXPRESS -> CASCADE/XSTEP Translator) V1.1
class RWRepItemGroup from RWStepAP214
---Purpose: Read & Write tool for RepItemGroup
uses
Check from Interface,
StepWriter from StepData,
StepReaderData from StepData,
EntityIterator from Interface,
RepItemGroup from StepAP214
is
Create returns RWRepItemGroup from RWStepAP214;
---Purpose: Empty constructor
ReadStep (me; data: StepReaderData from StepData; num: Integer;
ach : in out Check from Interface;
ent : RepItemGroup from StepAP214);
---Purpose: Reads RepItemGroup
WriteStep (me; SW: in out StepWriter from StepData;
ent: RepItemGroup from StepAP214);
---Purpose: Writes RepItemGroup
Share (me; ent : RepItemGroup from StepAP214;
iter: in out EntityIterator from Interface);
---Purpose: Fills data for graph (shared items)
end RWRepItemGroup;
|
214,408 | Github | [
3122,
187,
475,
8283,
313,
36,
10,
4022,
380,
10469,
7489,
12269,
8049,
187,
475,
187,
475,
21737,
762,
253,
14325,
4637,
13,
11099,
374,
15,
17,
313,
783,
346,
17736,
3287,
187,
475,
368,
778,
417,
897,
436,
1873,
3707,
275,
10276,
342,
253,
4637,
15,
187,
475,
1422,
778,
4044,
247,
3491,
273,
253,
4637,
387,
187,
475,
187,
475,
50272,
2413,
1358,
2700,
15,
8418,
15,
2061,
16,
17130,
16,
17821,
14,
19,
15,
17,
187,
475,
187,
475,
15999,
2424,
407,
7763,
1569,
390,
5821,
281,
275,
4028,
13,
3694,
187,
475,
5939,
762,
253,
4637,
310,
5939,
327,
271,
346,
1719,
4110,
3,
23440,
13,
187,
475,
15002,
15466,
4145,
22998,
3481,
9103,
19329,
13,
2057,
3890,
390,
10466,
15,
187,
475,
2594,
253,
4637,
323,
253,
2173,
3448,
13200,
15607,
285,
187,
475,
7364,
762,
253,
4637,
15,
187,
1738,
187,
187,
4,
3709,
654,
4658,
1541,
15,
73,
31,
187,
4,
3709,
654,
328,
382,
69,
15,
73,
31,
187,
4,
3709,
654,
10404,
16,
10706,
15,
73,
31,
187,
4,
3709,
654,
10404,
16,
8766,
15,
73,
31,
187,
4,
3709,
654,
12964,
2649,
77,
15,
73,
31,
187,
4,
3709,
654,
2068,
19,
3671,
16,
2068,
19,
3671,
15,
73,
31,
187,
4,
3709,
654,
292,
16,
681,
64,
1000,
15,
73,
31,
187,
4,
3709,
654,
1033,
10788,
16,
1033,
10788,
15,
73,
31,
187,
187,
2855,
551,
187,
186,
565,
186,
68,
3373,
28,
187,
186,
565,
186,
1033,
10788,
28,
187,
186,
565,
186,
72,
16368,
28,
187,
186,
3615,
186,
11,
249,
64,
3140,
28,
187,
186,
3615,
186,
11,
483,
64,
3140,
28,
187,
186,
10975,
186,
1189,
6343,
64,
5423,
28,
187,
94,
18912,
426,
551,
187,
186,
15,
68,
3373,
186,
50274,
30,
470,
13,
187,
186,
15,
1033,
10788,
186,
50274,
30,
337,
13,
187,
186,
15,
72,
16368,
186,
50274,
30,
470,
13,
187,
4718,
187,
187,
4,
3182,
1021,
19,
3671,
64,
48901,
9,
9795,
1208,
13,
31512,
13,
46921,
393,
187,
186,
3088,
551,
393,
996,
186,
681,
64,
1000,
1587,
3775,
995,
6724,
1208,
13,
31512,
13,
4772,
16568,
64,
44551,
876,
558,
393,
996,
186,
19874,
9,
4237,
1433,
64,
27002,
10860,
558,
393,
187,
186,
94,
1223,
9,
17,
10,
187,
187,
4,
3182,
23507,
64,
48901,
9,
10069,
10,
393,
187,
186,
3088,
551,
393,
996,
186,
71,
13108,
9,
35856,
13,
346,
1033,
10788,
27,
346,
10069,
558,
393,
996,
186,
19874,
9,
4237,
1433,
64,
27002,
10860,
558,
393,
187,
186,
94,
1223,
9,
17,
10,
187,
187,
4659,
2991,
10393,
9,
3615,
475,
3967,
10,
187,
92,
187,
186,
3615,
475,
48052,
1590,
426,
1666,
5116,
9,
3967,
558,
535,
186,
71,
13108,
9,
35856,
13,
17280,
84,
544,
4610,
5032,
654,
5695,
390,
2972,
2813,
31,
654,
9252,
2460,
13544,
79,
3,
988,
186,
3,
50276,
14,
68,
2486,
22023,
2972,
61,
79,
3,
988,
186,
3,
50276,
14,
91,
305,
16368,
3453,
61,
79,
3,
988,
186,
3,
50276,
14,
52,
1053,
626,
897,
23507,
3453,
5981,
61,
79,
995,
23995,
1590,
558,
187,
94,
187,
187,
4659,
1577,
15264,
64,
4835,
551,
187,
186,
2855,
15264,
64,
4835,
186,
50274,
11,
8384,
28,
187,
186,
4353,
623,
50274,
11,
8340,
60,
17,
2194,
187,
94,
475,
8340,
64,
3550,
28,
187,
187,
4659,
2991,
823,
64,
33461,
9,
2068,
19,
64,
71,
3683,
656,
25290,
13,
1577,
23507,
64,
3140,
475,
84,
13,
787,
76,
64,
85,
20540,
64,
5478,
13,
787,
76,
64,
85,
20540,
64,
423,
10,
187,
92,
187,
186,
565,
851,
1208,
28,
187,
186,
10790,
540,
295,
67,
64,
35167,
426,
20540,
64,
423,
428,
20540,
64,
5478,
28,
187,
186,
3281,
64,
85,
8472,
426,
295,
67,
64,
35167,
475,
25290,
1168,
27027,
907,
28,
187,
186,
565,
1540,
64,
85,
8409,
426,
313,
565,
1540,
64,
85,
10,
33461,
64,
5478,
475,
313,
565,
1540,
64,
85,
10,
3671,
1168,
27027,
907,
28,
535,
186,
338,
313,
12928,
15,
1189,
6343,
64,
5423,
2295,
3221,
10,
551,
996,
186,
338,
313,
1033,
10788,
64,
3140,
64,
1911,
64,
3140,
9,
84,
13,
18912,
15,
249,
64,
3140,
13,
8409,
13,
8472,
13,
20540,
64,
5478,
10,
654,
470,
10,
988,
186,
1033,
10788,
64,
48901,
1587,
8052,
941,
281,
253,
23507,
1873,
3287,
187,
186,
94,
2010,
551,
996,
186,
3122,
988,
475,
380,
3280,
1873,
588,
320,
689,
15720,
13,
1056,
247,
3491,
273,
988,
475,
253,
8336,
988,
1738,
996,
186,
2855,
15264,
64,
4835,
475,
4193,
426,
1067,
406,
9,
18,
13,
13322,
9,
2855,
15264,
64,
4835,
10,
559,
8472,
558,
996,
186,
338,
313,
8340,
64,
3550,
2295,
5812,
10,
988,
186,
8340,
64,
3550,
426,
1794,
28,
996,
186,
7271,
551,
988,
186,
4193,
1168,
8384,
426,
15264,
64,
3550,
28,
988,
186,
8340,
64,
3550,
426,
1794,
28,
996,
186,
94,
6886,
186,
37940,
426,
17908,
64,
13695,
64,
1088,
64,
35167,
1540,
9,
3671,
1168,
900,
13,
20540,
64,
5478,
13,
295,
67,
64,
35167,
13,
1794,
1168,
8340,
558,
996,
186,
338,
313,
37940,
654,
470,
10,
988,
186,
2068,
19,
3671,
64,
48901,
9,
37940,
13,
346,
24042,
2972,
2462,
86,
428,
2462,
86,
995,
20540,
64,
5478,
13,
20540,
64,
423,
558,
6886,
186,
338,
313,
1033,
10788,
64,
3140,
64,
1911,
64,
2203,
9,
84,
13,
1794,
1168,
8340,
13,
8472,
13,
20540,
64,
5478,
10,
654,
470,
10,
988,
186,
1033,
10788,
64,
48901,
1587,
8052,
941,
281,
253,
23507,
1873,
3287,
187,
186,
94,
187,
94,
187,
187,
4659,
2991,
1959,
64,
348,
18357,
9,
4353,
10,
187,
92,
187,
186,
2855,
15264,
64,
4835,
475,
4193,
28,
535,
186,
6050,
313,
8340,
64,
3550,
10,
551,
996,
186,
4193,
426,
15264,
64,
3550,
1168,
8384,
28,
996,
186,
4924,
9,
8340,
64,
3550,
558,
996,
186,
8340,
64,
3550,
426,
1794,
28,
187,
186,
94,
187,
94,
187,
187,
4659,
1577,
23507,
64,
3140,
475,
2068,
64,
936,
64,
1033,
10788,
9,
3474,
1018,
475,
249,
64,
3140,
10,
187,
92,
187,
186,
1000,
3211,
64,
85,
851,
1208,
28,
187,
186,
2068,
19,
64,
71,
3683,
656,
25290,
28,
187,
186,
2855,
23507,
64,
3140,
475,
84,
28,
187,
186,
565,
1540,
64,
85,
20540,
64,
5478,
426,
428,
18,
28,
187,
186,
35167,
64,
85,
806,
64,
35167,
13,
1390,
64,
35167,
13,
295,
67,
64,
35167,
13,
1095,
64,
35167,
28,
535,
186,
37940,
426,
1021,
19,
3671,
64,
5758,
9,
249,
64,
3140,
13,
470,
13,
470,
13,
470,
13,
440,
895,
64,
900,
64,
20649,
13,
708,
3671,
558,
187,
186,
338,
313,
37940,
10,
996,
186,
2068,
19,
3671,
64,
48901,
9,
37940,
13,
346,
6050,
4361,
2462,
84,
995,
275,
64,
3140,
558,
535,
186,
37940,
426,
1021,
19,
3671,
64,
1088,
64,
6172,
64,
2713,
4251,
9,
3671,
558,
187,
186,
338,
313,
37940,
10,
996,
186,
2068,
19,
3671,
64,
48901,
9,
37940,
13,
346,
6050,
4361,
2972,
42615,
273,
2462,
84,
995,
275,
64,
3140,
558,
535,
186,
7053,
64,
35167,
426,
1021,
19,
3671,
64,
788,
64,
6172,
64,
2713,
4251,
64,
5478,
19,
9,
3671,
1168,
6172,
64,
4251,
558,
187,
186,
6275,
64,
35167,
426,
1021,
19,
3671,
64,
788,
64,
6172,
64,
2713,
4251,
64,
423,
19,
9,
3671,
1168,
6172,
64,
4251,
558,
187,
186,
5668,
64,
35167,
426,
1390,
64,
35167,
428,
806,
64,
35167,
559,
337,
28,
535,
186,
84,
426,
23507,
64,
3140,
64,
1826,
9,
3671,
1168,
27027,
907,
13,
313,
8531,
1540,
64,
85,
10,
3671,
1168,
27027,
907,
475,
313,
8531,
1540,
64,
85,
10,
5668,
64,
35167,
558,
187,
186,
338,
6522,
84,
10,
996,
186,
1033,
10788,
64,
48901,
1587,
20132,
272,
23507,
1873,
3287,
535,
186,
3122,
996,
475,
380,
23507,
5981,
31360,
253,
1979,
273,
247,
20540,
313,
395,
697,
10478,
10,
275,
247,
996,
475,
4567,
14,
2713,
10698,
7007,
313,
41092,
1237,
64,
11779,
10,
996,
475,
2091,
4028,
253,
20540,
13,
253,
6335,
4648,
247,
2014,
1067,
281,
3630,
5023,
996,
475,
13492,
434,
7092,
273,
253,
686,
6343,
8,
20862,
1057,
417,
1581,
21916,
996,
475,
4067,
685,
26191,
1237,
64,
11779,
313,
1237,
14,
2713,
795,
395,
64,
6705,
14,
2713,
2718,
481,
996,
475,
10338,
2119,
359,
513,
417,
2794,
30151,
4067,
685,
436,
2701,
15,
996,
1738,
187,
186,
565,
1540,
64,
85,
2781,
64,
35167,
64,
468,
64,
33461,
426,
313,
7999,
1237,
64,
11779,
428,
1249,
10,
1227,
25290,
1168,
27027,
907,
28,
535,
186,
3122,
29516,
327,
253,
8336,
281,
17310,
41248,
20540,
1738,
187,
186,
1542,
313,
1915,
64,
35167,
426,
806,
64,
35167,
28,
1095,
64,
35167,
11049,
1390,
64,
35167,
28,
12996,
1915,
64,
35167,
10,
551,
996,
186,
338,
313,
2068,
19,
3671,
64,
2566,
64,
6172,
64,
2713,
4251,
19,
9,
3671,
1168,
6172,
64,
4251,
13,
1095,
64,
35167,
1228,
551,
988,
186,
338,
313,
33461,
64,
5478,
2295,
428,
18,
10,
551,
2657,
186,
33461,
64,
5478,
426,
1095,
64,
35167,
28,
988,
186,
94,
2010,
604,
313,
1915,
64,
35167,
428,
20540,
64,
5478,
559,
337,
2295,
2781,
64,
35167,
64,
468,
64,
33461,
10,
551,
2657,
186,
1911,
64,
33461,
9,
3671,
13,
256,
13,
20540,
64,
5478,
13,
1095,
64,
35167,
558,
2657,
186,
33461,
64,
5478,
426,
428,
18,
28,
988,
186,
94,
996,
186,
94,
2010,
604,
313,
33461,
64,
5478,
3613,
428,
18,
10,
551,
988,
186,
1911,
64,
33461,
9,
3671,
13,
256,
13,
20540,
64,
5478,
13,
1095,
64,
35167,
558,
988,
186,
33461,
64,
5478,
426,
428,
18,
28,
996,
186,
94,
187,
186,
94,
187,
186,
338,
313,
33461,
64,
5478,
3613,
428,
18,
10,
996,
186,
1911,
64,
33461,
9,
3671,
13,
256,
13,
20540,
64,
5478,
13,
1095,
64,
35167,
428,
337,
558,
535,
186,
2068,
19,
3671,
64,
4924,
9,
3671,
558,
187,
186,
2309,
256,
28,
187,
94,
187,
187,
4659,
7301,
1072,
64,
3140,
9,
3474,
1018,
475,
249,
13,
1030,
1018,
475,
483,
10,
187,
92,
187,
186,
2855,
1098,
331,
18,
13,
331,
19,
28,
535,
186,
338,
313,
10773,
9,
483,
13,
401,
64,
10249,
10,
2295,
428,
18,
10,
996,
186,
2309,
3221,
28,
535,
186,
338,
313,
77,
8766,
9,
249,
13,
708,
296,
18,
10,
2295,
428,
18,
10,
996,
186,
2068,
19,
3671,
64,
48901,
9,
39386,
13,
346,
8766,
2462,
84,
61,
79,
995,
275,
558,
187,
186,
338,
313,
77,
8766,
9,
483,
13,
708,
296,
19,
10,
2295,
428,
18,
10,
996,
186,
2068,
19,
3671,
64,
48901,
9,
39386,
13,
346,
8766,
2462,
84,
61,
79,
995,
562,
558,
187,
186,
2309,
331,
18,
15,
296,
64,
2610,
2295,
331,
19,
15,
296,
64,
2610,
28,
187,
94,
187,
187,
565,
2022,
9,
565,
46090,
13,
1018,
475,
28928,
47093,
187,
92,
187,
186,
565,
1478,
28,
187,
186,
565,
562,
64,
9194,
28,
187,
186,
2855,
23507,
64,
3140,
475,
84,
28,
535,
186,
6050,
6048,
2178,
426,
755,
2178,
9,
1662,
68,
13,
39989,
13,
346,
14617,
52,
14708,
3613,
428,
18,
10,
551,
996,
186,
16065,
9,
2178,
10,
551,
996,
186,
5045,
686,
68,
5295,
988,
186,
12928,
15,
68,
3373,
426,
337,
28,
988,
186,
7054,
28,
996,
186,
5045,
686,
91,
5295,
988,
186,
12928,
15,
72,
16368,
426,
337,
28,
988,
186,
7054,
28,
996,
186,
5045,
686,
52,
5295,
988,
186,
12928,
15,
1033,
10788,
426,
470,
28,
988,
186,
7054,
28,
996,
186,
6986,
27,
988,
186,
24483,
9,
28928,
60,
17,
9259,
988,
186,
19874,
9,
4237,
1433,
64,
27002,
10860,
558,
996,
186,
94,
187,
186,
94,
187,
186,
338,
313,
2178,
527,
559,
337,
10122,
46090,
10,
551,
996,
186,
24483,
9,
28928,
60,
17,
9259,
996,
186,
19874,
9,
4237,
1433,
64,
27002,
10860,
558,
187,
186,
94,
187,
186,
12928,
15,
249,
64,
3140,
426,
1213,
34856,
9,
28928,
60,
2178,
527,
3424,
9259,
187,
186,
12928,
15,
483,
64,
3140,
426,
1213,
34856,
9,
28928,
60,
2178,
527,
9259,
187,
186,
12928,
15,
1189,
6343,
64,
5423,
426,
1072,
64,
3140,
9,
12928,
15,
249,
64,
3140,
13,
18912,
15,
483,
64,
3140,
558,
535,
186,
84,
426,
1021,
64,
936,
64,
1033,
10788,
9,
12928,
15,
249,
64,
3140,
558,
535,
186,
483,
64,
9194,
426,
1527,
9,
12928,
15,
483,
64,
3140,
13,
473,
64,
10690,
41889,
1040,
473,
64,
15718,
1194,
1040,
473,
64,
3125,
34893,
13,
17796,
1540,
558,
187,
186,
338,
313,
483,
64,
9194,
2295,
428,
18,
10,
996,
186,
2068,
19,
3671,
64,
48901,
9,
39386,
13,
346,
33729,
2462,
84,
61,
79,
995,
18912,
15,
483,
64,
3140,
558,
187,
186,
338,
313,
1033,
10788,
64,
3140,
64,
6343,
9,
84,
13,
562,
64,
9194,
13,
18912,
15,
72,
16368,
13,
18912,
15,
1033,
10788,
13,
18912,
15,
68,
3373,
10,
654,
470,
10,
996,
186,
1033,
10788,
64,
48901,
1587,
17695,
23507,
1873,
3287,
535,
186,
1033,
10788,
64,
3140,
64,
26316,
9,
84,
558,
535,
186,
4924,
9,
12928,
15,
249,
64,
3140,
558,
187,
186,
4924,
9,
12928,
15,
483,
64,
3140,
558,
187,
186,
4924,
64,
348,
18357,
1874,
187,
186,
10483,
9,
483,
64,
9194,
558,
535,
186,
2309,
470,
28,
187,
94,
187
] | /*
* Copyright (C) 2016 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <libgen.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <ext2fs/ext2fs.h>
#include <et/com_err.h>
#include <sparse/sparse.h>
struct {
int crc;
int sparse;
int gzip;
char *in_file;
char *out_file;
bool overwrite_input;
} params = {
.crc = 0,
.sparse = 1,
.gzip = 0,
};
#define ext2fs_fatal(Retval, Format, ...) \
do { \
com_err("error", Retval, Format, __VA_ARGS__); \
exit(EXIT_FAILURE); \
} while(0)
#define sparse_fatal(Format) \
do { \
fprintf(stderr, "sparse: "Format); \
exit(EXIT_FAILURE); \
} while(0)
static void usage(char *path)
{
char *progname = basename(path);
fprintf(stderr, "%s [ options ] <image or block device> <output image>\n"
" -c include CRC block\n"
" -z gzip output\n"
" -S don't use sparse output format\n", progname);
}
static struct buf_item {
struct buf_item *next;
void *buf[0];
} *buf_list;
static void add_chunk(ext2_filsys fs, struct sparse_file *s, blk_t chunk_start, blk_t chunk_end)
{
int retval;
unsigned int nb_blk = chunk_end - chunk_start;
size_t len = nb_blk * fs->blocksize;
int64_t offset = (int64_t)chunk_start * (int64_t)fs->blocksize;
if (params.overwrite_input == false) {
if (sparse_file_add_file(s, params.in_file, offset, len, chunk_start) < 0)
sparse_fatal("adding data to the sparse file");
} else {
/*
* The input file will be overwritten, make a copy of
* the blocks
*/
struct buf_item *bi = calloc(1, sizeof(struct buf_item) + len);
if (buf_list == NULL)
buf_list = bi;
else {
bi->next = buf_list;
buf_list = bi;
}
retval = io_channel_read_blk64(fs->io, chunk_start, nb_blk, bi->buf);
if (retval < 0)
ext2fs_fatal(retval, "reading block %u - %u", chunk_start, chunk_end);
if (sparse_file_add_data(s, bi->buf, len, chunk_start) < 0)
sparse_fatal("adding data to the sparse file");
}
}
static void free_chunks(void)
{
struct buf_item *bi;
while (buf_list) {
bi = buf_list->next;
free(buf_list);
buf_list = bi;
}
}
static struct sparse_file *ext_to_sparse(const char *in_file)
{
errcode_t retval;
ext2_filsys fs;
struct sparse_file *s;
int64_t chunk_start = -1;
blk_t first_blk, last_blk, nb_blk, cur_blk;
retval = ext2fs_open(in_file, 0, 0, 0, unix_io_manager, &fs);
if (retval)
ext2fs_fatal(retval, "while reading %s", in_file);
retval = ext2fs_read_block_bitmap(fs);
if (retval)
ext2fs_fatal(retval, "while reading block bitmap of %s", in_file);
first_blk = ext2fs_get_block_bitmap_start2(fs->block_map);
last_blk = ext2fs_get_block_bitmap_end2(fs->block_map);
nb_blk = last_blk - first_blk + 1;
s = sparse_file_new(fs->blocksize, (uint64_t)fs->blocksize * (uint64_t)nb_blk);
if (!s)
sparse_fatal("creating sparse file");
/*
* The sparse format encodes the size of a chunk (and its header) in a
* 32-bit unsigned integer (UINT32_MAX)
* When writing the chunk, the library uses a single call to write().
* Linux's implementation of the 'write' syscall does not allow transfers
* larger than INT32_MAX (32-bit _and_ 64-bit systems).
* Make sure we do not create chunks larger than this limit.
*/
int64_t max_blk_per_chunk = (INT32_MAX - 12) / fs->blocksize;
/* Iter on the blocks to merge contiguous chunk */
for (cur_blk = first_blk; cur_blk <= last_blk; ++cur_blk) {
if (ext2fs_test_block_bitmap2(fs->block_map, cur_blk)) {
if (chunk_start == -1) {
chunk_start = cur_blk;
} else if (cur_blk - chunk_start + 1 == max_blk_per_chunk) {
add_chunk(fs, s, chunk_start, cur_blk);
chunk_start = -1;
}
} else if (chunk_start != -1) {
add_chunk(fs, s, chunk_start, cur_blk);
chunk_start = -1;
}
}
if (chunk_start != -1)
add_chunk(fs, s, chunk_start, cur_blk - 1);
ext2fs_free(fs);
return s;
}
static bool same_file(const char *in, const char *out)
{
struct stat st1, st2;
if (access(out, F_OK) == -1)
return false;
if (lstat(in, &st1) == -1)
ext2fs_fatal(errno, "stat %s\n", in);
if (lstat(out, &st2) == -1)
ext2fs_fatal(errno, "stat %s\n", out);
return st1.st_ino == st2.st_ino;
}
int main(int argc, char *argv[])
{
int opt;
int out_fd;
struct sparse_file *s;
while ((opt = getopt(argc, argv, "czS")) != -1) {
switch(opt) {
case 'c':
params.crc = 1;
break;
case 'z':
params.gzip = 1;
break;
case 'S':
params.sparse = 0;
break;
default:
usage(argv[0]);
exit(EXIT_FAILURE);
}
}
if (optind + 1 >= argc) {
usage(argv[0]);
exit(EXIT_FAILURE);
}
params.in_file = strdup(argv[optind++]);
params.out_file = strdup(argv[optind]);
params.overwrite_input = same_file(params.in_file, params.out_file);
s = ext_to_sparse(params.in_file);
out_fd = open(params.out_file, O_WRONLY | O_CREAT | O_TRUNC, 0664);
if (out_fd == -1)
ext2fs_fatal(errno, "opening %s\n", params.out_file);
if (sparse_file_write(s, out_fd, params.gzip, params.sparse, params.crc) < 0)
sparse_fatal("writing sparse file");
sparse_file_destroy(s);
free(params.in_file);
free(params.out_file);
free_chunks();
close(out_fd);
return 0;
}
|
214,409 | Github | [
30952,
32735,
11685,
31,
187,
14219,
841,
943,
1056,
253,
3280,
1327,
14,
23963,
6781,
187,
29,
5423,
1511,
568,
1156,
3,
1318,
568,
4312,
19832,
3,
3740,
568,
14224,
14,
3429,
27,
470,
1138,
187,
29,
5423,
1511,
568,
1156,
3,
1318,
568,
4312,
19832,
3,
3740,
568,
14224,
14,
3429,
27,
337,
3498,
1138,
187,
29,
5423,
1511,
568,
1156,
3,
1318,
568,
4312,
19832,
3,
3740,
568,
14224,
14,
3429,
27,
374,
3498,
1138,
187,
29,
5423,
1511,
568,
1156,
3,
1318,
568,
4312,
19832,
3,
3740,
568,
14224,
14,
3429,
27,
495,
3498,
1138,
187,
29,
5423,
1511,
568,
1156,
3,
1318,
568,
4312,
19832,
3,
3740,
568,
14224,
14,
3429,
27,
577,
3498,
1138,
187,
29,
5423,
1511,
568,
1156,
3,
1318,
568,
4312,
19832,
3,
3740,
568,
14224,
14,
3429,
27,
608,
3498,
1138,
187,
29,
5423,
1511,
568,
1156,
3,
1318,
568,
4312,
19832,
3,
3740,
568,
14224,
14,
3429,
27,
721,
3498,
1138,
187,
29,
5423,
1511,
568,
1156,
3,
1318,
568,
4312,
19832,
3,
3740,
568,
14224,
14,
4826,
27,
24817,
1138,
187,
29,
5423,
1511,
568,
1156,
3,
1318,
568,
4312,
19832,
3,
3740,
568,
14224,
14,
4897,
27,
4759,
1138,
187,
29,
5423,
1511,
568,
1156,
3,
1318,
568,
4312,
19832,
3,
3740,
568,
11814,
14,
4897,
27,
13955,
1138,
187,
29,
5423,
1511,
568,
1156,
3,
1318,
568,
4312,
19832,
3,
3740,
568,
11814,
14,
4897,
27,
3168,
1138,
187,
29,
5423,
1511,
568,
1156,
3,
1318,
568,
4312,
19832,
3,
3740,
568,
14224,
14,
3956,
14,
1274,
14,
19731,
27,
470,
3498,
1138,
187,
29,
5423,
1511,
568,
1156,
3,
1318,
568,
4312,
19832,
3,
3740,
568,
14224,
14,
3956,
14,
918,
14,
19731,
27,
337,
3498,
1138,
187,
29,
5423,
1511,
568,
1156,
3,
1318,
568,
4312,
19832,
3,
3740,
568,
14224,
14,
10492,
14,
918,
14,
19731,
27,
374,
3498,
1138,
187,
29,
5423,
1511,
568,
1156,
3,
1318,
568,
4312,
19832,
3,
3740,
568,
14224,
14,
10492,
14,
1274,
14,
19731,
27,
495,
3498,
1138,
187,
29,
5423,
1511,
568,
1156,
3,
1318,
568,
4312,
19832,
3,
3740,
568,
14224,
14,
17243,
14,
5478,
14,
3429,
27,
495,
3498,
1138,
187,
29,
5423,
1511,
568,
1156,
3,
1318,
568,
4312,
19832,
3,
3740,
568,
14224,
14,
17243,
14,
423,
14,
3429,
27,
495,
3498,
1138,
187,
187,
14219,
841,
943,
1339,
352,
3297,
7925,
6781,
187,
29,
5423,
1511,
568,
1156,
3,
1318,
20679,
3740,
568,
4897,
27,
2806,
1138,
187,
29,
5423,
1511,
568,
1156,
3,
1318,
20679,
3740,
568,
4909,
14,
6712,
27,
2622,
1138,
187
] | <!DOCTYPE HTML>
<!-- these should make the input non-native -->
<input type="text" value="Text Input" style="border-width: 0">
<input type="text" value="Text Input" style="border-width: 1px">
<input type="text" value="Text Input" style="border-width: 2px">
<input type="text" value="Text Input" style="border-width: 3px">
<input type="text" value="Text Input" style="border-width: 4px">
<input type="text" value="Text Input" style="border-width: 5px">
<input type="text" value="Text Input" style="border-width: 6px">
<input type="text" value="Text Input" style="border-style: dotted">
<input type="text" value="Text Input" style="border-color: green">
<input type="text" value="Text Input" style="background-color: transparent">
<input type="text" value="Text Input" style="background-color: white">
<input type="text" value="Text Input" style="border-top-left-radius: 0px">
<input type="text" value="Text Input" style="border-top-right-radius: 1px">
<input type="text" value="Text Input" style="border-bottom-right-radius: 2px">
<input type="text" value="Text Input" style="border-bottom-left-radius: 3px">
<input type="text" value="Text Input" style="border-inline-start-width: 3px">
<input type="text" value="Text Input" style="border-inline-end-width: 3px">
<!-- these should let it stay native -->
<input type="text" value="" style="color: black">
<input type="text" value="" style="font-weight: normal">
|
214,410 | Github | [
4,
45180,
12425,
27,
40502,
14,
25,
45180,
187,
4,
187,
4,
8283,
313,
36,
10,
4050,
14,
6961,
380,
13814,
9107,
6807,
15,
187,
4,
2594,
21826,
15,
10134,
285,
38623,
15,
10134,
15,
187,
4,
187,
32488,
3246,
49,
38516,
7092,
46289,
187,
187,
4064,
4772,
32279,
876,
1395,
50058,
64,
22478,
932,
187,
187,
2948,
2613,
1540,
187,
2948,
2127,
6113,
187,
2948,
3634,
4658,
187,
2948,
13283,
4658,
187,
2948,
20893,
187,
2948,
7684,
187,
2948,
803,
895,
3967,
187,
2948,
11876,
187,
2948,
23367,
2948,
187,
187,
4064,
964,
1395,
3656,
4658,
5330,
13,
5300,
187,
4064,
964,
38659,
1395,
4605,
6527,
187,
4064,
964,
4149,
1395,
755,
64,
29619,
13,
914,
19391,
8893,
4756,
187,
4064,
964,
21552,
1395,
6365,
10433,
13,
33819,
2350,
9033,
64,
13690,
9536,
13,
31286,
3887,
64,
28723,
2350,
9033,
64,
13690,
9536,
187,
4064,
964,
8906,
1395,
313,
12083,
64,
15684,
420,
13,
37164,
64,
9134,
13,
14390,
64,
1590,
64,
395,
64,
4149,
13,
187,
50259,
1088,
64,
23756,
13,
3630,
64,
23756,
13,
45584,
15283,
13,
45584,
16978,
10,
535,
187,
876,
455,
876,
426,
14412,
35207,
1383,
686,
8932,
10548,
18859,
35207,
1383,
187,
50267,
8,
10548,
18859,
35207,
1383,
686,
38,
1266,
6074,
35207,
1383,
187,
50267,
8,
35207,
5455,
6038,
535,
187,
23173,
426,
20893,
15,
788,
26428,
18583,
1590,
32350,
187,
187,
4237,
28303,
6901,
64,
13690,
9536,
426,
686,
4789,
8155,
14,
23756,
15,
8456,
8,
187,
31264,
5543,
52,
64,
13690,
9536,
426,
686,
4789,
8155,
14,
44291,
15,
8456,
8,
187,
187,
49991,
64,
39502,
426,
12196,
42033,
947,
1383,
33819,
2350,
9033,
64,
13690,
9536,
13,
686,
34181,
8242,
1383,
686,
34407,
1703,
1383,
187,
50264,
8,
13045,
50186,
1383,
8021,
28303,
6901,
64,
13690,
9536,
13,
686,
5648,
1277,
1703,
3401,
187,
187,
49991,
16615,
64,
9465,
426,
29996,
8155,
14,
5374,
8,
535,
187,
2437,
795,
15554,
9,
6082,
2262,
187,
50274,
32488,
187,
50274,
34,
2969,
11556,
10603,
4454,
285,
964,
8155,
14,
5374,
11865,
281,
10670,
187,
50274,
32488,
187,
50274,
1545,
4772,
4478,
21920,
1286,
2262,
187,
50270,
32488,
187,
50270,
23527,
885,
271,
4227,
15,
1707,
310,
9403,
581,
323,
1016,
30313,
5455,
15,
187,
50270,
32488,
187,
50270,
1286,
15,
1590,
426,
12166,
187,
50270,
1286,
15,
3967,
426,
12166,
187,
50270,
1286,
15,
20419,
426,
16708,
535,
50274,
1545,
2590,
9,
1286,
2262,
187,
50270,
32488,
187,
50270,
25376,
253,
11556,
13,
4758,
352,
281,
697,
3302,
1375,
15,
187,
50270,
32488,
187,
50270,
1286,
15,
1590,
15,
8250,
1082,
187,
50270,
1286,
15,
3967,
15,
8250,
1082,
187,
50270,
1286,
15,
20419,
426,
16708,
535,
50274,
1545,
823,
9,
1286,
13,
940,
2262,
187,
50270,
32488,
187,
50270,
4717,
247,
3268,
281,
253,
11556,
15,
187,
50270,
27,
3575,
940,
27,
380,
3268,
281,
823,
15,
187,
50270,
32488,
187,
50270,
338,
940,
15,
3967,
417,
275,
1881,
15,
3967,
27,
187,
50266,
1286,
15,
3967,
60,
8155,
15,
3967,
62,
426,
940,
187,
50266,
1286,
15,
1590,
15,
1178,
6986,
9,
8155,
15,
2364,
13,
544,
2498,
9691,
9,
8155,
10,
535,
187,
2437,
30313,
5455,
9,
6082,
2262,
187,
50274,
32488,
187,
50274,
6802,
5957,
247,
873,
273,
10670,
8038,
327,
247,
1854,
313,
42623,
11876,
15,
3967,
481,
187,
50274,
32488,
187,
50274,
1545,
4772,
4478,
21920,
1286,
13,
1854,
30,
11336,
13,
2486,
64,
48915,
30,
5653,
2262,
187,
50270,
32488,
187,
50270,
9395,
271,
4227,
432,
247,
1854,
13,
33323,
1690,
17646,
313,
8155,
18833,
16,
187,
50270,
1178,
18642,
23699,
16,
8155,
3337,
10,
10670,
15,
187,
50270,
27,
3575,
1854,
27,
380,
1854,
281,
897,
13,
347,
247,
1618,
273,
33266,
15,
1310,
417,
7616,
13,
187,
50257,
10404,
15,
3967,
310,
908,
15,
187,
50270,
27,
3575,
2486,
64,
48915,
27,
1310,
11793,
13,
436,
4227,
588,
1007,
323,
285,
1091,
17646,
187,
50254,
50274,
8155,
8303,
347,
973,
347,
1110,
1754,
327,
11031,
49,
38516,
15,
187,
50270,
32488,
187,
50270,
338,
1854,
310,
8256,
27,
187,
50266,
3967,
426,
11876,
15,
3967,
187,
50270,
1286,
15,
3967,
426,
1854,
187,
50270,
1286,
3333,
3709,
64,
8155,
426,
11793,
187,
50270,
1286,
3333,
3709,
64,
48915,
426,
2486,
64,
48915,
535,
50270,
1286,
3333,
12985,
426,
795,
15554,
1082,
187,
50270,
1286,
3333,
12985,
64,
48915,
426,
795,
15554,
1082,
187,
50270,
1286,
3333,
12985,
64,
22331,
426,
11793,
187,
50270,
1286,
3333,
29619,
426,
755,
64,
29619,
2073,
6986,
3401,
535,
50274,
1545,
795,
788,
64,
12985,
64,
22331,
9,
1286,
2262,
187,
50270,
2309,
1881,
3333,
12985,
64,
22331,
535,
50274,
1545,
795,
1178,
64,
12985,
64,
22331,
9,
1286,
13,
1318,
2262,
187,
50270,
1286,
3333,
12985,
64,
22331,
426,
1318,
535,
50274,
12985,
64,
22331,
426,
2867,
10107,
788,
64,
12985,
64,
22331,
13,
795,
1178,
64,
12985,
64,
22331,
10,
535,
50274,
1545,
2590,
64,
12985,
9,
1286,
2262,
187,
50270,
32488,
187,
50270,
13378,
1032,
253,
4812,
11556,
15,
187,
50270,
32488,
187,
50270,
1286,
3333,
12985,
15,
8250,
1082,
187,
50270,
1286,
3333,
12985,
64,
48915,
15,
8250,
1082,
2756,
50274,
1545,
795,
41770,
64,
8155,
8303,
9,
1286,
2262,
187,
50270,
32488,
187,
50270,
58,
1001,
964,
8155,
14,
5374,
285,
16,
263,
964,
48915,
1490,
5374,
10,
10670,
15,
187,
50270,
32488,
187,
50270,
4,
844,
878,
281,
2451,
604,
359,
1849,
2326,
690,
5300,
2168,
13,
984,
327,
187,
50270,
4,
690,
13492,
2718,
313,
70,
15,
72,
15,
690,
41732,
16,
40614,
11640,
10,
627,
403,
187,
50270,
4,
726,
1686,
3106,
534,
28129,
643,
4367,
275,
253,
3126,
15,
187,
50270,
16564,
426,
873,
1082,
187,
50270,
1542,
1854,
275,
1881,
15,
3967,
27,
187,
50266,
31732,
426,
5300,
15,
31732,
64,
1542,
64,
3967,
9,
3967,
10,
187,
50266,
338,
47135,
310,
8256,
27,
187,
50262,
25674,
187,
50266,
83,
426,
47135,
15,
8606,
2073,
3401,
187,
50266,
338,
417,
391,
390,
417,
391,
15,
261,
64,
13299,
27,
187,
50262,
25674,
187,
50266,
83,
1178,
426,
20045,
9,
83,
15,
21830,
10,
187,
50266,
1542,
5857,
275,
391,
1178,
27,
187,
50262,
83,
426,
47135,
15,
8606,
9,
8873,
10,
187,
50262,
338,
417,
391,
390,
391,
15,
3967,
275,
2326,
27,
187,
50258,
25674,
187,
50262,
338,
1881,
3333,
3709,
64,
8155,
285,
5857,
15,
1727,
3113,
9,
49991,
16615,
64,
9465,
2262,
187,
50258,
24902,
64,
5073,
257,
1443,
426,
544,
28723,
2350,
9033,
64,
13690,
9536,
13,
31286,
3887,
64,
28723,
2350,
9033,
64,
13690,
9536,
62,
187,
50258,
1542,
21464,
64,
17479,
275,
1896,
64,
5073,
257,
1443,
27,
187,
50254,
21552,
64,
3967,
426,
803,
895,
3967,
15,
13956,
9,
8873,
13,
21464,
64,
17479,
10,
187,
50254,
4789,
8155,
426,
47135,
15,
8606,
9,
21552,
64,
3967,
10,
187,
50254,
338,
7239,
8155,
27,
187,
50254,
50274,
7054,
187,
50258,
7271,
27,
187,
50254,
25674,
535,
50258,
3113,
3634,
4658,
15,
49209,
9,
4789,
8155,
15,
284,
64,
4963,
6649,
347,
5542,
27,
187,
50254,
21552,
426,
6365,
10433,
9,
3140,
9344,
30,
4963,
13,
6974,
5473,
1851,
1974,
3401,
187,
50258,
23173,
15,
13125,
2073,
16641,
2462,
84,
1383,
391,
15,
3967,
10,
187,
50258,
16564,
15,
1911,
9,
83,
15,
3967,
10,
187,
50258,
41770,
747,
64,
8155,
64,
2437,
9,
83,
15,
3967,
13,
21464,
30,
21552,
13,
187,
50254,
50261,
12540,
30,
1286,
10,
187,
50262,
44779,
1881,
3333,
3709,
64,
48915,
285,
5857,
15,
1727,
3113,
9,
27174,
48915,
14,
5374,
1383,
187,
50254,
50254,
50268,
5983,
48915,
19279,
27,
187,
50258,
23173,
15,
13125,
2073,
16641,
2462,
84,
1383,
391,
15,
3967,
10,
187,
50258,
16564,
15,
1911,
9,
83,
15,
3967,
10,
187,
50258,
41770,
1711,
64,
8155,
64,
2437,
9,
83,
15,
3967,
13,
1881,
10,
535,
50274,
1545,
795,
16450,
64,
12985,
9,
1286,
2262,
187,
50270,
32488,
187,
50270,
31588,
253,
1854,
323,
10670,
285,
41614,
253,
11556,
342,
187,
50270,
21808,
326,
403,
1119,
15,
187,
50270,
32488,
187,
50270,
1541,
64,
8155,
426,
417,
1881,
3333,
12985,
15,
20419,
187,
50270,
1541,
64,
48915,
426,
1881,
3333,
3709,
64,
48915,
285,
417,
1881,
3333,
12985,
64,
48915,
15,
20419,
187,
50270,
338,
730,
64,
8155,
390,
730,
64,
48915,
27,
187,
50266,
1542,
940,
275,
1881,
3333,
41770,
64,
8155,
8303,
14850,
187,
50262,
338,
47337,
9,
8155,
13,
5376,
18859,
35207,
2262,
187,
50258,
1286,
3333,
12985,
15,
1911,
9,
8155,
10,
187,
50262,
7271,
27,
187,
50258,
1286,
3333,
12985,
64,
48915,
15,
1911,
9,
8155,
10,
535,
50266,
338,
730,
64,
8155,
27,
187,
50262,
1286,
3333,
12985,
15,
20419,
426,
11793,
187,
50266,
338,
730,
64,
48915,
27,
187,
50262,
1286,
3333,
12985,
64,
48915,
15,
20419,
426,
11793,
535,
50274,
33,
2437,
9349,
187,
50274,
1545,
940,
5374,
64,
45518,
9,
40087,
13,
1416,
13,
2715,
2262,
187,
50270,
32488,
187,
50270,
510,
475,
1590,
11,
285,
475,
4149,
11,
3602,
403,
11516,
715,
616,
187,
50270,
17479,
14,
41741,
264,
830,
13,
891,
15,
70,
15,
667,
20890,
17035,
8,
5190,
5810,
403,
7932,
187,
50270,
3113,
20890,
12721,
8,
5190,
643,
685,
253,
581,
275,
20890,
8,
8155,
14,
5374,
8,
5190,
285,
253,
581,
187,
50270,
16806,
839,
253,
1416,
432,
253,
2715,
1180,
15,
535,
50270,
27,
19484,
1416,
27,
310,
11516,
281,
247,
2629,
3268,
1416,
407,
15706,
187,
50254,
667,
6613,
273,
1327,
14,
355,
15671,
360,
6555,
5810,
342,
247,
2014,
187,
50254,
20890,
17035,
8,
5190,
15,
187,
50270,
27,
881,
1416,
27,
2876,
187,
50270,
27,
19484,
2715,
27,
310,
11516,
281,
247,
2629,
2715,
2876,
15,
2101,
1951,
187,
50254,
50274,
12781,
485,
20200,
13,
285,
512,
643,
1327,
14,
267,
15671,
360,
6555,
5810,
187,
50254,
50274,
9,
16829,
20200,
10,
2489,
9527,
1041,
13,
342,
6613,
273,
2709,
187,
50254,
50274,
69,
13539,
35341,
281,
247,
2014,
20134,
15,
187,
50270,
27,
881,
2715,
27,
2876,
187,
50270,
27,
20974,
27,
9617,
1416,
187,
50270,
27,
83,
881,
27,
2876,
32488,
187,
50270,
1590,
426,
1416,
15,
13481,
2073,
14,
1383,
38745,
3401,
187,
50270,
2309,
30225,
5983,
13956,
8850,
1590,
13,
2715,
3291,
559,
26605,
16615,
64,
9465,
535,
50274,
1545,
755,
64,
8155,
8303,
9,
1286,
2262,
187,
50270,
32488,
187,
50270,
11509,
1487,
271,
28823,
326,
4453,
323,
10670,
285,
6548,
187,
50270,
27,
2437,
30337,
10548,
18859,
35207,
65,
390,
187,
50270,
27,
2437,
30337,
38,
1266,
6074,
35207,
65,
10872,
323,
1016,
581,
273,
731,
15,
535,
50270,
27,
83,
881,
27,
28823,
273,
1163,
2437,
30337,
10548,
18859,
35207,
65,
285,
187,
50262,
27,
2437,
30337,
38,
1266,
6074,
35207,
65,
10872,
187,
50270,
32488,
187,
50270,
338,
417,
1881,
3333,
12985,
64,
22331,
27,
187,
50266,
1542,
940,
275,
1881,
3333,
41770,
64,
8155,
8303,
14850,
187,
50262,
41770,
940,
187,
50270,
7271,
27,
187,
50266,
1286,
3333,
16450,
64,
12985,
1082,
535,
50266,
1542,
940,
275,
1881,
3333,
12985,
15,
3967,
15,
8858,
14850,
187,
50262,
41770,
940,
535,
50266,
338,
1881,
3333,
3709,
64,
48915,
27,
187,
50262,
1542,
940,
275,
1881,
3333,
12985,
64,
48915,
15,
3967,
15,
8858,
14850,
187,
50258,
41770,
940,
535,
50274,
1545,
755,
64,
35360,
9,
1286,
13,
1416,
2262,
187,
50270,
32488,
187,
50270,
35082,
323,
247,
4907,
3268,
327,
253,
1854,
15,
535,
50270,
1552,
1159,
760,
6548,
253,
806,
906,
1119,
13,
347,
642,
625,
685,
581,
187,
50270,
2877,
310,
3264,
15,
1310,
2717,
310,
1119,
13,
20890,
11336,
5190,
310,
4895,
15,
535,
50270,
27,
83,
881,
27,
1163,
2437,
30337,
10548,
18859,
35207,
11976,
1163,
2437,
30337,
38,
1266,
6074,
35207,
65,
187,
50262,
263,
20890,
11336,
5190,
187,
50270,
32488,
187,
50270,
6870,
426,
8256,
187,
50270,
1590,
426,
1416,
15,
12973,
1082,
187,
50270,
338,
417,
1881,
3333,
12985,
64,
22331,
27,
187,
50266,
1542,
940,
275,
1881,
3333,
41770,
64,
8155,
8303,
14850,
187,
50262,
338,
940,
15,
2364,
2295,
1416,
27,
187,
50258,
6870,
426,
940,
187,
50258,
7054,
187,
50270,
7271,
27,
187,
50266,
1286,
3333,
16450,
64,
12985,
1082,
535,
50266,
338,
1416,
275,
1881,
3333,
12985,
15,
1590,
27,
187,
50262,
6870,
426,
1881,
3333,
12985,
15,
1590,
60,
1590,
7082,
17,
62,
187,
50266,
44779,
1881,
3333,
3709,
64,
48915,
285,
1416,
275,
1881,
3333,
12985,
64,
48915,
15,
1590,
27,
187,
50262,
6870,
426,
1881,
3333,
12985,
64,
48915,
15,
1590,
60,
1590,
7082,
17,
62,
187,
50270,
2309,
906,
535,
50274,
1545,
3400,
64,
35360,
9,
1286,
13,
1416,
13,
2715,
30,
11336,
2262,
187,
50270,
32488,
187,
50270,
15628,
684,
689,
512,
10670,
281,
1089,
534,
10670,
2085,
475,
1590,
4556,
187,
50270,
2042,
247,
475,
4149,
11,
310,
2530,
13,
352,
588,
320,
908,
281,
5806,
253,
1543,
15,
535,
50270,
1552,
1159,
760,
6548,
253,
806,
906,
1119,
13,
1580,
642,
625,
685,
187,
50270,
531,
2193,
403,
3264,
15,
1310,
253,
9617,
310,
417,
1119,
13,
6548,
20890,
11336,
5190,
15,
535,
50270,
27,
19484,
2715,
27,
247,
2715,
946,
5425,
326,
6492,
253,
2715,
187,
50254,
50274,
17354,
13,
10138,
272,
281,
253,
5981,
275,
20890,
3246,
49,
14,
16767,
5190,
535,
50270,
27,
881,
1416,
27,
2876,
187,
50270,
27,
881,
2715,
27,
2876,
187,
50270,
32488,
187,
50270,
2056,
5316,
426,
8256,
187,
50270,
338,
417,
2715,
310,
8256,
27,
187,
50266,
14626,
27,
187,
50262,
2056,
5316,
426,
1881,
3333,
29619,
15,
2056,
5316,
2073,
6,
84,
26607,
84,
18619,
2462,
313,
1590,
13,
2715,
1228,
187,
50266,
16829,
11740,
4756,
27,
187,
50262,
22525,
3656,
4658,
5330,
2073,
25359,
1416,
390,
2715,
27,
2462,
83,
13,
2462,
83,
8,
2462,
187,
50254,
50264,
9,
1590,
13,
2715,
1228,
535,
50270,
1542,
940,
275,
1881,
15,
788,
64,
8155,
8303,
14850,
187,
50266,
33850,
426,
940,
15,
11404,
1487,
535,
50266,
1542,
268,
275,
2530,
27,
187,
50262,
81,
64,
1590,
13,
268,
64,
332,
426,
14390,
64,
1590,
64,
395,
64,
4149,
9,
81,
10,
187,
50262,
338,
1111,
5316,
310,
8256,
27,
187,
50258,
338,
268,
64,
1590,
2295,
1416,
27,
187,
50254,
41770,
940,
187,
50254,
7054,
187,
50262,
7271,
27,
187,
50258,
338,
268,
64,
1590,
2295,
1416,
285,
1111,
5316,
15,
8992,
9,
81,
64,
332,
2262,
187,
50254,
41770,
940,
187,
50254,
7054,
535,
50274,
1545,
755,
64,
3140,
64,
3967,
9,
1286,
13,
1416,
13,
4103,
64,
3967,
2262,
187,
50270,
32488,
187,
50270,
15968,
253,
1854,
281,
247,
7741,
1873,
15,
187,
50270,
32488,
187,
50270,
8155,
426,
1881,
15,
788,
64,
35360,
9,
1590,
10,
187,
50270,
338,
940,
310,
8256,
27,
187,
50266,
22525,
9870,
484,
4756,
2073,
2369,
3268,
4907,
2462,
83,
1119,
8,
2462,
1416,
10,
187,
50270,
2309,
940,
15,
788,
64,
15024,
64,
3967,
9,
27038,
64,
3967,
10,
535,
50274,
1545,
755,
64,
911,
10750,
64,
35858,
9,
1286,
13,
7140,
13,
1416,
30,
11336,
2262,
187,
50270,
32488,
187,
50270,
15968,
512,
273,
253,
34652,
12028,
275,
247,
1798,
7140,
15,
535,
50270,
27,
3575,
7140,
27,
380,
7140,
281,
3186,
323,
12028,
15,
187,
50270,
27,
3575,
1416,
27,
1310,
7616,
13,
760,
12028,
342,
326,
1416,
403,
4895,
15,
187,
50270,
32488,
187,
50270,
1542,
940,
275,
1881,
15,
788,
64,
8155,
8303,
14850,
187,
50266,
83,
426,
940,
15,
23756,
187,
50266,
338,
7140,
275,
391,
27,
187,
50262,
69,
426,
391,
60,
14267,
62,
187,
50262,
338,
1416,
310,
417,
8256,
27,
187,
50258,
338,
1416,
275,
277,
27,
187,
50254,
41770,
277,
60,
1590,
62,
187,
50262,
7271,
27,
187,
50258,
1542,
362,
275,
277,
15,
8858,
14850,
187,
50254,
41770,
362,
535,
187,
2437,
30313,
9,
6082,
2262,
187,
50274,
32488,
187,
50274,
34,
2613,
966,
323,
10670,
13,
1880,
8038,
390,
432,
28308,
15,
187,
50274,
41311,
1039,
13,
352,
1364,
452,
690,
21464,
13,
594,
326,
434,
512,
326,
434,
3058,
187,
50274,
1542,
5140,
15,
187,
50274,
32488,
535,
50274,
7973,
64,
2606,
64,
25573,
426,
16708,
187,
50274,
32488,
187,
50274,
4531,
281,
11793,
604,
352,
434,
1929,
281,
320,
760,
247,
1973,
14,
2606,
18925,
313,
74,
15,
70,
15,
187,
50274,
1439,
3058,
846,
12692,
481,
187,
50274,
32488,
535,
50274,
1844,
7250,
426,
16708,
187,
50274,
32488,
34,
12419,
326,
6492,
1880,
253,
20890,
34407,
1703,
5190,
21464,
1873,
310,
187,
50274,
15068,
313,
249,
643,
3000,
13,
1880,
253,
5522,
369,
8038,
407,
2608,
187,
50274,
9629,
390,
352,
369,
8038,
347,
247,
18925,
33540,
9739,
535,
50274,
1545,
4772,
4478,
21920,
1286,
13,
21464,
2262,
187,
50270,
32488,
187,
50270,
23527,
885,
271,
4227,
15,
187,
50270,
27,
3575,
21464,
27,
380,
4227,
273,
1163,
2437,
30337,
25467,
65,
12930,
436,
187,
50270,
35360,
15,
187,
50270,
32488,
187,
50270,
1286,
15,
21552,
426,
21464,
187,
50270,
1286,
15,
1590,
426,
21464,
15,
1590,
187,
50270,
1286,
15,
2364,
426,
1881,
15,
1590,
15,
12973,
1082,
50274,
4,
323,
1083,
14,
968,
18917,
14023,
187,
50270,
1286,
15,
4149,
426,
21464,
15,
4149,
187,
50270,
1286,
15,
9450,
1080,
426,
8256,
187,
50270,
1286,
15,
49534,
426,
8256,
187,
50270,
1286,
15,
2068,
6230,
426,
8256,
50272,
4,
3081,
3386,
9521,
187,
50270,
1286,
15,
8882,
426,
8256,
50273,
4,
3126,
10705,
17797,
1487,
187,
50270,
1286,
15,
21596,
64,
321,
5200,
426,
873,
1082,
187,
50270,
1286,
15,
11174,
6655,
426,
12166,
535,
50274,
33,
9134,
187,
50274,
1545,
2603,
64,
6434,
9,
1286,
2262,
187,
50270,
32488,
187,
50270,
510,
2603,
21429,
6184,
10611,
323,
436,
3268,
15,
187,
50270,
32488,
187,
50270,
2309,
1881,
15,
21552,
15,
6756,
64,
6434,
535,
50274,
21596,
64,
6434,
426,
2603,
64,
6434,
50275,
4,
8247,
1034,
22862,
535,
50274,
33,
9134,
187,
50274,
1545,
1416,
64,
395,
64,
4149,
9,
1286,
2262,
187,
50270,
32488,
187,
50270,
34,
11839,
2867,
534,
12646,
253,
1416,
285,
2715,
275,
41616,
15,
187,
50270,
32488,
187,
50270,
2309,
25137,
84,
26607,
84,
18619,
2462,
313,
1286,
15,
1590,
13,
1881,
15,
4149,
10,
535,
50274,
33,
9134,
187,
50274,
1545,
3400,
9,
1286,
2262,
187,
50270,
32488,
187,
50270,
34,
873,
273,
3268,
4454,
285,
9508,
2530,
407,
436,
3268,
15,
187,
50270,
27,
2309,
27,
329,
873,
273,
346,
1590,
313,
4149,
6844,
11559,
15,
187,
50270,
32488,
187,
50270,
45890,
426,
1881,
15,
21552,
15,
11404,
1487,
187,
50270,
84,
426,
25137,
84,
26607,
84,
18619,
2462,
313,
1286,
15,
1590,
13,
1881,
15,
4149,
10,
187,
50270,
338,
256,
417,
275,
499,
382,
27,
187,
50266,
45890,
15,
9691,
9,
84,
10,
187,
50270,
2309,
499,
382,
535,
50274,
1545,
795,
788,
64,
15684,
942,
9,
1286,
13,
23169,
64,
9573,
2262,
187,
50270,
6535,
426,
1881,
15,
21552,
187,
50270,
23173,
15,
13125,
2073,
27347,
6095,
432,
21464,
2462,
83,
1383,
31934,
15,
85,
351,
882,
6649,
187,
50270,
12250,
1641,
426,
755,
9573,
9,
6535,
13,
23169,
64,
9573,
10,
187,
50270,
2309,
873,
9,
6535,
15,
788,
64,
15684,
942,
9,
12250,
1641,
13,
42359,
30,
1286,
15,
2068,
6230,
13,
187,
50254,
50263,
12540,
30,
1286,
15,
8882,
1228,
535,
50274,
33,
9134,
187,
50274,
1545,
1408,
64,
36042,
9,
1286,
2262,
187,
50270,
2309,
1881,
3333,
788,
64,
15684,
942,
2073,
6321,
64,
36042,
3401,
535,
50274,
33,
9134,
187,
50274,
1545,
11419,
64,
36042,
9,
1286,
2262,
187,
50270,
2309,
1881,
3333,
788,
64,
15684,
942,
2073,
13518,
64,
36042,
3401,
535,
50274,
33,
9134,
187,
50274,
1545,
1973,
64,
36042,
9,
1286,
2262,
187,
50270,
2309,
1881,
3333,
788,
64,
15684,
942,
2073,
7973,
64,
36042,
3401,
535,
50274,
33,
9134,
187,
50274,
1545,
1071,
64,
36042,
9,
1286,
2262,
187,
50270,
2309,
1881,
3333,
788,
64,
15684,
942,
2073,
2566,
64,
36042,
3401,
535,
50274,
33,
9134,
187,
50274,
1545,
1474,
64,
36042,
9,
1286,
2262,
187,
50270,
2309,
1881,
3333,
788,
64,
15684,
942,
2073,
3620,
64,
36042,
3401,
535,
50274,
1545,
10129,
64,
15684,
420,
9,
1286,
13,
23169,
2262,
187,
50270,
32488,
187,
50270,
27128,
604,
436,
4227,
10129,
313,
1020,
44849,
10,
247,
8284,
15,
187,
50270,
27,
3575,
23169,
27,
380,
8284,
281,
3761,
15,
187,
50270,
27,
83,
881,
23169,
27,
1213,
187,
50270,
27,
2309,
27,
11793,
604,
352,
10129,
13,
2010,
16708,
15,
187,
50270,
32488,
187,
50270,
4,
37880,
420,
778,
3831,
42359,
428,
14390,
281,
7168,
1110,
187,
50270,
4,
432,
752,
434,
4817,
281,
253,
1111,
5316,
187,
50270,
83,
426,
14390,
64,
15684,
420,
9,
12250,
10,
187,
50270,
29619,
426,
755,
64,
29619,
9,
1286,
15,
21552,
15,
29619,
10,
187,
50270,
14626,
27,
187,
50266,
2056,
5316,
426,
6974,
15,
2056,
5316,
9,
83,
15,
15684,
420,
10,
187,
50270,
16829,
914,
19391,
8893,
4756,
27,
187,
50266,
4,
29373,
9800,
14,
9561,
604,
2550,
1239,
253,
2715,
187,
50266,
23173,
15,
28207,
2073,
16534,
417,
1239,
2715,
2462,
83,
428,
970,
1416,
760,
1383,
187,
50254,
50275,
12250,
10,
187,
50266,
1590,
426,
23169,
15,
9148,
43144,
17,
62,
187,
50266,
2056,
5316,
426,
6974,
15,
2056,
5316,
9,
1590,
10,
535,
50270,
1590,
426,
1111,
5316,
15,
2364,
50275,
4,
1083,
14,
968,
18917,
535,
50270,
6870,
426,
16708,
187,
50270,
1542,
268,
275,
1881,
15,
11404,
1487,
27,
187,
50266,
81,
64,
1590,
13,
268,
64,
332,
426,
14390,
64,
1590,
64,
395,
64,
4149,
9,
81,
10,
187,
50266,
338,
268,
64,
1590,
3613,
1416,
27,
187,
50262,
25674,
187,
50266,
14626,
27,
187,
50262,
6870,
426,
1111,
5316,
15,
8992,
9,
81,
64,
332,
10,
187,
50262,
7054,
187,
50266,
16829,
914,
19391,
8893,
4756,
27,
187,
50262,
5858,
187,
50270,
2309,
906,
535,
50274,
1545,
4772,
250,
1087,
21920,
1286,
2262,
187,
50270,
32488,
187,
50270,
15968,
247,
45860,
6779,
273,
436,
4227,
13,
187,
50270,
32488,
187,
50270,
338,
1881,
15,
6756,
64,
6434,
27,
187,
50266,
49959,
426,
686,
544,
6,
84,
31258,
2462,
1881,
15,
6756,
64,
6434,
187,
50270,
7271,
27,
187,
50266,
49959,
426,
15078,
187,
50270,
2309,
21083,
35207,
2462,
84,
26607,
84,
10,
6,
84,
28120,
2462,
313,
1286,
15,
1590,
13,
1881,
15,
4149,
13,
34078,
10,
535,
50274,
1545,
4772,
2574,
21920,
1286,
13,
643,
2262,
187,
50270,
32488,
187,
50270,
5035,
604,
436,
3268,
310,
253,
1072,
347,
1529,
15,
187,
50270,
27,
3575,
643,
27,
380,
3268,
281,
7277,
342,
15,
1916,
320,
4503,
281,
581,
187,
50256,
23955,
15,
10670,
1364,
452,
253,
1072,
1511,
13,
1416,
13,
187,
50256,
4149,
285,
2603,
64,
6434,
15,
187,
50270,
27,
2309,
27,
11793,
604,
352,
310,
253,
1072,
13,
2010,
16708,
15,
187,
50270,
32488,
187,
50270,
338,
1511,
9,
977,
10,
310,
417,
1511,
9,
1286,
2262,
187,
50266,
6870,
426,
16708,
187,
50270,
7271,
27,
187,
50266,
6870,
426,
313,
1286,
15,
1590,
2295,
643,
15,
1590,
285,
187,
50256,
1286,
15,
4149,
2295,
643,
15,
4149,
285,
187,
50256,
1286,
15,
6756,
64,
6434,
2295,
643,
15,
6756,
64,
6434,
10,
187,
50270,
2309,
906,
535,
50274,
1545,
4772,
13362,
21920,
1286,
2262,
187,
50270,
32488,
187,
50270,
24408,
70,
13283,
275,
247,
1039,
534,
10129,
253,
13919,
1071,
15,
187,
50270,
32488,
187,
50270,
2309,
13283,
9,
1286,
15,
1590,
10,
559,
13283,
9,
1286,
15,
4149,
10,
559,
13283,
9,
1286,
15,
6756,
64,
6434,
10,
535,
187,
2437,
11760,
10548,
18859,
35207,
9,
35207,
2262,
187,
50274,
32488,
187,
50274,
1552,
310,
253,
2613,
966,
323,
8038,
10670,
313,
20094,
11031,
49,
38516,
390,
187,
50274,
1851,
1974,
481,
187,
50274,
32488,
535,
50274,
7110,
379,
426,
8256,
535,
50274,
1545,
4772,
4478,
21920,
1286,
13,
21464,
13,
1854,
13,
17400,
30,
11336,
2262,
187,
50270,
32488,
187,
50270,
23527,
885,
271,
4227,
15,
187,
50270,
27,
3575,
21464,
27,
743,
4227,
273,
1163,
2437,
30337,
25467,
65,
534,
8631,
253,
187,
50254,
3268,
15,
831,
588,
9403,
452,
644,
3302,
1701,
187,
50254,
432,
247,
21464,
1873,
275,
253,
20890,
3967,
5190,
15,
187,
50270,
27,
3575,
1854,
27,
50273,
510,
1854,
273,
253,
2634,
16433,
8155,
14,
5374,
5190,
390,
2634,
16433,
48915,
14,
5374,
5190,
187,
50254,
9617,
323,
253,
3268,
15,
187,
50270,
27,
3575,
17400,
27,
50272,
1552,
310,
9403,
253,
1163,
2437,
30337,
35207,
5455,
65,
187,
50254,
4227,
835,
436,
3268,
369,
1119,
15,
187,
50270,
32488,
187,
50270,
12185,
9,
8932,
10548,
18859,
35207,
13,
1881,
481,
876,
4478,
21920,
21552,
10,
187,
50270,
1286,
15,
3967,
426,
1854,
187,
50270,
1286,
15,
8155,
64,
3967,
426,
17400,
535,
50274,
1545,
755,
64,
13362,
9,
1286,
13,
941,
13,
556,
379,
30,
11336,
2262,
187,
50270,
32488,
187,
50270,
3633,
253,
13283,
273,
690,
941,
13,
970,
247,
1798,
13283,
5933,
13,
604,
187,
50270,
30878,
15,
535,
50270,
27,
3575,
941,
27,
380,
941,
281,
320,
556,
742,
15,
187,
50270,
27,
881,
941,
27,
11061,
187,
50270,
27,
3575,
556,
379,
27,
380,
1416,
273,
247,
13283,
7092,
13,
4516,
407,
13283,
4658,
13,
187,
50255,
263,
20890,
11336,
5190,
15,
20599,
273,
3588,
2193,
403,
20890,
8,
20409,
18,
8,
5190,
13,
187,
50255,
5190,
8,
20409,
17537,
8,
5190,
13,
20890,
8,
20409,
19948,
8,
5190,
13,
686,
5190,
20409,
9726,
8,
5190,
13,
20890,
8,
6535,
22,
8,
5190,
285,
187,
50255,
5190,
8,
20409,
19233,
8,
5190,
15,
1310,
642,
556,
379,
310,
7616,
13,
253,
20890,
7110,
379,
5190,
187,
50255,
15810,
273,
253,
1163,
2437,
30337,
10548,
18859,
35207,
65,
4227,
187,
50255,
261,
908,
15,
1310,
253,
556,
379,
310,
3413,
281,
320,
20890,
11336,
5190,
13,
10399,
22,
187,
50255,
261,
908,
347,
253,
556,
2027,
5933,
15,
187,
50270,
27,
20974,
27,
380,
13283,
273,
253,
941,
15,
1310,
247,
556,
379,
369,
11120,
7616,
13,
187,
50260,
783,
4895,
13283,
588,
320,
638,
20188,
342,
253,
7616,
556,
379,
187,
50260,
25739,
264,
407,
686,
5473,
15,
187,
50270,
27,
83,
881,
27,
1213,
187,
50270,
32488,
187,
50270,
338,
556,
379,
310,
8256,
27,
187,
50266,
7110,
379,
426,
1881,
15,
7110,
379,
187,
50270,
338,
556,
379,
310,
8256,
27,
187,
50266,
7110,
379,
426,
13283,
4658,
15,
6535,
22,
187,
50266,
15445,
426,
15078,
187,
50270,
7271,
27,
187,
50266,
7110,
379,
426,
755,
9573,
9,
13362,
4658,
13,
556,
379,
10,
187,
50266,
15445,
426,
25137,
84,
5473,
2462,
1881,
15,
7110,
379,
187,
50270,
49534,
426,
556,
379,
9,
2203,
481,
49534,
1082,
187,
50270,
49534,
426,
2613,
1540,
15,
321,
5200,
8407,
64,
67,
1540,
25950,
9,
49534,
481,
83,
25763,
9,
67,
8,
5473,
481,
29377,
2073,
29860,
3401,
187,
50270,
2309,
25137,
84,
6,
84,
8,
2462,
313,
15445,
13,
19818,
10,
535,
187,
2437,
5376,
18859,
35207,
9,
8932,
10548,
18859,
35207,
2262,
187,
50274,
32488,
187,
50274,
32331,
342,
253,
475,
3967,
11,
273,
253,
2634,
16433,
8155,
14,
5374,
5190,
9617,
2530,
281,
253,
187,
50274,
36073,
15,
733,
9563,
253,
21464,
6221,
275,
20890,
4789,
8155,
15,
8456,
5190,
672,
352,
310,
187,
50274,
43760,
4215,
904,
390,
4648,
247,
4817,
275,
6365,
10433,
4227,
313,
316,
4085,
323,
672,
187,
50274,
36765,
14,
6321,
4438,
310,
1146,
908,
481,
187,
50274,
32488,
535,
50274,
7110,
379,
426,
686,
20409,
9726,
8,
535,
50274,
1545,
4772,
4478,
21920,
1286,
13,
1854,
13,
21464,
30,
11336,
13,
17400,
30,
11336,
2262,
187,
50270,
1286,
15,
31732,
426,
47135,
426,
5300,
15,
31732,
64,
1542,
64,
3967,
9,
3967,
10,
187,
50270,
338,
47135,
310,
8256,
27,
187,
50266,
2948,
268,
5470,
28,
268,
5470,
15,
1178,
64,
20668,
6734,
187,
50270,
338,
17400,
285,
17400,
3333,
12985,
64,
22331,
285,
1854,
275,
17400,
3333,
12985,
15,
3967,
27,
187,
50266,
21552,
426,
17400,
3333,
12985,
15,
3967,
60,
3967,
1570,
21552,
187,
50270,
44779,
21464,
310,
8256,
27,
187,
50266,
83,
426,
47135,
15,
8606,
9,
28723,
2350,
9033,
64,
13690,
9536,
10,
187,
50266,
4,
8582,
10368,
428,
323,
44362,
470,
15,
1508,
1329,
187,
50266,
338,
391,
310,
8256,
27,
187,
50262,
83,
426,
47135,
15,
8606,
9,
56,
1922,
3887,
64,
28723,
2350,
9033,
64,
13690,
9536,
10,
187,
50266,
4,
8582,
10368,
428,
323,
17646,
1329,
187,
50266,
338,
391,
310,
8256,
27,
187,
50262,
83,
426,
47135,
15,
8606,
2073,
28723,
2350,
9033,
3401,
187,
50266,
338,
391,
310,
8256,
27,
187,
50262,
22525,
11740,
4756,
2073,
2369,
2462,
84,
1119,
275,
2462,
84,
8,
2462,
313,
28723,
2350,
9033,
64,
13690,
9536,
13,
187,
50254,
50254,
50270,
3967,
1228,
187,
50266,
3113,
3634,
4658,
15,
49209,
9,
83,
15,
284,
64,
4963,
6649,
347,
5542,
27,
187,
50262,
21552,
426,
6365,
10433,
9,
3140,
9344,
30,
4963,
13,
6974,
5473,
1851,
1974,
3401,
535,
50270,
12185,
9,
10548,
18859,
35207,
13,
1881,
481,
876,
4478,
21920,
21552,
13,
1854,
13,
17400,
10,
535,
50270,
338,
17400,
285,
17400,
3333,
12985,
64,
22331,
27,
187,
50266,
12540,
3333,
12985,
15,
1911,
9,
1286,
10,
535,
50270,
14626,
27,
187,
50266,
83,
426,
47135,
15,
8606,
2073,
34407,
1703,
3401,
187,
50270,
16829,
42090,
4756,
27,
187,
50266,
2948,
268,
5470,
28,
268,
5470,
15,
1178,
64,
20668,
6734,
187,
50270,
1286,
15,
1844,
7250,
426,
391,
310,
417,
8256,
535,
50274,
1545,
4772,
250,
1087,
21920,
1286,
2262,
187,
50270,
2309,
21083,
10548,
18859,
35207,
2462,
83,
2462,
84,
387,
2462,
83,
28120,
2462,
313,
187,
50266,
1286,
15,
1590,
13,
1881,
15,
4149,
13,
1881,
15,
3967,
10,
535,
50274,
1545,
4772,
1344,
21920,
1286,
2262,
187,
50270,
2309,
17280,
84,
2462,
84,
3,
2462,
313,
1286,
15,
1590,
13,
1881,
15,
4149,
10,
535,
50274,
1545,
795,
788,
64,
46622,
9,
1286,
2262,
187,
50270,
32488,
187,
50270,
3633,
253,
1618,
273,
8038,
4367,
323,
253,
3268,
187,
50270,
27,
2309,
27,
329,
1618,
273,
11737,
1868,
273,
1854,
13,
13283,
285,
1979,
15,
5838,
326,
13283,
285,
187,
50261,
3281,
1537,
320,
20890,
11336,
5190,
323,
690,
12028,
15,
380,
1854,
310,
4555,
187,
50261,
284,
7141,
275,
253,
1873,
313,
4609,
310,
347,
275,
11031,
49,
38516,
481,
187,
50270,
32488,
187,
50270,
16680,
426,
8168,
187,
50270,
83,
426,
1881,
15,
788,
64,
8155,
5374,
64,
15024,
2073,
34181,
8242,
3401,
187,
50270,
3113,
3634,
4658,
15,
49209,
9,
83,
15,
284,
64,
4963,
6649,
347,
5542,
27,
187,
50266,
3113,
45584,
15283,
9,
4963,
30,
4963,
10,
347,
1924,
64,
28011,
27,
187,
50262,
4,
11760,
4328,
310,
2885,
14035,
273,
964,
8155,
14,
5374,
14035,
187,
50262,
4,
4793,
64,
12428,
426,
7684,
15,
3967,
15,
45518,
9,
1286,
15,
3967,
10,
187,
50262,
4,
4793,
64,
12428,
426,
7684,
15,
3967,
15,
357,
1033,
506,
9,
4793,
64,
12428,
10,
187,
50262,
1542,
4194,
275,
1924,
64,
28011,
27,
187,
50258,
33722,
426,
544,
11336,
323,
891,
275,
2491,
9,
5025,
9,
736,
582,
495,
9102,
187,
50258,
3967,
13,
12255,
360,
13,
1979,
426,
4194,
559,
5816,
187,
50258,
4,
338,
417,
7684,
15,
3967,
15,
261,
5375,
9,
3967,
2262,
187,
50258,
4,
50274,
3967,
426,
1854,
15,
13481,
28199,
1383,
7684,
15,
33032,
10,
187,
50258,
4,
50274,
3967,
426,
7684,
15,
3967,
15,
13956,
9,
4793,
64,
12428,
13,
1854,
10,
187,
50258,
16680,
15,
9691,
4464,
3967,
13,
12255,
360,
13,
1979,
1228,
187,
50270,
2309,
1543,
535,
50274,
33,
45438,
64,
9134,
187,
50274,
1545,
24217,
9,
1286,
2262,
187,
50270,
32488,
187,
50270,
15968,
253,
1491,
34652,
407,
436,
3268,
15,
187,
50270,
27,
2309,
27,
329,
19034,
273,
24217,
13,
10603,
271,
13474,
7140,
281,
247,
10886,
187,
50261,
1171,
1163,
2437,
30337,
39139,
14085,
65,
10872,
12930,
253,
2060,
187,
50261,
15035,
12028,
13,
285,
2234,
264,
407,
1416,
15,
187,
50270,
32488,
187,
50270,
6870,
426,
12166,
187,
50270,
83,
426,
1881,
15,
788,
64,
8155,
5374,
64,
15024,
9,
4237,
28303,
6901,
64,
13690,
9536,
10,
187,
50270,
338,
391,
27,
187,
50266,
6870,
426,
1881,
15,
1088,
64,
23756,
1082,
187,
50270,
2309,
906,
535,
50274,
1545,
1239,
64,
23756,
9,
1286,
2262,
187,
50270,
32488,
187,
50270,
5703,
24217,
941,
432,
247,
1873,
275,
964,
5391,
5981,
15,
535,
50270,
27,
2309,
27,
329,
19034,
273,
24217,
13,
10603,
271,
13474,
7140,
281,
247,
1618,
187,
50261,
1171,
1163,
2437,
30337,
39139,
14085,
65,
10872,
12930,
253,
2060,
187,
50261,
15035,
12028,
15,
187,
50270,
32488,
187,
50270,
6870,
426,
12166,
187,
50270,
83,
426,
1881,
15,
788,
64,
8155,
5374,
64,
15024,
9,
4237,
28303,
6901,
64,
13690,
9536,
10,
187,
50270,
338,
391,
27,
187,
50266,
3113,
3634,
4658,
15,
49209,
9,
83,
15,
284,
64,
4963,
6649,
347,
5542,
27,
187,
50262,
6870,
426,
1239,
64,
23756,
9,
4963,
10,
187,
50270,
2309,
906,
535,
50274,
1545,
3630,
64,
23756,
9,
1286,
13,
24217,
2262,
187,
50270,
32488,
187,
50270,
10639,
247,
19034,
273,
24217,
281,
247,
1873,
275,
964,
5391,
5981,
15,
187,
50270,
27,
3575,
24217,
27,
329,
19034,
273,
24217,
13,
10603,
271,
13474,
7140,
281,
187,
50254,
66,
1618,
273,
1163,
2437,
30337,
39139,
14085,
65,
10872,
12930,
253,
187,
50254,
27276,
13474,
12028,
15,
187,
50270,
32488,
187,
50270,
19232,
426,
1881,
15,
788,
64,
8155,
5374,
64,
3140,
9,
4237,
28303,
6901,
64,
13690,
9536,
10,
187,
50270,
3113,
1527,
9,
19232,
13,
686,
88,
3401,
347,
269,
27,
187,
50266,
6343,
64,
23756,
9,
23756,
13,
269,
10,
535,
50274,
1545,
755,
64,
15024,
64,
3967,
9,
1286,
13,
4103,
64,
3967,
2262,
187,
50270,
32488,
187,
50270,
31190,
27,
831,
8990,
778,
1818,
275,
253,
2852,
15,
535,
50270,
15968,
253,
7880,
1854,
281,
247,
7741,
1873,
342,
253,
1677,
4103,
187,
50270,
3967,
15,
535,
50270,
27,
3575,
4103,
64,
3967,
27,
380,
1854,
13,
4103,
281,
964,
8155,
14,
5374,
13,
273,
253,
7741,
187,
50254,
50272,
1171,
1600,
15,
187,
50270,
27,
2309,
27,
380,
7880,
1854,
835,
253,
7741,
310,
281,
320,
1119,
15,
187,
50270,
32488,
187,
50270,
83,
426,
1881,
15,
788,
64,
8155,
5374,
64,
15024,
2073,
13045,
50186,
3401,
187,
50270,
3113,
3634,
4658,
15,
49209,
9,
83,
15,
284,
64,
4963,
6649,
347,
5542,
27,
187,
50266,
3113,
45584,
15283,
9,
4963,
30,
4963,
10,
347,
5300,
64,
28011,
27,
187,
50262,
1542,
4103,
13,
12095,
275,
5300,
64,
28011,
27,
187,
50258,
338,
4103,
2295,
4103,
64,
3967,
27,
187,
50254,
2309,
12095,
187,
50270,
22525,
10030,
4756,
2073,
2369,
7741,
1873,
342,
4103,
1854,
2462,
83,
686,
187,
50255,
8,
261,
8038,
8,
2462,
4103,
64,
3967,
10,
535,
50274,
1545,
1618,
64,
40539,
64,
11242,
9,
1286,
2262,
187,
50270,
32488,
187,
50270,
15628,
684,
689,
253,
20890,
34181,
8242,
5190,
12028,
285,
6548,
247,
31343,
187,
50270,
5190,
9,
3967,
13,
13283,
13,
1979,
10,
5190,
323,
1016,
1386,
15,
535,
50270,
27,
20974,
27,
28823,
273,
313,
3967,
13,
13283,
13,
1979,
10,
187,
50270,
32488,
187,
50270,
1542,
906,
275,
1881,
3333,
788,
64,
46622,
14850,
187,
50266,
41770,
906,
535,
50274,
1545,
3630,
64,
40539,
64,
11242,
9,
1286,
13,
11865,
13,
17744,
13,
6079,
64,
6321,
30,
5653,
2262,
187,
50270,
32488,
187,
50270,
25191,
265,
253,
20890,
34181,
8242,
5190,
1873,
13,
970,
253,
20890,
34605,
5190,
10040,
494,
4817,
275,
15,
6101,
187,
50270,
20137,
20890,
34181,
8242,
5190,
1873,
310,
29387,
689,
15720,
15,
535,
50270,
15445,
310,
908,
281,
3653,
672,
281,
3630,
7880,
11865,
15,
187,
50270,
32488,
187,
50270,
15445,
426,
7684,
15,
3967,
15,
13956,
9,
15445,
13,
45381,
187,
50270,
4793,
426,
7684,
15,
3967,
15,
45518,
9,
1286,
15,
3967,
10,
187,
50270,
4793,
64,
4524,
64,
15445,
426,
2613,
15,
5478,
2140,
334,
9,
15445,
10,
187,
50270,
4793,
426,
7684,
15,
3967,
15,
13956,
9,
4793,
13,
45381,
187,
50270,
15352,
64,
3967,
426,
1881,
15,
788,
64,
8155,
5374,
64,
3140,
2073,
34181,
8242,
3401,
187,
50270,
23173,
15,
5374,
2073,
20132,
272,
2462,
84,
1383,
1924,
64,
3967,
10,
187,
50270,
338,
6079,
64,
6321,
27,
187,
50266,
2309,
8256,
187,
50270,
3113,
45584,
16978,
9,
15352,
64,
3967,
10,
347,
8406,
27,
187,
50266,
1542,
1854,
275,
11865,
27,
187,
50262,
338,
7684,
15,
3967,
15,
5800,
343,
9,
3967,
10,
390,
1854,
15,
1727,
3113,
9,
27174,
4789,
68,
1383,
29996,
4789,
80,
19279,
27,
187,
50258,
4,
513,
417,
1691,
1979,
285,
13283,
13,
347,
275,
11031,
49,
14,
25848,
187,
50258,
13362,
64,
2877,
426,
1979,
426,
15078,
187,
50262,
7271,
27,
187,
50258,
3281,
426,
25137,
69,
8,
2462,
7684,
15,
3967,
15,
788,
3281,
9,
3967,
10,
187,
50258,
3113,
1527,
9,
3967,
13,
686,
13041,
3401,
347,
44296,
27,
187,
50254,
13362,
64,
2877,
426,
1881,
15,
788,
64,
13362,
9,
16983,
15,
1088,
6649,
187,
50262,
338,
1854,
15,
5478,
2140,
334,
9,
4793,
10,
390,
313,
4793,
64,
4524,
64,
15445,
285,
187,
50254,
50257,
3967,
15,
5478,
2140,
334,
9,
15445,
49751,
187,
50258,
3967,
426,
7684,
15,
3967,
15,
1661,
3967,
9,
3967,
13,
2613,
10,
187,
50262,
16360,
15,
16360,
319,
4464,
3967,
13,
13283,
64,
2877,
13,
1979,
1228,
535,
50266,
4,
823,
253,
28239,
8242,
1873,
3139,
187,
50266,
338,
1924,
64,
3967,
15,
5478,
2140,
334,
9,
4793,
2262,
187,
50262,
15352,
64,
3967,
426,
7684,
15,
3967,
15,
1661,
3967,
9,
15352,
64,
3967,
13,
2613,
10,
187,
50266,
16360,
15,
16360,
319,
4464,
15352,
64,
3967,
13,
29278,
15078,
1228,
187,
50270,
2309,
1924,
64,
3967,
535,
50274,
1545,
2451,
64,
40539,
64,
11242,
9,
1286,
2262,
187,
50270,
32488,
187,
50270,
6892,
6163,
326,
253,
556,
1041,
285,
9552,
273,
253,
4367,
275,
20890,
34181,
8242,
5190,
403,
187,
50270,
25049,
407,
253,
4367,
3746,
15,
16548,
247,
313,
38896,
6325,
10,
1618,
273,
187,
50270,
78,
1204,
32358,
15,
5815,
5857,
275,
253,
29713,
1618,
588,
320,
247,
31343,
11253,
187,
50270,
1171,
253,
1854,
13,
686,
19390,
1383,
686,
3281,
8,
390,
686,
13362,
8,
2556,
281,
752,
1904,
626,
3761,
187,
50270,
9,
29419,
310,
10141,
806,
13,
840,
1979,
13,
840,
13283,
582,
253,
3264,
187,
50270,
2877,
285,
253,
4588,
1318,
15,
187,
50270,
32488,
187,
50270,
78,
1204,
32358,
426,
8168,
187,
50270,
4793,
426,
7684,
15,
3967,
15,
45518,
9,
1286,
15,
3967,
10,
187,
50270,
15352,
64,
3967,
426,
1881,
15,
788,
64,
8155,
5374,
64,
3140,
2073,
34181,
8242,
3401,
187,
50270,
1542,
1854,
13,
13283,
64,
2877,
13,
1979,
275,
1881,
15,
3550,
64,
40539,
64,
11242,
14850,
187,
50266,
338,
417,
7684,
15,
3967,
15,
261,
5375,
9,
3967,
2262,
187,
50262,
3967,
426,
7684,
15,
3967,
15,
13956,
9,
4793,
13,
1854,
10,
187,
50266,
338,
1854,
2295,
1924,
64,
3967,
27,
187,
50262,
25674,
187,
50266,
338,
417,
7684,
15,
3967,
15,
19390,
9,
3967,
2262,
187,
50262,
78,
1204,
32358,
15,
9691,
4464,
3967,
13,
686,
19390,
1383,
11793,
13,
16708,
1228,
187,
50266,
44779,
7684,
15,
3967,
15,
3042,
587,
9,
3967,
2262,
187,
50262,
26651,
64,
3281,
426,
1213,
9,
375,
15,
3967,
15,
788,
3281,
9,
3967,
1228,
187,
50262,
338,
1979,
285,
4588,
64,
3281,
3613,
1979,
27,
187,
50258,
78,
1204,
32358,
15,
9691,
4464,
3967,
13,
686,
3281,
1383,
1979,
13,
4588,
64,
3281,
1228,
187,
50262,
44779,
13283,
64,
2877,
27,
187,
50258,
338,
686,
5473,
275,
13283,
64,
2877,
27,
187,
50254,
7110,
379,
426,
13283,
64,
2877,
15,
9148,
2073,
30,
1383,
337,
6904,
17,
62,
187,
50258,
7271,
27,
187,
50254,
7110,
379,
426,
8256,
535,
50258,
3113,
1527,
9,
3967,
13,
686,
13041,
3401,
347,
269,
27,
187,
50254,
26651,
64,
13362,
426,
1881,
15,
788,
64,
13362,
9,
71,
15,
1088,
5715,
556,
379,
10,
187,
50254,
338,
4588,
64,
13362,
3613,
13283,
64,
2877,
27,
187,
50254,
50274,
78,
1204,
32358,
15,
9691,
4464,
3967,
13,
686,
13362,
1383,
13283,
64,
2877,
13,
4588,
64,
13362,
1228,
187,
50270,
2309,
19412,
32358,
535,
50274,
33,
45438,
64,
9134,
187,
50274,
1545,
6096,
64,
44991,
9,
1286,
2262,
187,
50270,
32488,
187,
50270,
34,
19034,
273,
6096,
8593,
3692,
10149,
403,
275,
253,
873,
686,
15445,
1383,
187,
50270,
8,
32669,
4658,
1383,
686,
446,
255,
4658,
1383,
686,
26804,
1383,
686,
27641,
1383,
686,
2203,
8,
285,
686,
12361,
5983,
187,
50270,
510,
3969,
1318,
310,
253,
7880,
1854,
273,
326,
7140,
323,
187,
50270,
2520,
3268,
13,
285,
3936,
715,
2395,
667,
11865,
4236,
407,
253,
187,
50270,
4537,
387,
12692,
673,
313,
70,
15,
72,
15,
3066,
3923,
14,
1282,
7125,
481,
496,
253,
187,
50270,
5045,
273,
253,
686,
12361,
8,
2234,
13,
436,
651,
320,
247,
1618,
273,
7880,
11865,
187,
50270,
1542,
253,
11465,
273,
12953,
12149,
275,
436,
3268,
15,
535,
50270,
510,
806,
673,
436,
2867,
310,
19197,
13,
253,
4623,
1491,
310,
187,
50270,
1088,
432,
253,
7840,
1277,
1703,
1873,
275,
253,
964,
8155,
14,
5374,
9617,
15,
187,
50270,
32488,
187,
50270,
6870,
426,
12166,
187,
50270,
18867,
64,
3967,
426,
7684,
15,
3967,
15,
13956,
9,
1286,
15,
3967,
13,
686,
5648,
1277,
1703,
3401,
187,
50270,
338,
7684,
15,
3967,
15,
3042,
587,
9,
18867,
64,
3967,
2262,
187,
50266,
3113,
2127,
6113,
15,
5758,
9,
18867,
64,
3967,
13,
686,
83,
1383,
9706,
5473,
17880,
14,
25,
3401,
347,
269,
27,
187,
50262,
8737,
426,
269,
15,
1088,
5023,
9148,
8737,
1082,
187,
50266,
1542,
1386,
275,
3104,
27,
187,
50262,
2364,
13,
1318,
426,
1386,
15,
9148,
2073,
30,
1383,
337,
10,
187,
50262,
338,
2234,
2295,
686,
12361,
5295,
187,
50258,
6870,
15,
1178,
6986,
9,
2364,
13,
544,
2498,
9691,
9,
2877,
10,
187,
50262,
7271,
27,
187,
50258,
6870,
60,
2364,
62,
426,
1318,
187,
50270,
2309,
906,
535,
50274,
1545,
3630,
64,
18867,
64,
44991,
9,
1286,
13,
11865,
13,
6079,
64,
6321,
30,
5653,
2262,
187,
50270,
32488,
187,
50270,
10639,
6096,
4328,
1491,
281,
253,
7840,
1277,
1703,
1873,
275,
964,
8155,
14,
5374,
15,
187,
50270,
27,
3575,
11865,
27,
329,
19034,
347,
2529,
275,
253,
10097,
323,
187,
50270,
27,
20912,
30337,
18867,
64,
44991,
16433,
187,
50270,
27,
3575,
6079,
64,
6321,
27,
1310,
11793,
13,
253,
2250,
310,
24917,
533,
642,
1873,
310,
2686,
187,
50254,
15720,
15,
187,
50270,
27,
2309,
27,
380,
1854,
273,
253,
1873,
3542,
281,
15,
187,
50270,
32488,
187,
50270,
18867,
64,
3967,
426,
7684,
15,
3967,
15,
13956,
9,
1286,
15,
3967,
13,
686,
5648,
1277,
1703,
3401,
187,
50270,
23173,
15,
5374,
2073,
20132,
272,
2462,
84,
1383,
6096,
64,
3967,
10,
187,
50270,
338,
6079,
64,
6321,
27,
187,
50266,
2309,
8256,
187,
50270,
8737,
426,
8168,
187,
50270,
1542,
2234,
275,
12196,
15445,
1383,
686,
4658,
1383,
686,
27641,
1383,
686,
26804,
1383,
686,
2203,
46976,
187,
50266,
3967,
426,
11865,
60,
2364,
62,
187,
50266,
338,
7684,
15,
3967,
15,
5800,
343,
9,
34605,
60,
2364,
46295,
187,
50262,
8737,
15,
9691,
2073,
6,
84,
23869,
84,
8,
2462,
313,
2364,
13,
50276,
3967,
1228,
187,
50270,
1542,
19769,
275,
11865,
15,
788,
2073,
12361,
1383,
313,
49751,
187,
50266,
8737,
15,
9691,
2073,
12361,
23869,
84,
8,
2462,
19769,
10,
535,
50270,
3113,
2127,
6113,
15,
5758,
9,
18867,
64,
3967,
13,
686,
88,
1383,
9706,
5473,
17880,
14,
25,
3401,
347,
269,
27,
187,
50266,
71,
15,
6343,
2073,
61,
79,
5983,
13956,
9,
8737,
1228,
187,
50270,
2309,
6096,
64,
3967,
535,
50274,
1545,
755,
64,
8155,
5374,
64,
15024,
9,
1286,
13,
1854,
2262,
187,
50270,
338,
1854,
417,
275,
26605,
64,
39502,
27,
187,
50266,
22525,
3656,
4658,
5330,
2073,
25359,
1854,
323,
247,
940,
14,
5374,
1873,
27,
686,
187,
50254,
50267,
8,
6,
83,
387,
2462,
83,
8,
2462,
313,
3967,
13,
1881,
15,
3967,
1228,
187,
50270,
31732,
426,
5300,
15,
31732,
64,
1542,
64,
3967,
9,
1286,
15,
3967,
10,
187,
50270,
338,
47135,
310,
8256,
27,
187,
50266,
22525,
3656,
4658,
5330,
2073,
43794,
281,
755,
247,
47135,
323,
2462,
84,
8,
2462,
1881,
15,
3967,
10,
187,
50270,
2309,
47135,
15,
8606,
9,
3967,
10,
535,
50274,
1545,
755,
64,
8155,
5374,
64,
3140,
9,
1286,
13,
1854,
2262,
187,
50270,
32488,
187,
50270,
34551,
247,
1854,
4441,
762,
253,
2634,
16433,
8155,
14,
5374,
5190,
9617,
15,
16548,
247,
187,
50270,
2703,
9999,
253,
1854,
15,
535,
50270,
27,
19484,
1854,
27,
247,
20890,
39618,
8,
5190,
14,
49741,
1854,
4103,
281,
253,
187,
50254,
2634,
16433,
8155,
14,
5374,
5190,
9617,
390,
271,
7880,
1854,
28,
187,
50254,
1310,
475,
3967,
11,
310,
271,
7880,
1854,
285,
2506,
626,
1265,
187,
50254,
342,
253,
2634,
16433,
8155,
14,
5374,
5190,
9617,
1854,
13,
187,
50254,
247,
1163,
2437,
30337,
14178,
4658,
5330,
65,
310,
5439,
187,
50270,
27,
881,
1854,
27,
1213,
187,
50270,
27,
83,
881,
27,
1213,
187,
50270,
32488,
187,
50270,
4,
9423,
604,
352,
310,
271,
7880,
1854,
50276,
4,
29373,
897,
774,
3967,
13,
823,
5216,
187,
50270,
338,
1854,
15,
8606,
9,
375,
15,
33032,
10,
10122,
470,
27,
187,
50266,
4,
352,
434,
271,
7880,
1854,
32,
187,
50266,
8155,
5374,
64,
45518,
13,
1854,
426,
1854,
15,
9148,
9,
375,
15,
33032,
6904,
14,
19,
34417,
187,
50266,
338,
940,
5374,
64,
45518,
3613,
1881,
15,
3967,
15,
9148,
9,
375,
15,
33032,
6904,
14,
18,
5218,
187,
50262,
22525,
3656,
4658,
5330,
9,
187,
50258,
1871,
382,
14,
5374,
1873,
2462,
83,
1057,
417,
5663,
281,
253,
2462,
83,
2462,
84,
686,
187,
50258,
1871,
382,
2382,
8,
2462,
313,
3967,
13,
1881,
15,
1590,
13,
1881,
15,
4149,
1228,
535,
50270,
4,
380,
1873,
1364,
320,
4103,
187,
50270,
338,
1854,
417,
275,
26605,
64,
39502,
27,
187,
50266,
22525,
3656,
4658,
5330,
2073,
25359,
1854,
323,
247,
940,
14,
5374,
1873,
27,
686,
187,
50254,
50267,
8,
6,
83,
387,
2462,
83,
8,
2462,
313,
3967,
13,
1881,
15,
3967,
1228,
535,
50270,
2309,
7684,
15,
3967,
15,
13956,
9,
1286,
15,
3967,
13,
1854,
10,
535,
50274,
1545,
1618,
64,
8155,
5374,
64,
11242,
9,
1286,
2262,
187,
50270,
32488,
187,
50270,
15628,
684,
689,
253,
20890,
34181,
8242,
5190,
12028,
285,
6548,
11865,
323,
1016,
1386,
604,
187,
50270,
783,
1854,
310,
13458,
281,
247,
1873,
4441,
275,
253,
2634,
16433,
8155,
14,
5374,
5190,
9617,
187,
50270,
263,
581,
273,
697,
33215,
8152,
447,
15,
535,
50270,
27,
20974,
27,
28823,
273,
11865,
187,
50270,
32488,
187,
50270,
4793,
426,
7684,
15,
3967,
15,
45518,
9,
1286,
15,
3967,
10,
187,
50270,
1542,
1854,
13,
12255,
360,
13,
1979,
275,
1881,
3333,
788,
64,
46622,
14850,
187,
50266,
4,
29373,
823,
35823,
390,
897,
1524,
774,
3967,
30390,
187,
50266,
338,
417,
7684,
15,
3967,
15,
261,
5375,
9,
3967,
2262,
187,
50262,
3967,
426,
7684,
15,
3967,
15,
13956,
9,
4793,
13,
1854,
10,
187,
50266,
338,
1854,
15,
5478,
2140,
334,
9,
1286,
15,
3967,
2262,
187,
50262,
41770,
1854,
535,
50274,
1545,
4772,
2574,
21920,
1286,
13,
643,
2262,
187,
50270,
2309,
313,
261,
14966,
9,
977,
13,
5376,
18859,
35207,
10,
285,
187,
50262,
1286,
15,
3967,
2295,
643,
15,
3967,
10,
535,
50274,
4,
2594,
3944,
1358,
13880,
15,
16659,
15,
2061,
16,
14005,
16,
8608,
312,
49797,
4,
6082,
24856,
13362,
876,
187,
50274,
876,
13362,
876,
426,
1789,
24856,
13362,
876,
535,
187,
2437,
30112,
6074,
35207,
9,
8932,
10548,
18859,
35207,
2262,
187,
50274,
32488,
32331,
342,
253,
475,
3967,
11,
273,
253,
2634,
16433,
48915,
14,
5374,
5190,
9617,
390,
1873,
2530,
187,
50274,
936,
253,
16757,
15,
733,
9563,
253,
21464,
6221,
275,
253,
1873,
3139,
13,
390,
187,
50274,
338,
253,
1677,
1854,
6569,
281,
320,
247,
9617,
13,
253,
21464,
310,
1239,
432,
253,
187,
50274,
3140,
20890,
15659,
40,
14,
16615,
5190,
762,
326,
9617,
46289,
535,
50274,
1844,
7250,
426,
11793,
50274,
4,
347,
359,
452,
642,
1039,
273,
8958,
13,
5467,
352,
369,
187,
50274,
18867,
64,
44991,
426,
12166,
535,
50274,
1545,
4772,
4478,
21920,
1286,
13,
1854,
13,
17400,
30,
11336,
2262,
187,
50270,
1545,
873,
64,
1590,
64,
395,
64,
4149,
9,
84,
13,
295,
13,
362,
2262,
187,
50266,
84,
15,
1590,
426,
295,
187,
50266,
84,
15,
2364,
426,
295,
15,
12973,
1082,
50275,
4,
323,
1083,
14,
968,
18917,
14023,
187,
50266,
84,
15,
4149,
426,
362,
535,
50270,
1286,
15,
3967,
426,
1854,
187,
50270,
1286,
15,
8155,
64,
3967,
426,
17400,
187,
50270,
338,
17400,
285,
17400,
3333,
12985,
64,
22331,
285,
1854,
275,
17400,
3333,
12985,
64,
48915,
15,
3967,
27,
187,
50266,
21552,
426,
17400,
3333,
12985,
64,
48915,
15,
3967,
60,
3967,
1570,
21552,
187,
50266,
1178,
64,
1590,
64,
395,
64,
4149,
9,
1286,
13,
21464,
15,
1590,
13,
21464,
15,
4149,
10,
187,
50270,
7271,
27,
187,
50266,
21552,
426,
1881,
3333,
788,
64,
21552,
9,
3967,
10,
535,
50266,
4,
20389,
281,
320,
873,
1078,
42324,
187,
50266,
1178,
64,
1590,
64,
395,
64,
4149,
9,
1286,
13,
21464,
15,
1590,
13,
21464,
15,
4149,
10,
535,
50266,
338,
17400,
285,
17400,
3333,
12985,
64,
22331,
27,
187,
50262,
12540,
3333,
12985,
64,
48915,
15,
1911,
9,
1286,
10,
187,
50270,
12185,
9,
38,
1266,
6074,
35207,
13,
1881,
481,
876,
4478,
21920,
21552,
13,
1854,
13,
17400,
10,
535,
50274,
1545,
795,
788,
64,
21552,
9,
1286,
13,
1854,
2262,
187,
50270,
36042,
426,
8256,
535,
50270,
1545,
14390,
64,
36042,
64,
2203,
9,
2203,
2262,
187,
50266,
32488,
9395,
247,
1618,
273,
21011,
432,
247,
4419,
15,
10134,
1873,
15,
535,
50266,
11,
2203,
17640,
253,
9410,
273,
247,
873,
18642,
23699,
14,
36008,
4419,
15,
10134,
1873,
15,
187,
50266,
32488,
187,
50266,
12250,
84,
426,
8168,
187,
50266,
8737,
426,
941,
15,
9148,
8737,
1082,
187,
50266,
1542,
1386,
275,
3104,
27,
187,
50262,
1282,
426,
1386,
15,
25763,
1082,
187,
50262,
338,
1386,
15,
5478,
2140,
334,
2073,
5013,
2262,
187,
50258,
23173,
15,
28207,
2073,
42747,
1386,
27,
572,
2835,
8284,
11017,
27,
2462,
83,
1383,
187,
50254,
50267,
1282,
10,
187,
50258,
7054,
187,
50262,
83,
426,
14390,
64,
15684,
420,
9,
1282,
10,
187,
50262,
338,
417,
391,
27,
187,
50258,
23173,
15,
28207,
2073,
3650,
25048,
347,
247,
8284,
27,
2462,
83,
1383,
1386,
10,
187,
50258,
25674,
187,
50262,
338,
391,
15,
2068,
6230,
27,
187,
50258,
23173,
15,
28207,
2073,
24124,
6095,
275,
4419,
15,
10134,
403,
686,
187,
50254,
50267,
8,
1439,
4516,
3401,
187,
50262,
338,
417,
391,
15,
3474,
21462,
27,
187,
50258,
12250,
84,
15,
9691,
9,
83,
15,
1590,
10,
187,
50262,
7271,
27,
187,
50258,
5040,
426,
26848,
29996,
13956,
2073,
6,
84,
6,
84,
8,
2462,
260,
323,
260,
275,
391,
15,
3474,
21462,
10,
187,
50258,
12250,
84,
15,
9691,
2073,
6,
84,
26607,
84,
18619,
2462,
313,
83,
15,
1590,
13,
772,
1228,
187,
50266,
2309,
23169,
84,
535,
50270,
1545,
14390,
64,
36042,
64,
3967,
9,
12250,
64,
3967,
2262,
187,
50266,
32488,
9395,
247,
1618,
273,
21011,
432,
247,
4419,
15,
10134,
1873,
15,
535,
50266,
11,
12250,
64,
3967,
17640,
253,
1854,
281,
247,
873,
18642,
23699,
14,
36008,
4419,
15,
10134,
1873,
15,
187,
50266,
32488,
535,
50266,
12250,
84,
426,
8168,
187,
50266,
14626,
27,
187,
50262,
3113,
2127,
6113,
15,
5758,
9,
12250,
64,
3967,
13,
686,
83,
1383,
686,
17880,
14,
25,
3401,
347,
44296,
27,
187,
50258,
12250,
84,
426,
14390,
64,
36042,
64,
2203,
9,
16983,
15,
1088,
6649,
187,
50266,
16829,
19698,
4756,
27,
187,
50262,
5858,
187,
50266,
2309,
23169,
84,
535,
50270,
338,
1854,
15,
1727,
3113,
27174,
48915,
46976,
187,
50266,
338,
7684,
15,
3967,
15,
5800,
343,
9,
3967,
2262,
187,
50262,
13518,
64,
3967,
426,
7684,
15,
3967,
15,
13956,
9,
3967,
13,
686,
38,
6435,
14,
16615,
1383,
686,
15659,
40,
14,
16615,
3401,
187,
50262,
21552,
426,
6365,
10433,
9,
3967,
30,
13518,
64,
3967,
13,
6974,
5473,
1851,
1974,
3401,
187,
50262,
12250,
64,
3967,
426,
7684,
15,
3967,
15,
13956,
9,
3967,
13,
686,
38,
6435,
14,
16615,
1383,
686,
36042,
15,
10134,
3401,
187,
50262,
36042,
426,
14390,
64,
36042,
64,
3967,
9,
12250,
64,
3967,
10,
187,
50266,
7271,
27,
187,
50262,
4,
38506,
5288,
6016,
253,
1083,
835,
23367,
3140,
310,
417,
2130,
187,
50262,
16368,
71,
426,
23367,
2948,
15,
16368,
303,
18845,
9,
3967,
10,
187,
50262,
3140,
9344,
426,
4605,
6527,
9,
187,
50258,
16368,
71,
15,
788,
64,
2203,
2073,
38,
6435,
14,
16615,
16,
15659,
40,
14,
16615,
8539,
29377,
2073,
17880,
25,
19279,
187,
50262,
21552,
426,
6365,
10433,
9,
3140,
9344,
30,
3140,
9344,
13,
6974,
5473,
1851,
1974,
3401,
187,
50262,
14626,
27,
187,
50258,
2203,
426,
23367,
71,
15,
788,
64,
2203,
2073,
38,
6435,
14,
16615,
16,
36042,
15,
10134,
3401,
187,
50258,
36042,
426,
14390,
64,
36042,
64,
2203,
9,
2203,
15,
29377,
2073,
17880,
14,
25,
19279,
187,
50262,
16829,
19698,
4756,
27,
187,
50258,
36042,
426,
8256,
187,
50270,
44779,
1854,
15,
1727,
3113,
27174,
48915,
14,
5374,
46976,
187,
50266,
338,
7684,
15,
3967,
15,
5800,
343,
9,
3967,
2262,
187,
50262,
12250,
64,
3967,
426,
7684,
15,
3967,
15,
13956,
9,
3967,
13,
686,
36042,
15,
10134,
3401,
187,
50262,
36042,
426,
14390,
64,
36042,
64,
3967,
9,
12250,
64,
3967,
10,
187,
50262,
3967,
426,
7684,
15,
3967,
15,
13956,
9,
3967,
13,
686,
15659,
40,
14,
16615,
3401,
187,
50266,
21552,
426,
6365,
10433,
9,
3967,
30,
3967,
13,
6974,
5473,
1851,
1974,
3401,
187,
50270,
7271,
27,
187,
50266,
22525,
3656,
4658,
5330,
2073,
3967,
1364,
990,
342,
964,
48915,
14,
5374,
390,
964,
48915,
13,
686,
187,
50254,
50267,
8,
19559,
2462,
83,
8,
2462,
1854,
10,
535,
50270,
338,
4419,
27,
187,
50266,
21552,
15,
1911,
64,
15684,
942,
9,
36042,
10,
187,
50270,
2309,
21464,
535,
50274,
1545,
4772,
250,
1087,
21920,
1286,
2262,
187,
50270,
2309,
21083,
38,
1266,
6074,
35207,
2462,
83,
2462,
84,
387,
2462,
83,
28120,
2462,
313,
187,
50266,
1286,
15,
1590,
13,
1881,
15,
4149,
13,
1881,
15,
3967,
10,
535,
50274,
1545,
4772,
1344,
21920,
1286,
2262,
187,
50270,
2309,
17280,
84,
2462,
84,
3,
2462,
313,
1286,
15,
1590,
13,
1881,
15,
4149,
10,
535,
50274,
1545,
2451,
64,
40539,
64,
11242,
9,
1286,
2262,
187,
50270,
32488,
187,
50270,
6892,
6163,
326,
253,
556,
1041,
285,
9552,
273,
253,
4367,
275,
20890,
34181,
8242,
5190,
403,
187,
50270,
25049,
407,
253,
4367,
3746,
15,
16548,
247,
313,
38896,
6325,
10,
1618,
273,
187,
50270,
78,
1204,
32358,
15,
5815,
5857,
275,
253,
29713,
1618,
588,
320,
247,
31343,
11253,
187,
50270,
1171,
253,
1854,
13,
686,
19390,
1383,
686,
3281,
8,
390,
686,
13362,
8,
2556,
281,
752,
1904,
626,
3761,
187,
50270,
9,
29419,
310,
10141,
806,
13,
840,
1979,
13,
840,
13283,
582,
253,
3264,
187,
50270,
2877,
285,
253,
4588,
1318,
15,
187,
50270,
32488,
187,
50270,
78,
1204,
32358,
426,
8168,
187,
50270,
15352,
64,
3967,
426,
7684,
15,
3967,
15,
13956,
9,
1286,
15,
3967,
13,
686,
40539,
14,
11242,
15,
10134,
3401,
187,
50270,
338,
7684,
15,
3967,
15,
19390,
9,
15352,
64,
3967,
2262,
187,
50266,
1542,
1854,
13,
13830,
795,
275,
1881,
15,
3550,
64,
40539,
64,
11242,
14850,
187,
50262,
338,
1854,
2295,
1924,
64,
3967,
27,
187,
50258,
25674,
187,
50262,
338,
417,
7684,
15,
3967,
15,
19390,
9,
3967,
2262,
187,
50258,
78,
1204,
32358,
15,
9691,
4464,
3967,
13,
686,
19390,
1383,
11793,
13,
16708,
1228,
187,
50270,
2309,
19412,
32358,
535,
50274,
1545,
1618,
64,
40539,
64,
11242,
9,
1286,
2262,
187,
50270,
32488,
187,
50270,
15628,
684,
689,
253,
20890,
40539,
14,
11242,
15,
10134,
5190,
12028,
285,
6548,
247,
31343,
187,
50270,
5190,
9,
3967,
13,
13283,
13,
1979,
10,
5190,
323,
1016,
1386,
15,
535,
50270,
27,
20974,
27,
247,
1618,
273,
313,
3967,
13,
13283,
13,
1979,
10,
187,
50270,
32488,
535,
50270,
1545,
795,
6535,
22,
9,
3967,
2262,
187,
50266,
71,
426,
1527,
9,
3967,
13,
686,
13041,
3401,
187,
50266,
14626,
27,
187,
50262,
6071,
426,
269,
15,
1088,
1082,
187,
50266,
71,
3341,
27,
187,
50262,
71,
15,
10483,
1082,
187,
50266,
2309,
13283,
4658,
15,
6535,
22,
9,
6071,
481,
15741,
49534,
1082,
535,
50270,
1545,
795,
3281,
9,
3967,
2262,
187,
50266,
2309,
7684,
15,
8766,
9,
3967,
481,
296,
64,
3281,
535,
50270,
15352,
64,
3967,
426,
7684,
15,
3967,
15,
13956,
9,
1286,
15,
3967,
13,
686,
40539,
14,
11242,
15,
10134,
3401,
187,
50270,
6870,
426,
8168,
187,
50270,
338,
7684,
15,
3967,
15,
19390,
9,
15352,
64,
3967,
2262,
187,
50266,
3113,
2127,
6113,
15,
5758,
9,
15352,
64,
3967,
13,
686,
83,
1383,
9706,
5473,
17880,
14,
25,
3401,
347,
269,
27,
187,
50262,
1542,
1386,
275,
269,
27,
187,
50258,
1282,
426,
1386,
15,
25763,
1082,
187,
50258,
81,
426,
7684,
15,
3967,
15,
12850,
3967,
9,
375,
15,
3967,
15,
13956,
9,
1286,
15,
3967,
13,
1386,
1228,
187,
50258,
4,
49173,
3,
310,
1246,
347,
247,
10705,
875,
8038,
4367,
187,
50258,
4,
285,
12692,
21464,
4367,
187,
50258,
338,
417,
7684,
15,
3967,
15,
19390,
9,
81,
2262,
187,
50254,
23173,
15,
28207,
2073,
11592,
14,
46408,
1873,
27,
2462,
84,
1383,
268,
10,
187,
50254,
338,
268,
15,
1727,
3113,
9,
27174,
4789,
68,
1383,
29996,
4789,
80,
19279,
27,
187,
50254,
50274,
25674,
187,
50254,
4,
32240,
2965,
949,
285,
1891,
187,
50258,
338,
417,
7684,
15,
3967,
15,
5800,
343,
9,
81,
2262,
187,
50254,
6870,
15,
9691,
4464,
81,
13,
795,
6535,
22,
9,
81,
582,
795,
3281,
9,
81,
10689,
187,
50266,
6870,
15,
9691,
4464,
15352,
64,
3967,
13,
8256,
13,
8256,
1228,
187,
50270,
2309,
906,
535,
50274,
1545,
1618,
64,
8155,
5374,
64,
11242,
9,
1286,
13,
7880,
30,
5653,
2262,
187,
50270,
32488,
187,
50270,
15628,
684,
689,
253,
20890,
40539,
14,
11242,
15,
10134,
5190,
12028,
285,
6548,
11865,
323,
187,
50270,
14382,
1386,
604,
253,
1854,
310,
13458,
281,
247,
1873,
4441,
275,
253,
187,
50270,
5190,
15,
48915,
14,
5374,
5190,
9617,
390,
581,
273,
697,
33215,
8152,
447,
15,
535,
50270,
27,
19484,
7880,
27,
1310,
475,
32816,
11,
310,
20890,
5088,
5190,
13,
1016,
4895,
1854,
310,
187,
50254,
50276,
45088,
715,
247,
1980,
7880,
1854,
15,
17501,
253,
187,
50254,
50276,
2040,
1318,
432,
20890,
40539,
14,
11242,
15,
10134,
5190,
310,
4895,
15,
187,
50270,
27,
881,
7880,
27,
12419,
187,
50270,
27,
20974,
27,
28823,
273,
11865,
187,
50270,
32488,
187,
50270,
15352,
64,
3967,
426,
7684,
15,
3967,
15,
13956,
9,
1286,
15,
3967,
13,
686,
40539,
14,
11242,
15,
10134,
3401,
187,
50270,
19259,
426,
11793,
187,
50270,
3113,
2127,
6113,
15,
5758,
9,
15352,
64,
3967,
13,
686,
83,
1383,
9706,
5473,
17880,
14,
25,
3401,
347,
269,
27,
187,
50266,
1542,
1386,
275,
269,
27,
187,
50262,
1282,
426,
1386,
15,
25763,
1082,
187,
50262,
338,
1386,
2295,
33378,
5295,
187,
50258,
19259,
426,
16708,
187,
50258,
25674,
187,
50262,
338,
417,
17049,
27,
187,
50258,
81,
426,
7684,
15,
3967,
15,
12850,
3967,
9,
375,
15,
3967,
15,
13956,
9,
1286,
15,
3967,
13,
1386,
1228,
187,
50258,
338,
268,
15,
5478,
2140,
334,
9,
1286,
15,
3967,
2262,
187,
50254,
338,
7880,
27,
187,
50254,
50274,
41770,
268,
187,
50254,
7271,
27,
187,
50254,
50274,
41770,
1386,
535,
50274,
1545,
4772,
2574,
21920,
1286,
13,
643,
2262,
187,
50270,
2309,
313,
261,
14966,
9,
977,
13,
30112,
6074,
35207,
10,
285,
187,
50262,
1286,
15,
3967,
2295,
643,
15,
3967,
10,
535,
50274,
4,
2594,
3944,
1358,
13880,
15,
16659,
15,
2061,
16,
14005,
16,
8608,
312,
49797,
4,
6082,
24856,
13362,
876,
187,
50274,
876,
13362,
876,
426,
1789,
24856,
13362,
876,
187,
187,
1826,
64,
8155,
64,
2437,
426,
5376,
18859,
35207,
187,
744,
64,
8155,
64,
2437,
426,
30112,
6074,
35207,
535,
187,
2437,
44904,
1371,
15499,
9,
6082,
2262,
187,
50274,
32488,
187,
50274,
6802,
5957,
247,
18925,
4216,
875,
10670,
15,
535,
50274,
510,
18925,
7688,
403,
7141,
275,
271,
20890,
33553,
43850,
64,
3550,
5190,
326,
8115,
187,
50274,
8155,
8303,
281,
247,
1618,
273,
20890,
9,
977,
13,
5203,
10,
5190,
11737,
1868,
835,
50276,
5190,
977,
5190,
187,
50274,
261,
247,
3268,
285,
253,
5024,
310,
13130,
342,
20890,
1968,
5190,
313,
74,
15,
70,
15,
253,
2715,
187,
50274,
4157,
5425,
13,
604,
824,
369,
2530,
481,
5220,
13,
323,
625,
5919,
26696,
267,
13,
323,
187,
50274,
15160,
3268,
20890,
89,
5190,
13,
247,
1618,
273,
43211,
310,
4934,
275,
187,
50274,
5190,
32514,
64,
3550,
60,
89,
62,
5190,
15,
743,
5024,
432,
3268,
20890,
66,
5190,
281,
187,
50274,
35360,
20890,
67,
5190,
2097,
326,
20890,
66,
5190,
7024,
327,
20890,
67,
5190,
15,
1310,
667,
5816,
187,
50274,
36379,
403,
1119,
13,
597,
403,
7141,
275,
20890,
33722,
5190,
13,
534,
310,
247,
187,
50274,
46717,
326,
8115,
10670,
281,
247,
1618,
273,
6095,
326,
497,
417,
187,
50274,
33850,
407,
667,
643,
10670,
15,
187,
50274,
32488,
535,
50274,
1545,
4772,
4478,
21920,
1286,
2262,
187,
50270,
1286,
15,
33553,
43850,
64,
3550,
426,
12166,
187,
50270,
1286,
15,
32514,
64,
3550,
426,
12166,
187,
50270,
1286,
15,
33722,
426,
12166,
535,
50274,
1545,
823,
64,
35360,
9,
1286,
13,
3268,
2262,
187,
50270,
32488,
4717,
253,
475,
35360,
11,
281,
253,
4216,
15,
535,
50270,
27,
881,
3268,
27,
1163,
2437,
30337,
8155,
18833,
19,
15,
25522,
15,
10548,
18859,
35207,
65,
187,
50254,
50274,
263,
1163,
2437,
30337,
8155,
18833,
19,
15,
25522,
15,
38,
1266,
6074,
35207,
65,
187,
50270,
32488,
187,
50270,
1286,
15,
33553,
43850,
64,
3550,
60,
35360,
62,
426,
8168,
187,
50270,
1286,
15,
32514,
64,
3550,
60,
35360,
62,
426,
8168,
187,
50270,
4,
1286,
15,
33722,
60,
35360,
62,
426,
8168,
535,
50274,
1545,
823,
64,
13057,
9,
1286,
13,
1269,
13,
340,
13,
5203,
30,
11336,
2262,
187,
50270,
32488,
4717,
271,
5024,
432,
3268,
475,
89,
11,
281,
3268,
475,
90,
11,
342,
253,
1677,
187,
50270,
11,
1968,
4556,
535,
50270,
27,
881,
1269,
27,
1163,
2437,
30337,
8155,
18833,
19,
15,
25522,
15,
10548,
18859,
35207,
65,
390,
187,
50261,
27,
2437,
30337,
8155,
18833,
19,
15,
25522,
15,
38,
1266,
6074,
35207,
65,
187,
50270,
27,
881,
340,
27,
1163,
2437,
30337,
8155,
18833,
19,
15,
25522,
15,
10548,
18859,
35207,
65,
390,
187,
50261,
27,
2437,
30337,
8155,
18833,
19,
15,
25522,
15,
38,
1266,
6074,
35207,
65,
187,
50270,
27,
881,
5203,
27,
20890,
1344,
5190,
390,
20890,
11336,
5190,
187,
50270,
32488,
187,
50270,
1286,
15,
33553,
43850,
64,
3550,
60,
89,
1570,
9691,
4464,
90,
13,
5203,
1228,
187,
50270,
4,
2709,
9297,
403,
4136,
13,
594,
320,
10182,
187,
50270,
338,
1269,
417,
275,
1881,
15,
32514,
64,
3550,
60,
90,
5218,
187,
50266,
1286,
15,
32514,
64,
3550,
60,
90,
1570,
9691,
9,
89,
10,
535,
50274,
1545,
823,
64,
33722,
9,
1286,
13,
3268,
13,
8284,
2262,
187,
50270,
32488,
187,
50270,
4717,
247,
5816,
475,
15684,
420,
11,
323,
253,
1677,
475,
35360,
4556,
535,
50270,
27,
881,
3268,
27,
1163,
2437,
30337,
8155,
18833,
19,
15,
25522,
15,
10548,
18859,
35207,
65,
187,
50254,
50274,
263,
1163,
2437,
30337,
8155,
18833,
19,
15,
25522,
15,
38,
1266,
6074,
35207,
65,
187,
50270,
27,
881,
8284,
27,
20890,
1344,
5190,
187,
50270,
32488,
187,
50270,
23173,
15,
13125,
2073,
6,
84,
5816,
2462,
83,
1383,
3268,
13,
8284,
10,
187,
50270,
1286,
15,
33722,
15,
1178,
6986,
9,
35360,
13,
544,
2498,
9691,
9,
15684,
420,
10,
535,
50274,
1545,
795,
250,
1087,
64,
8155,
9,
1286,
13,
940,
2262,
187,
50270,
2309,
25137,
84,
2462,
84,
8,
2462,
313,
8155,
15,
1590,
13,
940,
15,
4149,
10,
535,
50274,
1545,
30667,
64,
6219,
9,
1286,
13,
940,
13,
1268,
30,
18,
2262,
187,
50270,
32488,
17148,
84,
760,
247,
749,
10580,
32488,
187,
50270,
9252,
426,
544,
1286,
3333,
250,
1087,
64,
8155,
9,
8155,
9102,
187,
50270,
1542,
643,
13,
5203,
275,
1881,
15,
33553,
43850,
64,
3550,
60,
8155,
5218,
187,
50266,
8155,
426,
1881,
3333,
250,
1087,
64,
8155,
9,
977,
10,
187,
50266,
338,
5203,
310,
417,
8256,
27,
187,
50262,
8155,
426,
25137,
84,
544,
6,
84,
31258,
2462,
313,
8155,
13,
5203,
10,
187,
50266,
9252,
15,
9691,
2073,
50274,
8,
475,
1268,
559,
1213,
9,
8155,
1228,
187,
50266,
2377,
9252,
426,
1881,
15,
250,
1087,
64,
6219,
9,
977,
13,
1268,
559,
337,
10,
187,
50266,
2377,
84,
426,
749,
9252,
15,
9148,
2073,
61,
79,
3401,
187,
50266,
9252,
15,
31930,
9,
2377,
84,
60,
18,
27,
3291,
187,
50270,
2309,
18116,
79,
5983,
13956,
9,
9252,
10,
535,
50274,
1545,
281,
64,
5256,
9,
1286,
13,
269,
13,
17049,
64,
3431,
14063,
30,
5088,
2262,
187,
50270,
32488,
25191,
265,
247,
46082,
3453,
323,
253,
4216,
281,
253,
2530,
1873,
475,
71,
4556,
535,
50270,
2042,
475,
19259,
64,
3431,
14063,
11,
310,
873,
281,
20890,
5088,
5190,
13,
840,
512,
10670,
187,
50270,
3529,
403,
417,
7976,
327,
667,
643,
3268,
403,
37001,
15,
535,
50270,
27,
881,
269,
27,
556,
281,
1329,
20890,
3140,
5190,
14,
3022,
5871,
187,
50270,
27,
881,
17049,
64,
3431,
14063,
27,
20890,
10975,
5190,
187,
50270,
32488,
187,
50270,
3431,
14063,
426,
8168,
535,
50270,
71,
15,
6343,
1587,
11174,
1354,
21011,
1926,
79,
2807,
187,
50270,
1542,
940,
13,
3067,
84,
275,
1881,
15,
33553,
43850,
64,
3550,
15,
15565,
14850,
187,
50266,
338,
8472,
9,
324,
4305,
10,
2295,
470,
285,
417,
17049,
64,
3431,
14063,
27,
187,
50262,
3431,
14063,
15,
9691,
9,
8155,
10,
187,
50266,
1542,
643,
13,
5203,
275,
3067,
84,
27,
187,
50262,
338,
417,
5203,
310,
8256,
27,
187,
50258,
71,
15,
6343,
2073,
3,
6,
84,
3,
5204,
17280,
84,
3,
544,
1968,
568,
6,
84,
9686,
61,
79,
8,
2462,
187,
50254,
50274,
9,
8155,
15,
1590,
13,
643,
15,
1590,
13,
5203,
1228,
187,
50262,
7271,
27,
187,
50258,
71,
15,
6343,
2073,
3,
6,
84,
3,
5204,
17280,
84,
35343,
79,
8,
2462,
313,
8155,
15,
1590,
13,
643,
15,
1590,
1228,
187,
50270,
338,
417,
17049,
64,
3431,
14063,
285,
8472,
9,
3431,
14063,
10,
2239,
470,
27,
187,
50266,
71,
15,
6343,
2073,
2377,
10580,
33817,
1926,
79,
3401,
187,
50266,
71,
15,
6343,
2073,
1968,
426,
346,
6744,
14063,
35343,
79,
3401,
187,
50266,
71,
15,
6343,
2073,
17424,
4897,
426,
2502,
61,
79,
3401,
535,
50266,
1542,
940,
275,
33817,
27,
187,
50262,
71,
15,
6343,
2073,
3,
6,
84,
27898,
2462,
940,
15,
1590,
10,
187,
50262,
71,
15,
6343,
2073,
61,
79,
3401,
187,
50266,
71,
15,
6343,
2073,
889,
79,
3401,
187,
50270,
71,
15,
6343,
2073,
889,
79,
3401,
535,
50274,
1545,
17597,
64,
15227,
9,
1286,
2262,
187,
50270,
32488,
187,
50270,
6052,
630,
247,
17597,
3686,
273,
253,
4216,
15,
187,
50270,
27,
2309,
27,
329,
31343,
13,
253,
806,
3284,
273,
534,
310,
247,
1755,
11220,
20045,
187,
50261,
3550,
273,
10670,
13,
285,
253,
1273,
3284,
273,
534,
310,
247,
187,
50261,
3550,
273,
10670,
326,
2550,
320,
20045,
984,
597,
452,
187,
50261,
5574,
792,
21011,
285,
594,
830,
247,
5880,
15,
187,
50270,
32488,
187,
50270,
6870,
426,
8168,
187,
50270,
4,
10338,
247,
20126,
3491,
273,
253,
3067,
43850,
1618,
187,
50270,
267,
382,
426,
12166,
187,
50270,
1542,
465,
13,
362,
275,
1881,
15,
33553,
43850,
64,
3550,
15,
15565,
14850,
187,
50266,
267,
382,
60,
76,
62,
426,
362,
18297,
62,
187,
50270,
6050,
11793,
27,
187,
50266,
4,
2594,
752,
359,
476,
5386,
275,
436,
1408,
187,
50266,
936,
64,
12163,
426,
8168,
187,
50266,
1542,
465,
13,
362,
275,
1618,
9,
267,
382,
15,
15565,
6649,
18297,
5218,
187,
50262,
338,
417,
362,
27,
187,
50258,
936,
64,
12163,
15,
9691,
9,
76,
10,
187,
50258,
7555,
355,
382,
60,
76,
62,
187,
50266,
338,
417,
281,
64,
12163,
27,
187,
50262,
4,
1737,
434,
1669,
275,
355,
382,
313,
338,
2712,
10,
310,
247,
5880,
15,
187,
50262,
7054,
187,
50266,
4,
20004,
432,
253,
3067,
43850,
1618,
273,
2571,
187,
50266,
1542,
465,
13,
362,
275,
355,
382,
15,
15565,
14850,
187,
50262,
267,
382,
60,
76,
62,
426,
21810,
69,
13,
391,
10,
323,
277,
13,
391,
275,
362,
604,
277,
417,
275,
281,
64,
12163,
62,
187,
50266,
23173,
15,
13125,
2073,
46081,
281,
906,
27,
2462,
84,
1383,
187,
50254,
14412,
6,
84,
26607,
84,
18619,
2462,
313,
69,
15,
1590,
13,
277,
15,
4149,
10,
323,
277,
275,
281,
64,
12163,
3291,
187,
50266,
6870,
15,
31930,
9,
936,
64,
12163,
10,
187,
50270,
2309,
906,
13,
1618,
9,
267,
382,
15,
12305,
6649,
535,
50274,
1545,
4772,
250,
1087,
21920,
1286,
2262,
187,
50270,
32488,
35012,
318,
273,
253,
4216,
32488,
187,
50270,
9252,
426,
8168,
187,
50270,
1542,
940,
13,
3067,
84,
275,
1881,
15,
33553,
43850,
64,
3550,
15,
15565,
14850,
187,
50266,
9252,
15,
9691,
9,
1286,
15,
250,
1087,
64,
6219,
9,
8155,
1228,
187,
50270,
2309,
18116,
79,
5983,
13956,
9,
9252,
10,
535,
187,
1545,
1056,
64,
10580,
9,
69,
1346,
13,
6974,
5473,
6986,
46976,
187,
50274,
32488,
48468,
247,
18925,
4216,
432,
253,
1677,
10670,
15,
535,
50274,
27,
19484,
940,
84,
27,
247,
1618,
273,
10670,
187,
50274,
27,
881,
940,
84,
27,
1618,
273,
1163,
2437,
30337,
8155,
18833,
19,
15,
25522,
15,
10548,
18859,
35207,
65,
285,
187,
50261,
27,
2437,
30337,
8155,
18833,
19,
15,
25522,
15,
38,
1266,
6074,
35207,
65,
10872,
187,
50274,
27,
83,
881,
27,
247,
1163,
2437,
30337,
45864,
15499,
65,
4227,
187,
50274,
32488,
187,
50274,
29619,
426,
755,
64,
29619,
9,
29619,
10,
187,
50274,
10580,
426,
44904,
1371,
15499,
1082,
187,
50274,
33850,
426,
12166,
50276,
4,
8115,
4454,
281,
10894,
273,
313,
4149,
13,
940,
10,
11737,
1868,
535,
50274,
4,
806,
13,
1973,
253,
4216,
285,
1089,
562,
752,
434,
2530,
187,
50274,
1542,
940,
275,
940,
84,
27,
187,
50270,
10580,
15,
1911,
64,
35360,
9,
8155,
10,
535,
50270,
1542,
268,
275,
940,
15,
11404,
1487,
27,
187,
50266,
1590,
13,
2715,
426,
14390,
64,
1590,
64,
395,
64,
4149,
9,
81,
10,
187,
50266,
23173,
15,
13125,
2073,
4717,
281,
2530,
27,
2462,
84,
13,
2462,
84,
13,
2462,
84,
1383,
1416,
13,
2715,
13,
940,
10,
187,
50266,
33850,
15,
1178,
6986,
9,
1590,
13,
544,
2498,
9691,
4464,
4149,
13,
940,
1228,
535,
50274,
4,
1024,
1056,
253,
9297,
187,
50274,
1542,
940,
275,
940,
84,
27,
187,
50270,
36042,
426,
313,
8155,
15,
6321,
64,
36042,
1040,
940,
15,
13518,
64,
36042,
1040,
187,
50258,
8155,
15,
7973,
64,
36042,
1040,
940,
15,
3620,
64,
36042,
10,
187,
50270,
1542,
23169,
275,
4419,
27,
187,
50266,
14626,
27,
187,
50262,
2056,
5316,
426,
6974,
15,
2056,
5316,
9,
12250,
10,
187,
50266,
16829,
914,
19391,
8893,
4756,
27,
187,
50262,
4,
29373,
9800,
14,
9561,
604,
2550,
1239,
253,
2715,
187,
50262,
23173,
15,
28207,
2073,
16534,
417,
1239,
2715,
2462,
83,
428,
970,
1416,
760,
1383,
187,
50254,
50271,
12250,
10,
187,
50262,
1590,
426,
23169,
15,
9148,
43144,
17,
62,
187,
50262,
2056,
5316,
426,
6974,
15,
2056,
5316,
9,
1590,
10,
535,
50266,
1590,
426,
1111,
5316,
15,
2364,
50275,
4,
1083,
14,
968,
18917,
535,
50266,
25049,
426,
16708,
187,
50266,
338,
1416,
275,
2530,
27,
187,
50262,
1542,
2715,
13,
11716,
275,
2530,
60,
1590,
5218,
187,
50258,
14626,
27,
187,
50254,
8992,
426,
1111,
5316,
15,
8992,
9,
4149,
10,
187,
50258,
16829,
914,
19391,
8893,
4756,
27,
187,
50254,
8992,
426,
16708,
535,
50258,
338,
3761,
27,
187,
50254,
10580,
15,
1911,
64,
13057,
9,
8155,
13,
11716,
13,
23169,
10,
187,
50254,
25049,
426,
11793,
187,
50254,
7054,
187,
50266,
338,
417,
13373,
27,
187,
50262,
10580,
15,
1911,
64,
33722,
9,
8155,
13,
23169,
10,
187,
50274,
2309,
4216,
535,
187,
1545,
755,
64,
6820,
64,
69,
1346,
9,
69,
1346,
13,
940,
2262,
187,
50274,
32488,
6116,
2244,
1242,
6635,
247,
1618,
273,
10670,
432,
475,
69,
1346,
11,
326,
403,
187,
50274,
6820,
327,
475,
8155,
4556,
535,
50274,
27,
3575,
940,
84,
27,
247,
1618,
273,
10670,
187,
50274,
27,
3575,
940,
27,
247,
3268,
13,
3558,
273,
475,
69,
1346,
11,
323,
534,
359,
403,
6110,
187,
50274,
32488,
187,
50274,
338,
940,
417,
275,
940,
84,
27,
187,
50270,
22525,
3656,
4658,
5330,
2073,
28821,
3268,
2462,
83,
310,
417,
247,
3558,
686,
187,
50254,
50271,
8,
1171,
253,
1618,
8,
2462,
940,
15,
1590,
10,
187,
50274,
10580,
426,
1056,
64,
10580,
9,
69,
1346,
10,
535,
50274,
7955,
426,
544,
8155,
62,
50276,
4,
7976,
10670,
187,
50274,
85,
19095,
426,
4216,
15,
32514,
64,
3550,
60,
8155,
62,
50276,
4,
1618,
273,
7632,
359,
943,
16030,
535,
50274,
6050,
20591,
27,
187,
50270,
69,
426,
20591,
15,
9576,
1082,
187,
50270,
7955,
15,
9691,
9,
69,
10,
187,
50270,
1542,
18382,
275,
4216,
15,
32514,
64,
3550,
60,
69,
5218,
187,
50266,
338,
18382,
417,
275,
1305,
27,
187,
50262,
85,
19095,
15,
9691,
9,
45992,
10,
535,
50274,
7955,
15,
9576,
9,
17,
10,
50276,
4,
5386,
940,
432,
1305,
13,
369,
627,
281,
3657,
11968,
17417,
187,
50274,
2309,
1305,
535,
187,
1545,
755,
64,
17354,
64,
69,
1346,
9,
69,
1346,
13,
940,
2262,
187,
50274,
32488,
6116,
2244,
1242,
6635,
247,
1618,
273,
10670,
432,
475,
69,
1346,
11,
326,
403,
187,
50274,
17354,
407,
475,
8155,
4556,
535,
50274,
27,
3575,
940,
84,
27,
247,
1618,
273,
10670,
187,
50274,
27,
3575,
940,
27,
247,
3268,
13,
3558,
273,
475,
69,
1346,
11,
323,
534,
359,
403,
6110,
187,
50274,
32488,
187,
50274,
338,
940,
417,
275,
940,
84,
27,
187,
50270,
22525,
3656,
4658,
5330,
2073,
28821,
3268,
2462,
83,
310,
417,
247,
3558,
686,
187,
50254,
50271,
8,
1171,
253,
1618,
8,
2462,
940,
15,
1590,
10,
187,
50274,
10580,
426,
1056,
64,
10580,
9,
69,
1346,
10,
535,
50274,
12250,
426,
8168,
50276,
4,
2424,
10670,
187,
50274,
85,
19095,
426,
4216,
15,
33553,
43850,
64,
3550,
60,
8155,
62,
50276,
4,
1618,
273,
7632,
359,
943,
16030,
535,
50274,
6050,
20591,
27,
187,
50270,
69,
426,
20591,
15,
9576,
43144,
17,
62,
187,
50270,
12250,
15,
9691,
9,
69,
10,
187,
50270,
1542,
2063,
275,
4216,
15,
33553,
43850,
64,
3550,
60,
69,
5218,
187,
50266,
338,
2063,
417,
275,
23169,
27,
187,
50262,
85,
19095,
15,
9691,
9,
12787,
10,
535,
50274,
2309,
23169,
535,
187,
1545,
1056,
64,
8155,
9,
1590,
13,
2715,
13,
1401,
36830,
2262,
187,
50274,
32488,
187,
50274,
34,
16397,
1332,
323,
2403,
247,
940,
1677,
816,
247,
1416,
285,
2715,
15,
187,
50274,
32488,
187,
50274,
8774,
426,
41291,
8854,
15,
9576,
2073,
8774,
1383,
686,
23495,
11375,
323,
6010,
3401,
187,
50274,
6535,
426,
6365,
10433,
29759,
36830,
10,
187,
50274,
6535,
15,
1590,
426,
1416,
187,
50274,
6535,
15,
4149,
426,
2715,
187,
50274,
6535,
15,
8774,
426,
6010,
390,
686,
23495,
11375,
323,
6010,
8,
187,
50274,
2309,
30313,
9,
6535,
10,
187
] | # -*- coding: utf-8 -*-
#
# Copyright (C) 2012-2016 The Python Software Foundation.
# See LICENSE.txt and CONTRIBUTORS.txt.
#
"""PEP 376 implementation."""
from __future__ import unicode_literals
import base64
import codecs
import contextlib
import hashlib
import logging
import os
import posixpath
import sys
import zipimport
from . import DistlibException, resources
from .compat import StringIO
from .version import get_scheme, UnsupportedVersionError
from .metadata import Metadata, METADATA_FILENAME, WHEEL_METADATA_FILENAME
from .util import (parse_requirement, cached_property, parse_name_and_version,
read_exports, write_exports, CSVReader, CSVWriter)
__all__ = ['Distribution', 'BaseInstalledDistribution',
'InstalledDistribution', 'EggInfoDistribution',
'DistributionPath']
logger = logging.getLogger(__name__)
EXPORTS_FILENAME = 'pydist-exports.json'
COMMANDS_FILENAME = 'pydist-commands.json'
DIST_FILES = ('INSTALLER', METADATA_FILENAME, 'RECORD', 'REQUESTED',
'RESOURCES', EXPORTS_FILENAME, 'SHARED')
DISTINFO_EXT = '.dist-info'
class _Cache(object):
"""
A simple cache mapping names and .dist-info paths to distributions
"""
def __init__(self):
"""
Initialise an instance. There is normally one for each DistributionPath.
"""
self.name = {}
self.path = {}
self.generated = False
def clear(self):
"""
Clear the cache, setting it to its initial state.
"""
self.name.clear()
self.path.clear()
self.generated = False
def add(self, dist):
"""
Add a distribution to the cache.
:param dist: The distribution to add.
"""
if dist.path not in self.path:
self.path[dist.path] = dist
self.name.setdefault(dist.key, []).append(dist)
class DistributionPath(object):
"""
Represents a set of distributions installed on a path (typically sys.path).
"""
def __init__(self, path=None, include_egg=False):
"""
Create an instance from a path, optionally including legacy (distutils/
setuptools/distribute) distributions.
:param path: The path to use, as a list of directories. If not specified,
sys.path is used.
:param include_egg: If True, this instance will look for and return legacy
distributions as well as those based on PEP 376.
"""
if path is None:
path = sys.path
self.path = path
self._include_dist = True
self._include_egg = include_egg
self._cache = _Cache()
self._cache_egg = _Cache()
self._cache_enabled = True
self._scheme = get_scheme('default')
def _get_cache_enabled(self):
return self._cache_enabled
def _set_cache_enabled(self, value):
self._cache_enabled = value
cache_enabled = property(_get_cache_enabled, _set_cache_enabled)
def clear_cache(self):
"""
Clears the internal cache.
"""
self._cache.clear()
self._cache_egg.clear()
def _yield_distributions(self):
"""
Yield .dist-info and/or .egg(-info) distributions.
"""
# We need to check if we've seen some resources already, because on
# some Linux systems (e.g. some Debian/Ubuntu variants) there are
# symlinks which alias other files in the environment.
seen = set()
for path in self.path:
finder = resources.finder_for_path(path)
if finder is None:
continue
r = finder.find('')
if not r or not r.is_container:
continue
rset = sorted(r.resources)
for entry in rset:
r = finder.find(entry)
if not r or r.path in seen:
continue
if self._include_dist and entry.endswith(DISTINFO_EXT):
possible_filenames = [METADATA_FILENAME, WHEEL_METADATA_FILENAME]
for metadata_filename in possible_filenames:
metadata_path = posixpath.join(entry, metadata_filename)
pydist = finder.find(metadata_path)
if pydist:
break
else:
continue
with contextlib.closing(pydist.as_stream()) as stream:
metadata = Metadata(fileobj=stream, scheme='legacy')
logger.debug('Found %s', r.path)
seen.add(r.path)
yield new_dist_class(r.path, metadata=metadata,
env=self)
elif self._include_egg and entry.endswith(('.egg-info',
'.egg')):
logger.debug('Found %s', r.path)
seen.add(r.path)
yield old_dist_class(r.path, self)
def _generate_cache(self):
"""
Scan the path for distributions and populate the cache with
those that are found.
"""
gen_dist = not self._cache.generated
gen_egg = self._include_egg and not self._cache_egg.generated
if gen_dist or gen_egg:
for dist in self._yield_distributions():
if isinstance(dist, InstalledDistribution):
self._cache.add(dist)
else:
self._cache_egg.add(dist)
if gen_dist:
self._cache.generated = True
if gen_egg:
self._cache_egg.generated = True
@classmethod
def distinfo_dirname(cls, name, version):
"""
The *name* and *version* parameters are converted into their
filename-escaped form, i.e. any ``'-'`` characters are replaced
with ``'_'`` other than the one in ``'dist-info'`` and the one
separating the name from the version number.
:parameter name: is converted to a standard distribution name by replacing
any runs of non- alphanumeric characters with a single
``'-'``.
:type name: string
:parameter version: is converted to a standard version string. Spaces
become dots, and all other non-alphanumeric characters
(except dots) become dashes, with runs of multiple
dashes condensed to a single dash.
:type version: string
:returns: directory name
:rtype: string"""
name = name.replace('-', '_')
return '-'.join([name, version]) + DISTINFO_EXT
def get_distributions(self):
"""
Provides an iterator that looks for distributions and returns
:class:`InstalledDistribution` or
:class:`EggInfoDistribution` instances for each one of them.
:rtype: iterator of :class:`InstalledDistribution` and
:class:`EggInfoDistribution` instances
"""
if not self._cache_enabled:
for dist in self._yield_distributions():
yield dist
else:
self._generate_cache()
for dist in self._cache.path.values():
yield dist
if self._include_egg:
for dist in self._cache_egg.path.values():
yield dist
def get_distribution(self, name):
"""
Looks for a named distribution on the path.
This function only returns the first result found, as no more than one
value is expected. If nothing is found, ``None`` is returned.
:rtype: :class:`InstalledDistribution`, :class:`EggInfoDistribution`
or ``None``
"""
result = None
name = name.lower()
if not self._cache_enabled:
for dist in self._yield_distributions():
if dist.key == name:
result = dist
break
else:
self._generate_cache()
if name in self._cache.name:
result = self._cache.name[name][0]
elif self._include_egg and name in self._cache_egg.name:
result = self._cache_egg.name[name][0]
return result
def provides_distribution(self, name, version=None):
"""
Iterates over all distributions to find which distributions provide *name*.
If a *version* is provided, it will be used to filter the results.
This function only returns the first result found, since no more than
one values are expected. If the directory is not found, returns ``None``.
:parameter version: a version specifier that indicates the version
required, conforming to the format in ``PEP-345``
:type name: string
:type version: string
"""
matcher = None
if not version is None:
try:
matcher = self._scheme.matcher('%s (%s)' % (name, version))
except ValueError:
raise DistlibException('invalid name or version: %r, %r' %
(name, version))
for dist in self.get_distributions():
provided = dist.provides
for p in provided:
p_name, p_ver = parse_name_and_version(p)
if matcher is None:
if p_name == name:
yield dist
break
else:
if p_name == name and matcher.match(p_ver):
yield dist
break
def get_file_path(self, name, relative_path):
"""
Return the path to a resource file.
"""
dist = self.get_distribution(name)
if dist is None:
raise LookupError('no distribution named %r found' % name)
return dist.get_resource_path(relative_path)
def get_exported_entries(self, category, name=None):
"""
Return all of the exported entries in a particular category.
:param category: The category to search for entries.
:param name: If specified, only entries with that name are returned.
"""
for dist in self.get_distributions():
r = dist.exports
if category in r:
d = r[category]
if name is not None:
if name in d:
yield d[name]
else:
for v in d.values():
yield v
class Distribution(object):
"""
A base class for distributions, whether installed or from indexes.
Either way, it must have some metadata, so that's all that's needed
for construction.
"""
build_time_dependency = False
"""
Set to True if it's known to be only a build-time dependency (i.e.
not needed after installation).
"""
requested = False
"""A boolean that indicates whether the ``REQUESTED`` metadata file is
present (in other words, whether the package was installed by user
request or it was installed as a dependency)."""
def __init__(self, metadata):
"""
Initialise an instance.
:param metadata: The instance of :class:`Metadata` describing this
distribution.
"""
self.metadata = metadata
self.name = metadata.name
self.key = self.name.lower() # for case-insensitive comparisons
self.version = metadata.version
self.locator = None
self.digest = None
self.extras = None # additional features requested
self.context = None # environment marker overrides
self.download_urls = set()
self.digests = {}
@property
def source_url(self):
"""
The source archive download URL for this distribution.
"""
return self.metadata.source_url
download_url = source_url # Backward compatibility
@property
def name_and_version(self):
"""
A utility property which displays the name and version in parentheses.
"""
return '%s (%s)' % (self.name, self.version)
@property
def provides(self):
"""
A set of distribution names and versions provided by this distribution.
:return: A set of "name (version)" strings.
"""
plist = self.metadata.provides
s = '%s (%s)' % (self.name, self.version)
if s not in plist:
plist.append(s)
return plist
def _get_requirements(self, req_attr):
md = self.metadata
logger.debug('Getting requirements from metadata %r', md.todict())
reqts = getattr(md, req_attr)
return set(md.get_requirements(reqts, extras=self.extras,
env=self.context))
@property
def run_requires(self):
return self._get_requirements('run_requires')
@property
def meta_requires(self):
return self._get_requirements('meta_requires')
@property
def build_requires(self):
return self._get_requirements('build_requires')
@property
def test_requires(self):
return self._get_requirements('test_requires')
@property
def dev_requires(self):
return self._get_requirements('dev_requires')
def matches_requirement(self, req):
"""
Say if this instance matches (fulfills) a requirement.
:param req: The requirement to match.
:rtype req: str
:return: True if it matches, else False.
"""
# Requirement may contain extras - parse to lose those
# from what's passed to the matcher
r = parse_requirement(req)
scheme = get_scheme(self.metadata.scheme)
try:
matcher = scheme.matcher(r.requirement)
except UnsupportedVersionError:
# XXX compat-mode if cannot read the version
logger.warning('could not read version %r - using name only',
req)
name = req.split()[0]
matcher = scheme.matcher(name)
name = matcher.key # case-insensitive
result = False
for p in self.provides:
p_name, p_ver = parse_name_and_version(p)
if p_name != name:
continue
try:
result = matcher.match(p_ver)
break
except UnsupportedVersionError:
pass
return result
def __repr__(self):
"""
Return a textual representation of this instance,
"""
if self.source_url:
suffix = ' [%s]' % self.source_url
else:
suffix = ''
return '<Distribution %s (%s)%s>' % (self.name, self.version, suffix)
def __eq__(self, other):
"""
See if this distribution is the same as another.
:param other: The distribution to compare with. To be equal to one
another. distributions must have the same type, name,
version and source_url.
:return: True if it is the same, else False.
"""
if type(other) is not type(self):
result = False
else:
result = (self.name == other.name and
self.version == other.version and
self.source_url == other.source_url)
return result
def __hash__(self):
"""
Compute hash in a way which matches the equality test.
"""
return hash(self.name) + hash(self.version) + hash(self.source_url)
class BaseInstalledDistribution(Distribution):
"""
This is the base class for installed distributions (whether PEP 376 or
legacy).
"""
hasher = None
def __init__(self, metadata, path, env=None):
"""
Initialise an instance.
:param metadata: An instance of :class:`Metadata` which describes the
distribution. This will normally have been initialised
from a metadata file in the ``path``.
:param path: The path of the ``.dist-info`` or ``.egg-info``
directory for the distribution.
:param env: This is normally the :class:`DistributionPath`
instance where this distribution was found.
"""
super(BaseInstalledDistribution, self).__init__(metadata)
self.path = path
self.dist_path = env
def get_hash(self, data, hasher=None):
"""
Get the hash of some data, using a particular hash algorithm, if
specified.
:param data: The data to be hashed.
:type data: bytes
:param hasher: The name of a hash implementation, supported by hashlib,
or ``None``. Examples of valid values are ``'sha1'``,
``'sha224'``, ``'sha384'``, '``sha256'``, ``'md5'`` and
``'sha512'``. If no hasher is specified, the ``hasher``
attribute of the :class:`InstalledDistribution` instance
is used. If the hasher is determined to be ``None``, MD5
is used as the hashing algorithm.
:returns: The hash of the data. If a hasher was explicitly specified,
the returned hash will be prefixed with the specified hasher
followed by '='.
:rtype: str
"""
if hasher is None:
hasher = self.hasher
if hasher is None:
hasher = hashlib.md5
prefix = ''
else:
hasher = getattr(hashlib, hasher)
prefix = '%s=' % self.hasher
digest = hasher(data).digest()
digest = base64.urlsafe_b64encode(digest).rstrip(b'=').decode('ascii')
return '%s%s' % (prefix, digest)
class InstalledDistribution(BaseInstalledDistribution):
"""
Created with the *path* of the ``.dist-info`` directory provided to the
constructor. It reads the metadata contained in ``pydist.json`` when it is
instantiated., or uses a passed in Metadata instance (useful for when
dry-run mode is being used).
"""
hasher = 'sha256'
def __init__(self, path, metadata=None, env=None):
self.finder = finder = resources.finder_for_path(path)
if finder is None:
import pdb; pdb.set_trace ()
if env and env._cache_enabled and path in env._cache.path:
metadata = env._cache.path[path].metadata
elif metadata is None:
r = finder.find(METADATA_FILENAME)
# Temporary - for Wheel 0.23 support
if r is None:
r = finder.find(WHEEL_METADATA_FILENAME)
# Temporary - for legacy support
if r is None:
r = finder.find('METADATA')
if r is None:
raise ValueError('no %s found in %s' % (METADATA_FILENAME,
path))
with contextlib.closing(r.as_stream()) as stream:
metadata = Metadata(fileobj=stream, scheme='legacy')
super(InstalledDistribution, self).__init__(metadata, path, env)
if env and env._cache_enabled:
env._cache.add(self)
try:
r = finder.find('REQUESTED')
except AttributeError:
import pdb; pdb.set_trace ()
self.requested = r is not None
def __repr__(self):
return '<InstalledDistribution %r %s at %r>' % (
self.name, self.version, self.path)
def __str__(self):
return "%s %s" % (self.name, self.version)
def _get_records(self):
"""
Get the list of installed files for the distribution
:return: A list of tuples of path, hash and size. Note that hash and
size might be ``None`` for some entries. The path is exactly
as stored in the file (which is as in PEP 376).
"""
results = []
r = self.get_distinfo_resource('RECORD')
with contextlib.closing(r.as_stream()) as stream:
with CSVReader(stream=stream) as record_reader:
# Base location is parent dir of .dist-info dir
#base_location = os.path.dirname(self.path)
#base_location = os.path.abspath(base_location)
for row in record_reader:
missing = [None for i in range(len(row), 3)]
path, checksum, size = row + missing
#if not os.path.isabs(path):
# path = path.replace('/', os.sep)
# path = os.path.join(base_location, path)
results.append((path, checksum, size))
return results
@cached_property
def exports(self):
"""
Return the information exported by this distribution.
:return: A dictionary of exports, mapping an export category to a dict
of :class:`ExportEntry` instances describing the individual
export entries, and keyed by name.
"""
result = {}
r = self.get_distinfo_resource(EXPORTS_FILENAME)
if r:
result = self.read_exports()
return result
def read_exports(self):
"""
Read exports data from a file in .ini format.
:return: A dictionary of exports, mapping an export category to a list
of :class:`ExportEntry` instances describing the individual
export entries.
"""
result = {}
r = self.get_distinfo_resource(EXPORTS_FILENAME)
if r:
with contextlib.closing(r.as_stream()) as stream:
result = read_exports(stream)
return result
def write_exports(self, exports):
"""
Write a dictionary of exports to a file in .ini format.
:param exports: A dictionary of exports, mapping an export category to
a list of :class:`ExportEntry` instances describing the
individual export entries.
"""
rf = self.get_distinfo_file(EXPORTS_FILENAME)
with open(rf, 'w') as f:
write_exports(exports, f)
def get_resource_path(self, relative_path):
"""
NOTE: This API may change in the future.
Return the absolute path to a resource file with the given relative
path.
:param relative_path: The path, relative to .dist-info, of the resource
of interest.
:return: The absolute path where the resource is to be found.
"""
r = self.get_distinfo_resource('RESOURCES')
with contextlib.closing(r.as_stream()) as stream:
with CSVReader(stream=stream) as resources_reader:
for relative, destination in resources_reader:
if relative == relative_path:
return destination
raise KeyError('no resource file with relative path %r '
'is installed' % relative_path)
def list_installed_files(self):
"""
Iterates over the ``RECORD`` entries and returns a tuple
``(path, hash, size)`` for each line.
:returns: iterator of (path, hash, size)
"""
for result in self._get_records():
yield result
def write_installed_files(self, paths, prefix, dry_run=False):
"""
Writes the ``RECORD`` file, using the ``paths`` iterable passed in. Any
existing ``RECORD`` file is silently overwritten.
prefix is used to determine when to write absolute paths.
"""
prefix = os.path.join(prefix, '')
base = os.path.dirname(self.path)
base_under_prefix = base.startswith(prefix)
base = os.path.join(base, '')
record_path = self.get_distinfo_file('RECORD')
logger.info('creating %s', record_path)
if dry_run:
return None
with CSVWriter(record_path) as writer:
for path in paths:
if os.path.isdir(path) or path.endswith(('.pyc', '.pyo')):
# do not put size and hash, as in PEP-376
hash_value = size = ''
else:
size = '%d' % os.path.getsize(path)
with open(path, 'rb') as fp:
hash_value = self.get_hash(fp.read())
if path.startswith(base) or (base_under_prefix and
path.startswith(prefix)):
path = os.path.relpath(path, base)
writer.writerow((path, hash_value, size))
# add the RECORD file itself
if record_path.startswith(base):
record_path = os.path.relpath(record_path, base)
writer.writerow((record_path, '', ''))
return record_path
def check_installed_files(self):
"""
Checks that the hashes and sizes of the files in ``RECORD`` are
matched by the files themselves. Returns a (possibly empty) list of
mismatches. Each entry in the mismatch list will be a tuple consisting
of the path, 'exists', 'size' or 'hash' according to what didn't match
(existence is checked first, then size, then hash), the expected
value and the actual value.
"""
mismatches = []
base = os.path.dirname(self.path)
record_path = self.get_distinfo_file('RECORD')
for path, hash_value, size in self.list_installed_files():
if not os.path.isabs(path):
path = os.path.join(base, path)
if path == record_path:
continue
if not os.path.exists(path):
mismatches.append((path, 'exists', True, False))
elif os.path.isfile(path):
actual_size = str(os.path.getsize(path))
if size and actual_size != size:
mismatches.append((path, 'size', size, actual_size))
elif hash_value:
if '=' in hash_value:
hasher = hash_value.split('=', 1)[0]
else:
hasher = None
with open(path, 'rb') as f:
actual_hash = self.get_hash(f.read(), hasher)
if actual_hash != hash_value:
mismatches.append((path, 'hash', hash_value, actual_hash))
return mismatches
@cached_property
def shared_locations(self):
"""
A dictionary of shared locations whose keys are in the set 'prefix',
'purelib', 'platlib', 'scripts', 'headers', 'data' and 'namespace'.
The corresponding value is the absolute path of that category for
this distribution, and takes into account any paths selected by the
user at installation time (e.g. via command-line arguments). In the
case of the 'namespace' key, this would be a list of absolute paths
for the roots of namespace packages in this distribution.
The first time this property is accessed, the relevant information is
read from the SHARED file in the .dist-info directory.
"""
result = {}
shared_path = os.path.join(self.path, 'SHARED')
if os.path.isfile(shared_path):
with codecs.open(shared_path, 'r', encoding='utf-8') as f:
lines = f.read().splitlines()
for line in lines:
key, value = line.split('=', 1)
if key == 'namespace':
result.setdefault(key, []).append(value)
else:
result[key] = value
return result
def write_shared_locations(self, paths, dry_run=False):
"""
Write shared location information to the SHARED file in .dist-info.
:param paths: A dictionary as described in the documentation for
:meth:`shared_locations`.
:param dry_run: If True, the action is logged but no file is actually
written.
:return: The path of the file written to.
"""
shared_path = os.path.join(self.path, 'SHARED')
logger.info('creating %s', shared_path)
if dry_run:
return None
lines = []
for key in ('prefix', 'lib', 'headers', 'scripts', 'data'):
path = paths[key]
if os.path.isdir(paths[key]):
lines.append('%s=%s' % (key, path))
for ns in paths.get('namespace', ()):
lines.append('namespace=%s' % ns)
with codecs.open(shared_path, 'w', encoding='utf-8') as f:
f.write('\n'.join(lines))
return shared_path
def get_distinfo_resource(self, path):
if path not in DIST_FILES:
raise DistlibException('invalid path for a dist-info file: '
'%r at %r' % (path, self.path))
finder = resources.finder_for_path(self.path)
if finder is None:
raise DistlibException('Unable to get a finder for %s' % self.path)
return finder.find(path)
def get_distinfo_file(self, path):
"""
Returns a path located under the ``.dist-info`` directory. Returns a
string representing the path.
:parameter path: a ``'/'``-separated path relative to the
``.dist-info`` directory or an absolute path;
If *path* is an absolute path and doesn't start
with the ``.dist-info`` directory path,
a :class:`DistlibException` is raised
:type path: str
:rtype: str
"""
# Check if it is an absolute path # XXX use relpath, add tests
if path.find(os.sep) >= 0:
# it's an absolute path?
distinfo_dirname, path = path.split(os.sep)[-2:]
if distinfo_dirname != self.path.split(os.sep)[-1]:
raise DistlibException(
'dist-info file %r does not belong to the %r %s '
'distribution' % (path, self.name, self.version))
# The file must be relative
if path not in DIST_FILES:
raise DistlibException('invalid path for a dist-info file: '
'%r at %r' % (path, self.path))
return os.path.join(self.path, path)
def list_distinfo_files(self):
"""
Iterates over the ``RECORD`` entries and returns paths for each line if
the path is pointing to a file located in the ``.dist-info`` directory
or one of its subdirectories.
:returns: iterator of paths
"""
base = os.path.dirname(self.path)
for path, checksum, size in self._get_records():
# XXX add separator or use real relpath algo
if not os.path.isabs(path):
path = os.path.join(base, path)
if path.startswith(self.path):
yield path
def __eq__(self, other):
return (isinstance(other, InstalledDistribution) and
self.path == other.path)
# See http://docs.python.org/reference/datamodel#object.__hash__
__hash__ = object.__hash__
class EggInfoDistribution(BaseInstalledDistribution):
"""Created with the *path* of the ``.egg-info`` directory or file provided
to the constructor. It reads the metadata contained in the file itself, or
if the given path happens to be a directory, the metadata is read from the
file ``PKG-INFO`` under that directory."""
requested = True # as we have no way of knowing, assume it was
shared_locations = {}
def __init__(self, path, env=None):
def set_name_and_version(s, n, v):
s.name = n
s.key = n.lower() # for case-insensitive comparisons
s.version = v
self.path = path
self.dist_path = env
if env and env._cache_enabled and path in env._cache_egg.path:
metadata = env._cache_egg.path[path].metadata
set_name_and_version(self, metadata.name, metadata.version)
else:
metadata = self._get_metadata(path)
# Need to be set before caching
set_name_and_version(self, metadata.name, metadata.version)
if env and env._cache_enabled:
env._cache_egg.add(self)
super(EggInfoDistribution, self).__init__(metadata, path, env)
def _get_metadata(self, path):
requires = None
def parse_requires_data(data):
"""Create a list of dependencies from a requires.txt file.
*data*: the contents of a setuptools-produced requires.txt file.
"""
reqs = []
lines = data.splitlines()
for line in lines:
line = line.strip()
if line.startswith('['):
logger.warning('Unexpected line: quitting requirement scan: %r',
line)
break
r = parse_requirement(line)
if not r:
logger.warning('Not recognised as a requirement: %r', line)
continue
if r.extras:
logger.warning('extra requirements in requires.txt are '
'not supported')
if not r.constraints:
reqs.append(r.name)
else:
cons = ', '.join('%s%s' % c for c in r.constraints)
reqs.append('%s (%s)' % (r.name, cons))
return reqs
def parse_requires_path(req_path):
"""Create a list of dependencies from a requires.txt file.
*req_path*: the path to a setuptools-produced requires.txt file.
"""
reqs = []
try:
with codecs.open(req_path, 'r', 'utf-8') as fp:
reqs = parse_requires_data(fp.read())
except IOError:
pass
return reqs
if path.endswith('.egg'):
if os.path.isdir(path):
meta_path = os.path.join(path, 'EGG-INFO', 'PKG-INFO')
metadata = Metadata(path=meta_path, scheme='legacy')
req_path = os.path.join(path, 'EGG-INFO', 'requires.txt')
requires = parse_requires_path(req_path)
else:
# FIXME handle the case where zipfile is not available
zipf = zipimport.zipimporter(path)
fileobj = StringIO(
zipf.get_data('EGG-INFO/PKG-INFO').decode('utf8'))
metadata = Metadata(fileobj=fileobj, scheme='legacy')
try:
data = zipf.get_data('EGG-INFO/requires.txt')
requires = parse_requires_data(data.decode('utf-8'))
except IOError:
requires = None
elif path.endswith('.egg-info'):
if os.path.isdir(path):
req_path = os.path.join(path, 'requires.txt')
requires = parse_requires_path(req_path)
path = os.path.join(path, 'PKG-INFO')
metadata = Metadata(path=path, scheme='legacy')
else:
raise DistlibException('path must end with .egg-info or .egg, '
'got %r' % path)
if requires:
metadata.add_requirements(requires)
return metadata
def __repr__(self):
return '<EggInfoDistribution %r %s at %r>' % (
self.name, self.version, self.path)
def __str__(self):
return "%s %s" % (self.name, self.version)
def check_installed_files(self):
"""
Checks that the hashes and sizes of the files in ``RECORD`` are
matched by the files themselves. Returns a (possibly empty) list of
mismatches. Each entry in the mismatch list will be a tuple consisting
of the path, 'exists', 'size' or 'hash' according to what didn't match
(existence is checked first, then size, then hash), the expected
value and the actual value.
"""
mismatches = []
record_path = os.path.join(self.path, 'installed-files.txt')
if os.path.exists(record_path):
for path, _, _ in self.list_installed_files():
if path == record_path:
continue
if not os.path.exists(path):
mismatches.append((path, 'exists', True, False))
return mismatches
def list_installed_files(self):
"""
Iterates over the ``installed-files.txt`` entries and returns a tuple
``(path, hash, size)`` for each line.
:returns: a list of (path, hash, size)
"""
def _md5(path):
f = open(path, 'rb')
try:
content = f.read()
finally:
f.close()
return hashlib.md5(content).hexdigest()
def _size(path):
return os.stat(path).st_size
record_path = os.path.join(self.path, 'installed-files.txt')
result = []
if os.path.exists(record_path):
with codecs.open(record_path, 'r', encoding='utf-8') as f:
for line in f:
line = line.strip()
p = os.path.normpath(os.path.join(self.path, line))
# "./" is present as a marker between installed files
# and installation metadata files
if not os.path.exists(p):
logger.warning('Non-existent file: %s', p)
if p.endswith(('.pyc', '.pyo')):
continue
#otherwise fall through and fail
if not os.path.isdir(p):
result.append((p, _md5(p), _size(p)))
result.append((record_path, None, None))
return result
def list_distinfo_files(self, absolute=False):
"""
Iterates over the ``installed-files.txt`` entries and returns paths for
each line if the path is pointing to a file located in the
``.egg-info`` directory or one of its subdirectories.
:parameter absolute: If *absolute* is ``True``, each returned path is
transformed into a local absolute path. Otherwise the
raw value from ``installed-files.txt`` is returned.
:type absolute: boolean
:returns: iterator of paths
"""
record_path = os.path.join(self.path, 'installed-files.txt')
skip = True
with codecs.open(record_path, 'r', encoding='utf-8') as f:
for line in f:
line = line.strip()
if line == './':
skip = False
continue
if not skip:
p = os.path.normpath(os.path.join(self.path, line))
if p.startswith(self.path):
if absolute:
yield p
else:
yield line
def __eq__(self, other):
return (isinstance(other, EggInfoDistribution) and
self.path == other.path)
# See http://docs.python.org/reference/datamodel#object.__hash__
__hash__ = object.__hash__
new_dist_class = InstalledDistribution
old_dist_class = EggInfoDistribution
class DependencyGraph(object):
"""
Represents a dependency graph between distributions.
The dependency relationships are stored in an ``adjacency_list`` that maps
distributions to a list of ``(other, label)`` tuples where ``other``
is a distribution and the edge is labeled with ``label`` (i.e. the version
specifier, if such was provided). Also, for more efficient traversal, for
every distribution ``x``, a list of predecessors is kept in
``reverse_list[x]``. An edge from distribution ``a`` to
distribution ``b`` means that ``a`` depends on ``b``. If any missing
dependencies are found, they are stored in ``missing``, which is a
dictionary that maps distributions to a list of requirements that were not
provided by any other distributions.
"""
def __init__(self):
self.adjacency_list = {}
self.reverse_list = {}
self.missing = {}
def add_distribution(self, distribution):
"""Add the *distribution* to the graph.
:type distribution: :class:`distutils2.database.InstalledDistribution`
or :class:`distutils2.database.EggInfoDistribution`
"""
self.adjacency_list[distribution] = []
self.reverse_list[distribution] = []
#self.missing[distribution] = []
def add_edge(self, x, y, label=None):
"""Add an edge from distribution *x* to distribution *y* with the given
*label*.
:type x: :class:`distutils2.database.InstalledDistribution` or
:class:`distutils2.database.EggInfoDistribution`
:type y: :class:`distutils2.database.InstalledDistribution` or
:class:`distutils2.database.EggInfoDistribution`
:type label: ``str`` or ``None``
"""
self.adjacency_list[x].append((y, label))
# multiple edges are allowed, so be careful
if x not in self.reverse_list[y]:
self.reverse_list[y].append(x)
def add_missing(self, distribution, requirement):
"""
Add a missing *requirement* for the given *distribution*.
:type distribution: :class:`distutils2.database.InstalledDistribution`
or :class:`distutils2.database.EggInfoDistribution`
:type requirement: ``str``
"""
logger.debug('%s missing %r', distribution, requirement)
self.missing.setdefault(distribution, []).append(requirement)
def _repr_dist(self, dist):
return '%s %s' % (dist.name, dist.version)
def repr_node(self, dist, level=1):
"""Prints only a subgraph"""
output = [self._repr_dist(dist)]
for other, label in self.adjacency_list[dist]:
dist = self._repr_dist(other)
if label is not None:
dist = '%s [%s]' % (dist, label)
output.append(' ' * level + str(dist))
suboutput = self.repr_node(other, level + 1)
subs = suboutput.split('\n')
output.extend(subs[1:])
return '\n'.join(output)
def to_dot(self, f, skip_disconnected=True):
"""Writes a DOT output for the graph to the provided file *f*.
If *skip_disconnected* is set to ``True``, then all distributions
that are not dependent on any other distribution are skipped.
:type f: has to support ``file``-like operations
:type skip_disconnected: ``bool``
"""
disconnected = []
f.write("digraph dependencies {\n")
for dist, adjs in self.adjacency_list.items():
if len(adjs) == 0 and not skip_disconnected:
disconnected.append(dist)
for other, label in adjs:
if not label is None:
f.write('"%s" -> "%s" [label="%s"]\n' %
(dist.name, other.name, label))
else:
f.write('"%s" -> "%s"\n' % (dist.name, other.name))
if not skip_disconnected and len(disconnected) > 0:
f.write('subgraph disconnected {\n')
f.write('label = "Disconnected"\n')
f.write('bgcolor = red\n')
for dist in disconnected:
f.write('"%s"' % dist.name)
f.write('\n')
f.write('}\n')
f.write('}\n')
def topological_sort(self):
"""
Perform a topological sort of the graph.
:return: A tuple, the first element of which is a topologically sorted
list of distributions, and the second element of which is a
list of distributions that cannot be sorted because they have
circular dependencies and so form a cycle.
"""
result = []
# Make a shallow copy of the adjacency list
alist = {}
for k, v in self.adjacency_list.items():
alist[k] = v[:]
while True:
# See what we can remove in this run
to_remove = []
for k, v in list(alist.items())[:]:
if not v:
to_remove.append(k)
del alist[k]
if not to_remove:
# What's left in alist (if anything) is a cycle.
break
# Remove from the adjacency list of others
for k, v in alist.items():
alist[k] = [(d, r) for d, r in v if d not in to_remove]
logger.debug('Moving to result: %s',
['%s (%s)' % (d.name, d.version) for d in to_remove])
result.extend(to_remove)
return result, list(alist.keys())
def __repr__(self):
"""Representation of the graph"""
output = []
for dist, adjs in self.adjacency_list.items():
output.append(self.repr_node(dist))
return '\n'.join(output)
def make_graph(dists, scheme='default'):
"""Makes a dependency graph from the given distributions.
:parameter dists: a list of distributions
:type dists: list of :class:`distutils2.database.InstalledDistribution` and
:class:`distutils2.database.EggInfoDistribution` instances
:rtype: a :class:`DependencyGraph` instance
"""
scheme = get_scheme(scheme)
graph = DependencyGraph()
provided = {} # maps names to lists of (version, dist) tuples
# first, build the graph and find out what's provided
for dist in dists:
graph.add_distribution(dist)
for p in dist.provides:
name, version = parse_name_and_version(p)
logger.debug('Add to provided: %s, %s, %s', name, version, dist)
provided.setdefault(name, []).append((version, dist))
# now make the edges
for dist in dists:
requires = (dist.run_requires | dist.meta_requires |
dist.build_requires | dist.dev_requires)
for req in requires:
try:
matcher = scheme.matcher(req)
except UnsupportedVersionError:
# XXX compat-mode if cannot read the version
logger.warning('could not read version %r - using name only',
req)
name = req.split()[0]
matcher = scheme.matcher(name)
name = matcher.key # case-insensitive
matched = False
if name in provided:
for version, provider in provided[name]:
try:
match = matcher.match(version)
except UnsupportedVersionError:
match = False
if match:
graph.add_edge(dist, provider, req)
matched = True
break
if not matched:
graph.add_missing(dist, req)
return graph
def get_dependent_dists(dists, dist):
"""Recursively generate a list of distributions from *dists* that are
dependent on *dist*.
:param dists: a list of distributions
:param dist: a distribution, member of *dists* for which we are interested
"""
if dist not in dists:
raise DistlibException('given distribution %r is not a member '
'of the list' % dist.name)
graph = make_graph(dists)
dep = [dist] # dependent distributions
todo = graph.reverse_list[dist] # list of nodes we should inspect
while todo:
d = todo.pop()
dep.append(d)
for succ in graph.reverse_list[d]:
if succ not in dep:
todo.append(succ)
dep.pop(0) # remove dist from dep, was there to prevent infinite loops
return dep
def get_required_dists(dists, dist):
"""Recursively generate a list of distributions from *dists* that are
required by *dist*.
:param dists: a list of distributions
:param dist: a distribution, member of *dists* for which we are interested
"""
if dist not in dists:
raise DistlibException('given distribution %r is not a member '
'of the list' % dist.name)
graph = make_graph(dists)
req = [] # required distributions
todo = graph.adjacency_list[dist] # list of nodes we should inspect
while todo:
d = todo.pop()[0]
req.append(d)
for pred in graph.adjacency_list[d]:
if pred not in req:
todo.append(pred)
return req
def make_dist(name, version, **kwargs):
"""
A convenience method for making a dist given just a name and version.
"""
summary = kwargs.pop('summary', 'Placeholder for summary')
md = Metadata(**kwargs)
md.name = name
md.version = version
md.summary = summary or 'Placeholder for summary'
return Distribution(md)
|
214,411 | Github | [
605,
3617,
1329,
323,
26010,
19229,
398,
428,
5559,
434,
941,
28961,
5981,
187,
605,
187,
605,
8283,
4332,
380,
3617,
26940,
15,
50276,
3074,
3570,
10827,
15,
187,
605,
5987,
1358,
7280,
15,
681,
16,
42056,
16,
30257,
187,
605,
187,
605,
25936,
2382,
285,
897,
275,
2603,
285,
8985,
4948,
13,
342,
390,
1293,
187,
605,
11237,
13,
403,
11460,
2530,
326,
253,
1563,
2515,
403,
187,
605,
1313,
27,
187,
605,
187,
605,
50273,
11,
34682,
273,
2603,
2127,
1364,
13280,
253,
1840,
9451,
187,
605,
4366,
13,
436,
1618,
273,
2515,
285,
253,
1563,
27578,
15,
187,
605,
50273,
11,
34682,
275,
8985,
830,
1364,
18302,
253,
1840,
187,
605,
9451,
4366,
13,
436,
1618,
273,
2515,
285,
253,
1563,
27578,
187,
605,
275,
253,
10097,
285,
16,
263,
643,
4753,
2530,
342,
253,
187,
605,
3268,
15,
187,
605,
50273,
11,
17106,
253,
1416,
273,
5559,
3690,
15,
4543,
253,
4454,
273,
697,
187,
605,
24781,
778,
320,
908,
281,
18883,
390,
8591,
3580,
6012,
432,
187,
605,
436,
3694,
1293,
2173,
2720,
3542,
9214,
15,
187,
605,
187,
605,
10113,
19295,
4110,
33278,
9149,
3003,
28827,
43227,
4889,
38623,
187,
605,
346,
1719,
4110,
3,
4889,
9103,
31643,
4145,
25900,
15466,
13,
31877,
13,
17706,
5803,
187,
605,
25666,
5935,
13,
3003,
25900,
15466,
3481,
20863,
4889,
20524,
6651,
187,
605,
329,
20383,
20103,
17003,
44174,
1703,
15,
2949,
7651,
30609,
32221,
3003,
28827,
187,
605,
46192,
21598,
4145,
38623,
8728,
34745,
6651,
9103,
35739,
13,
47823,
13,
49466,
1556,
13,
187,
605,
38152,
13,
8021,
46465,
11164,
13,
4145,
48128,
32024,
313,
33509,
13,
17706,
5803,
187,
605,
25666,
5935,
13,
25717,
10860,
10634,
3481,
33908,
47259,
47144,
4145,
38986,
28,
45104,
3481,
19226,
13,
187,
605,
27809,
13,
4145,
49080,
28,
4145,
42113,
22508,
37086,
2449,
10,
49457,
6582,
28477,
4889,
8160,
9103,
187,
605,
49212,
3481,
27255,
13,
33206,
2949,
32833,
13,
47528,
27255,
13,
4145,
34915,
187,
605,
313,
33509,
49505,
4145,
35497,
10,
34984,
2949,
9103,
32155,
16341,
3481,
3003,
19226,
187,
605,
3481,
10113,
19295,
13,
38698,
8681,
48646,
1703,
3481,
3003,
43194,
38761,
3481,
43399,
49334,
15,
187,
187,
605,
26010,
6391,
3676,
3491,
285,
17310,
15,
187,
605,
24202,
27,
19263,
7474,
15,
187,
187,
10708,
21634,
187,
187,
2948,
313,
187,
186,
3,
20602,
3,
187,
186,
3,
2808,
3,
187,
186,
3,
22697,
3,
187,
186,
3,
27329,
3,
187,
10,
187,
187,
605,
1639,
531,
6548,
247,
3676,
3491,
273,
247,
7241,
6391,
15,
187,
4997,
1639,
531,
9,
7614,
17775,
10,
17775,
551,
187,
186,
249,
3843,
4887,
15,
3902,
4527,
9,
7614,
10,
187,
186,
338,
275,
15,
2513,
37490,
1082,
551,
996,
186,
2309,
6740,
187,
186,
94,
187,
186,
483,
3843,
4887,
15,
4257,
9,
249,
15,
2548,
5023,
39812,
6649,
187,
186,
19335,
3843,
562,
15,
14418,
5023,
9,
7474,
10,
187,
186,
44022,
9,
19335,
13,
6740,
10,
187,
186,
2309,
24334,
187,
94,
187,
187,
605,
7612,
1063,
310,
253,
5673,
9999,
5113,
326,
476,
17310,
8169,
273,
253,
1072,
1511,
15,
187,
881,
7612,
1063,
5673,
551,
187,
186,
605,
7612,
463,
14041,
265,
6740,
715,
436,
3935,
15,
187,
186,
605,
41622,
285,
15266,
4910,
326,
403,
873,
275,
6740,
588,
320,
873,
281,
326,
1318,
275,
24334,
15,
187,
186,
605,
41273,
273,
6015,
4910,
588,
320,
42873,
15,
187,
186,
605,
187,
186,
605,
7612,
463,
778,
18829,
604,
1925,
342,
247,
1027,
4154,
1511,
685,
253,
11452,
15,
187,
186,
44022,
9,
7614,
17775,
10,
187,
94,
187,
187,
605,
4561,
23030,
1063,
310,
253,
2840,
17310,
1332,
326,
4561,
3861,
375,
588,
452,
15,
187,
605,
844,
1364,
823,
436,
1332,
1580,
247,
6635,
7612,
463,
1332,
588,
7344,
342,
187,
605,
1142,
5368,
3861,
375,
326,
452,
247,
7612,
463,
941,
1673,
2168,
2931,
15,
187,
881,
4561,
23030,
1063,
5673,
551,
187,
186,
34477,
64,
44022,
9,
7614,
17775,
10,
187,
94,
187,
187,
605,
7612,
463,
14041,
265,
6740,
715,
24334,
15,
187,
605,
41622,
285,
15266,
4910,
326,
403,
873,
275,
6740,
588,
320,
873,
281,
326,
1318,
275,
24334,
15,
187,
605,
41273,
273,
6015,
4910,
588,
320,
42873,
15,
187,
605,
7612,
463,
3199,
982,
604,
6740,
285,
24334,
403,
417,
253,
1072,
1511,
13,
390,
604,
24334,
310,
5296,
15,
187,
4997,
7612,
463,
9,
19335,
13,
6740,
17775,
10,
551,
187,
186,
338,
278,
13,
8718,
3843,
24334,
14517,
23030,
1063,
558,
8718,
551,
996,
186,
78,
15,
44022,
9,
7614,
10,
996,
186,
2309,
187,
186,
94,
535,
186,
249,
3843,
4887,
15,
3902,
4527,
9,
7614,
10,
187,
186,
483,
3843,
4887,
15,
3902,
4527,
9,
19335,
10,
187,
186,
338,
562,
15,
2513,
37490,
1082,
551,
996,
186,
19239,
1587,
20894,
27,
5296,
12095,
2807,
187,
186,
94,
187,
186,
338,
275,
15,
2548,
1082,
3613,
562,
15,
2548,
1082,
551,
996,
186,
19239,
9,
20602,
15,
42757,
1587,
20894,
15,
44022,
24722,
53,
13,
2462,
53,
10,
1511,
29713,
995,
24334,
13,
6740,
1228,
187,
186,
94,
187,
186,
338,
275,
15,
2513,
37490,
1082,
551,
996,
186,
2309,
1380,
7612,
463,
432,
5296,
6740,
310,
247,
642,
412,
187,
186,
94,
187,
186,
338,
278,
13,
8718,
3843,
24334,
14517,
20419,
23030,
1063,
558,
8718,
551,
996,
186,
78,
15,
34477,
64,
44022,
9,
7614,
10,
996,
186,
2309,
187,
186,
94,
187,
186,
27814,
21772,
9,
483,
15,
39812,
5715,
275,
15,
39812,
6649,
187,
94,
187,
187,
4997,
17310,
21772,
9,
483,
13,
275,
4887,
15,
3902,
10,
551,
187,
186,
84,
8560,
3843,
5057,
18401,
9,
249,
15,
2548,
6649,
187,
186,
1542,
891,
3843,
470,
28,
891,
654,
275,
15,
12753,
6180,
1874,
891,
3424,
551,
996,
186,
71,
3843,
275,
15,
2548,
5023,
6180,
9,
74,
10,
996,
186,
338,
11559,
15,
15413,
27111,
9,
71,
15,
2402,
13,
346,
34477,
64,
2807,
551,
988,
186,
25674,
996,
186,
94,
996,
186,
27814,
6693,
9,
483,
15,
6180,
9,
74,
582,
275,
15,
6180,
9,
74,
582,
3221,
13,
653,
1658,
15,
21389,
60,
74,
3291,
187,
186,
94,
535,
186,
338,
802,
688,
13,
1486,
3843,
9017,
494,
9,
249,
15,
23054,
5023,
14418,
6020,
1486,
2295,
5296,
551,
996,
186,
358,
5677,
13,
795,
3843,
9017,
494,
9,
483,
15,
23054,
5023,
14418,
6649,
996,
186,
78,
688,
13,
12910,
688,
3843,
802,
688,
15,
40028,
5703,
1082,
996,
186,
338,
278,
688,
3613,
5296,
551,
988,
186,
78,
5677,
3843,
802,
5677,
15,
40028,
10639,
1082,
988,
186,
1906,
688,
15,
18703,
1082,
988,
186,
27814,
24057,
9,
78,
5677,
13,
278,
688,
10,
988,
186,
1906,
688,
15,
45430,
1082,
996,
186,
94,
187,
186,
94,
535,
186,
2375,
3843,
275,
15,
6180,
3463,
2402,
1587,
34477,
64,
328,
35477,
2807,
187,
186,
338,
2195,
2375,
15,
2513,
13159,
1082,
551,
996,
186,
2309,
187,
186,
94,
187,
186,
19014,
3843,
1484,
71,
15,
16721,
1082,
187,
186,
338,
8472,
9,
19014,
10,
2239,
470,
551,
996,
186,
483,
15,
6180,
3463,
2402,
1587,
34477,
64,
328,
35477,
6788,
4531,
16721,
9,
9691,
35237,
8833,
9,
18789,
582,
1484,
249,
1051,
1228,
187,
186,
94,
187,
94,
187,
187,
605,
17310,
6693,
17923,
247,
17310,
875,
767,
2193,
273,
253,
1072,
1511,
15,
187,
605,
3066,
12030,
6492,
1880,
253,
2193,
497,
801,
17799,
949,
247,
12219,
313,
303,
2881,
272,
21634,
19,
481,
187,
605,
4198,
310,
873,
604,
436,
310,
247,
1577,
1673,
313,
262,
778,
320,
5296,
481,
187,
4997,
17310,
6693,
9,
483,
13,
275,
4887,
15,
3902,
13,
3066,
12030,
7301,
13,
4198,
475,
18401,
10,
551,
187,
186,
338,
275,
15,
2548,
1082,
2295,
21634,
7474,
2548,
551,
996,
186,
338,
2195,
249,
15,
2513,
37490,
1082,
551,
988,
186,
338,
562,
15,
2513,
37490,
1082,
551,
2657,
186,
483,
15,
4531,
9,
22697,
15,
3902,
4527,
9,
2019,
531,
9,
249,
15,
14418,
5023,
9,
7474,
27483,
988,
186,
94,
2010,
551,
2657,
186,
44022,
9,
483,
15,
14418,
5023,
9,
7474,
582,
275,
15,
14418,
5023,
9,
7474,
1228,
988,
186,
94,
996,
186,
94,
996,
186,
2309,
187,
186,
94,
187,
186,
16065,
275,
15,
18808,
1082,
551,
187,
186,
5045,
4887,
15,
30342,
13,
4887,
15,
21125,
1237,
13,
4887,
15,
21125,
1540,
13,
4887,
15,
4807,
1237,
13,
4887,
15,
4807,
1540,
13,
996,
186,
22697,
15,
2776,
13,
4887,
15,
34440,
1237,
13,
4887,
15,
34440,
1540,
27,
996,
186,
338,
2195,
13917,
12030,
3857,
310,
36627,
20,
26561,
9,
249,
10,
551,
988,
186,
2309,
996,
186,
94,
996,
186,
483,
15,
4531,
9,
249,
10,
187,
186,
5045,
4887,
15,
14418,
27,
996,
186,
605,
27692,
247,
581,
1171,
1673,
28,
3491,
1327,
14,
18789,
2193,
15,
996,
186,
338,
275,
15,
2513,
37490,
1082,
551,
988,
186,
2309,
996,
186,
94,
996,
186,
605,
1876,
24461,
12095,
604,
352,
310,
417,
873,
13,
390,
873,
281,
247,
1027,
1511,
15,
996,
186,
605,
17501,
359,
588,
17310,
347,
2622,
15,
996,
186,
338,
562,
15,
2513,
37490,
1082,
2785,
562,
15,
39812,
5023,
2548,
1082,
3613,
275,
15,
39812,
5023,
2548,
1082,
551,
988,
186,
483,
15,
4531,
9,
22697,
15,
4257,
9,
249,
15,
39812,
5023,
39812,
5023,
2548,
32875,
1380,
5673,
5204,
475,
53,
5204,
308,
5204,
747,
9,
53,
10,
996,
186,
94,
996,
186,
27814,
6693,
9,
483,
15,
39812,
5715,
275,
15,
39812,
5715,
3221,
13,
5296,
10,
187,
186,
5045,
4887,
15,
6648,
27,
996,
186,
338,
275,
15,
18378,
1082,
2295,
470,
551,
988,
186,
2309,
996,
186,
94,
996,
186,
338,
562,
15,
2513,
37490,
1082,
551,
988,
186,
483,
15,
4531,
9,
22697,
15,
13325,
6648,
9,
249,
15,
2548,
32875,
996,
186,
94,
996,
186,
605,
1198,
8115,
342,
1318,
3510,
273,
475,
53,
390,
8168,
8833,
359,
878,
281,
3676,
3491,
1016,
1318,
15,
996,
186,
33511,
18808,
3843,
275,
15,
2548,
5023,
39812,
5023,
18808,
1082,
996,
186,
1542,
13830,
2234,
3843,
2491,
275,
15,
6648,
25076,
1082,
551,
988,
186,
2044,
821,
4887,
15,
3902,
988,
186,
16065,
38062,
18808,
551,
988,
186,
5045,
4887,
15,
12030,
27,
2657,
186,
1208,
426,
4887,
15,
4257,
9,
249,
15,
2548,
5023,
39812,
5023,
39812,
6649,
2657,
186,
27814,
6693,
9,
1208,
13,
275,
15,
6648,
6060,
9,
2364,
582,
3221,
13,
5296,
10,
988,
186,
5045,
4887,
15,
33779,
27,
2657,
186,
1208,
426,
275,
15,
6648,
6060,
9,
2364,
10,
2657,
186,
1208,
426,
4887,
15,
3902,
4527,
9,
9691,
35237,
8833,
37237,
821,
15,
16721,
5023,
537,
1228,
988,
186,
6986,
27,
2657,
186,
1208,
426,
275,
15,
6648,
6060,
9,
2364,
10,
988,
186,
94,
988,
186,
483,
15,
4531,
6648,
6060,
9,
2364,
13,
821,
10,
996,
186,
94,
187,
186,
5045,
4887,
15,
12030,
27,
996,
186,
338,
275,
15,
2513,
37490,
1082,
551,
988,
186,
2309,
996,
186,
94,
996,
186,
338,
562,
15,
2513,
37490,
1082,
551,
988,
186,
483,
15,
4531,
9,
22697,
15,
4257,
9,
249,
15,
39812,
5023,
2548,
32875,
996,
186,
94,
996,
186,
27814,
6693,
9,
483,
15,
39812,
5715,
275,
15,
39812,
5715,
2032,
13,
5296,
10,
187,
186,
5045,
4887,
15,
33779,
27,
996,
186,
338,
275,
15,
2513,
37490,
1082,
551,
988,
186,
2309,
996,
186,
94,
996,
186,
338,
275,
15,
2548,
5023,
39812,
5023,
18808,
1082,
2295,
4887,
15,
34440,
25,
551,
988,
186,
605,
8168,
8833,
310,
247,
13434,
11061,
1673,
13,
417,
247,
6015,
1673,
15,
11866,
186,
605,
24105,
1083,
27,
604,
436,
310,
275,
247,
21634,
20,
3935,
13,
247,
5058,
2978,
988,
186,
605,
11061,
1673,
310,
2783,
253,
5058,
1318,
13,
285,
943,
417,
988,
186,
605,
320,
21884,
15,
988,
186,
338,
4198,
3613,
5296,
3857,
4198,
15,
20894,
20,
3857,
275,
15,
18378,
1082,
2295,
470,
551,
2657,
186,
2309,
988,
186,
94,
11866,
186,
605,
10338,
247,
3676,
3491,
15,
988,
186,
605,
2051,
423,
281,
8168,
8833,
15564,
3185,
273,
8168,
8833,
9,
18789,
10,
594,
326,
359,
1620,
990,
598,
988,
186,
605,
342,
247,
5296,
906,
15,
988,
186,
483,
15,
4531,
16721,
9,
9691,
35237,
8833,
37237,
275,
15,
16721,
5023,
537,
1228,
988,
186,
2309,
996,
186,
94,
996,
186,
79,
3843,
275,
15,
18378,
1082,
996,
186,
338,
562,
15,
2513,
37490,
1082,
551,
988,
186,
483,
15,
4531,
9,
22697,
15,
13325,
33779,
9,
249,
15,
2548,
5715,
470,
13,
295,
1228,
996,
186,
94,
996,
186,
16065,
275,
15,
2548,
5023,
39812,
5023,
18808,
1082,
551,
996,
186,
5045,
4887,
15,
30342,
13,
4887,
15,
21125,
1237,
13,
4887,
15,
21125,
1540,
13,
4887,
15,
4807,
1237,
13,
4887,
15,
4807,
1540,
13,
988,
186,
22697,
15,
2776,
13,
4887,
15,
34440,
1237,
13,
4887,
15,
34440,
1540,
27,
988,
186,
483,
15,
4531,
9,
22697,
15,
33253,
33779,
9,
483,
13,
275,
1228,
996,
186,
6986,
27,
988,
186,
1542,
891,
3843,
470,
28,
891,
654,
295,
28,
891,
3424,
551,
2657,
186,
89,
3843,
4887,
15,
8207,
4128,
9,
22697,
15,
4257,
9,
249,
15,
2548,
5023,
39812,
32875,
2657,
186,
27814,
6693,
9,
89,
13,
275,
15,
6060,
9,
74,
582,
3221,
13,
5296,
10,
2657,
186,
483,
15,
4531,
9,
22697,
15,
33253,
9,
483,
13,
1269,
1228,
988,
186,
94,
996,
186,
94,
187,
186,
5045,
4887,
15,
21772,
27,
996,
186,
27814,
21772,
9,
483,
13,
275,
10,
187,
186,
6986,
27,
996,
186,
605,
7202,
1511,
13,
594,
417,
247,
7241,
6391,
996,
186,
2808,
15,
17148,
71,
1587,
20894,
27,
1053,
626,
871,
849,
281,
3491,
2462,
87,
995,
275,
10,
187,
186,
94,
187,
94,
187,
187,
4997,
17310,
24057,
9,
483,
13,
275,
3711,
60,
565,
1237,
62,
24057,
10,
551,
187,
186,
1542,
1021,
12753,
13,
299,
688,
3843,
2491,
275,
551,
996,
186,
70,
5677,
3843,
37396,
92,
12898,
27,
299,
688,
15,
12898,
94,
996,
186,
338,
299,
688,
15,
2877,
3613,
5296,
551,
988,
186,
87,
3843,
4887,
15,
4257,
9,
22697,
15,
2548,
4527,
9,
70,
688,
15,
2877,
5029,
39812,
1082,
988,
186,
27814,
6693,
9,
87,
13,
4887,
15,
3902,
4527,
9,
70,
688,
15,
2877,
582,
3221,
13,
5296,
10,
988,
186,
70,
5677,
15,
2877,
426,
362,
15,
14418,
1082,
996,
186,
94,
996,
186,
338,
299,
688,
15,
2083,
3613,
5296,
551,
988,
186,
70,
5677,
15,
2083,
426,
1056,
35237,
8833,
13,
8472,
9,
70,
688,
15,
2083,
1228,
988,
186,
12557,
9,
70,
5677,
15,
2083,
13,
299,
688,
15,
2083,
10,
996,
186,
94,
6886,
186,
483,
60,
2068,
12753,
62,
426,
299,
5677,
187,
186,
94,
187,
94,
187
] | // Go support for Protocol Buffers - Google's data interchange format
//
// Copyright 2011 The Go Authors. All rights reserved.
// https://github.com/golang/protobuf
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
// * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above
// copyright notice, this list of conditions and the following disclaimer
// in the documentation and/or other materials provided with the
// distribution.
// * Neither the name of Google Inc. nor the names of its
// contributors may be used to endorse or promote products derived from
// this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
// Protocol buffer deep copy and merge.
// TODO: RawMessage.
package proto
import (
"fmt"
"log"
"reflect"
"strings"
)
// Clone returns a deep copy of a protocol buffer.
func Clone(src Message) Message {
in := reflect.ValueOf(src)
if in.IsNil() {
return src
}
out := reflect.New(in.Type().Elem())
dst := out.Interface().(Message)
Merge(dst, src)
return dst
}
// Merger is the interface representing objects that can merge messages of the same type.
type Merger interface {
// Merge merges src into this message.
// Required and optional fields that are set in src will be set to that value in dst.
// Elements of repeated fields will be appended.
//
// Merge may panic if called with a different argument type than the receiver.
Merge(src Message)
}
// generatedMerger is the custom merge method that generated protos will have.
// We must add this method since a generate Merge method will conflict with
// many existing protos that have a Merge data field already defined.
type generatedMerger interface {
XXX_Merge(src Message)
}
// Merge merges src into dst.
// Required and optional fields that are set in src will be set to that value in dst.
// Elements of repeated fields will be appended.
// Merge panics if src and dst are not the same type, or if dst is nil.
func Merge(dst, src Message) {
if m, ok := dst.(Merger); ok {
m.Merge(src)
return
}
in := reflect.ValueOf(src)
out := reflect.ValueOf(dst)
if out.IsNil() {
panic("proto: nil destination")
}
if in.Type() != out.Type() {
panic(fmt.Sprintf("proto.Merge(%T, %T) type mismatch", dst, src))
}
if in.IsNil() {
return // Merge from nil src is a noop
}
if m, ok := dst.(generatedMerger); ok {
m.XXX_Merge(src)
return
}
mergeStruct(out.Elem(), in.Elem())
}
func mergeStruct(out, in reflect.Value) {
sprop := GetProperties(in.Type())
for i := 0; i < in.NumField(); i++ {
f := in.Type().Field(i)
if strings.HasPrefix(f.Name, "XXX_") {
continue
}
mergeAny(out.Field(i), in.Field(i), false, sprop.Prop[i])
}
if emIn, err := extendable(in.Addr().Interface()); err == nil {
emOut, _ := extendable(out.Addr().Interface())
mIn, muIn := emIn.extensionsRead()
if mIn != nil {
mOut := emOut.extensionsWrite()
muIn.Lock()
mergeExtension(mOut, mIn)
muIn.Unlock()
}
}
uf := in.FieldByName("XXX_unrecognized")
if !uf.IsValid() {
return
}
uin := uf.Bytes()
if len(uin) > 0 {
out.FieldByName("XXX_unrecognized").SetBytes(append([]byte(nil), uin...))
}
}
// mergeAny performs a merge between two values of the same type.
// viaPtr indicates whether the values were indirected through a pointer (implying proto2).
// prop is set if this is a struct field (it may be nil).
func mergeAny(out, in reflect.Value, viaPtr bool, prop *Properties) {
if in.Type() == protoMessageType {
if !in.IsNil() {
if out.IsNil() {
out.Set(reflect.ValueOf(Clone(in.Interface().(Message))))
} else {
Merge(out.Interface().(Message), in.Interface().(Message))
}
}
return
}
switch in.Kind() {
case reflect.Bool, reflect.Float32, reflect.Float64, reflect.Int32, reflect.Int64,
reflect.String, reflect.Uint32, reflect.Uint64:
if !viaPtr && isProto3Zero(in) {
return
}
out.Set(in)
case reflect.Interface:
// Probably a oneof field; copy non-nil values.
if in.IsNil() {
return
}
// Allocate destination if it is not set, or set to a different type.
// Otherwise we will merge as normal.
if out.IsNil() || out.Elem().Type() != in.Elem().Type() {
out.Set(reflect.New(in.Elem().Elem().Type())) // interface -> *T -> T -> new(T)
}
mergeAny(out.Elem(), in.Elem(), false, nil)
case reflect.Map:
if in.Len() == 0 {
return
}
if out.IsNil() {
out.Set(reflect.MakeMap(in.Type()))
}
// For maps with value types of *T or []byte we need to deep copy each value.
elemKind := in.Type().Elem().Kind()
for _, key := range in.MapKeys() {
var val reflect.Value
switch elemKind {
case reflect.Ptr:
val = reflect.New(in.Type().Elem().Elem())
mergeAny(val, in.MapIndex(key), false, nil)
case reflect.Slice:
val = in.MapIndex(key)
val = reflect.ValueOf(append([]byte{}, val.Bytes()...))
default:
val = in.MapIndex(key)
}
out.SetMapIndex(key, val)
}
case reflect.Ptr:
if in.IsNil() {
return
}
if out.IsNil() {
out.Set(reflect.New(in.Elem().Type()))
}
mergeAny(out.Elem(), in.Elem(), true, nil)
case reflect.Slice:
if in.IsNil() {
return
}
if in.Type().Elem().Kind() == reflect.Uint8 {
// []byte is a scalar bytes field, not a repeated field.
// Edge case: if this is in a proto3 message, a zero length
// bytes field is considered the zero value, and should not
// be merged.
if prop != nil && prop.proto3 && in.Len() == 0 {
return
}
// Make a deep copy.
// Append to []byte{} instead of []byte(nil) so that we never end up
// with a nil result.
out.SetBytes(append([]byte{}, in.Bytes()...))
return
}
n := in.Len()
if out.IsNil() {
out.Set(reflect.MakeSlice(in.Type(), 0, n))
}
switch in.Type().Elem().Kind() {
case reflect.Bool, reflect.Float32, reflect.Float64, reflect.Int32, reflect.Int64,
reflect.String, reflect.Uint32, reflect.Uint64:
out.Set(reflect.AppendSlice(out, in))
default:
for i := 0; i < n; i++ {
x := reflect.Indirect(reflect.New(in.Type().Elem()))
mergeAny(x, in.Index(i), false, nil)
out.Set(reflect.Append(out, x))
}
}
case reflect.Struct:
mergeStruct(out, in)
default:
// unknown type, so not a protocol buffer
log.Printf("proto: don't know how to copy %v", in)
}
}
func mergeExtension(out, in map[int32]Extension) {
for extNum, eIn := range in {
eOut := Extension{desc: eIn.desc}
if eIn.value != nil {
v := reflect.New(reflect.TypeOf(eIn.value)).Elem()
mergeAny(v, reflect.ValueOf(eIn.value), false, nil)
eOut.value = v.Interface()
}
if eIn.enc != nil {
eOut.enc = make([]byte, len(eIn.enc))
copy(eOut.enc, eIn.enc)
}
out[extNum] = eOut
}
}
|
214,412 | Github | [
10708,
5268,
1380,
1395,
346,
7280,
15,
681,
16,
31510,
16,
31510,
16,
8780,
3,
187,
187,
2948,
313,
187,
186,
3,
8882,
3,
187,
186,
3,
27676,
16,
8456,
3,
187,
186,
3,
3024,
16,
6434,
3,
535,
186,
3,
7280,
15,
681,
16,
31510,
16,
31510,
16,
6682,
16,
10706,
3,
187,
186,
3,
7280,
15,
681,
16,
31510,
16,
31510,
16,
6682,
16,
10706,
16,
41282,
3,
187,
10,
187,
187,
605,
10701,
2765,
6548,
253,
1618,
273,
6928,
15378,
275,
253,
36191,
3167,
15,
187,
4997,
313,
31010,
475,
8975,
10,
10701,
2765,
9,
11154,
3634,
15,
5856,
13,
4610,
3510,
15,
19824,
2765,
10976,
10,
2470,
62,
10706,
15,
19824,
11133,
13,
2228,
10,
551,
187,
186,
7267,
3843,
9688,
15,
15888,
15564,
187,
186,
338,
4610,
15,
7047,
1336,
15,
18378,
1082,
2239,
470,
551,
996,
186,
605,
41857,
27,
30029,
12041,
6903,
26,
323,
1711,
2127,
996,
186,
10978,
17635,
13,
1486,
3843,
15116,
15,
1992,
11030,
3378,
8893,
9,
31010,
15,
4149,
13,
4610,
15,
7047,
1336,
10,
996,
186,
338,
1486,
3613,
5296,
551,
988,
186,
2309,
5296,
13,
1486,
996,
186,
94,
6886,
186,
7267,
15,
4531,
1587,
41282,
995,
5806,
17635,
10,
187,
186,
94,
187,
186,
2044,
2990,
22804,
8168,
10706,
15,
19824,
11133,
187,
186,
2076,
13,
1486,
3843,
502,
74,
15,
788,
9,
11154,
13,
13357,
3024,
4896,
995,
7316,
13,
5296,
10,
187,
186,
37671,
5416,
15283,
49791,
9,
2076,
10,
187,
186,
338,
1486,
3613,
5296,
551,
996,
186,
2309,
2990,
22804,
13,
1486,
187,
186,
94,
187,
186,
1000,
426,
14113,
15,
4257,
39323,
9,
2076,
15,
2915,
481,
46057,
6395,
18428,
22804,
10,
187,
186,
2309,
2990,
22804,
13,
1486,
187,
94,
187
] | package client // import "github.com/docker/docker/client"
import (
"context"
"encoding/json"
"net/url"
"github.com/docker/docker/api/types"
"github.com/docker/docker/api/types/filters"
)
// NetworkList returns the list of networks configured in the docker host.
func (cli *Client) NetworkList(ctx context.Context, options types.NetworkListOptions) ([]types.NetworkResource, error) {
query := url.Values{}
if options.Filters.Len() > 0 {
//lint:ignore SA1019 for old code
filterJSON, err := filters.ToParamWithVersion(cli.version, options.Filters)
if err != nil {
return nil, err
}
query.Set("filters", filterJSON)
}
var networkResources []types.NetworkResource
resp, err := cli.get(ctx, "/networks", query, nil)
defer ensureReaderClosed(resp)
if err != nil {
return networkResources, err
}
err = json.NewDecoder(resp.body).Decode(&networkResources)
return networkResources, err
}
|
214,413 | Github | [
3122,
187,
475,
21737,
762,
253,
14325,
4637,
13,
11099,
374,
15,
17,
313,
783,
346,
17736,
3287,
187,
475,
368,
778,
417,
897,
436,
1873,
3707,
275,
10276,
342,
253,
4637,
15,
187,
475,
1422,
778,
4044,
247,
3491,
273,
253,
4637,
387,
187,
475,
187,
475,
50271,
2413,
1358,
2700,
15,
8418,
15,
2061,
16,
17130,
16,
17821,
14,
19,
15,
17,
187,
475,
187,
475,
15999,
2424,
407,
7763,
1569,
390,
5821,
281,
275,
4028,
13,
3694,
187,
475,
5939,
762,
253,
4637,
310,
5939,
327,
271,
346,
1719,
4110,
3,
23440,
13,
187,
475,
15002,
15466,
4145,
22998,
3481,
9103,
19329,
13,
2057,
3890,
390,
10466,
15,
187,
475,
2594,
253,
4637,
323,
253,
2173,
3448,
13200,
15607,
285,
187,
475,
7364,
762,
253,
4637,
15,
187,
1738,
187,
187,
10708,
4955,
15,
17525,
76,
13149,
15,
24111,
15,
46258,
15,
16429,
187,
187,
2948,
4955,
15,
24606,
255,
383,
15,
92,
6623,
255,
8546,
13,
6397,
13580,
94,
2756,
187,
6930,
187,
475,
32503,
253,
2732,
6365,
695,
15,
187,
475,
1214,
7582,
9251,
333,
7173,
261,
322,
961,
375,
654,
793,
961,
375,
33,
5168,
15,
86,
12354,
15,
737,
31,
313,
16760,
285,
30789,
351,
382,
5651,
2499,
273,
27411,
10,
187,
1738,
535,
187,
2437,
2732,
27603,
5089,
8725,
36682,
8546,
342,
6397,
13580,
551,
535,
50276,
1208,
7982,
426,
747,
2732,
27603,
1082,
535,
50276,
3,
4553,
27603,
3,
943,
346,
23813,
3522,
673,
11508,
3,
275,
551,
187,
50274,
10994,
15,
45141,
1587,
60,
6914,
14,
520,
14,
520,
53,
361,
27,
361,
27,
2640,
13,
5307,
14,
520,
14,
520,
53,
361,
27,
361,
27,
2941,
22719,
5749,
6914,
14,
520,
14,
520,
53,
361,
27,
361,
27,
361,
13,
5307,
14,
520,
14,
520,
53,
361,
27,
361,
27,
520,
10,
2807,
943,
4503,
9,
17,
15,
17,
10,
187,
50276,
94,
535,
50276,
3,
4553,
27603,
3,
943,
346,
23813,
3522,
2069,
3,
275,
551,
187,
50274,
10994,
15,
45141,
1587,
6914,
14,
520,
14,
1762,
53,
361,
27,
361,
27,
361,
995,
346,
6914,
14,
520,
14,
520,
53,
361,
27,
361,
27,
361,
2807,
943,
4503,
9,
17,
15,
17,
10,
187,
50274,
10994,
15,
45141,
1587,
6914,
14,
520,
14,
520,
53,
361,
27,
361,
27,
361,
995,
346,
6914,
14,
520,
14,
2640,
53,
361,
27,
361,
27,
361,
2807,
943,
4503,
9,
18,
15,
17,
10,
187,
50274,
10994,
15,
45141,
1587,
6914,
14,
520,
14,
520,
53,
361,
27,
361,
27,
520,
995,
346,
6914,
14,
520,
14,
520,
53,
361,
27,
361,
27,
361,
2807,
943,
4503,
9,
17,
15,
17,
10,
187,
50274,
10994,
15,
45141,
1587,
6914,
14,
520,
14,
520,
53,
361,
27,
361,
27,
361,
995,
346,
6914,
14,
520,
14,
520,
53,
361,
27,
361,
27,
520,
2807,
943,
4503,
9,
18,
15,
17,
10,
187,
50276,
94,
535,
50276,
3,
4553,
27603,
3,
943,
346,
23813,
12282,
3,
275,
551,
187,
50274,
10994,
15,
45141,
1587,
6914,
14,
520,
14,
1762,
995,
346,
6914,
14,
520,
14,
520,
2807,
943,
4503,
9,
17,
15,
17,
10,
187,
50274,
10994,
15,
45141,
1587,
6914,
14,
520,
14,
361,
995,
346,
6914,
14,
520,
14,
2640,
2807,
943,
4503,
9,
18,
15,
17,
10,
187,
50276,
94,
187,
94,
187
] | /*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.silkframework.plugins.temporal.relation
import org.scalatest.{FlatSpec, Matchers}
/**
* Tests the After Metric.
* @author Panayiotis Smeros <[email protected]> (National and Kapodistrian University of Athens)
*/
class AfterMetricTest extends FlatSpec with Matchers {
val metric = new AfterMetric()
"AfterMetric" should "compare date time intervals" in {
metric.evaluate("[2000-01-01T00:00:02, 2000-01-01T00:00:03)", "[2000-01-01T00:00:00, 2000-01-01T00:00:01)") should equal(0.0)
}
"AfterMetric" should "compare date times" in {
metric.evaluate("2000-01-05T00:00:00", "2000-01-01T00:00:00") should equal(0.0)
metric.evaluate("2000-01-01T00:00:00", "2000-01-02T00:00:00") should equal(1.0)
metric.evaluate("2000-01-01T00:00:01", "2000-01-01T00:00:00") should equal(0.0)
metric.evaluate("2000-01-01T00:00:00", "2000-01-01T00:00:01") should equal(1.0)
}
"AfterMetric" should "compare dates" in {
metric.evaluate("2000-01-05", "2000-01-01") should equal(0.0)
metric.evaluate("2000-01-00", "2000-01-02") should equal(1.0)
}
}
|
214,414 | Github | [
4,
35588,
57,
14,
17736,
14,
18483,
27,
13145,
3859,
14,
20,
15,
17,
14,
263,
14,
31312,
187,
187,
33,
28047,
1214,
1222,
301,
77,
2072,
187,
27260,
27,
1054,
301,
77,
2072,
19743,
11263,
13331,
187,
50276,
12965,
12949,
6721,
1322,
3420,
4771,
187,
187,
15633,
27,
187,
50276,
15768,
309,
1353,
247,
24917,
275,
2608,
187,
50276,
1898,
253,
1054,
301,
77,
2072,
2898,
310,
8038,
187,
187,
4316,
37343,
27,
34747,
1054,
301,
77,
2072,
2898,
187,
50276,
15768,
253,
1054,
301,
77,
2072,
2898,
310,
13603,
187,
50276,
3039,
309,
8046,
253,
1054,
301,
77,
2072,
2898,
187,
50276,
5872,
253,
1054,
301,
77,
2072,
2579,
943,
320,
3515,
187,
187,
4316,
37343,
27,
5201,
494,
1054,
301,
77,
2072,
2898,
187,
50276,
15768,
253,
1054,
301,
77,
2072,
2898,
310,
11410,
187,
50276,
3039,
309,
19495,
253,
1054,
301,
77,
2072,
2898,
187,
50276,
5872,
253,
1054,
301,
77,
2072,
2579,
943,
417,
320,
3515,
187
] | # SPDX-License-Identifier: AGPL-3.0-or-later
@apps @minidlna
Feature: minidlna Simple Media Server
Run miniDLNA media server
Background:
Given I'm a logged in user
And the minidlna application is installed
Scenario: Enable minidlna application
Given the minidlna application is disabled
When I enable the minidlna application
Then the minidlna service should be running
Scenario: Disable minidlna application
Given the minidlna application is enabled
When I disable the minidlna application
Then the minidlna service should not be running
|
214,415 | Github | [
10818,
757,
310,
253,
4766,
1318,
275,
271,
6960,
7007,
1618,
15,
1310,
253,
1979,
273,
253,
1618,
310,
1014,
13,
627,
310,
642,
4766,
1318,
15,
1893,
253,
8876,
310,
253,
1599,
273,
253,
767,
4766,
1318,
15,
187,
187,
32896,
27,
209,
187,
60,
19,
13,
20,
13,
21,
62,
1157,
253,
8876,
310,
495,
187,
187,
60,
19,
13,
20,
1092,
253,
8876,
310,
313,
19,
559,
495,
10,
1227,
374,
426,
374,
15,
22,
187,
187,
23045,
247,
941,
2605,
326,
8525,
253,
1563,
767,
5871,
27,
187,
187,
4353,
823,
12753,
9,
565,
930,
10,
428,
5733,
247,
7007,
1180,
432,
253,
941,
5542,
281,
253,
941,
2605,
15,
187,
12237,
1089,
10818,
757,
1082,
428,
16140,
253,
8876,
273,
512,
3603,
594,
2080,
15,
187,
2214,
1650,
27,
187,
187,
1911,
9,
18,
10,
187,
1911,
9,
19,
10,
187,
8606,
10818,
757,
1082,
5204,
337,
15,
22,
187,
1911,
9,
20,
10,
209,
187,
8606,
10818,
757,
1082,
5204,
374,
187,
29981,
953,
27,
187,
22166,
6701,
281,
1214,
34830,
13895,
323,
6240,
436,
1895,
285,
6153,
512,
1071,
2219,
15,
187,
187,
29834,
6487,
308,
3544,
5559,
187,
14422,
308,
3544,
535
] | Median is the middle value in an ordered integer list. If the size of the list is even, there is no middle value. So the median is the mean of the two middle value.
Examples:
[2,3,4] , the median is 3
[2,3], the median is (2 + 3) / 2 = 2.5
Design a data structure that supports the following two operations:
void addNum(int num) - Add a integer number from the data stream to the data structure.
double findMedian() - Return the median of all elements so far.
For example:
add(1)
add(2)
findMedian() -> 1.5
add(3)
findMedian() -> 2
Credits:
Special thanks to @Louis1992 for adding this problem and creating all test cases.
Hide Company Tags Google
Show Tags
|
214,416 | Github | [
10708,
389,
15,
9906,
15,
11264,
67,
21557,
28,
187,
187,
2948,
7626,
15,
900,
15,
4505,
28,
187,
187,
4387,
966,
8490,
14968,
7781,
17930,
37987,
7781,
551,
535,
50276,
9486,
8490,
7646,
4505,
28,
187,
50276,
187,
50276,
4387,
8490,
14968,
7781,
9,
4505,
7646,
4505,
10,
551,
187,
50274,
2520,
15,
8547,
4505,
426,
7646,
4505,
28,
187,
50276,
94,
535,
50276,
33,
9677,
187,
50276,
4387,
4605,
755,
11930,
1082,
551,
187,
50274,
2309,
7646,
4505,
15,
788,
49805,
5455,
1874,
187,
50276,
94,
187,
94,
187
] | package com.google.sitebricks;
import java.io.File;
public class FileTemplateSource implements TemplateSource {
private File templateFile;
public FileTemplateSource(File templateFile) {
this.templateFile = templateFile;
}
@Override
public String getLocation() {
return templateFile.getAbsolutePath();
}
}
|
214,417 | Github | [
4,
5446,
55,
45007,
187,
2350,
55,
45007,
12105,
9850,
25715,
124,
165,
229,
219,
25949,
49,
17014,
49,
17014,
35072,
217,
17321,
116,
17576,
34179,
5225,
27258,
121,
37079,
29268,
102,
45007,
4340,
28154,
22329,
45314,
36820,
28586,
5959,
109,
17955,
221,
21458,
41869,
3218,
237,
45261,
35601,
14129,
99,
5225,
41140,
29268,
125,
21998,
222,
11894,
232,
47615,
20113,
6238,
42843,
3218,
231,
45314,
36820,
21365,
230,
18678,
5,
45,
64,
17,
5,
4746,
5,
45,
64,
19,
5,
21458,
5,
45,
18284,
2050,
1009,
42843,
18148,
17559,
217,
27707,
4340,
187,
817,
209,
45314,
36820,
47615,
20113,
187,
187,
14,
367,
17444,
187,
14,
401,
40,
6955,
186,
187,
187,
817,
209,
29463,
49873,
31949,
187,
30423,
26795,
49873,
31949,
29463,
75,
484,
350,
37661,
233,
14262,
236,
6238,
20005,
16800,
125,
29463,
21458,
29852,
216,
11894,
121,
4340,
187,
187,
14,
544,
16127,
121,
13486,
121,
18552,
8695,
880,
30872,
64,
32971,
64,
47510,
3024,
15,
532,
1362,
67,
10,
187,
187,
14,
544,
16127,
121,
13486,
121,
2632,
8695,
880,
30872,
64,
32971,
15,
532,
1362,
67,
10,
187,
187,
817,
209,
41202,
34380,
42522,
24086,
31902,
211,
187,
186,
3614,
1358,
7280,
15,
681,
16,
49,
17014,
49,
17014,
16,
19286,
16,
12588,
16,
16714,
16,
49,
17014,
8887,
16,
5695,
64,
42070,
22417,
186,
88,
788,
3944,
1358,
81,
17014,
14,
303,
6533,
292,
14,
19286,
14,
1590,
15,
35744,
15,
67,
336,
37298,
15,
681,
16,
2632,
8695,
1235,
64,
4025,
11273,
15,
17447,
187,
186,
17447,
428,
89,
39985,
2213,
8695,
1235,
64,
4025,
11273,
15,
17447,
996,
187,
60,
33859,
24899,
41202,
34380,
880,
3614,
1358,
7280,
15,
681,
16,
49,
17014,
49,
17014,
16,
19286,
16,
12588,
16,
16714,
16,
49,
17014,
8887,
10,
186,
996,
187,
817,
209,
47754,
39295,
27707,
20241,
109,
34693,
214,
535,
186,
42532,
3334,
1527,
17312,
14,
16659,
187,
186,
42532,
3334,
44432,
81,
17014,
381,
18,
15,
22,
535
] | # ADVSDK
ADVSDK是一款针对PaddlePaddle框架定制的轻量级SDK。目前支持学术届和工业界公认的基线测试算法,并且支持输出$L_0$、$L_2$和$L_(inf)$并可视化。
## 支持算法
- PGD
- FGSM
## 使用教程
全部教程使用jupter编写,方便使用和阅读。
- [攻击AlexNet](sdk_demo_alexnet.ipynb)
- [攻击ResNet](sdk_demo.ipynb)
## 模型文件地址
https://github.com/PaddlePaddle/models/tree/develop/PaddleCV/image_classification
wget http://paddle-imagenet-models-name.bj.bcebos.com/ResNet50_pretrained.tar
tar -xvf ResNet50_pretrained.tar
[更多模型](https://github.com/PaddlePaddle/models/tree/develop/PaddleCV)
## 初始化环境
pip install opencv-python
pip install paddlepaddle==1.5
|
214,418 | Github | [
3122,
19668,
20695,
4637,
313,
38860,
10,
19668,
8283,
313,
68,
10,
4104,
39159,
18526,
20613,
606,
19668,
40078,
310,
20585,
7169,
13,
1959,
273,
4179,
13,
281,
667,
1436,
13546,
247,
3491,
187,
273,
436,
3694,
285,
2330,
10097,
4367,
313,
783,
346,
31495,
8375,
281,
2968,
187,
275,
253,
9107,
1293,
12400,
13,
1690,
1293,
12291,
253,
3570,
187,
281,
897,
13,
3491,
13,
10007,
13,
17310,
13,
15452,
13,
16969,
13,
749,
21997,
13,
285,
16,
263,
5580,
187,
10125,
273,
253,
9107,
13,
285,
281,
9659,
7732,
281,
5207,
253,
9107,
310,
187,
25032,
281,
513,
594,
13,
2256,
281,
253,
1563,
2515,
27,
19668,
380,
1840,
9451,
4366,
285,
436,
9214,
4366,
3091,
320,
2908,
275,
187,
512,
10125,
390,
6832,
11821,
273,
253,
9107,
15,
19668,
3003,
19295,
4110,
33278,
346,
1719,
4110,
995,
15002,
23181,
3481,
9103,
19329,
13,
31643,
4145,
187,
25900,
13,
31877,
17706,
5803,
25666,
5935,
3003,
15466,
3481,
20863,
13,
187,
20524,
6651,
329,
20383,
20103,
4889,
36429,
1042,
6764,
2637,
17260,
15,
2949,
7651,
30609,
32221,
3003,
187,
31501,
16902,
4145,
28827,
43227,
8728,
34745,
6651,
9103,
46533,
13,
32024,
4145,
19359,
187,
27255,
13,
33206,
2949,
2933,
37457,
3481,
32833,
13,
34915,
4145,
35497,
13,
34984,
10727,
13,
187,
16341,
3481,
4145,
2949,
42867,
8286,
9277,
3003,
19295,
4145,
3003,
19226,
4145,
19359,
49731,
19212,
2949,
187,
3003,
19295,
15,
19668,
1738,
187,
187,
4,
2948,
346,
1647,
6717,
1507,
35561,
4612,
1100,
15,
73,
3,
187,
4,
2948,
346,
1647,
6717,
1507,
35561,
8929,
15,
73,
3,
187,
4,
2948,
346,
1647,
6717,
1507,
35561,
8929,
12,
19996,
15,
73,
3,
187,
4,
2948,
346,
1647,
37910,
16687,
20775,
15,
73,
3,
187,
4,
2948,
346,
1647,
37910,
16687,
3145,
10772,
15,
73,
3,
187,
4,
2948,
346,
1647,
6717,
1507,
15099,
20775,
15,
73,
3,
187,
4,
2948,
346,
6663,
37910,
16687,
12,
1647,
6717,
1507,
35561,
8929,
15,
73,
3,
187,
4,
2948,
346,
6663,
37910,
12,
1647,
6717,
1507,
35561,
8929,
15,
73,
3,
187,
4,
2948,
346,
6663,
6586,
8224,
12,
1647,
6717,
1507,
35561,
8929,
15,
73,
3,
187,
4,
2948,
346,
4883,
18099,
12,
1647,
6717,
1507,
35561,
8929,
15,
73,
3,
8863,
187,
33,
15049,
7403,
37910,
16687,
20775,
1082,
187,
29,
6663,
16227,
20607,
13086,
42780,
13,
7403,
6717,
1507,
15099,
20775,
23757,
31,
187,
187,
33,
9134,
313,
42264,
13,
5075,
10,
7403,
6717,
1507,
35561,
8929,
475,
25819,
28,
187,
187,
33,
9134,
313,
42264,
13,
2266,
10,
530,
5472,
274,
8880,
5475,
475,
35899,
8880,
28,
187,
33,
9134,
313,
42264,
13,
2266,
10,
530,
5472,
274,
8880,
5475,
475,
17506,
8880,
28,
187,
187,
33,
9134,
313,
42264,
13,
3491,
10,
6640,
6542,
475,
24717,
9340,
28,
187,
33,
9134,
313,
42264,
13,
3491,
10,
6640,
6542,
475,
39869,
32293,
28,
187,
33,
9134,
313,
42264,
13,
2266,
10,
8367,
36,
5250,
6586,
8224,
475,
5695,
8224,
28,
187,
187,
33,
9134,
313,
42264,
13,
2266,
10,
8367,
37910,
16687,
475,
6986,
37910,
16687,
28,
187,
33,
9134,
313,
42264,
13,
9212,
10,
46013,
858,
14422,
9671,
37910,
16687,
28,
187,
33,
9134,
313,
42264,
13,
9212,
10,
46013,
858,
10004,
9671,
37910,
16687,
28,
187,
187,
33,
423,
8863,
187,
33,
39595,
7403,
37910,
16687,
20775,
187,
187,
14,
313,
6839,
1377,
40427,
10,
4478,
187,
92,
187,
50274,
338,
313,
1286,
426,
544,
12185,
44668,
11446,
27,
41270,
38375,
11446,
3493,
404,
3291,
187,
50274,
92,
187,
50270,
64,
5695,
8224,
426,
544,
6663,
36,
5250,
6586,
8224,
747,
2194,
187,
50270,
60,
1286,
823,
27193,
42780,
2194,
187,
50274,
94,
187,
50274,
187,
50274,
2309,
1881,
28,
187,
94,
187,
187,
14,
313,
4353,
10,
1374,
8917,
9624,
187,
92,
187,
50274,
60,
12185,
1859,
8917,
9624,
2194,
187,
50274,
60,
1286,
9978,
43091,
2194,
187,
50274,
60,
1286,
1980,
907,
2194,
187,
50274,
60,
1286,
9978,
9671,
37910,
16687,
2194,
187,
50274,
60,
1286,
9978,
49382,
9340,
2194,
187,
50274,
60,
1286,
8749,
13086,
42780,
2194,
187,
94,
187,
187,
14,
313,
4353,
10,
1374,
12978,
24135,
274,
10477,
30529,
10,
10779,
456,
187,
92,
187,
50274,
60,
12185,
1859,
12978,
24135,
274,
27,
10779,
456,
2194,
187,
50274,
60,
1286,
9978,
1989,
24787,
2194,
187,
50274,
60,
1286,
5731,
13408,
27,
1286,
15,
25819,
15,
16191,
6717,
1507,
2194,
187,
50274,
60,
1286,
5731,
8880,
27,
1286,
15,
25819,
15,
16191,
6717,
1507,
2194,
187,
50274,
60,
1286,
3609,
9671,
37910,
16687,
2194,
187,
94,
187,
187,
14,
313,
4353,
10,
615,
10835,
187,
92,
187,
50274,
60,
1286,
440,
15905,
13086,
42780,
2194,
187,
50274,
60,
1286,
5386,
27193,
42780,
2194,
187,
94,
535,
187,
4,
26579,
1616,
428,
5712,
1376,
2608,
5673,
187,
187,
14,
313,
4353,
10,
41347,
6989,
14418,
187,
92,
187,
50274,
60,
1286,
9978,
43091,
2194,
187,
50274,
60,
1286,
9978,
1989,
24787,
2194,
187,
50274,
60,
1286,
1980,
907,
2194,
187,
50274,
60,
1286,
9978,
9671,
37910,
16687,
2194,
187,
50274,
60,
1286,
9978,
49382,
9340,
2194,
187,
94,
535,
187,
4,
26579,
1616,
428,
13135,
641,
187,
187,
14,
313,
1647,
6717,
1507,
35561,
8929,
9657,
25819,
187,
92,
187,
50274,
2309,
313,
1647,
6717,
1507,
35561,
8929,
9657,
1286,
15,
9148,
20775,
15,
5598,
20775,
28,
187,
94,
187,
187,
14,
313,
4883,
6060,
5455,
9657,
4663,
5455,
2214,
37910,
16687,
10477,
6663,
37910,
16687,
9657,
39869,
16687,
187,
92,
187,
50274,
4883,
16467,
4194,
426,
544,
1286,
15,
39869,
32293,
3605,
4527,
4241,
27,
39869,
16687,
2194,
535,
50274,
338,
313,
736,
3613,
6640,
34115,
10,
187,
50270,
2309,
544,
4883,
6060,
5455,
3605,
5455,
2214,
10990,
27,
736,
275,
12612,
27,
17,
2194,
187,
50274,
7271,
187,
50270,
2309,
5296,
28,
187,
94,
535,
187,
4,
26579,
1616,
428,
40852,
187,
187,
14,
313,
4353,
10,
23320,
43091,
187,
92,
187,
50274,
1286,
15,
2420,
3145,
15,
736,
13881,
426,
38894,
38375,
7034,
8977,
18157,
2452,
28,
187,
50274,
187,
50274,
1286,
15,
2420,
3145,
15,
383,
18280,
10990,
13881,
426,
187,
50274,
1286,
15,
25819,
15,
39869,
16687,
1044,
3561,
32012,
5496,
15,
7436,
559,
187,
50274,
1286,
15,
2420,
3145,
15,
7916,
36569,
968,
15,
3956,
559,
187,
50274,
1286,
15,
2420,
3145,
15,
7916,
36569,
968,
15,
10492,
28,
535,
50274,
1286,
15,
2420,
3145,
15,
37734,
11446,
426,
38894,
38375,
10772,
38830,
1080,
11446,
11336,
28,
187,
94,
187,
187,
14,
313,
4353,
10,
23320,
1989,
24787,
187,
92,
187,
50274,
338,
313,
1286,
15,
17506,
8880,
2295,
5296,
10,
187,
50274,
92,
187,
50270,
26648,
475,
5564,
426,
313,
1286,
15,
25819,
15,
17506,
8880,
13408,
10,
3736,
187,
50270,
1286,
15,
25819,
15,
17506,
8880,
13408,
1163,
7403,
6717,
1507,
35561,
12599,
1025,
2776,
38217,
34739,
995,
5296,
558,
187,
50270,
187,
50270,
1286,
15,
17506,
8880,
426,
187,
50270,
14598,
54,
5472,
274,
8880,
5475,
9771,
62,
44668,
13408,
27,
5564,
187,
50254,
50261,
4826,
27,
54,
5472,
274,
8880,
5475,
11446,
34739,
187,
50254,
50262,
7831,
27,
1286,
15,
25819,
187,
50254,
50262,
1913,
27,
33,
28192,
9,
43020,
49,
12427,
6717,
1507,
37731,
2194,
187,
50274,
94,
187,
50274,
187,
50274,
338,
313,
1286,
15,
35899,
8880,
2295,
5296,
10,
187,
50274,
92,
187,
50270,
1286,
15,
35899,
8880,
426,
187,
50270,
14598,
54,
5472,
274,
8880,
5475,
9771,
62,
44668,
13408,
27,
1647,
6717,
1507,
35561,
12599,
1025,
2776,
38217,
36885,
995,
5296,
10,
187,
50254,
50261,
4826,
27,
54,
5472,
274,
8880,
5475,
11446,
3493,
404,
187,
50254,
50262,
7831,
27,
1286,
15,
25819,
187,
50254,
50262,
1913,
27,
33,
28192,
9,
37106,
37731,
2194,
187,
50274,
94,
187,
94,
187,
187,
14,
313,
4353,
10,
6790,
907,
187,
92,
187,
50274,
60,
1286,
14932,
13408,
2194,
187,
94,
187,
187,
14,
313,
4353,
10,
23320,
49382,
9340,
187,
92,
187,
50274,
4883,
32859,
6542,
475,
24717,
9340,
426,
544,
4883,
32859,
6542,
747,
2194,
535,
50274,
1542,
313,
4883,
8447,
475,
2377,
881,
8447,
275,
1881,
15,
25819,
15,
39869,
16687,
5623,
10706,
10,
187,
50274,
92,
187,
50270,
6663,
37910,
16687,
2548,
1511,
50271,
30,
544,
6663,
37910,
16687,
45830,
39869,
35561,
37910,
16687,
2548,
4527,
5623,
881,
27,
2377,
881,
8447,
15,
18743,
3902,
2194,
187,
50270,
6663,
37910,
16687,
5623,
881,
27567,
426,
27567,
8447,
15,
18743,
3902,
28,
187,
50270,
187,
50270,
6663,
49382,
9179,
475,
24717,
9179,
426,
187,
50270,
60,
6663,
37910,
16687,
20279,
37910,
32293,
3378,
2548,
27,
881,
187,
50254,
50254,
27567,
27,
2377,
881,
187,
50254,
50254,
4610,
27,
1286,
15,
25819,
15,
39869,
16687,
49382,
10976,
2194,
187,
50270,
187,
50270,
60,
24717,
9340,
823,
4241,
27,
24717,
9179,
2194,
187,
50274,
94,
187,
50274,
187,
50274,
1286,
15,
24717,
9340,
426,
544,
4883,
32859,
6542,
3781,
3378,
6542,
27,
24717,
9340,
2194,
187,
50274,
187,
50274,
60,
1286,
5731,
37910,
32293,
2194,
187,
50274,
60,
1286,
31018,
3233,
2194,
187,
50274,
60,
1286,
921,
9671,
37910,
16687,
2194,
187,
94,
187,
187,
14,
313,
4353,
10,
11183,
37910,
32293,
187,
92,
187,
50274,
4883,
32859,
6542,
475,
39869,
32293,
426,
544,
4883,
32859,
6542,
747,
2194,
535,
50274,
1542,
313,
6663,
49382,
9179,
475,
24717,
9179,
275,
1881,
15,
24717,
9340,
10,
187,
50274,
92,
187,
50270,
1542,
313,
6663,
37910,
16687,
475,
39869,
16687,
275,
20279,
9179,
10,
187,
50270,
92,
187,
50266,
30529,
2722,
37910,
16687,
426,
22487,
28,
187,
50266,
187,
50266,
338,
6522,
1286,
15,
25819,
15,
1200,
5811,
16801,
40166,
84,
10,
187,
50266,
92,
187,
50262,
6663,
49382,
10976,
475,
10121,
426,
544,
6663,
49382,
10976,
747,
2194,
187,
50262,
10121,
15,
12787,
9038,
426,
1881,
15,
25819,
15,
26094,
49382,
10976,
15,
12787,
9038,
28,
187,
50262,
187,
50262,
338,
2470,
10121,
27019,
1992,
22215,
27,
33,
28192,
9,
1178,
49382,
24314,
37731,
3291,
187,
50258,
10121,
15,
24717,
24314,
426,
337,
28,
187,
50262,
187,
50262,
4883,
16467,
1385,
426,
544,
39869,
16687,
45830,
39869,
49,
1479,
1209,
6878,
4527,
6717,
1507,
39,
292,
2147,
3378,
10976,
27,
10121,
2194,
187,
50262,
187,
50262,
1200,
5811,
37910,
16687,
426,
313,
5560,
2239,
470,
558,
187,
50266,
94,
187,
50266,
187,
50266,
338,
313,
1200,
5811,
37910,
16687,
10,
187,
50262,
60,
39869,
32293,
823,
4241,
27,
39869,
16687,
2194,
187,
50270,
94,
187,
50274,
94,
535,
50274,
1286,
15,
39869,
32293,
426,
544,
4883,
32859,
6542,
3781,
3378,
6542,
27,
39869,
32293,
2194,
187,
94,
187,
187,
14,
313,
4353,
10,
23320,
9671,
37910,
16687,
187,
92,
187,
50274,
338,
6522,
1286,
15,
25819,
2785,
1881,
15,
25819,
15,
6986,
37910,
16687,
2295,
8367,
37910,
16687,
5623,
881,
6693,
10,
551,
187,
50270,
1286,
15,
6986,
37910,
16687,
426,
5296,
28,
187,
50270,
2309,
28,
187,
50274,
94,
187,
50274,
187,
50274,
6663,
37910,
16687,
2548,
1511,
426,
544,
6663,
37910,
16687,
45830,
39869,
35561,
37910,
16687,
2548,
4527,
5623,
881,
27,
1286,
15,
25819,
15,
6986,
37910,
16687,
2194,
187,
50274,
6663,
49382,
9179,
475,
24717,
9179,
426,
544,
6663,
37910,
16687,
20279,
37910,
32293,
3378,
2548,
27,
881,
27567,
27,
1286,
15,
25819,
15,
6986,
37910,
16687,
4610,
27,
1286,
15,
25819,
15,
39869,
16687,
49382,
10976,
2194,
187,
50274,
187,
50274,
1286,
15,
6986,
37910,
16687,
426,
20279,
9179,
15,
7053,
4241,
28,
187,
94,
535,
187,
4,
26579,
1616,
428,
22343,
318,
187,
187,
14,
313,
4353,
10,
1374,
12978,
39512,
1992,
5496,
10477,
10206,
5496,
10,
3281,
342,
39512,
32876,
12915,
10477,
301,
29,
9571,
20775,
39512,
32876,
12915,
22226,
29309,
12915,
187,
92,
187,
50274,
60,
12185,
1859,
12978,
39512,
1992,
5496,
27,
3281,
342,
39512,
32876,
12915,
27,
29309,
12915,
2194,
187,
50274,
187,
50274,
60,
29309,
12915,
49129,
37356,
2189,
39512,
27,
24123,
301,
29,
9571,
20775,
39512,
32876,
12915,
5856,
31,
3634,
10,
551,
187,
50270,
60,
1286,
5731,
13408,
27,
1286,
15,
25819,
15,
16191,
6717,
1507,
2194,
187,
50270,
60,
1286,
5731,
8880,
27,
1286,
15,
25819,
15,
16191,
6717,
1507,
2194,
187,
50274,
94,
12240,
27,
18789,
2194,
187,
94,
187,
187,
4,
26579,
1616,
428,
3105,
6787,
187,
187,
14,
313,
4353,
10,
1911,
27193,
42780,
187,
92,
187,
50274,
4883,
27193,
21972,
475,
9229,
426,
544,
4883,
27193,
21972,
4284,
21972,
2194,
187,
50274,
187,
50274,
60,
9229,
823,
42780,
27,
1286,
187,
50263,
28192,
27,
33,
28192,
9,
16191,
6717,
1507,
17196,
37731,
187,
50259,
1590,
27,
1647,
6717,
1507,
35561,
19030,
6717,
1507,
8917,
13086,
27193,
187,
50261,
6082,
27,
18789,
2194,
187,
50274,
187,
50274,
60,
9229,
823,
42780,
27,
1286,
187,
50263,
28192,
27,
33,
28192,
9,
6071,
5496,
1413,
17196,
37731,
187,
50259,
1590,
27,
45717,
834,
290,
5496,
1413,
8917,
13086,
27193,
187,
50261,
6082,
27,
18789,
2194,
187,
94,
187,
187,
14,
313,
4353,
10,
12163,
27193,
42780,
187,
92,
187,
50274,
14598,
4883,
27193,
21972,
4284,
21972,
62,
5386,
42780,
27,
1286,
1416,
27,
1647,
6717,
1507,
35561,
19030,
6717,
1507,
8917,
13086,
27193,
1789,
27,
18789,
2194,
187,
50274,
14598,
4883,
27193,
21972,
4284,
21972,
62,
5386,
42780,
27,
1286,
1416,
27,
45717,
834,
290,
5496,
1413,
8917,
13086,
27193,
1789,
27,
18789,
2194,
187,
94,
535,
187,
4,
26579,
1616,
428,
15837,
6335,
1818,
19969,
187,
187,
14,
313,
4353,
10,
15905,
13086,
42780,
187,
92,
187,
50274,
14598,
6663,
16227,
20607,
6096,
16227,
20607,
62,
8749,
13086,
42780,
27,
1286,
2194,
187,
94,
187,
187,
14,
313,
4353,
10,
328,
15905,
13086,
42780,
187,
92,
187,
50274,
14598,
6663,
16227,
20607,
6096,
16227,
20607,
62,
440,
15905,
13086,
42780,
27,
1286,
2194,
187,
94,
535,
187,
4,
26579,
1616,
428,
15837,
6335,
4391,
187,
187,
14,
313,
4353,
10,
24442,
20607,
8917,
13086,
10477,
6663,
13086,
9657,
4168,
11257,
187,
92,
187,
50274,
605,
9368,
1537,
1705,
327,
667,
4114,
15154,
15,
1720,
14,
34245,
281,
253,
2022,
15154,
281,
6016,
352,
15,
187,
50274,
34245,
64,
27216,
9,
34245,
64,
788,
64,
7265,
64,
14487,
5715,
15892,
187,
50270,
187,
50270,
4883,
32859,
6542,
475,
39055,
49382,
9340,
426,
5296,
28,
187,
50270,
187,
50270,
1542,
313,
6663,
49382,
9179,
475,
24717,
9179,
275,
1881,
15,
24717,
9340,
10,
187,
50270,
92,
187,
50266,
6663,
49382,
9179,
13086,
21691,
475,
4168,
21691,
426,
544,
4168,
11257,
1818,
21691,
2214,
49382,
9179,
27,
24717,
9179,
2194,
187,
50266,
187,
50266,
338,
313,
4168,
21691,
10,
187,
50266,
92,
187,
50262,
338,
6522,
39055,
49382,
9340,
10,
187,
50258,
39055,
49382,
9340,
426,
544,
1286,
15,
24717,
9340,
2873,
494,
17491,
2194,
187,
50262,
187,
50262,
39055,
49382,
9340,
14598,
1286,
15,
24717,
9340,
3605,
4527,
4241,
27,
24717,
9179,
9502,
426,
1818,
21691,
15,
24717,
9179,
4553,
29143,
28,
187,
50266,
94,
187,
50270,
94,
187,
50270,
187,
50270,
338,
313,
39055,
49382,
9340,
10,
187,
50270,
92,
187,
50266,
1286,
15,
24717,
9340,
426,
9300,
49382,
9340,
28,
187,
50266,
60,
1286,
5731,
37910,
32293,
2194,
187,
50266,
60,
1286,
31018,
3233,
2194,
187,
50270,
94,
187,
50270,
187,
50274,
9897,
187,
94,
535,
187,
4,
26579,
1616,
428,
38580,
10434,
4391,
187,
187,
14,
313,
4353,
10,
16191,
6717,
1507,
17196,
10477,
4883,
27193,
9657,
42942,
187,
92,
187,
50274,
4883,
6542,
475,
16191,
6717,
1507,
426,
313,
4883,
6542,
9657,
42942,
15,
6082,
28,
187,
50274,
60,
1286,
5731,
13408,
27,
16191,
6717,
1507,
2194,
187,
50274,
60,
1286,
5731,
8880,
27,
16191,
6717,
1507,
2194,
187,
94,
187,
187,
14,
313,
4353,
10,
11183,
13408,
10477,
4883,
6542,
9657,
16191,
6717,
1507,
187,
92,
187,
50274,
338,
2470,
1286,
310,
11387,
20775,
62,
3857,
4236,
6717,
1507,
15,
5560,
2239,
470,
10,
187,
50270,
1286,
15,
5564,
426,
1881,
15,
25819,
15,
16191,
6717,
1507,
2776,
28,
187,
50274,
7271,
187,
50270,
60,
1286,
14932,
13408,
2194,
187,
94,
187,
187,
14,
313,
4353,
10,
11183,
8880,
10477,
4883,
6542,
9657,
16191,
6717,
1507,
187,
92,
187,
50274,
1286,
15,
37336,
5475,
15,
1274,
7912,
8880,
5475,
426,
313,
1286,
15,
25819,
15,
1200,
5811,
36885,
8880,
10,
3736,
1881,
15,
35899,
8880,
1163,
5296,
28,
187,
50274,
1286,
15,
37336,
5475,
15,
918,
7912,
8880,
5475,
426,
544,
1286,
310,
11387,
20775,
62,
3736,
1881,
15,
17506,
8880,
1163,
5296,
28,
187,
50274,
187,
50274,
338,
313,
1286,
15,
25819,
15,
25737,
27265,
34739,
8880,
10,
187,
50270,
1286,
15,
37336,
5475,
15,
918,
7912,
8880,
5475,
15,
22331,
426,
22487,
28,
187,
50274,
7271,
187,
50270,
1286,
15,
37336,
5475,
15,
918,
7912,
8880,
5475,
15,
22331,
426,
313,
1286,
15,
25819,
15,
16191,
6717,
1507,
15,
5560,
2239,
470,
558,
187,
94,
187,
187,
14,
313,
30529,
10,
261,
11387,
20775,
187,
92,
187,
50274,
9571,
20775,
475,
16788,
426,
1881,
15,
9148,
20775,
15,
1374,
2861,
1811,
398,
15,
6275,
4241,
28,
187,
50274,
187,
50274,
338,
2470,
16788,
310,
20226,
4527,
4947,
21382,
54,
1042,
580,
5538,
8929,
966,
62,
3291,
187,
50270,
2309,
313,
1286,
2295,
6048,
54,
1042,
580,
5538,
8929,
9657,
16788,
481,
3956,
20775,
558,
187,
50274,
7271,
187,
50270,
2309,
7651,
28,
187,
94,
187,
187,
14,
313,
4353,
10,
19511,
13408,
187,
92,
187,
50274,
338,
6522,
1286,
15,
25819,
15,
5564,
10,
187,
50270,
1286,
15,
5564,
426,
7403,
6717,
1507,
35561,
12599,
1025,
2776,
38217,
46570,
995,
5296,
558,
187,
50274,
7271,
187,
50270,
1286,
15,
5564,
426,
1881,
15,
25819,
15,
5564,
28,
187,
94,
535,
187,
4,
26579,
1616,
428,
17215,
1979,
7140,
4391,
187,
187,
14,
313,
4353,
10,
6071,
5496,
1413,
17196,
10477,
4883,
27193,
9657,
42942,
187,
92,
187,
50274,
60,
1286,
31018,
3233,
2194,
187,
94,
535,
187,
4,
26579,
1616,
428,
5712,
1376,
941,
187,
187,
14,
313,
4353,
10,
41347,
3233,
187,
92,
187,
50274,
338,
313,
1286,
15,
39869,
32293,
15,
5560,
2239,
470,
10,
187,
50270,
60,
1286,
15,
2420,
3145,
31018,
3233,
2194,
187,
50274,
7271,
187,
50270,
60,
1286,
15,
25819,
921,
2302,
6717,
1507,
2194,
187,
94,
535,
187,
4,
26579,
1616,
428,
5270,
1859,
941,
2603,
187,
187,
14,
313,
4883,
16467,
10,
9133,
4527,
3251,
960,
688,
3235,
3145,
10477,
41270,
38375,
9657,
2420,
3145,
187,
92,
187,
50274,
2309,
337,
28,
187,
94,
187,
187,
14,
313,
4883,
16467,
10,
2420,
3145,
10477,
41270,
38375,
9657,
2420,
3145,
1180,
4527,
27500,
688,
12612,
10477,
4883,
16467,
10,
4674,
187,
92,
187,
50274,
2309,
1881,
15,
39869,
32293,
15,
5560,
28,
187,
94,
187,
187,
14,
313,
41270,
38375,
10772,
9657,
2420,
3145,
10477,
41270,
38375,
9657,
2420,
3145,
894,
2214,
10990,
44936,
5455,
10477,
4883,
6060,
5455,
9657,
4663,
5455,
187,
92,
187,
50274,
6663,
37910,
16687,
475,
25318,
426,
1881,
15,
39869,
32293,
60,
4663,
5455,
15,
736,
2194,
187,
50274,
4883,
54,
16467,
1385,
28,
187,
50274,
187,
50274,
338,
313,
1286,
15,
25819,
15,
1200,
5811,
8447,
4527,
6717,
1507,
10,
187,
50270,
5560,
426,
544,
25318,
45830,
39869,
49,
1479,
1209,
6878,
4527,
6717,
1507,
39,
292,
2147,
3378,
10976,
27,
1286,
15,
25819,
15,
26094,
49382,
10976,
2194,
187,
50274,
7271,
187,
50270,
5560,
426,
6640,
34115,
28,
187,
50274,
187,
50274,
4659,
31681,
475,
3992,
18483,
426,
27508,
10772,
18483,
3664,
187,
50274,
187,
50274,
1647,
37910,
16687,
3145,
10772,
475,
3992,
426,
544,
2420,
3145,
372,
14487,
1785,
34153,
10772,
3378,
18483,
27,
3992,
18483,
2194,
187,
50274,
187,
50274,
338,
313,
3992,
2295,
5296,
10,
187,
50270,
3992,
426,
8605,
1647,
37910,
16687,
3145,
10772,
9771,
62,
44668,
1044,
3561,
32012,
5496,
27,
1286,
15,
25819,
15,
39869,
16687,
1044,
3561,
32012,
5496,
187,
50254,
50254,
50266,
250,
2327,
18483,
27,
3992,
18483,
2194,
187,
50274,
187,
50274,
60,
3992,
8980,
27,
25318,
1385,
27,
5560,
2194,
187,
50274,
60,
1286,
2748,
1044,
3561,
79,
5351,
2214,
10772,
27,
3992,
15231,
16687,
27,
25318,
2194,
187,
50274,
187,
50274,
2309,
894,
28,
187,
94,
187,
187,
14,
313,
4353,
10,
9629,
1044,
3561,
79,
5351,
2214,
10772,
10477,
1647,
37910,
16687,
3145,
10772,
9657,
3992,
15231,
16687,
10477,
6663,
37910,
16687,
9657,
25318,
187,
92,
187,
50274,
4883,
54,
16467,
1385,
50274,
30,
894,
15,
30857,
32012,
998,
7305,
15,
30857,
32012,
43091,
15,
5560,
28,
187,
50274,
4883,
6542,
475,
26094,
50273,
30,
544,
1286,
20731,
6717,
1507,
4509,
37910,
16687,
27,
25318,
1385,
27,
5560,
2194,
187,
50274,
10206,
5496,
2303,
5496,
50275,
30,
544,
1286,
15,
25819,
2460,
5496,
2214,
15226,
5496,
27,
1286,
15,
25819,
15,
39869,
16687,
1044,
3561,
32012,
5496,
2194,
187,
50274,
187,
50274,
1542,
313,
4883,
54,
16467,
3605,
426,
470,
28,
3605,
654,
1385,
28,
3605,
9234,
187,
50274,
92,
187,
50270,
1647,
37910,
1044,
3561,
32012,
3145,
475,
30857,
32012,
3145,
426,
544,
3992,
15,
30857,
32012,
998,
7305,
17300,
32012,
44936,
27,
4663,
2194,
187,
50270,
30857,
32012,
3145,
15,
19057,
426,
313,
26094,
15,
5560,
2239,
470,
10,
3736,
22487,
1163,
7651,
28,
187,
50270,
187,
50270,
338,
313,
4663,
654,
10434,
15,
5560,
10,
187,
50270,
92,
187,
50266,
6663,
37910,
475,
39869,
426,
10434,
60,
4663,
2194,
187,
50266,
60,
1286,
15,
5695,
8224,
45830,
26094,
35561,
6825,
6586,
2214,
37910,
27,
39869,
187,
50254,
50261,
7831,
5496,
27,
7831,
5496,
187,
50254,
50262,
6071,
10715,
27,
6663,
6586,
8590,
10715,
1909,
808,
30296,
187,
50254,
50258,
10121,
27,
1286,
15,
25819,
15,
30857,
32012,
6825,
10976,
187,
50254,
50264,
6870,
9294,
27,
24123,
54,
38129,
475,
5695,
13,
427,
3871,
10052,
475,
5374,
910,
187,
50254,
50260,
60,
30857,
32012,
3145,
873,
37828,
27,
7716,
2194,
187,
50254,
50260,
60,
30857,
32012,
3145,
8980,
27,
5695,
15231,
16687,
27,
25318,
2194,
187,
50254,
50264,
94,
2194,
187,
50270,
94,
187,
50274,
94,
187,
94,
187,
187,
14,
313,
4883,
6542,
9657,
5996,
254,
6717,
1507,
4509,
37910,
16687,
10477,
6663,
37910,
16687,
9657,
25318,
1385,
10477,
4883,
54,
16467,
10,
5560,
28,
187,
92,
187,
50274,
6663,
49382,
10976,
475,
10121,
426,
544,
6663,
49382,
10976,
747,
2194,
187,
50274,
10121,
15,
12787,
9038,
50271,
30,
1881,
15,
25819,
15,
26094,
49382,
10976,
15,
12787,
9038,
28,
1380,
15616,
7616,
29524,
187,
50274,
10121,
15,
15227,
4476,
1687,
641,
426,
1214,
14598,
47,
3528,
430,
21873,
3686,
21873,
3378,
4814,
25731,
30767,
6958,
3,
20474,
27,
24239,
44270,
187,
50274,
187,
50274,
6663,
49382,
9179,
475,
6870,
426,
544,
6663,
37910,
20279,
4814,
6717,
1507,
688,
37910,
16687,
27,
25318,
4610,
27,
10121,
2194,
187,
50274,
187,
50274,
4883,
54,
16467,
4328,
426,
470,
28,
187,
50274,
4883,
54,
16467,
2978,
50275,
30,
313,
6870,
15,
5560,
654,
1385,
10,
3736,
906,
15,
5560,
1163,
1385,
28,
187,
50274,
4883,
6542,
475,
26094,
50273,
30,
544,
1286,
4957,
4509,
49382,
9179,
27,
6870,
2491,
27,
4883,
13325,
12519,
9,
12428,
13,
2978,
46462,
187,
50274,
187,
50274,
2309,
10434,
28,
187,
94,
187,
187,
14,
313,
4883,
6542,
9657,
15565,
4509,
49382,
9179,
10477,
6663,
49382,
9179,
9657,
6870,
2491,
10477,
4883,
12519,
10,
6324,
187,
92,
187,
50274,
338,
313,
6870,
15,
5560,
2295,
470,
10,
187,
50270,
2309,
5296,
28,
187,
50274,
187,
50274,
4883,
6060,
4531,
475,
4663,
4531,
426,
544,
4883,
6060,
4531,
3605,
4531,
3378,
6060,
265,
688,
12519,
27,
6324,
2194,
187,
50274,
4883,
6542,
475,
3728,
426,
544,
6870,
5113,
44936,
265,
27,
4663,
4531,
2194,
187,
50274,
187,
50274,
2309,
3781,
28,
187,
94,
535,
187,
4,
26579,
1616,
428,
5270,
1859,
24565,
187,
187,
14,
313,
4353,
10,
2420,
3145,
10477,
41270,
38375,
9657,
2420,
3145,
858,
10004,
10990,
44936,
5455,
10477,
4883,
6060,
5455,
9657,
4663,
5455,
187,
92,
187,
50274,
6663,
37910,
16687,
475,
25318,
426,
1881,
15,
39869,
32293,
60,
4663,
5455,
15,
736,
2194,
187,
50274,
187,
50274,
1647,
6717,
1507,
15099,
20775,
475,
16788,
426,
544,
1647,
6717,
1507,
15099,
20775,
747,
2194,
187,
50274,
16788,
15,
5564,
426,
1881,
15,
25819,
15,
16191,
6717,
1507,
2776,
3736,
1163,
4849,
15,
6790,
1025,
13408,
28,
187,
50274,
16788,
15,
39869,
16687,
426,
4849,
28,
187,
50274,
16788,
15,
43663,
426,
1881,
28,
187,
50274,
187,
50274,
54,
1042,
580,
5538,
8929,
475,
8002,
426,
8605,
54,
1042,
580,
5538,
8929,
9771,
62,
44668,
16560,
20775,
27,
16788,
2194,
187,
50274,
8002,
15,
43663,
426,
313,
301,
29,
54,
1042,
580,
5538,
8929,
23757,
22226,
1286,
15,
25819,
28,
187,
50274,
187,
50274,
60,
1286,
15,
25819,
873,
18837,
19013,
8023,
29596,
20775,
27,
7716,
2194,
187,
50274,
60,
1286,
15,
9148,
20775,
921,
29596,
20775,
27,
8002,
22647,
27,
18789,
2194,
187,
94,
535,
187,
4,
26579,
1616,
428,
10684,
1227,
3609,
4284,
15231,
4849,
187,
187,
14,
313,
4353,
10,
9029,
9671,
37910,
16687,
187,
92,
187,
50274,
338,
313,
1286,
15,
6986,
37910,
16687,
3857,
2195,
1286,
15,
14958,
14422,
9671,
37910,
16687,
10,
187,
50274,
92,
187,
50270,
1647,
6717,
1507,
15099,
20775,
475,
16788,
426,
544,
1647,
6717,
1507,
15099,
20775,
747,
2194,
187,
50270,
16788,
15,
5564,
426,
1881,
15,
25819,
15,
16191,
6717,
1507,
2776,
3736,
1163,
1881,
15,
6986,
37910,
16687,
15,
6790,
1025,
13408,
28,
187,
50270,
16788,
15,
39869,
16687,
426,
1881,
15,
6986,
37910,
16687,
28,
187,
50270,
16788,
15,
43663,
426,
1881,
28,
187,
50270,
187,
50270,
54,
1042,
580,
5538,
8929,
475,
8002,
426,
8605,
54,
1042,
580,
5538,
8929,
9771,
62,
44668,
16560,
20775,
27,
16788,
2194,
187,
50270,
8002,
15,
43663,
426,
313,
301,
29,
54,
1042,
580,
5538,
8929,
23757,
22226,
1286,
15,
25819,
28,
187,
50270,
187,
50270,
60,
1286,
15,
25819,
873,
18837,
19013,
8023,
29596,
20775,
10477,
1286,
15,
25819,
15,
24353,
25582,
318,
11446,
2295,
530,
2894,
26306,
25582,
318,
5232,
30035,
46462,
187,
50270,
60,
1286,
15,
9148,
20775,
921,
29596,
20775,
27,
8002,
22647,
27,
18789,
2194,
535,
50270,
4883,
6060,
5455,
475,
4663,
5455,
426,
544,
1286,
3605,
5455,
2214,
37910,
16687,
27,
1286,
15,
6986,
37910,
16687,
2194,
187,
50270,
60,
1286,
15,
2420,
3145,
3609,
10990,
44936,
5455,
27,
4663,
5455,
21530,
27,
24239,
14084,
13883,
27,
41270,
38375,
23772,
13883,
11387,
2194,
187,
50270,
187,
50270,
1286,
15,
14958,
14422,
9671,
37910,
16687,
426,
22487,
28,
187,
50274,
94,
187,
94,
187,
187,
14,
313,
4353,
10,
7135,
9671,
37910,
16687,
187,
92,
187,
50274,
338,
313,
1286,
15,
6986,
37910,
16687,
3857,
2195,
1286,
15,
14958,
10004,
9671,
37910,
16687,
10,
187,
50274,
92,
187,
50270,
4883,
6060,
5455,
475,
4663,
5455,
426,
544,
1286,
3605,
5455,
2214,
37910,
16687,
27,
1286,
15,
6986,
37910,
16687,
2194,
187,
50270,
187,
50270,
338,
313,
4663,
5455,
10,
187,
50270,
92,
187,
50266,
60,
9571,
3145,
49129,
3378,
24921,
27,
17,
15,
17,
71,
187,
50254,
50273,
10779,
569,
27,
768,
187,
50254,
50269,
60,
1286,
15,
2420,
3145,
3609,
10990,
44936,
5455,
27,
4663,
5455,
187,
50254,
50254,
50265,
10779,
456,
10477,
2,
1286,
15,
9148,
20775,
15,
14641,
13395,
10,
187,
50254,
50254,
50271,
22860,
13883,
27,
41270,
38375,
23772,
13883,
11387,
2194,
187,
50254,
748,
187,
50254,
12240,
27,
24123,
30529,
6699,
910,
187,
50254,
50273,
605,
25066,
1391,
1032,
23474,
2374,
3145,
12978,
24135,
274,
187,
50254,
50273,
338,
313,
36077,
3857,
1881,
15,
9148,
20775,
15,
14641,
13395,
10,
187,
50254,
50269,
60,
1286,
15,
2420,
3145,
711,
13467,
10990,
44936,
5455,
27,
4663,
5455,
21530,
27,
24239,
2194,
187,
50254,
748,
2194,
187,
50270,
94,
187,
50270,
187,
50270,
1286,
15,
14958,
10004,
9671,
37910,
16687,
426,
22487,
28,
187,
50274,
94,
187,
94,
535,
187,
4,
26579,
1616,
428,
23566,
1859,
9763,
24565,
187,
187,
14,
313,
4353,
10,
26094,
15099,
20775,
10477,
1647,
6717,
1507,
15099,
20775,
9657,
25819,
7512,
20607,
8917,
13086,
2214,
37910,
16687,
10477,
6663,
37910,
16687,
9657,
39869,
16687,
187,
92,
187,
50274,
4883,
6060,
5455,
475,
4663,
5455,
426,
544,
1286,
3605,
5455,
2214,
37910,
16687,
27,
39869,
16687,
2194,
187,
50274,
187,
50274,
338,
313,
4663,
5455,
10,
187,
50274,
92,
187,
50270,
60,
1286,
15,
2420,
3145,
31018,
27500,
44936,
46333,
27,
33,
60,
4663,
5455,
62,
342,
10990,
26311,
27,
41270,
38375,
10990,
26311,
11336,
2194,
187,
50270,
60,
1286,
15,
2420,
3145,
3609,
10990,
44936,
5455,
27,
4663,
5455,
21530,
27,
7716,
14084,
13883,
27,
41270,
38375,
23772,
13883,
11336,
2194,
187,
50274,
94,
187,
94,
187,
187,
33,
423
] | /*
MIT License (MIT)
Copyright (c) 2015 Clement CN Tsang
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/
#import "CTAssetsPickerDefines.h"
#import "CTAssetsPickerController.h"
#import "CTAssetsPickerController+Internal.h"
#import "CTAssetCollectionViewController.h"
#import "CTAssetCollectionViewCell.h"
#import "CTAssetsGridViewController.h"
#import "PHAssetCollection+CTAssetsPickerController.h"
#import "PHAsset+CTAssetsPickerController.h"
#import "PHImageManager+CTAssetsPickerController.h"
#import "NSBundle+CTAssetsPickerController.h"
@interface CTAssetCollectionViewController()
<PHPhotoLibraryChangeObserver, CTAssetsGridViewControllerDelegate>
@property (nonatomic, weak) CTAssetsPickerController *picker;
@property (nonatomic, strong) UIBarButtonItem *cancelButton;
@property (nonatomic, strong) UIBarButtonItem *doneButton;
@property (nonatomic, copy) NSArray *fetchResults;
@property (nonatomic, copy) NSArray *assetCollections;
@property (nonatomic, strong) PHCachingImageManager *imageManager;
@property (nonatomic, strong) PHAssetCollection *defaultAssetCollection;
@property (nonatomic, assign) BOOL didShowDefaultAssetCollection;
@property (nonatomic, assign) BOOL didSelectDefaultAssetCollection;
@end
@implementation CTAssetCollectionViewController
- (instancetype)init
{
if (self = [super initWithStyle:UITableViewStylePlain])
{
_imageManager = [PHCachingImageManager new];
[self addNotificationObserver];
}
return self;
}
- (void)viewDidLoad
{
[super viewDidLoad];
[self setupViews];
[self localize];
[self setupDefaultAssetCollection];
[self setupFetchResults];
[self registerChangeObserver];
}
- (void)viewWillAppear:(BOOL)animated
{
[super viewWillAppear:animated];
[self setupButtons];
[self updateTitle:self.picker.selectedAssets];
[self updateButton:self.picker.selectedAssets];
[self selectDefaultAssetCollection];
}
- (void)dealloc
{
[self unregisterChangeObserver];
[self removeNotificationObserver];
}
#pragma mark - Reload user interface
- (void)reloadUserInterface
{
[self setupViews];
[self setupButtons];
[self localize];
[self setupDefaultAssetCollection];
[self setupFetchResults];
}
#pragma mark - Accessors
- (CTAssetsPickerController *)picker
{
return (CTAssetsPickerController *)self.splitViewController.parentViewController;
}
- (NSIndexPath *)indexPathForAssetCollection:(PHAssetCollection *)assetCollection
{
NSInteger row = [self.assetCollections indexOfObject:assetCollection];
if (row != NSNotFound)
return [NSIndexPath indexPathForRow:row inSection:0];
else
return nil;
}
#pragma mark - Setup
- (void)setupViews
{
self.tableView.rowHeight = UITableViewAutomaticDimension;
self.tableView.estimatedRowHeight =
self.picker.assetCollectionThumbnailSize.height +
self.tableView.layoutMargins.top +
self.tableView.layoutMargins.bottom;
self.tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
}
- (void)setupButtons
{
if (self.doneButton == nil)
{
NSString *title = (self.picker.doneButtonTitle) ?
self.picker.doneButtonTitle : CTAssetsPickerLocalizedString(@"Done", nil);
self.doneButton =
[[UIBarButtonItem alloc] initWithTitle:title
style:UIBarButtonItemStyleDone
target:self.picker
action:@selector(finishPickingAssets:)];
}
if (self.cancelButton == nil)
{
self.cancelButton =
[[UIBarButtonItem alloc] initWithTitle:CTAssetsPickerLocalizedString(@"Cancel", nil)
style:UIBarButtonItemStylePlain
target:self.picker
action:@selector(dismiss:)];
}
}
- (void)localize
{
[self resetTitle];
}
- (void)setupFetchResults
{
NSMutableArray *fetchResults = [NSMutableArray new];
for (NSNumber *subtypeNumber in self.picker.assetCollectionSubtypes)
{
PHAssetCollectionType type = [PHAssetCollection ctassetPickerAssetCollectionTypeOfSubtype:subtypeNumber.integerValue];
PHAssetCollectionSubtype subtype = subtypeNumber.integerValue;
PHFetchResult *fetchResult =
[PHAssetCollection fetchAssetCollectionsWithType:type
subtype:subtype
options:self.picker.assetCollectionFetchOptions];
[fetchResults addObject:fetchResult];
}
self.fetchResults = [NSMutableArray arrayWithArray:fetchResults];
[self updateAssetCollections];
[self reloadData];
[self showDefaultAssetCollection];
}
- (void)updateAssetCollections
{
NSMutableArray *assetCollections = [NSMutableArray new];
for (PHFetchResult *fetchResult in self.fetchResults)
{
for (PHAssetCollection *assetCollection in fetchResult)
{
BOOL showsAssetCollection = YES;
if (!self.picker.showsEmptyAlbums)
{
PHFetchOptions *options = [PHFetchOptions new];
options.predicate = self.picker.assetsFetchOptions.predicate;
if ([options respondsToSelector:@selector(setFetchLimit:)])
options.fetchLimit = 1;
NSInteger count = [assetCollection ctassetPikcerCountOfAssetsFetchedWithOptions:options];
showsAssetCollection = (count > 0);
}
if (showsAssetCollection)
[assetCollections addObject:assetCollection];
}
}
self.assetCollections = [NSMutableArray arrayWithArray:assetCollections];
}
- (void)setupDefaultAssetCollection
{
if (!self.picker || self.picker.defaultAssetCollection == PHAssetCollectionSubtypeAny) {
self.defaultAssetCollection = nil;
return;
}
PHAssetCollectionType type = [PHAssetCollection ctassetPickerAssetCollectionTypeOfSubtype:self.picker.defaultAssetCollection];
PHFetchResult *fetchResult = [PHAssetCollection fetchAssetCollectionsWithType:type subtype:self.picker.defaultAssetCollection options:self.picker.assetCollectionFetchOptions];
self.defaultAssetCollection = fetchResult.firstObject;
}
#pragma mark - Rotation
- (void)viewWillTransitionToSize:(CGSize)size withTransitionCoordinator:(id<UIViewControllerTransitionCoordinator>)coordinator
{
[super viewWillTransitionToSize:size withTransitionCoordinator:coordinator];
[coordinator animateAlongsideTransition:^(id<UIViewControllerTransitionCoordinatorContext> context) {
[self updateTitle:self.picker.selectedAssets];
[self updateButton:self.picker.selectedAssets];
} completion:nil];
}
#pragma mark - Notifications
- (void)addNotificationObserver
{
NSNotificationCenter *center = [NSNotificationCenter defaultCenter];
[center addObserver:self
selector:@selector(selectedAssetsChanged:)
name:CTAssetsPickerSelectedAssetsDidChangeNotification
object:nil];
[center addObserver:self
selector:@selector(contentSizeCategoryChanged:)
name:UIContentSizeCategoryDidChangeNotification
object:nil];
}
- (void)removeNotificationObserver
{
[[NSNotificationCenter defaultCenter] removeObserver:self name:CTAssetsPickerSelectedAssetsDidChangeNotification object:nil];
[[NSNotificationCenter defaultCenter] removeObserver:self name:UIContentSizeCategoryDidChangeNotification object:nil];
}
#pragma mark - Photo library change observer
- (void)registerChangeObserver
{
[[PHPhotoLibrary sharedPhotoLibrary] registerChangeObserver:self];
}
- (void)unregisterChangeObserver
{
[[PHPhotoLibrary sharedPhotoLibrary] unregisterChangeObserver:self];
}
#pragma mark - Photo library changed
- (void)photoLibraryDidChange:(PHChange *)changeInstance
{
// Call might come on any background queue. Re-dispatch to the main queue to handle it.
dispatch_async(dispatch_get_main_queue(), ^{
NSMutableArray *updatedFetchResults = nil;
for (PHFetchResult *fetchResult in self.fetchResults)
{
PHFetchResultChangeDetails *changeDetails = [changeInstance changeDetailsForFetchResult:fetchResult];
if (changeDetails)
{
if (!updatedFetchResults)
updatedFetchResults = [self.fetchResults mutableCopy];
updatedFetchResults[[self.fetchResults indexOfObject:fetchResult]] = changeDetails.fetchResultAfterChanges;
}
}
if (updatedFetchResults)
{
self.fetchResults = updatedFetchResults;
[self updateAssetCollections];
[self reloadData];
}
});
}
#pragma mark - Selected assets changed
- (void)selectedAssetsChanged:(NSNotification *)notification
{
NSArray *selectedAssets = (NSArray *)notification.object;
[self updateTitle:selectedAssets];
[self updateButton:selectedAssets];
}
- (void)updateTitle:(NSArray *)selectedAssets
{
if ([self isTopViewController] && selectedAssets.count > 0)
self.title = self.picker.selectedAssetsString;
else
[self resetTitle];
}
- (void)updateButton:(NSArray *)selectedAssets
{
self.navigationItem.leftBarButtonItem = (self.picker.showsCancelButton) ? self.cancelButton : nil;
self.navigationItem.rightBarButtonItem = [self isTopViewController] ? self.doneButton : nil;
if (self.picker.alwaysEnableDoneButton)
self.navigationItem.rightBarButtonItem.enabled = YES;
else
self.navigationItem.rightBarButtonItem.enabled = (self.picker.selectedAssets.count > 0);
}
- (BOOL)isTopViewController
{
UIViewController *vc = self.splitViewController.viewControllers.lastObject;
if ([vc isMemberOfClass:[UINavigationController class]])
return (self == ((UINavigationController *)vc).topViewController);
else
return NO;
}
- (void)resetTitle
{
if (!self.picker.title)
self.title = CTAssetsPickerLocalizedString(@"Photos", nil);
else
self.title = self.picker.title;
}
#pragma mark - Content size category changed
- (void)contentSizeCategoryChanged:(NSNotification *)notification
{
[self reloadData];
}
#pragma mark - Reload data
- (void)reloadData
{
if (self.assetCollections.count > 0)
[self.tableView reloadData];
else
[self.picker showNoAssets];
}
#pragma mark - Table view data source
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return self.assetCollections.count;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
PHAssetCollection *collection = self.assetCollections[indexPath.row];
NSUInteger count;
if (self.picker.showsNumberOfAssets)
count = [collection ctassetPikcerCountOfAssetsFetchedWithOptions:self.picker.assetsFetchOptions];
else
count = NSNotFound;
static NSString *cellIdentifier = @"CellIdentifier";
CTAssetCollectionViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifier];
if (cell == nil)
cell = [[CTAssetCollectionViewCell alloc] initWithThumbnailSize:self.picker.assetCollectionThumbnailSize
reuseIdentifier:cellIdentifier];
[cell bind:collection count:count];
[self requestThumbnailsForCell:cell assetCollection:collection];
return cell;
}
- (void)requestThumbnailsForCell:(CTAssetCollectionViewCell *)cell assetCollection:(PHAssetCollection *)collection
{
NSUInteger count = cell.thumbnailStacks.thumbnailViews.count;
NSArray *assets = [self posterAssetsFromAssetCollection:collection count:count];
CGSize targetSize = [self.picker imageSizeForContainerSize:self.picker.assetCollectionThumbnailSize];
for (NSUInteger index = 0; index < count; index++)
{
CTAssetThumbnailView *thumbnailView = [cell.thumbnailStacks thumbnailAtIndex:index];
thumbnailView.hidden = (assets.count > 0) ? YES : NO;
if (index < assets.count)
{
PHAsset *asset = assets[index];
[self.imageManager ctassetsPickerRequestImageForAsset:asset
targetSize:targetSize
contentMode:PHImageContentModeAspectFill
options:self.picker.thumbnailRequestOptions
resultHandler:^(UIImage *image, NSDictionary *info){
[thumbnailView setHidden:NO];
[thumbnailView bind:image assetCollection:collection];
}];
}
}
}
- (NSArray *)posterAssetsFromAssetCollection:(PHAssetCollection *)collection count:(NSUInteger)count;
{
PHFetchOptions *options = [PHFetchOptions new];
options.predicate = self.picker.assetsFetchOptions.predicate; // aligned specified predicate
options.sortDescriptors = @[[NSSortDescriptor sortDescriptorWithKey:@"creationDate" ascending:YES]];
PHFetchResult *result = [PHAsset fetchKeyAssetsInAssetCollection:collection options:options];
NSUInteger location = 0;
NSUInteger length = (result.count < count) ? result.count : count;
NSArray *assets = [self itemsFromFetchResult:result range:NSMakeRange(location, length)];
return assets;
}
- (NSArray *)itemsFromFetchResult:(PHFetchResult *)result range:(NSRange)range
{
if (result.count == 0)
return nil;
NSIndexSet *indexSet = [NSIndexSet indexSetWithIndexesInRange:range];
NSArray *array = [result objectsAtIndexes:indexSet];
return array;
}
#pragma mark - Table view delegate
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
PHAssetCollection *collection = self.assetCollections[indexPath.row];
CTAssetsGridViewController *vc = [CTAssetsGridViewController new];
vc.title = self.picker.selectedAssetsString ? : collection.localizedTitle;
vc.assetCollection = collection;
vc.delegate = self;
UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:vc];
nav.delegate = (id<UINavigationControllerDelegate>)self.picker;
[self.picker setShouldCollapseDetailViewController:NO];
[self.splitViewController showDetailViewController:nav sender:nil];
}
#pragma mark - Show / select default asset collection
- (void)showDefaultAssetCollection
{
if (self.defaultAssetCollection && !self.didShowDefaultAssetCollection)
{
CTAssetsGridViewController *vc = [CTAssetsGridViewController new];
vc.title = self.picker.selectedAssetsString ? : self.defaultAssetCollection.localizedTitle;
vc.assetCollection = self.defaultAssetCollection;
vc.delegate = self;
UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:vc];
nav.delegate = (id<UINavigationControllerDelegate>)self.picker;
[self.picker setShouldCollapseDetailViewController:(self.picker.modalPresentationStyle == UIModalPresentationFormSheet)];
[self.splitViewController showDetailViewController:nav sender:nil];
NSIndexPath *indexPath = [self indexPathForAssetCollection:self.defaultAssetCollection];
[self.tableView selectRowAtIndexPath:indexPath animated:YES scrollPosition:UITableViewScrollPositionTop];
self.didShowDefaultAssetCollection = YES;
}
}
- (void)selectDefaultAssetCollection
{
if (self.defaultAssetCollection && !self.didSelectDefaultAssetCollection)
{
NSIndexPath *indexPath = [self indexPathForAssetCollection:self.defaultAssetCollection];
if (indexPath)
{
[UIView animateWithDuration:0.0f
animations:^{
[self.tableView selectRowAtIndexPath:indexPath
animated:(!self.splitViewController.collapsed)
scrollPosition:UITableViewScrollPositionTop];
}
completion:^(BOOL finished){
// mimic clearsSelectionOnViewWillAppear
if (finished && self.splitViewController.collapsed)
[self.tableView deselectRowAtIndexPath:indexPath animated:YES];
}];
}
self.didSelectDefaultAssetCollection = YES;
}
}
#pragma mark - Grid view controller delegate
- (void)assetsGridViewController:(CTAssetsGridViewController *)picker photoLibraryDidChangeForAssetCollection:(PHAssetCollection *)assetCollection
{
NSIndexPath *indexPath = [self indexPathForAssetCollection:assetCollection];
if (indexPath)
{
[self.tableView reloadRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationNone];
[self.tableView selectRowAtIndexPath:indexPath animated:NO scrollPosition:UITableViewScrollPositionNone];
}
}
@end |
214,419 | Github | [
2437,
5733,
40255,
788,
6189,
77,
569,
654,
20049,
16324,
1450,
46,
15037,
60,
21,
15,
19,
62,
187,
50276,
1545,
1818,
187,
50274,
6953,
64,
2420,
1163,
27094,
788,
64,
34881,
569,
513,
1040,
85,
93,
187,
50272,
85,
15,
18743,
1163,
27094,
788,
64,
301,
13,
3635,
27,
3221,
187,
50272,
85,
15,
2703,
1163,
33113,
13,
3635,
27,
3221,
187,
50272,
85,
15,
12292,
383,
11441,
3635,
27,
3221,
535,
50272,
85,
15,
2703,
1163,
1590,
535,
50272,
85,
15,
4663,
1163,
27094,
788,
64,
301,
187,
50272,
85,
15,
4663,
1163,
33113,
187,
50274,
423,
187,
50276,
423,
187,
423,
187
] | class AddBudgetTranslations < ActiveRecord::Migration[4.2]
def change
create_table :budget_translations do |t|
t.integer :budget_id, null: false
t.string :locale, null: false
t.timestamps null: false
t.string :name
t.index :budget_id
t.index :locale
end
end
end
|
214,420 | Github | [
10619,
4890,
187,
10653,
4890,
187,
3,
11695,
14,
2618,
14,
8893,
27,
30123,
26631,
10703,
61,
79,
3,
187,
3,
49,
2415,
14,
47731,
14,
6958,
27,
4240,
14,
883,
14,
3071,
2145,
27,
2950,
12,
2904,
361,
61,
79,
3,
187,
3,
5964,
14,
49736,
14,
6958,
27,
4765,
14,
1762,
14,
2125,
16331,
27,
361,
12,
2904,
361,
61,
79,
3,
187,
3,
8693,
14,
6189,
77,
1080,
27,
393,
79,
3,
187,
3,
26170,
14,
25804,
27,
393,
79,
3,
187,
3,
26170,
27,
1182,
73,
64,
36584,
61,
79,
3,
187,
3,
46,
10650,
14,
8893,
27,
337,
15,
17,
61,
79,
3,
187,
3,
8590,
14,
2548,
27,
2505,
16,
19104,
28,
29308,
30,
18441,
14,
25,
61,
79,
3,
187,
3,
8590,
14,
34836,
14,
25396,
27,
854,
2713,
61,
79,
3,
187,
3,
57,
14,
26945,
27,
8081,
15576,
374,
15,
17,
15,
24,
61,
79,
3,
187,
3,
57,
14,
8816,
15576,
14,
8932,
3967,
27,
35955,
33247,
16,
73,
328,
91,
5801,
88,
912,
16,
13149,
16,
7614,
16,
26123,
652,
16,
10099,
61,
79,
3,
187,
3,
3493,
1546,
14,
28570,
27,
295,
446,
321,
932,
30,
18,
28,
25540,
30,
17,
7405,
79,
3,
187,
3,
57,
14,
8816,
15576,
14,
7781,
45132,
292,
27,
34773,
14,
25,
61,
79,
3,
187,
3,
57,
14,
8816,
15576,
14,
4814,
12113,
2765,
27,
795,
2253,
79,
3,
187,
3,
57,
14,
8816,
15576,
14,
13422,
5455,
14,
17,
27,
30412,
79,
3,
187,
187,
10326,
28551,
64,
19583,
15,
5581,
27,
2082,
28551,
64,
19583,
15,
5581,
27,
2251,
187,
10619,
346,
16740,
9850,
19780,
115,
3,
187,
10653,
346,
16740,
9850,
27661,
212,
3,
187,
187,
10326,
28551,
64,
19583,
15,
5581,
27,
3141,
28551,
64,
19583,
15,
5581,
27,
1438,
187,
10619,
346,
20720,
9850,
19780,
115,
3,
187,
10653,
346,
20720,
9850,
27661,
212,
3,
187,
187,
10326,
30470,
15,
5581,
27,
11124,
187,
27396,
21293,
14,
8124,
187,
10619,
346,
7056,
111,
2462,
69,
209,
41351,
3,
187,
10653,
346,
7056,
111,
2462,
69,
209,
162,
97,
240,
3,
187,
187,
10326,
30470,
15,
5581,
27,
1252,
187,
10619,
346,
22329,
12005,
211,
3,
187,
10653,
346,
22329,
12005,
211,
3,
187,
187,
10326,
30470,
15,
5581,
27,
1252,
187,
10619,
346,
19780,
115,
3,
187,
10653,
346,
27661,
212,
3,
187
] | msgid ""
msgstr ""
"Project-Id-Version: QueryPHP Page\n"
"POT-Creation-Date: 2017-11-06 13:46+0800\n"
"PO-Revision-Date: 2018-05-04 08:00+0800\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: zh_TW\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 2.0.7\n"
"X-Poedit-Basepath: ../../vendor/hunzhiwange/framework/src/Leevel/Page\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Poedit-SourceCharset: UTF-8\n"
"X-Poedit-KeywordsList: __\n"
"X-Poedit-SearchPath-0: .\n"
#: bootstrap_simple.php:65 bootstrap_simple.php:67
msgid "上一页"
msgstr "上一頁"
#: bootstrap_simple.php:78 bootstrap_simple.php:80
msgid "下一页"
msgstr "下一頁"
#: defaults.php:112
#, php-format
msgid "共 %d 条"
msgstr "共 %d 條"
#: defaults.php:201
msgid "前往"
msgstr "前往"
#: defaults.php:201
msgid "页"
msgstr "頁"
|
214,421 | Github | [
29,
2974,
31,
187,
29,
2522,
31,
187,
29,
13518,
29308,
568,
17880,
14,
25,
3,
4725,
187,
29,
5564,
31,
5089,
1852,
18,
323,
7505,
1852,
11238,
1671,
1787,
870,
5564,
31,
187,
29,
4826,
31,
187,
2154,
551,
187,
50276,
3429,
27,
1052,
3498,
28,
187,
50276,
7436,
27,
1052,
3498,
28,
187,
50276,
11814,
27,
8862,
28,
187,
94,
187,
187,
2154,
27,
9131,
551,
187,
50276,
6071,
27,
34973,
187,
50276,
11814,
27,
3511,
49723,
28,
187,
50276,
8412,
27,
2972,
28,
187,
50276,
3429,
27,
3387,
3498,
28,
187,
50276,
7436,
27,
3387,
3498,
28,
187,
50276,
27745,
27,
8763,
28,
187,
50276,
35621,
27,
1097,
28,
187,
94,
187,
870,
4826,
31,
187,
870,
2522,
31,
187,
29,
2915,
31,
187,
50276,
29,
2154,
3073,
2154,
31,
187,
870,
2915,
31,
187,
870,
2974,
31,
187
] | <html>
<head>
<meta charset="utf-8" />
<title>Test #1 for bug #1043537</title>
<style>
div {
width: 200px;
height: 200px;
background: yellow;
}
div:before {
content: '';
background: hotpink;
display: block;
width: 40px;
height: 40px;
overflow: hidden;
resize: both;
}
</style>
</head>
<body>
<div></div>
</body>
</html>
|
214,422 | Github | [
3122,
187,
475,
2594,
253,
43512,
1873,
5939,
342,
436,
789,
323,
3081,
187,
475,
1491,
5001,
9451,
12851,
15,
187,
475,
187,
475,
831,
310,
1959,
3694,
28,
368,
476,
25529,
352,
285,
16,
263,
10007,
352,
187,
475,
762,
253,
2426,
273,
253,
11963,
32425,
4214,
5259,
4637,
347,
187,
475,
3863,
407,
253,
7648,
9107,
6807,
28,
2057,
2715,
374,
15,
18,
273,
187,
475,
253,
4637,
13,
390,
313,
255,
634,
4500,
10,
667,
1996,
2715,
15,
187,
475,
187,
475,
831,
3694,
310,
5939,
275,
253,
3524,
326,
352,
588,
320,
4217,
13,
187,
475,
533,
15002,
9103,
23181,
28,
1293,
1014,
253,
10466,
17529,
273,
187,
475,
20863,
390,
20524,
6651,
329,
20383,
20103,
15,
2594,
253,
11963,
187,
475,
32425,
4214,
5259,
4637,
323,
625,
4278,
15,
187,
475,
187,
475,
1422,
943,
452,
2959,
247,
3491,
273,
253,
11963,
32425,
4214,
5259,
187,
475,
4637,
2112,
342,
436,
3694,
28,
604,
417,
13,
3630,
281,
253,
7648,
187,
475,
9107,
6807,
13,
3690,
904,
8319,
17179,
659,
13,
17538,
32370,
13,
9693,
13,
6908,
187,
475,
470,
49352,
14,
39677,
5106,
13,
390,
923,
253,
401,
14853,
2670,
27,
3944,
1358,
2700,
15,
3671,
71,
15,
2061,
15,
187,
1738,
187,
10708,
4955,
15,
89,
16123,
15,
87,
3671,
28,
187,
187,
2948,
7626,
15,
3024,
15,
20201,
28,
187,
2948,
7626,
15,
48830,
15,
3140,
15,
5455,
28,
187,
187,
2948,
4955,
15,
89,
16123,
15,
15658,
15,
22965,
15,
23536,
28,
187,
187,
6930,
187,
475,
7518,
468,
281,
2794,
247,
18073,
4492,
12899,
94,
4227,
432,
271,
1594,
56,
8678,
657,
7864,
38917,
187,
475,
313,
70,
15,
72,
15,
18073,
3211,
16152,
27,
31515,
3364,
15,
9770,
18686,
33,
2577,
15,
16368,
16,
8826,
16,
3967,
38331,
187,
475,
187,
475,
1214,
4149,
370,
2618,
27,
495,
69,
24,
69,
24,
71,
19,
71,
23,
70,
19,
1473,
70,
22,
2787,
7836,
6357,
19,
69,
1731,
70,
21,
17490,
67,
17605,
3141,
68,
23525,
370,
187,
475,
1214,
17480,
854,
15,
21,
19921,
18,
187,
1738,
187,
33,
23536,
187,
4387,
5673,
657,
3671,
5455,
11749,
187,
92,
187,
50274,
6930,
187,
50273,
11,
1214,
3575,
41475,
253,
1594,
56,
8678,
657,
7864,
38917,
313,
70,
15,
72,
15,
18073,
3211,
16152,
27,
31515,
3364,
15,
9770,
18686,
33,
2577,
15,
16368,
16,
8826,
16,
3967,
2311,
187,
50273,
11,
1214,
2309,
253,
3969,
427,
6527,
19,
18073,
4492,
12899,
94,
4227,
187,
50273,
11,
1214,
34832,
657,
3671,
5330,
604,
253,
38917,
310,
417,
3588,
390,
253,
2608,
2506,
626,
452,
15607,
281,
2289,
352,
187,
50273,
8480,
187,
50274,
5455,
2794,
9,
20201,
41475,
10,
12326,
657,
3671,
5330,
28,
187,
94,
187
] | /*
* See the NOTICE file distributed with this work for additional
* information regarding copyright ownership.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.xwiki.vfs;
import java.net.URI;
import java.nio.file.Path;
import org.xwiki.component.annotation.Role;
/**
* Helper to create a {@link Path} instance from an XWiki VFS URI
* (e.g. {@code attach:[email protected]/some/path}).
*
* @version $Id: 3d7d7f2f6e2dae579cfca2d26e4203b21178c243 $
* @since 8.4RC1
*/
@Role
public interface VfsPathFactory
{
/**
* @param uri the XWiki VFS URI (e.g. {@code attach:[email protected]/some/path})
* @return the corresponding NIO2 {@link Path} instance
* @throws VfsException if the URI is not valid or the user doesn't have permissions to access it
*/
Path create(URI uri) throws VfsException;
}
|
214,423 | Github | [
16,
27591,
16,
313,
3701,
9,
14825,
10,
551,
1380,
4384,
6896,
36173,
13871,
187,
16,
27591,
16,
209,
186,
605,
380,
6333,
11556,
187,
16,
27591,
16,
209,
186,
2044,
8038,
4120,
2651,
426,
25425,
187,
16,
27591,
16,
187,
16,
27591,
16,
209,
186,
605,
380,
2430,
1159,
187,
16,
27591,
16,
209,
186,
3701,
4772,
48437,
64,
15684,
21920,
8640,
2618,
10,
551,
187,
16,
27591,
16,
187,
16,
27591,
16,
28910,
186,
605,
9423,
604,
6333,
310,
275,
11556,
187,
16,
27591,
16,
28910,
186,
338,
9,
40539,
4120,
2651,
60,
8640,
2618,
3291,
551,
187,
16,
27591,
16,
209,
623,
186,
2309,
8038,
4120,
2651,
60,
8640,
2618,
1570,
23756,
28,
187,
16,
27591,
16,
28910,
186,
94,
187,
16,
27591,
16,
28910,
186,
605,
13119,
247,
747,
6333,
313,
395,
1691,
352,
715,
253,
11556,
10,
187,
16,
27591,
16,
28910,
186,
2044,
6333,
426,
8038,
4120,
2651,
60,
8640,
2618,
62,
426,
551,
187,
16,
27591,
16,
209,
623,
186,
74,
27,
6333,
2618,
13,
187,
16,
27591,
16,
209,
623,
186,
77,
27,
3221,
13,
187,
16,
27591,
16,
209,
623,
186,
23756,
27,
12166,
187,
16,
27591,
16,
28910,
186,
4718,
187,
16,
27591,
16,
187,
16,
27591,
16,
28910,
186,
605,
12138,
1137,
253,
6333,
1159,
187,
16,
27591,
16,
28910,
186,
14825,
60,
8640,
2618,
1570,
4065,
9,
8640,
15,
23756,
13,
6333,
13,
6333,
15,
23756,
13,
4772,
48437,
64,
15684,
876,
558,
187,
16,
27591,
16,
187,
16,
27591,
16,
28910,
186,
605,
29565,
253,
6333,
347,
10607,
187,
16,
27591,
16,
28910,
186,
8640,
15,
77,
426,
2032,
28,
187,
16,
27591,
16,
187,
16,
27591,
16,
28910,
186,
605,
16140,
253,
24217,
273,
253,
6333,
187,
16,
27591,
16,
28910,
186,
2309,
6333,
15,
23756,
28,
187,
16,
27591,
16,
209,
186,
94,
187,
16,
27591,
16,
187,
16,
27591,
16,
187,
16,
27591,
16,
209,
186,
605,
22065,
253,
11911,
1789,
36238,
48437,
64,
14825,
32350,
187,
16,
27591,
16,
209,
186,
876,
48437,
64,
15684,
47977,
78,
426,
11911,
28,
187,
16,
27591,
16,
187,
16,
27591,
16,
209,
186,
605,
22065,
253,
6333,
11556,
187,
16,
27591,
16,
209,
186,
876,
48437,
64,
15684,
47977,
68,
426,
8038,
4120,
2651,
28,
187,
16,
27591,
16,
187,
16,
27591,
16,
209,
186,
605,
4853,
755,
350,
1159,
323,
27851,
24217,
187,
16,
27591,
16,
209,
186,
876,
48437,
64,
15684,
47977,
69,
426,
1159,
9,
23756,
13,
1416,
13,
755,
350,
10,
551,
187,
16,
27591,
16,
28910,
186,
338,
20273,
876,
48437,
64,
15684,
47977,
80,
9,
23756,
13,
1416,
1228,
551,
187,
16,
27591,
16,
209,
623,
186,
4241,
15,
3182,
8324,
9,
23756,
13,
1416,
13,
551,
546,
25552,
27,
2032,
13,
755,
27,
755,
350,
6824,
187,
16,
27591,
16,
28910,
186,
94,
187,
16,
27591,
16,
209,
186,
4718,
187,
16,
27591,
16,
187,
16,
27591,
16,
209,
186,
605,
4853,
4772,
265,
13570,
327,
24217,
187,
16,
27591,
16,
209,
186,
876,
48437,
64,
15684,
47977,
83,
426,
1159,
9,
23756,
10,
551,
187,
16,
27591,
16,
28910,
186,
338,
9,
25833,
42653,
20767,
686,
31549,
8,
3857,
42653,
15,
18264,
12547,
10,
551,
187,
16,
27591,
16,
209,
623,
186,
4241,
15,
3182,
8324,
9,
23756,
13,
42653,
15,
18264,
12547,
13,
551,
1318,
27,
686,
13570,
8,
6824,
187,
16,
27591,
16,
28910,
186,
94,
187,
16,
27591,
16,
28910,
186,
4241,
15,
3182,
8324,
9,
23756,
13,
686,
876,
265,
13570,
1383,
551,
1318,
27,
2032,
6824,
187,
16,
27591,
16,
209,
186,
4718,
187,
16,
27591,
16,
187,
16,
27591,
16,
209,
186,
605,
2794,
247,
15223,
12953,
1789,
187,
16,
27591,
16,
209,
186,
605,
4438,
708,
337,
27,
1318,
310,
247,
6333,
2654,
13,
2430,
352,
187,
16,
27591,
16,
209,
186,
605,
4438,
708,
374,
27,
17310,
512,
3607,
273,
1318,
715,
253,
19769,
187,
16,
27591,
16,
209,
186,
605,
4438,
708,
577,
27,
1091,
1318,
672,
2168,
19769,
1789,
187,
16,
27591,
16,
209,
186,
605,
4438,
708,
854,
93,
18,
27,
21319,
751,
2430,
187,
16,
27591,
16,
209,
186,
876,
48437,
64,
15684,
47977,
85,
426,
1159,
9,
2877,
13,
4438,
10,
551,
187,
16,
27591,
16,
28910,
186,
338,
9,
9561,
708,
337,
10,
1318,
426,
4772,
48437,
64,
15684,
21920,
2877,
558,
187,
16,
27591,
16,
28910,
186,
338,
9,
9561,
708,
854,
10,
1091,
1318,
28,
187,
16,
27591,
16,
28910,
186,
338,
4464,
9561,
708,
577,
10,
3857,
29144,
1318,
11013,
686,
6082,
8,
3857,
1318,
3857,
1318,
24856,
265,
13570,
10,
1091,
1318,
28,
187,
16,
27591,
16,
28910,
186,
2044,
19769,
426,
9206,
15,
6953,
9,
8629,
558,
187,
16,
27591,
16,
28910,
186,
876,
48437,
64,
15684,
47977,
83,
9,
2224,
558,
187,
16,
27591,
16,
28910,
186,
4241,
15,
3182,
8324,
9,
2224,
13,
686,
6986,
1383,
551,
546,
25552,
27,
2032,
13,
1318,
27,
1318,
6824,
187,
16,
27591,
16,
28910,
186,
338,
9,
9561,
708,
374,
3857,
29144,
1318,
3613,
686,
2703,
3401,
323,
9,
2044,
2234,
275,
1318,
10,
4772,
48437,
64,
15684,
47977,
69,
9,
2224,
13,
2234,
13,
1159,
9,
2364,
10,
551,
1091,
1318,
60,
2364,
2194,
748,
15,
13245,
9,
8629,
13,
2234,
4027,
187,
16,
27591,
16,
28910,
186,
2309,
19769,
28,
187,
16,
27591,
16,
209,
186,
4718,
187,
16,
27591,
16,
187,
16,
27591,
16,
209,
186,
605,
755,
9671,
39139,
1159,
323,
22862,
342,
1327,
14,
21127,
2421,
11911,
187,
16,
27591,
16,
209,
186,
876,
48437,
64,
15684,
47977,
79,
426,
1159,
9,
8640,
10,
551,
187,
16,
27591,
16,
28910,
186,
2044,
755,
350,
426,
6333,
3857,
6333,
24856,
265,
13570,
3736,
187,
16,
27591,
16,
209,
623,
186,
3701,
755,
9671,
1082,
551,
1091,
6333,
5013,
6986,
22734,
748,
1163,
187,
16,
27591,
16,
209,
623,
186,
3701,
755,
13570,
1672,
4124,
1082,
551,
1091,
6333,
28,
7734,
187,
16,
27591,
16,
28910,
186,
876,
48437,
64,
15684,
47977,
69,
9,
788,
350,
13,
686,
66,
1383,
755,
350,
558,
187,
16,
27591,
16,
28910,
186,
2309,
755,
350,
28,
187,
16,
27591,
16,
209,
186,
4718,
187,
16,
27591,
16,
187,
16,
27591,
16,
209,
186,
605,
9206,
15,
18834,
15,
7110,
22585,
8324,
15,
4065,
187,
16,
27591,
16,
209,
186,
876,
48437,
64,
15684,
47977,
80,
426,
1159,
9,
6082,
13,
2867,
10,
551,
1091,
9206,
15,
18834,
15,
7110,
22585,
8324,
15,
4065,
9,
6082,
13,
2867,
558,
7734,
187,
16,
27591,
16,
187,
16,
27591,
16,
209,
186,
605,
4772,
48437,
64,
4387,
64,
3967,
876,
187,
16,
27591,
16,
209,
186,
876,
48437,
64,
15684,
47977,
81,
426,
29707,
187,
16,
27591,
16,
187,
16,
27591,
16,
187,
16,
27591,
16,
209,
186,
605,
16676,
5857,
6333,
285,
1091,
24217,
187,
16,
27591,
16,
209,
186,
2309,
4772,
48437,
64,
15684,
876,
18583,
48437,
64,
15684,
47977,
84,
426,
49173,
1212,
15,
1641,
3287,
187,
16,
27591,
16,
13985,
187,
16,
21723,
16,
187,
16,
27591,
16,
35236,
187,
187,
6930,
8480,
49173,
1212,
15,
1641,
1381,
187,
46170,
3704,
2,
28033,
187,
50276,
2,
9264,
27479,
1212,
15,
1641,
14244,
2,
187,
50276,
61,
3704,
16,
187,
46170,
642,
4228,
24217,
1119,
1738,
187,
6930,
8480,
313,
3701,
9,
8640,
13,
24217,
13,
4772,
48437,
64,
15684,
32350,
551,
187,
187,
3,
2327,
7654,
3664,
187,
15419,
30094,
12929,
4124,
24856,
265,
13570,
426,
2032,
7405,
79,
2044,
17374,
7405,
79,
12110,
15,
2009,
426,
686,
4786,
26927,
5618,
61,
79,
61,
79,
61,
79,
605,
4,
2603,
9715,
30,
48437,
1358,
16,
11379,
1212,
15,
1641,
865,
558,
187,
187,
6930,
8480,
13985,
187,
187,
16,
27591,
16,
6824
] | /******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
/******/
/******/ // The require function
/******/ function __webpack_require__(moduleId) {
/******/
/******/ // Check if module is in cache
/******/ if(installedModules[moduleId]) {
/******/ return installedModules[moduleId].exports;
/******/ }
/******/ // Create a new module (and put it into the cache)
/******/ var module = installedModules[moduleId] = {
/******/ i: moduleId,
/******/ l: false,
/******/ exports: {}
/******/ };
/******/
/******/ // Execute the module function
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
/******/
/******/ // Flag the module as loaded
/******/ module.l = true;
/******/
/******/ // Return the exports of the module
/******/ return module.exports;
/******/ }
/******/
/******/
/******/ // expose the modules object (__webpack_modules__)
/******/ __webpack_require__.m = modules;
/******/
/******/ // expose the module cache
/******/ __webpack_require__.c = installedModules;
/******/
/******/ // define getter function for harmony exports
/******/ __webpack_require__.d = function(exports, name, getter) {
/******/ if(!__webpack_require__.o(exports, name)) {
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
/******/ }
/******/ };
/******/
/******/ // define __esModule on exports
/******/ __webpack_require__.r = function(exports) {
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
/******/ }
/******/ Object.defineProperty(exports, '__esModule', { value: true });
/******/ };
/******/
/******/ // create a fake namespace object
/******/ // mode & 1: value is a module id, require it
/******/ // mode & 2: merge all properties of value into the ns
/******/ // mode & 4: return value when already ns object
/******/ // mode & 8|1: behave like require
/******/ __webpack_require__.t = function(value, mode) {
/******/ if(mode & 1) value = __webpack_require__(value);
/******/ if(mode & 8) return value;
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
/******/ var ns = Object.create(null);
/******/ __webpack_require__.r(ns);
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
/******/ return ns;
/******/ };
/******/
/******/ // getDefaultExport function for compatibility with non-harmony modules
/******/ __webpack_require__.n = function(module) {
/******/ var getter = module && module.__esModule ?
/******/ function getDefault() { return module['default']; } :
/******/ function getModuleExports() { return module; };
/******/ __webpack_require__.d(getter, 'a', getter);
/******/ return getter;
/******/ };
/******/
/******/ // Object.prototype.hasOwnProperty.call
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
/******/
/******/ // __webpack_public_path__
/******/ __webpack_require__.p = "";
/******/
/******/
/******/ // Load entry module and return exports
/******/ return __webpack_require__(__webpack_require__.s = "./app.ts");
/******/ })
/************************************************************************/
/******/ ({
/***/ "./app.ts":
/*!****************!*\
!*** ./app.ts ***!
\****************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
eval("\nexports.__esModule = true;\nvar foo;\nfoo.bar = 'foobar';\n\n\n//# sourceURL=webpack:///./app.ts?");
/***/ })
/******/ }); |
214,424 | Github | [
4,
14,
4842,
12425,
27,
22776,
14,
45295,
14,
18,
45180,
187,
4,
268,
656,
5848,
614,
19,
16,
2566,
16,
20907,
15,
4789,
27,
5216,
323,
253,
2710,
29492,
275,
268,
656,
5848,
614,
187,
4,
187,
4,
8283,
313,
36,
10,
5826,
14,
8602,
17626,
10984,
388,
1392,
804,
654,
18068,
33,
72,
3227,
2158,
15,
615,
31,
187,
4,
187,
4,
831,
1873,
310,
629,
273,
268,
656,
5848,
614,
15,
187,
4,
187,
4,
831,
3694,
310,
2530,
686,
284,
14,
261,
1383,
1293,
667,
3890,
390,
10466,
187,
4,
17529,
15,
50276,
688,
642,
2362,
588,
253,
4477,
320,
2918,
15922,
323,
667,
8540,
187,
4,
14475,
432,
253,
897,
273,
436,
3694,
15,
187,
4,
187,
4,
40078,
310,
7169,
281,
3780,
281,
897,
436,
3694,
323,
667,
4096,
13,
187,
4,
1690,
6264,
4893,
13,
285,
281,
6990,
352,
285,
25529,
352,
187,
4,
15744,
13,
2256,
281,
253,
1563,
13133,
27,
187,
4,
187,
4,
337,
15,
380,
6510,
273,
436,
3694,
1364,
417,
320,
25355,
264,
28,
368,
1364,
417,
187,
4,
50274,
7041,
326,
368,
4159,
253,
3236,
3694,
15,
1310,
368,
897,
436,
3694,
187,
4,
50274,
249,
247,
1885,
13,
271,
48371,
275,
253,
1885,
10097,
651,
320,
187,
4,
50274,
1212,
2845,
4215,
533,
310,
417,
2424,
15,
187,
4,
374,
15,
1219,
3606,
2603,
9508,
1364,
320,
30236,
7101,
347,
824,
13,
285,
1364,
417,
320,
187,
4,
50274,
24418,
33174,
347,
1146,
253,
3236,
3694,
15,
187,
4,
495,
15,
831,
4366,
778,
417,
320,
5176,
390,
12059,
432,
667,
2603,
3268,
15,
187,
187,
2948,
440,
44713,
187,
2948,
45675,
20,
347,
45675,
187,
187,
2437,
2752,
13457,
9,
11296,
614,
15,
13457,
2262,
187,
50274,
1545,
4772,
4478,
21920,
1286,
13,
475,
8854,
13,
1401,
36830,
2262,
187,
50270,
11296,
614,
15,
13457,
24856,
4478,
21920,
1286,
13,
475,
8854,
13,
1401,
36830,
10,
187,
187,
1545,
10886,
64,
20907,
9,
14849,
13,
4194,
2262,
187,
50274,
69,
426,
12166,
187,
50274,
1542,
27071,
13,
847,
275,
49860,
9,
14849,
15,
10008,
2262,
187,
50270,
69,
60,
2052,
60,
17,
9502,
426,
4194,
60,
16159,
62,
187,
50274,
2309,
277,
187,
187,
2437,
2752,
31620,
9,
11296,
614,
15,
31620,
2262,
187,
50274,
1545,
4772,
4478,
21920,
1286,
13,
475,
8854,
13,
1401,
36830,
2262,
187,
50270,
11296,
614,
15,
31620,
24856,
4478,
21920,
1286,
13,
475,
8854,
13,
1401,
36830,
10,
187,
50270,
1286,
15,
736,
64,
20907,
426,
10886,
64,
20907,
187,
187,
2437,
29028,
11749,
26943,
9,
328,
44713,
15,
40595,
2262,
187,
50274,
1545,
873,
5683,
9,
1286,
2262,
187,
50270,
1286,
15,
585,
426,
45675,
15,
11025,
9,
1381,
20704,
49777,
13250,
30,
3220,
13457,
10,
535,
50274,
1545,
16024,
10854,
9,
1286,
2262,
187,
50270,
1286,
15,
585,
15,
10483,
1082,
535,
50274,
1545,
9423,
2513,
11257,
9,
1286,
2262,
187,
50270,
1286,
15,
8271,
5088,
9,
261,
14966,
9,
1286,
15,
585,
13,
187,
50254,
50267,
3220,
13457,
582,
187,
50254,
3,
14477,
310,
417,
4227,
273,
2752,
13457,
2807,
187,
187,
2437,
330,
26701,
11749,
26943,
9,
328,
44713,
15,
40595,
2262,
187,
50274,
1545,
873,
5683,
9,
1286,
2262,
187,
50270,
1286,
15,
585,
426,
45675,
15,
11025,
9,
1381,
20704,
46064,
535,
50274,
1545,
16024,
10854,
9,
1286,
2262,
187,
50270,
1286,
15,
585,
15,
10483,
1082,
535,
50274,
1545,
9423,
2513,
11257,
9,
1286,
2262,
187,
50270,
1915,
426,
1881,
15,
585,
15,
14849,
9,
20907,
30,
3220,
31620,
10,
187,
50270,
1286,
15,
8271,
5088,
9,
261,
14966,
9,
1915,
13,
187,
50254,
50267,
3220,
31620,
582,
187,
50254,
3,
14849,
310,
417,
4227,
273,
2752,
31620,
2807,
187,
187,
2437,
15784,
11749,
26943,
8116,
4515,
30616,
9,
328,
44713,
15,
40595,
2262,
187,
50274,
1545,
873,
5683,
9,
1286,
2262,
187,
50270,
1286,
15,
585,
426,
45675,
15,
11025,
9,
1381,
20704,
46064,
535,
50274,
1545,
9423,
2513,
1845,
23747,
3463,
11749,
9,
1286,
2262,
187,
50270,
1915,
426,
1881,
15,
585,
15,
14849,
9,
20907,
30,
3220,
31620,
10,
187,
50270,
1915,
15,
21599,
1587,
7135,
577,
12,
22,
347,
17374,
2807,
187,
50270,
736,
426,
1095,
15,
24717,
531,
1082,
187,
50270,
1286,
15,
8271,
5088,
9,
261,
14966,
9,
736,
13,
187,
50254,
50267,
8102,
582,
187,
50254,
3,
736,
310,
417,
4227,
273,
10886,
2807,
187,
50270,
1915,
15,
10483,
1082,
535,
50274,
1545,
16024,
10854,
9,
1286,
2262,
187,
50270,
1286,
15,
585,
15,
10483,
1082,
187,
187,
2437,
15784,
11749,
26943,
9,
328,
44713,
15,
40595,
2262,
187,
50274,
1545,
873,
5683,
9,
1286,
2262,
187,
50270,
1286,
15,
585,
426,
45675,
15,
11025,
9,
1381,
20704,
46064,
535,
50274,
1545,
9423,
13510,
11749,
9,
1286,
2262,
187,
50270,
1286,
15,
585,
15,
736,
64,
20907,
426,
29331,
1095,
13,
4194,
27,
1618,
9,
736,
10,
187,
50270,
736,
426,
1881,
15,
585,
15,
21599,
1587,
7135,
337,
13,
374,
6788,
24717,
531,
1082,
187,
50270,
1286,
15,
8271,
5088,
9,
261,
14966,
9,
736,
13,
187,
50254,
50267,
3550,
582,
187,
50254,
3,
736,
310,
417,
4227,
273,
1618,
2807,
535,
50274,
1545,
9423,
27683,
614,
10990,
6060,
9,
1286,
2262,
187,
50270,
1286,
15,
585,
15,
736,
64,
20907,
426,
45675,
15,
10990,
187,
50270,
736,
426,
1881,
15,
585,
15,
21599,
1587,
7135,
337,
347,
247,
13,
374,
347,
270,
6788,
24717,
531,
1082,
187,
50270,
1286,
15,
8271,
5088,
9,
261,
14966,
9,
736,
13,
187,
50254,
50267,
11296,
614,
15,
10990,
582,
187,
50254,
3,
736,
310,
417,
4227,
273,
45675,
15,
10990,
2807,
535,
50270,
2052,
18,
13,
847,
19,
426,
4194,
9855,
66,
21391,
4194,
9855,
67,
9686,
187,
50270,
1286,
15,
8271,
5088,
9,
2052,
18,
2295,
337,
13,
346,
1615,
1416,
27,
3430,
906,
323,
5084,
686,
66,
8,
2807,
187,
50270,
1286,
15,
8271,
5088,
9,
2052,
19,
2295,
374,
13,
346,
1615,
1416,
27,
3430,
906,
323,
5084,
686,
66,
8,
2807,
535,
50270,
2052,
18,
13,
847,
19,
426,
4194,
9855,
34,
21391,
4194,
9855,
35,
9686,
187,
50270,
1286,
15,
8271,
5088,
9,
2052,
18,
2295,
337,
13,
346,
1615,
1416,
27,
3430,
906,
323,
5084,
686,
34,
8,
2807,
187,
50270,
1286,
15,
8271,
5088,
9,
2052,
19,
2295,
374,
13,
346,
1615,
1416,
27,
3430,
906,
323,
5084,
686,
35,
8,
2807,
535,
50270,
2052,
18,
13,
847,
19,
426,
4194,
60,
17,
1092,
4194,
60,
18,
62,
187,
50270,
1286,
15,
8271,
5088,
9,
2052,
18,
2295,
337,
13,
346,
1615,
3605,
27,
3430,
906,
323,
5084,
470,
2807,
187,
50270,
1286,
15,
8271,
5088,
9,
2052,
19,
2295,
374,
13,
346,
1615,
3605,
27,
3430,
906,
323,
5084,
337,
2807,
535,
50274,
1545,
9423,
27683,
614,
10990,
15628,
9,
1286,
2262,
187,
50270,
32488,
6892,
6163,
604,
253,
4194,
1789,
310,
10040,
494,
32488,
187,
50270,
1286,
15,
585,
15,
736,
64,
20907,
426,
45675,
15,
10990,
187,
50270,
736,
426,
1881,
15,
585,
15,
21599,
1587,
7135,
337,
347,
247,
13,
374,
347,
270,
6788,
24717,
531,
1082,
187,
50270,
1542,
847,
275,
4194,
27,
187,
50266,
5858,
535,
50274,
1545,
9423,
27683,
614,
10990,
1909,
43554,
9,
1286,
2262,
187,
50270,
32488,
6892,
6163,
604,
253,
4194,
1789,
476,
320,
11516,
281,
247,
31343,
32488,
187,
50270,
1286,
15,
585,
15,
736,
64,
20907,
426,
45675,
15,
10990,
187,
50270,
736,
426,
1881,
15,
585,
15,
21599,
1587,
7135,
337,
347,
247,
13,
374,
347,
270,
6788,
24717,
531,
1082,
187,
50270,
85,
426,
31343,
9,
736,
10,
535,
50274,
1545,
9423,
27683,
614,
10990,
1909,
38592,
9,
1286,
2262,
187,
50270,
32488,
6892,
6163,
604,
253,
4194,
1789,
476,
320,
9113,
11516,
281,
247,
19034,
32488,
187,
50270,
1286,
15,
585,
15,
736,
64,
20907,
426,
45675,
15,
10990,
187,
50270,
736,
426,
1881,
15,
585,
15,
21599,
1587,
7135,
337,
347,
247,
13,
374,
347,
270,
6788,
24717,
531,
1082,
187,
50270,
69,
426,
10886,
9,
736,
10,
187,
50270,
1286,
15,
34046,
9,
69,
9855,
66,
21391,
4194,
9855,
66,
45564,
187,
50270,
1286,
15,
34046,
9,
69,
9855,
67,
21391,
4194,
9855,
67,
45564,
535,
50274,
1545,
9423,
27683,
614,
10990,
16850,
36,
2503,
9,
1286,
2262,
187,
50270,
32488,
6892,
6163,
604,
253,
4194,
1789,
26662,
285,
556,
1041,
9113,
32488,
187,
50270,
1286,
15,
585,
15,
736,
64,
20907,
426,
45675,
15,
10990,
187,
50270,
736,
64,
18,
426,
1881,
15,
585,
15,
21599,
1587,
7135,
337,
347,
247,
13,
374,
347,
270,
6788,
24717,
531,
1082,
187,
50270,
736,
64,
19,
426,
1881,
15,
585,
15,
21599,
1587,
7135,
337,
347,
247,
13,
374,
347,
270,
6788,
24717,
531,
1082,
187,
50270,
736,
64,
20,
426,
1881,
15,
585,
15,
21599,
1587,
7135,
337,
347,
247,
13,
495,
347,
270,
6788,
24717,
531,
1082,
535,
50270,
1286,
15,
8271,
5088,
9,
736,
64,
18,
2295,
4194,
64,
18,
10,
187,
50270,
1286,
15,
8271,
5088,
9,
736,
64,
18,
2295,
4194,
64,
19,
10,
187,
50270,
1286,
15,
8271,
5088,
9,
736,
64,
19,
3613,
4194,
64,
20,
10,
535,
50270,
1286,
15,
8271,
5653,
9,
736,
64,
18,
3613,
4194,
64,
18,
10,
187,
50270,
1286,
15,
8271,
5653,
9,
736,
64,
18,
3613,
4194,
64,
19,
10,
187,
50270,
1286,
15,
8271,
5653,
9,
736,
64,
19,
2295,
4194,
64,
20,
10,
535,
50270,
1286,
15,
34046,
9,
736,
64,
18,
13,
4194,
64,
19,
10,
187,
50270,
1286,
15,
34046,
9,
13362,
9,
736,
64,
18,
582,
13283,
9,
736,
64,
19,
1228,
187,
50270,
1286,
15,
8271,
3650,
12827,
9,
736,
64,
18,
13,
4194,
64,
20,
10,
187,
50270,
1286,
15,
8271,
3650,
12827,
9,
13362,
9,
736,
64,
18,
582,
13283,
9,
736,
64,
20,
1228,
535,
50274,
1545,
16024,
10854,
9,
1286,
2262,
187,
50270,
1286,
15,
585,
15,
10483,
1082,
187,
187,
2437,
10318,
11749,
26943,
9,
328,
44713,
15,
40595,
2262,
187,
50274,
1545,
873,
5683,
9,
1286,
2262,
187,
50270,
1286,
15,
585,
426,
45675,
15,
11025,
9,
1381,
20704,
46064,
535,
50274,
1545,
9423,
2447,
18969,
9,
1286,
2262,
187,
50270,
66,
461,
5182,
426,
50058,
1587,
45403,
2971,
38938,
995,
346,
77,
5009,
18,
2807,
187,
50270,
736,
426,
1881,
15,
585,
15,
21599,
1587,
7135,
22935,
13,
313,
66,
461,
5182,
13,
5029,
24717,
531,
1082,
187,
50270,
1286,
15,
8271,
5088,
9,
881,
9,
736,
60,
17,
3291,
2295,
50058,
13,
346,
881,
273,
4194,
60,
17,
62,
1364,
320,
50058,
2807,
535,
50274,
1545,
9423,
2776,
9,
1286,
2262,
187,
50270,
1286,
15,
585,
15,
1156,
64,
20907,
426,
1213,
187,
50270,
66,
461,
5182,
426,
50058,
1587,
45403,
2971,
38938,
995,
346,
77,
5009,
18,
2807,
187,
50270,
736,
426,
1881,
15,
585,
15,
21599,
1587,
7135,
22935,
13,
313,
66,
461,
5182,
13,
5029,
24717,
531,
1082,
187,
50270,
1286,
15,
8271,
5088,
9,
881,
9,
736,
60,
17,
3291,
2295,
1213,
13,
346,
881,
273,
4194,
60,
17,
62,
1364,
320,
1213,
2807,
187,
50270,
1286,
15,
8271,
5088,
9,
736,
60,
17,
62,
2295,
42999,
5182,
15,
25950,
1587,
17880,
14,
25,
8375,
346,
11631,
1364,
4503,
3236,
941,
275,
34773,
14,
25,
2807,
535,
50274,
1545,
9423,
13510,
9,
1286,
2262,
187,
50270,
1286,
15,
585,
15,
1156,
64,
20907,
426,
29331,
1269,
27,
50058,
9,
89,
13,
346,
17880,
14,
25,
995,
346,
30029,
2807,
187,
50270,
66,
461,
5182,
426,
50058,
1587,
45403,
2971,
38938,
995,
346,
77,
5009,
18,
2807,
187,
50270,
736,
426,
1881,
15,
585,
15,
21599,
1587,
7135,
22935,
13,
313,
66,
461,
5182,
15,
25950,
1587,
77,
5009,
18,
8375,
5029,
24717,
531,
1082,
187,
50270,
1286,
15,
8271,
5088,
9,
881,
9,
736,
60,
17,
3291,
2295,
50058,
13,
346,
881,
273,
4194,
60,
17,
62,
1364,
320,
50058,
2807,
187,
50270,
1286,
15,
8271,
5088,
9,
736,
60,
17,
1570,
1727,
3113,
9,
86,
3,
38938,
8375,
346,
11631,
1364,
3831,
3236,
941,
2807,
535,
50274,
1545,
9423,
13967,
303,
1025,
2447,
18969,
9,
1286,
2262,
187,
50270,
1286,
15,
585,
15,
1156,
64,
20907,
426,
45675,
15,
13967,
303,
1025,
2447,
18969,
187,
50270,
66,
461,
5182,
426,
50058,
1587,
45403,
2971,
38938,
995,
346,
77,
5009,
18,
2807,
187,
50270,
72,
693,
1279,
426,
50058,
1587,
3848,
9248,
1373,
2807,
187,
50270,
66,
64,
736,
426,
1881,
15,
585,
15,
21599,
1587,
7135,
22935,
13,
313,
66,
461,
5182,
13,
5029,
24717,
531,
1082,
187,
50270,
69,
64,
736,
426,
1881,
15,
585,
15,
21599,
1587,
7135,
22935,
13,
313,
72,
693,
1279,
13,
5029,
24717,
531,
1082,
187,
50270,
1286,
15,
8271,
5088,
9,
881,
9,
66,
64,
736,
60,
17,
3291,
2295,
50058,
13,
346,
881,
273,
1327,
14,
30104,
2267,
4194,
1364,
320,
50058,
2807,
187,
50270,
1286,
15,
8271,
5088,
9,
881,
9,
69,
64,
736,
60,
17,
3291,
2295,
1213,
13,
346,
881,
273,
48668,
14,
7483,
4194,
1364,
320,
1213,
2807,
535,
50274,
1545,
16024,
10854,
9,
1286,
2262,
187,
50270,
1286,
15,
585,
15,
10483,
1082,
187,
187,
2437,
10318,
11749,
26943,
3378,
45392,
4861,
26561,
16721,
9,
328,
44713,
15,
40595,
2262,
187,
50274,
1545,
873,
5683,
9,
1286,
2262,
187,
50270,
1286,
15,
585,
426,
45675,
15,
11025,
9,
1381,
20704,
46064,
187,
50270,
1286,
15,
585,
15,
21599,
1587,
6953,
2829,
1071,
313,
2877,
2505,
10,
2807,
187,
50270,
1286,
15,
585,
15,
21599,
1587,
14447,
715,
1071,
313,
2877,
10,
2193,
313,
14677,
995,
5550,
66,
61,
89,
361,
67,
995,
1228,
535,
50274,
1545,
9423,
2776,
9,
1286,
2262,
187,
50270,
4,
2505,
64,
20907,
30470,
281,
50058,
187,
50270,
736,
426,
1881,
15,
585,
15,
21599,
1587,
7135,
1318,
432,
1071,
6788,
24717,
531,
1082,
187,
50270,
1286,
15,
8271,
2513,
9,
881,
9,
736,
60,
17,
6660,
50058,
10,
187,
50270,
1286,
15,
34046,
9,
736,
60,
17,
1092,
346,
66,
61,
89,
361,
67,
2807,
535,
50274,
1545,
9423,
13510,
9,
1286,
2262,
187,
50270,
4,
329,
2840,
13250,
943,
4763,
271,
1213,
4154,
187,
50270,
1286,
15,
585,
15,
1156,
64,
20907,
426,
29331,
1269,
27,
1269,
187,
50270,
736,
426,
1881,
15,
585,
15,
21599,
1587,
7135,
1318,
432,
1071,
6788,
24717,
531,
1082,
187,
50270,
1286,
15,
8271,
2513,
9,
881,
9,
736,
60,
17,
6660,
1213,
10,
187,
50270,
1286,
15,
34046,
9,
736,
60,
17,
1092,
346,
66,
61,
89,
361,
67,
2807,
535,
50274,
1545,
9423,
13967,
303,
1025,
2447,
18969,
1909,
2776,
9,
1286,
2262,
187,
50270,
4,
48668,
5204,
1213,
4154,
187,
50270,
1286,
15,
585,
15,
1156,
64,
20907,
426,
45675,
15,
13967,
303,
1025,
2447,
18969,
187,
50270,
736,
426,
1881,
15,
585,
15,
21599,
1587,
7135,
1318,
432,
1071,
6788,
24717,
531,
1082,
187,
50270,
1286,
15,
8271,
2513,
9,
881,
9,
736,
60,
17,
6660,
1213,
10,
187,
50270,
1286,
15,
34046,
9,
736,
60,
17,
1092,
346,
66,
61,
89,
361,
67,
2807,
535,
50274,
1545,
9423,
13967,
303,
1025,
2447,
18969,
1909,
2447,
18969,
9,
1286,
2262,
187,
50270,
4,
8758,
14,
30104,
2267,
5204,
50058,
4154,
187,
50270,
1286,
15,
585,
15,
1156,
64,
20907,
426,
45675,
15,
13967,
303,
1025,
2447,
18969,
187,
50270,
1286,
15,
585,
15,
21599,
1587,
16435,
432,
1071,
2807,
187,
50270,
1286,
15,
585,
15,
21599,
1587,
14447,
715,
1071,
313,
2877,
10,
2193,
313,
14677,
995,
313,
86,
8,
1392,
61,
17,
2381,
1383,
1228,
187,
50270,
736,
426,
1881,
15,
585,
15,
21599,
1587,
7135,
1318,
432,
1071,
6788,
24717,
531,
1082,
187,
50270,
1286,
15,
8271,
2513,
9,
881,
9,
736,
60,
17,
6660,
50058,
10,
187,
50270,
1286,
15,
34046,
9,
736,
60,
17,
1092,
1484,
3,
1392,
61,
89,
361,
2381,
2807,
535,
50274,
1545,
16024,
10854,
9,
1286,
2262,
187,
50270,
1286,
15,
585,
15,
10483,
1082,
187,
187,
1545,
18880,
14850,
187,
50274,
14477,
64,
42877,
426,
440,
44713,
15,
11145,
40631,
9,
13457,
11749,
26943,
13,
346,
9063,
2807,
187,
50274,
14849,
64,
42877,
426,
440,
44713,
15,
11145,
40631,
9,
31620,
11749,
26943,
13,
346,
9063,
2807,
187,
50274,
736,
64,
42877,
64,
38659,
426,
440,
44713,
15,
11145,
40631,
9,
10990,
11749,
26943,
8116,
4515,
30616,
13,
346,
9063,
2807,
187,
50274,
736,
64,
42877,
426,
440,
44713,
15,
11145,
40631,
9,
10990,
11749,
26943,
13,
346,
9063,
2807,
187,
50274,
1156,
64,
42877,
426,
440,
44713,
15,
11145,
40631,
9,
4312,
11749,
26943,
13,
346,
9063,
2807,
187,
50274,
1156,
64,
10528,
64,
15845,
64,
42877,
426,
440,
44713,
15,
11145,
40631,
9,
4312,
11749,
26943,
3378,
45392,
4861,
26561,
16721,
13,
346,
9063,
2807,
187,
50274,
2309,
440,
44713,
15,
5089,
40631,
4464,
14477,
64,
42877,
13,
20482,
64,
42877,
13,
4194,
64,
42877,
64,
38659,
13,
4194,
64,
42877,
13,
2505,
64,
42877,
13,
2505,
64,
10528,
64,
15845,
64,
42877,
1228,
187,
187,
1545,
1071,
14850,
187,
50274,
28971,
426,
440,
44713,
15,
4312,
5089,
34102,
1082,
187,
50274,
28971,
15,
6321,
9,
42877,
6649,
187,
187,
338,
4772,
1590,
876,
2295,
346,
876,
7265,
876,
1381,
187,
50274,
2566,
1082,
187
] | #-*- coding: ISO-8859-1 -*-
# pysqlite2/test/factory.py: tests for the various factories in pysqlite
#
# Copyright (C) 2005-2007 Gerhard Häring <[email protected]>
#
# This file is part of pysqlite.
#
# This software is provided 'as-is', without any express or implied
# warranty. In no event will the authors be held liable for any damages
# arising from the use of this software.
#
# Permission is granted to anyone to use this software for any purpose,
# including commercial applications, and to alter it and redistribute it
# freely, subject to the following restrictions:
#
# 1. The origin of this software must not be misrepresented; you must not
# claim that you wrote the original software. If you use this software
# in a product, an acknowledgment in the product documentation would be
# appreciated but is not required.
# 2. Altered source versions must be plainly marked as such, and must not be
# misrepresented as being the original software.
# 3. This notice may not be removed or altered from any source distribution.
import unittest
import sqlite3 as sqlite
class MyConnection(sqlite.Connection):
def __init__(self, *args, **kwargs):
sqlite.Connection.__init__(self, *args, **kwargs)
def dict_factory(cursor, row):
d = {}
for idx, col in enumerate(cursor.description):
d[col[0]] = row[idx]
return d
class MyCursor(sqlite.Cursor):
def __init__(self, *args, **kwargs):
sqlite.Cursor.__init__(self, *args, **kwargs)
self.row_factory = dict_factory
class ConnectionFactoryTests(unittest.TestCase):
def setUp(self):
self.con = sqlite.connect(":memory:", factory=MyConnection)
def tearDown(self):
self.con.close()
def CheckIsInstance(self):
self.assertTrue(isinstance(self.con,
MyConnection),
"connection is not instance of MyConnection")
class CursorFactoryTests(unittest.TestCase):
def setUp(self):
self.con = sqlite.connect(":memory:")
def tearDown(self):
self.con.close()
def CheckIsInstance(self):
cur = self.con.cursor(factory=MyCursor)
self.assertTrue(isinstance(cur,
MyCursor),
"cursor is not instance of MyCursor")
class RowFactoryTestsBackwardsCompat(unittest.TestCase):
def setUp(self):
self.con = sqlite.connect(":memory:")
def CheckIsProducedByFactory(self):
cur = self.con.cursor(factory=MyCursor)
cur.execute("select 4+5 as foo")
row = cur.fetchone()
self.assertTrue(isinstance(row,
dict),
"row is not instance of dict")
cur.close()
def tearDown(self):
self.con.close()
class RowFactoryTests(unittest.TestCase):
def setUp(self):
self.con = sqlite.connect(":memory:")
def CheckCustomFactory(self):
self.con.row_factory = lambda cur, row: list(row)
row = self.con.execute("select 1, 2").fetchone()
self.assertTrue(isinstance(row,
list),
"row is not instance of list")
def CheckSqliteRowIndex(self):
self.con.row_factory = sqlite.Row
row = self.con.execute("select 1 as a, 2 as b").fetchone()
self.assertTrue(isinstance(row,
sqlite.Row),
"row is not instance of sqlite.Row")
col1, col2 = row["a"], row["b"]
self.assertTrue(col1 == 1, "by name: wrong result for column 'a'")
self.assertTrue(col2 == 2, "by name: wrong result for column 'a'")
col1, col2 = row["A"], row["B"]
self.assertTrue(col1 == 1, "by name: wrong result for column 'A'")
self.assertTrue(col2 == 2, "by name: wrong result for column 'B'")
col1, col2 = row[0], row[1]
self.assertTrue(col1 == 1, "by index: wrong result for column 0")
self.assertTrue(col2 == 2, "by index: wrong result for column 1")
def CheckSqliteRowIter(self):
"""Checks if the row object is iterable"""
self.con.row_factory = sqlite.Row
row = self.con.execute("select 1 as a, 2 as b").fetchone()
for col in row:
pass
def CheckSqliteRowAsTuple(self):
"""Checks if the row object can be converted to a tuple"""
self.con.row_factory = sqlite.Row
row = self.con.execute("select 1 as a, 2 as b").fetchone()
t = tuple(row)
def CheckSqliteRowAsDict(self):
"""Checks if the row object can be correctly converted to a dictionary"""
self.con.row_factory = sqlite.Row
row = self.con.execute("select 1 as a, 2 as b").fetchone()
d = dict(row)
self.assertEqual(d["a"], row["a"])
self.assertEqual(d["b"], row["b"])
def CheckSqliteRowHashCmp(self):
"""Checks if the row object compares and hashes correctly"""
self.con.row_factory = sqlite.Row
row_1 = self.con.execute("select 1 as a, 2 as b").fetchone()
row_2 = self.con.execute("select 1 as a, 2 as b").fetchone()
row_3 = self.con.execute("select 1 as a, 3 as b").fetchone()
self.assertTrue(row_1 == row_1)
self.assertTrue(row_1 == row_2)
self.assertTrue(row_2 != row_3)
self.assertFalse(row_1 != row_1)
self.assertFalse(row_1 != row_2)
self.assertFalse(row_2 == row_3)
self.assertEqual(row_1, row_2)
self.assertEqual(hash(row_1), hash(row_2))
self.assertNotEqual(row_1, row_3)
self.assertNotEqual(hash(row_1), hash(row_3))
def tearDown(self):
self.con.close()
class TextFactoryTests(unittest.TestCase):
def setUp(self):
self.con = sqlite.connect(":memory:")
def CheckUnicode(self):
austria = unicode("Österreich", "latin1")
row = self.con.execute("select ?", (austria,)).fetchone()
self.assertTrue(type(row[0]) == unicode, "type of row[0] must be unicode")
def CheckString(self):
self.con.text_factory = str
austria = unicode("Österreich", "latin1")
row = self.con.execute("select ?", (austria,)).fetchone()
self.assertTrue(type(row[0]) == str, "type of row[0] must be str")
self.assertTrue(row[0] == austria.encode("utf-8"), "column must equal original data in UTF-8")
def CheckCustom(self):
self.con.text_factory = lambda x: unicode(x, "utf-8", "ignore")
austria = unicode("Österreich", "latin1")
row = self.con.execute("select ?", (austria.encode("latin1"),)).fetchone()
self.assertTrue(type(row[0]) == unicode, "type of row[0] must be unicode")
self.assertTrue(row[0].endswith(u"reich"), "column must contain original data")
def CheckOptimizedUnicode(self):
self.con.text_factory = sqlite.OptimizedUnicode
austria = unicode("Österreich", "latin1")
germany = unicode("Deutchland")
a_row = self.con.execute("select ?", (austria,)).fetchone()
d_row = self.con.execute("select ?", (germany,)).fetchone()
self.assertTrue(type(a_row[0]) == unicode, "type of non-ASCII row must be unicode")
self.assertTrue(type(d_row[0]) == str, "type of ASCII-only row must be str")
def tearDown(self):
self.con.close()
class TextFactoryTestsWithEmbeddedZeroBytes(unittest.TestCase):
def setUp(self):
self.con = sqlite.connect(":memory:")
self.con.execute("create table test (value text)")
self.con.execute("insert into test (value) values (?)", ("a\x00b",))
def CheckString(self):
# text_factory defaults to unicode
row = self.con.execute("select value from test").fetchone()
self.assertIs(type(row[0]), unicode)
self.assertEqual(row[0], "a\x00b")
def CheckCustom(self):
# A custom factory should receive an str argument
self.con.text_factory = lambda x: x
row = self.con.execute("select value from test").fetchone()
self.assertIs(type(row[0]), str)
self.assertEqual(row[0], "a\x00b")
def CheckOptimizedUnicodeAsString(self):
# ASCII -> str argument
self.con.text_factory = sqlite.OptimizedUnicode
row = self.con.execute("select value from test").fetchone()
self.assertIs(type(row[0]), str)
self.assertEqual(row[0], "a\x00b")
def CheckOptimizedUnicodeAsUnicode(self):
# Non-ASCII -> unicode argument
self.con.text_factory = sqlite.OptimizedUnicode
self.con.execute("delete from test")
self.con.execute("insert into test (value) values (?)", (u'ä\0ö',))
row = self.con.execute("select value from test").fetchone()
self.assertIs(type(row[0]), unicode)
self.assertEqual(row[0], u"ä\x00ö")
def tearDown(self):
self.con.close()
def suite():
connection_suite = unittest.makeSuite(ConnectionFactoryTests, "Check")
cursor_suite = unittest.makeSuite(CursorFactoryTests, "Check")
row_suite_compat = unittest.makeSuite(RowFactoryTestsBackwardsCompat, "Check")
row_suite = unittest.makeSuite(RowFactoryTests, "Check")
text_suite = unittest.makeSuite(TextFactoryTests, "Check")
text_zero_bytes_suite = unittest.makeSuite(TextFactoryTestsWithEmbeddedZeroBytes, "Check")
return unittest.TestSuite((connection_suite, cursor_suite, row_suite_compat, row_suite, text_suite, text_zero_bytes_suite))
def test():
runner = unittest.TextTestRunner()
runner.run(suite())
if __name__ == "__main__":
test()
|
214,425 | Github | [
14277,
7229,
2715,
5473,
18,
15,
17,
8,
9706,
5473,
17880,
14,
25,
8,
28391,
187,
29,
4674,
15664,
568,
3614,
1358,
3211,
15,
69,
550,
415,
4463,
15,
316,
16,
24991,
16,
12352,
14,
17921,
3,
15664,
27,
19880,
1245,
568,
3614,
1358,
3211,
15,
69,
550,
415,
4463,
15,
316,
16,
24991,
16,
19880,
1245,
3,
15664,
27,
19880,
1419,
568,
3614,
1358,
3211,
15,
69,
550,
415,
4463,
15,
316,
16,
24991,
16,
19880,
1419,
3,
15664,
27,
2981,
568,
2413,
1358,
2700,
15,
88,
20,
15,
2061,
16,
8971,
16,
57,
25644,
3,
4508,
14,
7152,
568,
37,
15,
36,
15,
6307,
1138,
187,
50276,
29,
6370,
31,
1235,
14,
1166,
2941,
870,
6370,
31,
187,
50276,
29,
33049,
31,
42406,
942,
8239,
33049,
31,
187,
50276,
29,
18920,
31,
187,
50274,
29,
6370,
8743,
66,
17266,
6370,
31,
187,
50274,
29,
1156,
31,
510,
5572,
273,
247,
5694,
4958,
778,
417,
4616,
667,
1429,
273,
1679,
685,
495,
1107,
273,
2363,
5734,
253,
1429,
310,
6283,
39848,
275,
247,
1429,
28891,
7319,
8239,
1156,
31,
187,
50276,
870,
18920,
31,
187,
50276,
29,
18920,
31,
187,
50274,
29,
6370,
8743,
67,
17266,
6370,
31,
187,
50274,
29,
1156,
31,
510,
5572,
273,
247,
5694,
4958,
3091,
417,
4616,
667,
1429,
762,
1668,
1107,
273,
2363,
5734,
253,
1429,
310,
6283,
39848,
275,
271,
7012,
1429,
5252,
28891,
985,
390,
39848,
275,
247,
7319,
13779,
15,
12757,
762,
854,
1107,
273,
2363,
3091,
320,
6283,
22813,
275,
271,
8038,
13131,
13,
6455,
917,
313,
85,
13323,
2146,
10,
390,
48696,
1429,
5252,
7319,
13,
2556,
281,
253,
11662,
457,
84,
7997,
15,
329,
48696,
7319,
3091,
760,
320,
908,
342,
1097,
247,
13427,
285,
9215,
13779,
8239,
1156,
31,
187,
50276,
870,
18920,
31,
187,
50276,
29,
18920,
31,
187,
50274,
29,
6370,
8743,
68,
17266,
6370,
31,
187,
50274,
29,
1156,
31,
34,
2885,
390,
4320,
29921,
778,
4616,
521,
390,
617,
1211,
1429,
1293,
28891,
11249,
604,
326,
1436,
310,
34991,
247,
1180,
273,
521,
390,
617,
1211,
2151,
273,
1679,
685,
1668,
1107,
273,
2363,
534,
23141,
253,
1180,
273,
15828,
6887,
13496,
342,
5252,
39978,
275,
253,
5694,
4958,
15,
1723,
13,
271,
27572,
11273,
1429,
778,
417,
320,
20870,
275,
253,
2914,
7319,
273,
247,
5694,
4958,
8239,
1156,
31,
187,
50276,
870,
18920,
31,
187,
50276,
29,
18920,
31,
187,
50274,
29,
6370,
8743,
69,
17266,
6370,
31,
187,
50274,
29,
1156,
31,
40531,
4252,
19272,
4413,
3091,
320,
2424,
281,
4151,
1016,
7731,
273,
253,
10067,
273,
436,
8857,
285,
2085,
11331,
4753,
281,
253,
7731,
15,
380,
11331,
4753,
3091,
320,
2530,
407,
253,
4487,
273,
26593,
8239,
1156,
31,
187,
50276,
870,
18920,
31,
187,
50276,
29,
47926,
31,
187,
50274,
29,
22965,
5474,
568,
37,
15,
36,
15,
5405,
577,
14,
19332,
3,
1511,
568,
12697,
3,
1854,
568,
7803,
21,
1138,
9709,
15,
884,
13,
11299,
13,
399,
15,
36,
15,
5405,
577,
14,
19332,
13,
3015,
577,
13,
1884,
399,
1311,
7584,
870,
22965,
31,
187,
50274,
29,
22965,
5474,
568,
37,
15,
36,
15,
5405,
898,
14,
3011,
3,
1511,
568,
12697,
1138,
9709,
15,
818,
13,
9748,
13,
399,
15,
36,
15,
5405,
898,
14,
3011,
13,
3015,
374,
9,
67,
582,
6480,
399,
1311,
818,
28933,
870,
22965,
31,
187,
50274,
29,
22965,
5474,
568,
37,
15,
36,
15,
5405,
1638,
14,
17223,
3,
1511,
568,
12697,
1138,
14909,
15,
655,
13,
6752,
13,
399,
15,
36,
15,
5405,
1638,
14,
17223,
13,
3015,
374,
9,
66,
582,
7584,
399,
1311,
854,
15497,
870,
22965,
31,
187,
50274,
29,
22965,
1511,
568,
15131,
273,
44518,
942,
5264,
41766,
5474,
568,
37,
15,
36,
15,
5405,
1638,
14,
17223,
1138,
37,
15,
36,
15,
5405,
1638,
14,
17223,
870,
41766,
31,
294,
48141,
749,
1704,
15,
313,
67,
10,
285,
2879,
749,
1704,
15,
313,
69,
481,
13036,
281,
15129,
13,
749,
1704,
15,
313,
67,
10,
1239,
347,
3637,
27,
773,
9,
67,
10,
380,
5572,
273,
247,
5694,
4958,
778,
417,
4616,
667,
1429,
875,
495,
1107,
273,
2363,
285,
1668,
1107,
273,
2363,
5734,
253,
1429,
310,
6283,
39848,
275,
271,
7012,
1429,
28891,
7319,
390,
5252,
13779,
1425,
870,
22965,
31,
187,
50274,
29,
22965,
1511,
568,
20108,
40753,
6787,
1138,
18263,
3619,
904,
3015,
35990,
1449,
14,
805,
2941,
8239,
22965,
31,
187,
50274,
29,
22965,
1511,
568,
12612,
48176,
1138,
1552,
2593,
310,
23378,
275,
654,
41766,
1854,
568,
7803,
1235,
14,
1166,
3071,
1138,
7803,
2456,
14,
1166,
3071,
870,
41766,
31,
8239,
22965,
31,
187,
50276,
870,
47926,
31,
187,
870,
4674,
31,
187
] | <?xml version='1.0' encoding='utf-8'?>
<section xmlns="https://code.dccouncil.us/schemas/dc-library" xmlns:codified="https://code.dccouncil.us/schemas/codified" xmlns:codify="https://code.dccouncil.us/schemas/codify" xmlns:xi="http://www.w3.org/2001/XInclude" containing-doc="D.C. Code">
<num>50-1703</num>
<heading>Requirements.</heading>
<para>
<num>(a)</num>
<text>The operator of a motor vehicle may not transport any child of less than 3 years of age unless the child is properly restrained in a child restraint seat.</text>
</para>
<para>
<num>(b)</num>
<text>The operator of a motor vehicle shall not transport any child under 16 years of age unless the child is properly restrained in an approved child safety restraint system or restrained in a seat belt. Children under 8 years of age shall be properly seated in an installed infant, convertible (toddler) or booster child safety seat, according to the manufacturer’s instructions. A booster seat shall only be used with both a lap and shoulder belt.</text>
</para>
<para>
<num>(c)</num>
<text>A parent or legal guardian may transport his or her own child without restraint herein if that person is transporting a number of his or her own children of less than 16 years of age which exceeds the number of passenger positions equipped with safety belts in the motor vehicle. However, an unrestrained child may not be transported in the front seat of a motor vehicle.</text>
</para>
<para>
<num>(d)</num>
<text>Automobile rental companies shall be required to inform each customer of the provisions of this chapter and provide educational materials to the customer. The educational materials shall be provided by the Department of Transportation.</text>
</para>
<annotations>
<annotation doc="D.C. Law 4-194" type="History" path="§4">Mar. 10, 1983, D.C. Law 4-194, § 4, 30 DCR 49</annotation>
<annotation doc="D.C. Law 9-57" type="History">Mar. 7, 1992, D.C. Law 9-57, § 2(b), 38 DCR 7283</annotation>
<annotation doc="D.C. Law 14-212" type="History">Oct. 19, 2002, D.C. Law 14-212, § 2(a), 49 DCR 8137</annotation>
<annotation type="Effect of Amendments"><cite doc="D.C. Law 14-212">D.C. Law 14-212</cite> rewrote subsec. (b) and added subsec. (d). Prior to amendment, subsec. (b) read as follows: “(b) The operator of a motor vehicle may not transport any child between 3 years of age and 16 years of age unless the child is properly restrained in an approved child restraint seat or safety belt.”</annotation>
<annotation type="Prior Codifications">1981 Ed., § 40-1203.</annotation>
<annotation type="Section References">This section is referenced in <cite path="§50-1706">§ 50-1706</cite>.</annotation>
</annotations>
</section>
|
214,426 | Github | [
3122,
187,
475,
50276,
20968,
313,
36,
10,
7544,
14,
6914,
3972,
363,
6162,
257,
313,
631,
257,
33,
76,
615,
15,
2061,
10,
187,
475,
50276,
20968,
313,
36,
10,
4695,
14,
7798,
8217,
3690,
15,
1876,
3570,
10827,
15,
187,
475,
187,
475,
50276,
1552,
6335,
310,
1959,
3694,
28,
368,
476,
25529,
352,
285,
16,
263,
187,
475,
50276,
2307,
1419,
352,
762,
253,
2426,
273,
253,
11963,
32425,
4214,
5259,
187,
475,
50276,
17736,
347,
3863,
407,
253,
7648,
9107,
6807,
28,
2057,
187,
475,
50276,
4149,
374,
273,
253,
4637,
13,
390,
313,
255,
634,
4500,
10,
667,
1996,
2715,
15,
187,
475,
187,
475,
50276,
1552,
6335,
310,
5939,
275,
253,
3524,
326,
352,
588,
320,
4217,
13,
187,
475,
50276,
2858,
15002,
9103,
23181,
28,
1293,
1014,
253,
10466,
17529,
273,
187,
475,
50276,
38097,
20386,
390,
20524,
6651,
329,
20383,
20103,
15,
50276,
5035,
253,
11963,
187,
475,
50276,
28274,
254,
4214,
5259,
4637,
323,
625,
4278,
15,
187,
475,
187,
475,
50276,
1394,
943,
452,
2959,
247,
3491,
273,
253,
11963,
32425,
4214,
5259,
187,
475,
50276,
17736,
2112,
342,
436,
6335,
28,
604,
417,
13,
3630,
281,
253,
7648,
9107,
187,
475,
50276,
38034,
13,
3690,
904,
8319,
17179,
5720,
13,
17538,
32370,
13,
9693,
13,
6908,
50276,
21940,
740,
14,
39677,
50276,
22396,
187,
475,
187,
1738,
187,
187,
4,
26579,
2378,
187,
187,
4,
3709,
346,
15253,
4241,
15,
73,
3,
187,
187,
12361,
500,
4061,
551,
187,
187,
2437,
10421,
11257,
2457,
1163,
1345,
20235,
11592,
21747,
4241,
551,
187,
4387,
27,
187,
50274,
5302,
11760,
426,
20235,
11592,
21747,
4241,
28,
535,
50274,
4659,
35435,
7301,
3198,
22482,
2705,
426,
2032,
28,
187,
50274,
4659,
2991,
6909,
9,
43,
4061,
437,
11,
894,
10,
187,
50274,
92,
187,
50270,
4659,
64,
4008,
29,
6958,
11257,
46802,
3992,
18474,
6958,
11257,
1450,
95,
6958,
11257,
1874,
187,
50274,
94,
535,
50274,
8547,
29,
15295,
11641,
2548,
13,
4974,
5641,
11501,
4438,
31,
187,
50274,
4659,
309,
601,
5623,
5641,
11,
24822,
2214,
9,
11804,
7,
31940,
10,
187,
50274,
92,
187,
50270,
2309,
708,
11618,
15,
2754,
11257,
16929,
28,
187,
50274,
94,
535,
50274,
4659,
10421,
11257,
11,
2794,
9,
11804,
7,
31940,
13,
29593,
11,
2605,
13,
4021,
3522,
10,
187,
50274,
92,
187,
50270,
6958,
11257,
11,
4227,
426,
747,
313,
41419,
13,
29211,
10772,
29,
6958,
11257,
8743,
11618,
15,
47984,
1228,
10421,
11257,
9,
11618,
13,
2605,
558,
187,
50270,
14966,
1168,
43020,
47731,
9,
11618,
13,
3522,
558,
187,
50270,
2309,
4227,
28,
187,
50274,
94,
535,
50274,
4659,
10421,
11257,
11,
2794,
9,
11804,
7,
31940,
13,
29593,
11,
2605,
10,
187,
50274,
92,
187,
50270,
6958,
11257,
11,
4227,
426,
747,
313,
41419,
13,
29211,
10772,
29,
6958,
11257,
8743,
11618,
15,
47984,
1228,
10421,
11257,
9,
11618,
13,
2605,
558,
187,
50270,
14966,
1168,
43020,
47731,
9,
11618,
558,
187,
50270,
2309,
4227,
28,
187,
50274,
94,
535,
50274,
12237,
4812,
8447,
1082,
1030,
551,
1091,
278,
64,
11577,
8447,
28,
748,
187,
50274,
4353,
873,
19996,
8447,
9,
12237,
1318,
10,
551,
278,
64,
11577,
8447,
426,
1318,
28,
748,
535,
50274,
47110,
64,
30216,
64,
16615,
28,
535,
50274,
3474,
13916,
40563,
24151,
11,
305,
1747,
40563,
24151,
9,
11804,
7,
31940,
10,
1030,
187,
50274,
92,
187,
50270,
338,
313,
78,
64,
2203,
3857,
278,
64,
2203,
1168,
78,
64,
6130,
40563,
24151,
36,
2729,
2214,
3338,
2295,
4812,
8447,
6649,
187,
50266,
2309,
708,
78,
64,
2203,
1168,
78,
64,
45438,
33612,
40563,
24151,
28,
187,
50270,
2309,
10173,
33612,
40563,
24151,
9,
11618,
558,
187,
50274,
94,
535,
50274,
3474,
13916,
40563,
24151,
11,
305,
1747,
40563,
24151,
42773,
9,
11804,
7,
31940,
10,
1030,
187,
50274,
92,
187,
50270,
338,
313,
78,
64,
2203,
3857,
278,
64,
2203,
1168,
78,
64,
6130,
40563,
24151,
3329,
2648,
2729,
2214,
3338,
2295,
4812,
8447,
6649,
187,
50266,
2309,
708,
78,
64,
2203,
1168,
78,
64,
45438,
33612,
40563,
24151,
42773,
28,
187,
50270,
2309,
10173,
33612,
40563,
24151,
42773,
9,
11618,
558,
187,
50274,
94,
535,
50274,
4659,
29593,
11,
2794,
34359,
9,
11804,
7,
31940,
13,
20235,
18590,
4241,
11,
4156,
4241,
13,
20235,
3902,
21841,
10,
187,
50274,
92,
187,
50270,
2309,
29593,
1450,
6953,
9,
11618,
13,
4156,
4241,
13,
21841,
13,
8078,
6074,
9,
43,
3871,
366,
2548,
13,
29593,
17466,
582,
8692,
6020,
187,
50274,
94,
535,
50274,
4659,
27028,
13437,
64,
85,
8409,
4527,
19996,
8447,
1082,
551,
1091,
27227,
19290,
64,
33441,
10327,
9,
6958,
11257,
13,
278,
64,
11577,
8447,
558,
748,
187,
50274,
4659,
27028,
13437,
64,
85,
8409,
4527,
3233,
1082,
551,
1091,
27227,
19290,
64,
33441,
10327,
9,
6958,
11257,
13,
278,
64,
2203,
558,
748,
187,
187,
9486,
27,
187,
50274,
15253,
64,
30216,
64,
3175,
44882,
10421,
11257,
9,
11804,
7,
13,
29593,
11,
558,
187,
50274,
4353,
8416,
47731,
9,
11804,
7,
558,
187,
50274,
15253,
64,
30216,
64,
3175,
44882,
2991,
8416,
47731,
9,
11804,
7,
13,
4021,
558,
187,
50274,
15253,
64,
30216,
64,
3175,
44882,
1030,
13916,
40563,
24151,
11,
10173,
33612,
40563,
24151,
9,
11804,
7,
10,
1030,
28,
187,
50274,
15253,
64,
30216,
64,
3175,
44882,
1030,
13916,
40563,
24151,
11,
10173,
33612,
40563,
24151,
42773,
9,
11804,
7,
10,
1030,
28,
535,
50274,
12237,
278,
64,
11577,
8447,
551,
367,
44932,
7734,
187,
50274,
10082,
494,
7567,
12030,
29,
6958,
11257,
3233,
31,
278,
64,
2203,
28,
187,
4718,
187,
187,
94,
1380,
12953,
500,
4061,
187
] | /*
* Copyright (C) 1999-2000 Harri Porten ([email protected])
* Copyright (C) 2008-2018 Apple Inc. All rights reserved.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
#pragma once
#include "JSObject.h"
namespace JSC {
class DateInstance final : public JSNonFinalObject {
public:
using Base = JSNonFinalObject;
static constexpr bool needsDestruction = true;
static void destroy(JSCell* cell)
{
static_cast<DateInstance*>(cell)->DateInstance::~DateInstance();
}
template<typename CellType, SubspaceAccess mode>
static IsoSubspace* subspaceFor(VM& vm)
{
return &vm.dateInstanceSpace;
}
static DateInstance* create(VM& vm, Structure* structure, double date)
{
DateInstance* instance = new (NotNull, allocateCell<DateInstance>(vm.heap)) DateInstance(vm, structure);
instance->finishCreation(vm, date);
return instance;
}
static DateInstance* create(VM& vm, Structure* structure)
{
DateInstance* instance = new (NotNull, allocateCell<DateInstance>(vm.heap)) DateInstance(vm, structure);
instance->finishCreation(vm);
return instance;
}
double internalNumber() const { return m_internalNumber; }
void setInternalNumber(double value) { m_internalNumber = value; }
DECLARE_EXPORT_INFO;
const GregorianDateTime* gregorianDateTime(VM& vm) const
{
if (m_data && m_data->m_gregorianDateTimeCachedForMS == internalNumber())
return &m_data->m_cachedGregorianDateTime;
return calculateGregorianDateTime(vm);
}
const GregorianDateTime* gregorianDateTimeUTC(VM& vm) const
{
if (m_data && m_data->m_gregorianDateTimeUTCCachedForMS == internalNumber())
return &m_data->m_cachedGregorianDateTimeUTC;
return calculateGregorianDateTimeUTC(vm);
}
static Structure* createStructure(VM& vm, JSGlobalObject* globalObject, JSValue prototype)
{
return Structure::create(vm, globalObject, prototype, TypeInfo(JSDateType, StructureFlags), info());
}
static ptrdiff_t offsetOfInternalNumber() { return OBJECT_OFFSETOF(DateInstance, m_internalNumber); }
static ptrdiff_t offsetOfData() { return OBJECT_OFFSETOF(DateInstance, m_data); }
private:
JS_EXPORT_PRIVATE DateInstance(VM&, Structure*);
void finishCreation(VM&);
JS_EXPORT_PRIVATE void finishCreation(VM&, double);
JS_EXPORT_PRIVATE const GregorianDateTime* calculateGregorianDateTime(VM&) const;
JS_EXPORT_PRIVATE const GregorianDateTime* calculateGregorianDateTimeUTC(VM&) const;
double m_internalNumber { PNaN };
mutable RefPtr<DateInstanceData> m_data;
};
} // namespace JSC
|
214,427 | Github | [
2948,
551,
496,
720,
494,
748,
432,
34683,
12406,
16,
6443,
3664,
187,
2948,
551,
23953,
8975,
13,
23953,
4756,
9604,
748,
432,
34683,
12406,
16,
9784,
16,
2413,
3664,
187,
2948,
551,
45720,
13,
4710,
4756,
748,
432,
346,
18677,
4305,
3664,
187,
2948,
551,
5834,
4756,
13,
13341,
13,
3711,
748,
432,
346,
18677,
4305,
16,
2211,
2392,
3664,
187,
187,
2948,
551,
309,
4505,
748,
432,
49173,
3140,
3664,
187,
2948,
551,
3126,
748,
432,
346,
7614,
16,
257,
11986,
16,
20034,
3664,
187,
2948,
551,
309,
18142,
262,
6800,
14085,
748,
432,
47490,
5353,
262,
43975,
16,
5353,
262,
14,
2808,
3664,
187,
187,
33,
688,
720,
494,
7506,
187,
50276,
33850,
688,
27,
346,
9723,
995,
187,
2311,
187,
15035,
966,
8490,
7456,
551,
187,
50276,
9486,
1873,
13636,
426,
3126,
15,
11133,
12023,
15,
36997,
559,
346,
11242,
3664,
535,
50276,
36073,
9,
9486,
3944,
27,
23953,
8975,
10,
12166,
535,
50276,
788,
19284,
14850,
45720,
29,
3801,
587,
5456,
31,
551,
187,
50274,
2309,
436,
15,
2413,
187,
50272,
15,
788,
29,
3801,
587,
5456,
8743,
2520,
15,
3140,
13636,
10,
187,
50272,
15,
25209,
9,
28293,
4756,
9,
2520,
15,
13393,
4756,
4027,
187,
50276,
94,
535,
50276,
788,
4505,
9,
301,
27,
2876,
2262,
45720,
29,
3801,
587,
1040,
17011,
31,
551,
187,
50274,
2309,
436,
15,
2413,
187,
50272,
15,
788,
29,
3801,
587,
8743,
2520,
15,
3140,
13636,
559,
13357,
3,
559,
2654,
10,
187,
50272,
15,
25209,
9,
28293,
4756,
9,
2520,
15,
13393,
4756,
4027,
187,
50276,
94,
535,
50276,
20085,
4505,
9,
3140,
27,
309,
4505,
2262,
45720,
29,
3801,
587,
1040,
17011,
31,
551,
187,
50274,
3474,
830,
3233,
27,
7191,
3233,
426,
747,
7191,
3233,
1874,
187,
50274,
630,
3233,
15,
9691,
1587,
630,
4505,
995,
1873,
15,
630,
4505,
558,
187,
50274,
630,
3233,
15,
9691,
1587,
1590,
995,
1873,
15,
1590,
558,
187,
50274,
630,
3233,
15,
9691,
1587,
10008,
995,
1873,
15,
10008,
558,
187,
50274,
2309,
436,
15,
2413,
187,
50272,
15,
5996,
29,
3801,
587,
8743,
2520,
15,
3140,
13636,
13,
830,
3233,
10,
187,
50272,
15,
25209,
9,
28293,
4756,
9,
2520,
15,
13393,
4756,
4027,
187,
50276,
94,
535,
50276,
11183,
4505,
9,
3140,
27,
309,
4505,
2262,
45720,
29,
3801,
587,
1040,
17011,
31,
551,
187,
50274,
2309,
436,
15,
2413,
187,
50272,
15,
1065,
29,
3801,
587,
8743,
2520,
15,
3140,
13636,
559,
13357,
3,
559,
1873,
15,
301,
13,
1873,
10,
187,
50272,
15,
25209,
9,
28293,
4756,
9,
2520,
15,
13393,
4756,
4027,
187,
50276,
94,
535,
50276,
21596,
4505,
9,
3140,
27,
309,
4505,
2262,
45720,
29,
45020,
31,
551,
187,
50274,
2309,
436,
15,
2413,
187,
50272,
15,
788,
9,
2520,
15,
3140,
13636,
559,
13357,
3,
559,
1873,
15,
301,
559,
13357,
21596,
995,
551,
2380,
2548,
27,
346,
23723,
3,
13985,
187,
50272,
15,
25209,
9,
28293,
4756,
9,
2520,
15,
13393,
4756,
4027,
187,
50276,
94,
535,
50276,
16435,
4505,
9,
3140,
27,
309,
4505,
2262,
45720,
29,
3801,
587,
1040,
17011,
31,
551,
187,
50274,
2309,
436,
15,
2413,
187,
50272,
15,
16435,
29,
3801,
587,
8743,
2520,
15,
3140,
13636,
559,
13357,
3,
559,
1873,
15,
301,
10,
187,
50272,
15,
25209,
9,
28293,
4756,
9,
2520,
15,
13393,
4756,
4027,
187,
50276,
94,
535,
50276,
788,
18142,
262,
6800,
84,
9,
301,
27,
2876,
2262,
45720,
29,
5236,
438,
262,
6800,
14085,
5456,
1040,
17011,
31,
551,
187,
50274,
2309,
436,
15,
2413,
187,
50272,
15,
788,
29,
5236,
438,
262,
6800,
14085,
5456,
8743,
2520,
15,
3140,
13636,
559,
13357,
3,
559,
2654,
559,
13357,
5353,
262,
6800,
84,
2807,
187,
50272,
15,
25209,
9,
28293,
4756,
9,
2520,
15,
13393,
4756,
4027,
187,
50276,
94,
535,
50276,
9486,
6016,
4756,
9,
1000,
27,
23953,
4756,
9604,
10,
551,
187,
50274,
605,
275,
247,
1524,
1533,
622,
13,
359,
778,
5007,
253,
4771,
281,
690,
8905,
20893,
11319,
187,
50274,
605,
3185,
273,
816,
20893,
352,
281,
253,
9667,
187,
50274,
1059,
2228,
7474,
426,
29707,
187,
50274,
338,
313,
1000,
15,
3775,
31979,
11759,
5949,
10,
551,
187,
50272,
605,
329,
5268,
14,
2189,
390,
2990,
2228,
5866,
15,
34107,
352,
15672,
15,
187,
50272,
3775,
7474,
426,
2634,
1145,
2228,
5866,
27,
7224,
1000,
15,
3775,
15,
8559,
94,
65,
28,
187,
50274,
94,
2010,
551,
187,
50272,
605,
380,
31446,
4895,
271,
28008,
2380,
2127,
15,
187,
50272,
605,
380,
2380,
2133,
778,
3831,
30591,
347,
281,
752,
2427,
3430,
13,
187,
50272,
3775,
7474,
426,
2634,
12023,
4895,
2127,
27,
7224,
1000,
15,
8581,
2023,
2228,
3935,
310,
27,
7224,
1000,
15,
8559,
94,
65,
28,
187,
50274,
94,
187,
50274,
22452,
15,
3775,
9,
3775,
7474,
558,
187,
50274,
2309,
4710,
4756,
9,
3775,
7474,
558,
187,
50276,
94,
187,
94,
187
] | import { Injectable } from "@angular/core";
import { HttpClient, HttpErrorResponse } from "@angular/common/http";
import { Observable, throwError } from "rxjs";
import { catchError, tap, map } from "rxjs/operators";
import { IFile } from "./file";
import { environment } from "src/environments/environment";
import { IAuditLogEntry } from "../auditlogs/audit-log";
@Injectable({
providedIn: "root",
})
export class FileService {
private fileUrl = environment.ResourceServer.Endpoint + "files";
constructor(private http: HttpClient) {}
getFiles(): Observable<IFile[]> {
return this.http
.get<IFile[]>(this.fileUrl)
.pipe(catchError(this.handleError));
}
getFile(id: string): Observable<IFile | undefined> {
return this.http
.get<IFile>(this.fileUrl + "/" + id)
.pipe(catchError(this.handleError));
}
uploadFile(file: IFile): Observable<IFile | undefined> {
const formData: FormData = new FormData();
formData.append("formFile", file.formFile);
formData.append("name", file.name);
formData.append("description", file.description);
return this.http
.post<IFile>(this.fileUrl, formData)
.pipe(catchError(this.handleError));
}
updateFile(file: IFile): Observable<IFile | undefined> {
return this.http
.put<IFile>(this.fileUrl + "/" + file.id, file)
.pipe(catchError(this.handleError));
}
downloadFile(file: IFile): Observable<Blob> {
return this.http
.get(this.fileUrl + "/" + file.id + "/download", { responseType: "blob" })
.pipe(catchError(this.handleError));
}
deleteFile(file: IFile): Observable<IFile | undefined> {
return this.http
.delete<IFile>(this.fileUrl + "/" + file.id)
.pipe(catchError(this.handleError));
}
getAuditLogs(id: string): Observable<IAuditLogEntry[] | undefined> {
return this.http
.get<IAuditLogEntry[]>(this.fileUrl + "/" + id + "/auditLogs")
.pipe(catchError(this.handleError));
}
private handleError(err: HttpErrorResponse) {
// in a real world app, we may send the server to some remote logging infrastructure
// instead of just logging it to the console
let errorMessage = "";
if (err.error instanceof ErrorEvent) {
// A client-side or network error occurred. Handle it accordingly.
errorMessage = `An error occurred: ${err.error.message}`;
} else {
// The backend returned an unsuccessful response code.
// The response body may contain clues as to what went wrong,
errorMessage = `Server returned code: ${err.status}, error message is: ${err.message}`;
}
console.error(errorMessage);
return throwError(errorMessage);
}
}
|
214,428 | Github | [
4,
35588,
57,
14,
17736,
14,
18483,
27,
12992,
14,
15012,
14,
4576,
14,
19,
15,
17,
187,
4,
35588,
57,
14,
4505,
20968,
4312,
27,
4072,
14,
14952,
13531,
318,
33918,
187,
5996,
27,
187,
50276,
8774,
27,
1535,
16046,
5731,
273,
7823,
187,
50276,
10008,
27,
17251,
6661,
7823,
604,
3058,
187,
50276,
20936,
2618,
27,
5731,
49,
3422,
447,
187,
50276,
15994,
265,
27,
187,
50274,
3,
1518,
1381,
187,
50272,
10008,
27,
22764,
187,
50272,
6071,
27,
187,
50270,
13259,
16,
8456,
27,
187,
50268,
18982,
27,
187,
50266,
881,
27,
1789,
187,
50266,
17354,
27,
187,
50264,
14,
906,
187,
50264,
14,
2250,
187,
50264,
14,
941,
187,
50266,
19402,
27,
187,
50264,
6870,
27,
187,
50262,
881,
27,
2876,
187,
50262,
10008,
27,
22195,
273,
253,
2748,
187,
50262,
14379,
27,
187,
50260,
14,
2323,
187,
50260,
14,
2228,
187,
50264,
1913,
27,
187,
50262,
881,
27,
2876,
187,
50262,
10008,
27,
380,
2654,
273,
253,
2250,
187,
50262,
14379,
27,
187,
50260,
14,
5731,
49,
3422,
447,
187,
50264,
2203,
27,
187,
50262,
881,
27,
1789,
187,
50262,
17354,
27,
187,
50260,
14,
7823,
187,
50262,
19402,
27,
187,
50260,
81,
3422,
447,
27,
187,
50258,
881,
27,
2876,
187,
50258,
14379,
27,
187,
50256,
14,
11075,
264,
187,
50276,
23059,
27,
187,
50274,
14,
4155,
187,
50276,
89,
14,
3211,
14,
33380,
27,
187,
50274,
14,
19457,
27,
26721,
187,
50272,
6756,
27,
187,
50270,
5,
709,
27,
35955,
3211,
64,
33380,
16,
31064,
16,
10394,
16,
11183,
14,
81,
3422,
447,
15,
1200,
187
] | # SPDX-License-Identifier: CC-BY-SA-2.0
# SPDX-FileCopyrightText: 2013-2020 Normation SAS
post:
summary: Trigger update of policies
description: Update configuration policies if needed
operationId: updatePolicies
responses:
"200":
description: Success
content:
application/json:
schema:
type: object
required:
- result
- action
- data
properties:
result:
type: string
description: Result of the request
enum:
- success
- error
action:
type: string
description: The id of the action
enum:
- updatePolicies
data:
type: object
required:
- policies
properties:
policies:
type: string
enum:
- Started
tags:
- System
x-code-samples:
- lang: curl
source:
$ref: ../../code_samples/curl/system/update-policies.sh
|
214,429 | Github | [
605,
2195,
5,
11,
18441,
25,
11,
5,
2,
187,
92,
187,
186,
22477,
8893,
426,
337,
28,
187,
186,
19770,
426,
551,
187,
186,
4718,
187,
186,
6082,
8893,
426,
7904,
28,
187,
186,
25964,
426,
551,
187,
187,
3122,
22929,
28295,
10987,
4505,
2593,
1738,
996,
186,
40848,
4280,
38,
22,
39,
18,
35,
5388,
1549,
37,
361,
25716,
25,
35,
361,
3476,
12121,
18938,
15,
13149,
275,
17780,
4896,
1738,
426,
551,
8901,
426,
28295,
10987,
4505,
28,
1873,
7676,
426,
40175,
4280,
38,
22,
2405,
35,
5388,
1549,
37,
361,
25716,
25,
35,
361,
3476,
12121,
18938,
15,
13149,
1738,
28,
7734,
996,
186,
40848,
4280,
38,
36630,
35,
5388,
1549,
37,
361,
25716,
25,
35,
361,
3476,
12121,
18938,
26943,
15,
36036,
275,
34734,
1738,
426,
551,
8901,
426,
28295,
10987,
4505,
28,
1873,
7676,
426,
40175,
4280,
38,
33297,
35,
5388,
1549,
37,
361,
25716,
25,
35,
361,
3476,
12121,
18938,
26943,
15,
36036,
1738,
28,
7734,
996,
186,
40848,
4280,
38,
24,
1797,
35,
5388,
23,
25716,
361,
25716,
25,
35,
361,
3476,
12121,
18938,
15,
36036,
275,
34734,
1738,
426,
551,
8901,
426,
28295,
10987,
4505,
28,
1873,
7676,
426,
40175,
4280,
38,
23,
39,
18,
35,
5388,
23,
25716,
361,
25716,
25,
35,
361,
3476,
12121,
18938,
15,
36036,
1738,
28,
7734,
996,
186,
40848,
4280,
38,
24,
2405,
35,
5388,
23,
25716,
361,
25716,
25,
35,
361,
3476,
530,
1864,
49229,
12,
9019,
18938,
15,
36036,
275,
34734,
1738,
426,
551,
8901,
426,
28295,
10987,
4505,
28,
1873,
7676,
426,
40175,
4280,
38,
42940,
35,
5388,
23,
25716,
361,
25716,
25,
35,
361,
3476,
530,
1864,
49229,
12,
9019,
18938,
15,
36036,
1738,
28,
7734,
996,
186,
40848,
4280,
38,
24,
3156,
35,
5388,
23,
25716,
361,
25716,
25,
35,
361,
3476,
530,
2431,
383,
459,
44349,
6081,
12,
9019,
18938,
15,
36036,
275,
34734,
1738,
426,
551,
8901,
426,
28295,
10987,
4505,
28,
1873,
7676,
426,
40175,
4280,
38,
47608,
35,
5388,
23,
25716,
361,
25716,
25,
35,
361,
3476,
530,
2431,
383,
459,
44349,
6081,
12,
9019,
18938,
15,
36036,
1738,
28,
7734,
996,
186,
3547,
2925,
20,
39,
4339,
18,
37,
9726,
37,
2358,
8972,
34,
1540,
883,
3476,
530,
5472,
274,
8880,
5475,
12,
9019,
18938,
15,
36036,
275,
34734,
1738,
426,
551,
8901,
426,
28295,
10987,
4505,
28,
1873,
7676,
426,
8187,
2925,
20,
39,
3717,
18,
37,
9726,
37,
2358,
8972,
34,
1540,
883,
3476,
530,
5472,
274,
8880,
5475,
12,
9019,
18938,
15,
36036,
1738,
28,
7734,
187,
3122,
8072,
28295,
10987,
4505,
2593,
1738,
187,
187,
3122,
22929,
28295,
15226,
5475,
23074,
2593,
1738,
996,
186,
40848,
4280,
38,
39855,
35,
5388,
1549,
37,
361,
25716,
25,
35,
361,
3476,
28295,
15226,
5475,
23074,
1738,
426,
551,
988,
186,
8901,
426,
28295,
15226,
5475,
23074,
28,
988,
186,
13299,
11688,
267,
426,
40175,
4280,
38,
21,
34,
18,
35,
5388,
1549,
37,
361,
25716,
25,
35,
361,
3476,
8049,
1789,
1738,
28,
988,
186,
26520,
2548,
426,
337,
28,
988,
186,
28213,
18590,
1838,
2776,
426,
40175,
4280,
38,
48219,
35,
5388,
1549,
37,
361,
25716,
25,
35,
361,
28,
988,
186,
28213,
6074,
426,
12121,
18938,
28,
996,
186,
4718,
187,
3122,
8072,
28295,
15226,
5475,
23074,
2593,
1738,
187,
187,
3122,
22929,
28295,
4505,
12905,
2593,
1738,
996,
186,
40848,
4280,
38,
22,
2405,
35,
5388,
1549,
37,
361,
25716,
25,
35,
361,
3476,
12121,
18938,
15,
13149,
1738,
426,
551,
8901,
426,
28295,
4505,
12905,
28,
6843,
48632,
426,
27436,
15,
13149,
28,
2486,
688,
6060,
426,
470,
28,
1854,
426,
12121,
18938,
15,
13149,
28,
2603,
14444,
426,
26564,
3077,
53,
64,
3175,
14647,
33949,
64,
13266,
28,
7734,
996,
186,
40848,
4280,
38,
37644,
35,
5388,
1549,
37,
361,
25716,
25,
35,
361,
3476,
28730,
15,
45890,
1738,
426,
551,
8901,
426,
28295,
4505,
12905,
28,
1390,
33931,
48632,
426,
2505,
15,
45890,
15,
7229,
28,
1854,
426,
28730,
15,
45890,
28,
2603,
14444,
426,
16375,
4399,
27988,
7734,
996,
186,
40848,
4280,
38,
22,
38,
18,
35,
5388,
1549,
37,
361,
25716,
25,
35,
361,
3476,
12121,
18938,
26943,
15,
89,
291,
383,
1738,
426,
551,
8901,
426,
28295,
4505,
12905,
28,
6843,
48632,
426,
27436,
15,
7836,
30310,
28,
2486,
688,
6060,
426,
470,
28,
1854,
426,
12121,
18938,
26943,
15,
89,
291,
383,
28,
2603,
14444,
426,
26564,
3077,
53,
64,
3175,
14647,
33949,
64,
13266,
28,
7734,
996,
186,
40848,
4280,
38,
33976,
35,
5388,
1549,
37,
361,
25716,
25,
35,
361,
3476,
28730,
15,
45890,
1738,
426,
551,
8901,
426,
28295,
4505,
12905,
28,
1390,
33931,
48632,
426,
2505,
15,
45890,
15,
7229,
28,
1854,
426,
28730,
15,
45890,
28,
2603,
14444,
426,
16375,
4399,
27988,
7734,
996,
186,
40848,
4280,
38,
33297,
35,
5388,
1549,
37,
361,
25716,
25,
35,
361,
3476,
12121,
18938,
26943,
15,
36036,
1738,
426,
551,
8901,
426,
28295,
4505,
12905,
28,
1390,
33931,
48632,
426,
2603,
3211,
15,
36036,
28,
1854,
426,
12121,
18938,
26943,
15,
36036,
28,
2603,
14444,
426,
16375,
4399,
27988,
7734,
996,
186,
40848,
4280,
38,
23,
39,
18,
35,
5388,
23,
25716,
361,
25716,
25,
35,
361,
3476,
12121,
18938,
15,
36036,
1738,
426,
551,
8901,
426,
28295,
4505,
12905,
28,
1873,
25396,
426,
577,
28,
1390,
33931,
48632,
426,
2603,
3211,
15,
36036,
28,
1854,
426,
12121,
18938,
15,
36036,
28,
2603,
14444,
426,
16375,
4399,
27988,
7734,
996,
186,
40848,
4280,
38,
42940,
35,
5388,
23,
25716,
361,
25716,
25,
35,
361,
3476,
530,
1864,
49229,
12,
9019,
18938,
15,
36036,
1738,
426,
551,
8901,
426,
28295,
4505,
12905,
28,
1873,
25396,
426,
577,
28,
1390,
33931,
48632,
426,
2603,
3211,
15,
36036,
28,
1854,
426,
346,
45717,
49229,
12,
9019,
18938,
15,
36036,
3664,
2603,
14444,
426,
16375,
4399,
27988,
7734,
996,
186,
40848,
4280,
38,
47608,
35,
5388,
23,
25716,
361,
25716,
25,
35,
361,
3476,
530,
2431,
383,
459,
44349,
6081,
12,
9019,
18938,
15,
36036,
1738,
426,
551,
8901,
426,
28295,
4505,
12905,
28,
1873,
25396,
426,
577,
28,
1390,
33931,
48632,
426,
2603,
3211,
15,
36036,
28,
1854,
426,
346,
54,
2431,
383,
459,
44349,
6081,
12,
9019,
18938,
15,
36036,
3664,
2603,
14444,
426,
16375,
4399,
27988,
7734,
996,
186,
3547,
2925,
20,
39,
3717,
18,
37,
9726,
37,
2358,
8972,
34,
1540,
883,
3476,
530,
5472,
274,
8880,
5475,
12,
9019,
18938,
15,
36036,
1738,
426,
551,
8901,
426,
28295,
4505,
12905,
28,
1873,
25396,
426,
577,
28,
1390,
33931,
48632,
426,
2603,
3211,
15,
36036,
28,
1854,
426,
346,
54,
5472,
274,
8880,
5475,
12,
9019,
18938,
15,
36036,
3664,
2603,
14444,
426,
16375,
4399,
27988,
7734,
187,
3122,
8072,
28295,
4505,
12905,
2593,
1738,
187,
187,
3122,
22929,
28295,
9270,
4896,
10987,
30335,
2593,
1738,
996,
186,
40848,
4280,
38,
21,
39,
18,
35,
5388,
1549,
37,
361,
25716,
25,
35,
361,
3476,
17780,
4896,
1738,
426,
551,
988,
186,
8901,
426,
28295,
9270,
4896,
10987,
30335,
28,
988,
186,
7973,
9019,
17031,
426,
374,
14555,
2385,
23100,
24,
28,
988,
186,
11242,
426,
313,
988,
186,
558,
988,
186,
6321,
11564,
2214,
3848,
27378,
8983,
21678,
426,
470,
28,
996,
186,
4718,
996,
186,
40848,
4280,
38,
22,
35,
18,
35,
5388,
1549,
37,
361,
25716,
25,
35,
361,
3476,
17780,
4896,
1738,
426,
551,
988,
186,
8901,
426,
28295,
9270,
4896,
10987,
30335,
28,
988,
186,
7973,
9019,
17031,
426,
374,
14555,
2385,
23100,
24,
28,
988,
186,
11242,
426,
313,
2657,
186,
40848,
4280,
38,
22,
39,
18,
35,
5388,
1549,
37,
361,
25716,
25,
35,
361,
3476,
12121,
18938,
15,
13149,
275,
17780,
4896,
33701,
988,
186,
558,
988,
186,
6321,
11564,
2214,
3848,
27378,
8983,
21678,
426,
470,
28,
996,
186,
4718,
187,
3122,
8072,
28295,
9270,
4896,
10987,
30335,
2593,
1738,
187,
187,
3122,
22929,
28295,
6998,
2593,
1738,
996,
186,
40848,
4280,
38,
36458,
35,
5388,
1549,
37,
361,
25716,
25,
35,
361,
426,
551,
988,
186,
8901,
426,
28295,
6998,
28,
988,
186,
13863,
426,
313,
2657,
186,
40848,
4280,
38,
41227,
35,
5388,
1549,
37,
361,
25716,
25,
35,
361,
3476,
12121,
18938,
33701,
2657,
186,
40848,
4280,
38,
23,
1797,
35,
5388,
1549,
37,
361,
25716,
25,
35,
361,
3476,
12121,
18938,
26943,
33701,
2657,
186,
40848,
4280,
38,
22,
3156,
35,
5388,
1549,
37,
361,
25716,
25,
35,
361,
3476,
23910,
33701,
988,
186,
558,
988,
186,
6756,
14444,
426,
16375,
4399,
27988,
996,
186,
4718,
996,
186,
40848,
4280,
38,
22,
3156,
35,
5388,
1549,
37,
361,
25716,
25,
35,
361,
3476,
23910,
1738,
426,
551,
988,
186,
8901,
426,
28295,
6998,
28,
988,
186,
13863,
426,
313,
2657,
186,
40848,
4280,
38,
22,
2405,
35,
5388,
1549,
37,
361,
25716,
25,
35,
361,
3476,
12121,
18938,
15,
13149,
33701,
2657,
186,
40848,
4280,
38,
22,
38,
18,
35,
5388,
1549,
37,
361,
25716,
25,
35,
361,
3476,
12121,
18938,
26943,
15,
89,
291,
383,
33701,
988,
186,
558,
988,
186,
1590,
426,
23910,
28,
988,
186,
6756,
14444,
426,
16375,
4399,
27988,
996,
186,
4718,
996,
186,
40848,
4280,
38,
41227,
35,
5388,
1549,
37,
361,
25716,
25,
35,
361,
3476,
12121,
18938,
1738,
426,
551,
988,
186,
8901,
426,
28295,
6998,
28,
988,
186,
13863,
426,
313,
2657,
186,
40848,
4280,
38,
23,
39,
18,
35,
5388,
23,
25716,
361,
25716,
25,
35,
361,
3476,
12121,
18938,
15,
36036,
33701,
2657,
186,
40848,
4280,
38,
42940,
35,
5388,
23,
25716,
361,
25716,
25,
35,
361,
3476,
530,
1864,
49229,
12,
9019,
18938,
15,
36036,
33701,
2657,
186,
40848,
4280,
38,
47608,
35,
5388,
23,
25716,
361,
25716,
25,
35,
361,
3476,
530,
2431,
383,
459,
44349,
6081,
12,
9019,
18938,
15,
36036,
33701,
2657,
186,
3547,
2925,
20,
39,
3717,
18,
37,
9726,
37,
2358,
8972,
34,
1540,
883,
3476,
530,
5472,
274,
8880,
5475,
12,
9019,
18938,
15,
36036,
33701,
2657,
186,
40848,
4280,
38,
41081,
35,
5388,
1549,
37,
361,
25716,
25,
35,
361,
3476,
34325,
23895,
33701,
988,
186,
558,
988,
186,
3967,
426,
12121,
18938,
28,
988,
186,
6756,
14444,
426,
16375,
4399,
27988,
996,
186,
4718,
996,
186,
40848,
4280,
38,
41081,
35,
5388,
1549,
37,
361,
25716,
25,
35,
361,
3476,
34325,
23895,
1738,
426,
551,
988,
186,
8901,
426,
28295,
6998,
28,
988,
186,
13863,
426,
313,
2657,
186,
40848,
4280,
38,
37644,
35,
5388,
1549,
37,
361,
25716,
25,
35,
361,
3476,
28730,
15,
45890,
33701,
988,
186,
558,
988,
186,
1590,
426,
346,
33327,
23895,
3664,
988,
186,
6756,
14444,
426,
16375,
4399,
27988,
996,
186,
4718,
996,
186,
40848,
4280,
38,
23,
1797,
35,
5388,
1549,
37,
361,
25716,
25,
35,
361,
3476,
12121,
18938,
26943,
1738,
426,
551,
988,
186,
8901,
426,
28295,
6998,
28,
988,
186,
13863,
426,
313,
2657,
186,
40848,
4280,
38,
33297,
35,
5388,
1549,
37,
361,
25716,
25,
35,
361,
3476,
12121,
18938,
26943,
15,
36036,
33701,
2657,
186,
40848,
4280,
38,
23,
2405,
35,
5388,
1549,
37,
361,
25716,
25,
35,
361,
3476,
34325,
23895,
33701,
988,
186,
558,
988,
186,
3967,
426,
12121,
18938,
26943,
28,
988,
186,
6756,
14444,
426,
16375,
4399,
27988,
996,
186,
4718,
996,
186,
40848,
4280,
38,
23,
2405,
35,
5388,
1549,
37,
361,
25716,
25,
35,
361,
3476,
34325,
23895,
1738,
426,
551,
988,
186,
8901,
426,
28295,
6998,
28,
988,
186,
13863,
426,
313,
2657,
186,
40848,
4280,
38,
33976,
35,
5388,
1549,
37,
361,
25716,
25,
35,
361,
3476,
28730,
15,
45890,
33701,
988,
186,
558,
988,
186,
1590,
426,
346,
33327,
23895,
3664,
988,
186,
6756,
14444,
426,
16375,
4399,
27988,
996,
186,
4718,
187,
3122,
8072,
28295,
6998,
2593,
1738,
187,
187,
3122,
22929,
28295,
31163,
10987,
30335,
2593,
1738,
996,
186,
40848,
4280,
38,
32689,
35,
5388,
1549,
37,
361,
25716,
25,
35,
361,
3476,
12318,
398,
1738,
426,
551,
988,
186,
8901,
426,
28295,
31163,
10987,
30335,
28,
988,
186,
7973,
9019,
17031,
426,
374,
14555,
2385,
23100,
24,
28,
988,
186,
11242,
426,
313,
988,
186,
558,
988,
186,
6321,
11564,
2214,
3848,
27378,
8983,
21678,
426,
470,
28,
996,
186,
4718,
187,
3122,
8072,
28295,
31163,
10987,
30335,
2593,
1738,
187,
187,
3122,
22929,
28295,
21408,
12168,
2593,
1738,
996,
186,
40848,
4280,
38,
48219,
35,
5388,
1549,
37,
361,
25716,
25,
35,
361,
3476,
12121,
18938,
1738,
426,
551,
988,
186,
8901,
426,
28295,
21408,
12168,
28,
988,
186,
7973,
11909,
2765,
426,
40175,
4280,
38,
35356,
35,
5388,
1549,
37,
361,
25716,
25,
35,
361,
3476,
11103,
6661,
1618,
323,
28295,
21408,
12168,
346,
9019,
18938,
3,
1738,
28,
988,
186,
7973,
2641,
1169,
426,
313,
2657,
186,
40848,
4280,
38,
21,
38,
18,
35,
5388,
1549,
37,
361,
25716,
25,
35,
361,
3476,
34734,
33701,
2657,
186,
40848,
4280,
38,
21,
39,
18,
35,
5388,
1549,
37,
361,
25716,
25,
35,
361,
3476,
17780,
4896,
33701,
2657,
186,
40848,
4280,
38,
32689,
35,
5388,
1549,
37,
361,
25716,
25,
35,
361,
3476,
12318,
398,
33701,
2657,
186,
40848,
4280,
38,
39849,
35,
5388,
1549,
37,
361,
25716,
25,
35,
361,
3476,
19242,
33701,
988,
186,
558,
988,
186,
7973,
31980,
426,
313,
988,
186,
558,
988,
186,
36379,
426,
313,
988,
186,
558,
988,
186,
1590,
426,
12121,
18938,
28,
988,
186,
7509,
2402,
426,
12121,
18938,
28,
988,
186,
7509,
12905,
426,
40175,
4280,
38,
22,
2405,
35,
5388,
1549,
37,
361,
25716,
25,
35,
361,
3476,
12121,
18938,
15,
13149,
1738,
28,
988,
186,
7509,
2548,
426,
346,
681,
15,
19934,
15,
7509,
14,
881,
15,
13149,
3664,
996,
186,
4718,
996,
186,
40848,
4280,
38,
22,
37,
18,
35,
5388,
1549,
37,
361,
25716,
25,
35,
361,
3476,
12121,
18938,
26943,
1738,
426,
551,
988,
186,
8901,
426,
28295,
21408,
12168,
28,
988,
186,
7973,
11909,
2765,
426,
40175,
4280,
38,
23,
36,
18,
35,
5388,
1549,
37,
361,
25716,
25,
35,
361,
3476,
11103,
6661,
1618,
323,
28295,
21408,
12168,
346,
9019,
18938,
26943,
3,
1738,
28,
988,
186,
7973,
2641,
1169,
426,
313,
2657,
186,
40848,
4280,
38,
22,
34,
18,
35,
5388,
1549,
37,
361,
25716,
25,
35,
361,
3476,
34734,
33701,
2657,
186,
40848,
4280,
38,
22,
35,
18,
35,
5388,
1549,
37,
361,
25716,
25,
35,
361,
3476,
17780,
4896,
33701,
2657,
186,
40848,
4280,
38,
22,
36,
18,
35,
5388,
1549,
37,
361,
25716,
25,
35,
361,
3476,
19242,
33701,
988,
186,
558,
988,
186,
7973,
31980,
426,
313,
988,
186,
558,
988,
186,
36379,
426,
313,
2657,
186,
40848,
4280,
38,
45759,
35,
5388,
1549,
37,
361,
25716,
25,
35,
361,
3476,
28295,
12168,
45864,
33701,
988,
186,
558,
988,
186,
1590,
426,
12121,
18938,
26943,
28,
988,
186,
7509,
2402,
426,
12121,
18938,
26943,
28,
988,
186,
7509,
12905,
426,
40175,
4280,
38,
22,
38,
18,
35,
5388,
1549,
37,
361,
25716,
25,
35,
361,
3476,
12121,
18938,
26943,
15,
89,
291,
383,
1738,
28,
988,
186,
7509,
2548,
426,
346,
681,
15,
19934,
15,
7509,
14,
881,
15,
30310,
15,
8522,
14,
2566,
3664,
996,
186,
4718,
187,
3122,
8072,
28295,
21408,
12168,
2593,
1738,
187,
187,
3122,
22929,
28295,
11695,
2593,
1738,
996,
186,
40848,
4280,
38,
21,
34,
18,
35,
5388,
1549,
37,
361,
25716,
25,
35,
361,
3476,
8049,
1789,
1738,
426,
551,
988,
186,
8901,
426,
28295,
11695,
28,
988,
186,
26059,
426,
551,
2657,
186,
8693,
44756,
46,
15037,
426,
470,
14744,
28,
2657,
186,
8693,
44756,
11241,
9063,
426,
470,
14744,
28,
2657,
186,
8693,
5683,
7698,
9063,
426,
884,
1229,
28,
2657,
186,
1372,
39845,
18769,
6570,
9536,
426,
12121,
18938,
28,
2657,
186,
12168,
23372,
426,
551,
2664,
186,
40848,
4280,
38,
48219,
35,
5388,
1549,
37,
361,
25716,
25,
35,
361,
426,
551,
7308,
186,
32331,
2374,
32953,
8893,
426,
721,
15,
21,
28,
7308,
186,
8693,
44756,
46,
15037,
426,
15630,
361,
28,
2664,
186,
4718,
2664,
186,
40848,
4280,
38,
22,
37,
18,
35,
5388,
1549,
37,
361,
25716,
25,
35,
361,
426,
551,
7308,
186,
32331,
2374,
32953,
8893,
426,
721,
15,
21,
28,
7308,
186,
8693,
44756,
46,
15037,
426,
15630,
361,
28,
7308,
186,
8693,
44756,
46,
15037,
426,
1903,
740,
28,
2664,
186,
4718,
2657,
186,
4718,
988,
186,
4718,
988,
186,
7973,
11909,
2765,
426,
40175,
4280,
38,
21,
37,
18,
35,
5388,
1549,
37,
361,
25716,
25,
35,
361,
3476,
11103,
6661,
1618,
323,
28295,
11695,
346,
9019,
18938,
3,
1738,
28,
988,
186,
38659,
2322,
8893,
426,
346,
57,
3211,
495,
15,
19,
3664,
988,
186,
27055,
26330,
426,
546,
28,
988,
186,
7110,
4316,
5442,
2214,
13502,
351,
723,
426,
470,
28,
988,
186,
4304,
5785,
621,
426,
313,
2657,
186,
257,
13,
2657,
186,
8932,
13,
988,
186,
558,
988,
186,
7265,
6998,
426,
40175,
4280,
38,
36458,
35,
5388,
1549,
37,
361,
25716,
25,
35,
361,
28,
988,
186,
7509,
7676,
6998,
426,
40175,
4280,
38,
22,
3156,
35,
5388,
1549,
37,
361,
25716,
25,
35,
361,
3476,
23910,
1738,
28,
988,
186,
10408,
13694,
5455,
426,
29707,
988,
186,
10408,
16560,
426,
29707,
988,
186,
48413,
426,
313,
2657,
186,
40848,
4280,
38,
48219,
35,
5388,
1549,
37,
361,
25716,
25,
35,
361,
3476,
12121,
18938,
33701,
2657,
186,
40848,
4280,
38,
22,
37,
18,
35,
5388,
1549,
37,
361,
25716,
25,
35,
361,
3476,
12121,
18938,
26943,
33701,
988,
186,
558,
996,
186,
4718,
187,
3122,
8072,
28295,
11695,
2593,
1738,
187,
187,
3122,
22929,
28295,
22804,
10987,
30335,
2593,
1738,
996,
186,
40848,
4280,
38,
39849,
35,
5388,
1549,
37,
361,
25716,
25,
35,
361,
3476,
19242,
1738,
426,
551,
988,
186,
8901,
426,
28295,
22804,
10987,
30335,
28,
988,
186,
7973,
9019,
17031,
426,
374,
14555,
2385,
23100,
24,
28,
988,
186,
11242,
426,
313,
988,
186,
558,
988,
186,
6321,
11564,
2214,
3848,
27378,
8983,
21678,
426,
470,
28,
996,
186,
4718,
996,
186,
40848,
4280,
38,
22,
36,
18,
35,
5388,
1549,
37,
361,
25716,
25,
35,
361,
3476,
19242,
1738,
426,
551,
988,
186,
8901,
426,
28295,
22804,
10987,
30335,
28,
988,
186,
7973,
9019,
17031,
426,
374,
14555,
2385,
23100,
24,
28,
988,
186,
11242,
426,
313,
988,
186,
558,
988,
186,
6321,
11564,
2214,
3848,
27378,
8983,
21678,
426,
470,
28,
996,
186,
4718,
187,
3122,
8072,
28295,
22804,
10987,
30335,
2593,
1738,
187,
187,
3122,
22929,
28295,
28752,
10987,
30335,
2593,
1738,
996,
186,
40848,
4280,
38,
21,
38,
18,
35,
5388,
1549,
37,
361,
25716,
25,
35,
361,
3476,
34734,
1738,
426,
551,
988,
186,
8901,
426,
28295,
28752,
10987,
30335,
28,
988,
186,
7973,
9019,
17031,
426,
374,
14555,
2385,
23100,
24,
28,
988,
186,
11242,
426,
313,
2657,
186,
40848,
4280,
38,
24,
2405,
35,
5388,
23,
25716,
361,
25716,
25,
35,
361,
3476,
530,
1864,
49229,
12,
9019,
18938,
15,
36036,
275,
34734,
33701,
2657,
186,
3547,
2925,
20,
39,
4339,
18,
37,
9726,
37,
2358,
8972,
34,
1540,
883,
3476,
530,
5472,
274,
8880,
5475,
12,
9019,
18938,
15,
36036,
275,
34734,
33701,
2657,
186,
40848,
4280,
38,
24,
3156,
35,
5388,
23,
25716,
361,
25716,
25,
35,
361,
3476,
530,
2431,
383,
459,
44349,
6081,
12,
9019,
18938,
15,
36036,
275,
34734,
33701,
2657,
186,
40848,
4280,
38,
24,
1797,
35,
5388,
23,
25716,
361,
25716,
25,
35,
361,
3476,
12121,
18938,
15,
36036,
275,
34734,
33701,
988,
186,
558,
988,
186,
6321,
11564,
2214,
3848,
27378,
8983,
21678,
426,
470,
28,
996,
186,
4718,
996,
186,
40848,
4280,
38,
22,
34,
18,
35,
5388,
1549,
37,
361,
25716,
25,
35,
361,
3476,
34734,
1738,
426,
551,
988,
186,
8901,
426,
28295,
28752,
10987,
30335,
28,
988,
186,
7973,
9019,
17031,
426,
374,
14555,
2385,
23100,
24,
28,
988,
186,
11242,
426,
313,
2657,
186,
40848,
4280,
38,
36630,
35,
5388,
1549,
37,
361,
25716,
25,
35,
361,
3476,
12121,
18938,
26943,
15,
36036,
275,
34734,
33701,
988,
186,
558,
988,
186,
6321,
11564,
2214,
3848,
27378,
8983,
21678,
426,
470,
28,
996,
186,
4718,
187,
3122,
8072,
28295,
28752,
10987,
30335,
2593,
1738,
187,
187,
3122,
22929,
28295,
12168,
45864,
2593,
1738,
996,
186,
40848,
4280,
38,
45759,
35,
5388,
1549,
37,
361,
25716,
25,
35,
361,
3476,
28295,
12168,
45864,
1738,
426,
551,
988,
186,
8901,
426,
28295,
12168,
45864,
28,
988,
186,
7831,
426,
40175,
4280,
38,
48219,
35,
5388,
1549,
37,
361,
25716,
25,
35,
361,
3476,
12121,
18938,
1738,
28,
988,
186,
7831,
23074,
426,
40175,
4280,
38,
39855,
35,
5388,
1549,
37,
361,
25716,
25,
35,
361,
3476,
28295,
15226,
5475,
23074,
1738,
28,
996,
186,
4718,
187,
3122,
8072,
28295,
12168,
45864,
2593,
1738,
187,
187,
3122,
22929,
1594,
36,
10987,
11909,
2593,
1738,
996,
186,
40848,
4280,
38,
35276,
35,
5388,
1549,
37,
361,
25716,
25,
35,
361,
3476,
26073,
1738,
426,
551,
988,
186,
8901,
426,
1594,
36,
10987,
11909,
28,
988,
186,
7973,
16704,
426,
551,
2657,
186,
1556,
46651,
64,
2354,
20756,
64,
23131,
64,
38925,
8282,
426,
7651,
28,
2657,
186,
3207,
14375,
64,
32814,
64,
26980,
4641,
1410,
426,
22487,
28,
2657,
186,
3207,
14375,
64,
32814,
64,
9324,
32318,
64,
28077,
426,
22487,
28,
2657,
186,
3207,
14375,
64,
24798,
64,
28291,
64,
20027,
53,
10860,
64,
32364,
11156,
1843,
1719,
2637,
426,
22487,
28,
2657,
186,
3207,
14375,
64,
24798,
64,
30529,
64,
5707,
17037,
426,
22487,
28,
2657,
186,
3207,
14375,
64,
24798,
64,
9507,
3788,
426,
22487,
28,
2657,
186,
3207,
14375,
64,
24798,
64,
31700,
5656,
64,
5707,
17037,
426,
22487,
28,
2657,
186,
3207,
14375,
64,
24798,
64,
2573,
14364,
36,
11657,
64,
9324,
32318,
64,
2894,
20982,
10634,
32663,
426,
22487,
28,
2657,
186,
3207,
14375,
64,
24798,
64,
31577,
64,
9324,
32318,
64,
12988,
64,
3016,
7669,
426,
22487,
64,
12641,
28,
2657,
186,
3207,
14375,
64,
24798,
64,
47913,
58,
64,
35,
35867,
426,
22487,
28,
2657,
186,
3207,
14375,
64,
24798,
64,
1400,
5529,
64,
5707,
17037,
426,
22487,
28,
2657,
186,
3207,
14375,
64,
24798,
64,
1042,
29003,
12752,
64,
1848,
26336,
52,
2449,
426,
22487,
28,
2657,
186,
3207,
14375,
64,
24798,
64,
7999,
64,
5707,
17037,
426,
22487,
28,
2657,
186,
3207,
14375,
64,
24798,
64,
34656,
64,
45,
25419,
1556,
64,
15522,
64,
5707,
17037,
426,
22487,
28,
2657,
186,
3207,
14375,
64,
24798,
64,
9324,
32318,
64,
2894,
3859,
1864,
1433,
64,
1848,
41603,
64,
2354,
19546,
426,
22487,
28,
2657,
186,
3207,
14375,
64,
24798,
64,
9324,
32318,
64,
45,
25419,
1556,
64,
5707,
17037,
426,
22487,
28,
2657,
186,
3207,
14375,
64,
24798,
64,
9324,
32318,
64,
34101,
64,
25734,
426,
22487,
64,
12641,
28,
2657,
186,
3207,
14375,
64,
24798,
64,
51,
25876,
64,
8372,
2795,
64,
34,
21686,
6328,
1830,
426,
22487,
28,
2657,
186,
3207,
14375,
64,
24798,
64,
1267,
29237,
64,
39129,
2415,
15575,
1410,
426,
22487,
28,
2657,
186,
3207,
14375,
64,
24798,
64,
52,
49743,
1864,
42,
27832,
64,
46,
19252,
426,
22487,
28,
2657,
186,
3207,
14375,
64,
24798,
64,
4037,
1848,
16319,
8908,
64,
16699,
426,
22487,
28,
2657,
186,
3207,
14375,
64,
24798,
876,
28893,
3859,
1864,
4966,
64,
32781,
64,
45293,
426,
22487,
28,
2657,
186,
3,
16699,
64,
52,
13003,
64,
25788,
7400,
60,
30872,
30,
16372,
531,
375,
11,
9336,
426,
346,
40887,
37305,
3664,
2657,
186,
49617,
64,
6663,
9434,
64,
9639,
3123,
426,
7651,
28,
2657,
186,
50219,
64,
20371,
19290,
64,
17037,
426,
337,
28,
2657,
186,
18828,
64,
1042,
43155,
64,
31447,
426,
346,
69,
49041,
14,
3113,
14,
1397,
1105,
3664,
2657,
186,
32814,
64,
1267,
29237,
64,
9324,
32318,
64,
3338,
10339,
8112,
426,
22487,
28,
2657,
186,
32814,
64,
14524,
13845,
426,
22487,
28,
2657,
186,
26173,
64,
32201,
28997,
1864,
64,
7716,
64,
49,
1864,
426,
7651,
28,
2657,
186,
26173,
64,
7716,
64,
9507,
22362,
64,
28291,
52,
426,
22487,
28,
2657,
186,
26173,
64,
18904,
2894,
18769,
6570,
64,
36868,
426,
470,
28,
2657,
186,
26173,
64,
14364,
28389,
5479,
1372,
64,
49175,
13190,
52,
426,
313,
2664,
186,
3,
18828,
30,
18,
995,
2664,
186,
3,
6999,
27040,
959,
22719,
2657,
186,
558,
2657,
186,
26173,
64,
47788,
52,
64,
3175,
44882,
64,
4237,
46811,
426,
7651,
28,
2657,
186,
26173,
64,
24798,
64,
1540,
64,
7058,
64,
1237,
64,
14609,
64,
5707,
17037,
426,
22487,
28,
2657,
186,
26173,
64,
24798,
64,
2925,
7310,
64,
43501,
64,
10560,
426,
22487,
64,
12641,
28,
2657,
186,
26173,
64,
24798,
64,
4037,
27588,
1277,
1703,
64,
12995,
1372,
426,
22487,
28,
2657,
186,
26173,
64,
24798,
64,
4037,
25844,
13859,
18769,
1703,
64,
32364,
2697,
426,
22487,
64,
2696,
6217,
5479,
11477,
28,
2657,
186,
26173,
64,
24798,
64,
4037,
28477,
64,
30306,
426,
22487,
28,
2657,
186,
26173,
64,
24798,
64,
4037,
28477,
64,
26205,
42,
8908,
426,
22487,
28,
2657,
186,
3123,
41,
11147,
2697,
64,
2573,
3859,
36615,
10634,
64,
31613,
426,
854,
15,
17,
28,
2657,
186,
6229,
45,
64,
32814,
64,
18828,
64,
16615,
426,
22487,
28,
2657,
186,
41889,
64,
11645,
11477,
64,
20756,
426,
22487,
28,
2657,
186,
45007,
34101,
426,
13997,
73,
531,
375,
28,
2657,
186,
13753,
14976,
64,
18904,
2894,
18769,
6570,
64,
36868,
426,
19479,
2374,
531,
3664,
2657,
186,
31613,
1703,
64,
28663,
64,
39,
2300,
37784,
426,
346,
18,
13,
19,
3664,
2657,
186,
17037,
2637,
64,
47146,
426,
346,
19934,
14,
27256,
3664,
2657,
186,
17037,
64,
16615,
64,
41464,
426,
29707,
988,
186,
4718,
988,
186,
1590,
426,
26073,
28,
996,
186,
4718,
996,
186,
40848,
4280,
38,
33304,
35,
5388,
1549,
37,
361,
25716,
25,
35,
361,
3476,
20002,
1738,
426,
551,
988,
186,
8901,
426,
1594,
36,
10987,
11909,
28,
988,
186,
7973,
16704,
426,
551,
2657,
186,
1556,
46651,
64,
2354,
20756,
64,
23131,
64,
38925,
8282,
426,
7651,
28,
2657,
186,
3207,
14375,
64,
32814,
64,
26980,
4641,
1410,
426,
22487,
28,
2657,
186,
3207,
14375,
64,
32814,
64,
9324,
32318,
64,
28077,
426,
22487,
28,
2657,
186,
3207,
14375,
64,
24798,
64,
28291,
64,
20027,
53,
10860,
64,
32364,
11156,
1843,
1719,
2637,
426,
22487,
28,
2657,
186,
3207,
14375,
64,
24798,
64,
30529,
64,
5707,
17037,
426,
22487,
28,
2657,
186,
3207,
14375,
64,
24798,
64,
9507,
3788,
426,
22487,
28,
2657,
186,
3207,
14375,
64,
24798,
64,
31700,
5656,
64,
5707,
17037,
426,
22487,
28,
2657,
186,
3207,
14375,
64,
24798,
64,
2573,
14364,
36,
11657,
64,
9324,
32318,
64,
2894,
20982,
10634,
32663,
426,
22487,
28,
2657,
186,
3207,
14375,
64,
24798,
64,
31577,
64,
9324,
32318,
64,
12988,
64,
3016,
7669,
426,
22487,
64,
12641,
28,
2657,
186,
3207,
14375,
64,
24798,
64,
47913,
58,
64,
35,
35867,
426,
22487,
28,
2657,
186,
3207,
14375,
64,
24798,
64,
1400,
5529,
64,
5707,
17037,
426,
22487,
28,
2657,
186,
3207,
14375,
64,
24798,
64,
1042,
29003,
12752,
64,
1848,
26336,
52,
2449,
426,
22487,
28,
2657,
186,
3207,
14375,
64,
24798,
64,
7999,
64,
5707,
17037,
426,
22487,
28,
2657,
186,
3207,
14375,
64,
24798,
64,
34656,
64,
45,
25419,
1556,
64,
15522,
64,
5707,
17037,
426,
22487,
28,
2657,
186,
3207,
14375,
64,
24798,
64,
9324,
32318,
64,
2894,
3859,
1864,
1433,
64,
1848,
41603,
64,
2354,
19546,
426,
22487,
28,
2657,
186,
3207,
14375,
64,
24798,
64,
9324,
32318,
64,
45,
25419,
1556,
64,
5707,
17037,
426,
22487,
28,
2657,
186,
3207,
14375,
64,
24798,
64,
9324,
32318,
64,
34101,
64,
25734,
426,
22487,
64,
12641,
28,
2657,
186,
3207,
14375,
64,
24798,
64,
51,
25876,
64,
8372,
2795,
64,
34,
21686,
6328,
1830,
426,
22487,
28,
2657,
186,
3207,
14375,
64,
24798,
64,
1267,
29237,
64,
39129,
2415,
15575,
1410,
426,
22487,
28,
2657,
186,
3207,
14375,
64,
24798,
64,
52,
49743,
1864,
42,
27832,
64,
46,
19252,
426,
22487,
28,
2657,
186,
3207,
14375,
64,
24798,
64,
4037,
1848,
16319,
8908,
64,
16699,
426,
22487,
28,
2657,
186,
3207,
14375,
64,
24798,
876,
28893,
3859,
1864,
4966,
64,
32781,
64,
45293,
426,
22487,
28,
2657,
186,
3,
16699,
64,
52,
13003,
64,
25788,
7400,
60,
30872,
30,
16372,
531,
375,
11,
9336,
426,
346,
40887,
37305,
3664,
2657,
186,
49617,
64,
6663,
9434,
64,
9639,
3123,
426,
7651,
28,
2657,
186,
50219,
64,
20371,
19290,
64,
17037,
426,
337,
28,
2657,
186,
18828,
64,
1042,
43155,
64,
31447,
426,
346,
69,
49041,
14,
3113,
14,
1397,
1105,
3664,
2657,
186,
32814,
64,
4883,
64,
25202,
21109,
426,
7651,
28,
2657,
186,
32814,
64,
1267,
29237,
64,
9324,
32318,
64,
3338,
10339,
8112,
426,
22487,
28,
2657,
186,
26173,
64,
7716,
64,
9507,
22362,
64,
28291,
52,
426,
22487,
28,
2657,
186,
26173,
64,
24798,
64,
1540,
64,
7058,
64,
1237,
64,
14609,
64,
5707,
17037,
426,
22487,
28,
2657,
186,
26173,
64,
24798,
64,
2925,
7310,
64,
43501,
64,
10560,
426,
22487,
64,
12641,
28,
2657,
186,
26173,
64,
24798,
64,
4037,
27588,
1277,
1703,
64,
12995,
1372,
426,
22487,
28,
2657,
186,
26173,
64,
24798,
64,
4037,
25844,
13859,
18769,
1703,
64,
32364,
2697,
426,
22487,
64,
2696,
6217,
5479,
11477,
28,
2657,
186,
26173,
64,
24798,
64,
4037,
28477,
64,
30306,
426,
22487,
28,
2657,
186,
26173,
64,
24798,
64,
4037,
28477,
64,
26205,
42,
8908,
426,
22487,
28,
2657,
186,
3123,
41,
11147,
2697,
64,
2573,
3859,
36615,
10634,
64,
31613,
426,
854,
15,
17,
28,
2657,
186,
6229,
45,
64,
32814,
64,
18828,
64,
16615,
426,
7651,
28,
2657,
186,
45007,
34101,
426,
13997,
73,
531,
375,
28,
2657,
186,
13753,
14976,
64,
18904,
2894,
18769,
6570,
64,
36868,
426,
19479,
48,
40338,
8640,
3664,
2657,
186,
31613,
1703,
64,
28663,
64,
39,
2300,
37784,
426,
346,
18,
13,
19,
3664,
2657,
186,
46330,
4966,
64,
3175,
47965,
426,
22487,
28,
2657,
186,
17037,
2637,
64,
47146,
426,
346,
19934,
14,
27256,
3664,
2657,
186,
17037,
64,
16615,
64,
41464,
426,
29707,
988,
186,
4718,
988,
186,
1590,
426,
20002,
28,
996,
186,
4718,
996,
186,
40848,
4280,
38,
23,
34,
18,
35,
5388,
1549,
37,
361,
25716,
25,
35,
361,
3476,
26073,
1738,
426,
551,
988,
186,
8901,
426,
1594,
36,
10987,
11909,
28,
988,
186,
7973,
16704,
426,
551,
2657,
186,
3207,
14375,
64,
32814,
64,
26980,
4641,
1410,
426,
22487,
28,
2657,
186,
3,
16699,
64,
52,
13003,
64,
25788,
7400,
60,
30872,
30,
16372,
531,
375,
11,
9336,
426,
29707,
2657,
186,
49175,
1410,
64,
27660,
426,
22487,
28,
2657,
186,
32201,
18169,
64,
27550,
1194,
38761,
64,
17037,
426,
337,
28,
2657,
186,
32201,
18169,
64,
50219,
64,
17037,
426,
337,
28,
2657,
186,
32201,
18169,
64,
42033,
64,
9536,
64,
23335,
426,
34683,
83,
3967,
3664,
2657,
186,
42101,
2795,
23422,
64,
13690,
426,
12121,
18938,
16,
6074,
15,
45890,
28,
2657,
186,
42033,
64,
18999,
426,
48023,
34041,
64,
44169,
11164,
64,
13266,
1933,
9270,
4896,
3664,
2657,
186,
3123,
41,
11147,
2697,
64,
2573,
3859,
36615,
10634,
64,
31613,
426,
898,
15,
17,
28,
2657,
186,
9803,
64,
29537,
18999,
64,
2354,
20756,
64,
38925,
8282,
426,
48023,
27040,
959,
10,
1214,
9993,
13508,
64,
3967,
16,
9270,
4896,
1214,
27564,
64,
3967,
16,
9270,
4896,
3664,
2657,
186,
3175,
47965,
64,
35,
4037,
37,
1843,
64,
25788,
3801,
35960,
426,
346,
9019,
18938,
15,
6999,
3175,
47965,
64,
9536,
27,
83,
12964,
740,
1706,
31668,
10,
3664,
2657,
186,
3175,
47965,
64,
9536,
426,
48023,
31613,
64,
9536,
10,
3664,
2657,
186,
16582,
3123,
64,
42033,
426,
22487,
28,
2657,
186,
13753,
14976,
64,
18904,
2894,
18769,
6570,
64,
36868,
426,
19479,
2374,
531,
3664,
2657,
186,
13753,
14976,
64,
13753,
14976,
20,
64,
9324,
32318,
64,
1042,
38064,
17740,
426,
18193,
28,
2657,
186,
13753,
14976,
64,
17037,
426,
608,
15,
17,
28,
988,
186,
4718,
988,
186,
1590,
426,
26073,
28,
996,
186,
4718,
996,
186,
40848,
4280,
38,
23,
35,
18,
35,
5388,
1549,
37,
361,
25716,
25,
35,
361,
3476,
20002,
1738,
426,
551,
988,
186,
8901,
426,
1594,
36,
10987,
11909,
28,
988,
186,
7973,
16704,
426,
551,
2657,
186,
3207,
14375,
64,
32814,
64,
26980,
4641,
1410,
426,
22487,
28,
2657,
186,
3,
16699,
64,
52,
13003,
64,
25788,
7400,
60,
30872,
30,
16372,
531,
375,
11,
9336,
426,
29707,
2657,
186,
49175,
1410,
64,
27660,
426,
22487,
28,
2657,
186,
32201,
18169,
64,
27550,
1194,
38761,
64,
17037,
426,
337,
28,
2657,
186,
32201,
18169,
64,
50219,
64,
17037,
426,
337,
28,
2657,
186,
32201,
18169,
64,
42033,
64,
9536,
64,
23335,
426,
34683,
83,
3967,
3664,
2657,
186,
42101,
2795,
23422,
64,
13690,
426,
12121,
18938,
16,
6074,
15,
45890,
28,
2657,
186,
42033,
64,
18999,
426,
48023,
34041,
64,
44169,
11164,
64,
13266,
1933,
9270,
4896,
3664,
2657,
186,
3123,
41,
11147,
2697,
64,
2573,
3859,
36615,
10634,
64,
31613,
426,
898,
15,
17,
28,
2657,
186,
9803,
64,
29537,
18999,
64,
2354,
20756,
64,
38925,
8282,
426,
48023,
27040,
959,
10,
1214,
9993,
13508,
64,
3967,
16,
9270,
4896,
1214,
27564,
64,
3967,
16,
9270,
4896,
3664,
2657,
186,
3175,
47965,
64,
35,
4037,
37,
1843,
64,
25788,
3801,
35960,
426,
346,
9019,
18938,
15,
6999,
3175,
47965,
64,
9536,
27,
83,
12964,
740,
1706,
31668,
10,
3664,
2657,
186,
3175,
47965,
64,
9536,
426,
48023,
31613,
64,
9536,
10,
3664,
2657,
186,
16582,
3123,
64,
42033,
426,
22487,
28,
2657,
186,
13753,
14976,
64,
13753,
14976,
20,
64,
9324,
32318,
64,
1042,
38064,
17740,
426,
18193,
28,
2657,
186,
13753,
14976,
64,
17037,
426,
608,
15,
17,
28,
988,
186,
4718,
988,
186,
1590,
426,
20002,
28,
996,
186,
4718,
996,
186,
40848,
4280,
38,
23,
37,
18,
35,
5388,
1549,
37,
361,
25716,
25,
35,
361,
3476,
26073,
1738,
426,
551,
988,
186,
8901,
426,
1594,
36,
10987,
11909,
28,
988,
186,
7973,
16704,
426,
551,
2657,
186,
43234,
30764,
64,
2354,
20756,
64,
38925,
8282,
426,
48023,
27040,
959,
10,
3664,
2657,
186,
26173,
64,
14364,
28389,
5479,
1372,
64,
49175,
13190,
52,
426,
313,
2664,
186,
3,
18828,
30,
18,
995,
2664,
186,
3,
6999,
27040,
959,
22719,
2657,
186,
558,
2657,
186,
42101,
2795,
23422,
64,
13690,
426,
12121,
18938,
26943,
16,
6074,
15,
45890,
28,
2657,
186,
9803,
64,
29537,
18999,
64,
2354,
20756,
64,
38925,
8282,
426,
48023,
27040,
959,
10,
1214,
9993,
13508,
64,
3967,
16,
9270,
4896,
1214,
27564,
64,
3967,
16,
9270,
4896,
3664,
2657,
186,
3175,
47965,
64,
35,
4037,
37,
1843,
64,
25788,
3801,
35960,
426,
346,
9019,
18938,
15,
6999,
3175,
47965,
64,
9536,
27,
83,
12964,
740,
1706,
31668,
10,
3664,
2657,
186,
3175,
47965,
64,
9536,
426,
48023,
31613,
64,
9536,
10,
3664,
2657,
186,
13753,
14976,
64,
13753,
14976,
20,
64,
9324,
32318,
64,
1042,
38064,
17740,
426,
18193,
28,
2657,
186,
13753,
14976,
64,
17037,
426,
577,
15,
17,
28,
988,
186,
4718,
988,
186,
1590,
426,
26073,
28,
996,
186,
4718,
996,
186,
40848,
4280,
38,
23,
38,
18,
35,
5388,
1549,
37,
361,
25716,
25,
35,
361,
3476,
20002,
1738,
426,
551,
988,
186,
8901,
426,
1594,
36,
10987,
11909,
28,
988,
186,
7973,
16704,
426,
551,
2657,
186,
43234,
30764,
64,
2354,
20756,
64,
38925,
8282,
426,
48023,
27040,
959,
10,
3664,
2657,
186,
42101,
2795,
23422,
64,
13690,
426,
12121,
18938,
26943,
16,
6074,
15,
45890,
28,
2657,
186,
9803,
64,
29537,
18999,
64,
2354,
20756,
64,
38925,
8282,
426,
48023,
27040,
959,
10,
1214,
9993,
13508,
64,
3967,
16,
9270,
4896,
1214,
27564,
64,
3967,
16,
9270,
4896,
3664,
2657,
186,
3175,
47965,
64,
35,
4037,
37,
1843,
64,
25788,
3801,
35960,
426,
346,
9019,
18938,
15,
6999,
3175,
47965,
64,
9536,
27,
83,
12964,
740,
1706,
31668,
10,
3664,
2657,
186,
3175,
47965,
64,
9536,
426,
48023,
31613,
64,
9536,
10,
3664,
2657,
186,
13753,
14976,
64,
13753,
14976,
20,
64,
9324,
32318,
64,
1042,
38064,
17740,
426,
18193,
28,
2657,
186,
13753,
14976,
64,
17037,
426,
577,
15,
17,
28,
988,
186,
4718,
988,
186,
1590,
426,
20002,
28,
996,
186,
4718,
187,
3122,
8072,
1594,
36,
10987,
11909,
2593,
1738,
187,
187,
3122,
22929,
1594,
36,
11909,
2765,
2593,
1738,
996,
186,
40848,
4280,
38,
21,
37,
18,
35,
5388,
1549,
37,
361,
25716,
25,
35,
361,
3476,
11103,
6661,
1618,
323,
28295,
11695,
346,
9019,
18938,
3,
1738,
426,
551,
988,
186,
8901,
426,
1594,
36,
11909,
2765,
28,
988,
186,
7973,
6155,
13087,
426,
313,
2657,
186,
40848,
4280,
38,
35276,
35,
5388,
1549,
37,
361,
25716,
25,
35,
361,
3476,
26073,
33701,
2657,
186,
40848,
4280,
38,
33304,
35,
5388,
1549,
37,
361,
25716,
25,
35,
361,
3476,
20002,
33701,
988,
186,
558,
988,
186,
6986,
11909,
2513,
26998,
426,
470,
28,
988,
186,
6986,
11909,
2402,
426,
20002,
28,
996,
186,
4718,
996,
186,
40848,
4280,
38,
35356,
35,
5388,
1549,
37,
361,
25716,
25,
35,
361,
3476,
11103,
6661,
1618,
323,
28295,
21408,
12168,
346,
9019,
18938,
3,
1738,
426,
551,
988,
186,
8901,
426,
1594,
36,
11909,
2765,
28,
988,
186,
7973,
6155,
13087,
426,
313,
2657,
186,
40848,
4280,
38,
23,
34,
18,
35,
5388,
1549,
37,
361,
25716,
25,
35,
361,
3476,
26073,
33701,
2657,
186,
40848,
4280,
38,
23,
35,
18,
35,
5388,
1549,
37,
361,
25716,
25,
35,
361,
3476,
20002,
33701,
988,
186,
558,
988,
186,
6986,
11909,
2513,
26998,
426,
470,
28,
988,
186,
6986,
11909,
2402,
426,
20002,
28,
996,
186,
4718,
996,
186,
40848,
4280,
38,
23,
36,
18,
35,
5388,
1549,
37,
361,
25716,
25,
35,
361,
3476,
11103,
6661,
1618,
323,
28295,
21408,
12168,
346,
9019,
18938,
26943,
3,
1738,
426,
551,
988,
186,
8901,
426,
1594,
36,
11909,
2765,
28,
988,
186,
7973,
6155,
13087,
426,
313,
2657,
186,
40848,
4280,
38,
23,
37,
18,
35,
5388,
1549,
37,
361,
25716,
25,
35,
361,
3476,
26073,
33701,
2657,
186,
40848,
4280,
38,
23,
38,
18,
35,
5388,
1549,
37,
361,
25716,
25,
35,
361,
3476,
20002,
33701,
988,
186,
558,
988,
186,
6986,
11909,
2513,
26998,
426,
470,
28,
988,
186,
6986,
11909,
2402,
426,
20002,
28,
996,
186,
4718,
187,
3122,
8072,
1594,
36,
11909,
2765,
2593,
1738,
187,
186,
4718,
187,
186,
9723,
4241,
426,
40175,
4280,
38,
21,
34,
18,
35,
5388,
1549,
37,
361,
25716,
25,
35,
361,
3476,
8049,
1789,
1738,
28,
187,
94,
187
] | // !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 46;
objects = {
/* Begin PBXBuildFile section */
438CAE5F1B50060D00EA8B00 /* ActionKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 438CAE531B50060D00EA8B00 /* ActionKit.framework */; };
438CAE661B50060D00EA8B00 /* ActionKitTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 438CAE651B50060D00EA8B00 /* ActionKitTests.swift */; };
438CAE721B5006EA00EA8B00 /* ActionKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = 438CAE6F1B5006EA00EA8B00 /* ActionKit.swift */; };
438CAE731B5006EA00EA8B00 /* UIControl+ActionKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = 438CAE701B5006EA00EA8B00 /* UIControl+ActionKit.swift */; };
438CAE741B5006EA00EA8B00 /* UIGestureRecognizer+ActionKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = 438CAE711B5006EA00EA8B00 /* UIGestureRecognizer+ActionKit.swift */; };
72AB3FCE1D256D68009A6411 /* UIBarButtonItem+ActionKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = 72AB3FCD1D256D68009A6411 /* UIBarButtonItem+ActionKit.swift */; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
438CAE601B50060D00EA8B00 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 438CAE4A1B50060D00EA8B00 /* Project object */;
proxyType = 1;
remoteGlobalIDString = 438CAE521B50060D00EA8B00;
remoteInfo = ActionKit;
};
/* End PBXContainerItemProxy section */
/* Begin PBXFileReference section */
438CAE531B50060D00EA8B00 /* ActionKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = ActionKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
438CAE571B50060D00EA8B00 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
438CAE5E1B50060D00EA8B00 /* ActionKitTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = ActionKitTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
438CAE641B50060D00EA8B00 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
438CAE651B50060D00EA8B00 /* ActionKitTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ActionKitTests.swift; sourceTree = "<group>"; };
438CAE6F1B5006EA00EA8B00 /* ActionKit.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ActionKit.swift; sourceTree = "<group>"; };
438CAE701B5006EA00EA8B00 /* UIControl+ActionKit.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIControl+ActionKit.swift"; sourceTree = "<group>"; };
438CAE711B5006EA00EA8B00 /* UIGestureRecognizer+ActionKit.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIGestureRecognizer+ActionKit.swift"; sourceTree = "<group>"; };
72AB3FCD1D256D68009A6411 /* UIBarButtonItem+ActionKit.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIBarButtonItem+ActionKit.swift"; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
438CAE4F1B50060D00EA8B00 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
438CAE5B1B50060D00EA8B00 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
438CAE5F1B50060D00EA8B00 /* ActionKit.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
438CAE491B50060D00EA8B00 = {
isa = PBXGroup;
children = (
438CAE551B50060D00EA8B00 /* ActionKit */,
438CAE621B50060D00EA8B00 /* ActionKitTests */,
438CAE541B50060D00EA8B00 /* Products */,
);
sourceTree = "<group>";
};
438CAE541B50060D00EA8B00 /* Products */ = {
isa = PBXGroup;
children = (
438CAE531B50060D00EA8B00 /* ActionKit.framework */,
438CAE5E1B50060D00EA8B00 /* ActionKitTests.xctest */,
);
name = Products;
sourceTree = "<group>";
};
438CAE551B50060D00EA8B00 /* ActionKit */ = {
isa = PBXGroup;
children = (
438CAE6F1B5006EA00EA8B00 /* ActionKit.swift */,
438CAE701B5006EA00EA8B00 /* UIControl+ActionKit.swift */,
438CAE711B5006EA00EA8B00 /* UIGestureRecognizer+ActionKit.swift */,
72AB3FCD1D256D68009A6411 /* UIBarButtonItem+ActionKit.swift */,
438CAE561B50060D00EA8B00 /* Supporting Files */,
);
path = ActionKit;
sourceTree = "<group>";
};
438CAE561B50060D00EA8B00 /* Supporting Files */ = {
isa = PBXGroup;
children = (
438CAE571B50060D00EA8B00 /* Info.plist */,
);
name = "Supporting Files";
sourceTree = "<group>";
};
438CAE621B50060D00EA8B00 /* ActionKitTests */ = {
isa = PBXGroup;
children = (
438CAE651B50060D00EA8B00 /* ActionKitTests.swift */,
438CAE631B50060D00EA8B00 /* Supporting Files */,
);
path = ActionKitTests;
sourceTree = "<group>";
};
438CAE631B50060D00EA8B00 /* Supporting Files */ = {
isa = PBXGroup;
children = (
438CAE641B50060D00EA8B00 /* Info.plist */,
);
name = "Supporting Files";
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXHeadersBuildPhase section */
438CAE501B50060D00EA8B00 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
438CAE521B50060D00EA8B00 /* ActionKit */ = {
isa = PBXNativeTarget;
buildConfigurationList = 438CAE691B50060D00EA8B00 /* Build configuration list for PBXNativeTarget "ActionKit" */;
buildPhases = (
438CAE4E1B50060D00EA8B00 /* Sources */,
438CAE4F1B50060D00EA8B00 /* Frameworks */,
438CAE501B50060D00EA8B00 /* Headers */,
438CAE511B50060D00EA8B00 /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = ActionKit;
productName = ActionKit;
productReference = 438CAE531B50060D00EA8B00 /* ActionKit.framework */;
productType = "com.apple.product-type.framework";
};
438CAE5D1B50060D00EA8B00 /* ActionKitTests */ = {
isa = PBXNativeTarget;
buildConfigurationList = 438CAE6C1B50060D00EA8B00 /* Build configuration list for PBXNativeTarget "ActionKitTests" */;
buildPhases = (
438CAE5A1B50060D00EA8B00 /* Sources */,
438CAE5B1B50060D00EA8B00 /* Frameworks */,
438CAE5C1B50060D00EA8B00 /* Resources */,
);
buildRules = (
);
dependencies = (
438CAE611B50060D00EA8B00 /* PBXTargetDependency */,
);
name = ActionKitTests;
productName = ActionKitTests;
productReference = 438CAE5E1B50060D00EA8B00 /* ActionKitTests.xctest */;
productType = "com.apple.product-type.bundle.unit-test";
};
/* End PBXNativeTarget section */
/* Begin PBXProject section */
438CAE4A1B50060D00EA8B00 /* Project object */ = {
isa = PBXProject;
attributes = {
LastSwiftMigration = 0700;
LastSwiftUpdateCheck = 0700;
LastUpgradeCheck = 1030;
ORGANIZATIONNAME = ActionKit;
TargetAttributes = {
438CAE521B50060D00EA8B00 = {
CreatedOnToolsVersion = 6.4;
LastSwiftMigration = 0900;
};
438CAE5D1B50060D00EA8B00 = {
CreatedOnToolsVersion = 6.4;
LastSwiftMigration = 0900;
LastSwiftMigration = 1110;
};
};
};
buildConfigurationList = 438CAE4D1B50060D00EA8B00 /* Build configuration list for PBXProject "ActionKit" */;
compatibilityVersion = "Xcode 3.2";
developmentRegion = en;
hasScannedForEncodings = 0;
knownRegions = (
en,
Base,
);
mainGroup = 438CAE491B50060D00EA8B00;
productRefGroup = 438CAE541B50060D00EA8B00 /* Products */;
projectDirPath = "";
projectRoot = "";
targets = (
438CAE521B50060D00EA8B00 /* ActionKit */,
438CAE5D1B50060D00EA8B00 /* ActionKitTests */,
);
};
/* End PBXProject section */
/* Begin PBXResourcesBuildPhase section */
438CAE511B50060D00EA8B00 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
438CAE5C1B50060D00EA8B00 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
438CAE4E1B50060D00EA8B00 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
438CAE731B5006EA00EA8B00 /* UIControl+ActionKit.swift in Sources */,
72AB3FCE1D256D68009A6411 /* UIBarButtonItem+ActionKit.swift in Sources */,
438CAE741B5006EA00EA8B00 /* UIGestureRecognizer+ActionKit.swift in Sources */,
438CAE721B5006EA00EA8B00 /* ActionKit.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
438CAE5A1B50060D00EA8B00 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
438CAE661B50060D00EA8B00 /* ActionKitTests.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXTargetDependency section */
438CAE611B50060D00EA8B00 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = 438CAE521B50060D00EA8B00 /* ActionKit */;
targetProxy = 438CAE601B50060D00EA8B00 /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin XCBuildConfiguration section */
438CAE671B50060D00EA8B00 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_COMMA = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
CLANG_WARN_STRICT_PROTOTYPES = YES;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = NO;
CURRENT_PROJECT_VERSION = 1;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
ENABLE_STRICT_OBJC_MSGSEND = YES;
ENABLE_TESTABILITY = YES;
GCC_DYNAMIC_NO_PIC = NO;
GCC_NO_COMMON_BLOCKS = YES;
GCC_OPTIMIZATION_LEVEL = 0;
GCC_PREPROCESSOR_DEFINITIONS = (
"DEBUG=1",
"$(inherited)",
);
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
GCC_WARN_UNDECLARED_SELECTOR = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES;
SDKROOT = iphoneos;
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
TARGETED_DEVICE_FAMILY = "1,2";
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
name = Debug;
};
438CAE681B50060D00EA8B00 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_COMMA = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
CLANG_WARN_STRICT_PROTOTYPES = YES;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = NO;
CURRENT_PROJECT_VERSION = 1;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
ENABLE_NS_ASSERTIONS = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
GCC_NO_COMMON_BLOCKS = YES;
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
GCC_WARN_UNDECLARED_SELECTOR = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
MTL_ENABLE_DEBUG_INFO = NO;
SDKROOT = iphoneos;
SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
TARGETED_DEVICE_FAMILY = "1,2";
VALIDATE_PRODUCT = YES;
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
name = Release;
};
438CAE6A1B50060D00EA8B00 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CLANG_ENABLE_MODULES = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
INFOPLIST_FILE = ActionKit/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = "ActionKit.$(PRODUCT_NAME:rfc1034identifier)";
PRODUCT_NAME = "$(TARGET_NAME)";
SKIP_INSTALL = YES;
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
SWIFT_SWIFT3_OBJC_INFERENCE = Default;
SWIFT_VERSION = 5.0;
};
name = Debug;
};
438CAE6B1B50060D00EA8B00 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CLANG_ENABLE_MODULES = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
INFOPLIST_FILE = ActionKit/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = "ActionKit.$(PRODUCT_NAME:rfc1034identifier)";
PRODUCT_NAME = "$(TARGET_NAME)";
SKIP_INSTALL = YES;
SWIFT_SWIFT3_OBJC_INFERENCE = Default;
SWIFT_VERSION = 5.0;
};
name = Release;
};
438CAE6D1B50060D00EA8B00 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
FRAMEWORK_SEARCH_PATHS = "$(inherited)";
GCC_PREPROCESSOR_DEFINITIONS = (
"DEBUG=1",
"$(inherited)",
);
INFOPLIST_FILE = ActionKitTests/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = "ActionKit.$(PRODUCT_NAME:rfc1034identifier)";
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_SWIFT3_OBJC_INFERENCE = Default;
SWIFT_VERSION = 4.0;
};
name = Debug;
};
438CAE6E1B50060D00EA8B00 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
FRAMEWORK_SEARCH_PATHS = "$(inherited)";
INFOPLIST_FILE = ActionKitTests/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = "ActionKit.$(PRODUCT_NAME:rfc1034identifier)";
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_SWIFT3_OBJC_INFERENCE = Default;
SWIFT_VERSION = 4.0;
};
name = Release;
};
/* End XCBuildConfiguration section */
/* Begin XCConfigurationList section */
438CAE4D1B50060D00EA8B00 /* Build configuration list for PBXProject "ActionKit" */ = {
isa = XCConfigurationList;
buildConfigurations = (
438CAE671B50060D00EA8B00 /* Debug */,
438CAE681B50060D00EA8B00 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
438CAE691B50060D00EA8B00 /* Build configuration list for PBXNativeTarget "ActionKit" */ = {
isa = XCConfigurationList;
buildConfigurations = (
438CAE6A1B50060D00EA8B00 /* Debug */,
438CAE6B1B50060D00EA8B00 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
438CAE6C1B50060D00EA8B00 /* Build configuration list for PBXNativeTarget "ActionKitTests" */ = {
isa = XCConfigurationList;
buildConfigurations = (
438CAE6D1B50060D00EA8B00 /* Debug */,
438CAE6E1B50060D00EA8B00 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
/* End XCConfigurationList section */
};
rootObject = 438CAE4A1B50060D00EA8B00 /* Project object */;
}
|
214,430 | Github | [
3122,
41415,
432,
27,
2490,
475,
1049,
14,
79,
430,
12283,
14,
18,
313,
3614,
1358,
69,
1610,
87,
38697,
17,
1378,
26,
392,
1229,
15,
18534,
6342,
15,
3024,
16,
35261,
16,
72,
16368,
16,
22740,
5232,
318,
11133,
8546,
1877,
15,
8456,
582,
2715,
1668,
15,
19,
15,
17,
13,
187,
475,
21187,
14,
8535,
14,
18,
313,
3614,
1358,
69,
20,
442,
90,
67,
1797,
453,
14346,
26,
83,
15,
18534,
6342,
15,
3024,
16,
35261,
16,
72,
16368,
16,
22740,
5232,
318,
11133,
8546,
1877,
15,
8456,
582,
2715,
1668,
15,
19,
15,
17,
13,
187,
475,
441,
14,
26139,
14,
18,
313,
3614,
1358,
69,
18,
86,
1952,
991,
5830,
24,
1559,
1731,
15,
18534,
6342,
15,
3024,
16,
35261,
16,
72,
16368,
16,
22740,
5232,
318,
11133,
8546,
1877,
15,
8456,
582,
2715,
1668,
15,
19,
15,
17,
13,
187,
475,
441,
14,
8535,
14,
18,
313,
3614,
1358,
69,
2358,
12408,
2537,
34338,
11943,
82,
15,
18534,
6342,
15,
3024,
16,
35261,
16,
72,
16368,
16,
22740,
5232,
318,
11133,
8546,
1877,
15,
8456,
582,
2715,
1668,
15,
19,
15,
17,
13,
187,
475,
441,
14,
8535,
14,
19,
313,
3614,
1358,
69,
1252,
66,
19,
16192,
1731,
83,
24,
44859,
15,
18534,
6342,
15,
3024,
16,
35261,
16,
72,
16368,
16,
22740,
5232,
318,
11133,
8546,
1877,
15,
8456,
582,
2715,
1668,
15,
19,
15,
17,
187,
1738,
187,
50275,
187,
2948,
551,
11133,
8932,
94,
432,
50111,
15024,
8,
187,
2948,
551,
3902,
13,
5552,
94,
432,
50111,
2203,
15668,
8,
2756,
187,
15035,
5673,
4974,
3024,
6998,
18401,
551,
187,
50274,
11185,
18346,
11740,
29,
2703,
31,
187,
50274,
5623,
3024,
48975,
18346,
11740,
29,
2703,
31,
187,
50274,
5623,
3024,
33922,
27,
5552,
29,
3902,
29,
2703,
5064,
187,
94,
187,
187,
15035,
4284,
966,
4974,
3024,
6998,
8725,
22106,
8932,
29,
5623,
3024,
6998,
18401,
31,
551,
2756,
50274,
36073,
9,
19402,
27,
4974,
3024,
6998,
18401,
10,
551,
187,
50270,
12185,
2073,
34,
10930,
1450,
4877,
57,
1450,
5623,
3024,
6998,
1383,
3607,
10,
187,
50274,
94,
187,
94,
187
] | /* Generated from:
* ap-northeast-1 (https://d33vqc0rt9ld30.cloudfront.net/latest/gzip/CloudFormationResourceSpecification.json), version 16.2.0,
* eu-west-1 (https://d3teyb21fexa9r.cloudfront.net/latest/gzip/CloudFormationResourceSpecification.json), version 16.2.0,
* us-east-1 (https://d1uauaxba7bl26.cloudfront.net/latest/gzip/CloudFormationResourceSpecification.json), version 16.2.0,
* us-west-1 (https://d68hl49wbnanq.cloudfront.net/latest/gzip/CloudFormationResourceSpecification.json), version 16.2.0,
* us-west-2 (https://d201a2mn26r7lk.cloudfront.net/latest/gzip/CloudFormationResourceSpecification.json), version 16.2.0
*/
import {ResourceBase} from '../resource'
import {Value, List} from '../dataTypes'
export interface SubnetGroupProperties {
Description?: Value<string>
SubnetGroupName?: Value<string>
SubnetIds: List<Value<string>>
}
export default class SubnetGroup extends ResourceBase<SubnetGroupProperties> {
constructor(properties: SubnetGroupProperties) {
super('AWS::DAX::SubnetGroup', properties)
}
}
|
214,431 | Github | [
4,
34834,
11919,
16,
4805,
16,
12540,
439,
187,
187,
22902,
22902,
6675,
5146,
187,
817,
187,
817,
50276,
29146,
282,
1265,
598,
6001,
323,
7379,
11,
57,
187,
817,
187,
22902,
22902,
6675,
5146,
187,
187,
4,
42478,
281,
873,
28878,
64,
30851,
187,
4,
2213,
3247,
4859,
27,
370,
17,
778,
320,
247,
3048,
187,
3175,
40,
31462,
17,
3,
187,
4,
20389,
436,
323,
4103,
726,
1686,
3106,
15,
187,
6050,
544,
428,
73,
12122,
3175,
40,
3,
5032,
3706,
513,
187,
50274,
5200,
46946,
5200,
428,
392,
12122,
3175,
40,
20397,
187,
50274,
4492,
46946,
18689,
12122,
5200,
3,
1163,
686,
5929,
1168,
24829,
5929,
61,
1009,
8,
65,
187,
50274,
338,
40280,
12122,
4492,
3,
1163,
17882,
5929,
8,
2239,
1227,
3620,
16,
8629,
28,
840,
187,
50270,
3175,
40,
31462,
4492,
3,
187,
50274,
7271,
187,
50270,
3175,
40,
46946,
45518,
12122,
3175,
40,
20397,
3,
27781,
4492,
3,
187,
50274,
11125,
187,
17506,
187,
4576,
55,
1703,
568,
65,
81,
14066,
65,
3,
187,
2428,
36823,
45518,
12114,
5,
3175,
40,
10632,
65,
23911,
2239,
16,
3620,
16,
8629,
187,
18137,
64,
30851,
568,
65,
81,
14066,
428,
49,
65,
3,
187,
2428,
12122,
4576,
55,
1703,
3,
2239,
16,
3620,
16,
8629,
187,
187,
18137,
64,
9536,
568,
29146,
282,
3,
187,
18137,
64,
23335,
64,
9536,
46946,
10352,
5116,
12122,
17,
20397,
187,
187,
4,
5733,
4284,
500,
11804,
4610,
1060,
15,
1422,
476,
671,
897,
500,
39066,
64,
2795,
6901,
285,
9942,
2350,
1843,
64,
2795,
6901,
281,
1509,
500,
11804,
4610,
281,
436,
6001,
15,
187,
25409,
64,
43,
11804,
64,
2795,
6901,
20679,
187,
187,
4,
7890,
253,
4869,
2130,
13,
390,
873,
21713,
64,
10914,
3613,
428,
18,
281,
897,
326,
1318,
15,
187,
11779,
64,
10914,
568,
36116,
3,
187,
187,
30289,
6734,
551,
187,
50274,
13088,
12122,
35797,
187,
94,
187,
187,
20875,
6734,
551,
187,
50274,
13088,
187,
50274,
13088,
12122,
35797,
187,
50274,
13088,
187,
50274,
19874,
337,
187,
94,
187,
187,
4,
9485,
2173,
1329,
313,
18265,
320,
686,
5672,
8,
390,
686,
7750,
8539,
187,
951,
72,
6481,
30,
7750,
187,
983,
656,
30,
7750,
187,
27083,
6481,
30,
7750,
187,
4160,
13121,
30,
7750,
187,
5045,
36823,
328,
482,
65,
3,
275,
187,
50276,
30697,
40,
25079,
11,
2387,
187,
50274,
951,
72,
6481,
30,
5672,
187,
50274,
12723,
187,
50276,
28895,
6481,
11,
2387,
187,
50274,
27083,
6481,
30,
5672,
187,
50274,
12723,
187,
50276,
46,
2637,
56,
11,
2387,
187,
50274,
983,
656,
30,
5672,
187,
50274,
12723,
187,
50276,
34656,
37547,
11,
2387,
187,
50274,
4160,
13121,
30,
5672,
187,
50274,
12723,
187,
265,
317,
187,
187,
3207,
1719,
4350,
10948,
18340,
18137,
64,
30851,
16,
38423,
16,
25377,
16,
38423,
14,
25377,
15,
12987,
187,
187,
4,
11374,
253,
8595,
3923,
281,
897,
281,
1265,
253,
500,
11804,
15,
187,
338,
544,
428,
79,
12122,
43,
39066,
64,
30851,
3,
5032,
3706,
840,
187,
50274,
338,
544,
428,
89,
12122,
43,
39066,
64,
30851,
16,
75,
250,
16,
1200,
16,
5594,
3,
5032,
3706,
840,
187,
50270,
4,
21314,
434,
34166,
44,
327,
329,
10569,
4648,
8921,
8593,
323,
253,
19599,
2272,
187,
50270,
43,
5851,
1934,
7414,
31462,
43,
39066,
64,
30851,
16,
75,
250,
16,
1200,
16,
5594,
3,
187,
50274,
7271,
187,
50270,
43,
5851,
1934,
7414,
31462,
43,
39066,
64,
30851,
16,
4805,
16,
5594,
3,
187,
50274,
11125,
187,
50274,
338,
544,
2195,
428,
89,
12122,
43,
5851,
1934,
7414,
3,
5032,
3706,
840,
187,
50270,
20875,
346,
12641,
27,
500,
39066,
64,
30851,
310,
873,
281,
271,
12078,
9617,
27,
370,
43,
39066,
64,
30851,
187,
187,
7845,
873,
253,
500,
39066,
64,
30851,
4778,
275,
634,
3126,
281,
3761,
253,
187,
12428,
273,
634,
8595,
12692,
449,
187,
50274,
11125,
187,
7271,
187,
50274,
43,
5851,
1934,
7414,
568,
5594,
3,
187,
50274,
4609,
7626,
2239,
16,
3620,
16,
8629,
374,
12399,
18,
2785,
3150,
346,
12641,
27,
500,
39066,
64,
30851,
310,
417,
873,
285,
642,
686,
5594,
8,
3923,
812,
320,
1119,
275,
634,
46536,
15,
187,
187,
7845,
873,
253,
500,
39066,
64,
30851,
4778,
275,
634,
3126,
281,
3761,
253,
187,
12428,
273,
634,
8595,
12692,
449,
187,
11125,
187,
187,
4,
49336,
253,
4869,
1873,
42785,
604,
359,
476,
15,
187,
338,
544,
12122,
951,
72,
6481,
3,
426,
346,
7750,
3,
428,
66,
12122,
27083,
6481,
3,
426,
346,
7750,
3,
428,
66,
12122,
4160,
13121,
3,
426,
346,
7750,
3,
5032,
3706,
840,
187,
50274,
11779,
64,
10914,
64,
37009,
1433,
46946,
335,
16563,
428,
41,
428,
79,
65,
187,
50274,
338,
544,
370,
32,
428,
2574,
470,
5032,
3706,
840,
187,
50270,
338,
544,
12122,
11779,
64,
10914,
3,
426,
346,
36116,
3,
428,
80,
12122,
11779,
64,
10914,
3,
426,
346,
4090,
3,
5032,
3706,
840,
187,
50266,
11779,
64,
10914,
31462,
11779,
64,
10914,
64,
37009,
1433,
3,
187,
50270,
11125,
187,
50270,
335,
16563,
428,
79,
370,
11779,
64,
10914,
187,
50270,
338,
544,
370,
32,
428,
570,
470,
5032,
3706,
840,
187,
50266,
30289,
346,
18179,
417,
873,
4869,
1873,
30047,
2701,
27,
370,
11779,
64,
10914,
3,
187,
50270,
11125,
187,
50274,
7271,
187,
50270,
30289,
346,
18179,
417,
7316,
4869,
1873,
30047,
2701,
27,
370,
11779,
64,
10914,
64,
37009,
1433,
3,
187,
50274,
11125,
187,
11125,
187,
187,
4,
1198,
27104,
13,
823,
4610,
281,
13199,
849,
253,
2898,
4620,
275,
253,
17463,
187,
338,
370,
27083,
6481,
28,
840,
187,
50274,
6217,
2350,
1843,
64,
2795,
6901,
31462,
6217,
2350,
1843,
64,
2795,
6901,
12114,
14,
57,
44721,
27,
1590,
18340,
18137,
64,
9536,
10632,
12114,
14,
57,
44721,
27,
3557,
18340,
18137,
64,
30851,
16,
8236,
16,
38423,
15,
280,
2224,
61,
9739,
187,
11125,
187,
187,
4,
1198,
330,
11550,
6481,
13,
5234,
11865,
281,
7464,
5981,
1078,
3515,
7626,
187,
338,
370,
951,
72,
6481,
3706,
840,
187,
50274,
18137,
64,
30851,
46946,
951,
72,
3967,
1969,
3967,
1969,
37340,
12122,
18137,
64,
30851,
20397,
187,
50274,
3207,
1719,
4350,
10948,
46946,
951,
72,
3967,
1969,
3967,
1969,
37340,
12122,
3207,
1719,
4350,
10948,
20397,
187,
50274,
43,
5851,
1934,
7414,
46946,
951,
72,
3967,
1969,
328,
895,
12122,
43,
5851,
1934,
7414,
20397,
535,
50274,
4,
844,
1973,
253,
3102,
323,
7125,
281,
320,
11516,
3066,
2645,
72,
3967,
187,
50274,
34101,
13266,
52,
47740,
46946,
8606,
428,
45,
1227,
428,
4090,
16719,
337,
428,
14785,
554,
394,
337,
428,
881,
277,
374,
38271,
3620,
16,
8629,
65,
187,
50274,
2354,
49,
20679,
187,
50274,
1542,
14035,
275,
370,
34101,
13266,
52,
47740,
3706,
513,
187,
50270,
34101,
13266,
52,
31462,
34101,
13266,
52,
5,
2354,
49,
5,
7341,
3,
187,
50270,
2354,
49,
568,
93,
3,
187,
50274,
17506,
187,
50274,
11862,
30697,
12295,
1194,
46811,
568,
9,
63,
3914,
34101,
13266,
52,
1228,
3,
187,
50274,
4,
5733,
247,
2608,
14,
7769,
3102,
281,
253,
2645,
72,
3967,
7125,
187,
50274,
338,
544,
12122,
6217,
2350,
1843,
64,
30697,
12295,
1194,
46811,
3,
3613,
4890,
5032,
3706,
840,
187,
50270,
11862,
30697,
12295,
1194,
46811,
31462,
11862,
30697,
12295,
1194,
46811,
93,
3914,
6217,
2350,
1843,
64,
30697,
12295,
1194,
46811,
6844,
187,
50274,
11125,
187,
50274,
4,
3954,
6455,
253,
7125,
428,
27451,
15414,
281,
2701,
9361,
281,
1227,
4805,
16,
1200,
187,
50274,
74,
30,
17,
187,
50274,
1542,
1736,
275,
12122,
16844,
3706,
513,
187,
50270,
22949,
46946,
13088,
12122,
1662,
31899,
909,
4762,
428,
68,
12122,
11862,
30697,
12295,
1194,
46811,
3,
428,
65,
187,
50270,
22949,
19,
46946,
13088,
12122,
1662,
31899,
909,
4762,
428,
68,
346,
8011,
20397,
50254,
50269,
4118,
11374,
604,
271,
4500,
535,
50270,
338,
544,
370,
22949,
428,
570,
470,
5032,
3857,
544,
370,
22949,
19,
428,
2574,
470,
5032,
3706,
840,
50258,
4118,
32157,
247,
1617,
187,
50266,
15419,
2634,
13088,
13059,
5,
74,
65,
46946,
951,
72,
3967,
1969,
3967,
1969,
30029,
1969,
37340,
12122,
1662,
20397,
187,
50270,
7271,
187,
50266,
15419,
2634,
13088,
13059,
5,
74,
65,
568,
10632,
5,
1662,
61,
9739,
187,
50270,
11125,
187,
50270,
74,
18340,
4464,
74,
12,
18,
1228,
187,
50274,
17506,
187,
50274,
5045,
370,
74,
275,
187,
50270,
9,
17,
10,
873,
1969,
28513,
187,
50270,
9,
18,
10,
873,
1969,
12122,
8854,
17,
3,
28513,
187,
50270,
9,
19,
10,
873,
1969,
12122,
8854,
17,
3,
12122,
8854,
18,
3,
28513,
187,
50270,
9,
20,
10,
873,
1969,
12122,
8854,
17,
3,
12122,
8854,
18,
3,
12122,
8854,
19,
3,
28513,
187,
50270,
9,
21,
10,
873,
1969,
12122,
8854,
17,
3,
12122,
8854,
18,
3,
12122,
8854,
19,
3,
12122,
8854,
20,
3,
28513,
187,
50270,
9,
22,
10,
873,
1969,
12122,
8854,
17,
3,
12122,
8854,
18,
3,
12122,
8854,
19,
3,
12122,
8854,
20,
3,
12122,
8854,
21,
3,
28513,
187,
50270,
9,
23,
10,
873,
1969,
12122,
8854,
17,
3,
12122,
8854,
18,
3,
12122,
8854,
19,
3,
12122,
8854,
20,
3,
12122,
8854,
21,
3,
12122,
8854,
22,
3,
28513,
187,
50270,
9,
24,
10,
873,
1969,
12122,
8854,
17,
3,
12122,
8854,
18,
3,
12122,
8854,
19,
3,
12122,
8854,
20,
3,
12122,
8854,
21,
3,
12122,
8854,
22,
3,
12122,
8854,
23,
3,
28513,
187,
50270,
9,
25,
10,
873,
1969,
12122,
8854,
17,
3,
12122,
8854,
18,
3,
12122,
8854,
19,
3,
12122,
8854,
20,
3,
12122,
8854,
21,
3,
12122,
8854,
22,
3,
12122,
8854,
23,
3,
12122,
8854,
24,
3,
28513,
187,
50270,
9,
26,
10,
873,
1969,
12122,
8854,
17,
3,
12122,
8854,
18,
3,
12122,
8854,
19,
3,
12122,
8854,
20,
3,
12122,
8854,
21,
3,
12122,
8854,
22,
3,
12122,
8854,
23,
3,
12122,
8854,
24,
3,
12122,
8854,
25,
3,
28513,
187,
50274,
265,
317,
187,
11125,
187,
187,
4,
444,
9875,
2898,
13059,
187,
15261,
6734,
551,
187,
50274,
1542,
891,
513,
20275,
2462,
84,
3353,
79,
12122,
74,
3,
1040,
9043,
346,
84,
16,
39618,
8,
36038,
6267,
16,
72,
28,
18,
84,
16,
27652,
39618,
7405,
5,
84,
6602,
32865,
8,
3202,
3353,
23911,
3706,
2218,
187,
50274,
13088,
346,
346,
187,
94,
187,
18137,
64,
44551,
44241,
15261,
12122,
33,
2807,
187,
187,
4,
22729,
512,
7125,
323,
253,
7626,
3923,
13,
1563,
253,
8135,
32249,
285,
19137,
4803,
187,
15419,
873,
1969,
370,
25409,
64,
43,
11804,
64,
2795,
6901,
370,
43,
39066,
64,
2795,
6901,
370,
6217,
2350,
1843,
64,
2795,
6901,
8894,
40648,
37,
2061,
15,
38423,
15,
1212,
1590,
18340,
18137,
64,
23335,
64,
9536,
61,
9739,
428,
2437,
3967,
8894,
3,
5,
3207,
1719,
4350,
10948,
61,
9739,
4955,
15,
38423,
15,
25377,
15,
29146,
282,
27757,
13030,
12122,
18137,
64,
44551,
3,
187,
187,
4,
407,
4284,
359,
943,
320,
275,
253,
3451,
2199,
14035,
13,
533,
672,
1408,
432,
401,
6228,
327,
5602,
13,
253,
260,
14066,
310,
3430,
187,
338,
544,
48023,
328,
482,
6844,
426,
346,
28895,
6481,
3,
5032,
3857,
544,
12122,
30851,
3,
426,
12122,
49,
18576,
3,
25896,
840,
187,
50276,
2428,
48023,
45518,
12122,
17,
2807,
3,
187,
11125,
187,
187,
9993,
12122,
43,
5851,
1934,
7414,
3,
12122,
16844,
187
] | #!/usr/bin/env sh
##############################################################################
##
## Gradle start up script for UN*X
##
##############################################################################
# Attempt to set APP_HOME
# Resolve links: $0 may be a link
PRG="$0"
# Need this for relative symlinks.
while [ -h "$PRG" ] ; do
ls=`ls -ld "$PRG"`
link=`expr "$ls" : '.*-> \(.*\)$'`
if expr "$link" : '/.*' > /dev/null; then
PRG="$link"
else
PRG=`dirname "$PRG"`"/$link"
fi
done
SAVED="`pwd`"
cd "`dirname \"$PRG\"`/" >/dev/null
APP_HOME="`pwd -P`"
cd "$SAVED" >/dev/null
APP_NAME="Gradle"
APP_BASE_NAME=`basename "$0"`
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
DEFAULT_JVM_OPTS=""
# Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD="maximum"
warn () {
echo "$*"
}
die () {
echo
echo "$*"
echo
exit 1
}
# OS specific support (must be 'true' or 'false').
cygwin=false
msys=false
darwin=false
nonstop=false
case "`uname`" in
CYGWIN* )
cygwin=true
;;
Darwin* )
darwin=true
;;
MINGW* )
msys=true
;;
NONSTOP* )
nonstop=true
;;
esac
CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
# Determine the Java command to use to start the JVM.
if [ -n "$JAVA_HOME" ] ; then
if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
# IBM's JDK on AIX uses strange locations for the executables
JAVACMD="$JAVA_HOME/jre/sh/java"
else
JAVACMD="$JAVA_HOME/bin/java"
fi
if [ ! -x "$JAVACMD" ] ; then
die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
Please set the JAVA_HOME variable in your environment to match the
location of your Java installation."
fi
else
JAVACMD="java"
which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
Please set the JAVA_HOME variable in your environment to match the
location of your Java installation."
fi
# Increase the maximum file descriptors if we can.
if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then
MAX_FD_LIMIT=`ulimit -H -n`
if [ $? -eq 0 ] ; then
if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
MAX_FD="$MAX_FD_LIMIT"
fi
ulimit -n $MAX_FD
if [ $? -ne 0 ] ; then
warn "Could not set maximum file descriptor limit: $MAX_FD"
fi
else
warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
fi
fi
# For Darwin, add options to specify how the application appears in the dock
if $darwin; then
GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
fi
# For Cygwin, switch paths to Windows format before running java
if $cygwin ; then
APP_HOME=`cygpath --path --mixed "$APP_HOME"`
CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
JAVACMD=`cygpath --unix "$JAVACMD"`
# We build the pattern for arguments to be converted via cygpath
ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
SEP=""
for dir in $ROOTDIRSRAW ; do
ROOTDIRS="$ROOTDIRS$SEP$dir"
SEP="|"
done
OURCYGPATTERN="(^($ROOTDIRS))"
# Add a user-defined pattern to the cygpath arguments
if [ "$GRADLE_CYGPATTERN" != "" ] ; then
OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
fi
# Now convert the arguments - kludge to limit ourselves to /bin/sh
i=0
for arg in "$@" ; do
CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
else
eval `echo args$i`="\"$arg\""
fi
i=$((i+1))
done
case $i in
(0) set -- ;;
(1) set -- "$args0" ;;
(2) set -- "$args0" "$args1" ;;
(3) set -- "$args0" "$args1" "$args2" ;;
(4) set -- "$args0" "$args1" "$args2" "$args3" ;;
(5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
(6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
(7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
(8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
(9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
esac
fi
# Escape application args
save () {
for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
echo " "
}
APP_ARGS=$(save "$@")
# Collect all arguments for the java command, following the shell quoting and substitution rules
eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS"
# by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong
if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then
cd "$(dirname "$0")"
fi
exec "$JAVACMD" "$@"
|
214,432 | Github | [
14277,
5581,
190,
187,
7769,
2073,
23335,
18999,
3401,
4145,
10463,
2073,
2302,
1480,
6001,
2289,
4136,
5137,
4888,
187,
13088,
8894,
79,
21563,
2228,
27,
18873,
2379,
186,
5,
33049,
13,
2379,
186,
35343,
79,
61,
79,
995,
2379,
186,
5,
8559,
13,
2379,
186,
35343,
79,
61,
79,
3664
] | <?php
defined('BASEPATH') OR exit('No direct script access allowed');
echo "\nDatabase error: ",
$heading,
"\n\n",
$message,
"\n\n"; |
214,433 | Github | [
3122,
187,
187,
20968,
313,
68,
10,
4104,
45010,
17827,
16169,
187,
187,
31649,
27,
45010,
17827,
654,
68,
23654,
33,
68,
409,
17827,
15,
681,
31,
187,
187,
38247,
310,
20585,
7169,
13,
1959,
273,
4179,
13,
281,
667,
1436,
13546,
247,
3491,
187,
1171,
436,
3694,
285,
2330,
10097,
4367,
313,
783,
346,
31495,
8375,
281,
2968,
187,
249,
253,
9107,
1293,
12400,
13,
1690,
1293,
12291,
253,
3570,
187,
936,
897,
13,
3491,
13,
10007,
13,
17310,
13,
15452,
13,
16969,
13,
749,
21997,
13,
285,
16,
263,
5580,
187,
21592,
447,
273,
253,
9107,
13,
285,
281,
9659,
7732,
281,
5207,
253,
9107,
310,
187,
71,
662,
1428,
281,
513,
594,
13,
2256,
281,
253,
1563,
2515,
27,
187,
187,
510,
1840,
9451,
4366,
285,
436,
9214,
4366,
3091,
320,
2908,
275,
187,
455,
10125,
390,
6832,
11821,
273,
253,
9107,
15,
187,
187,
9707,
19295,
4110,
33278,
346,
1719,
4110,
995,
15002,
23181,
3481,
9103,
19329,
13,
31643,
4145,
187,
2894,
23637,
13,
31877,
17706,
5803,
25666,
5935,
3003,
15466,
3481,
20863,
13,
187,
39,
1433,
17582,
6651,
329,
20383,
20103,
4889,
36429,
1042,
6764,
2637,
17260,
15,
2949,
7651,
30609,
32221,
3003,
187,
37482,
16902,
4145,
28827,
43227,
8728,
34745,
6651,
9103,
46533,
13,
32024,
4145,
19359,
187,
18206,
13845,
13,
33206,
2949,
2933,
37457,
3481,
32833,
13,
34915,
4145,
35497,
13,
34984,
10727,
13,
187,
7310,
3481,
4145,
2949,
42867,
8286,
9277,
3003,
19295,
4145,
3003,
19226,
4145,
19359,
49731,
19212,
2949,
187,
9707,
19295,
15,
187,
187,
8480,
187,
4,
17331,
4772,
30915,
64,
41,
876,
187,
4,
3182,
4772,
30915,
64,
41,
876,
187,
187,
565,
260,
23654,
64,
5800,
304,
262,
9,
540,
260,
5349,
187,
565,
260,
23654,
64,
261,
12973,
9,
540,
260,
5349,
187,
565,
260,
23654,
64,
261,
23725,
9,
540,
260,
5349,
187,
565,
260,
23654,
64,
261,
1637,
9,
540,
260,
5349,
187,
565,
260,
23654,
64,
261,
267,
6370,
9,
540,
260,
5349,
187,
565,
260,
23654,
64,
261,
3845,
9,
540,
260,
5349,
187,
565,
260,
23654,
64,
739,
4511,
9,
540,
260,
5349,
187,
187,
565,
260,
23654,
64,
85,
276,
3803,
9,
540,
260,
5349,
187,
565,
260,
23654,
64,
34776,
1017,
9,
540,
260,
5349,
187,
187,
4,
7287,
1380,
4772,
30915,
64,
41,
876,
187
] | /*
Copyright (c) 2015 Cromulence LLC
Authors: Cromulence <[email protected]>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/
#ifndef __CTYPE_H__
#define __CTYPE_H__
int cgc_isdigit( int c );
int cgc_islower( int c );
int cgc_isupper( int c );
int cgc_isalpha( int c );
int cgc_isalnum( int c );
int cgc_isprint( int c );
int cgc_isspace( int c );
int cgc_toupper( int c );
int cgc_tolower( int c );
#endif // __CTYPE_H__
|
214,434 | Github | [
187,
283,
187,
283,
5270,
2605,
323,
2829,
2634,
4537,
12788,
64,
2437,
65,
187,
283,
187,
187,
25875,
22454,
2634,
4537,
12788,
64,
2437,
65,
313,
187,
50276,
65,
2437,
64,
301,
65,
540,
9,
883,
10,
5803,
5812,
13,
187,
50276,
65,
10008,
65,
38021,
9,
10637,
10,
5803,
5812,
13,
187,
50276,
3175,
44825,
25111,
50276,
37428,
2437,
64,
301,
27362,
187,
10,
47000,
7570,
30,
688,
2369,
8904,
29339,
30752,
10452,
30,
77,
5009,
18,
28,
187,
187,
283,
187,
283,
5270,
2605,
323,
2829,
2634,
4537,
12788,
64,
881,
65,
187,
283,
187,
187,
25875,
22454,
2634,
4537,
12788,
64,
881,
65,
313,
187,
50276,
65,
4537,
12788,
64,
301,
65,
540,
9,
883,
10,
5803,
5812,
13,
187,
50276,
65,
10008,
65,
38021,
9,
10637,
10,
5803,
5812,
13,
187,
50276,
65,
8992,
64,
17759,
65,
38021,
9,
10637,
10,
5803,
5812,
13,
187,
50276,
3175,
44825,
25111,
50276,
37428,
4537,
12788,
64,
301,
27362,
187,
10,
47000,
7570,
30,
688,
2369,
8904,
29339,
30752,
10452,
30,
77,
5009,
18,
28,
187,
187,
283,
187,
283,
5270,
2605,
323,
2829,
2634,
4537,
12788,
64,
29042,
65,
187,
283,
187,
187,
25875,
22454,
2634,
4537,
12788,
64,
29042,
65,
313,
187,
50276,
65,
4537,
12788,
64,
881,
65,
540,
9,
883,
10,
5803,
5812,
13,
187,
50276,
65,
4537,
12788,
64,
2437,
65,
540,
9,
883,
10,
5803,
5812,
13,
187,
50276,
3175,
44825,
25111,
50276,
37428,
4537,
12788,
64,
881,
46618,
4537,
12788,
64,
2437,
65,
582,
187,
50276,
13888,
2634,
4537,
12788,
64,
881,
64,
2364,
65,
29523,
4537,
12788,
64,
881,
65,
582,
187,
50276,
13888,
2634,
4537,
12788,
64,
2437,
64,
2364,
65,
29523,
4537,
12788,
64,
2437,
65,
582,
187,
50276,
31700,
5214,
7999,
2634,
17,
64,
2358,
65,
6651,
38,
13003,
25111,
29523,
4537,
12788,
64,
881,
27362,
5689,
38064,
20712,
1410,
2634,
4537,
12788,
64,
881,
65,
29523,
4537,
12788,
64,
301,
27362,
8160,
6202,
33023,
330,
30104,
24259,
8160,
44556,
330,
30104,
24259,
13,
187,
50276,
31700,
5214,
7999,
2634,
17,
64,
2090,
65,
6651,
38,
13003,
25111,
29523,
4537,
12788,
64,
2437,
27362,
5689,
38064,
20712,
1410,
2634,
4537,
12788,
64,
2437,
65,
29523,
2437,
64,
301,
27362,
8160,
6202,
33023,
330,
30104,
24259,
8160,
44556,
330,
30104,
24259,
187,
10,
47000,
7570,
30,
688,
2369,
8904,
29339,
30752,
10452,
30,
77,
5009,
18,
28,
187,
187,
283,
187,
283,
5733,
362,
13409,
4764,
281,
253,
966,
2829,
187,
283,
187,
187,
1556,
4827,
22454,
2634,
2437,
65,
38313,
362,
13409,
38021,
9,
10637,
10,
846,
2634,
25902,
65,
28,
535
] |
--
-- Table structure for table `useragent_class`
--
CREATE TABLE `useragent_class` (
`class_id` int(11) NOT NULL,
`description` varchar(255) NOT NULL,
PRIMARY KEY (`class_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Table structure for table `useragent_type`
--
CREATE TABLE `useragent_type` (
`useragent_id` int(11) NOT NULL,
`description` varchar(255) NOT NULL,
`match_expression` varchar(255) NOT NULL,
PRIMARY KEY (`useragent_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Table structure for table `useragent_mapping`
--
CREATE TABLE `useragent_mapping` (
`useragent_type` int(11) NOT NULL,
`useragent_class` int(11) NOT NULL,
PRIMARY KEY (`useragent_type`,`useragent_class`),
KEY `useragent_type_key` (`useragent_type`),
KEY `useragent_class_key` (`useragent_class`),
CONSTRAINT `0_68` FOREIGN KEY (`useragent_type`) REFERENCES `useragent_type` (`useragent_id`) ON DELETE CASCADE ON UPDATE CASCADE,
CONSTRAINT `0_69` FOREIGN KEY (`useragent_class`) REFERENCES `useragent_class` (`class_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Add vlan parameter to the class table
--
ALTER TABLE `class` ADD vlan varchar(255) after `disable`;
|
214,435 | Github | [
3122,
187,
475,
50276,
20968,
4332,
380,
9271,
58,
8962,
8049,
26940,
15,
1876,
3570,
10827,
15,
187,
475,
187,
475,
50276,
11244,
273,
436,
2603,
2127,
310,
17886,
407,
247,
32327,
14,
4826,
7981,
187,
475,
50276,
3529,
476,
320,
1119,
275,
253,
21826,
1873,
275,
253,
5230,
273,
253,
2603,
187,
475,
50276,
12588,
15,
743,
3081,
12720,
2867,
3570,
4098,
476,
320,
1119,
187,
475,
50276,
249,
253,
1873,
36224,
24937,
15,
1876,
15979,
2199,
4477,
778,
187,
475,
50276,
1257,
1119,
275,
253,
31501,
16902,
1873,
275,
253,
5230,
273,
253,
2603,
5202,
15,
187,
1738,
187,
187,
4,
3709,
346,
4658,
90,
8962,
16,
7527,
15,
73,
3,
187,
187,
4,
3709,
654,
8271,
15,
73,
31,
187,
4,
3709,
654,
2703,
15,
73,
31,
187,
187,
4,
3709,
346,
4658,
90,
8962,
16,
19411,
64,
301,
15,
73,
3,
187,
4,
3709,
346,
4658,
90,
8962,
16,
11139,
274,
64,
20619,
15,
73,
3,
50276,
605,
1198,
27671,
3493,
1351,
187,
4,
3709,
346,
4658,
90,
8962,
16,
736,
15,
73,
3,
187,
4,
3709,
346,
4658,
90,
8962,
16,
7527,
64,
736,
15,
73,
3,
187,
187,
4,
16238,
4772,
68,
11095,
11095,
187,
12361,
5135,
90,
8962,
551,
187,
19560,
346,
36,
3,
551,
187,
4,
7287,
187,
187,
4659,
4772,
17243,
540,
16508,
9,
565,
362,
10,
551,
187,
50276,
2309,
362,
10122,
470,
3736,
362,
1163,
428,
87,
28,
187,
94,
187,
187,
4,
3182,
9242,
4449,
40419,
9,
87,
13,
247,
13,
256,
10,
313,
87,
654,
470,
10,
3736,
3383,
9,
1490,
87,
559,
247,
10,
11396,
256,
1228,
1163,
6048,
87,
559,
247,
10,
11396,
256,
10,
187,
187,
605,
14446,
6415,
13,
337,
16,
19,
187,
605,
831,
310,
271,
18325,
2715,
323,
13642,
1066,
247,
6415,
281,
337,
16,
19,
273,
187,
605,
697,
3236,
1979,
15,
187,
187,
4659,
2991,
14446,
3493,
1351,
10854,
19,
9,
565,
6740,
64,
3429,
13,
540,
6740,
64,
7436,
13,
187,
50254,
50274,
565,
24334,
64,
3429,
13,
540,
24334,
64,
7436,
13,
187,
50254,
50274,
565,
6740,
64,
42583,
13,
540,
24334,
64,
42583,
13,
187,
50254,
50274,
3474,
4770,
25,
11,
6740,
64,
4773,
13,
4770,
25,
11,
24334,
64,
4773,
13,
187,
50254,
50274,
14379,
33328,
10715,
19690,
10,
551,
187,
50276,
565,
340,
28,
187,
50276,
4353,
2796,
20359,
10990,
10854,
19,
2769,
3474,
4770,
25,
11,
6740,
64,
4773,
13,
27028,
13437,
64,
85,
6740,
64,
42583,
13,
187,
50254,
8531,
25,
11,
24334,
64,
4773,
13,
540,
24334,
64,
3429,
10,
426,
187,
50272,
10978,
272,
2295,
465,
9824,
11336,
3736,
14446,
10990,
10854,
19,
64,
36,
1163,
187,
50272,
9,
10978,
272,
2295,
465,
9824,
24211,
3736,
14446,
10990,
10854,
19,
24211,
64,
36,
1163,
14446,
10990,
10854,
19,
7536,
64,
36,
558,
187,
50276,
565,
4194,
64,
42583,
426,
6740,
64,
42583,
5291,
337,
28,
187,
50276,
338,
6522,
10978,
272,
10,
551,
187,
50274,
7614,
64,
4773,
7079,
6740,
64,
42583,
28,
50276,
605,
11149,
281,
8909,
10175,
15,
187,
50274,
7614,
64,
42583,
426,
470,
28,
187,
50276,
94,
187,
187,
4,
338,
2931,
9,
35183,
64,
4061,
1556,
947,
4290,
35248,
19,
64,
6603,
1139,
10,
187,
50276,
338,
313,
5089,
36,
11113,
22532,
9,
76,
36,
11113,
15413,
6603,
1139,
1228,
551,
187,
50274,
20359,
10990,
10854,
19,
426,
19690,
2295,
465,
9824,
11336,
3736,
14446,
10990,
10854,
19,
64,
6693,
64,
6603,
1139,
1163,
187,
50270,
9,
10978,
272,
2295,
465,
9824,
24211,
3736,
14446,
10990,
10854,
19,
24211,
64,
6693,
64,
6603,
1139,
1163,
187,
50270,
20359,
10990,
10854,
19,
7536,
64,
6693,
64,
6603,
1139,
558,
187,
50274,
338,
313,
1830,
64,
1556,
42343,
9,
19335,
64,
3429,
13,
1668,
1228,
551,
187,
50272,
20359,
10990,
10854,
19,
426,
19690,
2295,
465,
9824,
11336,
3736,
14446,
10990,
10854,
19,
64,
6603,
1139,
1163,
187,
50268,
9,
10978,
272,
2295,
465,
9824,
24211,
3736,
14446,
10990,
10854,
19,
24211,
64,
6603,
1139,
1163,
187,
50268,
20359,
10990,
10854,
19,
7536,
64,
6603,
1139,
558,
187,
50274,
94,
187,
50276,
94,
187,
4,
7287,
187,
4,
338,
2931,
9,
35183,
64,
4061,
1556,
947,
4290,
35248,
19,
64,
3528,
2354,
20,
10,
187,
50276,
338,
313,
5089,
36,
11113,
22532,
9,
76,
36,
11113,
15413,
3528,
2354,
20,
1228,
551,
187,
50274,
20359,
10990,
10854,
19,
426,
19690,
2295,
465,
9824,
11336,
3736,
14446,
10990,
10854,
19,
64,
6693,
64,
3528,
2354,
20,
1163,
187,
50270,
9,
10978,
272,
2295,
465,
9824,
24211,
3736,
14446,
10990,
10854,
19,
24211,
64,
6693,
64,
3528,
2354,
20,
1163,
187,
50270,
20359,
10990,
10854,
19,
7536,
64,
6693,
64,
3528,
2354,
20,
558,
187,
50274,
338,
313,
1830,
64,
1556,
42343,
9,
19335,
64,
3429,
13,
1668,
1228,
551,
187,
50272,
20359,
10990,
10854,
19,
426,
19690,
2295,
465,
9824,
11336,
3736,
14446,
10990,
10854,
19,
64,
3528,
2354,
20,
1163,
187,
50268,
9,
10978,
272,
2295,
465,
9824,
24211,
3736,
14446,
10990,
10854,
19,
24211,
64,
3528,
2354,
20,
1163,
187,
50268,
20359,
10990,
10854,
19,
7536,
64,
3528,
2354,
20,
558,
187,
50274,
94,
187,
50276,
94,
187,
4,
7287,
187,
4,
338,
2931,
9,
35183,
64,
4061,
1556,
947,
4290,
35248,
19,
64,
5851,
57,
19,
10,
187,
50276,
338,
313,
5089,
36,
11113,
22532,
9,
76,
36,
11113,
15413,
5851,
57,
19,
1228,
551,
187,
50274,
20359,
10990,
10854,
19,
426,
19690,
2295,
465,
9824,
11336,
3736,
14446,
10990,
10854,
19,
64,
6693,
64,
5851,
57,
19,
1163,
187,
50270,
9,
10978,
272,
2295,
465,
9824,
24211,
3736,
14446,
10990,
10854,
19,
24211,
64,
6693,
64,
5851,
57,
19,
1163,
187,
50270,
20359,
10990,
10854,
19,
7536,
64,
6693,
64,
5851,
57,
19,
558,
187,
50274,
338,
313,
1830,
64,
1556,
42343,
9,
19335,
64,
3429,
13,
4567,
1228,
551,
187,
50272,
20359,
10990,
10854,
19,
426,
19690,
2295,
465,
9824,
11336,
3736,
14446,
10990,
10854,
19,
64,
5851,
57,
19,
1163,
187,
50268,
9,
10978,
272,
2295,
465,
9824,
24211,
3736,
14446,
10990,
10854,
19,
24211,
64,
5851,
57,
19,
1163,
187,
50268,
20359,
10990,
10854,
19,
7536,
64,
5851,
57,
19,
558,
187,
50274,
94,
187,
50276,
94,
187,
4,
7287,
187,
4,
338,
2931,
9,
35183,
64,
4061,
1556,
947,
4290,
35248,
19,
64,
5942,
3175,
19,
10,
187,
50276,
338,
313,
5089,
36,
11113,
22532,
9,
76,
36,
11113,
15413,
5942,
3175,
19,
10,
3857,
4110,
64,
1556,
42343,
9,
7614,
64,
4773,
13,
577,
10,
3857,
187,
50272,
1830,
64,
1556,
42343,
9,
7614,
64,
42583,
13,
577,
10,
3857,
4110,
64,
1556,
42343,
9,
736,
64,
42583,
13,
577,
10,
3857,
187,
50272,
1830,
64,
1556,
42343,
9,
19335,
64,
4773,
13,
577,
10,
3857,
4110,
64,
1556,
42343,
9,
19335,
64,
42583,
13,
577,
1228,
551,
187,
50274,
20359,
10990,
10854,
19,
426,
19690,
3736,
187,
50270,
20359,
10990,
10854,
19,
7536,
64,
5942,
3175,
19,
1163,
14446,
10990,
10854,
19,
64,
5942,
3175,
19,
28,
187,
50276,
94,
187,
4,
7287,
535,
50276,
338,
313,
10978,
272,
2295,
465,
9824,
24211,
10,
551,
187,
50274,
7614,
64,
42583,
426,
470,
28,
187,
50276,
94,
187,
50276,
605,
24202,
9,
15662,
1116,
472,
2262,
32057,
949,
2603,
4898,
281,
1581,
8909,
4898,
15,
187,
50276,
1542,
313,
90,
426,
470,
28,
340,
654,
24334,
64,
7436,
28,
12996,
90,
10,
551,
187,
50274,
20359,
10990,
10854,
19,
9,
7614,
64,
4773,
13,
6740,
64,
42583,
13,
24334,
64,
4773,
13,
24334,
64,
3429,
558,
187,
50274,
7614,
64,
4773,
7079,
4194,
64,
42583,
28,
187,
50274,
19335,
64,
4773,
7079,
24334,
64,
42583,
28,
187,
50276,
94,
187,
94,
187,
187,
4659,
2991,
14446,
3493,
1351,
10854,
19,
64,
1036,
9,
565,
6740,
64,
3429,
13,
540,
6740,
64,
7436,
13,
187,
50254,
50271,
565,
24334,
64,
3429,
13,
540,
24334,
64,
7436,
13,
187,
50254,
50271,
565,
6740,
64,
42583,
13,
540,
24334,
64,
42583,
13,
187,
50254,
50271,
3474,
4770,
1036,
11,
6740,
64,
4773,
13,
4770,
1036,
11,
24334,
64,
4773,
13,
187,
50254,
50271,
14379,
33328,
10715,
19690,
10,
551,
187,
50276,
565,
340,
28,
187,
50276,
4353,
2796,
20359,
10990,
10854,
19,
2769,
3474,
4770,
1036,
11,
6740,
64,
4773,
13,
27028,
13437,
64,
85,
6740,
64,
42583,
13,
187,
50254,
8531,
1036,
11,
24334,
64,
4773,
13,
540,
24334,
64,
3429,
10,
426,
187,
50274,
10978,
272,
2295,
465,
9824,
11336,
3736,
14446,
10990,
10854,
19,
64,
1036,
64,
36,
1163,
187,
50270,
9,
10978,
272,
2295,
465,
9824,
24211,
3736,
14446,
10990,
10854,
19,
24211,
64,
1036,
64,
36,
1163,
187,
50270,
20359,
10990,
10854,
19,
7536,
64,
1036,
64,
36,
558,
187,
50276,
565,
4194,
64,
42583,
426,
6740,
64,
42583,
5291,
337,
28,
187,
50276,
338,
6522,
10978,
272,
10,
551,
187,
50274,
7614,
64,
4773,
7079,
6740,
64,
42583,
28,
50276,
605,
11149,
281,
8909,
10175,
15,
187,
50274,
7614,
64,
42583,
426,
470,
28,
187,
50276,
94,
187,
187,
4,
338,
2931,
9,
35183,
64,
4061,
1556,
947,
4290,
35248,
19,
64,
1036,
64,
6603,
1139,
10,
187,
50276,
338,
313,
5089,
36,
11113,
22532,
9,
76,
36,
11113,
15413,
6603,
1139,
10,
3857,
4110,
64,
1556,
42343,
9,
19335,
64,
3429,
13,
1668,
1228,
551,
187,
50274,
20359,
10990,
10854,
19,
426,
19690,
3736,
14446,
10990,
10854,
19,
7536,
64,
1036,
64,
6603,
1139,
1163,
187,
50270,
20359,
10990,
10854,
19,
64,
1036,
64,
6603,
1139,
28,
187,
50276,
94,
187,
4,
7287,
187,
4,
338,
2931,
9,
35183,
64,
4061,
1556,
947,
4290,
35248,
19,
64,
1036,
64,
52,
2354,
19,
10,
187,
50276,
338,
313,
5089,
36,
11113,
22532,
9,
76,
36,
11113,
15413,
52,
2354,
19,
10,
3857,
4110,
64,
1556,
42343,
9,
19335,
64,
3429,
13,
1668,
1228,
551,
187,
50274,
20359,
10990,
10854,
19,
426,
19690,
2295,
465,
9824,
11336,
3736,
14446,
10990,
10854,
19,
64,
1036,
64,
52,
2354,
19,
1163,
187,
50270,
9,
10978,
272,
2295,
465,
9824,
24211,
3736,
14446,
10990,
10854,
19,
24211,
64,
1036,
64,
52,
2354,
19,
1163,
187,
50270,
20359,
10990,
10854,
19,
7536,
64,
1036,
64,
52,
2354,
19,
558,
187,
50276,
94,
187,
4,
7287,
187,
4,
338,
2931,
9,
35183,
64,
4061,
1556,
947,
4290,
35248,
19,
64,
1036,
64,
5942,
3175,
19,
10,
187,
50276,
338,
313,
5089,
36,
11113,
22532,
9,
76,
36,
11113,
15413,
5942,
3175,
19,
10,
3857,
4110,
64,
1556,
42343,
9,
7614,
64,
4773,
13,
577,
10,
3857,
187,
50272,
1830,
64,
1556,
42343,
9,
7614,
64,
42583,
13,
577,
10,
3857,
4110,
64,
1556,
42343,
9,
736,
64,
42583,
13,
577,
10,
3857,
187,
50272,
1830,
64,
1556,
42343,
9,
19335,
64,
4773,
13,
577,
10,
3857,
4110,
64,
1556,
42343,
9,
19335,
64,
42583,
13,
577,
1228,
551,
187,
50274,
20359,
10990,
10854,
19,
426,
19690,
3736,
187,
50270,
20359,
10990,
10854,
19,
7536,
64,
1036,
64,
5942,
3175,
19,
1163,
14446,
10990,
10854,
19,
64,
1036,
64,
5942,
3175,
19,
28,
187,
50276,
94,
187,
4,
7287,
535,
50276,
338,
313,
10978,
272,
2295,
465,
9824,
24211,
10,
551,
187,
50274,
7614,
64,
42583,
426,
470,
28,
187,
50276,
94,
187,
50276,
605,
24202,
9,
15662,
1116,
472,
2262,
32057,
949,
2603,
4898,
281,
1581,
8909,
4898,
15,
187,
50276,
1542,
313,
90,
426,
470,
28,
340,
654,
24334,
64,
7436,
28,
12996,
90,
10,
551,
187,
50274,
20359,
10990,
10854,
19,
9,
7614,
64,
4773,
13,
6740,
64,
42583,
13,
24334,
64,
4773,
13,
24334,
64,
3429,
558,
187,
50274,
7614,
64,
4773,
7079,
4194,
64,
42583,
28,
187,
50274,
19335,
64,
4773,
7079,
24334,
64,
42583,
28,
187,
50276,
94,
187,
94,
187,
187,
605,
14446,
6415,
13,
337,
16,
21,
187,
605,
831,
310,
271,
18325,
2715,
323,
13642,
1066,
247,
6415,
281,
337,
16,
21,
273,
187,
605,
697,
3236,
1979,
15,
187,
187,
4659,
2991,
14446,
3493,
1351,
10854,
21,
9,
565,
6740,
64,
3429,
13,
540,
6740,
64,
7436,
13,
187,
50254,
50274,
565,
24334,
64,
3429,
13,
540,
24334,
64,
7436,
13,
187,
50254,
50274,
565,
6740,
64,
42583,
13,
540,
24334,
64,
42583,
13,
187,
50254,
50274,
3474,
4770,
25,
11,
6740,
64,
4773,
13,
4770,
25,
11,
24334,
64,
4773,
13,
187,
50254,
50274,
14379,
33328,
10715,
19690,
10,
551,
187,
50276,
565,
340,
28,
187,
50276,
4353,
2796,
20359,
10990,
10854,
21,
2769,
3474,
4770,
25,
11,
6740,
64,
4773,
13,
27028,
13437,
64,
85,
6740,
64,
42583,
13,
187,
50254,
8531,
25,
11,
24334,
64,
4773,
13,
540,
24334,
64,
3429,
10,
426,
187,
50272,
10978,
272,
3736,
14446,
10990,
10854,
21,
7536,
64,
36,
1163,
14446,
10990,
10854,
21,
64,
36,
28,
187,
50276,
565,
4194,
64,
42583,
426,
6740,
64,
42583,
5291,
374,
28,
187,
50276,
338,
6522,
10978,
272,
10,
551,
187,
50274,
7614,
64,
4773,
7079,
6740,
64,
42583,
475,
374,
28,
50276,
605,
11149,
281,
4194,
374,
15,
187,
50274,
7614,
64,
42583,
426,
470,
28,
187,
50276,
94,
187,
4,
338,
2931,
9,
35183,
64,
4061,
1556,
947,
4290,
35248,
21,
64,
6603,
1139,
10,
187,
50276,
338,
313,
5089,
36,
11113,
22532,
9,
76,
36,
11113,
15413,
6603,
1139,
1228,
551,
187,
50274,
20359,
10990,
10854,
21,
426,
19690,
3736,
187,
50270,
20359,
10990,
10854,
21,
7536,
64,
6693,
64,
6603,
1139,
1163,
14446,
10990,
10854,
21,
64,
6693,
64,
6603,
1139,
28,
187,
50274,
338,
313,
1830,
64,
1556,
42343,
9,
19335,
64,
3429,
13,
854,
1228,
551,
187,
50272,
20359,
10990,
10854,
21,
426,
19690,
3736,
14446,
10990,
10854,
21,
7536,
64,
6603,
1139,
1163,
14446,
10990,
10854,
21,
64,
6603,
1139,
28,
187,
50274,
94,
187,
50276,
94,
187,
4,
7287,
187,
4,
338,
2931,
9,
35183,
64,
4061,
1556,
947,
4290,
35248,
21,
64,
3528,
2354,
20,
10,
187,
50276,
338,
313,
5089,
36,
11113,
22532,
9,
76,
36,
11113,
15413,
3528,
2354,
20,
1228,
551,
187,
50274,
20359,
10990,
10854,
21,
426,
19690,
3736,
187,
50270,
20359,
10990,
10854,
21,
7536,
64,
6693,
64,
3528,
2354,
20,
1163,
14446,
10990,
10854,
21,
64,
6693,
64,
3528,
2354,
20,
28,
187,
50274,
338,
313,
1830,
64,
1556,
42343,
9,
19335,
64,
3429,
13,
854,
1228,
551,
187,
50272,
20359,
10990,
10854,
21,
426,
19690,
3736,
14446,
10990,
10854,
21,
7536,
64,
3528,
2354,
20,
1163,
14446,
10990,
10854,
21,
64,
3528,
2354,
20,
28,
187,
50274,
94,
187,
50276,
94,
187,
4,
7287,
187,
4,
338,
2931,
9,
35183,
64,
4061,
1556,
947,
4290,
35248,
21,
64,
5851,
57,
19,
10,
187,
50276,
338,
313,
5089,
36,
11113,
22532,
9,
76,
36,
11113,
15413,
5851,
57,
19,
1228,
551,
187,
50274,
20359,
10990,
10854,
21,
426,
19690,
3736,
187,
50270,
20359,
10990,
10854,
21,
7536,
64,
6693,
64,
5851,
57,
19,
1163,
14446,
10990,
10854,
21,
64,
6693,
64,
5851,
57,
19,
28,
187,
50274,
338,
313,
1830,
64,
1556,
42343,
9,
19335,
64,
3429,
13,
1668,
1228,
551,
187,
50272,
20359,
10990,
10854,
21,
426,
19690,
3736,
14446,
10990,
10854,
21,
7536,
64,
5851,
57,
19,
1163,
14446,
10990,
10854,
21,
64,
5851,
57,
19,
28,
187,
50274,
94,
187,
50276,
94,
187,
4,
7287,
187,
4,
338,
2931,
9,
35183,
64,
4061,
1556,
947,
4290,
35248,
21,
64,
5942,
3175,
19,
10,
187,
50276,
338,
313,
5089,
36,
11113,
22532,
9,
76,
36,
11113,
15413,
5942,
3175,
19,
10,
3857,
4110,
64,
1556,
42343,
9,
736,
64,
42583,
13,
577,
10,
3857,
187,
50272,
1830,
64,
1556,
42343,
9,
7614,
64,
4773,
13,
577,
10,
3857,
4110,
64,
1556,
42343,
9,
7614,
64,
42583,
13,
577,
10,
3857,
187,
50272,
1830,
64,
1556,
42343,
9,
19335,
64,
4773,
13,
577,
10,
3857,
4110,
64,
1556,
42343,
9,
19335,
64,
42583,
13,
577,
1228,
551,
187,
50274,
20359,
10990,
10854,
21,
426,
19690,
3736,
187,
50270,
20359,
10990,
10854,
21,
7536,
64,
5942,
3175,
19,
1163,
14446,
10990,
10854,
21,
64,
5942,
3175,
19,
28,
187,
50276,
94,
187,
4,
7287,
535,
50276,
338,
313,
10978,
272,
2295,
465,
9824,
24211,
10,
551,
187,
50274,
7614,
64,
42583,
426,
470,
28,
187,
50276,
94,
187,
50276,
1542,
313,
90,
426,
470,
28,
340,
654,
24334,
64,
7436,
28,
12996,
90,
10,
551,
187,
50274,
20359,
10990,
10854,
21,
9,
7614,
64,
4773,
13,
6740,
64,
42583,
13,
24334,
64,
4773,
13,
24334,
64,
3429,
558,
187,
50274,
7614,
64,
4773,
7079,
4194,
64,
42583,
28,
187,
50274,
19335,
64,
4773,
7079,
24334,
64,
42583,
28,
187,
50276,
94,
187,
94,
187,
187,
4659,
2991,
14446,
3493,
1351,
10854,
21,
64,
1036,
9,
565,
6740,
64,
3429,
13,
540,
6740,
64,
7436,
13,
187,
50254,
50271,
565,
24334,
64,
3429,
13,
540,
24334,
64,
7436,
13,
187,
50254,
50271,
565,
6740,
64,
42583,
13,
540,
24334,
64,
42583,
13,
187,
50254,
50271,
3474,
4770,
1036,
11,
6740,
64,
4773,
13,
4770,
1036,
11,
24334,
64,
4773,
13,
187,
50254,
50271,
14379,
33328,
10715,
19690,
10,
551,
187,
50276,
565,
340,
28,
187,
50276,
4353,
2796,
20359,
10990,
10854,
21,
2769,
3474,
4770,
1036,
11,
6740,
64,
4773,
13,
27028,
13437,
64,
85,
6740,
64,
42583,
13,
187,
50254,
8531,
1036,
11,
24334,
64,
4773,
13,
540,
24334,
64,
3429,
10,
426,
187,
50272,
10978,
272,
3736,
14446,
10990,
10854,
21,
7536,
64,
1036,
64,
36,
1163,
14446,
10990,
10854,
21,
64,
1036,
64,
36,
28,
187,
50276,
565,
4194,
64,
42583,
426,
6740,
64,
42583,
5291,
374,
28,
187,
50276,
338,
6522,
10978,
272,
10,
551,
187,
50274,
7614,
64,
4773,
7079,
6740,
64,
42583,
475,
374,
28,
50276,
605,
11149,
281,
4194,
374,
15,
187,
50274,
7614,
64,
42583,
426,
470,
28,
187,
50276,
94,
187,
4,
338,
2931,
9,
35183,
64,
4061,
1556,
947,
4290,
35248,
21,
64,
1036,
64,
6603,
1139,
10,
187,
50276,
338,
313,
5089,
36,
11113,
22532,
9,
76,
36,
11113,
15413,
6603,
1139,
10,
3857,
4110,
64,
1556,
42343,
9,
19335,
64,
3429,
13,
854,
1228,
551,
187,
50274,
20359,
10990,
10854,
21,
426,
19690,
3736,
14446,
10990,
10854,
21,
7536,
64,
1036,
64,
6603,
1139,
1163,
187,
50270,
20359,
10990,
10854,
21,
64,
1036,
64,
6603,
1139,
28,
187,
50276,
94,
187,
4,
7287,
187,
4,
338,
2931,
9,
35183,
64,
4061,
1556,
947,
4290,
35248,
21,
64,
1036,
64,
52,
2354,
19,
10,
187,
50276,
338,
313,
5089,
36,
11113,
22532,
9,
76,
36,
11113,
15413,
52,
2354,
19,
10,
3857,
4110,
64,
1556,
42343,
9,
19335,
64,
3429,
13,
854,
1228,
551,
187,
50274,
20359,
10990,
10854,
21,
426,
19690,
3736,
14446,
10990,
10854,
21,
7536,
64,
1036,
64,
52,
2354,
19,
1163,
187,
50270,
20359,
10990,
10854,
21,
64,
1036,
64,
52,
2354,
19,
28,
187,
50276,
94,
187,
4,
7287,
187,
4,
338,
2931,
9,
35183,
64,
4061,
1556,
947,
4290,
35248,
21,
64,
1036,
64,
5942,
3175,
19,
10,
187,
50276,
338,
313,
5089,
36,
11113,
22532,
9,
76,
36,
11113,
15413,
5942,
3175,
19,
10,
3857,
4110,
64,
1556,
42343,
9,
736,
64,
42583,
13,
577,
10,
3857,
187,
50272,
1830,
64,
1556,
42343,
9,
7614,
64,
4773,
13,
577,
10,
3857,
4110,
64,
1556,
42343,
9,
7614,
64,
42583,
13,
577,
10,
3857,
187,
50272,
1830,
64,
1556,
42343,
9,
19335,
64,
4773,
13,
577,
10,
3857,
4110,
64,
1556,
42343,
9,
19335,
64,
42583,
13,
577,
1228,
551,
187,
50274,
20359,
10990,
10854,
21,
426,
19690,
3736,
187,
50270,
20359,
10990,
10854,
21,
7536,
64,
1036,
64,
5942,
3175,
19,
1163,
14446,
10990,
10854,
21,
64,
1036,
64,
5942,
3175,
19,
28,
187,
50276,
94,
187,
4,
7287,
535,
50276,
338,
313,
10978,
272,
2295,
465,
9824,
24211,
10,
551,
187,
50274,
7614,
64,
42583,
426,
470,
28,
187,
50276,
94,
187,
50276,
1542,
313,
90,
426,
470,
28,
340,
654,
24334,
64,
7436,
28,
12996,
90,
10,
551,
187,
50274,
20359,
10990,
10854,
21,
9,
7614,
64,
4773,
13,
6740,
64,
42583,
13,
24334,
64,
4773,
13,
24334,
64,
3429,
558,
187,
50274,
7614,
64,
4773,
7079,
4194,
64,
42583,
28,
187,
50274,
19335,
64,
4773,
7079,
24334,
64,
42583,
28,
187,
50276,
94,
187,
94,
187,
187,
605,
14446,
6415,
1066,
13,
495,
16,
21,
187,
187,
4659,
2991,
14446,
3493,
1351,
10854,
1706,
9,
565,
6740,
64,
3429,
13,
540,
6740,
64,
7436,
13,
187,
50254,
50273,
565,
24334,
64,
3429,
13,
540,
24334,
64,
7436,
13,
187,
50254,
50273,
565,
6740,
64,
42583,
13,
540,
24334,
64,
42583,
13,
187,
50254,
50273,
3474,
4770,
25,
11,
6740,
64,
4773,
13,
4770,
25,
11,
24334,
64,
4773,
13,
187,
50254,
50273,
14379,
33328,
10715,
19690,
10,
551,
187,
50276,
565,
340,
28,
187,
50276,
4353,
2796,
20359,
10990,
10854,
1706,
64,
17,
2769,
3474,
4770,
25,
11,
6740,
64,
4773,
13,
27028,
13437,
64,
85,
6740,
64,
42583,
13,
187,
50254,
50275,
8531,
25,
11,
24334,
64,
4773,
13,
540,
24334,
64,
3429,
558,
187,
50276,
4353,
2796,
20359,
10990,
10854,
1706,
64,
18,
2769,
3474,
4770,
25,
11,
6740,
64,
4773,
13,
27028,
13437,
64,
85,
6740,
64,
42583,
13,
187,
50254,
50275,
8531,
25,
11,
24334,
64,
4773,
13,
540,
24334,
64,
3429,
558,
187,
50276,
3474,
540,
5806,
64,
42583,
426,
313,
10978,
272,
2295,
465,
9824,
24211,
10,
3736,
470,
1163,
6740,
64,
42583,
28,
187,
50276,
8271,
9,
19335,
64,
3429,
2462,
495,
2295,
470,
558,
187,
50276,
338,
6522,
10978,
272,
10,
551,
187,
50274,
20359,
10990,
10854,
1706,
64,
17,
426,
14446,
10990,
10854,
1706,
64,
36,
28,
187,
50274,
20359,
10990,
10854,
1706,
64,
18,
426,
14446,
10990,
10854,
1706,
64,
36,
28,
187,
50276,
94,
2010,
551,
187,
50274,
20359,
10990,
10854,
1706,
64,
17,
426,
14446,
10990,
10854,
1706,
64,
17,
64,
7536,
64,
36,
28,
187,
50274,
20359,
10990,
10854,
1706,
64,
18,
426,
14446,
10990,
10854,
1706,
64,
18,
64,
7536,
64,
36,
28,
187,
50276,
94,
187,
4,
338,
2931,
9,
35183,
64,
4061,
1556,
947,
4290,
35248,
1706,
64,
6603,
1139,
10,
187,
50276,
338,
313,
5089,
36,
11113,
22532,
9,
76,
36,
11113,
15413,
6603,
1139,
1228,
551,
187,
50274,
338,
6522,
10978,
272,
10,
551,
187,
50272,
20359,
10990,
10854,
1706,
64,
17,
426,
14446,
10990,
10854,
1706,
64,
6693,
64,
6603,
1139,
28,
187,
50272,
20359,
10990,
10854,
1706,
64,
18,
426,
14446,
10990,
10854,
1706,
64,
6693,
64,
6603,
1139,
28,
187,
50274,
94,
2010,
551,
187,
50272,
20359,
10990,
10854,
1706,
64,
17,
426,
14446,
10990,
10854,
1706,
64,
17,
64,
7536,
64,
6693,
64,
6603,
1139,
28,
187,
50272,
20359,
10990,
10854,
1706,
64,
18,
426,
14446,
10990,
10854,
1706,
64,
18,
64,
7536,
64,
6693,
64,
6603,
1139,
28,
187,
50274,
94,
187,
50274,
338,
313,
19335,
64,
3429,
2462,
2164,
2295,
470,
10,
551,
187,
50272,
338,
6522,
10978,
272,
10,
551,
187,
50270,
20359,
10990,
10854,
1706,
64,
17,
426,
14446,
10990,
10854,
1706,
64,
6603,
1139,
28,
187,
50270,
20359,
10990,
10854,
1706,
64,
18,
426,
14446,
10990,
10854,
1706,
64,
6603,
1139,
28,
187,
50272,
94,
2010,
551,
187,
50270,
20359,
10990,
10854,
1706,
64,
17,
426,
14446,
10990,
10854,
1706,
64,
17,
64,
7536,
64,
6603,
1139,
28,
187,
50270,
20359,
10990,
10854,
1706,
64,
18,
426,
14446,
10990,
10854,
1706,
64,
18,
64,
7536,
64,
6603,
1139,
28,
187,
50272,
94,
187,
50274,
94,
187,
50276,
94,
187,
4,
7287,
187,
4,
338,
2931,
9,
35183,
64,
4061,
1556,
947,
4290,
35248,
1706,
64,
3528,
2354,
20,
10,
187,
50276,
338,
313,
5089,
36,
11113,
22532,
9,
76,
36,
11113,
15413,
3528,
2354,
20,
1228,
551,
187,
50274,
338,
6522,
10978,
272,
10,
551,
187,
50272,
20359,
10990,
10854,
1706,
64,
17,
426,
14446,
10990,
10854,
1706,
64,
6693,
64,
3528,
2354,
20,
28,
187,
50272,
20359,
10990,
10854,
1706,
64,
18,
426,
14446,
10990,
10854,
1706,
64,
6693,
64,
3528,
2354,
20,
28,
187,
50274,
94,
2010,
551,
187,
50272,
20359,
10990,
10854,
1706,
64,
17,
426,
14446,
10990,
10854,
1706,
64,
17,
64,
7536,
64,
6693,
64,
3528,
2354,
20,
28,
187,
50272,
20359,
10990,
10854,
1706,
64,
18,
426,
14446,
10990,
10854,
1706,
64,
18,
64,
7536,
64,
6693,
64,
3528,
2354,
20,
28,
187,
50274,
94,
187,
50274,
338,
313,
19335,
64,
3429,
2462,
2164,
2295,
470,
10,
551,
187,
50272,
338,
6522,
10978,
272,
10,
551,
187,
50270,
20359,
10990,
10854,
1706,
64,
17,
426,
14446,
10990,
10854,
1706,
64,
3528,
2354,
20,
28,
187,
50270,
20359,
10990,
10854,
1706,
64,
18,
426,
14446,
10990,
10854,
1706,
64,
3528,
2354,
20,
28,
187,
50272,
94,
2010,
551,
187,
50270,
20359,
10990,
10854,
1706,
64,
17,
426,
14446,
10990,
10854,
1706,
64,
17,
64,
7536,
64,
3528,
2354,
20,
28,
187,
50270,
20359,
10990,
10854,
1706,
64,
18,
426,
14446,
10990,
10854,
1706,
64,
18,
64,
7536,
64,
3528,
2354,
20,
28,
187,
50272,
94,
187,
50274,
94,
187,
50276,
94,
187,
4,
7287,
187,
4,
338,
2931,
9,
35183,
64,
4061,
1556,
947,
4290,
35248,
1706,
64,
5942,
3175,
19,
10,
187,
50276,
338,
313,
5089,
36,
11113,
22532,
9,
76,
36,
11113,
15413,
5942,
3175,
19,
10,
3857,
313,
19335,
64,
3429,
2462,
2164,
2295,
470,
10,
3857,
187,
50272,
1830,
64,
1556,
42343,
9,
7614,
64,
4773,
13,
577,
10,
3857,
4110,
64,
1556,
42343,
9,
7614,
64,
42583,
13,
577,
10,
3857,
187,
50272,
1830,
64,
1556,
42343,
9,
19335,
64,
4773,
13,
577,
10,
3857,
4110,
64,
1556,
42343,
9,
19335,
64,
42583,
13,
577,
1228,
551,
187,
50274,
338,
6522,
10978,
272,
10,
551,
187,
50272,
20359,
10990,
10854,
1706,
64,
17,
426,
14446,
10990,
10854,
1706,
64,
5942,
3175,
19,
28,
187,
50272,
20359,
10990,
10854,
1706,
64,
18,
426,
14446,
10990,
10854,
1706,
64,
5942,
3175,
19,
28,
187,
50274,
94,
2010,
551,
187,
50272,
20359,
10990,
10854,
1706,
64,
17,
426,
14446,
10990,
10854,
1706,
64,
17,
64,
7536,
64,
5942,
3175,
19,
28,
187,
50272,
20359,
10990,
10854,
1706,
64,
18,
426,
14446,
10990,
10854,
1706,
64,
18,
64,
7536,
64,
5942,
3175,
19,
28,
187,
50274,
94,
187,
50276,
94,
187,
4,
7287,
535,
50276,
1542,
313,
90,
426,
470,
28,
340,
654,
24334,
64,
7436,
428,
374,
28,
340,
7079,
495,
10,
551,
187,
50274,
20359,
10990,
10854,
1706,
64,
17,
9,
7614,
64,
4773,
13,
5806,
64,
42583,
13,
24334,
64,
4773,
13,
24334,
64,
3429,
558,
187,
50274,
7614,
64,
4773,
7079,
6740,
64,
42583,
28,
187,
50274,
19335,
64,
4773,
7079,
24334,
64,
42583,
28,
187,
50274,
20359,
10990,
10854,
1706,
64,
18,
9,
7614,
64,
4773,
13,
5806,
64,
42583,
13,
24334,
64,
4773,
13,
24334,
64,
3429,
558,
187,
50274,
7614,
64,
4773,
7079,
6740,
64,
42583,
28,
187,
50274,
19335,
64,
4773,
7079,
24334,
64,
42583,
28,
187,
50274,
20359,
10990,
10854,
1706,
64,
17,
9,
7614,
64,
4773,
559,
6740,
64,
42583,
13,
428,
10978,
64,
42583,
13,
187,
50257,
19335,
64,
4773,
13,
24334,
64,
3429,
558,
187,
50274,
7614,
64,
4773,
7079,
6740,
64,
42583,
475,
374,
28,
187,
50274,
19335,
64,
4773,
7079,
24334,
64,
42583,
28,
187,
50276,
94,
535,
50276,
605,
6235,
404,
491,
337,
390,
374,
10175,
342,
1390,
4194,
28446,
440,
45407,
187,
50276,
338,
6048,
19335,
64,
7436,
2462,
495,
10,
2295,
374,
10,
551,
187,
50274,
20359,
10990,
10854,
1706,
64,
17,
9,
7614,
64,
4773,
13,
5806,
64,
42583,
13,
24334,
64,
4773,
13,
24334,
64,
3429,
558,
187,
50274,
7614,
64,
4773,
7079,
6740,
64,
42583,
28,
187,
50274,
19335,
64,
4773,
7079,
24334,
64,
42583,
28,
187,
50274,
20359,
10990,
10854,
1706,
64,
18,
9,
7614,
64,
4773,
13,
470,
13,
24334,
64,
4773,
13,
24334,
64,
3429,
558,
187,
50276,
94,
2010,
604,
6048,
19335,
64,
7436,
2462,
495,
10,
2295,
337,
10,
551,
187,
50274,
20359,
10990,
10854,
1706,
64,
17,
9,
7614,
64,
4773,
13,
470,
13,
24334,
64,
4773,
13,
24334,
64,
3429,
558,
187,
50276,
94,
187,
94,
187,
187,
4659,
2991,
14446,
3493,
1351,
10854,
1706,
64,
1036,
9,
565,
6740,
64,
3429,
13,
540,
6740,
64,
7436,
13,
187,
50254,
50270,
565,
24334,
64,
3429,
13,
540,
24334,
64,
7436,
13,
187,
50254,
50270,
565,
6740,
64,
42583,
13,
540,
24334,
64,
42583,
13,
187,
50254,
50270,
3474,
4770,
1036,
11,
6740,
64,
4773,
13,
4770,
1036,
11,
24334,
64,
4773,
13,
187,
50254,
50270,
14379,
33328,
10715,
19690,
10,
551,
187,
50276,
565,
340,
28,
187,
50276,
4353,
2796,
20359,
10990,
10854,
1706,
64,
17,
2769,
3474,
4770,
1036,
11,
6740,
64,
4773,
13,
27028,
13437,
64,
85,
6740,
64,
42583,
13,
187,
50254,
50275,
8531,
1036,
11,
24334,
64,
4773,
13,
540,
24334,
64,
3429,
558,
187,
50276,
4353,
2796,
20359,
10990,
10854,
1706,
64,
18,
2769,
3474,
4770,
1036,
11,
6740,
64,
4773,
13,
27028,
13437,
64,
85,
6740,
64,
42583,
13,
187,
50254,
50275,
8531,
1036,
11,
24334,
64,
4773,
13,
540,
24334,
64,
3429,
558,
187,
50276,
3474,
540,
5806,
64,
42583,
426,
313,
10978,
272,
2295,
465,
9824,
24211,
10,
3736,
470,
1163,
6740,
64,
42583,
28,
187,
50276,
8271,
9,
19335,
64,
3429,
2462,
495,
2295,
470,
558,
187,
50276,
338,
6522,
10978,
272,
10,
551,
187,
50274,
20359,
10990,
10854,
1706,
64,
17,
426,
14446,
10990,
10854,
1706,
64,
1036,
64,
36,
28,
187,
50274,
20359,
10990,
10854,
1706,
64,
18,
426,
14446,
10990,
10854,
1706,
64,
1036,
64,
36,
28,
187,
50276,
94,
2010,
551,
187,
50274,
20359,
10990,
10854,
1706,
64,
17,
426,
14446,
10990,
10854,
1706,
64,
17,
64,
7536,
64,
1036,
64,
36,
28,
187,
50274,
20359,
10990,
10854,
1706,
64,
18,
426,
14446,
10990,
10854,
1706,
64,
18,
64,
7536,
64,
1036,
64,
36,
28,
187,
50276,
94,
187,
4,
338,
2931,
9,
35183,
64,
4061,
1556,
947,
4290,
35248,
1706,
64,
1036,
64,
6603,
1139,
10,
187,
50276,
338,
313,
5089,
36,
11113,
22532,
9,
76,
36,
11113,
15413,
6603,
1139,
10,
3857,
313,
19335,
64,
3429,
2462,
2164,
2295,
470,
1228,
551,
187,
50274,
338,
6522,
10978,
272,
10,
551,
187,
50272,
20359,
10990,
10854,
1706,
64,
17,
426,
14446,
10990,
10854,
1706,
64,
1036,
64,
6603,
1139,
28,
187,
50272,
20359,
10990,
10854,
1706,
64,
18,
426,
14446,
10990,
10854,
1706,
64,
1036,
64,
6603,
1139,
28,
187,
50274,
94,
2010,
551,
187,
50272,
20359,
10990,
10854,
1706,
64,
17,
426,
14446,
10990,
10854,
1706,
64,
17,
64,
7536,
64,
1036,
64,
6603,
1139,
28,
187,
50272,
20359,
10990,
10854,
1706,
64,
18,
426,
14446,
10990,
10854,
1706,
64,
18,
64,
7536,
64,
1036,
64,
6603,
1139,
28,
187,
50274,
94,
187,
50276,
94,
187,
4,
7287,
187,
4,
338,
2931,
9,
35183,
64,
4061,
1556,
947,
4290,
35248,
1706,
64,
1036,
64,
3528,
2354,
20,
10,
187,
50276,
338,
313,
5089,
36,
11113,
22532,
9,
76,
36,
11113,
15413,
3528,
2354,
20,
10,
3857,
313,
19335,
64,
3429,
2462,
2164,
2295,
470,
1228,
551,
187,
50274,
338,
6522,
10978,
272,
10,
551,
187,
50272,
20359,
10990,
10854,
1706,
64,
17,
426,
14446,
10990,
10854,
1706,
64,
1036,
64,
3528,
2354,
20,
28,
187,
50272,
20359,
10990,
10854,
1706,
64,
18,
426,
14446,
10990,
10854,
1706,
64,
1036,
64,
3528,
2354,
20,
28,
187,
50274,
94,
2010,
551,
187,
50272,
20359,
10990,
10854,
1706,
64,
17,
426,
14446,
10990,
10854,
1706,
64,
17,
64,
7536,
64,
1036,
64,
3528,
2354,
20,
28,
187,
50272,
20359,
10990,
10854,
1706,
64,
18,
426,
14446,
10990,
10854,
1706,
64,
18,
64,
7536,
64,
1036,
64,
3528,
2354,
20,
28,
187,
50274,
94,
187,
50276,
94,
187,
4,
7287,
187,
4,
338,
2931,
9,
35183,
64,
4061,
1556,
947,
4290,
35248,
1706,
64,
1036,
64,
5942,
3175,
19,
10,
187,
50276,
338,
313,
5089,
36,
11113,
22532,
9,
76,
36,
11113,
15413,
5942,
3175,
19,
10,
3857,
313,
19335,
64,
3429,
2462,
2164,
2295,
470,
10,
3857,
187,
50272,
1830,
64,
1556,
42343,
9,
7614,
64,
4773,
13,
577,
10,
3857,
4110,
64,
1556,
42343,
9,
7614,
64,
42583,
13,
577,
10,
3857,
187,
50272,
1830,
64,
1556,
42343,
9,
19335,
64,
4773,
13,
577,
10,
3857,
4110,
64,
1556,
42343,
9,
19335,
64,
42583,
13,
577,
1228,
551,
187,
50274,
338,
6522,
10978,
272,
10,
551,
187,
50272,
20359,
10990,
10854,
1706,
64,
17,
426,
14446,
10990,
10854,
1706,
64,
1036,
64,
5942,
3175,
19,
28,
187,
50272,
20359,
10990,
10854,
1706,
64,
18,
426,
14446,
10990,
10854,
1706,
64,
1036,
64,
5942,
3175,
19,
28,
187,
50274,
94,
2010,
551,
187,
50272,
20359,
10990,
10854,
1706,
64,
17,
426,
14446,
10990,
10854,
1706,
64,
17,
64,
7536,
64,
1036,
64,
5942,
3175,
19,
28,
187,
50272,
20359,
10990,
10854,
1706,
64,
18,
426,
14446,
10990,
10854,
1706,
64,
18,
64,
7536,
64,
1036,
64,
5942,
3175,
19,
28,
187,
50274,
94,
187,
50276,
94,
187,
4,
7287,
535,
50276,
1542,
313,
90,
426,
470,
28,
340,
654,
24334,
64,
7436,
428,
374,
28,
340,
7079,
495,
10,
551,
187,
50274,
20359,
10990,
10854,
1706,
64,
17,
9,
7614,
64,
4773,
13,
5806,
64,
42583,
13,
24334,
64,
4773,
13,
24334,
64,
3429,
558,
187,
50274,
7614,
64,
4773,
7079,
6740,
64,
42583,
28,
187,
50274,
19335,
64,
4773,
7079,
24334,
64,
42583,
28,
187,
50274,
20359,
10990,
10854,
1706,
64,
18,
9,
7614,
64,
4773,
13,
5806,
64,
42583,
13,
24334,
64,
4773,
13,
24334,
64,
3429,
558,
187,
50274,
7614,
64,
4773,
7079,
6740,
64,
42583,
28,
187,
50274,
19335,
64,
4773,
7079,
24334,
64,
42583,
28,
187,
50274,
20359,
10990,
10854,
1706,
64,
17,
9,
7614,
64,
4773,
559,
6740,
64,
42583,
13,
428,
10978,
64,
42583,
13,
187,
50257,
19335,
64,
4773,
13,
24334,
64,
3429,
558,
187,
50274,
7614,
64,
4773,
7079,
6740,
64,
42583,
475,
374,
28,
187,
50274,
19335,
64,
4773,
7079,
24334,
64,
42583,
28,
187,
50276,
94,
535,
50276,
605,
6235,
404,
491,
337,
390,
374,
10175,
342,
1390,
4194,
28446,
440,
45407,
187,
50276,
338,
6048,
19335,
64,
7436,
2462,
495,
10,
2295,
374,
10,
551,
187,
50274,
20359,
10990,
10854,
1706,
64,
17,
9,
7614,
64,
4773,
13,
5806,
64,
42583,
13,
24334,
64,
4773,
13,
24334,
64,
3429,
558,
187,
50274,
7614,
64,
4773,
7079,
6740,
64,
42583,
28,
187,
50274,
19335,
64,
4773,
7079,
24334,
64,
42583,
28,
187,
50274,
20359,
10990,
10854,
1706,
64,
18,
9,
7614,
64,
4773,
13,
470,
13,
24334,
64,
4773,
13,
24334,
64,
3429,
558,
187,
50276,
94,
2010,
604,
6048,
19335,
64,
7436,
2462,
495,
10,
2295,
337,
10,
551,
187,
50274,
20359,
10990,
10854,
1706,
64,
17,
9,
7614,
64,
4773,
13,
470,
13,
24334,
64,
4773,
13,
24334,
64,
3429,
558,
187,
50276,
94,
187,
94,
535,
187,
605,
14446,
6415,
13,
495,
16,
25,
187,
605,
831,
310,
271,
18325,
2715,
323,
13642,
1066,
247,
6415,
281,
495,
16,
25,
187,
605,
273,
697,
3236,
1979,
15,
187,
605,
187,
605,
530,
6628,
3817,
5806,
4077,
6525,
751,
436,
187,
605,
39951,
357,
4482,
550,
5204,
490,
68,
187,
605,
39951,
357,
4482,
550,
50274,
1545,
187,
605,
39951,
357,
4482,
550,
50274,
72,
5801,
187,
605,
32765,
615,
1796,
567,
187,
605,
32765,
615,
1796,
567,
187,
605,
32765,
615,
1796,
567,
187,
605,
305,
1266,
12155,
73,
2886,
187,
605,
305,
1266,
12155,
73,
2886,
187,
605,
14423,
265,
403,
495,
89,
20,
13,
374,
89,
20,
13,
495,
89,
19,
285,
374,
89,
19,
187,
187,
4659,
2991,
14446,
3493,
1351,
10854,
1839,
9,
565,
6740,
64,
3429,
13,
540,
6740,
64,
7436,
13,
187,
50254,
50273,
565,
24334,
64,
3429,
13,
540,
24334,
64,
7436,
13,
187,
50254,
50273,
565,
6740,
64,
42583,
13,
540,
24334,
64,
42583,
13,
187,
50254,
50273,
3474,
4770,
25,
11,
6740,
64,
4773,
13,
4770,
25,
11,
24334,
64,
4773,
13,
187,
50254,
50273,
14379,
33328,
10715,
19690,
10,
551,
187,
50276,
565,
340,
28,
187,
50276,
4353,
2796,
20359,
10990,
10854,
1839,
64,
20,
2769,
3474,
4770,
25,
11,
6740,
64,
4773,
13,
27028,
13437,
64,
85,
6740,
64,
42583,
13,
187,
50254,
50275,
8531,
25,
11,
24334,
64,
4773,
13,
540,
24334,
64,
3429,
558,
187,
50276,
4353,
2796,
20359,
10990,
10854,
1839,
64,
19,
2769,
3474,
4770,
25,
11,
6740,
64,
4773,
13,
27028,
13437,
64,
85,
6740,
64,
42583,
13,
187,
50254,
50275,
8531,
25,
11,
24334,
64,
4773,
13,
540,
24334,
64,
3429,
558,
187,
50276,
3474,
540,
5806,
64,
42583,
426,
313,
10978,
272,
2295,
465,
9824,
24211,
10,
3736,
470,
1163,
6740,
64,
42583,
28,
187,
50276,
8271,
9,
19335,
64,
3429,
2462,
495,
2295,
470,
558,
187,
50276,
338,
6522,
10978,
272,
10,
551,
187,
50274,
20359,
10990,
10854,
1839,
64,
20,
426,
14446,
10990,
10854,
1839,
64,
36,
28,
187,
50274,
20359,
10990,
10854,
1839,
64,
19,
426,
14446,
10990,
10854,
1839,
64,
36,
28,
187,
50276,
94,
2010,
551,
187,
50274,
20359,
10990,
10854,
1839,
64,
20,
426,
14446,
10990,
10854,
1839,
64,
20,
64,
7536,
64,
36,
28,
187,
50274,
20359,
10990,
10854,
1839,
64,
19,
426,
14446,
10990,
10854,
1839,
64,
19,
64,
7536,
64,
36,
28,
187,
50276,
94,
187,
187,
4,
338,
2931,
9,
35183,
64,
4061,
1556,
947,
4290,
35248,
1839,
64,
6603,
1139,
10,
187,
50276,
338,
313,
5089,
36,
11113,
22532,
9,
76,
36,
11113,
15413,
6603,
1139,
1228,
551,
187,
50274,
338,
6522,
10978,
272,
10,
551,
187,
50272,
20359,
10990,
10854,
1839,
64,
20,
426,
14446,
10990,
10854,
1839,
64,
6693,
64,
6603,
1139,
28,
187,
50272,
20359,
10990,
10854,
1839,
64,
19,
426,
14446,
10990,
10854,
1839,
64,
6693,
64,
6603,
1139,
28,
187,
50274,
94,
2010,
551,
187,
50272,
20359,
10990,
10854,
1839,
64,
20,
426,
14446,
10990,
10854,
1839,
64,
20,
64,
7536,
64,
6693,
64,
6603,
1139,
28,
187,
50272,
20359,
10990,
10854,
1839,
64,
19,
426,
14446,
10990,
10854,
1839,
64,
19,
64,
7536,
64,
6693,
64,
6603,
1139,
28,
187,
50274,
94,
187,
50274,
338,
313,
19335,
64,
3429,
2462,
1249,
2295,
470,
10,
551,
187,
50272,
338,
6522,
10978,
272,
10,
551,
187,
50270,
20359,
10990,
10854,
1839,
64,
20,
426,
14446,
10990,
10854,
1839,
64,
6603,
1139,
28,
187,
50270,
20359,
10990,
10854,
1839,
64,
19,
426,
14446,
10990,
10854,
1839,
64,
6603,
1139,
28,
187,
50272,
94,
2010,
551,
187,
50270,
20359,
10990,
10854,
1839,
64,
20,
426,
14446,
10990,
10854,
1839,
64,
20,
64,
7536,
64,
6603,
1139,
28,
187,
50270,
20359,
10990,
10854,
1839,
64,
19,
426,
14446,
10990,
10854,
1839,
64,
19,
64,
7536,
64,
6603,
1139,
28,
187,
50272,
94,
187,
50274,
94,
187,
50276,
94,
187,
4,
7287,
187,
4,
338,
2931,
9,
35183,
64,
4061,
1556,
947,
4290,
35248,
1839,
64,
3528,
2354,
20,
10,
187,
50276,
338,
313,
5089,
36,
11113,
22532,
9,
76,
36,
11113,
15413,
3528,
2354,
20,
1228,
551,
187,
50274,
338,
6522,
10978,
272,
10,
551,
187,
50272,
20359,
10990,
10854,
1839,
64,
20,
426,
14446,
10990,
10854,
1839,
64,
6693,
64,
3528,
2354,
20,
28,
187,
50272,
20359,
10990,
10854,
1839,
64,
19,
426,
14446,
10990,
10854,
1839,
64,
6693,
64,
3528,
2354,
20,
28,
187,
50274,
94,
2010,
551,
187,
50272,
20359,
10990,
10854,
1839,
64,
20,
426,
14446,
10990,
10854,
1839,
64,
20,
64,
7536,
64,
6693,
64,
3528,
2354,
20,
28,
187,
50272,
20359,
10990,
10854,
1839,
64,
19,
426,
14446,
10990,
10854,
1839,
64,
19,
64,
7536,
64,
6693,
64,
3528,
2354,
20,
28,
187,
50274,
94,
187,
50274,
338,
313,
19335,
64,
3429,
2462,
1249,
2295,
470,
3857,
2195,
10978,
272,
10,
551,
187,
50272,
20359,
10990,
10854,
1839,
64,
20,
426,
14446,
10990,
10854,
1839,
64,
3528,
2354,
20,
28,
187,
50272,
20359,
10990,
10854,
1839,
64,
19,
426,
14446,
10990,
10854,
1839,
64,
3528,
2354,
20,
28,
187,
50274,
94,
187,
50274,
338,
313,
19335,
64,
3429,
2462,
721,
2295,
470,
3857,
19690,
10,
551,
187,
50272,
20359,
10990,
10854,
1839,
64,
20,
426,
14446,
10990,
10854,
1839,
64,
20,
64,
7536,
64,
3528,
2354,
20,
28,
187,
50272,
20359,
10990,
10854,
1839,
64,
19,
426,
14446,
10990,
10854,
1839,
64,
19,
64,
7536,
64,
3528,
2354,
20,
28,
187,
50274,
94,
187,
50276,
94,
187,
4,
7287,
187,
4,
338,
2931,
9,
35183,
64,
4061,
1556,
947,
4290,
35248,
1839,
64,
5942,
3175,
19,
10,
187,
50276,
338,
313,
5089,
36,
11113,
22532,
9,
76,
36,
11113,
15413,
5942,
3175,
19,
10,
3857,
313,
19335,
64,
3429,
2462,
1249,
2295,
470,
10,
3857,
187,
50272,
1830,
64,
1556,
42343,
9,
7614,
64,
4773,
13,
577,
10,
3857,
4110,
64,
1556,
42343,
9,
7614,
64,
42583,
13,
577,
10,
3857,
187,
50272,
1830,
64,
1556,
42343,
9,
19335,
64,
4773,
13,
577,
10,
3857,
4110,
64,
1556,
42343,
9,
19335,
64,
42583,
13,
577,
1228,
551,
187,
50274,
338,
6522,
10978,
272,
10,
551,
187,
50272,
20359,
10990,
10854,
1839,
64,
20,
426,
14446,
10990,
10854,
1839,
64,
5942,
3175,
19,
28,
187,
50272,
20359,
10990,
10854,
1839,
64,
19,
426,
14446,
10990,
10854,
1839,
64,
5942,
3175,
19,
28,
187,
50274,
94,
2010,
551,
187,
50272,
20359,
10990,
10854,
1839,
64,
20,
426,
14446,
10990,
10854,
1839,
64,
20,
64,
7536,
64,
5942,
3175,
19,
28,
187,
50272,
20359,
10990,
10854,
1839,
64,
19,
426,
14446,
10990,
10854,
1839,
64,
19,
64,
7536,
64,
5942,
3175,
19,
28,
187,
50274,
94,
187,
50276,
94,
187,
4,
7287,
535,
50276,
1542,
313,
90,
426,
470,
28,
340,
654,
24334,
64,
7436,
428,
374,
28,
340,
7079,
495,
10,
551,
187,
50274,
20359,
10990,
10854,
1839,
64,
20,
9,
7614,
64,
4773,
13,
5806,
64,
42583,
13,
24334,
64,
4773,
13,
24334,
64,
3429,
558,
187,
50274,
7614,
64,
4773,
7079,
6740,
64,
42583,
475,
495,
28,
187,
50274,
19335,
64,
4773,
7079,
24334,
64,
42583,
28,
187,
50274,
20359,
10990,
10854,
1839,
64,
20,
9,
7614,
64,
4773,
13,
5806,
64,
42583,
13,
24334,
64,
4773,
13,
24334,
64,
3429,
558,
187,
50274,
7614,
64,
4773,
7079,
6740,
64,
42583,
475,
495,
28,
187,
50274,
19335,
64,
4773,
7079,
24334,
64,
42583,
28,
187,
50274,
20359,
10990,
10854,
1839,
64,
19,
9,
7614,
64,
4773,
13,
5806,
64,
42583,
13,
24334,
64,
4773,
13,
24334,
64,
3429,
558,
187,
50274,
7614,
64,
4773,
7079,
6740,
64,
42583,
475,
374,
28,
187,
50274,
19335,
64,
4773,
7079,
24334,
64,
42583,
28,
187,
50276,
94,
535,
50276,
605,
6235,
404,
491,
337,
390,
374,
10175,
342,
1390,
4194,
28446,
440,
45407,
187,
50276,
338,
6048,
19335,
64,
7436,
2462,
495,
10,
2295,
374,
10,
551,
187,
50274,
20359,
10990,
10854,
1839,
64,
20,
9,
7614,
64,
4773,
13,
5806,
64,
42583,
13,
24334,
64,
4773,
13,
24334,
64,
3429,
558,
187,
50274,
7614,
64,
4773,
7079,
6740,
64,
42583,
475,
495,
28,
187,
50274,
19335,
64,
4773,
7079,
24334,
64,
42583,
28,
187,
50274,
20359,
10990,
10854,
1839,
64,
20,
9,
7614,
64,
4773,
13,
470,
13,
24334,
64,
4773,
13,
24334,
64,
3429,
558,
187,
50276,
94,
2010,
604,
6048,
19335,
64,
7436,
2462,
495,
10,
2295,
337,
10,
551,
187,
50274,
20359,
10990,
10854,
1839,
64,
20,
9,
7614,
64,
4773,
13,
470,
13,
24334,
64,
4773,
13,
24334,
64,
3429,
558,
187,
50276,
94,
187,
94,
187,
187,
4659,
2991,
14446,
3493,
1351,
10854,
1839,
64,
1036,
9,
565,
6740,
64,
3429,
13,
540,
6740,
64,
7436,
13,
187,
50254,
50270,
565,
24334,
64,
3429,
13,
540,
24334,
64,
7436,
13,
187,
50254,
50270,
565,
6740,
64,
42583,
13,
540,
24334,
64,
42583,
13,
187,
50254,
50270,
3474,
4770,
1036,
11,
6740,
64,
4773,
13,
4770,
1036,
11,
24334,
64,
4773,
13,
187,
50254,
50270,
14379,
33328,
10715,
19690,
10,
551,
187,
50276,
565,
340,
28,
187,
50276,
4353,
2796,
20359,
10990,
10854,
1839,
64,
20,
2769,
3474,
4770,
1036,
11,
6740,
64,
4773,
13,
27028,
13437,
64,
85,
6740,
64,
42583,
13,
187,
50254,
50275,
8531,
1036,
11,
24334,
64,
4773,
13,
540,
24334,
64,
3429,
558,
187,
50276,
4353,
2796,
20359,
10990,
10854,
1839,
64,
19,
2769,
3474,
4770,
1036,
11,
6740,
64,
4773,
13,
27028,
13437,
64,
85,
6740,
64,
42583,
13,
187,
50254,
50275,
8531,
1036,
11,
24334,
64,
4773,
13,
540,
24334,
64,
3429,
558,
187,
50276,
3474,
540,
5806,
64,
42583,
426,
313,
10978,
272,
2295,
465,
9824,
24211,
10,
3736,
470,
1163,
6740,
64,
42583,
28,
187,
50276,
8271,
9,
19335,
64,
3429,
2462,
495,
2295,
470,
558,
187,
50276,
338,
6522,
10978,
272,
10,
551,
187,
50274,
20359,
10990,
10854,
1839,
64,
20,
426,
14446,
10990,
10854,
1839,
64,
1036,
64,
36,
28,
187,
50274,
20359,
10990,
10854,
1839,
64,
19,
426,
14446,
10990,
10854,
1839,
64,
1036,
64,
36,
28,
187,
50276,
94,
2010,
551,
187,
50274,
20359,
10990,
10854,
1839,
64,
20,
426,
14446,
10990,
10854,
1839,
64,
20,
64,
7536,
64,
1036,
64,
36,
28,
187,
50274,
20359,
10990,
10854,
1839,
64,
19,
426,
14446,
10990,
10854,
1839,
64,
19,
64,
7536,
64,
1036,
64,
36,
28,
187,
50276,
94,
187,
4,
338,
2931,
9,
35183,
64,
4061,
1556,
947,
4290,
35248,
1839,
64,
1036,
64,
6603,
1139,
10,
187,
50276,
338,
313,
5089,
36,
11113,
22532,
9,
76,
36,
11113,
15413,
6603,
1139,
10,
3857,
313,
19335,
64,
3429,
2462,
1249,
2295,
470,
1228,
551,
187,
50274,
338,
6522,
10978,
272,
10,
551,
187,
50272,
20359,
10990,
10854,
1839,
64,
20,
426,
14446,
10990,
10854,
1839,
64,
1036,
64,
6603,
1139,
28,
187,
50272,
20359,
10990,
10854,
1839,
64,
19,
426,
14446,
10990,
10854,
1839,
64,
1036,
64,
6603,
1139,
28,
187,
50274,
94,
2010,
551,
187,
50272,
20359,
10990,
10854,
1839,
64,
20,
426,
14446,
10990,
10854,
1839,
64,
20,
64,
7536,
64,
1036,
64,
6603,
1139,
28,
187,
50272,
20359,
10990,
10854,
1839,
64,
19,
426,
14446,
10990,
10854,
1839,
64,
19,
64,
7536,
64,
1036,
64,
6603,
1139,
28,
187,
50274,
94,
187,
50276,
94,
187,
4,
7287,
187,
4,
338,
2931,
9,
35183,
64,
4061,
1556,
947,
4290,
35248,
1839,
64,
1036,
64,
3528,
2354,
20,
10,
187,
50276,
338,
313,
5089,
36,
11113,
22532,
9,
76,
36,
11113,
15413,
3528,
2354,
20,
10,
3857,
313,
19335,
64,
3429,
2462,
2164,
2295,
470,
1228,
551,
187,
50274,
338,
6522,
10978,
272,
10,
551,
187,
50272,
20359,
10990,
10854,
1839,
64,
20,
426,
14446,
10990,
10854,
1839,
64,
1036,
64,
3528,
2354,
20,
28,
187,
50272,
20359,
10990,
10854,
1839,
64,
19,
426,
14446,
10990,
10854,
1839,
64,
1036,
64,
3528,
2354,
20,
28,
187,
50274,
94,
2010,
551,
187,
50272,
20359,
10990,
10854,
1839,
64,
20,
426,
14446,
10990,
10854,
1839,
64,
20,
64,
7536,
64,
1036,
64,
3528,
2354,
20,
28,
187,
50272,
20359,
10990,
10854,
1839,
64,
19,
426,
14446,
10990,
10854,
1839,
64,
19,
64,
7536,
64,
1036,
64,
3528,
2354,
20,
28,
187,
50274,
94,
187,
50276,
94,
187,
4,
7287,
187,
4,
338,
2931,
9,
35183,
64,
4061,
1556,
947,
4290,
35248,
1839,
64,
1036,
64,
5942,
3175,
19,
10,
187,
50276,
338,
313,
5089,
36,
11113,
22532,
9,
76,
36,
11113,
15413,
5942,
3175,
19,
10,
3857,
313,
19335,
64,
3429,
2462,
1249,
2295,
470,
10,
3857,
187,
50272,
1830,
64,
1556,
42343,
9,
7614,
64,
4773,
13,
577,
10,
3857,
4110,
64,
1556,
42343,
9,
7614,
64,
42583,
13,
577,
10,
3857,
187,
50272,
1830,
64,
1556,
42343,
9,
19335,
64,
4773,
13,
577,
10,
3857,
4110,
64,
1556,
42343,
9,
19335,
64,
42583,
13,
577,
1228,
551,
187,
50274,
338,
6522,
10978,
272,
10,
551,
187,
50272,
20359,
10990,
10854,
1839,
64,
20,
426,
14446,
10990,
10854,
1839,
64,
1036,
64,
5942,
3175,
19,
28,
187,
50272,
20359,
10990,
10854,
1839,
64,
19,
426,
14446,
10990,
10854,
1839,
64,
1036,
64,
5942,
3175,
19,
28,
187,
50274,
94,
2010,
551,
187,
50272,
20359,
10990,
10854,
1839,
64,
20,
426,
14446,
10990,
10854,
1839,
64,
20,
64,
7536,
64,
1036,
64,
5942,
3175,
19,
28,
187,
50272,
20359,
10990,
10854,
1839,
64,
19,
426,
14446,
10990,
10854,
1839,
64,
19,
64,
7536,
64,
1036,
64,
5942,
3175,
19,
28,
187,
50274,
94,
187,
50276,
94,
187,
4,
7287,
535,
50276,
1542,
313,
90,
426,
470,
28,
340,
654,
24334,
64,
7436,
428,
374,
28,
340,
7079,
495,
10,
551,
187,
50274,
20359,
10990,
10854,
1839,
64,
20,
9,
7614,
64,
4773,
13,
5806,
64,
42583,
13,
24334,
64,
4773,
13,
24334,
64,
3429,
558,
187,
50274,
7614,
64,
4773,
7079,
6740,
64,
42583,
475,
495,
28,
187,
50274,
19335,
64,
4773,
7079,
24334,
64,
42583,
28,
187,
50274,
20359,
10990,
10854,
1839,
64,
20,
9,
7614,
64,
4773,
13,
5806,
64,
42583,
13,
24334,
64,
4773,
13,
24334,
64,
3429,
558,
187,
50274,
7614,
64,
4773,
7079,
6740,
64,
42583,
475,
495,
28,
187,
50274,
19335,
64,
4773,
7079,
24334,
64,
42583,
28,
187,
50274,
20359,
10990,
10854,
1839,
64,
19,
9,
7614,
64,
4773,
13,
5806,
64,
42583,
13,
24334,
64,
4773,
13,
24334,
64,
3429,
558,
187,
50274,
7614,
64,
4773,
7079,
6740,
64,
42583,
475,
374,
28,
187,
50274,
19335,
64,
4773,
7079,
24334,
64,
42583,
28,
187,
50276,
94,
535,
50276,
605,
6235,
404,
491,
337,
390,
374,
10175,
342,
1390,
4194,
28446,
440,
45407,
187,
50276,
338,
6048,
19335,
64,
7436,
2462,
495,
10,
2295,
374,
10,
551,
187,
50274,
20359,
10990,
10854,
1839,
64,
20,
9,
7614,
64,
4773,
13,
5806,
64,
42583,
13,
24334,
64,
4773,
13,
24334,
64,
3429,
558,
187,
50274,
7614,
64,
4773,
7079,
6740,
64,
42583,
475,
495,
28,
187,
50274,
19335,
64,
4773,
7079,
24334,
64,
42583,
28,
187,
50274,
20359,
10990,
10854,
1839,
64,
20,
9,
7614,
64,
4773,
13,
470,
13,
24334,
64,
4773,
13,
24334,
64,
3429,
558,
187,
50276,
94,
2010,
604,
6048,
19335,
64,
7436,
2462,
495,
10,
2295,
337,
10,
551,
187,
50274,
20359,
10990,
10854,
1839,
64,
20,
9,
7614,
64,
4773,
13,
470,
13,
24334,
64,
4773,
13,
24334,
64,
3429,
558,
187,
50276,
94,
187,
94,
187,
187,
4,
3182,
26127,
18,
9,
89,
10,
6048,
89,
10,
654,
337,
3736,
337,
1163,
313,
89,
1228,
187,
187,
4659,
4772,
17243,
4770,
1237,
7069,
42734,
1241,
9,
565,
18890,
1004,
3429,
13,
1030,
4770,
1036,
11,
6740,
64,
4773,
10,
551,
187,
50276,
8531,
1237,
2020,
426,
470,
86,
28,
187,
50276,
565,
1269,
28,
187,
50276,
8271,
9,
487,
1004,
3429,
2239,
470,
558,
187,
50276,
1542,
313,
89,
426,
470,
28,
1269,
654,
18890,
1004,
3429,
28,
12996,
89,
10,
551,
187,
50274,
2204,
7079,
6740,
64,
4773,
60,
89,
2194,
187,
50276,
94,
187,
50276,
2309,
2020,
28,
187,
94,
187,
187,
4659,
4772,
17243,
4770,
1237,
7069,
42734,
1241,
64,
1036,
9,
565,
18890,
1004,
3429,
13,
1030,
4770,
1237,
11,
6740,
64,
4773,
10,
551,
187,
50276,
8531,
1237,
2020,
426,
470,
86,
28,
187,
50276,
565,
1269,
28,
187,
50276,
8271,
9,
487,
1004,
3429,
2239,
470,
558,
187,
50276,
1542,
313,
89,
426,
470,
28,
1269,
654,
18890,
1004,
3429,
28,
12996,
89,
10,
551,
187,
50274,
2204,
7079,
6740,
64,
4773,
60,
89,
2194,
187,
50276,
94,
187,
50276,
2309,
2020,
28,
187,
94,
187,
187,
4659,
2991,
14446,
4717,
2973,
84,
19,
64,
36,
9,
565,
24334,
64,
3429,
13,
540,
3817,
7436,
13,
540,
1269,
13,
540,
18747,
13,
187,
50254,
50274,
3474,
4770,
1036,
11,
6740,
64,
4773,
13,
4770,
25,
11,
24334,
64,
4773,
10,
551,
187,
50276,
565,
891,
28,
187,
50276,
565,
9171,
292,
1559,
60,
19,
2194,
187,
50276,
565,
1054,
3364,
3429,
426,
18747,
11396,
1668,
28,
187,
50276,
565,
3817,
3429,
28,
187,
50276,
24606,
292,
1559,
60,
17,
62,
426,
39005,
1812,
1227,
313,
17258,
18,
9,
1222,
3364,
3429,
10,
475,
3817,
7436,
558,
187,
50276,
24606,
292,
1559,
60,
18,
62,
426,
39005,
1812,
1227,
313,
17258,
18,
9,
1222,
3364,
3429,
559,
337,
10,
475,
3817,
7436,
558,
187,
50276,
1542,
313,
74,
426,
470,
28,
891,
654,
24334,
64,
3429,
28,
12996,
74,
10,
551,
187,
50274,
565,
46110,
426,
1269,
11396,
1668,
28,
187,
50274,
89,
7079,
18747,
28,
187,
50274,
3364,
3429,
426,
26127,
18,
4464,
89,
11396,
1668,
10,
428,
46110,
558,
187,
50274,
11,
19335,
64,
4773,
3424,
426,
7069,
42734,
1241,
9,
3364,
3429,
13,
6740,
64,
4773,
559,
46110,
10,
475,
187,
50270,
24606,
292,
1559,
60,
3364,
3429,
428,
1054,
3364,
3429,
62,
11396,
1668,
28,
187,
50276,
94,
187,
94,
187,
187,
4659,
2991,
14446,
4717,
2973,
84,
19,
64,
1036,
64,
36,
9,
565,
24334,
64,
3429,
13,
540,
3817,
7436,
13,
540,
1269,
13,
540,
18747,
13,
187,
50254,
50271,
3474,
4770,
1237,
11,
6740,
64,
4773,
13,
4770,
1036,
11,
24334,
64,
4773,
10,
551,
187,
50276,
565,
891,
28,
187,
50276,
565,
9171,
292,
1559,
60,
19,
2194,
187,
50276,
565,
1054,
3364,
3429,
426,
18747,
11396,
1668,
28,
187,
50276,
565,
3817,
3429,
28,
187,
50276,
24606,
292,
1559,
60,
17,
62,
426,
39005,
1812,
1227,
313,
17258,
18,
9,
1222,
3364,
3429,
10,
475,
3817,
7436,
558,
187,
50276,
24606,
292,
1559,
60,
18,
62,
426,
39005,
1812,
1227,
313,
17258,
18,
9,
1222,
3364,
3429,
559,
337,
10,
475,
3817,
7436,
558,
187,
50276,
1542,
313,
74,
426,
470,
28,
891,
654,
24334,
64,
3429,
28,
12996,
74,
10,
551,
187,
50274,
565,
46110,
426,
1269,
11396,
1668,
28,
187,
50274,
89,
7079,
18747,
28,
187,
50274,
3364,
3429,
426,
26127,
18,
4464,
89,
11396,
1668,
10,
428,
46110,
558,
187,
50274,
11,
19335,
64,
4773,
3424,
426,
7069,
42734,
1241,
64,
1036,
9,
3364,
3429,
13,
6740,
64,
4773,
559,
46110,
10,
475,
187,
50270,
24606,
292,
1559,
60,
3364,
3429,
428,
1054,
3364,
3429,
62,
50276,
5064,
1668,
28,
187,
50276,
94,
187,
94,
187,
187,
4659,
2991,
14446,
4717,
2973,
84,
17,
64,
36,
9,
565,
24334,
64,
3429,
13,
540,
3817,
7436,
13,
540,
1269,
13,
540,
13,
187,
50254,
50274,
3474,
4770,
1036,
11,
6740,
64,
4773,
13,
4770,
25,
11,
24334,
64,
4773,
10,
551,
187,
50276,
565,
4311,
1208,
426,
39005,
1812,
1227,
3817,
7436,
28,
187,
50276,
565,
891,
28,
187,
50276,
7614,
64,
4773,
7079,
313,
89,
11396,
1668,
558,
187,
50276,
1542,
313,
74,
426,
470,
28,
891,
654,
24334,
64,
3429,
28,
12996,
74,
10,
551,
187,
50274,
11,
19335,
64,
4773,
3424,
426,
6740,
64,
4773,
60,
74,
62,
475,
4311,
1208,
11396,
1668,
28,
187,
50276,
94,
187,
94,
187,
187,
4659,
2991,
14446,
4717,
2973,
84,
18,
64,
36,
9,
565,
24334,
64,
3429,
13,
540,
3817,
7436,
13,
540,
1269,
13,
540,
18747,
13,
187,
50254,
50274,
3474,
4770,
1036,
11,
6740,
64,
4773,
13,
4770,
25,
11,
24334,
64,
4773,
10,
551,
187,
50276,
565,
3817,
3429,
426,
26127,
18,
9,
9665,
11396,
1668,
558,
187,
50276,
565,
4311,
1208,
426,
39005,
1812,
1227,
313,
3364,
3429,
475,
3817,
7436,
558,
187,
50276,
565,
891,
28,
187,
50276,
89,
11396,
30,
1668,
28,
187,
50276,
1542,
313,
74,
426,
470,
28,
891,
654,
24334,
64,
3429,
28,
12996,
74,
10,
551,
187,
50274,
11,
19335,
64,
4773,
3424,
426,
7069,
42734,
1241,
9,
3364,
3429,
13,
6740,
64,
4773,
559,
1269,
10,
475,
4311,
1208,
11396,
1668,
28,
187,
50274,
89,
7079,
3817,
3429,
28,
187,
50276,
94,
187,
94,
187,
187,
4659,
2991,
14446,
4717,
2973,
84,
18,
64,
1036,
64,
36,
9,
565,
24334,
64,
3429,
13,
540,
3817,
7436,
13,
540,
1269,
13,
540,
18747,
13,
187,
50254,
50271,
3474,
4770,
1237,
11,
6740,
64,
4773,
13,
4770,
1036,
11,
24334,
64,
4773,
10,
551,
187,
50276,
565,
3817,
3429,
426,
26127,
18,
9,
9665,
11396,
1668,
558,
187,
50276,
565,
4311,
1208,
426,
39005,
1812,
1227,
313,
3364,
3429,
475,
3817,
7436,
558,
187,
50276,
565,
891,
28,
187,
50276,
1542,
313,
74,
426,
470,
28,
891,
654,
24334,
64,
3429,
28,
12996,
74,
10,
551,
187,
50274,
11,
19335,
64,
4773,
3424,
426,
7069,
42734,
1241,
64,
1036,
9,
3364,
3429,
13,
6740,
64,
4773,
559,
1269,
10,
475,
4311,
1208,
11396,
1668,
28,
187,
50274,
89,
7079,
3817,
3429,
28,
187,
50276,
94,
187,
94,
187,
187,
605,
14446,
6415,
1066,
281,
667,
10103,
13,
342,
30370,
15,
187,
605,
313,
3364,
10978,
481,
187,
605,
187,
605,
26197,
1332,
347,
19743,
20359,
13,
534,
310,
4229,
1127,
13,
3453,
1076,
187,
605,
581,
12275,
273,
12095,
970,
4229,
1127,
313,
1036,
15,
1036,
10,
281,
3213,
187,
605,
949,
2603,
13,
10491,
247,
3817,
273,
12275,
342,
2969,
187,
605,
25001,
15,
187,
4659,
2991,
14446,
3493,
1351,
7536,
9,
565,
6740,
64,
3429,
13,
540,
6740,
64,
7436,
13,
187,
50254,
50276,
565,
24334,
64,
3429,
13,
540,
24334,
64,
7436,
13,
187,
50254,
50276,
565,
6740,
64,
42583,
13,
540,
24334,
64,
42583,
13,
187,
50254,
50276,
3474,
4770,
25,
11,
6740,
64,
4773,
13,
4770,
25,
11,
24334,
64,
4773,
10,
551,
187,
50276,
565,
480,
13,
465,
28,
187,
50276,
605,
23280,
2603,
1269,
16,
90,
13249,
285,
3213,
2193,
347,
1668,
15,
1036,
4229,
1127,
15,
187,
50276,
565,
1269,
426,
470,
28,
187,
50276,
565,
340,
426,
470,
28,
187,
50276,
565,
18747,
426,
470,
28,
187,
50276,
565,
17713,
426,
470,
28,
187,
50276,
3474,
540,
2781,
64,
90,
426,
313,
7614,
64,
7436,
5291,
1668,
558,
187,
50276,
20359,
10612,
1714,
9,
7614,
64,
3429,
13,
6740,
64,
7436,
13,
24334,
64,
3429,
13,
24334,
64,
7436,
13,
465,
9824,
7536,
13,
187,
50265,
7,
89,
13,
708,
90,
13,
708,
9665,
13,
708,
6421,
558,
187,
50276,
7614,
64,
3429,
426,
16508,
9,
7614,
64,
3429,
558,
187,
50276,
92,
187,
50274,
605,
1876,
24461,
247,
4194,
6391,
273,
4770,
1036,
15,
187,
50274,
8623,
64,
11023,
64,
1540,
9,
736,
1036,
13,
6740,
64,
3429,
475,
374,
558,
187,
50274,
4353,
2796,
20359,
4717,
2973,
84,
2769,
565,
24334,
64,
3429,
13,
540,
3817,
7436,
13,
540,
1269,
13,
540,
18747,
13,
187,
50270,
3474,
4770,
1036,
11,
6740,
64,
4773,
13,
4770,
25,
11,
24334,
64,
4773,
10,
426,
187,
50270,
9,
9665,
708,
470,
49477,
10,
3736,
14446,
4717,
2973,
84,
19,
64,
36,
27,
187,
50270,
4464,
9665,
3613,
470,
89,
25463,
10,
3736,
14446,
4717,
2973,
84,
18,
64,
36,
1163,
14446,
4717,
2973,
84,
17,
64,
36,
558,
187,
50274,
4353,
2796,
20359,
4717,
10990,
2769,
3474,
4770,
25,
11,
6740,
64,
4773,
13,
4770,
1036,
11,
24334,
64,
4773,
13,
540,
6740,
64,
3429,
10,
426,
187,
50270,
20359,
4717,
10990,
64,
36,
28,
187,
4,
338,
2931,
9,
35183,
64,
4061,
23502,
20144,
4290,
64,
52,
2354,
19,
10,
187,
50274,
338,
313,
5089,
36,
11113,
22532,
9,
76,
36,
11113,
15413,
52,
2354,
19,
1228,
551,
187,
50272,
20359,
4717,
10990,
426,
14446,
4717,
10990,
64,
6693,
64,
52,
2354,
19,
28,
187,
50272,
338,
313,
1830,
64,
1556,
42343,
9,
7614,
64,
3429,
13,
1668,
1228,
551,
187,
50270,
20359,
4717,
10990,
426,
14446,
4717,
10990,
64,
52,
2354,
19,
28,
187,
50272,
94,
187,
50274,
94,
187,
4,
7287,
187,
4,
338,
2931,
9,
35183,
64,
4061,
23502,
20144,
4290,
64,
5851,
57,
19,
10,
187,
50274,
338,
313,
5089,
36,
11113,
22532,
9,
76,
36,
11113,
15413,
5851,
57,
19,
1228,
551,
187,
50272,
20359,
4717,
10990,
426,
14446,
4717,
10990,
64,
6693,
64,
5851,
57,
19,
28,
187,
50272,
338,
313,
1830,
64,
1556,
42343,
9,
7614,
64,
3429,
13,
4567,
1228,
551,
187,
50270,
20359,
4717,
10990,
426,
14446,
4717,
10990,
64,
5851,
57,
19,
28,
187,
50272,
94,
187,
50274,
94,
187,
4,
7287,
187,
4,
338,
2931,
9,
35183,
64,
4061,
23502,
20144,
4290,
64,
6603,
1139,
10,
187,
50274,
338,
313,
5089,
36,
11113,
22532,
9,
76,
36,
11113,
15413,
6603,
1139,
1228,
551,
187,
50272,
20359,
4717,
10990,
426,
14446,
4717,
10990,
64,
6693,
64,
6603,
1139,
28,
187,
50272,
338,
313,
1830,
64,
1556,
42343,
9,
7614,
64,
3429,
13,
1668,
1228,
551,
187,
50270,
20359,
4717,
10990,
426,
14446,
4717,
10990,
64,
6603,
1139,
28,
187,
50272,
94,
187,
50274,
94,
187,
4,
7287,
535,
50274,
1542,
313,
75,
426,
470,
28,
480,
654,
24334,
64,
7436,
28,
12996,
75,
10,
551,
187,
50272,
565,
3817,
7436,
28,
187,
50272,
565,
891,
90,
426,
340,
11396,
1668,
28,
187,
50272,
3474,
4770,
25,
11,
6740,
426,
6740,
64,
4773,
559,
891,
90,
475,
6740,
64,
42583,
28,
187,
50272,
90,
7079,
17713,
28,
187,
50272,
338,
313,
90,
2239,
2781,
64,
90,
10,
551,
187,
50270,
90,
426,
2781,
64,
90,
28,
187,
50272,
94,
187,
50272,
3364,
7436,
426,
26127,
18,
4464,
90,
11396,
1668,
10,
428,
891,
90,
558,
187,
50272,
6441,
1178,
9,
736,
1036,
13,
470,
13,
6740,
64,
3429,
475,
374,
558,
187,
50272,
1542,
313,
76,
426,
470,
28,
465,
654,
3817,
7436,
28,
12996,
76,
10,
551,
187,
50270,
20359,
4717,
10990,
9,
7614,
13,
313,
8531,
1036,
475,
2769,
736,
1036,
582,
6740,
64,
3429,
558,
187,
50270,
7614,
7079,
6740,
64,
42583,
28,
187,
50272,
94,
187,
50272,
20359,
4717,
2973,
84,
9,
19335,
64,
3429,
13,
3817,
7436,
13,
1269,
13,
18747,
13,
313,
8531,
1036,
11,
2769,
736,
1036,
582,
24334,
64,
4773,
558,
187,
50272,
19335,
64,
4773,
7079,
24334,
64,
42583,
28,
187,
50274,
94,
187,
50274,
4924,
64,
2132,
64,
11023,
64,
1540,
9,
736,
1036,
558,
187,
50276,
94,
187,
94,
187,
187,
4659,
2991,
14446,
3493,
1351,
7536,
64,
1036,
9,
565,
6740,
64,
3429,
13,
540,
6740,
64,
7436,
13,
187,
50254,
50273,
565,
24334,
64,
3429,
13,
540,
24334,
64,
7436,
13,
187,
50254,
50273,
565,
6740,
64,
42583,
13,
540,
24334,
64,
42583,
13,
187,
50254,
50273,
3474,
4770,
1036,
11,
6740,
64,
4773,
13,
4770,
1036,
11,
24334,
64,
4773,
10,
551,
187,
50276,
565,
480,
13,
465,
28,
187,
50276,
605,
23280,
2603,
1269,
16,
90,
13249,
285,
3213,
2193,
347,
1668,
15,
1036,
4229,
1127,
15,
187,
50276,
565,
1269,
426,
470,
28,
187,
50276,
565,
340,
426,
470,
28,
187,
50276,
565,
18747,
426,
470,
28,
187,
50276,
565,
17713,
426,
470,
28,
187,
50276,
3474,
540,
2781,
64,
90,
426,
313,
7614,
64,
7436,
5291,
1668,
558,
187,
50276,
20359,
10612,
1714,
9,
7614,
64,
3429,
13,
6740,
64,
7436,
13,
24334,
64,
3429,
13,
24334,
64,
7436,
13,
465,
9824,
7536,
13,
187,
50265,
7,
89,
13,
708,
90,
13,
708,
9665,
13,
708,
6421,
558,
187,
50276,
7614,
64,
3429,
426,
16508,
9,
7614,
64,
3429,
558,
187,
50276,
92,
187,
50274,
605,
1876,
24461,
247,
4194,
6391,
273,
4770,
1237,
15,
187,
50274,
8623,
64,
11023,
64,
1540,
9,
736,
1237,
13,
6740,
64,
3429,
475,
577,
558,
187,
50274,
4353,
2796,
20359,
4717,
2973,
84,
2769,
565,
24334,
64,
3429,
13,
540,
3817,
7436,
13,
540,
1269,
13,
540,
18747,
13,
187,
50270,
3474,
4770,
1237,
11,
6740,
64,
4773,
13,
4770,
1036,
11,
24334,
64,
4773,
10,
426,
187,
50270,
9,
9665,
708,
470,
49477,
10,
3736,
14446,
4717,
2973,
84,
19,
64,
1036,
64,
36,
27,
14446,
4717,
2973,
84,
18,
64,
1036,
64,
36,
28,
187,
50274,
4353,
2796,
20359,
4717,
10990,
2769,
3474,
4770,
1036,
11,
6740,
64,
4773,
13,
4770,
1237,
11,
24334,
64,
4773,
13,
540,
6740,
64,
3429,
10,
426,
187,
50270,
20359,
4717,
10990,
64,
1036,
64,
36,
28,
187,
187,
4,
338,
2931,
9,
35183,
64,
4061,
23502,
20144,
4290,
64,
1036,
64,
52,
2354,
19,
10,
187,
50274,
338,
313,
5089,
36,
11113,
22532,
9,
76,
36,
11113,
15413,
52,
2354,
19,
10,
3857,
4110,
64,
1556,
42343,
9,
7614,
64,
3429,
13,
1668,
1228,
551,
187,
50272,
20359,
4717,
10990,
426,
14446,
4717,
10990,
64,
1036,
64,
52,
2354,
19,
28,
187,
50274,
94,
187,
4,
7287,
535,
50274,
1542,
313,
75,
426,
470,
28,
480,
654,
24334,
64,
7436,
28,
12996,
75,
10,
551,
187,
50272,
565,
3817,
7436,
28,
187,
50272,
565,
891,
90,
426,
340,
11396,
1668,
28,
187,
50272,
3474,
4770,
1036,
11,
6740,
426,
6740,
64,
4773,
559,
891,
90,
475,
6740,
64,
42583,
28,
187,
50272,
90,
7079,
17713,
28,
187,
50272,
338,
313,
90,
2239,
2781,
64,
90,
10,
551,
187,
50270,
90,
426,
2781,
64,
90,
28,
187,
50272,
94,
187,
50272,
3364,
7436,
426,
26127,
18,
4464,
90,
11396,
1668,
10,
428,
891,
90,
558,
187,
50272,
6441,
1178,
9,
736,
1237,
13,
470,
13,
6740,
64,
3429,
475,
577,
558,
187,
50272,
1542,
313,
76,
426,
470,
28,
465,
654,
3817,
7436,
28,
12996,
76,
10,
551,
187,
50270,
20359,
4717,
10990,
9,
7614,
13,
313,
8531,
1237,
475,
2769,
736,
1237,
582,
6740,
64,
3429,
558,
187,
50270,
7614,
7079,
6740,
64,
42583,
28,
187,
50272,
94,
187,
50272,
20359,
4717,
2973,
84,
9,
19335,
64,
3429,
13,
3817,
7436,
13,
1269,
13,
18747,
13,
313,
8531,
1237,
11,
2769,
736,
1237,
582,
24334,
64,
4773,
558,
187,
50272,
19335,
64,
4773,
7079,
24334,
64,
42583,
28,
187,
50274,
94,
187,
50274,
4924,
64,
2132,
64,
11023,
64,
1540,
9,
736,
1237,
558,
187,
50276,
94,
187,
94,
187,
187,
605,
14446,
6415,
1066,
342,
10370,
48971,
30370,
15,
187,
4353,
14446,
3493,
1351,
35,
40511,
10854,
9,
565,
6740,
64,
3429,
13,
540,
6740,
64,
7436,
13,
187,
50254,
50274,
565,
24334,
64,
3429,
13,
540,
24334,
64,
7436,
13,
187,
50254,
50274,
565,
6740,
64,
42583,
13,
540,
24334,
64,
42583,
13,
187,
50254,
50274,
3474,
4770,
25,
11,
6740,
64,
4773,
13,
4770,
25,
11,
24334,
64,
4773,
13,
187,
50254,
50274,
14379,
33328,
10715,
19690,
10,
551,
187,
50276,
605,
23280,
2603,
1269,
16,
90,
13249,
285,
3213,
2193,
347,
1668,
15,
1036,
4229,
1127,
15,
187,
50276,
565,
1269,
426,
470,
28,
187,
50276,
565,
340,
426,
470,
28,
187,
50276,
565,
18747,
426,
470,
28,
187,
50276,
565,
17713,
426,
470,
28,
187,
50276,
605,
24202,
9,
15662,
1116,
472,
2262,
11680,
417,
9771,
839,
4194,
6391,
323,
465,
9824,
24211,
15,
187,
50276,
605,
1876,
24461,
247,
4194,
6391,
15,
187,
50276,
8623,
64,
11023,
64,
1540,
9,
736,
13,
6740,
64,
3429,
558,
535,
50276,
3474,
540,
2781,
64,
90,
426,
313,
7614,
64,
7436,
428,
337,
10,
5291,
1668,
28,
187,
50276,
565,
480,
28,
187,
50276,
4353,
2796,
20359,
9824,
2973,
84,
2769,
8531,
25,
11,
24334,
64,
4773,
13,
1030,
4770,
25,
11,
6740,
64,
4773,
13,
187,
50272,
565,
24334,
64,
3429,
13,
540,
1269,
13,
540,
18747,
10,
426,
187,
50272,
9,
7614,
64,
3429,
10122,
31133,
2358,
10,
3736,
14446,
9824,
2973,
84,
1540,
64,
36,
1163,
14446,
9824,
2973,
84,
64,
36,
28,
187,
50276,
4353,
2796,
6504,
4818,
366,
10990,
2769,
8531,
25,
11,
24334,
64,
4773,
13,
1030,
4770,
25,
11,
6740,
64,
4773,
13,
187,
50272,
4773,
13437,
64,
85,
6740,
64,
42583,
13,
540,
24334,
64,
3429,
13,
540,
2603,
64,
90,
64,
46991,
10,
426,
187,
50272,
6504,
4818,
366,
10990,
64,
36,
28,
187,
50276,
20359,
10612,
1714,
9,
7614,
64,
3429,
13,
6740,
64,
7436,
13,
24334,
64,
3429,
13,
24334,
64,
7436,
13,
19690,
13,
187,
50265,
7,
89,
13,
708,
90,
13,
708,
9665,
13,
708,
6421,
558,
187,
50276,
7614,
64,
3429,
426,
16508,
9,
7614,
64,
3429,
558,
187,
187,
4,
338,
2931,
9,
35183,
64,
19118,
34948,
38512,
4290,
64,
3528,
2354,
20,
10,
187,
50276,
338,
313,
5089,
36,
11113,
22532,
9,
76,
36,
11113,
15413,
3528,
2354,
20,
1228,
551,
187,
50274,
6504,
4818,
366,
10990,
426,
5383,
4818,
366,
10990,
64,
6693,
64,
3528,
2354,
20,
28,
187,
50274,
338,
313,
1830,
64,
1556,
42343,
9,
7614,
64,
3429,
13,
1668,
1228,
551,
187,
50272,
6504,
4818,
366,
10990,
426,
5383,
4818,
366,
10990,
64,
3528,
2354,
20,
28,
187,
50274,
94,
187,
50276,
94,
187,
4,
7287,
187,
4,
338,
2931,
9,
35183,
64,
19118,
34948,
38512,
4290,
64,
5851,
57,
19,
10,
187,
50276,
338,
313,
5089,
36,
11113,
22532,
9,
76,
36,
11113,
15413,
5851,
57,
19,
1228,
551,
187,
50274,
6504,
4818,
366,
10990,
426,
5383,
4818,
366,
10990,
64,
6693,
64,
5851,
57,
19,
28,
187,
50274,
338,
313,
1830,
64,
1556,
42343,
9,
7614,
64,
3429,
13,
4567,
1228,
551,
187,
50272,
6504,
4818,
366,
10990,
426,
5383,
4818,
366,
10990,
64,
5851,
57,
19,
28,
187,
50274,
94,
187,
50276,
94,
187,
4,
7287,
187,
4,
338,
2931,
9,
35183,
64,
19118,
34948,
38512,
4290,
64,
6603,
1139,
10,
187,
50276,
338,
313,
5089,
36,
11113,
22532,
9,
76,
36,
11113,
15413,
6603,
1139,
1228,
551,
187,
50274,
6504,
4818,
366,
10990,
426,
5383,
4818,
366,
10990,
64,
6693,
64,
6603,
1139,
28,
187,
50274,
338,
313,
1830,
64,
1556,
42343,
9,
7614,
64,
3429,
13,
1668,
1228,
551,
187,
50272,
6504,
4818,
366,
10990,
426,
5383,
4818,
366,
10990,
64,
6603,
1139,
28,
187,
50274,
94,
187,
50276,
94,
187,
4,
7287,
187,
4,
338,
2931,
9,
35183,
64,
19118,
34948,
38512,
4290,
64,
5942,
3175,
19,
10,
187,
50276,
338,
313,
5089,
36,
11113,
22532,
9,
76,
36,
11113,
15413,
5942,
3175,
19,
1228,
551,
187,
50274,
6504,
4818,
366,
10990,
426,
5383,
4818,
366,
10990,
64,
6693,
64,
5942,
3175,
19,
28,
187,
50274,
338,
313,
1830,
64,
1556,
42343,
9,
7614,
64,
3429,
13,
577,
1228,
551,
187,
50272,
6504,
4818,
366,
10990,
426,
5383,
4818,
366,
10990,
64,
5942,
3175,
19,
28,
187,
50274,
94,
187,
50276,
94,
187,
4,
7287,
535,
187,
4,
338,
2931,
9,
35183,
64,
4061,
1556,
16462,
3077,
4827,
19686,
52,
64,
3528,
2354,
20,
10,
187,
50276,
338,
313,
5089,
36,
11113,
22532,
9,
76,
36,
11113,
15413,
3528,
2354,
20,
10,
3857,
6740,
64,
3429,
654,
31133,
2358,
10,
551,
187,
50274,
20359,
9824,
2973,
84,
426,
14446,
9824,
2973,
84,
64,
3528,
2354,
20,
28,
187,
50276,
94,
187,
4,
7287,
187,
4,
338,
2931,
9,
35183,
64,
4061,
1556,
16462,
3077,
4827,
19686,
52,
64,
6603,
1139,
10,
187,
50276,
338,
313,
5089,
36,
11113,
22532,
9,
76,
36,
11113,
15413,
6603,
1139,
10,
3857,
6740,
64,
3429,
654,
31133,
2358,
10,
551,
187,
50274,
20359,
9824,
2973,
84,
426,
14446,
9824,
2973,
84,
64,
6693,
64,
6603,
1139,
28,
187,
50274,
338,
313,
1830,
64,
1556,
42343,
9,
19335,
64,
3429,
13,
854,
1228,
551,
187,
50272,
20359,
9824,
2973,
84,
426,
14446,
9824,
2973,
84,
64,
6603,
1139,
28,
187,
50274,
94,
187,
50276,
94,
187,
4,
7287,
187,
50276,
338,
313,
90,
2239,
2781,
64,
90,
10,
551,
187,
50274,
90,
426,
2781,
64,
90,
28,
187,
50276,
94,
535,
50276,
1542,
313,
75,
426,
470,
28,
480,
654,
24334,
64,
7436,
28,
12996,
75,
10,
551,
187,
50274,
565,
340,
74,
426,
340,
11396,
1668,
28,
187,
50274,
3474,
4770,
25,
11,
6740,
426,
6740,
64,
4773,
559,
340,
74,
475,
6740,
64,
42583,
28,
187,
50274,
338,
313,
10978,
272,
2295,
465,
9824,
24211,
10,
551,
187,
50272,
20359,
9824,
2973,
84,
9,
19335,
64,
4773,
13,
6740,
13,
24334,
64,
3429,
13,
1269,
13,
18747,
558,
187,
50274,
94,
2010,
551,
187,
50272,
565,
340,
71,
426,
313,
90,
11396,
854,
10,
708,
15215,
28,
187,
50272,
6504,
4818,
366,
10990,
9,
736,
13,
6740,
13,
6740,
64,
42583,
13,
6740,
64,
3429,
13,
340,
71,
558,
187,
50272,
20359,
9824,
2973,
84,
9,
19335,
64,
4773,
13,
4194,
13,
24334,
64,
3429,
13,
1269,
13,
18747,
558,
187,
50274,
94,
187,
50274,
19335,
64,
4773,
7079,
24334,
64,
42583,
28,
187,
50274,
90,
7079,
17713,
28,
187,
50274,
338,
313,
90,
2239,
2781,
64,
90,
10,
551,
187,
50272,
90,
426,
2781,
64,
90,
28,
187,
50274,
94,
187,
50276,
94,
187,
50276,
4924,
64,
2132,
64,
11023,
64,
1540,
9,
736,
558,
187,
94,
187,
187,
4353,
14446,
3493,
1351,
35,
40511,
10854,
64,
1036,
9,
565,
6740,
64,
3429,
13,
540,
6740,
64,
7436,
13,
187,
50254,
50271,
565,
24334,
64,
3429,
13,
540,
24334,
64,
7436,
13,
187,
50254,
50271,
565,
6740,
64,
42583,
13,
540,
24334,
64,
42583,
13,
187,
50254,
50271,
3474,
4770,
1036,
11,
6740,
64,
4773,
13,
4770,
1036,
11,
24334,
64,
4773,
13,
187,
50254,
50271,
14379,
33328,
10715,
19690,
10,
551,
187,
50276,
605,
23280,
2603,
1269,
16,
90,
13249,
285,
3213,
2193,
347,
1668,
15,
1036,
4229,
1127,
15,
187,
50276,
565,
1269,
426,
470,
28,
187,
50276,
565,
340,
426,
470,
28,
187,
50276,
565,
18747,
426,
470,
28,
187,
50276,
565,
17713,
426,
470,
28,
187,
50276,
605,
24202,
9,
15662,
1116,
472,
2262,
11680,
417,
9771,
839,
4194,
6391,
323,
465,
9824,
24211,
15,
187,
50276,
605,
1876,
24461,
247,
4194,
6391,
15,
187,
50276,
8623,
64,
11023,
64,
1540,
9,
736,
13,
6740,
64,
3429,
475,
374,
558,
535,
50276,
3474,
540,
2781,
64,
90,
426,
313,
7614,
64,
7436,
428,
337,
10,
5291,
1668,
28,
187,
50276,
565,
480,
28,
187,
50276,
4353,
2796,
20359,
9824,
2973,
84,
2769,
8531,
1036,
11,
24334,
64,
4773,
13,
1030,
4770,
1036,
11,
6740,
64,
4773,
13,
187,
50272,
565,
24334,
64,
3429,
13,
540,
1269,
13,
540,
18747,
10,
426,
187,
50272,
9,
7614,
64,
3429,
10122,
31133,
2358,
10,
3736,
14446,
9824,
2973,
84,
1540,
64,
1036,
64,
36,
1163,
14446,
9824,
2973,
84,
64,
1036,
64,
36,
28,
187,
50276,
4353,
2796,
6504,
4818,
366,
10990,
2769,
8531,
1036,
11,
24334,
64,
4773,
13,
1030,
4770,
1036,
11,
6740,
64,
4773,
13,
187,
50272,
4773,
13437,
64,
85,
6740,
64,
42583,
13,
540,
24334,
64,
3429,
13,
540,
2603,
64,
90,
64,
46991,
10,
426,
187,
50272,
6504,
4818,
366,
10990,
64,
1036,
64,
36,
28,
187,
50276,
20359,
10612,
1714,
9,
7614,
64,
3429,
13,
6740,
64,
7436,
13,
24334,
64,
3429,
13,
24334,
64,
7436,
13,
19690,
13,
187,
50265,
7,
89,
13,
708,
90,
13,
708,
9665,
13,
708,
6421,
558,
187,
50276,
7614,
64,
3429,
426,
16508,
9,
7614,
64,
3429,
558,
187,
187,
4,
338,
2931,
9,
35183,
64,
19118,
34948,
38512,
4290,
64,
1036,
64,
52,
2354,
19,
10,
187,
50276,
338,
313,
5089,
36,
11113,
22532,
9,
76,
36,
11113,
15413,
52,
2354,
19,
1228,
551,
187,
50274,
6504,
4818,
366,
10990,
426,
5383,
4818,
366,
10990,
64,
6693,
64,
1036,
64,
52,
2354,
19,
28,
187,
50274,
338,
313,
1830,
64,
1556,
42343,
9,
7614,
64,
3429,
13,
1668,
1228,
551,
187,
50272,
6504,
4818,
366,
10990,
426,
5383,
4818,
366,
10990,
64,
1036,
64,
52,
2354,
19,
28,
187,
50274,
94,
187,
50276,
94,
187,
4,
7287,
187,
4,
338,
2931,
9,
35183,
64,
19118,
34948,
38512,
4290,
64,
1036,
64,
3528,
2354,
20,
10,
187,
50276,
338,
313,
5089,
36,
11113,
22532,
9,
76,
36,
11113,
15413,
3528,
2354,
20,
1228,
551,
187,
50274,
6504,
4818,
366,
10990,
426,
5383,
4818,
366,
10990,
64,
6693,
64,
1036,
64,
3528,
2354,
20,
28,
187,
50274,
338,
313,
1830,
64,
1556,
42343,
9,
7614,
64,
3429,
13,
1668,
1228,
551,
187,
50272,
6504,
4818,
366,
10990,
426,
5383,
4818,
366,
10990,
64,
1036,
64,
3528,
2354,
20,
28,
187,
50274,
94,
187,
50276,
94,
187,
4,
7287,
187,
4,
338,
2931,
9,
35183,
64,
19118,
34948,
38512,
4290,
64,
1036,
64,
5851,
57,
19,
10,
187,
50276,
338,
313,
5089,
36,
11113,
22532,
9,
76,
36,
11113,
15413,
5851,
57,
19,
1228,
551,
187,
50274,
6504,
4818,
366,
10990,
426,
5383,
4818,
366,
10990,
64,
6693,
64,
1036,
64,
5851,
57,
19,
28,
187,
50274,
338,
313,
1830,
64,
1556,
42343,
9,
7614,
64,
3429,
13,
4567,
1228,
551,
187,
50272,
6504,
4818,
366,
10990,
426,
5383,
4818,
366,
10990,
64,
1036,
64,
5851,
57,
19,
28,
187,
50274,
94,
187,
50276,
94,
187,
4,
7287,
187,
4,
338,
2931,
9,
35183,
64,
19118,
34948,
38512,
4290,
64,
1036,
64,
6603,
1139,
10,
187,
50276,
338,
313,
5089,
36,
11113,
22532,
9,
76,
36,
11113,
15413,
6603,
1139,
1228,
551,
187,
50274,
6504,
4818,
366,
10990,
426,
5383,
4818,
366,
10990,
64,
6693,
64,
1036,
64,
6603,
1139,
28,
187,
50274,
338,
313,
1830,
64,
1556,
42343,
9,
7614,
64,
3429,
13,
1668,
1228,
551,
187,
50272,
6504,
4818,
366,
10990,
426,
5383,
4818,
366,
10990,
64,
1036,
64,
6603,
1139,
28,
187,
50274,
94,
187,
50276,
94,
187,
4,
7287,
187,
4,
338,
2931,
9,
35183,
64,
19118,
34948,
38512,
4290,
64,
1036,
64,
5942,
3175,
19,
10,
187,
50276,
338,
313,
5089,
36,
11113,
22532,
9,
76,
36,
11113,
15413,
5942,
3175,
19,
1228,
551,
187,
50274,
6504,
4818,
366,
10990,
426,
5383,
4818,
366,
10990,
64,
6693,
64,
1036,
64,
5942,
3175,
19,
28,
187,
50274,
338,
313,
1830,
64,
1556,
42343,
9,
7614,
64,
3429,
13,
577,
1228,
551,
187,
50272,
6504,
4818,
366,
10990,
426,
5383,
4818,
366,
10990,
64,
1036,
64,
5942,
3175,
19,
28,
187,
50274,
94,
187,
50276,
94,
187,
4,
7287,
535,
187,
4,
338,
2931,
9,
35183,
64,
4061,
1556,
16462,
3077,
4827,
19686,
52,
64,
1036,
64,
3528,
2354,
20,
10,
187,
50276,
338,
313,
5089,
36,
11113,
22532,
9,
76,
36,
11113,
15413,
3528,
2354,
20,
10,
3857,
6740,
64,
3429,
654,
31133,
2358,
10,
551,
187,
50274,
20359,
9824,
2973,
84,
426,
14446,
9824,
2973,
84,
64,
1036,
64,
3528,
2354,
20,
28,
187,
50276,
94,
187,
4,
7287,
187,
50276,
338,
313,
90,
2239,
2781,
64,
90,
10,
551,
187,
50274,
90,
426,
2781,
64,
90,
28,
187,
50276,
94,
535,
50276,
1542,
313,
75,
426,
470,
28,
480,
654,
24334,
64,
7436,
28,
12996,
75,
10,
551,
187,
50274,
565,
340,
74,
426,
340,
11396,
1668,
28,
187,
50274,
3474,
4770,
1036,
11,
6740,
426,
6740,
64,
4773,
559,
340,
74,
475,
6740,
64,
42583,
28,
187,
50274,
338,
313,
10978,
272,
2295,
465,
9824,
24211,
10,
551,
187,
50272,
20359,
9824,
2973,
84,
9,
19335,
64,
4773,
13,
6740,
13,
24334,
64,
3429,
13,
1269,
13,
18747,
558,
187,
50274,
94,
2010,
551,
187,
50272,
565,
340,
71,
426,
313,
90,
11396,
854,
10,
708,
15215,
28,
187,
50272,
6504,
4818,
366,
10990,
4464,
8531,
1036,
5627,
736,
13,
6740,
13,
6740,
64,
42583,
13,
6740,
64,
3429,
13,
340,
71,
558,
187,
50272,
20359,
9824,
2973,
84,
9,
19335,
64,
4773,
13,
313,
8531,
1036,
5627,
736,
13,
24334,
64,
3429,
13,
1269,
13,
18747,
558,
187,
50274,
94,
187,
50274,
19335,
64,
4773,
7079,
24334,
64,
42583,
28,
187,
50274,
90,
7079,
17713,
28,
187,
50274,
338,
313,
90,
2239,
2781,
64,
90,
10,
551,
187,
50272,
90,
426,
2781,
64,
90,
28,
187,
50274,
94,
187,
50276,
94,
187,
50276,
4924,
64,
2132,
64,
11023,
64,
1540,
9,
736,
558,
187,
94,
187,
187,
605,
14446,
598,
1066,
342,
10370,
48971,
30370,
15,
187,
4353,
14446,
3493,
1351,
35,
40511,
5683,
9,
565,
6740,
64,
3429,
13,
540,
6740,
64,
7436,
13,
187,
50254,
50276,
565,
24334,
64,
3429,
13,
540,
24334,
64,
7436,
13,
187,
50254,
50276,
565,
6740,
64,
42583,
13,
540,
24334,
64,
42583,
13,
187,
50254,
50276,
3474,
4770,
25,
11,
6740,
64,
4773,
13,
4770,
25,
11,
24334,
64,
4773,
13,
187,
50254,
50276,
14379,
33328,
10715,
19690,
10,
551,
187,
50276,
565,
480,
28,
187,
50276,
605,
23280,
2603,
1269,
16,
90,
13249,
285,
3213,
2193,
347,
1668,
15,
1036,
4229,
1127,
15,
187,
50276,
565,
1269,
426,
470,
28,
187,
50276,
565,
340,
426,
470,
28,
187,
50276,
565,
18747,
426,
470,
28,
187,
50276,
565,
17713,
426,
470,
28,
187,
50276,
3474,
540,
2781,
64,
90,
426,
313,
7614,
64,
7436,
428,
337,
10,
5291,
1668,
28,
187,
50276,
4353,
2796,
6504,
4818,
366,
10990,
2769,
8531,
25,
11,
24334,
64,
4773,
13,
1030,
4770,
25,
11,
6740,
64,
4773,
13,
187,
50272,
4773,
13437,
64,
85,
6740,
64,
42583,
13,
540,
24334,
64,
3429,
13,
540,
2603,
64,
90,
64,
46991,
10,
426,
187,
50272,
6504,
4818,
366,
10990,
64,
36,
28,
187,
50276,
4353,
2796,
20359,
9824,
2973,
84,
2769,
8531,
25,
11,
24334,
64,
4773,
13,
1030,
4770,
25,
11,
6740,
64,
4773,
13,
187,
50272,
565,
24334,
64,
3429,
13,
540,
1269,
13,
540,
18747,
10,
426,
187,
50272,
10978,
272,
3736,
14446,
9824,
2973,
84,
64,
36,
1163,
14446,
2973,
84,
64,
36,
28,
187,
50276,
20359,
10612,
1714,
9,
7614,
64,
3429,
13,
6740,
64,
7436,
13,
24334,
64,
3429,
13,
24334,
64,
7436,
13,
19690,
13,
187,
50265,
7,
89,
13,
708,
90,
13,
708,
9665,
13,
708,
6421,
558,
187,
50276,
7614,
64,
3429,
426,
16508,
9,
7614,
64,
3429,
558,
187,
187,
4,
338,
2931,
9,
35183,
64,
19118,
34948,
38512,
4290,
64,
3528,
2354,
20,
10,
187,
50276,
338,
313,
5089,
36,
11113,
22532,
9,
76,
36,
11113,
15413,
3528,
2354,
20,
1228,
551,
187,
50274,
6504,
4818,
366,
10990,
426,
5383,
4818,
366,
10990,
64,
6693,
64,
3528,
2354,
20,
28,
187,
50274,
338,
313,
1830,
64,
1556,
42343,
9,
19335,
64,
3429,
13,
1668,
1228,
551,
187,
50272,
6504,
4818,
366,
10990,
426,
5383,
4818,
366,
10990,
64,
3528,
2354,
20,
28,
187,
50274,
94,
187,
50276,
94,
187,
4,
7287,
187,
4,
338,
2931,
9,
35183,
64,
19118,
34948,
38512,
4290,
64,
5851,
57,
19,
10,
187,
50276,
338,
313,
5089,
36,
11113,
22532,
9,
76,
36,
11113,
15413,
5851,
57,
19,
1228,
551,
187,
50274,
6504,
4818,
366,
10990,
426,
5383,
4818,
366,
10990,
64,
6693,
64,
5851,
57,
19,
28,
187,
50274,
338,
313,
1830,
64,
1556,
42343,
9,
19335,
64,
3429,
13,
4567,
1228,
551,
187,
50272,
6504,
4818,
366,
10990,
426,
5383,
4818,
366,
10990,
64,
5851,
57,
19,
28,
187,
50274,
94,
187,
50276,
94,
187,
4,
7287,
187,
4,
338,
2931,
9,
35183,
64,
19118,
34948,
38512,
4290,
64,
6603,
1139,
10,
187,
50276,
338,
313,
5089,
36,
11113,
22532,
9,
76,
36,
11113,
15413,
6603,
1139,
1228,
551,
187,
50274,
6504,
4818,
366,
10990,
426,
5383,
4818,
366,
10990,
64,
6693,
64,
6603,
1139,
28,
187,
50274,
338,
313,
1830,
64,
1556,
42343,
9,
19335,
64,
3429,
13,
1668,
1228,
551,
187,
50272,
6504,
4818,
366,
10990,
426,
5383,
4818,
366,
10990,
64,
6603,
1139,
28,
187,
50274,
94,
187,
50276,
94,
187,
4,
7287,
187,
4,
338,
2931,
9,
35183,
64,
19118,
34948,
38512,
4290,
64,
5942,
3175,
19,
10,
187,
50276,
338,
313,
5089,
36,
11113,
22532,
9,
76,
36,
11113,
15413,
5942,
3175,
19,
1228,
551,
187,
50274,
6504,
4818,
366,
10990,
426,
5383,
4818,
366,
10990,
64,
6693,
64,
5942,
3175,
19,
28,
187,
50274,
338,
313,
1830,
64,
1556,
42343,
9,
19335,
64,
3429,
13,
577,
1228,
551,
187,
50272,
6504,
4818,
366,
10990,
426,
5383,
4818,
366,
10990,
64,
5942,
3175,
19,
28,
187,
50274,
94,
187,
50276,
94,
187,
4,
7287,
535,
50276,
338,
313,
10978,
272,
3857,
6740,
64,
3429,
10122,
31133,
2358,
10,
551,
187,
50274,
20359,
9824,
2973,
84,
426,
14446,
9824,
2973,
84,
1540,
64,
36,
28,
187,
50276,
94,
187,
4,
338,
2931,
9,
35183,
64,
4061,
1556,
16462,
3077,
4827,
19686,
52,
64,
3528,
2354,
20,
10,
187,
50276,
338,
313,
10978,
272,
3857,
6004,
36,
11113,
22532,
9,
76,
36,
11113,
15413,
3528,
2354,
20,
10,
3857,
6740,
64,
3429,
654,
31133,
2358,
10,
551,
187,
50274,
20359,
9824,
2973,
84,
426,
14446,
9824,
2973,
84,
64,
3528,
2354,
20,
28,
187,
50276,
94,
187,
4,
7287,
187,
4,
338,
2931,
9,
35183,
64,
4061,
1556,
16462,
3077,
4827,
19686,
52,
64,
6603,
1139,
10,
187,
50276,
338,
313,
10978,
272,
3857,
6004,
36,
11113,
22532,
9,
76,
36,
11113,
15413,
6603,
1139,
10,
3857,
6740,
64,
3429,
654,
31133,
2358,
10,
551,
187,
50274,
20359,
9824,
2973,
84,
426,
14446,
9824,
2973,
84,
64,
6693,
64,
6603,
1139,
28,
187,
50274,
338,
313,
1830,
64,
1556,
42343,
9,
19335,
64,
3429,
13,
854,
1228,
551,
187,
50272,
20359,
9824,
2973,
84,
426,
14446,
9824,
2973,
84,
64,
6603,
1139,
28,
187,
50274,
94,
187,
50276,
94,
187,
4,
7287,
187,
50276,
338,
6522,
10978,
272,
3857,
6740,
64,
3429,
475,
374,
2295,
24334,
64,
3429,
3857,
1269,
654,
470,
89,
33038,
10,
551,
187,
50274,
20359,
9824,
2973,
84,
426,
14446,
2973,
84,
5683,
19,
64,
36,
28,
187,
4,
338,
2931,
9,
35183,
64,
4061,
1556,
4625,
3271,
52,
64,
52,
2354,
19,
10,
187,
50274,
338,
313,
5089,
36,
11113,
22532,
9,
76,
36,
11113,
15413,
52,
2354,
19,
10,
3857,
4110,
64,
1556,
42343,
9,
19335,
64,
3429,
13,
854,
1228,
551,
187,
50272,
20359,
9824,
2973,
84,
426,
14446,
2973,
84,
5683,
19,
64,
52,
2354,
19,
28,
187,
50274,
94,
187,
4,
7287,
187,
50276,
94,
535,
50276,
338,
313,
90,
2239,
2781,
64,
90,
10,
551,
187,
50274,
90,
426,
2781,
64,
90,
28,
187,
50276,
94,
187,
50276,
92,
187,
50274,
565,
340,
74,
426,
340,
11396,
1668,
28,
187,
50274,
3474,
4770,
25,
11,
6740,
426,
6740,
64,
4773,
559,
340,
74,
475,
6740,
64,
42583,
28,
535,
50274,
605,
1876,
24461,
374,
4194,
32743,
15,
187,
50274,
3474,
540,
465,
10990,
5496,
426,
313,
19335,
64,
3429,
559,
4562,
10,
708,
5062,
2405,
28,
187,
50274,
8623,
64,
11023,
64,
1540,
9,
736,
13,
465,
10990,
5496,
475,
374,
558,
535,
50274,
8531,
25,
11,
4194,
4773,
426,
4194,
28,
187,
50274,
565,
4194,
42583,
426,
465,
10990,
5496,
28,
187,
50274,
565,
1390,
90,
426,
340,
74,
28,
535,
50274,
20359,
9824,
2973,
84,
9,
736,
4773,
13,
6740,
13,
24334,
64,
3429,
13,
1269,
13,
18747,
558,
187,
50274,
338,
313,
7614,
64,
7436,
2239,
337,
10,
551,
187,
50272,
7614,
7079,
6740,
64,
42583,
28,
187,
50274,
94,
187,
50274,
20359,
9824,
2973,
84,
9,
736,
4773,
559,
4194,
42583,
13,
6740,
13,
24334,
64,
3429,
13,
1269,
13,
18747,
558,
187,
50274,
7614,
7079,
6740,
64,
42583,
28,
535,
50274,
1542,
313,
75,
426,
470,
28,
480,
654,
24334,
64,
7436,
28,
12996,
75,
10,
551,
187,
50272,
28212,
426,
340,
11396,
1668,
28,
187,
50272,
338,
313,
28212,
3613,
1390,
90,
10,
551,
187,
50270,
338,
313,
90,
2239,
2781,
64,
90,
10,
551,
187,
50268,
90,
426,
2781,
64,
90,
28,
187,
50268,
28212,
426,
340,
11396,
1668,
28,
187,
50268,
7614,
426,
6740,
64,
4773,
559,
340,
74,
475,
6740,
64,
42583,
28,
187,
50270,
94,
187,
50270,
338,
313,
28212,
3613,
1390,
90,
10,
551,
187,
50268,
20359,
9824,
2973,
84,
9,
736,
4773,
13,
6740,
13,
24334,
64,
3429,
13,
1269,
13,
18747,
558,
187,
50268,
736,
4773,
7079,
4194,
42583,
28,
187,
50268,
736,
42583,
426,
428,
736,
42583,
28,
187,
50268,
6275,
90,
426,
340,
74,
28,
187,
50268,
7614,
7079,
6740,
64,
42583,
28,
187,
50270,
94,
187,
50272,
94,
187,
50272,
338,
313,
10978,
272,
2295,
465,
9824,
24211,
10,
551,
187,
50270,
6504,
4818,
366,
10990,
9,
19335,
64,
4773,
13,
4194,
4773,
13,
470,
13,
24334,
64,
3429,
13,
470,
558,
187,
50272,
94,
2010,
551,
187,
50270,
565,
340,
71,
426,
313,
90,
11396,
854,
10,
708,
15215,
28,
187,
50270,
6504,
4818,
366,
10990,
9,
19335,
64,
4773,
13,
4194,
4773,
13,
4194,
42583,
13,
24334,
64,
3429,
13,
340,
71,
558,
187,
50272,
94,
187,
50272,
19335,
64,
4773,
7079,
24334,
64,
42583,
28,
187,
50272,
90,
7079,
17713,
28,
187,
50274,
94,
187,
50274,
4924,
64,
2132,
64,
11023,
64,
1540,
9,
736,
558,
187,
50276,
94,
187,
94,
187,
187,
4353,
14446,
3493,
1351,
35,
40511,
5683,
64,
1036,
9,
565,
6740,
64,
3429,
13,
540,
6740,
64,
7436,
13,
187,
50254,
50273,
565,
24334,
64,
3429,
13,
540,
24334,
64,
7436,
13,
187,
50254,
50273,
565,
6740,
64,
42583,
13,
540,
24334,
64,
42583,
13,
187,
50254,
50273,
3474,
4770,
1036,
11,
6740,
64,
4773,
13,
4770,
1036,
11,
24334,
64,
4773,
13,
187,
50254,
50273,
14379,
33328,
10715,
19690,
10,
551,
187,
50276,
565,
480,
28,
187,
50276,
605,
23280,
2603,
1269,
16,
90,
13249,
285,
3213,
2193,
347,
1668,
15,
1036,
4229,
1127,
15,
187,
50276,
565,
1269,
426,
470,
28,
187,
50276,
565,
340,
426,
470,
28,
187,
50276,
565,
18747,
426,
470,
28,
187,
50276,
565,
17713,
426,
470,
28,
187,
50276,
3474,
540,
2781,
64,
90,
426,
313,
7614,
64,
7436,
428,
337,
10,
5291,
1668,
28,
187,
50276,
4353,
2796,
6504,
4818,
366,
10990,
2769,
8531,
1036,
11,
24334,
64,
4773,
13,
1030,
4770,
1036,
11,
6740,
64,
4773,
13,
187,
50272,
4773,
13437,
64,
85,
6740,
64,
42583,
13,
540,
24334,
64,
3429,
13,
540,
2603,
64,
90,
64,
46991,
10,
426,
187,
50272,
6504,
4818,
366,
10990,
64,
1036,
64,
36,
28,
187,
50276,
4353,
2796,
20359,
9824,
2973,
84,
2769,
8531,
1036,
11,
24334,
64,
4773,
13,
1030,
4770,
1036,
11,
6740,
64,
4773,
13,
187,
50272,
565,
24334,
64,
3429,
13,
540,
1269,
13,
540,
18747,
10,
426,
187,
50272,
10978,
272,
3736,
14446,
9824,
2973,
84,
64,
1036,
64,
36,
1163,
14446,
2973,
84,
64,
1036,
64,
36,
28,
187,
50276,
20359,
10612,
1714,
9,
7614,
64,
3429,
13,
6740,
64,
7436,
13,
24334,
64,
3429,
13,
24334,
64,
7436,
13,
19690,
13,
187,
50265,
7,
89,
13,
708,
90,
13,
708,
9665,
13,
708,
6421,
558,
187,
50276,
7614,
64,
3429,
426,
16508,
9,
7614,
64,
3429,
558,
187,
187,
4,
338,
2931,
9,
35183,
64,
19118,
34948,
38512,
4290,
64,
1036,
64,
52,
2354,
19,
10,
187,
50276,
338,
313,
5089,
36,
11113,
22532,
9,
76,
36,
11113,
15413,
52,
2354,
19,
1228,
551,
187,
50274,
6504,
4818,
366,
10990,
426,
5383,
4818,
366,
10990,
64,
6693,
64,
1036,
64,
52,
2354,
19,
28,
187,
50274,
338,
313,
1830,
64,
1556,
42343,
9,
19335,
64,
3429,
13,
1668,
1228,
551,
187,
50272,
6504,
4818,
366,
10990,
426,
5383,
4818,
366,
10990,
64,
1036,
64,
52,
2354,
19,
28,
187,
50274,
94,
187,
50276,
94,
187,
4,
7287,
187,
4,
338,
2931,
9,
35183,
64,
19118,
34948,
38512,
4290,
64,
1036,
64,
3528,
2354,
20,
10,
187,
50276,
338,
313,
5089,
36,
11113,
22532,
9,
76,
36,
11113,
15413,
3528,
2354,
20,
1228,
551,
187,
50274,
6504,
4818,
366,
10990,
426,
5383,
4818,
366,
10990,
64,
6693,
64,
1036,
64,
3528,
2354,
20,
28,
187,
50274,
338,
313,
1830,
64,
1556,
42343,
9,
19335,
64,
3429,
13,
1668,
1228,
551,
187,
50272,
6504,
4818,
366,
10990,
426,
5383,
4818,
366,
10990,
64,
1036,
64,
3528,
2354,
20,
28,
187,
50274,
94,
187,
50276,
94,
187,
4,
7287,
187,
4,
338,
2931,
9,
35183,
64,
19118,
34948,
38512,
4290,
64,
1036,
64,
5851,
57,
19,
10,
187,
50276,
338,
313,
5089,
36,
11113,
22532,
9,
76,
36,
11113,
15413,
5851,
57,
19,
1228,
551,
187,
50274,
6504,
4818,
366,
10990,
426,
5383,
4818,
366,
10990,
64,
6693,
64,
1036,
64,
5851,
57,
19,
28,
187,
50274,
338,
313,
1830,
64,
1556,
42343,
9,
19335,
64,
3429,
13,
4567,
1228,
551,
187,
50272,
6504,
4818,
366,
10990,
426,
5383,
4818,
366,
10990,
64,
1036,
64,
5851,
57,
19,
28,
187,
50274,
94,
187,
50276,
94,
187,
4,
7287,
187,
4,
338,
2931,
9,
35183,
64,
19118,
34948,
38512,
4290,
64,
1036,
64,
6603,
1139,
10,
187,
50276,
338,
313,
5089,
36,
11113,
22532,
9,
76,
36,
11113,
15413,
6603,
1139,
1228,
551,
187,
50274,
6504,
4818,
366,
10990,
426,
5383,
4818,
366,
10990,
64,
6693,
64,
1036,
64,
6603,
1139,
28,
187,
50274,
338,
313,
1830,
64,
1556,
42343,
9,
19335,
64,
3429,
13,
1668,
1228,
551,
187,
50272,
6504,
4818,
366,
10990,
426,
5383,
4818,
366,
10990,
64,
1036,
64,
6603,
1139,
28,
187,
50274,
94,
187,
50276,
94,
187,
4,
7287,
187,
4,
338,
2931,
9,
35183,
64,
19118,
34948,
38512,
4290,
64,
1036,
64,
5942,
3175,
19,
10,
187,
50276,
338,
313,
5089,
36,
11113,
22532,
9,
76,
36,
11113,
15413,
5942,
3175,
19,
1228,
551,
187,
50274,
6504,
4818,
366,
10990,
426,
5383,
4818,
366,
10990,
64,
6693,
64,
1036,
64,
5942,
3175,
19,
28,
187,
50274,
338,
313,
1830,
64,
1556,
42343,
9,
19335,
64,
3429,
13,
577,
1228,
551,
187,
50272,
6504,
4818,
366,
10990,
426,
5383,
4818,
366,
10990,
64,
1036,
64,
5942,
3175,
19,
28,
187,
50274,
94,
187,
50276,
94,
187,
4,
7287,
535,
50276,
338,
313,
10978,
272,
3857,
6740,
64,
3429,
10122,
31133,
2358,
10,
551,
187,
50274,
20359,
9824,
2973,
84,
426,
14446,
9824,
2973,
84,
1540,
64,
1036,
64,
36,
28,
187,
50276,
94,
187,
4,
338,
2931,
9,
35183,
64,
4061,
1556,
16462,
3077,
4827,
19686,
52,
64,
1036,
64,
3528,
2354,
20,
10,
187,
50276,
338,
313,
10978,
272,
3857,
6004,
36,
11113,
22532,
9,
76,
36,
11113,
15413,
3528,
2354,
20,
10,
3857,
6740,
64,
3429,
654,
31133,
2358,
10,
551,
187,
50274,
20359,
9824,
2973,
84,
426,
14446,
9824,
2973,
84,
64,
1036,
64,
3528,
2354,
20,
28,
187,
50276,
94,
187,
4,
7287,
187,
50276,
338,
6522,
10978,
272,
3857,
6740,
64,
3429,
475,
374,
2295,
24334,
64,
3429,
3857,
1269,
654,
470,
89,
33038,
10,
551,
187,
50274,
20359,
9824,
2973,
84,
426,
14446,
2973,
84,
5683,
19,
64,
1036,
64,
36,
28,
187,
4,
338,
2931,
9,
35183,
64,
4061,
1556,
4625,
3271,
52,
64,
1036,
64,
52,
2354,
19,
10,
187,
50274,
338,
313,
5089,
36,
11113,
22532,
9,
76,
36,
11113,
15413,
52,
2354,
19,
10,
3857,
4110,
64,
1556,
42343,
9,
19335,
64,
3429,
13,
854,
1228,
551,
187,
50272,
20359,
9824,
2973,
84,
426,
14446,
2973,
84,
5683,
19,
64,
1036,
64,
52,
2354,
19,
28,
187,
50274,
94,
187,
4,
7287,
187,
50276,
94,
535,
50276,
338,
313,
90,
2239,
2781,
64,
90,
10,
551,
187,
50274,
90,
426,
2781,
64,
90,
28,
187,
50276,
94,
187,
50276,
92,
187,
50274,
565,
340,
74,
426,
340,
11396,
1668,
28,
187,
50274,
3474,
4770,
1036,
11,
6740,
426,
6740,
64,
4773,
559,
340,
74,
475,
6740,
64,
42583,
28,
535,
50274,
605,
1876,
24461,
374,
4194,
32743,
15,
187,
50274,
3474,
540,
465,
10990,
5496,
426,
313,
19335,
64,
3429,
559,
4562,
10,
708,
5062,
2405,
28,
187,
50274,
8623,
64,
11023,
64,
1540,
9,
736,
13,
465,
10990,
5496,
475,
577,
558,
535,
50274,
8531,
1036,
11,
4194,
4773,
426,
313,
8531,
1036,
5627,
736,
28,
187,
50274,
565,
4194,
42583,
426,
465,
10990,
5496,
28,
187,
50274,
565,
1390,
90,
426,
340,
74,
28,
535,
50274,
20359,
9824,
2973,
84,
9,
736,
4773,
13,
6740,
13,
24334,
64,
3429,
13,
1269,
13,
18747,
558,
187,
50274,
338,
313,
7614,
64,
7436,
2239,
337,
10,
551,
187,
50272,
7614,
7079,
6740,
64,
42583,
28,
187,
50274,
94,
187,
50274,
20359,
9824,
2973,
84,
9,
736,
4773,
559,
4194,
42583,
13,
6740,
13,
24334,
64,
3429,
13,
1269,
13,
18747,
558,
187,
50274,
7614,
7079,
6740,
64,
42583,
28,
535,
50274,
1542,
313,
75,
426,
470,
28,
480,
654,
24334,
64,
7436,
28,
12996,
75,
10,
551,
187,
50272,
28212,
426,
340,
11396,
1668,
28,
187,
50272,
338,
313,
28212,
3613,
1390,
90,
10,
551,
187,
50270,
338,
313,
90,
2239,
2781,
64,
90,
10,
551,
187,
50268,
90,
426,
2781,
64,
90,
28,
187,
50268,
28212,
426,
340,
11396,
1668,
28,
187,
50268,
7614,
426,
6740,
64,
4773,
559,
340,
74,
475,
6740,
64,
42583,
28,
187,
50270,
94,
187,
50270,
338,
313,
28212,
3613,
1390,
90,
10,
551,
187,
50268,
20359,
9824,
2973,
84,
9,
736,
4773,
13,
6740,
13,
24334,
64,
3429,
13,
1269,
13,
18747,
558,
187,
50268,
736,
4773,
7079,
4194,
42583,
28,
187,
50268,
736,
42583,
426,
428,
736,
42583,
28,
187,
50268,
6275,
90,
426,
340,
74,
28,
187,
50268,
7614,
7079,
6740,
64,
42583,
28,
187,
50270,
94,
187,
50272,
94,
187,
50272,
338,
313,
10978,
272,
2295,
465,
9824,
24211,
10,
551,
187,
50270,
6504,
4818,
366,
10990,
9,
19335,
64,
4773,
13,
4194,
4773,
13,
470,
13,
24334,
64,
3429,
13,
470,
558,
187,
50272,
94,
2010,
551,
187,
50270,
565,
340,
71,
426,
313,
90,
11396,
854,
10,
708,
15215,
28,
187,
50270,
6504,
4818,
366,
10990,
9,
19335,
64,
4773,
13,
4194,
4773,
13,
4194,
42583,
13,
24334,
64,
3429,
13,
340,
71,
558,
187,
50272,
94,
187,
50272,
19335,
64,
4773,
7079,
24334,
64,
42583,
28,
187,
50272,
90,
7079,
17713,
28,
187,
50274,
94,
187,
50274,
4924,
64,
2132,
64,
11023,
64,
1540,
9,
736,
558,
187,
50276,
94,
187,
94,
187,
187,
605,
14446,
1847,
1351,
281,
16,
4064,
667,
10103,
13,
1293,
30370,
15,
187,
605,
30159,
1127,
14168,
310,
908,
323,
3045,
27,
380,
5170,
1668,
9886,
187,
605,
273,
1269,
285,
18747,
310,
253,
7007,
629,
273,
253,
2603,
1899,
285,
187,
605,
253,
2406,
1668,
9886,
403,
253,
4229,
14492,
629,
15,
187,
187,
4659,
2991,
14446,
3493,
1351,
21595,
9,
565,
6740,
64,
3429,
13,
540,
6740,
64,
7436,
13,
187,
50254,
50273,
565,
24334,
64,
3429,
13,
540,
24334,
64,
7436,
13,
187,
50254,
50273,
565,
6740,
64,
42583,
13,
540,
24334,
64,
42583,
13,
187,
50254,
50273,
3474,
4770,
25,
11,
6740,
64,
4773,
13,
4770,
25,
11,
24334,
64,
4773,
10,
551,
187,
50276,
565,
891,
28,
187,
50276,
4353,
2796,
20359,
2973,
84,
2769,
8531,
25,
11,
24334,
64,
4773,
13,
1030,
4770,
25,
11,
6740,
64,
4773,
13,
187,
50272,
565,
24334,
64,
3429,
13,
540,
1269,
13,
540,
18747,
10,
426,
14446,
2973,
84,
64,
36,
28,
187,
50276,
605,
23280,
2603,
1269,
16,
90,
13249,
285,
3213,
2193,
347,
1668,
15,
1036,
4229,
1127,
15,
187,
50276,
565,
1269,
426,
470,
28,
187,
50276,
565,
340,
426,
470,
28,
187,
50276,
565,
18747,
426,
470,
28,
187,
50276,
565,
17713,
426,
470,
28,
187,
50276,
20359,
10612,
1714,
9,
7614,
64,
3429,
13,
6740,
64,
7436,
13,
24334,
64,
3429,
13,
24334,
64,
7436,
13,
465,
9824,
11336,
13,
187,
50265,
7,
89,
13,
708,
90,
13,
708,
9665,
13,
708,
6421,
558,
187,
50276,
7614,
64,
3429,
426,
16508,
9,
7614,
64,
3429,
558,
535,
50276,
338,
313,
7614,
64,
3429,
475,
374,
2295,
24334,
64,
3429,
3857,
1269,
654,
470,
89,
33038,
10,
551,
187,
50274,
20359,
2973,
84,
426,
14446,
2973,
84,
5683,
19,
64,
36,
28,
187,
4,
338,
2931,
9,
35183,
64,
4061,
1556,
4625,
3271,
52,
64,
52,
2354,
19,
10,
187,
50274,
338,
313,
5089,
36,
11113,
22532,
9,
76,
36,
11113,
15413,
52,
2354,
19,
10,
3857,
4110,
64,
1556,
42343,
9,
19335,
64,
3429,
13,
854,
1228,
551,
187,
50272,
20359,
2973,
84,
426,
14446,
2973,
84,
5683,
19,
64,
52,
2354,
19,
28,
187,
50274,
94,
187,
4,
7287,
187,
50276,
94,
535,
50276,
1542,
313,
74,
426,
470,
28,
891,
654,
24334,
64,
7436,
28,
12996,
74,
10,
551,
187,
50274,
20359,
2973,
84,
9,
19335,
64,
4773,
13,
6740,
64,
4773,
559,
313,
90,
11396,
1668,
10,
475,
6740,
64,
42583,
13,
24334,
64,
3429,
13,
1269,
13,
18747,
558,
187,
50274,
19335,
64,
4773,
7079,
24334,
64,
42583,
28,
187,
50274,
90,
7079,
17713,
28,
187,
50276,
94,
187,
94,
187,
187,
4659,
2991,
14446,
3493,
1351,
21595,
64,
1036,
9,
565,
6740,
64,
3429,
13,
540,
6740,
64,
7436,
13,
187,
50254,
50270,
565,
24334,
64,
3429,
13,
540,
24334,
64,
7436,
13,
187,
50254,
50270,
565,
6740,
64,
42583,
13,
540,
24334,
64,
42583,
13,
187,
50254,
50270,
3474,
4770,
1036,
11,
6740,
64,
4773,
13,
4770,
1036,
11,
24334,
64,
4773,
10,
551,
187,
50276,
565,
891,
28,
187,
50276,
4353,
2796,
20359,
2973,
84,
2769,
8531,
1036,
11,
24334,
64,
4773,
13,
1030,
4770,
1036,
11,
6740,
64,
4773,
13,
187,
50272,
565,
24334,
64,
3429,
13,
540,
1269,
13,
540,
18747,
10,
426,
14446,
2973,
84,
64,
1036,
64,
36,
28,
187,
50276,
605,
23280,
2603,
1269,
16,
90,
13249,
285,
3213,
2193,
347,
1668,
15,
1036,
4229,
1127,
15,
187,
50276,
565,
1269,
426,
470,
28,
187,
50276,
565,
340,
426,
470,
28,
187,
50276,
565,
18747,
426,
470,
28,
187,
50276,
565,
17713,
426,
470,
28,
187,
50276,
20359,
10612,
1714,
9,
7614,
64,
3429,
13,
6740,
64,
7436,
13,
24334,
64,
3429,
13,
24334,
64,
7436,
13,
465,
9824,
11336,
13,
187,
50265,
7,
89,
13,
708,
90,
13,
708,
9665,
13,
708,
6421,
558,
187,
50276,
7614,
64,
3429,
426,
16508,
9,
7614,
64,
3429,
558,
535,
50276,
338,
313,
7614,
64,
3429,
475,
374,
2295,
24334,
64,
3429,
3857,
1269,
654,
470,
89,
33038,
10,
551,
187,
50274,
20359,
2973,
84,
426,
14446,
2973,
84,
5683,
19,
64,
1036,
64,
36,
28,
187,
4,
338,
2931,
9,
35183,
64,
4061,
1556,
4625,
3271,
52,
64,
1036,
64,
52,
2354,
19,
10,
187,
50274,
338,
313,
5089,
36,
11113,
22532,
9,
76,
36,
11113,
15413,
52,
2354,
19,
10,
3857,
4110,
64,
1556,
42343,
9,
19335,
64,
3429,
13,
854,
1228,
551,
187,
50272,
20359,
2973,
84,
426,
14446,
2973,
84,
5683,
19,
64,
1036,
64,
52,
2354,
19,
28,
187,
50274,
94,
187,
4,
7287,
187,
50276,
94,
535,
50276,
1542,
313,
74,
426,
470,
28,
891,
654,
24334,
64,
7436,
28,
12996,
74,
10,
551,
187,
50274,
20359,
2973,
84,
9,
19335,
64,
4773,
13,
6740,
64,
4773,
559,
313,
90,
11396,
1668,
10,
475,
6740,
64,
42583,
13,
187,
50264,
19335,
64,
3429,
13,
1269,
13,
18747,
558,
187,
50274,
19335,
64,
4773,
7079,
24334,
64,
42583,
28,
187,
50274,
90,
7079,
17713,
28,
187,
50276,
94,
187,
94,
187,
187,
605,
14446,
247,
6415,
15,
187,
605,
831,
1159,
27758,
2706,
281,
247,
18052,
9171,
254,
1754,
327,
4311,
2803,
15,
187,
187,
18169,
58,
14817,
64,
11252,
187,
4353,
14446,
3493,
1351,
9,
3474,
4770,
25,
11,
6740,
13,
540,
6740,
64,
42583,
13,
187,
50262,
565,
6740,
64,
3429,
13,
540,
6740,
64,
7436,
13,
187,
50262,
8531,
25,
11,
24334,
13,
540,
24334,
64,
42583,
13,
187,
50262,
565,
24334,
64,
3429,
13,
540,
24334,
64,
7436,
13,
187,
50262,
14379,
33328,
10715,
19690,
10,
551,
187,
50276,
605,
3759,
6644,
19690,
672,
1896,
15,
187,
50276,
10978,
272,
426,
14446,
9824,
10252,
6977,
9,
7614,
64,
3429,
13,
6740,
64,
7436,
13,
187,
50254,
50270,
19335,
64,
3429,
13,
24334,
64,
7436,
13,
19690,
558,
535,
50276,
605,
32725,
4898,
2097,
30332,
253,
2460,
15,
187,
50276,
338,
313,
7614,
64,
7436,
654,
470,
10,
551,
187,
50274,
7614,
64,
7436,
426,
428,
7614,
64,
7436,
28,
187,
50274,
7614,
426,
6740,
559,
313,
7614,
64,
7436,
428,
337,
10,
475,
6740,
64,
42583,
28,
187,
50274,
7614,
64,
42583,
426,
428,
7614,
64,
42583,
28,
187,
50276,
94,
535,
50276,
605,
7890,
18052,
11498,
281,
3157,
3045,
323,
1846,
30285,
15,
187,
50276,
605,
1198,
1650,
13,
512,
253,
337,
16,
19,
9171,
723,
588,
897,
14446,
3493,
1351,
10854,
19,
1082,
187,
50276,
338,
313,
19335,
64,
3429,
2295,
6740,
64,
3429,
3857,
24334,
64,
7436,
2295,
6740,
64,
7436,
10,
551,
187,
50274,
605,
19967,
429,
3491,
15,
187,
50274,
17491,
3493,
1351,
9,
7614,
13,
6740,
64,
42583,
13,
24334,
13,
24334,
64,
42583,
13,
24334,
64,
3429,
13,
24334,
64,
7436,
558,
187,
50274,
2309,
28,
187,
50276,
94,
187,
50276,
338,
313,
19335,
64,
3429,
2295,
6740,
64,
3429,
3857,
19690,
3613,
465,
9824,
7536,
10,
551,
187,
50274,
565,
17713,
426,
30159,
15187,
9,
7614,
64,
7436,
13,
24334,
64,
7436,
558,
187,
50274,
605,
44287,
26257,
4311,
28446,
13,
533,
440,
1026,
3256,
36128,
15,
187,
50274,
20359,
3493,
1351,
44594,
9,
7614,
64,
7436,
13,
187,
50255,
19335,
64,
3429,
13,
24334,
64,
7436,
13,
187,
50255,
7614,
64,
42583,
13,
24334,
64,
42583,
13,
6740,
13,
24334,
13,
187,
50255,
17,
13,
470,
13,
17713,
13,
337,
13,
19690,
558,
187,
50274,
2309,
28,
187,
50276,
94,
187,
50276,
338,
313,
19335,
64,
3429,
11049,
16508,
9,
7614,
64,
3429,
10,
3857,
24334,
64,
7436,
11049,
6740,
64,
7436,
10,
551,
187,
50274,
605,
14446,
1066,
15,
187,
50274,
338,
313,
21,
475,
24334,
64,
3429,
2295,
495,
475,
6740,
64,
3429,
3857,
187,
50270,
21,
475,
24334,
64,
7436,
2295,
495,
475,
6740,
64,
7436,
10,
551,
187,
50272,
605,
18325,
13,
495,
16,
21,
187,
50272,
20359,
3493,
1351,
10854,
1706,
9,
7614,
64,
3429,
13,
6740,
64,
7436,
13,
24334,
64,
3429,
13,
24334,
64,
7436,
13,
187,
50255,
7614,
64,
42583,
13,
24334,
64,
42583,
13,
6740,
13,
24334,
13,
19690,
558,
187,
50272,
2309,
28,
187,
50274,
94,
187,
50274,
338,
313,
19,
475,
24334,
64,
3429,
2295,
6740,
64,
3429,
3857,
374,
475,
24334,
64,
7436,
2295,
6740,
64,
7436,
10,
551,
187,
50272,
605,
18325,
13,
337,
16,
19,
187,
50272,
20359,
3493,
1351,
10854,
19,
9,
7614,
64,
3429,
13,
6740,
64,
7436,
13,
24334,
64,
3429,
13,
24334,
64,
7436,
13,
187,
50256,
7614,
64,
42583,
13,
24334,
64,
42583,
13,
6740,
13,
24334,
13,
19690,
558,
187,
50272,
2309,
28,
187,
50274,
94,
187,
50274,
605,
495,
16,
25,
9971,
598,
323,
8909,
25180,
5937,
66,
4898,
15,
187,
50274,
338,
313,
25,
475,
24334,
64,
3429,
2295,
495,
475,
6740,
64,
3429,
3857,
187,
50270,
19335,
64,
7436,
2295,
6048,
7614,
64,
7436,
475,
495,
559,
818,
10,
1227,
854,
1228,
551,
187,
50272,
605,
18325,
13,
495,
16,
25,
187,
50272,
20359,
3493,
1351,
10854,
1839,
9,
7614,
64,
3429,
13,
6740,
64,
7436,
13,
24334,
64,
3429,
13,
24334,
64,
7436,
13,
187,
50255,
7614,
64,
42583,
13,
24334,
64,
42583,
13,
6740,
13,
24334,
13,
19690,
558,
187,
50272,
2309,
28,
187,
50274,
94,
187,
50274,
338,
313,
21,
475,
24334,
64,
3429,
2295,
6740,
64,
3429,
3857,
577,
475,
24334,
64,
7436,
2295,
6740,
64,
7436,
3857,
187,
50270,
9,
10978,
272,
2295,
465,
9824,
7536,
2785,
19690,
2295,
465,
9824,
11336,
1228,
551,
187,
50272,
605,
18325,
13,
337,
16,
21,
187,
50272,
20359,
3493,
1351,
10854,
21,
9,
7614,
64,
3429,
13,
6740,
64,
7436,
13,
24334,
64,
3429,
13,
24334,
64,
7436,
13,
187,
50256,
7614,
64,
42583,
13,
24334,
64,
42583,
13,
6740,
13,
24334,
13,
19690,
558,
187,
50272,
2309,
28,
187,
50274,
94,
187,
50276,
94,
187,
50276,
338,
313,
10978,
272,
2295,
465,
9824,
7536,
3857,
24334,
64,
7436,
475,
374,
654,
6740,
64,
7436,
10,
551,
187,
50274,
20359,
3493,
1351,
7536,
9,
7614,
64,
3429,
13,
6740,
64,
7436,
13,
24334,
64,
3429,
13,
24334,
64,
7436,
13,
187,
50260,
7614,
64,
42583,
13,
24334,
64,
42583,
13,
6740,
13,
24334,
558,
187,
50274,
2309,
28,
187,
50276,
94,
187,
50276,
338,
313,
10978,
272,
3857,
24334,
64,
7436,
2239,
6740,
64,
7436,
10,
551,
187,
50274,
20359,
3493,
1351,
35,
40511,
5683,
9,
7614,
64,
3429,
13,
6740,
64,
7436,
13,
24334,
64,
3429,
13,
24334,
64,
7436,
13,
187,
50254,
6740,
64,
42583,
13,
24334,
64,
42583,
13,
6740,
13,
24334,
13,
19690,
558,
187,
50274,
2309,
28,
187,
50276,
94,
187,
50276,
338,
313,
10978,
272,
10,
551,
187,
50274,
20359,
3493,
1351,
35,
40511,
10854,
9,
7614,
64,
3429,
13,
6740,
64,
7436,
13,
24334,
64,
3429,
13,
24334,
64,
7436,
13,
187,
50254,
50275,
7614,
64,
42583,
13,
24334,
64,
42583,
13,
6740,
13,
24334,
13,
19690,
558,
187,
50274,
2309,
28,
187,
50276,
94,
187,
50276,
20359,
3493,
1351,
21595,
9,
7614,
64,
3429,
13,
6740,
64,
7436,
13,
24334,
64,
3429,
13,
24334,
64,
7436,
13,
187,
50259,
7614,
64,
42583,
13,
24334,
64,
42583,
13,
6740,
13,
24334,
558,
187,
94,
187,
187,
18169,
58,
14817,
64,
11252,
187,
4353,
14446,
3493,
1351,
64,
1036,
9,
3474,
4770,
1036,
11,
6740,
13,
540,
6740,
64,
42583,
13,
187,
50260,
565,
6740,
64,
3429,
13,
540,
6740,
64,
7436,
13,
187,
50260,
8531,
1036,
11,
24334,
13,
540,
24334,
64,
42583,
13,
187,
50260,
565,
24334,
64,
3429,
13,
540,
24334,
64,
7436,
13,
187,
50260,
14379,
33328,
10715,
19690,
10,
551,
187,
50276,
605,
3759,
6644,
19690,
672,
1896,
15,
187,
50276,
10978,
272,
426,
14446,
9824,
10252,
6977,
9,
7614,
64,
3429,
13,
6740,
64,
7436,
13,
187,
50254,
50270,
19335,
64,
3429,
13,
24334,
64,
7436,
13,
19690,
558,
535,
50276,
605,
32725,
4898,
2097,
30332,
253,
2460,
15,
187,
50276,
338,
313,
7614,
64,
7436,
654,
470,
10,
551,
187,
50274,
7614,
64,
7436,
426,
428,
7614,
64,
7436,
28,
187,
50274,
7614,
426,
6740,
559,
313,
7614,
64,
7436,
428,
337,
10,
475,
6740,
64,
42583,
28,
187,
50274,
7614,
64,
42583,
426,
428,
7614,
64,
42583,
28,
187,
50276,
94,
535,
50276,
605,
7890,
18052,
11498,
281,
3157,
3045,
323,
1846,
30285,
15,
187,
50276,
605,
1198,
1650,
13,
512,
253,
337,
16,
19,
9171,
723,
588,
897,
14446,
3493,
1351,
10854,
19,
1082,
187,
50276,
338,
313,
19335,
64,
3429,
2295,
6740,
64,
3429,
3857,
24334,
64,
7436,
2295,
6740,
64,
7436,
10,
551,
187,
50274,
605,
19967,
429,
3491,
15,
187,
50274,
17491,
3493,
1351,
64,
1036,
9,
7614,
13,
6740,
64,
42583,
13,
24334,
13,
24334,
64,
42583,
13,
24334,
64,
3429,
13,
24334,
64,
7436,
558,
187,
50274,
2309,
28,
187,
50276,
94,
187,
50276,
338,
313,
19335,
64,
3429,
2295,
6740,
64,
3429,
10,
551,
187,
50274,
565,
17713,
426,
30159,
15187,
9,
7614,
64,
7436,
13,
24334,
64,
7436,
558,
187,
50274,
605,
44287,
26257,
4311,
28446,
13,
533,
440,
1026,
3256,
28446,
15,
187,
50274,
20359,
3493,
1351,
44594,
64,
1036,
9,
7614,
64,
7436,
13,
187,
50254,
50276,
19335,
64,
3429,
13,
24334,
64,
7436,
13,
187,
50254,
50276,
7614,
64,
42583,
13,
24334,
64,
42583,
13,
6740,
13,
24334,
13,
187,
50254,
50276,
17,
13,
470,
13,
17713,
13,
337,
13,
19690,
558,
187,
50274,
2309,
28,
187,
50276,
94,
187,
50276,
338,
313,
19335,
64,
3429,
11049,
16508,
9,
7614,
64,
3429,
10,
3857,
24334,
64,
7436,
11049,
6740,
64,
7436,
10,
551,
187,
50274,
605,
14446,
1066,
15,
187,
50274,
338,
313,
21,
475,
24334,
64,
3429,
2295,
495,
475,
6740,
64,
3429,
3857,
187,
50270,
21,
475,
24334,
64,
7436,
2295,
495,
475,
6740,
64,
7436,
10,
551,
187,
50272,
605,
18325,
13,
495,
16,
21,
187,
50272,
20359,
3493,
1351,
10854,
1706,
64,
1036,
9,
7614,
64,
3429,
13,
6740,
64,
7436,
13,
24334,
64,
3429,
13,
24334,
64,
7436,
13,
187,
50254,
50276,
7614,
64,
42583,
13,
24334,
64,
42583,
13,
6740,
13,
24334,
13,
19690,
558,
187,
50272,
2309,
28,
187,
50274,
94,
187,
50274,
338,
313,
19,
475,
24334,
64,
3429,
2295,
6740,
64,
3429,
3857,
374,
475,
24334,
64,
7436,
2295,
6740,
64,
7436,
10,
551,
187,
50272,
605,
18325,
13,
337,
16,
19,
187,
50272,
20359,
3493,
1351,
10854,
19,
64,
1036,
9,
7614,
64,
3429,
13,
6740,
64,
7436,
13,
24334,
64,
3429,
13,
24334,
64,
7436,
13,
187,
50254,
6740,
64,
42583,
13,
24334,
64,
42583,
13,
6740,
13,
24334,
13,
19690,
558,
187,
50272,
2309,
28,
187,
50274,
94,
187,
50274,
605,
495,
16,
25,
9971,
598,
323,
8909,
25180,
5937,
66,
4898,
15,
187,
50274,
338,
313,
25,
475,
24334,
64,
3429,
2295,
495,
475,
6740,
64,
3429,
3857,
187,
50270,
19335,
64,
7436,
2295,
6048,
7614,
64,
7436,
475,
495,
559,
818,
10,
1227,
854,
1228,
551,
187,
50272,
605,
18325,
13,
495,
16,
25,
187,
50272,
20359,
3493,
1351,
10854,
1839,
64,
1036,
9,
7614,
64,
3429,
13,
6740,
64,
7436,
13,
24334,
64,
3429,
13,
24334,
64,
7436,
13,
187,
50254,
50276,
7614,
64,
42583,
13,
24334,
64,
42583,
13,
6740,
13,
24334,
13,
19690,
558,
187,
50272,
2309,
28,
187,
50274,
94,
187,
50274,
338,
313,
21,
475,
24334,
64,
3429,
2295,
6740,
64,
3429,
3857,
577,
475,
24334,
64,
7436,
2295,
6740,
64,
7436,
3857,
187,
50263,
10978,
272,
3613,
465,
9824,
35,
40511,
10,
551,
187,
50272,
605,
18325,
13,
337,
16,
21,
187,
50272,
20359,
3493,
1351,
10854,
21,
64,
1036,
9,
7614,
64,
3429,
13,
6740,
64,
7436,
13,
24334,
64,
3429,
13,
24334,
64,
7436,
13,
187,
50254,
6740,
64,
42583,
13,
24334,
64,
42583,
13,
6740,
13,
24334,
13,
19690,
558,
187,
50272,
2309,
28,
187,
50274,
94,
187,
50276,
94,
187,
50276,
338,
313,
10978,
272,
2295,
465,
9824,
7536,
3857,
24334,
64,
7436,
475,
374,
654,
6740,
64,
7436,
10,
551,
187,
50274,
20359,
3493,
1351,
7536,
64,
1036,
9,
7614,
64,
3429,
13,
6740,
64,
7436,
13,
24334,
64,
3429,
13,
24334,
64,
7436,
13,
187,
50257,
7614,
64,
42583,
13,
24334,
64,
42583,
13,
6740,
13,
24334,
558,
187,
50274,
2309,
28,
187,
50276,
94,
187,
50276,
338,
313,
10978,
272,
3857,
24334,
64,
7436,
2239,
6740,
64,
7436,
10,
551,
187,
50274,
20359,
3493,
1351,
35,
40511,
5683,
64,
1036,
9,
7614,
64,
3429,
13,
6740,
64,
7436,
13,
24334,
64,
3429,
13,
24334,
64,
7436,
13,
187,
50254,
50274,
7614,
64,
42583,
13,
24334,
64,
42583,
13,
6740,
13,
24334,
13,
19690,
558,
187,
50274,
2309,
28,
187,
50276,
94,
187,
50276,
338,
313,
10978,
272,
10,
551,
187,
50274,
20359,
3493,
1351,
35,
40511,
10854,
64,
1036,
9,
7614,
64,
3429,
13,
6740,
64,
7436,
13,
24334,
64,
3429,
13,
24334,
64,
7436,
13,
187,
50254,
50272,
7614,
64,
42583,
13,
24334,
64,
42583,
13,
6740,
13,
24334,
13,
19690,
558,
187,
50274,
2309,
28,
187,
50276,
94,
187,
50276,
20359,
3493,
1351,
21595,
64,
1036,
9,
7614,
64,
3429,
13,
6740,
64,
7436,
13,
24334,
64,
3429,
13,
24334,
64,
7436,
13,
187,
50256,
7614,
64,
42583,
13,
24334,
64,
42583,
13,
6740,
13,
24334,
558,
187,
94,
187,
187,
605,
14446,
271,
309,
25569,
2460,
15,
187,
605,
831,
1159,
275,
1614,
5841,
247,
13642,
1159,
323,
1016,
6415,
15,
187,
187,
18169,
58,
14817,
64,
11252,
187,
565,
309,
25569,
20359,
9,
3474,
4770,
25,
11,
6740,
64,
90,
13,
540,
6740,
64,
42583,
64,
90,
13,
187,
50264,
3474,
4770,
25,
11,
6740,
64,
86,
13,
540,
6740,
64,
42583,
64,
86,
13,
187,
50264,
3474,
4770,
25,
11,
6740,
64,
87,
13,
540,
6740,
64,
42583,
64,
87,
13,
187,
50264,
565,
6740,
64,
3429,
13,
540,
6740,
64,
7436,
13,
187,
50264,
8531,
25,
11,
24334,
64,
90,
13,
540,
24334,
64,
42583,
64,
90,
13,
187,
50264,
8531,
25,
11,
24334,
64,
86,
13,
540,
24334,
64,
42583,
64,
86,
13,
187,
50264,
8531,
25,
11,
24334,
64,
87,
13,
540,
24334,
64,
42583,
64,
87,
13,
187,
50264,
565,
24334,
64,
3429,
13,
540,
24334,
64,
7436,
13,
187,
50264,
14379,
33328,
10715,
19690,
10,
551,
187,
50276,
565,
6740,
64,
14674,
3429,
426,
9242,
4449,
40419,
9,
7614,
64,
3429,
13,
337,
13,
337,
558,
187,
50276,
565,
6740,
64,
14674,
7436,
426,
9242,
4449,
40419,
9,
7614,
64,
7436,
13,
337,
13,
337,
558,
187,
50276,
565,
24334,
64,
14674,
3429,
426,
9242,
4449,
40419,
9,
19335,
64,
3429,
13,
337,
13,
337,
558,
187,
50276,
565,
24334,
64,
14674,
7436,
426,
9242,
4449,
40419,
9,
19335,
64,
7436,
13,
337,
13,
337,
558,
187,
50276,
338,
6522,
7614,
64,
90,
2785,
2195,
7614,
64,
86,
2785,
2195,
7614,
64,
87,
2785,
6740,
64,
3429,
2295,
470,
2785,
6740,
64,
7436,
2295,
470,
2785,
187,
50272,
7614,
64,
3429,
2239,
31133,
2358,
2785,
6740,
64,
7436,
2239,
31133,
2358,
2785,
187,
50272,
2,
19335,
64,
90,
2785,
2195,
19335,
64,
86,
2785,
2195,
19335,
64,
87,
2785,
24334,
64,
3429,
11049,
470,
2785,
24334,
64,
7436,
11049,
470,
10,
551,
187,
50274,
2309,
428,
18,
28,
187,
50276,
94,
535,
50276,
20359,
3493,
1351,
9,
7614,
64,
90,
13,
6740,
64,
42583,
64,
90,
13,
6740,
64,
3429,
13,
6740,
64,
7436,
13,
187,
50265,
19335,
64,
90,
13,
24334,
64,
42583,
64,
90,
13,
24334,
64,
3429,
13,
24334,
64,
7436,
13,
187,
50265,
10978,
272,
558,
187,
50276,
20359,
3493,
1351,
9,
7614,
64,
86,
13,
6740,
64,
42583,
64,
86,
13,
6740,
64,
14674,
3429,
13,
6740,
64,
14674,
7436,
13,
187,
50265,
19335,
64,
86,
13,
24334,
64,
42583,
64,
86,
13,
24334,
64,
14674,
3429,
13,
24334,
64,
14674,
7436,
13,
187,
50265,
10978,
272,
558,
187,
50276,
20359,
3493,
1351,
9,
7614,
64,
87,
13,
6740,
64,
42583,
64,
87,
13,
6740,
64,
14674,
3429,
13,
6740,
64,
14674,
7436,
13,
187,
50265,
19335,
64,
87,
13,
24334,
64,
42583,
64,
87,
13,
24334,
64,
14674,
3429,
13,
24334,
64,
14674,
7436,
13,
187,
50265,
10978,
272,
558,
187,
50276,
2309,
470,
28,
187,
94,
187,
187,
18169,
58,
14817,
64,
11252,
187,
565,
309,
25569,
20359,
64,
1036,
9,
3474,
4770,
1036,
11,
6740,
64,
90,
13,
540,
6740,
64,
42583,
64,
90,
13,
187,
50261,
3474,
4770,
1036,
11,
6740,
64,
86,
13,
540,
6740,
64,
42583,
64,
86,
13,
187,
50261,
3474,
4770,
1036,
11,
6740,
64,
87,
13,
540,
6740,
64,
42583,
64,
87,
13,
187,
50261,
565,
6740,
64,
3429,
13,
540,
6740,
64,
7436,
13,
187,
50261,
8531,
1036,
11,
24334,
64,
90,
13,
540,
24334,
64,
42583,
64,
90,
13,
187,
50261,
8531,
1036,
11,
24334,
64,
86,
13,
540,
24334,
64,
42583,
64,
86,
13,
187,
50261,
8531,
1036,
11,
24334,
64,
87,
13,
540,
24334,
64,
42583,
64,
87,
13,
187,
50261,
565,
24334,
64,
3429,
13,
540,
24334,
64,
7436,
13,
187,
50261,
14379,
33328,
10715,
19690,
10,
551,
187,
50276,
565,
6740,
64,
14674,
3429,
426,
9242,
4449,
40419,
9,
7614,
64,
3429,
13,
337,
13,
337,
558,
187,
50276,
565,
6740,
64,
14674,
7436,
426,
9242,
4449,
40419,
9,
7614,
64,
7436,
13,
337,
13,
337,
558,
187,
50276,
565,
24334,
64,
14674,
3429,
426,
9242,
4449,
40419,
9,
19335,
64,
3429,
13,
337,
13,
337,
558,
187,
50276,
565,
24334,
64,
14674,
7436,
426,
9242,
4449,
40419,
9,
19335,
64,
7436,
13,
337,
13,
337,
558,
187,
50276,
338,
6522,
7614,
64,
90,
2785,
2195,
7614,
64,
86,
2785,
2195,
7614,
64,
87,
2785,
6740,
64,
3429,
2295,
470,
2785,
6740,
64,
7436,
2295,
470,
2785,
187,
50272,
7614,
64,
3429,
2239,
31133,
2358,
2785,
6740,
64,
7436,
2239,
31133,
2358,
2785,
187,
50272,
2,
19335,
64,
90,
2785,
2195,
19335,
64,
86,
2785,
2195,
19335,
64,
87,
2785,
24334,
64,
3429,
11049,
470,
2785,
24334,
64,
7436,
11049,
470,
10,
551,
187,
50274,
2309,
428,
18,
28,
187,
50276,
94,
535,
50276,
20359,
3493,
1351,
64,
1036,
9,
7614,
64,
90,
13,
6740,
64,
42583,
64,
90,
13,
6740,
64,
3429,
13,
6740,
64,
7436,
13,
187,
50262,
19335,
64,
90,
13,
24334,
64,
42583,
64,
90,
13,
24334,
64,
3429,
13,
24334,
64,
7436,
13,
187,
50262,
10978,
272,
558,
187,
50276,
20359,
3493,
1351,
64,
1036,
9,
7614,
64,
86,
13,
6740,
64,
42583,
64,
86,
13,
6740,
64,
14674,
3429,
13,
6740,
64,
14674,
7436,
13,
187,
50262,
19335,
64,
86,
13,
24334,
64,
42583,
64,
86,
13,
24334,
64,
14674,
3429,
13,
24334,
64,
14674,
7436,
13,
187,
50262,
10978,
272,
558,
187,
50276,
20359,
3493,
1351,
64,
1036,
9,
7614,
64,
87,
13,
6740,
64,
42583,
64,
87,
13,
6740,
64,
14674,
3429,
13,
6740,
64,
14674,
7436,
13,
187,
50262,
19335,
64,
87,
13,
24334,
64,
42583,
64,
87,
13,
24334,
64,
14674,
3429,
13,
24334,
64,
14674,
7436,
13,
187,
50262,
10978,
272,
558,
187,
50276,
2309,
470,
28,
187,
94,
187,
187,
605,
3315,
18115,
23370,
187,
18169,
58,
14817,
64,
11252,
187,
565,
14446,
9,
3474,
4770,
25,
11,
6740,
64,
90,
13,
1030,
4770,
25,
11,
6740,
64,
86,
13,
1030,
4770,
25,
11,
6740,
64,
87,
13,
187,
50268,
565,
6740,
64,
42583,
64,
90,
13,
540,
6740,
64,
42583,
64,
86,
13,
540,
6740,
64,
42583,
64,
87,
13,
187,
50268,
565,
6740,
64,
3429,
13,
540,
6740,
64,
7436,
13,
187,
50268,
8531,
25,
11,
24334,
64,
90,
13,
4770,
25,
11,
24334,
64,
86,
13,
4770,
25,
11,
24334,
64,
87,
13,
187,
50268,
565,
24334,
64,
42583,
64,
90,
13,
540,
24334,
64,
42583,
64,
86,
13,
540,
24334,
64,
42583,
64,
87,
13,
187,
50268,
565,
24334,
64,
3429,
13,
540,
24334,
64,
7436,
13,
187,
50268,
18169,
58,
14817,
64,
30529,
20670,
366,
10,
551,
187,
50276,
2309,
309,
25569,
20359,
9,
7614,
64,
90,
13,
6740,
64,
42583,
64,
90,
13,
187,
50259,
7614,
64,
86,
13,
6740,
64,
42583,
64,
86,
13,
187,
50259,
7614,
64,
87,
13,
6740,
64,
42583,
64,
87,
13,
187,
50259,
7614,
64,
3429,
13,
6740,
64,
7436,
13,
187,
50259,
19335,
64,
90,
13,
24334,
64,
42583,
64,
90,
13,
187,
50259,
19335,
64,
86,
13,
24334,
64,
42583,
64,
86,
13,
187,
50259,
19335,
64,
87,
13,
24334,
64,
42583,
64,
87,
13,
187,
50259,
19335,
64,
3429,
13,
24334,
64,
7436,
13,
187,
50259,
2388,
4818,
366,
3736,
465,
9824,
7536,
1163,
465,
9824,
11336,
558,
187,
94,
187,
187,
605,
3315,
18115,
23370,
187,
18169,
58,
14817,
64,
11252,
187,
565,
14446,
13736,
9,
3474,
4770,
25,
11,
6740,
13,
540,
6740,
64,
3429,
13,
540,
6740,
64,
7436,
13,
187,
50262,
8531,
25,
11,
24334,
13,
540,
24334,
64,
3429,
13,
540,
24334,
64,
7436,
13,
540,
24334,
64,
90,
10946,
13,
187,
50262,
18169,
58,
14817,
64,
30529,
20670,
366,
10,
551,
187,
50276,
605,
26595,
66,
4419,
8409,
281,
2709,
273,
374,
15,
187,
50276,
565,
24334,
64,
90,
10946,
64,
9154,
426,
24334,
64,
90,
10946,
708,
5062,
18,
28,
187,
50276,
565,
6740,
64,
14674,
3429,
426,
9242,
4449,
40419,
9,
7614,
64,
3429,
13,
337,
13,
337,
558,
187,
50276,
565,
6740,
64,
14674,
7436,
426,
9242,
4449,
40419,
9,
7614,
64,
7436,
13,
337,
13,
337,
558,
187,
50276,
565,
24334,
64,
14674,
3429,
426,
9242,
4449,
40419,
9,
19335,
64,
3429,
13,
337,
13,
337,
558,
187,
50276,
565,
24334,
64,
14674,
7436,
426,
9242,
4449,
40419,
9,
19335,
64,
7436,
13,
337,
13,
337,
558,
187,
50276,
565,
247,
7436,
426,
24334,
64,
7436,
428,
24334,
64,
90,
10946,
64,
9154,
475,
374,
28,
50276,
605,
4588,
3453,
4898,
187,
50276,
3474,
4770,
25,
11,
6740,
64,
90,
426,
6740,
28,
187,
50276,
3474,
4770,
25,
11,
6740,
64,
86,
426,
6740,
559,
6740,
64,
3429,
475,
6740,
64,
7436,
28,
187,
50276,
3474,
4770,
25,
11,
6740,
64,
87,
426,
6740,
559,
6740,
64,
3429,
475,
6740,
64,
7436,
559,
187,
50254,
50273,
7614,
64,
14674,
3429,
475,
6740,
64,
14674,
7436,
28,
187,
50276,
8531,
25,
11,
24334,
64,
90,
426,
24334,
559,
24334,
64,
90,
10946,
64,
9154,
475,
24334,
64,
3429,
28,
187,
50276,
8531,
25,
11,
24334,
64,
86,
426,
24334,
559,
24334,
64,
3429,
475,
24334,
64,
7436,
559,
187,
50261,
9,
19335,
64,
90,
10946,
64,
9154,
11396,
337,
10,
475,
24334,
64,
14674,
3429,
28,
187,
50276,
8531,
25,
11,
24334,
64,
87,
426,
24334,
559,
24334,
64,
3429,
475,
24334,
64,
7436,
559,
24334,
64,
14674,
3429,
475,
24334,
64,
14674,
7436,
559,
187,
50261,
9,
19335,
64,
90,
10946,
64,
9154,
11396,
337,
10,
475,
24334,
64,
14674,
3429,
28,
187,
50276,
338,
6522,
7614,
2785,
6740,
64,
3429,
11049,
470,
2785,
6740,
64,
7436,
11049,
470,
2785,
187,
50272,
2,
19335,
2785,
24334,
64,
3429,
11049,
470,
2785,
24334,
64,
7436,
11049,
470,
2785,
24334,
64,
90,
10946,
64,
9154,
654,
470,
2785,
187,
50272,
19335,
64,
90,
10946,
64,
9154,
10122,
24334,
64,
7436,
10,
551,
187,
50274,
2309,
428,
18,
28,
187,
50276,
94,
187,
50276,
2309,
309,
25569,
20359,
9,
7614,
64,
90,
13,
6740,
64,
3429,
13,
187,
50259,
7614,
64,
86,
13,
6740,
64,
14674,
3429,
13,
187,
50259,
7614,
64,
87,
13,
6740,
64,
14674,
3429,
13,
187,
50259,
7614,
64,
3429,
13,
6740,
64,
7436,
13,
187,
50259,
19335,
64,
90,
13,
24334,
64,
3429,
13,
187,
50259,
19335,
64,
86,
13,
24334,
64,
14674,
3429,
13,
187,
50259,
19335,
64,
87,
13,
24334,
64,
14674,
3429,
13,
187,
50259,
19335,
64,
3429,
13,
247,
7436,
13,
187,
50259,
2388,
4818,
366,
3736,
465,
9824,
7536,
1163,
465,
9824,
11336,
558,
187,
94,
187,
187,
4,
16238,
4772,
68,
11095,
11095,
187,
94,
50276,
605,
23489,
346,
36,
3,
187,
94,
50276,
605,
12953,
5135,
90,
8962,
187,
4,
7287,
187
] | /*
* Copyright 2011 The LibYuv Project Authors. All rights reserved.
*
* Use of this source code is governed by a BSD-style license
* that can be found in the LICENSE file in the root of the source
* tree. An additional intellectual property rights grant can be found
* in the file PATENTS. All contributing project authors may
* be found in the AUTHORS file in the root of the source tree.
*/
#include "libyuv/scale.h"
#include <assert.h>
#include <string.h>
#include "libyuv/cpu_id.h"
#include "libyuv/planar_functions.h" // For CopyPlane
#include "libyuv/row.h"
#include "libyuv/scale_row.h"
#ifdef __cplusplus
namespace libyuv {
extern "C" {
#endif
static __inline int Abs(int v) {
return v >= 0 ? v : -v;
}
#define SUBSAMPLE(v, a, s) (v < 0) ? (-((-v + a) >> s)) : ((v + a) >> s)
// Scale plane, 1/2
// This is an optimized version for scaling down a plane to 1/2 of
// its original size.
static void ScalePlaneDown2(int src_width, int src_height,
int dst_width, int dst_height,
int src_stride, int dst_stride,
const uint8* src_ptr, uint8* dst_ptr,
enum FilterMode filtering) {
int y;
void (*ScaleRowDown2)(const uint8* src_ptr, ptrdiff_t src_stride,
uint8* dst_ptr, int dst_width) =
filtering == kFilterNone ? ScaleRowDown2_C :
(filtering == kFilterLinear ? ScaleRowDown2Linear_C : ScaleRowDown2Box_C);
int row_stride = src_stride << 1;
if (!filtering) {
src_ptr += src_stride; // Point to odd rows.
src_stride = 0;
}
#if defined(HAS_SCALEROWDOWN2_NEON)
if (TestCpuFlag(kCpuHasNEON)) {
ScaleRowDown2 = filtering == kFilterNone ? ScaleRowDown2_Any_NEON :
(filtering == kFilterLinear ? ScaleRowDown2Linear_Any_NEON :
ScaleRowDown2Box_Any_NEON);
if (IS_ALIGNED(dst_width, 16)) {
ScaleRowDown2 = filtering == kFilterNone ? ScaleRowDown2_NEON :
(filtering == kFilterLinear ? ScaleRowDown2Linear_NEON :
ScaleRowDown2Box_NEON);
}
}
#endif
#if defined(HAS_SCALEROWDOWN2_SSSE3)
if (TestCpuFlag(kCpuHasSSSE3)) {
ScaleRowDown2 = filtering == kFilterNone ? ScaleRowDown2_Any_SSSE3 :
(filtering == kFilterLinear ? ScaleRowDown2Linear_Any_SSSE3 :
ScaleRowDown2Box_Any_SSSE3);
if (IS_ALIGNED(dst_width, 16)) {
ScaleRowDown2 = filtering == kFilterNone ? ScaleRowDown2_SSSE3 :
(filtering == kFilterLinear ? ScaleRowDown2Linear_SSSE3 :
ScaleRowDown2Box_SSSE3);
}
}
#endif
#if defined(HAS_SCALEROWDOWN2_AVX2)
if (TestCpuFlag(kCpuHasAVX2)) {
ScaleRowDown2 = filtering == kFilterNone ? ScaleRowDown2_Any_AVX2 :
(filtering == kFilterLinear ? ScaleRowDown2Linear_Any_AVX2 :
ScaleRowDown2Box_Any_AVX2);
if (IS_ALIGNED(dst_width, 32)) {
ScaleRowDown2 = filtering == kFilterNone ? ScaleRowDown2_AVX2 :
(filtering == kFilterLinear ? ScaleRowDown2Linear_AVX2 :
ScaleRowDown2Box_AVX2);
}
}
#endif
#if defined(HAS_SCALEROWDOWN2_DSPR2)
if (TestCpuFlag(kCpuHasDSPR2) && IS_ALIGNED(src_ptr, 4) &&
IS_ALIGNED(src_stride, 4) && IS_ALIGNED(row_stride, 4) &&
IS_ALIGNED(dst_ptr, 4) && IS_ALIGNED(dst_stride, 4)) {
ScaleRowDown2 = filtering ?
ScaleRowDown2Box_DSPR2 : ScaleRowDown2_DSPR2;
}
#endif
if (filtering == kFilterLinear) {
src_stride = 0;
}
// TODO(fbarchard): Loop through source height to allow odd height.
for (y = 0; y < dst_height; ++y) {
ScaleRowDown2(src_ptr, src_stride, dst_ptr, dst_width);
src_ptr += row_stride;
dst_ptr += dst_stride;
}
}
static void ScalePlaneDown2_16(int src_width, int src_height,
int dst_width, int dst_height,
int src_stride, int dst_stride,
const uint16* src_ptr, uint16* dst_ptr,
enum FilterMode filtering) {
int y;
void (*ScaleRowDown2)(const uint16* src_ptr, ptrdiff_t src_stride,
uint16* dst_ptr, int dst_width) =
filtering == kFilterNone ? ScaleRowDown2_16_C :
(filtering == kFilterLinear ? ScaleRowDown2Linear_16_C :
ScaleRowDown2Box_16_C);
int row_stride = src_stride << 1;
if (!filtering) {
src_ptr += src_stride; // Point to odd rows.
src_stride = 0;
}
#if defined(HAS_SCALEROWDOWN2_16_NEON)
if (TestCpuFlag(kCpuHasNEON) && IS_ALIGNED(dst_width, 16)) {
ScaleRowDown2 = filtering ? ScaleRowDown2Box_16_NEON :
ScaleRowDown2_16_NEON;
}
#endif
#if defined(HAS_SCALEROWDOWN2_16_SSE2)
if (TestCpuFlag(kCpuHasSSE2) && IS_ALIGNED(dst_width, 16)) {
ScaleRowDown2 = filtering == kFilterNone ? ScaleRowDown2_16_SSE2 :
(filtering == kFilterLinear ? ScaleRowDown2Linear_16_SSE2 :
ScaleRowDown2Box_16_SSE2);
}
#endif
#if defined(HAS_SCALEROWDOWN2_16_DSPR2)
if (TestCpuFlag(kCpuHasDSPR2) && IS_ALIGNED(src_ptr, 4) &&
IS_ALIGNED(src_stride, 4) && IS_ALIGNED(row_stride, 4) &&
IS_ALIGNED(dst_ptr, 4) && IS_ALIGNED(dst_stride, 4)) {
ScaleRowDown2 = filtering ?
ScaleRowDown2Box_16_DSPR2 : ScaleRowDown2_16_DSPR2;
}
#endif
if (filtering == kFilterLinear) {
src_stride = 0;
}
// TODO(fbarchard): Loop through source height to allow odd height.
for (y = 0; y < dst_height; ++y) {
ScaleRowDown2(src_ptr, src_stride, dst_ptr, dst_width);
src_ptr += row_stride;
dst_ptr += dst_stride;
}
}
// Scale plane, 1/4
// This is an optimized version for scaling down a plane to 1/4 of
// its original size.
static void ScalePlaneDown4(int src_width, int src_height,
int dst_width, int dst_height,
int src_stride, int dst_stride,
const uint8* src_ptr, uint8* dst_ptr,
enum FilterMode filtering) {
int y;
void (*ScaleRowDown4)(const uint8* src_ptr, ptrdiff_t src_stride,
uint8* dst_ptr, int dst_width) =
filtering ? ScaleRowDown4Box_C : ScaleRowDown4_C;
int row_stride = src_stride << 2;
if (!filtering) {
src_ptr += src_stride * 2; // Point to row 2.
src_stride = 0;
}
#if defined(HAS_SCALEROWDOWN4_NEON)
if (TestCpuFlag(kCpuHasNEON)) {
ScaleRowDown4 = filtering ?
ScaleRowDown4Box_Any_NEON : ScaleRowDown4_Any_NEON;
if (IS_ALIGNED(dst_width, 8)) {
ScaleRowDown4 = filtering ? ScaleRowDown4Box_NEON : ScaleRowDown4_NEON;
}
}
#endif
#if defined(HAS_SCALEROWDOWN4_SSSE3)
if (TestCpuFlag(kCpuHasSSSE3)) {
ScaleRowDown4 = filtering ?
ScaleRowDown4Box_Any_SSSE3 : ScaleRowDown4_Any_SSSE3;
if (IS_ALIGNED(dst_width, 8)) {
ScaleRowDown4 = filtering ? ScaleRowDown4Box_SSSE3 : ScaleRowDown4_SSSE3;
}
}
#endif
#if defined(HAS_SCALEROWDOWN4_AVX2)
if (TestCpuFlag(kCpuHasAVX2)) {
ScaleRowDown4 = filtering ?
ScaleRowDown4Box_Any_AVX2 : ScaleRowDown4_Any_AVX2;
if (IS_ALIGNED(dst_width, 16)) {
ScaleRowDown4 = filtering ? ScaleRowDown4Box_AVX2 : ScaleRowDown4_AVX2;
}
}
#endif
#if defined(HAS_SCALEROWDOWN4_DSPR2)
if (TestCpuFlag(kCpuHasDSPR2) && IS_ALIGNED(row_stride, 4) &&
IS_ALIGNED(src_ptr, 4) && IS_ALIGNED(src_stride, 4) &&
IS_ALIGNED(dst_ptr, 4) && IS_ALIGNED(dst_stride, 4)) {
ScaleRowDown4 = filtering ?
ScaleRowDown4Box_DSPR2 : ScaleRowDown4_DSPR2;
}
#endif
if (filtering == kFilterLinear) {
src_stride = 0;
}
for (y = 0; y < dst_height; ++y) {
ScaleRowDown4(src_ptr, src_stride, dst_ptr, dst_width);
src_ptr += row_stride;
dst_ptr += dst_stride;
}
}
static void ScalePlaneDown4_16(int src_width, int src_height,
int dst_width, int dst_height,
int src_stride, int dst_stride,
const uint16* src_ptr, uint16* dst_ptr,
enum FilterMode filtering) {
int y;
void (*ScaleRowDown4)(const uint16* src_ptr, ptrdiff_t src_stride,
uint16* dst_ptr, int dst_width) =
filtering ? ScaleRowDown4Box_16_C : ScaleRowDown4_16_C;
int row_stride = src_stride << 2;
if (!filtering) {
src_ptr += src_stride * 2; // Point to row 2.
src_stride = 0;
}
#if defined(HAS_SCALEROWDOWN4_16_NEON)
if (TestCpuFlag(kCpuHasNEON) && IS_ALIGNED(dst_width, 8)) {
ScaleRowDown4 = filtering ? ScaleRowDown4Box_16_NEON :
ScaleRowDown4_16_NEON;
}
#endif
#if defined(HAS_SCALEROWDOWN4_16_SSE2)
if (TestCpuFlag(kCpuHasSSE2) && IS_ALIGNED(dst_width, 8)) {
ScaleRowDown4 = filtering ? ScaleRowDown4Box_16_SSE2 :
ScaleRowDown4_16_SSE2;
}
#endif
#if defined(HAS_SCALEROWDOWN4_16_DSPR2)
if (TestCpuFlag(kCpuHasDSPR2) && IS_ALIGNED(row_stride, 4) &&
IS_ALIGNED(src_ptr, 4) && IS_ALIGNED(src_stride, 4) &&
IS_ALIGNED(dst_ptr, 4) && IS_ALIGNED(dst_stride, 4)) {
ScaleRowDown4 = filtering ?
ScaleRowDown4Box_16_DSPR2 : ScaleRowDown4_16_DSPR2;
}
#endif
if (filtering == kFilterLinear) {
src_stride = 0;
}
for (y = 0; y < dst_height; ++y) {
ScaleRowDown4(src_ptr, src_stride, dst_ptr, dst_width);
src_ptr += row_stride;
dst_ptr += dst_stride;
}
}
// Scale plane down, 3/4
static void ScalePlaneDown34(int src_width, int src_height,
int dst_width, int dst_height,
int src_stride, int dst_stride,
const uint8* src_ptr, uint8* dst_ptr,
enum FilterMode filtering) {
int y;
void (*ScaleRowDown34_0)(const uint8* src_ptr, ptrdiff_t src_stride,
uint8* dst_ptr, int dst_width);
void (*ScaleRowDown34_1)(const uint8* src_ptr, ptrdiff_t src_stride,
uint8* dst_ptr, int dst_width);
const int filter_stride = (filtering == kFilterLinear) ? 0 : src_stride;
assert(dst_width % 3 == 0);
if (!filtering) {
ScaleRowDown34_0 = ScaleRowDown34_C;
ScaleRowDown34_1 = ScaleRowDown34_C;
} else {
ScaleRowDown34_0 = ScaleRowDown34_0_Box_C;
ScaleRowDown34_1 = ScaleRowDown34_1_Box_C;
}
#if defined(HAS_SCALEROWDOWN34_NEON)
if (TestCpuFlag(kCpuHasNEON)) {
if (!filtering) {
ScaleRowDown34_0 = ScaleRowDown34_Any_NEON;
ScaleRowDown34_1 = ScaleRowDown34_Any_NEON;
} else {
ScaleRowDown34_0 = ScaleRowDown34_0_Box_Any_NEON;
ScaleRowDown34_1 = ScaleRowDown34_1_Box_Any_NEON;
}
if (dst_width % 24 == 0) {
if (!filtering) {
ScaleRowDown34_0 = ScaleRowDown34_NEON;
ScaleRowDown34_1 = ScaleRowDown34_NEON;
} else {
ScaleRowDown34_0 = ScaleRowDown34_0_Box_NEON;
ScaleRowDown34_1 = ScaleRowDown34_1_Box_NEON;
}
}
}
#endif
#if defined(HAS_SCALEROWDOWN34_SSSE3)
if (TestCpuFlag(kCpuHasSSSE3)) {
if (!filtering) {
ScaleRowDown34_0 = ScaleRowDown34_Any_SSSE3;
ScaleRowDown34_1 = ScaleRowDown34_Any_SSSE3;
} else {
ScaleRowDown34_0 = ScaleRowDown34_0_Box_Any_SSSE3;
ScaleRowDown34_1 = ScaleRowDown34_1_Box_Any_SSSE3;
}
if (dst_width % 24 == 0) {
if (!filtering) {
ScaleRowDown34_0 = ScaleRowDown34_SSSE3;
ScaleRowDown34_1 = ScaleRowDown34_SSSE3;
} else {
ScaleRowDown34_0 = ScaleRowDown34_0_Box_SSSE3;
ScaleRowDown34_1 = ScaleRowDown34_1_Box_SSSE3;
}
}
}
#endif
#if defined(HAS_SCALEROWDOWN34_DSPR2)
if (TestCpuFlag(kCpuHasDSPR2) && (dst_width % 24 == 0) &&
IS_ALIGNED(src_ptr, 4) && IS_ALIGNED(src_stride, 4) &&
IS_ALIGNED(dst_ptr, 4) && IS_ALIGNED(dst_stride, 4)) {
if (!filtering) {
ScaleRowDown34_0 = ScaleRowDown34_DSPR2;
ScaleRowDown34_1 = ScaleRowDown34_DSPR2;
} else {
ScaleRowDown34_0 = ScaleRowDown34_0_Box_DSPR2;
ScaleRowDown34_1 = ScaleRowDown34_1_Box_DSPR2;
}
}
#endif
for (y = 0; y < dst_height - 2; y += 3) {
ScaleRowDown34_0(src_ptr, filter_stride, dst_ptr, dst_width);
src_ptr += src_stride;
dst_ptr += dst_stride;
ScaleRowDown34_1(src_ptr, filter_stride, dst_ptr, dst_width);
src_ptr += src_stride;
dst_ptr += dst_stride;
ScaleRowDown34_0(src_ptr + src_stride, -filter_stride,
dst_ptr, dst_width);
src_ptr += src_stride * 2;
dst_ptr += dst_stride;
}
// Remainder 1 or 2 rows with last row vertically unfiltered
if ((dst_height % 3) == 2) {
ScaleRowDown34_0(src_ptr, filter_stride, dst_ptr, dst_width);
src_ptr += src_stride;
dst_ptr += dst_stride;
ScaleRowDown34_1(src_ptr, 0, dst_ptr, dst_width);
} else if ((dst_height % 3) == 1) {
ScaleRowDown34_0(src_ptr, 0, dst_ptr, dst_width);
}
}
static void ScalePlaneDown34_16(int src_width, int src_height,
int dst_width, int dst_height,
int src_stride, int dst_stride,
const uint16* src_ptr, uint16* dst_ptr,
enum FilterMode filtering) {
int y;
void (*ScaleRowDown34_0)(const uint16* src_ptr, ptrdiff_t src_stride,
uint16* dst_ptr, int dst_width);
void (*ScaleRowDown34_1)(const uint16* src_ptr, ptrdiff_t src_stride,
uint16* dst_ptr, int dst_width);
const int filter_stride = (filtering == kFilterLinear) ? 0 : src_stride;
assert(dst_width % 3 == 0);
if (!filtering) {
ScaleRowDown34_0 = ScaleRowDown34_16_C;
ScaleRowDown34_1 = ScaleRowDown34_16_C;
} else {
ScaleRowDown34_0 = ScaleRowDown34_0_Box_16_C;
ScaleRowDown34_1 = ScaleRowDown34_1_Box_16_C;
}
#if defined(HAS_SCALEROWDOWN34_16_NEON)
if (TestCpuFlag(kCpuHasNEON) && (dst_width % 24 == 0)) {
if (!filtering) {
ScaleRowDown34_0 = ScaleRowDown34_16_NEON;
ScaleRowDown34_1 = ScaleRowDown34_16_NEON;
} else {
ScaleRowDown34_0 = ScaleRowDown34_0_Box_16_NEON;
ScaleRowDown34_1 = ScaleRowDown34_1_Box_16_NEON;
}
}
#endif
#if defined(HAS_SCALEROWDOWN34_16_SSSE3)
if (TestCpuFlag(kCpuHasSSSE3) && (dst_width % 24 == 0)) {
if (!filtering) {
ScaleRowDown34_0 = ScaleRowDown34_16_SSSE3;
ScaleRowDown34_1 = ScaleRowDown34_16_SSSE3;
} else {
ScaleRowDown34_0 = ScaleRowDown34_0_Box_16_SSSE3;
ScaleRowDown34_1 = ScaleRowDown34_1_Box_16_SSSE3;
}
}
#endif
#if defined(HAS_SCALEROWDOWN34_16_DSPR2)
if (TestCpuFlag(kCpuHasDSPR2) && (dst_width % 24 == 0) &&
IS_ALIGNED(src_ptr, 4) && IS_ALIGNED(src_stride, 4) &&
IS_ALIGNED(dst_ptr, 4) && IS_ALIGNED(dst_stride, 4)) {
if (!filtering) {
ScaleRowDown34_0 = ScaleRowDown34_16_DSPR2;
ScaleRowDown34_1 = ScaleRowDown34_16_DSPR2;
} else {
ScaleRowDown34_0 = ScaleRowDown34_0_Box_16_DSPR2;
ScaleRowDown34_1 = ScaleRowDown34_1_Box_16_DSPR2;
}
}
#endif
for (y = 0; y < dst_height - 2; y += 3) {
ScaleRowDown34_0(src_ptr, filter_stride, dst_ptr, dst_width);
src_ptr += src_stride;
dst_ptr += dst_stride;
ScaleRowDown34_1(src_ptr, filter_stride, dst_ptr, dst_width);
src_ptr += src_stride;
dst_ptr += dst_stride;
ScaleRowDown34_0(src_ptr + src_stride, -filter_stride,
dst_ptr, dst_width);
src_ptr += src_stride * 2;
dst_ptr += dst_stride;
}
// Remainder 1 or 2 rows with last row vertically unfiltered
if ((dst_height % 3) == 2) {
ScaleRowDown34_0(src_ptr, filter_stride, dst_ptr, dst_width);
src_ptr += src_stride;
dst_ptr += dst_stride;
ScaleRowDown34_1(src_ptr, 0, dst_ptr, dst_width);
} else if ((dst_height % 3) == 1) {
ScaleRowDown34_0(src_ptr, 0, dst_ptr, dst_width);
}
}
// Scale plane, 3/8
// This is an optimized version for scaling down a plane to 3/8
// of its original size.
//
// Uses box filter arranges like this
// aaabbbcc -> abc
// aaabbbcc def
// aaabbbcc ghi
// dddeeeff
// dddeeeff
// dddeeeff
// ggghhhii
// ggghhhii
// Boxes are 3x3, 2x3, 3x2 and 2x2
static void ScalePlaneDown38(int src_width, int src_height,
int dst_width, int dst_height,
int src_stride, int dst_stride,
const uint8* src_ptr, uint8* dst_ptr,
enum FilterMode filtering) {
int y;
void (*ScaleRowDown38_3)(const uint8* src_ptr, ptrdiff_t src_stride,
uint8* dst_ptr, int dst_width);
void (*ScaleRowDown38_2)(const uint8* src_ptr, ptrdiff_t src_stride,
uint8* dst_ptr, int dst_width);
const int filter_stride = (filtering == kFilterLinear) ? 0 : src_stride;
assert(dst_width % 3 == 0);
if (!filtering) {
ScaleRowDown38_3 = ScaleRowDown38_C;
ScaleRowDown38_2 = ScaleRowDown38_C;
} else {
ScaleRowDown38_3 = ScaleRowDown38_3_Box_C;
ScaleRowDown38_2 = ScaleRowDown38_2_Box_C;
}
#if defined(HAS_SCALEROWDOWN38_NEON)
if (TestCpuFlag(kCpuHasNEON)) {
if (!filtering) {
ScaleRowDown38_3 = ScaleRowDown38_Any_NEON;
ScaleRowDown38_2 = ScaleRowDown38_Any_NEON;
} else {
ScaleRowDown38_3 = ScaleRowDown38_3_Box_Any_NEON;
ScaleRowDown38_2 = ScaleRowDown38_2_Box_Any_NEON;
}
if (dst_width % 12 == 0) {
if (!filtering) {
ScaleRowDown38_3 = ScaleRowDown38_NEON;
ScaleRowDown38_2 = ScaleRowDown38_NEON;
} else {
ScaleRowDown38_3 = ScaleRowDown38_3_Box_NEON;
ScaleRowDown38_2 = ScaleRowDown38_2_Box_NEON;
}
}
}
#endif
#if defined(HAS_SCALEROWDOWN38_SSSE3)
if (TestCpuFlag(kCpuHasSSSE3)) {
if (!filtering) {
ScaleRowDown38_3 = ScaleRowDown38_Any_SSSE3;
ScaleRowDown38_2 = ScaleRowDown38_Any_SSSE3;
} else {
ScaleRowDown38_3 = ScaleRowDown38_3_Box_Any_SSSE3;
ScaleRowDown38_2 = ScaleRowDown38_2_Box_Any_SSSE3;
}
if (dst_width % 12 == 0 && !filtering) {
ScaleRowDown38_3 = ScaleRowDown38_SSSE3;
ScaleRowDown38_2 = ScaleRowDown38_SSSE3;
}
if (dst_width % 6 == 0 && filtering) {
ScaleRowDown38_3 = ScaleRowDown38_3_Box_SSSE3;
ScaleRowDown38_2 = ScaleRowDown38_2_Box_SSSE3;
}
}
#endif
#if defined(HAS_SCALEROWDOWN38_DSPR2)
if (TestCpuFlag(kCpuHasDSPR2) && (dst_width % 12 == 0) &&
IS_ALIGNED(src_ptr, 4) && IS_ALIGNED(src_stride, 4) &&
IS_ALIGNED(dst_ptr, 4) && IS_ALIGNED(dst_stride, 4)) {
if (!filtering) {
ScaleRowDown38_3 = ScaleRowDown38_DSPR2;
ScaleRowDown38_2 = ScaleRowDown38_DSPR2;
} else {
ScaleRowDown38_3 = ScaleRowDown38_3_Box_DSPR2;
ScaleRowDown38_2 = ScaleRowDown38_2_Box_DSPR2;
}
}
#endif
for (y = 0; y < dst_height - 2; y += 3) {
ScaleRowDown38_3(src_ptr, filter_stride, dst_ptr, dst_width);
src_ptr += src_stride * 3;
dst_ptr += dst_stride;
ScaleRowDown38_3(src_ptr, filter_stride, dst_ptr, dst_width);
src_ptr += src_stride * 3;
dst_ptr += dst_stride;
ScaleRowDown38_2(src_ptr, filter_stride, dst_ptr, dst_width);
src_ptr += src_stride * 2;
dst_ptr += dst_stride;
}
// Remainder 1 or 2 rows with last row vertically unfiltered
if ((dst_height % 3) == 2) {
ScaleRowDown38_3(src_ptr, filter_stride, dst_ptr, dst_width);
src_ptr += src_stride * 3;
dst_ptr += dst_stride;
ScaleRowDown38_3(src_ptr, 0, dst_ptr, dst_width);
} else if ((dst_height % 3) == 1) {
ScaleRowDown38_3(src_ptr, 0, dst_ptr, dst_width);
}
}
static void ScalePlaneDown38_16(int src_width, int src_height,
int dst_width, int dst_height,
int src_stride, int dst_stride,
const uint16* src_ptr, uint16* dst_ptr,
enum FilterMode filtering) {
int y;
void (*ScaleRowDown38_3)(const uint16* src_ptr, ptrdiff_t src_stride,
uint16* dst_ptr, int dst_width);
void (*ScaleRowDown38_2)(const uint16* src_ptr, ptrdiff_t src_stride,
uint16* dst_ptr, int dst_width);
const int filter_stride = (filtering == kFilterLinear) ? 0 : src_stride;
assert(dst_width % 3 == 0);
if (!filtering) {
ScaleRowDown38_3 = ScaleRowDown38_16_C;
ScaleRowDown38_2 = ScaleRowDown38_16_C;
} else {
ScaleRowDown38_3 = ScaleRowDown38_3_Box_16_C;
ScaleRowDown38_2 = ScaleRowDown38_2_Box_16_C;
}
#if defined(HAS_SCALEROWDOWN38_16_NEON)
if (TestCpuFlag(kCpuHasNEON) && (dst_width % 12 == 0)) {
if (!filtering) {
ScaleRowDown38_3 = ScaleRowDown38_16_NEON;
ScaleRowDown38_2 = ScaleRowDown38_16_NEON;
} else {
ScaleRowDown38_3 = ScaleRowDown38_3_Box_16_NEON;
ScaleRowDown38_2 = ScaleRowDown38_2_Box_16_NEON;
}
}
#endif
#if defined(HAS_SCALEROWDOWN38_16_SSSE3)
if (TestCpuFlag(kCpuHasSSSE3) && (dst_width % 24 == 0)) {
if (!filtering) {
ScaleRowDown38_3 = ScaleRowDown38_16_SSSE3;
ScaleRowDown38_2 = ScaleRowDown38_16_SSSE3;
} else {
ScaleRowDown38_3 = ScaleRowDown38_3_Box_16_SSSE3;
ScaleRowDown38_2 = ScaleRowDown38_2_Box_16_SSSE3;
}
}
#endif
#if defined(HAS_SCALEROWDOWN38_16_DSPR2)
if (TestCpuFlag(kCpuHasDSPR2) && (dst_width % 12 == 0) &&
IS_ALIGNED(src_ptr, 4) && IS_ALIGNED(src_stride, 4) &&
IS_ALIGNED(dst_ptr, 4) && IS_ALIGNED(dst_stride, 4)) {
if (!filtering) {
ScaleRowDown38_3 = ScaleRowDown38_16_DSPR2;
ScaleRowDown38_2 = ScaleRowDown38_16_DSPR2;
} else {
ScaleRowDown38_3 = ScaleRowDown38_3_Box_16_DSPR2;
ScaleRowDown38_2 = ScaleRowDown38_2_Box_16_DSPR2;
}
}
#endif
for (y = 0; y < dst_height - 2; y += 3) {
ScaleRowDown38_3(src_ptr, filter_stride, dst_ptr, dst_width);
src_ptr += src_stride * 3;
dst_ptr += dst_stride;
ScaleRowDown38_3(src_ptr, filter_stride, dst_ptr, dst_width);
src_ptr += src_stride * 3;
dst_ptr += dst_stride;
ScaleRowDown38_2(src_ptr, filter_stride, dst_ptr, dst_width);
src_ptr += src_stride * 2;
dst_ptr += dst_stride;
}
// Remainder 1 or 2 rows with last row vertically unfiltered
if ((dst_height % 3) == 2) {
ScaleRowDown38_3(src_ptr, filter_stride, dst_ptr, dst_width);
src_ptr += src_stride * 3;
dst_ptr += dst_stride;
ScaleRowDown38_3(src_ptr, 0, dst_ptr, dst_width);
} else if ((dst_height % 3) == 1) {
ScaleRowDown38_3(src_ptr, 0, dst_ptr, dst_width);
}
}
#define MIN1(x) ((x) < 1 ? 1 : (x))
static __inline uint32 SumPixels(int iboxwidth, const uint16* src_ptr) {
uint32 sum = 0u;
int x;
assert(iboxwidth > 0);
for (x = 0; x < iboxwidth; ++x) {
sum += src_ptr[x];
}
return sum;
}
static __inline uint32 SumPixels_16(int iboxwidth, const uint32* src_ptr) {
uint32 sum = 0u;
int x;
assert(iboxwidth > 0);
for (x = 0; x < iboxwidth; ++x) {
sum += src_ptr[x];
}
return sum;
}
static void ScaleAddCols2_C(int dst_width, int boxheight, int x, int dx,
const uint16* src_ptr, uint8* dst_ptr) {
int i;
int scaletbl[2];
int minboxwidth = dx >> 16;
int boxwidth;
scaletbl[0] = 65536 / (MIN1(minboxwidth) * boxheight);
scaletbl[1] = 65536 / (MIN1(minboxwidth + 1) * boxheight);
for (i = 0; i < dst_width; ++i) {
int ix = x >> 16;
x += dx;
boxwidth = MIN1((x >> 16) - ix);
*dst_ptr++ = SumPixels(boxwidth, src_ptr + ix) *
scaletbl[boxwidth - minboxwidth] >> 16;
}
}
static void ScaleAddCols2_16_C(int dst_width, int boxheight, int x, int dx,
const uint32* src_ptr, uint16* dst_ptr) {
int i;
int scaletbl[2];
int minboxwidth = dx >> 16;
int boxwidth;
scaletbl[0] = 65536 / (MIN1(minboxwidth) * boxheight);
scaletbl[1] = 65536 / (MIN1(minboxwidth + 1) * boxheight);
for (i = 0; i < dst_width; ++i) {
int ix = x >> 16;
x += dx;
boxwidth = MIN1((x >> 16) - ix);
*dst_ptr++ = SumPixels_16(boxwidth, src_ptr + ix) *
scaletbl[boxwidth - minboxwidth] >> 16;
}
}
static void ScaleAddCols0_C(int dst_width, int boxheight, int x, int,
const uint16* src_ptr, uint8* dst_ptr) {
int scaleval = 65536 / boxheight;
int i;
src_ptr += (x >> 16);
for (i = 0; i < dst_width; ++i) {
*dst_ptr++ = src_ptr[i] * scaleval >> 16;
}
}
static void ScaleAddCols1_C(int dst_width, int boxheight, int x, int dx,
const uint16* src_ptr, uint8* dst_ptr) {
int boxwidth = MIN1(dx >> 16);
int scaleval = 65536 / (boxwidth * boxheight);
int i;
x >>= 16;
for (i = 0; i < dst_width; ++i) {
*dst_ptr++ = SumPixels(boxwidth, src_ptr + x) * scaleval >> 16;
x += boxwidth;
}
}
static void ScaleAddCols1_16_C(int dst_width, int boxheight, int x, int dx,
const uint32* src_ptr, uint16* dst_ptr) {
int boxwidth = MIN1(dx >> 16);
int scaleval = 65536 / (boxwidth * boxheight);
int i;
for (i = 0; i < dst_width; ++i) {
*dst_ptr++ = SumPixels_16(boxwidth, src_ptr + x) * scaleval >> 16;
x += boxwidth;
}
}
// Scale plane down to any dimensions, with interpolation.
// (boxfilter).
//
// Same method as SimpleScale, which is fixed point, outputting
// one pixel of destination using fixed point (16.16) to step
// through source, sampling a box of pixel with simple
// averaging.
static void ScalePlaneBox(int src_width, int src_height,
int dst_width, int dst_height,
int src_stride, int dst_stride,
const uint8* src_ptr, uint8* dst_ptr) {
int j, k;
// Initial source x/y coordinate and step values as 16.16 fixed point.
int x = 0;
int y = 0;
int dx = 0;
int dy = 0;
const int max_y = (src_height << 16);
ScaleSlope(src_width, src_height, dst_width, dst_height, kFilterBox,
&x, &y, &dx, &dy);
src_width = Abs(src_width);
{
// Allocate a row buffer of uint16.
align_buffer_64(row16, src_width * 2);
void (*ScaleAddCols)(int dst_width, int boxheight, int x, int dx,
const uint16* src_ptr, uint8* dst_ptr) =
(dx & 0xffff) ? ScaleAddCols2_C:
((dx != 0x10000) ? ScaleAddCols1_C : ScaleAddCols0_C);
void (*ScaleAddRow)(const uint8* src_ptr, uint16* dst_ptr, int src_width) =
ScaleAddRow_C;
#if defined(HAS_SCALEADDROW_SSE2)
if (TestCpuFlag(kCpuHasSSE2)) {
ScaleAddRow = ScaleAddRow_Any_SSE2;
if (IS_ALIGNED(src_width, 16)) {
ScaleAddRow = ScaleAddRow_SSE2;
}
}
#endif
#if defined(HAS_SCALEADDROW_AVX2)
if (TestCpuFlag(kCpuHasAVX2)) {
ScaleAddRow = ScaleAddRow_Any_AVX2;
if (IS_ALIGNED(src_width, 32)) {
ScaleAddRow = ScaleAddRow_AVX2;
}
}
#endif
#if defined(HAS_SCALEADDROW_NEON)
if (TestCpuFlag(kCpuHasNEON)) {
ScaleAddRow = ScaleAddRow_Any_NEON;
if (IS_ALIGNED(src_width, 16)) {
ScaleAddRow = ScaleAddRow_NEON;
}
}
#endif
for (j = 0; j < dst_height; ++j) {
int boxheight;
int iy = y >> 16;
const uint8* src = src_ptr + iy * src_stride;
y += dy;
if (y > max_y) {
y = max_y;
}
boxheight = MIN1((y >> 16) - iy);
memset(row16, 0, src_width * 2);
for (k = 0; k < boxheight; ++k) {
ScaleAddRow(src, (uint16 *)(row16), src_width);
src += src_stride;
}
ScaleAddCols(dst_width, boxheight, x, dx, (uint16*)(row16), dst_ptr);
dst_ptr += dst_stride;
}
free_aligned_buffer_64(row16);
}
}
static void ScalePlaneBox_16(int src_width, int src_height,
int dst_width, int dst_height,
int src_stride, int dst_stride,
const uint16* src_ptr, uint16* dst_ptr) {
int j, k;
// Initial source x/y coordinate and step values as 16.16 fixed point.
int x = 0;
int y = 0;
int dx = 0;
int dy = 0;
const int max_y = (src_height << 16);
ScaleSlope(src_width, src_height, dst_width, dst_height, kFilterBox,
&x, &y, &dx, &dy);
src_width = Abs(src_width);
{
// Allocate a row buffer of uint32.
align_buffer_64(row32, src_width * 4);
void (*ScaleAddCols)(int dst_width, int boxheight, int x, int dx,
const uint32* src_ptr, uint16* dst_ptr) =
(dx & 0xffff) ? ScaleAddCols2_16_C: ScaleAddCols1_16_C;
void (*ScaleAddRow)(const uint16* src_ptr, uint32* dst_ptr, int src_width) =
ScaleAddRow_16_C;
#if defined(HAS_SCALEADDROW_16_SSE2)
if (TestCpuFlag(kCpuHasSSE2) && IS_ALIGNED(src_width, 16)) {
ScaleAddRow = ScaleAddRow_16_SSE2;
}
#endif
for (j = 0; j < dst_height; ++j) {
int boxheight;
int iy = y >> 16;
const uint16* src = src_ptr + iy * src_stride;
y += dy;
if (y > max_y) {
y = max_y;
}
boxheight = MIN1((y >> 16) - iy);
memset(row32, 0, src_width * 4);
for (k = 0; k < boxheight; ++k) {
ScaleAddRow(src, (uint32 *)(row32), src_width);
src += src_stride;
}
ScaleAddCols(dst_width, boxheight, x, dx, (uint32*)(row32), dst_ptr);
dst_ptr += dst_stride;
}
free_aligned_buffer_64(row32);
}
}
// Scale plane down with bilinear interpolation.
void ScalePlaneBilinearDown(int src_width, int src_height,
int dst_width, int dst_height,
int src_stride, int dst_stride,
const uint8* src_ptr, uint8* dst_ptr,
enum FilterMode filtering) {
// Initial source x/y coordinate and step values as 16.16 fixed point.
int x = 0;
int y = 0;
int dx = 0;
int dy = 0;
// TODO(fbarchard): Consider not allocating row buffer for kFilterLinear.
// Allocate a row buffer.
align_buffer_64(row, src_width);
const int max_y = (src_height - 1) << 16;
int j;
void (*ScaleFilterCols)(uint8* dst_ptr, const uint8* src_ptr,
int dst_width, int x, int dx) =
(src_width >= 32768) ? ScaleFilterCols64_C : ScaleFilterCols_C;
void (*InterpolateRow)(uint8* dst_ptr, const uint8* src_ptr,
ptrdiff_t src_stride, int dst_width, int source_y_fraction) =
InterpolateRow_C;
ScaleSlope(src_width, src_height, dst_width, dst_height, filtering,
&x, &y, &dx, &dy);
src_width = Abs(src_width);
#if defined(HAS_INTERPOLATEROW_SSSE3)
if (TestCpuFlag(kCpuHasSSSE3)) {
InterpolateRow = InterpolateRow_Any_SSSE3;
if (IS_ALIGNED(src_width, 16)) {
InterpolateRow = InterpolateRow_SSSE3;
}
}
#endif
#if defined(HAS_INTERPOLATEROW_AVX2)
if (TestCpuFlag(kCpuHasAVX2)) {
InterpolateRow = InterpolateRow_Any_AVX2;
if (IS_ALIGNED(src_width, 32)) {
InterpolateRow = InterpolateRow_AVX2;
}
}
#endif
#if defined(HAS_INTERPOLATEROW_NEON)
if (TestCpuFlag(kCpuHasNEON)) {
InterpolateRow = InterpolateRow_Any_NEON;
if (IS_ALIGNED(src_width, 16)) {
InterpolateRow = InterpolateRow_NEON;
}
}
#endif
#if defined(HAS_INTERPOLATEROW_DSPR2)
if (TestCpuFlag(kCpuHasDSPR2)) {
InterpolateRow = InterpolateRow_Any_DSPR2;
if (IS_ALIGNED(src_width, 4)) {
InterpolateRow = InterpolateRow_DSPR2;
}
}
#endif
#if defined(HAS_SCALEFILTERCOLS_SSSE3)
if (TestCpuFlag(kCpuHasSSSE3) && src_width < 32768) {
ScaleFilterCols = ScaleFilterCols_SSSE3;
}
#endif
#if defined(HAS_SCALEFILTERCOLS_NEON)
if (TestCpuFlag(kCpuHasNEON) && src_width < 32768) {
ScaleFilterCols = ScaleFilterCols_Any_NEON;
if (IS_ALIGNED(dst_width, 8)) {
ScaleFilterCols = ScaleFilterCols_NEON;
}
}
#endif
if (y > max_y) {
y = max_y;
}
for (j = 0; j < dst_height; ++j) {
int yi = y >> 16;
const uint8* src = src_ptr + yi * src_stride;
if (filtering == kFilterLinear) {
ScaleFilterCols(dst_ptr, src, dst_width, x, dx);
} else {
int yf = (y >> 8) & 255;
InterpolateRow(row, src, src_stride, src_width, yf);
ScaleFilterCols(dst_ptr, row, dst_width, x, dx);
}
dst_ptr += dst_stride;
y += dy;
if (y > max_y) {
y = max_y;
}
}
free_aligned_buffer_64(row);
}
void ScalePlaneBilinearDown_16(int src_width, int src_height,
int dst_width, int dst_height,
int src_stride, int dst_stride,
const uint16* src_ptr, uint16* dst_ptr,
enum FilterMode filtering) {
// Initial source x/y coordinate and step values as 16.16 fixed point.
int x = 0;
int y = 0;
int dx = 0;
int dy = 0;
// TODO(fbarchard): Consider not allocating row buffer for kFilterLinear.
// Allocate a row buffer.
align_buffer_64(row, src_width * 2);
const int max_y = (src_height - 1) << 16;
int j;
void (*ScaleFilterCols)(uint16* dst_ptr, const uint16* src_ptr,
int dst_width, int x, int dx) =
(src_width >= 32768) ? ScaleFilterCols64_16_C : ScaleFilterCols_16_C;
void (*InterpolateRow)(uint16* dst_ptr, const uint16* src_ptr,
ptrdiff_t src_stride, int dst_width, int source_y_fraction) =
InterpolateRow_16_C;
ScaleSlope(src_width, src_height, dst_width, dst_height, filtering,
&x, &y, &dx, &dy);
src_width = Abs(src_width);
#if defined(HAS_INTERPOLATEROW_16_SSE2)
if (TestCpuFlag(kCpuHasSSE2)) {
InterpolateRow = InterpolateRow_Any_16_SSE2;
if (IS_ALIGNED(src_width, 16)) {
InterpolateRow = InterpolateRow_16_SSE2;
}
}
#endif
#if defined(HAS_INTERPOLATEROW_16_SSSE3)
if (TestCpuFlag(kCpuHasSSSE3)) {
InterpolateRow = InterpolateRow_Any_16_SSSE3;
if (IS_ALIGNED(src_width, 16)) {
InterpolateRow = InterpolateRow_16_SSSE3;
}
}
#endif
#if defined(HAS_INTERPOLATEROW_16_AVX2)
if (TestCpuFlag(kCpuHasAVX2)) {
InterpolateRow = InterpolateRow_Any_16_AVX2;
if (IS_ALIGNED(src_width, 32)) {
InterpolateRow = InterpolateRow_16_AVX2;
}
}
#endif
#if defined(HAS_INTERPOLATEROW_16_NEON)
if (TestCpuFlag(kCpuHasNEON)) {
InterpolateRow = InterpolateRow_Any_16_NEON;
if (IS_ALIGNED(src_width, 16)) {
InterpolateRow = InterpolateRow_16_NEON;
}
}
#endif
#if defined(HAS_INTERPOLATEROW_16_DSPR2)
if (TestCpuFlag(kCpuHasDSPR2)) {
InterpolateRow = InterpolateRow_Any_16_DSPR2;
if (IS_ALIGNED(src_width, 4)) {
InterpolateRow = InterpolateRow_16_DSPR2;
}
}
#endif
#if defined(HAS_SCALEFILTERCOLS_16_SSSE3)
if (TestCpuFlag(kCpuHasSSSE3) && src_width < 32768) {
ScaleFilterCols = ScaleFilterCols_16_SSSE3;
}
#endif
if (y > max_y) {
y = max_y;
}
for (j = 0; j < dst_height; ++j) {
int yi = y >> 16;
const uint16* src = src_ptr + yi * src_stride;
if (filtering == kFilterLinear) {
ScaleFilterCols(dst_ptr, src, dst_width, x, dx);
} else {
int yf = (y >> 8) & 255;
InterpolateRow((uint16*)row, src, src_stride, src_width, yf);
ScaleFilterCols(dst_ptr, (uint16*)row, dst_width, x, dx);
}
dst_ptr += dst_stride;
y += dy;
if (y > max_y) {
y = max_y;
}
}
free_aligned_buffer_64(row);
}
// Scale up down with bilinear interpolation.
void ScalePlaneBilinearUp(int src_width, int src_height,
int dst_width, int dst_height,
int src_stride, int dst_stride,
const uint8* src_ptr, uint8* dst_ptr,
enum FilterMode filtering) {
int j;
// Initial source x/y coordinate and step values as 16.16 fixed point.
int x = 0;
int y = 0;
int dx = 0;
int dy = 0;
const int max_y = (src_height - 1) << 16;
void (*InterpolateRow)(uint8* dst_ptr, const uint8* src_ptr,
ptrdiff_t src_stride, int dst_width, int source_y_fraction) =
InterpolateRow_C;
void (*ScaleFilterCols)(uint8* dst_ptr, const uint8* src_ptr,
int dst_width, int x, int dx) =
filtering ? ScaleFilterCols_C : ScaleCols_C;
ScaleSlope(src_width, src_height, dst_width, dst_height, filtering,
&x, &y, &dx, &dy);
src_width = Abs(src_width);
#if defined(HAS_INTERPOLATEROW_SSSE3)
if (TestCpuFlag(kCpuHasSSSE3)) {
InterpolateRow = InterpolateRow_Any_SSSE3;
if (IS_ALIGNED(dst_width, 16)) {
InterpolateRow = InterpolateRow_SSSE3;
}
}
#endif
#if defined(HAS_INTERPOLATEROW_AVX2)
if (TestCpuFlag(kCpuHasAVX2)) {
InterpolateRow = InterpolateRow_Any_AVX2;
if (IS_ALIGNED(dst_width, 32)) {
InterpolateRow = InterpolateRow_AVX2;
}
}
#endif
#if defined(HAS_INTERPOLATEROW_NEON)
if (TestCpuFlag(kCpuHasNEON)) {
InterpolateRow = InterpolateRow_Any_NEON;
if (IS_ALIGNED(dst_width, 16)) {
InterpolateRow = InterpolateRow_NEON;
}
}
#endif
#if defined(HAS_INTERPOLATEROW_DSPR2)
if (TestCpuFlag(kCpuHasDSPR2)) {
InterpolateRow = InterpolateRow_Any_DSPR2;
if (IS_ALIGNED(dst_width, 4)) {
InterpolateRow = InterpolateRow_DSPR2;
}
}
#endif
if (filtering && src_width >= 32768) {
ScaleFilterCols = ScaleFilterCols64_C;
}
#if defined(HAS_SCALEFILTERCOLS_SSSE3)
if (filtering && TestCpuFlag(kCpuHasSSSE3) && src_width < 32768) {
ScaleFilterCols = ScaleFilterCols_SSSE3;
}
#endif
#if defined(HAS_SCALEFILTERCOLS_NEON)
if (filtering && TestCpuFlag(kCpuHasNEON) && src_width < 32768) {
ScaleFilterCols = ScaleFilterCols_Any_NEON;
if (IS_ALIGNED(dst_width, 8)) {
ScaleFilterCols = ScaleFilterCols_NEON;
}
}
#endif
if (!filtering && src_width * 2 == dst_width && x < 0x8000) {
ScaleFilterCols = ScaleColsUp2_C;
#if defined(HAS_SCALECOLS_SSE2)
if (TestCpuFlag(kCpuHasSSE2) && IS_ALIGNED(dst_width, 8)) {
ScaleFilterCols = ScaleColsUp2_SSE2;
}
#endif
}
if (y > max_y) {
y = max_y;
}
{
int yi = y >> 16;
const uint8* src = src_ptr + yi * src_stride;
// Allocate 2 row buffers.
const int kRowSize = (dst_width + 31) & ~31;
align_buffer_64(row, kRowSize * 2);
uint8* rowptr = row;
int rowstride = kRowSize;
int lasty = yi;
ScaleFilterCols(rowptr, src, dst_width, x, dx);
if (src_height > 1) {
src += src_stride;
}
ScaleFilterCols(rowptr + rowstride, src, dst_width, x, dx);
src += src_stride;
for (j = 0; j < dst_height; ++j) {
yi = y >> 16;
if (yi != lasty) {
if (y > max_y) {
y = max_y;
yi = y >> 16;
src = src_ptr + yi * src_stride;
}
if (yi != lasty) {
ScaleFilterCols(rowptr, src, dst_width, x, dx);
rowptr += rowstride;
rowstride = -rowstride;
lasty = yi;
src += src_stride;
}
}
if (filtering == kFilterLinear) {
InterpolateRow(dst_ptr, rowptr, 0, dst_width, 0);
} else {
int yf = (y >> 8) & 255;
InterpolateRow(dst_ptr, rowptr, rowstride, dst_width, yf);
}
dst_ptr += dst_stride;
y += dy;
}
free_aligned_buffer_64(row);
}
}
void ScalePlaneBilinearUp_16(int src_width, int src_height,
int dst_width, int dst_height,
int src_stride, int dst_stride,
const uint16* src_ptr, uint16* dst_ptr,
enum FilterMode filtering) {
int j;
// Initial source x/y coordinate and step values as 16.16 fixed point.
int x = 0;
int y = 0;
int dx = 0;
int dy = 0;
const int max_y = (src_height - 1) << 16;
void (*InterpolateRow)(uint16* dst_ptr, const uint16* src_ptr,
ptrdiff_t src_stride, int dst_width, int source_y_fraction) =
InterpolateRow_16_C;
void (*ScaleFilterCols)(uint16* dst_ptr, const uint16* src_ptr,
int dst_width, int x, int dx) =
filtering ? ScaleFilterCols_16_C : ScaleCols_16_C;
ScaleSlope(src_width, src_height, dst_width, dst_height, filtering,
&x, &y, &dx, &dy);
src_width = Abs(src_width);
#if defined(HAS_INTERPOLATEROW_16_SSE2)
if (TestCpuFlag(kCpuHasSSE2)) {
InterpolateRow = InterpolateRow_Any_16_SSE2;
if (IS_ALIGNED(dst_width, 16)) {
InterpolateRow = InterpolateRow_16_SSE2;
}
}
#endif
#if defined(HAS_INTERPOLATEROW_16_SSSE3)
if (TestCpuFlag(kCpuHasSSSE3)) {
InterpolateRow = InterpolateRow_Any_16_SSSE3;
if (IS_ALIGNED(dst_width, 16)) {
InterpolateRow = InterpolateRow_16_SSSE3;
}
}
#endif
#if defined(HAS_INTERPOLATEROW_16_AVX2)
if (TestCpuFlag(kCpuHasAVX2)) {
InterpolateRow = InterpolateRow_Any_16_AVX2;
if (IS_ALIGNED(dst_width, 32)) {
InterpolateRow = InterpolateRow_16_AVX2;
}
}
#endif
#if defined(HAS_INTERPOLATEROW_16_NEON)
if (TestCpuFlag(kCpuHasNEON)) {
InterpolateRow = InterpolateRow_Any_16_NEON;
if (IS_ALIGNED(dst_width, 16)) {
InterpolateRow = InterpolateRow_16_NEON;
}
}
#endif
#if defined(HAS_INTERPOLATEROW_16_DSPR2)
if (TestCpuFlag(kCpuHasDSPR2)) {
InterpolateRow = InterpolateRow_Any_16_DSPR2;
if (IS_ALIGNED(dst_width, 4)) {
InterpolateRow = InterpolateRow_16_DSPR2;
}
}
#endif
if (filtering && src_width >= 32768) {
ScaleFilterCols = ScaleFilterCols64_16_C;
}
#if defined(HAS_SCALEFILTERCOLS_16_SSSE3)
if (filtering && TestCpuFlag(kCpuHasSSSE3) && src_width < 32768) {
ScaleFilterCols = ScaleFilterCols_16_SSSE3;
}
#endif
if (!filtering && src_width * 2 == dst_width && x < 0x8000) {
ScaleFilterCols = ScaleColsUp2_16_C;
#if defined(HAS_SCALECOLS_16_SSE2)
if (TestCpuFlag(kCpuHasSSE2) && IS_ALIGNED(dst_width, 8)) {
ScaleFilterCols = ScaleColsUp2_16_SSE2;
}
#endif
}
if (y > max_y) {
y = max_y;
}
{
int yi = y >> 16;
const uint16* src = src_ptr + yi * src_stride;
// Allocate 2 row buffers.
const int kRowSize = (dst_width + 31) & ~31;
align_buffer_64(row, kRowSize * 4);
uint16* rowptr = (uint16*)row;
int rowstride = kRowSize;
int lasty = yi;
ScaleFilterCols(rowptr, src, dst_width, x, dx);
if (src_height > 1) {
src += src_stride;
}
ScaleFilterCols(rowptr + rowstride, src, dst_width, x, dx);
src += src_stride;
for (j = 0; j < dst_height; ++j) {
yi = y >> 16;
if (yi != lasty) {
if (y > max_y) {
y = max_y;
yi = y >> 16;
src = src_ptr + yi * src_stride;
}
if (yi != lasty) {
ScaleFilterCols(rowptr, src, dst_width, x, dx);
rowptr += rowstride;
rowstride = -rowstride;
lasty = yi;
src += src_stride;
}
}
if (filtering == kFilterLinear) {
InterpolateRow(dst_ptr, rowptr, 0, dst_width, 0);
} else {
int yf = (y >> 8) & 255;
InterpolateRow(dst_ptr, rowptr, rowstride, dst_width, yf);
}
dst_ptr += dst_stride;
y += dy;
}
free_aligned_buffer_64(row);
}
}
// Scale Plane to/from any dimensions, without interpolation.
// Fixed point math is used for performance: The upper 16 bits
// of x and dx is the integer part of the source position and
// the lower 16 bits are the fixed decimal part.
static void ScalePlaneSimple(int src_width, int src_height,
int dst_width, int dst_height,
int src_stride, int dst_stride,
const uint8* src_ptr, uint8* dst_ptr) {
int i;
void (*ScaleCols)(uint8* dst_ptr, const uint8* src_ptr,
int dst_width, int x, int dx) = ScaleCols_C;
// Initial source x/y coordinate and step values as 16.16 fixed point.
int x = 0;
int y = 0;
int dx = 0;
int dy = 0;
ScaleSlope(src_width, src_height, dst_width, dst_height, kFilterNone,
&x, &y, &dx, &dy);
src_width = Abs(src_width);
if (src_width * 2 == dst_width && x < 0x8000) {
ScaleCols = ScaleColsUp2_C;
#if defined(HAS_SCALECOLS_SSE2)
if (TestCpuFlag(kCpuHasSSE2) && IS_ALIGNED(dst_width, 8)) {
ScaleCols = ScaleColsUp2_SSE2;
}
#endif
}
for (i = 0; i < dst_height; ++i) {
ScaleCols(dst_ptr, src_ptr + (y >> 16) * src_stride, dst_width, x, dx);
dst_ptr += dst_stride;
y += dy;
}
}
static void ScalePlaneSimple_16(int src_width, int src_height,
int dst_width, int dst_height,
int src_stride, int dst_stride,
const uint16* src_ptr, uint16* dst_ptr) {
int i;
void (*ScaleCols)(uint16* dst_ptr, const uint16* src_ptr,
int dst_width, int x, int dx) = ScaleCols_16_C;
// Initial source x/y coordinate and step values as 16.16 fixed point.
int x = 0;
int y = 0;
int dx = 0;
int dy = 0;
ScaleSlope(src_width, src_height, dst_width, dst_height, kFilterNone,
&x, &y, &dx, &dy);
src_width = Abs(src_width);
if (src_width * 2 == dst_width && x < 0x8000) {
ScaleCols = ScaleColsUp2_16_C;
#if defined(HAS_SCALECOLS_16_SSE2)
if (TestCpuFlag(kCpuHasSSE2) && IS_ALIGNED(dst_width, 8)) {
ScaleCols = ScaleColsUp2_16_SSE2;
}
#endif
}
for (i = 0; i < dst_height; ++i) {
ScaleCols(dst_ptr, src_ptr + (y >> 16) * src_stride,
dst_width, x, dx);
dst_ptr += dst_stride;
y += dy;
}
}
// Scale a plane.
// This function dispatches to a specialized scaler based on scale factor.
LIBYUV_API
void ScalePlane(const uint8* src, int src_stride,
int src_width, int src_height,
uint8* dst, int dst_stride,
int dst_width, int dst_height,
enum FilterMode filtering) {
// Simplify filtering when possible.
filtering = ScaleFilterReduce(src_width, src_height,
dst_width, dst_height, filtering);
// Negative height means invert the image.
if (src_height < 0) {
src_height = -src_height;
src = src + (src_height - 1) * src_stride;
src_stride = -src_stride;
}
// Use specialized scales to improve performance for common resolutions.
// For example, all the 1/2 scalings will use ScalePlaneDown2()
if (dst_width == src_width && dst_height == src_height) {
// Straight copy.
CopyPlane(src, src_stride, dst, dst_stride, dst_width, dst_height);
return;
}
if (dst_width == src_width && filtering != kFilterBox) {
int dy = FixedDiv(src_height, dst_height);
// Arbitrary scale vertically, but unscaled horizontally.
ScalePlaneVertical(src_height,
dst_width, dst_height,
src_stride, dst_stride, src, dst,
0, 0, dy, 1, filtering);
return;
}
if (dst_width <= Abs(src_width) && dst_height <= src_height) {
// Scale down.
if (4 * dst_width == 3 * src_width &&
4 * dst_height == 3 * src_height) {
// optimized, 3/4
ScalePlaneDown34(src_width, src_height, dst_width, dst_height,
src_stride, dst_stride, src, dst, filtering);
return;
}
if (2 * dst_width == src_width && 2 * dst_height == src_height) {
// optimized, 1/2
ScalePlaneDown2(src_width, src_height, dst_width, dst_height,
src_stride, dst_stride, src, dst, filtering);
return;
}
// 3/8 rounded up for odd sized chroma height.
if (8 * dst_width == 3 * src_width &&
dst_height == ((src_height * 3 + 7) / 8)) {
// optimized, 3/8
ScalePlaneDown38(src_width, src_height, dst_width, dst_height,
src_stride, dst_stride, src, dst, filtering);
return;
}
if (4 * dst_width == src_width && 4 * dst_height == src_height &&
(filtering == kFilterBox || filtering == kFilterNone)) {
// optimized, 1/4
ScalePlaneDown4(src_width, src_height, dst_width, dst_height,
src_stride, dst_stride, src, dst, filtering);
return;
}
}
if (filtering == kFilterBox && dst_height * 2 < src_height) {
ScalePlaneBox(src_width, src_height, dst_width, dst_height,
src_stride, dst_stride, src, dst);
return;
}
if (filtering && dst_height > src_height) {
ScalePlaneBilinearUp(src_width, src_height, dst_width, dst_height,
src_stride, dst_stride, src, dst, filtering);
return;
}
if (filtering) {
ScalePlaneBilinearDown(src_width, src_height, dst_width, dst_height,
src_stride, dst_stride, src, dst, filtering);
return;
}
ScalePlaneSimple(src_width, src_height, dst_width, dst_height,
src_stride, dst_stride, src, dst);
}
LIBYUV_API
void ScalePlane_16(const uint16* src, int src_stride,
int src_width, int src_height,
uint16* dst, int dst_stride,
int dst_width, int dst_height,
enum FilterMode filtering) {
// Simplify filtering when possible.
filtering = ScaleFilterReduce(src_width, src_height,
dst_width, dst_height, filtering);
// Negative height means invert the image.
if (src_height < 0) {
src_height = -src_height;
src = src + (src_height - 1) * src_stride;
src_stride = -src_stride;
}
// Use specialized scales to improve performance for common resolutions.
// For example, all the 1/2 scalings will use ScalePlaneDown2()
if (dst_width == src_width && dst_height == src_height) {
// Straight copy.
CopyPlane_16(src, src_stride, dst, dst_stride, dst_width, dst_height);
return;
}
if (dst_width == src_width) {
int dy = FixedDiv(src_height, dst_height);
// Arbitrary scale vertically, but unscaled vertically.
ScalePlaneVertical_16(src_height,
dst_width, dst_height,
src_stride, dst_stride, src, dst,
0, 0, dy, 1, filtering);
return;
}
if (dst_width <= Abs(src_width) && dst_height <= src_height) {
// Scale down.
if (4 * dst_width == 3 * src_width &&
4 * dst_height == 3 * src_height) {
// optimized, 3/4
ScalePlaneDown34_16(src_width, src_height, dst_width, dst_height,
src_stride, dst_stride, src, dst, filtering);
return;
}
if (2 * dst_width == src_width && 2 * dst_height == src_height) {
// optimized, 1/2
ScalePlaneDown2_16(src_width, src_height, dst_width, dst_height,
src_stride, dst_stride, src, dst, filtering);
return;
}
// 3/8 rounded up for odd sized chroma height.
if (8 * dst_width == 3 * src_width &&
dst_height == ((src_height * 3 + 7) / 8)) {
// optimized, 3/8
ScalePlaneDown38_16(src_width, src_height, dst_width, dst_height,
src_stride, dst_stride, src, dst, filtering);
return;
}
if (4 * dst_width == src_width && 4 * dst_height == src_height &&
filtering != kFilterBilinear) {
// optimized, 1/4
ScalePlaneDown4_16(src_width, src_height, dst_width, dst_height,
src_stride, dst_stride, src, dst, filtering);
return;
}
}
if (filtering == kFilterBox && dst_height * 2 < src_height) {
ScalePlaneBox_16(src_width, src_height, dst_width, dst_height,
src_stride, dst_stride, src, dst);
return;
}
if (filtering && dst_height > src_height) {
ScalePlaneBilinearUp_16(src_width, src_height, dst_width, dst_height,
src_stride, dst_stride, src, dst, filtering);
return;
}
if (filtering) {
ScalePlaneBilinearDown_16(src_width, src_height, dst_width, dst_height,
src_stride, dst_stride, src, dst, filtering);
return;
}
ScalePlaneSimple_16(src_width, src_height, dst_width, dst_height,
src_stride, dst_stride, src, dst);
}
// Scale an I420 image.
// This function in turn calls a scaling function for each plane.
LIBYUV_API
int I420Scale(const uint8* src_y, int src_stride_y,
const uint8* src_u, int src_stride_u,
const uint8* src_v, int src_stride_v,
int src_width, int src_height,
uint8* dst_y, int dst_stride_y,
uint8* dst_u, int dst_stride_u,
uint8* dst_v, int dst_stride_v,
int dst_width, int dst_height,
enum FilterMode filtering) {
int src_halfwidth = SUBSAMPLE(src_width, 1, 1);
int src_halfheight = SUBSAMPLE(src_height, 1, 1);
int dst_halfwidth = SUBSAMPLE(dst_width, 1, 1);
int dst_halfheight = SUBSAMPLE(dst_height, 1, 1);
if (!src_y || !src_u || !src_v || src_width == 0 || src_height == 0 ||
src_width > 32768 || src_height > 32768 ||
!dst_y || !dst_u || !dst_v || dst_width <= 0 || dst_height <= 0) {
return -1;
}
ScalePlane(src_y, src_stride_y, src_width, src_height,
dst_y, dst_stride_y, dst_width, dst_height,
filtering);
ScalePlane(src_u, src_stride_u, src_halfwidth, src_halfheight,
dst_u, dst_stride_u, dst_halfwidth, dst_halfheight,
filtering);
ScalePlane(src_v, src_stride_v, src_halfwidth, src_halfheight,
dst_v, dst_stride_v, dst_halfwidth, dst_halfheight,
filtering);
return 0;
}
LIBYUV_API
int I420Scale_16(const uint16* src_y, int src_stride_y,
const uint16* src_u, int src_stride_u,
const uint16* src_v, int src_stride_v,
int src_width, int src_height,
uint16* dst_y, int dst_stride_y,
uint16* dst_u, int dst_stride_u,
uint16* dst_v, int dst_stride_v,
int dst_width, int dst_height,
enum FilterMode filtering) {
int src_halfwidth = SUBSAMPLE(src_width, 1, 1);
int src_halfheight = SUBSAMPLE(src_height, 1, 1);
int dst_halfwidth = SUBSAMPLE(dst_width, 1, 1);
int dst_halfheight = SUBSAMPLE(dst_height, 1, 1);
if (!src_y || !src_u || !src_v || src_width == 0 || src_height == 0 ||
src_width > 32768 || src_height > 32768 ||
!dst_y || !dst_u || !dst_v || dst_width <= 0 || dst_height <= 0) {
return -1;
}
ScalePlane_16(src_y, src_stride_y, src_width, src_height,
dst_y, dst_stride_y, dst_width, dst_height,
filtering);
ScalePlane_16(src_u, src_stride_u, src_halfwidth, src_halfheight,
dst_u, dst_stride_u, dst_halfwidth, dst_halfheight,
filtering);
ScalePlane_16(src_v, src_stride_v, src_halfwidth, src_halfheight,
dst_v, dst_stride_v, dst_halfwidth, dst_halfheight,
filtering);
return 0;
}
// Deprecated api
LIBYUV_API
int Scale(const uint8* src_y, const uint8* src_u, const uint8* src_v,
int src_stride_y, int src_stride_u, int src_stride_v,
int src_width, int src_height,
uint8* dst_y, uint8* dst_u, uint8* dst_v,
int dst_stride_y, int dst_stride_u, int dst_stride_v,
int dst_width, int dst_height,
LIBYUV_BOOL interpolate) {
return I420Scale(src_y, src_stride_y,
src_u, src_stride_u,
src_v, src_stride_v,
src_width, src_height,
dst_y, dst_stride_y,
dst_u, dst_stride_u,
dst_v, dst_stride_v,
dst_width, dst_height,
interpolate ? kFilterBox : kFilterNone);
}
// Deprecated api
LIBYUV_API
int ScaleOffset(const uint8* src, int src_width, int src_height,
uint8* dst, int dst_width, int dst_height, int dst_yoffset,
LIBYUV_BOOL interpolate) {
// Chroma requires offset to multiple of 2.
int dst_yoffset_even = dst_yoffset & ~1;
int src_halfwidth = SUBSAMPLE(src_width, 1, 1);
int src_halfheight = SUBSAMPLE(src_height, 1, 1);
int dst_halfwidth = SUBSAMPLE(dst_width, 1, 1);
int dst_halfheight = SUBSAMPLE(dst_height, 1, 1);
int aheight = dst_height - dst_yoffset_even * 2; // actual output height
const uint8* src_y = src;
const uint8* src_u = src + src_width * src_height;
const uint8* src_v = src + src_width * src_height +
src_halfwidth * src_halfheight;
uint8* dst_y = dst + dst_yoffset_even * dst_width;
uint8* dst_u = dst + dst_width * dst_height +
(dst_yoffset_even >> 1) * dst_halfwidth;
uint8* dst_v = dst + dst_width * dst_height + dst_halfwidth * dst_halfheight +
(dst_yoffset_even >> 1) * dst_halfwidth;
if (!src || src_width <= 0 || src_height <= 0 ||
!dst || dst_width <= 0 || dst_height <= 0 || dst_yoffset_even < 0 ||
dst_yoffset_even >= dst_height) {
return -1;
}
return I420Scale(src_y, src_width,
src_u, src_halfwidth,
src_v, src_halfwidth,
src_width, src_height,
dst_y, dst_width,
dst_u, dst_halfwidth,
dst_v, dst_halfwidth,
dst_width, aheight,
interpolate ? kFilterBox : kFilterNone);
}
#ifdef __cplusplus
} // extern "C"
} // namespace libyuv
#endif
|
214,436 | Github | [
32488,
13570,
4780,
5216,
32488,
535,
187,
2948,
440,
44713,
187,
187,
4064,
13031,
1395,
33833,
187,
4064,
1269,
6172,
15,
3423,
64,
2203,
1395,
399,
882,
6180,
3233,
187,
187,
4064,
1269,
8640,
1395,
1269,
64,
8640,
187,
4064,
1269,
8640,
15,
24951,
1395,
28225,
187,
187,
4064,
964,
1395,
755,
64,
2566,
64,
10394,
535,
187,
2437,
28225,
5089,
9,
328,
44713,
15,
40595,
2262,
187,
50274,
35033,
6004,
326,
5044,
28225,
5113,
789,
15,
50276,
34,
28225,
6125,
247,
187,
50274,
46991,
875,
470,
285,
337,
15,
187,
50274,
35033,
187,
50274,
1439,
64,
40324,
426,
28225,
9,
17,
13,
1722,
10,
187,
50274,
2003,
64,
17506,
426,
28225,
9,
19,
13,
721,
10,
187,
50274,
14674,
64,
17506,
426,
28225,
9,
20,
13,
721,
10,
187,
50274,
12563,
64,
14674,
64,
17506,
426,
28225,
9,
18,
13,
374,
10,
187,
50274,
17506,
426,
28225,
9,
24,
13,
818,
10,
535,
50274,
1545,
1071,
64,
6953,
64,
6082,
9,
1286,
2262,
187,
50270,
4,
2053,
943,
789,
27,
187,
50270,
1087,
72,
18,
426,
28225,
9,
17,
13,
374,
10,
50276,
4,
29342,
565,
27,
19495,
30,
328,
3197,
14,
18645,
187,
50270,
1087,
72,
19,
426,
28225,
9,
18,
13,
374,
10,
50276,
4,
29342,
565,
27,
19495,
30,
328,
3197,
14,
18645,
187,
50270,
1087,
72,
20,
426,
28225,
9,
19,
13,
374,
10,
50276,
4,
29342,
565,
27,
19495,
30,
328,
3197,
14,
18645,
535,
50270,
1087,
72,
21,
426,
28225,
9,
19,
15,
22,
13,
608,
15,
17,
10,
50276,
4,
29342,
565,
27,
19495,
30,
328,
3197,
14,
18645,
187,
50270,
1087,
72,
22,
426,
28225,
9,
20,
15,
24,
13,
1249,
15,
26409,
10,
50276,
4,
29342,
565,
27,
19495,
30,
328,
3197,
14,
18645,
535,
50270,
4,
2053,
10095,
626,
187,
50270,
1286,
15,
8271,
21328,
3013,
9,
3902,
4756,
13,
28225,
13,
470,
13,
470,
10,
187,
50270,
1286,
15,
8271,
21328,
3013,
9,
3902,
4756,
13,
28225,
13,
374,
13,
470,
10,
187,
50270,
1286,
15,
8271,
21328,
3013,
9,
3902,
4756,
13,
28225,
13,
337,
13,
428,
19,
10,
535,
50270,
1286,
15,
8271,
21328,
3013,
9,
2548,
4756,
13,
28225,
13,
470,
13,
346,
455,
2807,
187,
50270,
4,
2451,
2570,
3904,
816,
323,
253,
36603,
273,
352,
9418,
187,
50270,
1286,
15,
8271,
21328,
3013,
9,
2548,
4756,
13,
28225,
13,
374,
75,
13,
495,
10,
535,
50274,
1545,
1071,
64,
498,
1301,
9,
1286,
2262,
187,
50270,
1286,
15,
34046,
4464,
19,
13,
374,
582,
28225,
9,
20,
13,
374,
481,
1124,
6649,
187,
50270,
1286,
15,
34046,
4464,
17,
13,
374,
582,
28225,
1490,
19,
13,
374,
481,
1124,
6649,
535,
50274,
1545,
1071,
64,
1124,
9,
1286,
2262,
187,
50270,
1087,
72,
426,
28225,
9,
18,
13,
374,
10,
187,
50270,
9,
66,
64,
6441,
13,
270,
64,
6441,
10,
426,
819,
72,
15,
1124,
1082,
187,
50270,
1286,
15,
34046,
9,
66,
64,
6441,
13,
337,
10,
187,
50270,
1286,
15,
34046,
9,
67,
64,
6441,
13,
374,
10,
535,
50274,
1545,
1071,
64,
25250,
9,
1286,
2262,
187,
50270,
1286,
15,
34046,
9,
1286,
15,
1439,
64,
40324,
15,
25250,
5715,
470,
10,
187,
50270,
1286,
15,
8271,
33451,
12827,
9,
1286,
15,
2003,
64,
17506,
15,
25250,
5715,
5922,
15,
26409,
26409,
26409,
1610,
10,
187,
50270,
1286,
15,
34046,
9,
1286,
15,
14674,
64,
17506,
15,
25250,
5715,
2456,
10,
187,
50270,
1286,
15,
34046,
9,
1286,
15,
17506,
15,
25250,
5715,
2233,
10,
535,
50270,
1286,
15,
34046,
9,
1286,
15,
14674,
64,
17506,
15,
25250,
5715,
1881,
15,
12563,
64,
14674,
64,
17506,
15,
25250,
6649,
535,
50274,
1545,
1071,
64,
40324,
9,
1286,
2262,
187,
50270,
1286,
15,
8271,
5653,
9,
1286,
15,
1439,
64,
40324,
15,
40324,
6649,
535,
50270,
1286,
15,
8271,
5088,
9,
1286,
15,
2003,
64,
17506,
15,
40324,
6649,
187,
50270,
1286,
15,
8271,
5088,
9,
1286,
15,
14674,
64,
17506,
15,
40324,
6649,
187,
50270,
1286,
15,
8271,
5088,
9,
1286,
15,
17506,
15,
40324,
6649,
535,
50274,
1545,
1071,
64,
249,
24951,
9,
1286,
2262,
187,
50270,
4,
760,
2032,
604,
2444,
327,
352,
187,
50270,
1286,
15,
8271,
5653,
9,
1286,
15,
17506,
15,
249,
24951,
6649,
187,
50270,
1286,
15,
8271,
5653,
9,
1286,
15,
1439,
64,
40324,
15,
249,
24951,
6649,
535,
50270,
1286,
15,
8271,
5088,
9,
1286,
15,
2003,
64,
17506,
15,
249,
24951,
6649,
187,
50270,
1286,
15,
8271,
5088,
9,
1286,
15,
14674,
64,
17506,
15,
249,
24951,
6649,
535,
50274,
1545,
1071,
64,
17506,
9,
1286,
2262,
187,
50270,
1286,
15,
8271,
5088,
9,
1286,
15,
17506,
15,
17506,
6649,
187,
50270,
1286,
15,
8271,
5653,
9,
1286,
15,
14674,
64,
17506,
15,
17506,
6649,
187,
50270,
1286,
15,
8271,
5653,
9,
1286,
15,
1439,
64,
40324,
15,
17506,
6649,
535,
50274,
1545,
1071,
64,
1344,
9,
1286,
2262,
187,
50270,
1286,
15,
34046,
9,
1344,
9,
1286,
15,
1439,
64,
40324,
582,
346,
17,
16,
1166,
2807,
187,
50270,
1286,
15,
34046,
9,
1344,
9,
1286,
15,
2003,
64,
17506,
582,
346,
19,
16,
23,
2807,
187,
50270,
1286,
15,
34046,
9,
1344,
9,
1286,
15,
17506,
582,
346,
24,
16,
24,
2807,
187,
50270,
1286,
15,
34046,
9,
1344,
9,
25155,
9,
19,
15,
28941,
13,
818,
9679,
686,
19,
15,
805,
16,
24,
3401,
187,
50270,
1286,
15,
34046,
9,
1344,
9,
25155,
9,
19,
15,
41674,
13,
818,
9679,
686,
19,
16,
24,
3401,
187,
50270,
1286,
15,
34046,
9,
1344,
9,
25155,
9,
17,
15,
16742,
13,
818,
9679,
686,
18,
16,
24,
3401,
535,
50274,
1545,
1071,
64,
1911,
9,
1286,
2262,
187,
50270,
35033,
5089,
253,
28225,
15,
1911,
64,
5560,
84,
1082,
1332,
35033,
187,
50270,
1087,
72,
18,
426,
28225,
9,
17,
13,
374,
10,
187,
50270,
1087,
72,
19,
426,
28225,
9,
18,
13,
495,
10,
187,
50270,
1087,
72,
20,
426,
28225,
9,
19,
13,
608,
10,
187,
50270,
1087,
72,
64,
15422,
426,
8256,
187,
50270,
1911,
426,
29331,
247,
13,
270,
27,
28225,
15,
1911,
64,
5560,
84,
9,
66,
13,
270,
481,
1124,
1082,
535,
50270,
1286,
15,
34046,
9,
1911,
9,
1087,
72,
18,
13,
819,
72,
18,
582,
313,
17,
13,
577,
1228,
187,
50270,
1286,
15,
34046,
9,
1911,
9,
1087,
72,
18,
13,
819,
72,
19,
582,
313,
18,
13,
608,
1228,
187,
50270,
1286,
15,
34046,
9,
1911,
9,
1087,
72,
19,
13,
819,
72,
20,
582,
313,
20,
13,
854,
1228,
535,
50270,
1286,
15,
34046,
9,
1911,
9,
1087,
72,
19,
13,
819,
72,
64,
15422,
582,
819,
72,
19,
15,
1124,
6649,
187,
50270,
1286,
15,
34046,
9,
1911,
9,
1087,
72,
64,
15422,
13,
819,
72,
19,
582,
819,
72,
19,
15,
1124,
6649,
535,
50274,
1545,
1071,
64,
2655,
1319,
9,
1286,
2262,
187,
50270,
35033,
5089,
326,
10941,
28225,
5113,
323,
13919,
187,
50270,
4896,
9113,
2464,
6267,
187,
50270,
1087,
72,
18,
426,
28225,
9,
18,
13,
374,
10,
187,
50270,
1087,
72,
19,
426,
28225,
9,
19,
13,
577,
10,
187,
50270,
1087,
72,
20,
426,
28225,
9,
18,
13,
374,
10,
187,
50270,
1286,
15,
34046,
9,
1087,
72,
18,
13,
819,
72,
20,
10,
187,
50270,
1286,
15,
8271,
3650,
12827,
9,
1087,
72,
18,
13,
819,
72,
19,
10,
535,
50270,
4,
9423,
3613,
1223,
359,
1472,
387,
352,
187,
50270,
1286,
15,
8271,
3650,
12827,
9,
1087,
72,
18,
13,
819,
72,
19,
10,
187,
50270,
1286,
15,
34046,
9,
1087,
72,
18,
13,
819,
72,
20,
10,
535,
187,
2437,
30073,
25155,
5089,
9,
328,
44713,
15,
40595,
2262,
187,
50274,
35033,
6004,
326,
755,
64,
24951,
1082,
1057,
253,
987,
2181,
323,
253,
1027,
11911,
187,
50274,
35033,
535,
50274,
1545,
1071,
64,
89,
8640,
64,
6986,
9,
1286,
2262,
187,
50270,
35033,
13325,
2119,
4284,
755,
64,
24951,
4961,
13,
6548,
8256,
35033,
187,
50270,
89,
2307,
426,
1269,
64,
8640,
15,
57,
13570,
9,
25041,
5715,
755,
64,
2566,
64,
10394,
5715,
399,
882,
6180,
3233,
7506,
8,
12428,
5295,
686,
66,
1358,
67,
16,
68,
16,
69,
16,
70,
13995,
582,
33833,
6649,
187,
50270,
1087,
72,
426,
1269,
2307,
15,
788,
64,
24951,
1082,
187,
50270,
1286,
15,
34046,
9,
1087,
72,
13,
8256,
10,
187
] | """Module progress tests"""
import unittest
from mock import Mock
from xblock.field_data import DictFieldData
from xmodule import x_module
from xmodule.progress import Progress
from . import get_test_system
class ProgressTest(unittest.TestCase):
''' Test that basic Progress objects work. A Progress represents a
fraction between 0 and 1.
'''
not_started = Progress(0, 17)
part_done = Progress(2, 6)
half_done = Progress(3, 6)
also_half_done = Progress(1, 2)
done = Progress(7, 7)
def test_create_object(self):
# These should work:
prg1 = Progress(0, 2) # pylint: disable=unused-variable
prg2 = Progress(1, 2) # pylint: disable=unused-variable
prg3 = Progress(2, 2) # pylint: disable=unused-variable
prg4 = Progress(2.5, 5.0) # pylint: disable=unused-variable
prg5 = Progress(3.7, 12.3333) # pylint: disable=unused-variable
# These shouldn't
self.assertRaises(ValueError, Progress, 0, 0)
self.assertRaises(ValueError, Progress, 2, 0)
self.assertRaises(ValueError, Progress, 1, -2)
self.assertRaises(TypeError, Progress, 0, "all")
# check complex numbers just for the heck of it :)
self.assertRaises(TypeError, Progress, 2j, 3)
def test_clamp(self):
self.assertEqual((2, 2), Progress(3, 2).frac())
self.assertEqual((0, 2), Progress(-2, 2).frac())
def test_frac(self):
prg = Progress(1, 2)
(a_mem, b_mem) = prg.frac()
self.assertEqual(a_mem, 1)
self.assertEqual(b_mem, 2)
def test_percent(self):
self.assertEqual(self.not_started.percent(), 0)
self.assertAlmostEqual(self.part_done.percent(), 33.33333333333333)
self.assertEqual(self.half_done.percent(), 50)
self.assertEqual(self.done.percent(), 100)
self.assertEqual(self.half_done.percent(), self.also_half_done.percent())
def test_started(self):
self.assertFalse(self.not_started.started())
self.assertTrue(self.part_done.started())
self.assertTrue(self.half_done.started())
self.assertTrue(self.done.started())
def test_inprogress(self):
# only true if working on it
self.assertFalse(self.done.inprogress())
self.assertFalse(self.not_started.inprogress())
self.assertTrue(self.part_done.inprogress())
self.assertTrue(self.half_done.inprogress())
def test_done(self):
self.assertTrue(self.done.done())
self.assertFalse(self.half_done.done())
self.assertFalse(self.not_started.done())
def test_str(self):
self.assertEqual(str(self.not_started), "0/17")
self.assertEqual(str(self.part_done), "2/6")
self.assertEqual(str(self.done), "7/7")
self.assertEqual(str(Progress(2.1234, 7)), '2.12/7')
self.assertEqual(str(Progress(2.0034, 7)), '2/7')
self.assertEqual(str(Progress(0.999, 7)), '1/7')
def test_add(self):
'''Test the Progress.add_counts() method'''
prg1 = Progress(0, 2)
prg2 = Progress(1, 3)
prg3 = Progress(2, 5)
prg_none = None
add = lambda a, b: Progress.add_counts(a, b).frac()
self.assertEqual(add(prg1, prg1), (0, 4))
self.assertEqual(add(prg1, prg2), (1, 5))
self.assertEqual(add(prg2, prg3), (3, 8))
self.assertEqual(add(prg2, prg_none), prg2.frac())
self.assertEqual(add(prg_none, prg2), prg2.frac())
def test_equality(self):
'''Test that comparing Progress objects for equality
works correctly.'''
prg1 = Progress(1, 2)
prg2 = Progress(2, 4)
prg3 = Progress(1, 2)
self.assertEqual(prg1, prg3)
self.assertNotEqual(prg1, prg2)
# Check != while we're at it
self.assertNotEqual(prg1, prg2)
self.assertEqual(prg1, prg3)
class ModuleProgressTest(unittest.TestCase):
''' Test that get_progress() does the right thing for the different modules
'''
def test_xmodule_default(self):
'''Make sure default get_progress exists, returns None'''
xmod = x_module.XModule(Mock(), get_test_system(), DictFieldData({'location': 'a://b/c/d/e'}), Mock())
prg = xmod.get_progress()
self.assertEqual(prg, None)
|
214,437 | Github | [
14277,
7229,
2715,
568,
18,
15,
17,
3,
9706,
568,
17880,
14,
25,
28739,
187,
29,
28192,
15664,
27,
9152,
568,
2413,
1358,
24991,
15,
9152,
15,
681,
16,
37104,
16,
373,
16,
9152,
1138,
187,
186,
29,
4835,
4959,
27,
4897,
14015,
4897,
16,
4897,
64,
886,
21,
66,
2385,
3,
4959,
27,
3409,
64,
21542,
568,
5672,
3,
4725,
187,
186,
29,
4835,
4959,
27,
4897,
14015,
4897,
16,
4897,
64,
886,
21,
66,
2385,
3,
4959,
27,
3409,
64,
30813,
568,
5672,
3,
4725,
187,
186,
29,
4835,
4959,
27,
4897,
14015,
4897,
16,
4897,
64,
886,
21,
66,
2385,
3,
4959,
27,
3409,
64,
16191,
568,
5672,
3,
4725,
187,
186,
14219,
41250,
19780,
121,
45882,
13610,
25538,
29427,
9850,
16677,
6238,
7719,
101,
6765,
236,
16740,
28305,
5225,
10962,
219,
26354,
30423,
34446,
14274,
20287,
12335,
22158,
187,
186,
29,
4835,
4959,
27,
4897,
14015,
4897,
16,
11300,
5647,
187,
870,
28192,
31
] | <?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:color="@color/color_ec4a48" android:state_checked="true" />
<item android:color="@color/color_ec4a48" android:state_pressed="true" />
<item android:color="@color/color_ec4a48" android:state_selected="true" />
<!--必须放在最后一行,否则上面的效果全都不能用-->
<item android:color="@color/white"/>
</selector> |
214,438 | Github | [
60,
3138,
7781,
10580,
880,
3614,
1358,
6756,
10580,
15,
681,
16,
7280,
15,
681,
16,
8456,
14,
17828,
16,
2184,
30754,
14367,
463,
15,
22503,
36586,
3614,
1358,
6756,
10580,
15,
681,
16,
7280,
15,
681,
16,
8456,
14,
17828,
16,
2184,
32,
14367,
463,
10,
187,
60,
3138,
6826,
15032,
880,
2413,
1358,
8428,
15,
32770,
84,
15,
900,
16,
14367,
463,
16,
2184,
14,
37442,
14,
11863,
15,
22503,
32,
4826,
30,
22829,
14,
15044,
36586,
3614,
1358,
19910,
15,
2184,
15,
3620,
16,
7280,
15,
681,
16,
8456,
14,
17828,
16,
2184,
10,
187,
60,
3138,
10987,
20364,
880,
3614,
1358,
85,
3385,
261,
14,
5297,
15,
2061,
16,
8456,
14,
17828,
16,
2184,
15,
22503,
32,
27391,
30,
11717,
36586,
3614,
1358,
85,
3385,
261,
14,
5297,
15,
2061,
16,
8456,
14,
17828,
16,
2184,
10,
187,
60,
3138,
29786,
729,
880,
3614,
1358,
29786,
729,
15,
900,
16,
18068,
16,
8456,
14,
17828,
16,
2184,
16,
27391,
16,
11717,
16,
10580,
16,
14367,
463,
15,
22503,
36586,
3614,
1358,
29786,
729,
15,
900,
16,
18068,
16,
8456,
14,
17828,
16,
2184,
10,
187,
60,
3138,
3373,
472,
880,
3614,
1358,
72,
410,
631,
9290,
15,
681,
16,
14367,
463,
16,
7280,
15,
681,
16,
8456,
14,
17828,
16,
2184,
36586,
3614,
1358,
72,
410,
631,
9290,
15,
681,
16,
16223,
16,
7280,
15,
681,
16,
8456,
14,
17828,
16,
2184,
10,
187,
60,
3138,
17736,
880,
2413,
1358,
8428,
15,
32770,
84,
15,
900,
16,
14367,
463,
16,
21997,
14,
2225,
14,
11863,
15,
22503,
32,
4826,
30,
22829,
14,
15044,
36586,
3614,
1358,
2040,
15,
7280,
4537,
6071,
15,
681,
16,
8456,
14,
17828,
16,
2184,
16,
11717,
16,
17821,
10,
187,
60,
3138,
40,
4069,
12939,
880,
3614,
1358,
14367,
2510,
15,
72,
4069,
15,
303,
16,
72,
4069,
31034,
16,
72,
4069,
15,
8567,
36586,
3614,
1358,
72,
4069,
15,
303,
16,
8456,
14,
17828,
16,
45,
18846,
10,
187,
187,
34,
1029,
14,
24159,
2233,
6,
13333,
5926,
14,
249,
5407,
273,
346,
27676,
16,
8456,
3,
187,
187,
1394,
476,
671,
897,
7635,
2094,
751,
13922,
970,
544,
394,
35885,
14,
17828,
880,
3614,
1358,
7280,
15,
681,
16,
394,
35885,
14,
17828,
16,
2184,
10,
187,
187,
4,
41576,
4698,
187,
187,
3138,
31591,
4698,
880,
2413,
1358,
8456,
2562,
15,
681,
16,
31591,
17144,
16,
2184,
14,
31591,
4698,
15,
8567,
10,
187,
187,
7781,
2127,
27,
5987,
1358,
7280,
15,
681,
16,
8456,
14,
17828,
16,
2184,
14,
31591,
4698,
16,
23723,
16,
11717,
16,
7614,
16,
7280,
15,
681,
16,
8456,
14,
17828,
16,
2184,
14,
31591,
4698,
16,
31591,
4698,
64,
28672,
64,
35704,
64,
2566,
15,
2184,
187,
187,
24436,
22195,
313,
36423,
8456,
4419,
4228,
2127,
5978,
10,
187,
187,
93,
50261,
93,
19769,
16,
412,
50271,
93,
17621,
11061,
1040,
17621,
2069,
1040,
187,
93,
18592,
1040,
14796,
1040,
4372,
1040,
4372,
1040,
187,
93,
6268,
30358,
50272,
93,
26033,
740,
19769,
16,
412,
1040,
11994,
378,
16,
412,
50270,
93,
8688,
9771,
84,
16,
412,
50273,
93,
187,
93,
3477,
8456,
30358,
1040,
11130,
1525,
19769,
16,
412,
50276,
93,
12036,
378,
16,
412,
50269,
93,
577,
9771,
84,
16,
412,
50272,
93,
187,
93,
14113,
2562,
30358,
1040,
8026,
1508,
19769,
16,
412,
50276,
93,
12036,
378,
16,
412,
50269,
93,
495,
9771,
84,
16,
412,
50272,
93,
187,
93,
6268,
22573,
50272,
93,
3307,
1012,
19769,
16,
412,
50276,
93,
818,
805,
378,
16,
412,
50269,
93,
608,
9771,
84,
16,
412,
50272,
93,
187,
93,
3477,
8456,
22573,
1040,
854,
3245,
19769,
16,
412,
50275,
93,
46313,
378,
16,
412,
50269,
93,
495,
9771,
84,
16,
412,
50272,
93,
187,
93,
14113,
2562,
22573,
1040,
854,
1787,
19769,
16,
412,
50275,
93,
31184,
378,
16,
412,
50269,
93,
577,
9771,
84,
16,
412,
50272,
93,
187,
187,
34361,
22791,
342,
634,
1211,
32140,
15,
187,
510,
906,
7024,
11306,
327,
253,
941,
3280,
15,
187,
187,
4,
43825,
187,
187,
2313,
6,
22862,
342,
2629,
5135,
187,
187,
34435,
187,
187,
11202,
2184,
187,
2948,
346,
27676,
16,
8456,
3,
187,
8456,
15,
39444,
6395,
2203,
10,
187,
11202,
187,
187,
3113,
187,
187,
11202,
2184,
187,
2948,
14113,
2562,
346,
7280,
15,
681,
16,
8456,
14,
17828,
16,
2184,
3,
187,
187,
2044,
14113,
426,
14113,
2562,
15,
6155,
30616,
917,
3378,
20842,
20607,
187,
8456,
15,
39444,
6395,
2203,
10,
187,
11202,
187,
187,
34435,
187,
187,
11202,
2184,
187,
2948,
346,
27676,
16,
8456,
3,
187,
8456,
15,
50143,
9,
5423,
13,
708,
2203,
10,
187,
11202,
187,
187,
3113,
187,
187,
11202,
2184,
187,
2948,
14113,
2562,
346,
7280,
15,
681,
16,
8456,
14,
17828,
16,
2184,
3,
187,
187,
2044,
14113,
426,
14113,
2562,
15,
6155,
30616,
917,
3378,
20842,
20607,
187,
8456,
15,
50143,
9,
5423,
13,
708,
2203,
10,
187,
11202,
187,
187,
60,
7673,
10097,
880,
2413,
1358,
8456,
2562,
15,
681,
16,
78,
304,
4427,
14,
4064,
14,
2184,
14,
8400,
15,
2974,
10,
187,
187,
4,
1359,
281,
755,
187,
187,
11202,
187,
2184,
755,
40477,
15,
681,
16,
8456,
14,
17828,
16,
2184,
187,
11202,
187,
187,
4,
3267,
2382,
17871,
23874,
2195,
187,
187,
2861,
42505,
187,
187,
14,
544,
394,
825,
249,
880,
3614,
1358,
7280,
15,
681,
16,
394,
825,
249,
10,
187,
14,
544,
78,
1595,
79,
880,
3614,
1358,
7280,
15,
681,
16,
78,
1595,
79,
10,
187,
14,
544,
68,
348,
10683,
880,
3614,
1358,
7280,
15,
681,
16,
68,
348,
10683,
10,
187,
14,
544,
48,
1851,
1608,
267,
6421,
4805,
880,
3614,
1358,
7280,
15,
681,
16,
1306,
72,
1200,
267,
6421,
4805,
10,
187,
14,
544,
41237,
1916,
567,
267,
21037,
880,
3614,
1358,
7280,
15,
681,
16,
936,
567,
267,
21037,
10,
187,
187,
20684,
2523,
390,
3785,
2748,
13,
390,
4579,
15307,
319,
257,
33,
23655,
15,
681,
13,
390,
544,
3138,
40,
4069,
12939,
880,
3614,
1358,
14367,
2510,
15,
72,
4069,
15,
303,
16,
72,
4069,
31034,
16,
72,
4069,
15,
8567,
36586,
3614,
1358,
72,
4069,
15,
303,
16,
8456,
14,
17828,
16,
45,
18846,
10,
187
] | [](https://sourcegraph.com/github.com/json-iterator/go?badge)
[](https://pkg.go.dev/github.com/json-iterator/go)
[](https://travis-ci.org/json-iterator/go)
[](https://codecov.io/gh/json-iterator/go)
[](https://goreportcard.com/report/github.com/json-iterator/go)
[](https://raw.githubusercontent.com/json-iterator/go/master/LICENSE)
[](https://gitter.im/json-iterator/Lobby)
A high-performance 100% compatible drop-in replacement of "encoding/json"
You can also use thrift like JSON using [thrift-iterator](https://github.com/thrift-iterator/go)
# Benchmark

Source code: https://github.com/json-iterator/go-benchmark/blob/master/src/github.com/json-iterator/go-benchmark/benchmark_medium_payload_test.go
Raw Result (easyjson requires static code generation)
| | ns/op | allocation bytes | allocation times |
| --------------- | ----------- | ---------------- | ---------------- |
| std decode | 35510 ns/op | 1960 B/op | 99 allocs/op |
| easyjson decode | 8499 ns/op | 160 B/op | 4 allocs/op |
| jsoniter decode | 5623 ns/op | 160 B/op | 3 allocs/op |
| std encode | 2213 ns/op | 712 B/op | 5 allocs/op |
| easyjson encode | 883 ns/op | 576 B/op | 3 allocs/op |
| jsoniter encode | 837 ns/op | 384 B/op | 4 allocs/op |
Always benchmark with your own workload.
The result depends heavily on the data input.
# Usage
100% compatibility with standard lib
Replace
```go
import "encoding/json"
json.Marshal(&data)
```
with
```go
import jsoniter "github.com/json-iterator/go"
var json = jsoniter.ConfigCompatibleWithStandardLibrary
json.Marshal(&data)
```
Replace
```go
import "encoding/json"
json.Unmarshal(input, &data)
```
with
```go
import jsoniter "github.com/json-iterator/go"
var json = jsoniter.ConfigCompatibleWithStandardLibrary
json.Unmarshal(input, &data)
```
[More documentation](http://jsoniter.com/migrate-from-go-std.html)
# How to get
```
go get github.com/json-iterator/go
```
# Contribution Welcomed !
Contributors
- [thockin](https://github.com/thockin)
- [mattn](https://github.com/mattn)
- [cch123](https://github.com/cch123)
- [Oleg Shaldybin](https://github.com/olegshaldybin)
- [Jason Toffaletti](https://github.com/toffaletti)
Report issue or pull request, or email [email protected], or [](https://gitter.im/json-iterator/Lobby)
|
214,439 | Github | [
41497,
187,
16880,
17633,
17203,
33521,
8490,
13,
31512,
11099,
1249,
15,
361,
187,
4,
17633,
17203,
1458,
187,
25889,
39701,
8893,
426,
1458,
15,
17,
15,
1619,
21645,
15,
42763,
187,
44831,
25889,
39701,
8893,
426,
884,
15,
17,
15,
1449,
24558,
15,
18,
187,
11695,
1587,
92,
26,
34,
746,
12172,
39,
14,
1036,
39,
24,
14,
2950,
2358,
14,
8998,
3439,
14,
26,
34,
18,
38,
24,
34,
21,
39,
1976,
3208,
94,
2807,
426,
346,
17664,
35,
3867,
8975,
995,
346,
17664,
35,
3867,
8975,
61,
17664,
35,
3867,
8975,
15,
6113,
29167,
995,
36028,
26,
36,
4185,
28615,
34,
14,
2691,
38,
18,
14,
21,
36,
1438,
14,
25,
14555,
14,
35,
1787,
35,
1099,
7386,
3141,
38,
18,
13272,
187,
7689,
11695,
187,
18590,
187,
186,
18590,
12612,
9,
37533,
11909,
17806,
84,
10,
426,
638,
37533,
996,
186,
14154,
93,
6693,
12874,
426,
26073,
93,
6693,
12874,
996,
186,
18992,
93,
6693,
12874,
426,
20002,
93,
6693,
12874,
187,
186,
7689,
18590,
12612,
187,
186,
18590,
12612,
9,
11695,
11909,
17806,
84,
10,
426,
1501,
37533,
996,
186,
92,
26,
36,
4185,
28615,
34,
14,
2691,
38,
18,
14,
21,
36,
1438,
14,
25,
14555,
14,
35,
1787,
35,
1099,
7386,
3141,
38,
18,
7165,
14154,
93,
6693,
12874,
15,
16754,
40822,
426,
26073,
93,
6693,
12874,
996,
186,
92,
26,
36,
4185,
28615,
34,
14,
2691,
38,
18,
14,
21,
36,
1438,
14,
25,
14555,
14,
35,
1787,
35,
1099,
7386,
3141,
38,
18,
7165,
14154,
93,
6693,
12874,
15,
10987,
15,
17,
426,
26073,
93,
6693,
12874,
996,
186,
92,
26,
36,
4185,
28615,
34,
14,
2691,
38,
18,
14,
21,
36,
1438,
14,
25,
14555,
14,
35,
1787,
35,
1099,
7386,
3141,
38,
18,
7165,
18992,
93,
6693,
12874,
15,
16754,
40822,
426,
20002,
93,
6693,
12874,
996,
186,
92,
26,
36,
4185,
28615,
34,
14,
2691,
38,
18,
14,
21,
36,
1438,
14,
25,
14555,
14,
35,
1787,
35,
1099,
7386,
3141,
38,
18,
7165,
18992,
93,
6693,
12874,
15,
10987,
15,
17,
426,
20002,
93,
6693,
12874,
187,
186,
7689,
18590,
12612,
187,
186,
18590,
12612,
9,
37533,
18401,
10,
426,
638,
37533,
996,
186,
29834,
37533,
6910,
426,
26194,
187,
186,
7689,
18590,
12612,
187,
186,
18590,
12612,
9,
7992,
561,
2322,
9030,
706,
932,
10,
426,
1501,
37533,
996,
186,
37533,
38895,
426,
551,
39027,
37,
36265,
14,
1610,
361,
14,
21,
38,
6327,
14,
35,
39273,
14,
34,
22,
36,
24235,
37,
2925,
18,
36,
25,
94,
187,
186,
7689,
18590,
12612,
187,
7689,
18590,
187
] |
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.28307.572
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GoogleBillingClient", "GoogleBillingClient\GoogleBillingClient.csproj", "{9C98362A-86E1-4C80-8147-B37B25CF78E1}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{9C98362A-86E1-4C80-8147-B37B25CF78E1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{9C98362A-86E1-4C80-8147-B37B25CF78E1}.Debug|Any CPU.Build.0 = Debug|Any CPU
{9C98362A-86E1-4C80-8147-B37B25CF78E1}.Release|Any CPU.ActiveCfg = Release|Any CPU
{9C98362A-86E1-4C80-8147-B37B25CF78E1}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {882D1958-3300-4EBA-B883-A5C263DAB1C8}
EndGlobalSection
EndGlobal
|
214,440 | Github | [
4,
34834,
11919,
16,
4805,
16,
12540,
15548,
187,
4,
45180,
12425,
27,
40502,
14,
25,
45180,
187,
187,
32488,
187,
89,
14785,
15,
6443,
15,
20472,
3923,
1594,
41312,
14526,
19763,
187,
32488,
187,
4064,
1269,
14785,
1395,
2780,
3683,
187,
4064,
964,
1395,
1030,
187,
4064,
964,
24706,
249,
1395,
7733,
3305,
35394,
249,
7050,
187,
4064,
964,
24841,
1395,
308,
6361,
7050,
187,
4064,
964,
5564,
1395,
13927,
7050,
187,
4064,
964,
46397,
1395,
47244,
7050,
13,
18817,
16458,
7050,
535,
187,
2437,
44764,
7050,
9,
10282,
3305,
35394,
249,
7050,
2262,
187,
50274,
22227,
64,
9536,
426,
1030,
15,
22227,
64,
52,
1922,
2025,
535,
50274,
1545,
4772,
4478,
21920,
1286,
13,
4666,
30,
11336,
13,
7302,
10282,
3305,
30,
11336,
2262,
187,
50270,
12185,
9,
30035,
7050,
13,
1881,
481,
876,
4478,
21920,
6219,
13,
7302,
10282,
3305,
10,
535,
50270,
1286,
15,
1911,
2618,
11756,
9,
3474,
15,
21840,
64,
1838,
10,
187,
50270,
1286,
15,
1178,
11756,
9,
3474,
15,
21840,
64,
18318,
1267,
12437,
13,
540,
9,
18833,
15,
788,
64,
6259,
64,
2606,
32875,
187,
50270,
1286,
3333,
9723,
64,
24841,
426,
1881,
3333,
788,
64,
9723,
64,
24841,
1082,
535,
50274,
1545,
795,
788,
64,
9723,
64,
24841,
9,
1286,
2262,
187,
50270,
4,
831,
1332,
26641,
5230,
9400,
13,
604,
417,
5230,
9400,
25586,
7092,
13,
840,
2794,
581,
187,
50270,
3956,
982,
426,
1881,
15,
788,
10371,
30994,
3463,
12547,
2402,
9,
3474,
15,
22227,
64,
32887,
1864,
10,
187,
50270,
18602,
64,
1601,
3305,
426,
1881,
15,
788,
36762,
10282,
3305,
1082,
187,
50270,
338,
8472,
9,
3956,
982,
10,
10122,
337,
27,
187,
50266,
9723,
64,
24841,
426,
12989,
60,
17,
62,
187,
50266,
9723,
64,
24841,
426,
308,
6361,
7050,
9,
9723,
64,
24841,
13,
7302,
64,
1601,
3305,
10,
187,
50270,
7271,
27,
187,
50266,
9723,
64,
24841,
426,
308,
6361,
7050,
9,
18602,
10282,
3305,
30,
18602,
64,
1601,
3305,
10,
187,
50266,
1286,
15,
46613,
9,
9723,
64,
24841,
10,
535,
50270,
2309,
5230,
64,
24841,
535,
50274,
1545,
795,
788,
39466,
16458,
9,
1286,
2262,
187,
50270,
2309,
1881,
15,
788,
6407,
10371,
6910,
3463,
12547,
2402,
9,
3474,
15,
22227,
64,
33792,
6570,
5648,
24748,
10,
535,
50274,
1545,
795,
1911,
39466,
1456,
9,
1286,
13,
774,
2262,
187,
50270,
32488,
187,
50270,
4717,
2954,
281,
8335,
187,
50270,
32488,
187,
50270,
64,
32742,
426,
1881,
3333,
788,
39466,
16458,
1082,
187,
50270,
18602,
64,
1601,
3305,
426,
1881,
15,
788,
36762,
10282,
3305,
1082,
535,
50270,
32742,
426,
18817,
16458,
7050,
10107,
32742,
13,
7302,
64,
1601,
3305,
10,
535,
50270,
338,
417,
795,
32742,
27,
187,
50266,
1286,
15,
46613,
9,
32742,
10,
535,
50270,
32742,
15,
46613,
9,
1661,
10,
535,
50274,
1545,
2794,
39466,
1456,
9,
1286,
13,
990,
18,
13,
990,
19,
13,
4060,
30,
11336,
2262,
187,
50270,
32488,
187,
50270,
9395,
247,
2954,
875,
767,
1027,
12989,
285,
1091,
253,
187,
50270,
22337,
774,
15,
7764,
4366,
326,
253,
3562,
774,
588,
320,
2879,
281,
187,
50270,
20472,
15,
535,
50270,
27,
3575,
990,
18,
27,
50274,
24841,
390,
9400,
5417,
187,
50270,
27,
3575,
990,
19,
27,
50274,
24841,
390,
9400,
5417,
187,
50270,
27,
3575,
4060,
27,
50275,
46397,
4060,
13,
4284,
407,
8256,
535,
50270,
27,
2309,
27,
247,
2634,
39466,
1456,
7050,
65,
4227,
535,
50270,
32488,
187,
50270,
1661,
426,
47244,
7050,
9,
18602,
10282,
3305,
30,
1286,
15,
788,
36762,
10282,
3305,
6649,
187,
50270,
1661,
15,
1178,
7689,
18,
1838,
9,
423,
18,
604,
47337,
9,
423,
18,
13,
1213,
10,
2010,
990,
18,
15,
788,
1838,
6649,
187,
50270,
1661,
15,
1178,
7689,
19,
1838,
9,
423,
19,
604,
47337,
9,
423,
19,
13,
1213,
10,
2010,
990,
19,
15,
788,
1838,
6649,
535,
50270,
338,
4060,
310,
417,
8256,
27,
187,
50266,
1661,
15,
1178,
13408,
9,
5564,
10,
535,
50270,
1286,
3333,
1911,
39466,
1456,
9,
1661,
10,
535,
50270,
2309,
774,
535,
50274,
1545,
755,
39466,
16458,
9,
1286,
2262,
187,
50270,
32488,
187,
50270,
3633,
1618,
273,
2954,
432,
1655,
8335,
187,
50270,
32488,
187,
50270,
64,
32742,
426,
1881,
3333,
788,
39466,
16458,
1082,
187,
50270,
338,
417,
795,
32742,
27,
187,
50266,
2309,
8168,
187,
50270,
18602,
64,
1601,
3305,
426,
1881,
15,
788,
36762,
10282,
3305,
1082,
187,
50270,
2309,
18817,
16458,
7050,
10107,
32742,
13,
7302,
64,
1601,
3305,
481,
788,
39466,
16458,
1082,
535,
50274,
1545,
5386,
39466,
1456,
9,
1286,
13,
774,
2262,
187,
50270,
32488,
187,
50270,
21605,
247,
2954,
875,
767,
1027,
12989,
187,
50270,
32488,
187,
50270,
32742,
426,
1881,
3333,
788,
39466,
16458,
1082,
535,
50270,
338,
417,
774,
84,
27,
187,
50266,
2309,
535,
50270,
1661,
426,
774,
15,
788,
3351,
21857,
1082,
187,
50270,
32742,
15,
12163,
10371,
9,
1661,
10,
187,
50270,
338,
417,
774,
84,
15,
7110,
10371,
30994,
14850,
187,
50266,
1286,
15,
788,
3351,
21857,
5023,
12163,
10371,
9,
32742,
10,
535,
50270,
1286,
15,
11183,
37765,
4769,
1082,
535,
50274,
1545,
755,
16560,
46167,
9,
1286,
2262,
187,
50270,
2309,
1881,
3333,
9723,
64,
24841,
535,
50274,
1545,
795,
788,
64,
5564,
9,
1286,
2262,
187,
50270,
2309,
1881,
15,
788,
6407,
10371,
6910,
3463,
12547,
2402,
9,
3474,
15,
22227,
64,
53,
43561,
10,
535,
50274,
4,
38506,
5288,
27,
6455,
281,
755,
350,
16,
1178,
350,
187,
50274,
1545,
755,
13408,
9,
1286,
2262,
187,
50270,
5564,
426,
1881,
3333,
788,
64,
5564,
1082,
187,
50270,
338,
4060,
27,
187,
50266,
5564,
426,
13927,
7050,
9,
5564,
13,
1881,
15,
788,
36762,
10282,
3305,
6649,
187,
50266,
2309,
4060,
15,
45461,
8590,
1082,
535,
50274,
1545,
873,
13408,
9,
1286,
13,
2505,
2262,
187,
50270,
64,
5564,
426,
1881,
3333,
788,
64,
5564,
1082,
187,
50270,
5564,
426,
13927,
7050,
10107,
5564,
13,
1881,
15,
788,
36762,
10282,
3305,
6649,
187,
50270,
5564,
15,
32256,
8590,
9,
1156,
10,
535,
50270,
338,
795,
5564,
310,
8256,
27,
187,
50266,
1286,
15,
46613,
9,
5564,
10,
535,
50270,
1286,
15,
11183,
37765,
4769,
1082,
535,
50274,
1545,
755,
15852,
9,
1286,
2262,
187,
50270,
1601,
3305,
426,
1881,
15,
788,
36762,
10282,
3305,
1082,
187,
50270,
338,
789,
3305,
27,
187,
50266,
5598,
426,
1881,
15,
788,
15852,
6910,
1082,
535,
50266,
338,
2885,
2295,
789,
3305,
15,
788,
10282,
3305,
7050,
5023,
788,
3351,
21857,
14850,
187,
50262,
2309,
789,
3305,
535,
50274,
1545,
5731,
37765,
4769,
9,
1286,
2262,
187,
50270,
12185,
9,
30035,
7050,
13,
1881,
481,
11183,
37765,
4769,
1082,
535,
50270,
1601,
3305,
426,
1881,
15,
788,
15852,
1082,
187,
50270,
338,
789,
3305,
27,
187,
50266,
1601,
3305,
15,
11183,
37765,
4769,
1082,
535,
50274,
1545,
755,
3233,
9,
1286,
2262,
187,
50270,
32488,
187,
50270,
3633,
8335,
434,
2022,
2600,
275,
253,
830,
273,
247,
19034,
15,
187,
50270,
32488,
187,
50270,
9723,
64,
24841,
426,
1881,
15,
788,
16560,
46167,
1082,
187,
50270,
2203,
426,
551,
187,
50266,
8,
301,
5295,
1881,
15,
788,
11756,
9,
3474,
15,
21840,
64,
1838,
582,
187,
50266,
626,
2404,
5295,
1881,
15,
788,
13408,
5715,
187,
50266,
626,
6361,
5295,
5230,
64,
24841,
15,
788,
3233,
1082,
187,
50270,
94,
187,
50270,
2309,
941,
187
] | #!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
xmind.core.sheet command XMind sheets manipulation
"""
from xmind import utils
from . import const
from .mixin import WorkbookMixinElement
from .topic import TopicElement
from .title import TitleElement
from .relationship import RelationshipElement, RelationshipsElement
class SheetElement(WorkbookMixinElement):
TAG_NAME = const.TAG_SHEET
def __init__(self, node=None, ownerWorkbook=None):
super(SheetElement, self).__init__(node, ownerWorkbook)
self.addIdAttribute(const.ATTR_ID)
self.setAttribute(const.ATTR_TIMESTAMP, int(utils.get_current_time()))
self._root_topic = self._get_root_topic()
def _get_root_topic(self):
# This method initialize root topic, if not root topic DOM implementation, then create one
topics = self.getChildNodesByTagName(const.TAG_TOPIC)
owner_workbook = self.getOwnerWorkbook()
if len(topics) >= 1:
root_topic = topics[0]
root_topic = TopicElement(root_topic, owner_workbook)
else:
root_topic = TopicElement(ownerWorkbook=owner_workbook)
self.appendChild(root_topic)
return root_topic
def _getRelationships(self):
return self.getFirstChildNodeByTagName(const.TAG_RELATIONSHIPS)
def _addRelationship(self, rel):
"""
Add relationship to sheet
"""
_rels = self._getRelationships()
owner_workbook = self.getOwnerWorkbook()
rels = RelationshipsElement(_rels, owner_workbook)
if not _rels:
self.appendChild(rels)
rels.appendChild(rel)
def createRelationship(self, end1, end2, title=None):
"""
Create a relationship between two different topics and return the
created rel. Please notice that the created rel will be added to
sheet.
:param end1: topic or topic ID
:param end2: topic or topic ID
:param title: relationship title, default by None
:return: a `RelationshipElement` instance
"""
rel = RelationshipElement(ownerWorkbook=self.getOwnerWorkbook())
rel.setEnd1ID(end1 if isinstance(end1, str) else end1.getID())
rel.setEnd2ID(end2 if isinstance(end2, str) else end2.getID())
if title is not None:
rel.setTitle(title)
self._addRelationship(rel)
return rel
def getRelationships(self):
"""
Get list of relationship from current sheet
"""
_rels = self._getRelationships()
if not _rels:
return []
owner_workbook = self.getOwnerWorkbook()
return RelationshipsElement(_rels, owner_workbook).getRelationships()
def removeRelationship(self, rel):
"""
Remove a relationship between two different topics
"""
rels = self._getRelationships()
if not rels:
return
rel = rel.getImplementation()
rels.removeChild(rel)
if not rels.hasChildNodes():
self.getImplementation().removeChild(rels)
self.updateModifiedTime()
def getRootTopic(self):
return self._root_topic
def _get_title(self):
return self.getFirstChildNodeByTagName(const.TAG_TITLE)
# FIXME: convert to getter/setter
def getTitle(self):
title = self._get_title()
if title:
title = TitleElement(title, self.getOwnerWorkbook())
return title.getTextContent()
def setTitle(self, text):
_title = self._get_title()
title = TitleElement(_title, self.getOwnerWorkbook())
title.setTextContent(text)
if _title is None:
self.appendChild(title)
self.updateModifiedTime()
def getParent(self):
workbook = self.getOwnerWorkbook()
if workbook:
parent = self.getParentNode()
if parent == workbook.getWorkbookElement().getImplementation():
return workbook
def updateModifiedTime(self):
super(SheetElement, self).updateModifiedTime()
workbook = self.getParent()
if workbook:
workbook.updateModifiedTime()
def getData(self):
"""
Get sheet's main content in the form of a dictionary.
"""
root_topic = self.getRootTopic()
data = {
'id': self.getAttribute(const.ATTR_ID),
'title': self.getTitle(),
'topic': root_topic.getData()
}
return data
|
214,441 | Github | [
3122,
187,
20968,
416,
1751,
43107,
4695,
14,
6620,
187,
14178,
3567,
762,
253,
35476,
9107,
4637,
13,
11099,
337,
15,
17,
15,
187,
9,
5035,
17909,
1873,
21826,
64,
18,
64,
17,
15,
10134,
390,
3491,
387,
187,
2413,
1358,
2700,
15,
15467,
15,
2061,
16,
17821,
64,
18,
64,
17,
15,
10134,
10,
187,
8480,
187,
187,
4,
17331,
10807,
64,
3175,
1703,
16462,
64,
20756,
1433,
9649,
10860,
64,
46,
24748,
64,
41,
187,
4,
3182,
10807,
64,
3175,
1703,
16462,
64,
20756,
1433,
9649,
10860,
64,
46,
24748,
64,
41,
187,
187,
4,
3709,
654,
15467,
16,
12787,
832,
16,
4149,
64,
9133,
15,
73,
31,
187,
4,
3709,
654,
15467,
16,
12787,
832,
16,
11145,
15,
73,
31,
187,
187,
3122,
65,
187,
60,
33049,
2634,
30113,
64,
20756,
64,
46,
24748,
65,
62,
187,
187,
683,
2413,
1358,
257,
15,
25842,
15,
2061,
16,
16123,
16,
46,
24748,
64,
1116,
38413,
353,
24748,
62,
10336,
15,
187,
187,
60,
2420,
187,
50274,
14598,
876,
12787,
832,
64,
25354,
876,
62,
544,
876,
12787,
832,
64,
4149,
876,
9502,
535,
50274,
14598,
65,
876,
78,
2824,
876,
65,
62,
544,
876,
12787,
832,
64,
49558,
876,
9502,
187,
50274,
14598,
65,
876,
78,
2824,
65,
62,
544,
876,
12787,
832,
64,
49558,
876,
9502,
187,
50274,
14598,
65,
876,
46,
24748,
876,
65,
62,
544,
876,
12787,
832,
64,
49558,
876,
9502,
535,
50274,
14598,
65,
876,
78,
2824,
65,
62,
544,
55,
15,
17,
15,
17,
9502,
187,
50274,
14598,
65,
64,
46,
24748,
64,
12988,
64,
46,
24748,
18,
65,
62,
544,
18,
15,
17,
15,
17,
9502,
187,
50274,
14598,
65,
64,
51,
26990,
65,
62,
544,
18,
15,
17,
15,
17,
9502,
187,
50274,
14598,
65,
64,
46,
24748,
64,
12988,
64,
46,
24748,
19,
65,
62,
544,
19,
15,
17,
15,
17,
9502,
187,
50274,
14598,
65,
876,
46,
24748,
64,
12988,
19,
876,
65,
62,
544,
19,
15,
17,
15,
17,
9502,
187,
50274,
14598,
65,
64,
51,
25851,
65,
62,
544,
19,
15,
17,
15,
17,
9502,
187,
50274,
14598,
65,
64,
46,
24748,
64,
12988,
64,
46,
24748,
20,
65,
62,
544,
20,
15,
17,
15,
17,
9502,
187,
50274,
14598,
65,
876,
46,
24748,
64,
12988,
20,
876,
65,
62,
544,
20,
15,
17,
15,
17,
9502,
187,
50274,
14598,
65,
64,
46,
24748,
64,
12988,
64,
46,
24748,
21,
65,
62,
544,
21,
15,
17,
15,
17,
9502,
187,
50274,
14598,
65,
876,
46,
24748,
64,
12988,
21,
876,
65,
62,
544,
21,
15,
17,
15,
17,
9502,
187,
50274,
62,
187,
1738,
187,
187,
4,
3182,
10807,
64,
20756,
64,
46,
24748,
10807,
64,
17037,
64,
40804,
64,
10311,
64,
5851,
22823,
8908,
187,
187,
4,
338,
2931,
18583,
78,
2824,
32350,
2785,
2931,
18583,
78,
2824,
10,
2785,
393,
187,
50274,
7769,
18583,
46,
24748,
32350,
187,
4,
50275,
33943,
10807,
64,
20756,
64,
46,
24748,
187,
4,
50275,
338,
2195,
7769,
9,
30113,
64,
20756,
64,
46,
24748,
10,
3857,
313,
7769,
18583,
78,
2824,
1228,
187,
4,
50271,
3182,
10807,
64,
20756,
64,
46,
24748,
10807,
64,
17037,
64,
40804,
18583,
78,
2824,
13,
17,
13,
17,
10,
187,
4,
50275,
7287,
187,
4,
50275,
338,
2195,
7769,
9,
30113,
64,
20756,
64,
46,
24748,
10,
3857,
313,
7769,
10107,
46,
24748,
64,
12988,
64,
46,
24748,
18,
10,
2785,
2931,
10107,
51,
26990,
1228,
187,
4,
50271,
3182,
10807,
64,
20756,
64,
46,
24748,
10807,
64,
17037,
64,
40804,
9,
18,
13,
17,
13,
17,
10,
187,
4,
50275,
7287,
187,
4,
50275,
338,
2195,
7769,
9,
30113,
64,
20756,
64,
46,
24748,
10,
3857,
313,
7769,
10107,
46,
24748,
64,
12988,
64,
46,
24748,
19,
10,
2785,
2931,
18583,
46,
24748,
64,
12988,
19,
32350,
2785,
2931,
10107,
51,
25851,
1228,
187,
4,
50271,
3182,
10807,
64,
20756,
64,
46,
24748,
10807,
64,
17037,
64,
40804,
9,
19,
13,
17,
13,
17,
10,
187,
4,
50275,
7287,
187,
4,
50275,
338,
2195,
7769,
9,
30113,
64,
20756,
64,
46,
24748,
10,
3857,
313,
7769,
10107,
46,
24748,
64,
12988,
64,
46,
24748,
20,
10,
2785,
2931,
18583,
46,
24748,
64,
12988,
20,
876,
1228,
187,
4,
50271,
3182,
10807,
64,
20756,
64,
46,
24748,
10807,
64,
17037,
64,
40804,
9,
20,
13,
17,
13,
17,
10,
187,
4,
50275,
7287,
187,
4,
50275,
338,
2195,
7769,
9,
30113,
64,
20756,
64,
46,
24748,
10,
3857,
313,
7769,
10107,
46,
24748,
64,
12988,
64,
46,
24748,
21,
10,
2785,
2931,
18583,
46,
24748,
64,
12988,
21,
876,
1228,
187,
4,
50271,
3182,
10807,
64,
20756,
64,
46,
24748,
10807,
64,
17037,
64,
40804,
9,
21,
13,
17,
13,
17,
10,
187,
4,
50275,
7287,
187,
4,
50275,
338,
2195,
7769,
9,
30113,
64,
20756,
64,
46,
24748,
10,
187,
4,
50271,
3182,
10807,
64,
20756,
64,
46,
24748,
10807,
64,
17037,
64,
40804,
64,
5851,
22823,
8908,
187,
4,
50275,
7287,
187,
4,
7287,
187,
187,
4,
338,
10807,
64,
20756,
64,
46,
24748,
187,
4,
50275,
3182,
10807,
64,
20756,
64,
46,
24748,
64,
5851,
22823,
8908,
187,
4,
7287,
187,
187,
4,
3182,
10807,
64,
20756,
64,
46,
24748,
64,
9536,
346,
46,
24748,
3,
187,
187,
4,
7287,
187,
187,
4,
3709,
654,
15467,
16,
12787,
832,
16,
20119,
16,
2566,
15,
73,
31,
187,
30113,
64,
3175,
1703,
16462,
64,
47110,
64,
14524,
9,
30113,
64,
20756,
64,
46,
24748,
13,
30113,
64,
20756,
64,
46,
24748,
64,
9536,
10,
187
] | /*
Copyright Rene Rivera 2008-2015
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or copy at
http://www.boost.org/LICENSE_1_0.txt)
*/
#ifndef BOOST_PREDEF_ARCHITECTURE_MIPS_H
#define BOOST_PREDEF_ARCHITECTURE_MIPS_H
#include <boost/predef/version_number.h>
#include <boost/predef/make.h>
/*`
[heading `BOOST_ARCH_MIPS`]
[@http://en.wikipedia.org/wiki/MIPS_architecture MIPS] architecture.
[table
[[__predef_symbol__] [__predef_version__]]
[[`__mips__`] [__predef_detection__]]
[[`__mips`] [__predef_detection__]]
[[`__MIPS__`] [__predef_detection__]]
[[`__mips`] [V.0.0]]
[[`_MIPS_ISA_MIPS1`] [1.0.0]]
[[`_R3000`] [1.0.0]]
[[`_MIPS_ISA_MIPS2`] [2.0.0]]
[[`__MIPS_ISA2__`] [2.0.0]]
[[`_R4000`] [2.0.0]]
[[`_MIPS_ISA_MIPS3`] [3.0.0]]
[[`__MIPS_ISA3__`] [3.0.0]]
[[`_MIPS_ISA_MIPS4`] [4.0.0]]
[[`__MIPS_ISA4__`] [4.0.0]]
]
*/
#define BOOST_ARCH_MIPS BOOST_VERSION_NUMBER_NOT_AVAILABLE
#if defined(__mips__) || defined(__mips) || \
defined(__MIPS__)
# undef BOOST_ARCH_MIPS
# if !defined(BOOST_ARCH_MIPS) && (defined(__mips))
# define BOOST_ARCH_MIPS BOOST_VERSION_NUMBER(__mips,0,0)
# endif
# if !defined(BOOST_ARCH_MIPS) && (defined(_MIPS_ISA_MIPS1) || defined(_R3000))
# define BOOST_ARCH_MIPS BOOST_VERSION_NUMBER(1,0,0)
# endif
# if !defined(BOOST_ARCH_MIPS) && (defined(_MIPS_ISA_MIPS2) || defined(__MIPS_ISA2__) || defined(_R4000))
# define BOOST_ARCH_MIPS BOOST_VERSION_NUMBER(2,0,0)
# endif
# if !defined(BOOST_ARCH_MIPS) && (defined(_MIPS_ISA_MIPS3) || defined(__MIPS_ISA3__))
# define BOOST_ARCH_MIPS BOOST_VERSION_NUMBER(3,0,0)
# endif
# if !defined(BOOST_ARCH_MIPS) && (defined(_MIPS_ISA_MIPS4) || defined(__MIPS_ISA4__))
# define BOOST_ARCH_MIPS BOOST_VERSION_NUMBER(4,0,0)
# endif
# if !defined(BOOST_ARCH_MIPS)
# define BOOST_ARCH_MIPS BOOST_VERSION_NUMBER_AVAILABLE
# endif
#endif
#if BOOST_ARCH_MIPS
# define BOOST_ARCH_MIPS_AVAILABLE
#endif
#define BOOST_ARCH_MIPS_NAME "MIPS"
#endif
#include <boost/predef/detail/test.h>
BOOST_PREDEF_DECLARE_TEST(BOOST_ARCH_MIPS,BOOST_ARCH_MIPS_NAME)
|
214,442 | Github | [
3122,
41415,
407,
39029,
34228,
15,
187,
1738,
187,
187,
33,
26324,
10890,
20775,
13736,
26692,
187,
187,
33,
17354,
187,
187,
14,
313,
4353,
10,
1178,
4476,
1250,
44594,
8590,
13736,
10477,
9599,
10,
1662,
18,
28,
187,
14,
313,
4353,
10,
1178,
4476,
1250,
44594,
8590,
13736,
5475,
37195,
10477,
26648,
9657,
1662,
18,
28,
187,
14,
313,
9599,
10,
26806,
8590,
13736,
28,
187,
187,
33,
423,
187
] | /* Generated by RuntimeBrowser.
*/
@protocol PSViewControllerOffsetProtocol
@required
- (void)setDesiredVerticalContentOffset:(float)arg1;
- (void)setDesiredVerticalContentOffsetItemNamed:(NSString *)arg1;
- (float)verticalContentOffset;
@end
|
214,443 | Github | [
41497,
14277,
7229,
2715,
568,
18,
15,
17,
3,
9706,
568,
17880,
14,
25,
28739,
187,
29,
11695,
29806,
8893,
568,
21,
15,
17,
3,
15664,
568,
2413,
1358,
24991,
15,
22730,
15,
681,
16,
35654,
16,
983,
7973,
16,
9755,
1138,
187,
870,
11695,
31
] | <?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
</Project> |
214,444 | Github | [
10708,
389,
15,
6156,
36877,
15,
19453,
15,
22127,
15,
15476,
28,
187,
187,
2948,
389,
15,
6156,
36877,
15,
47926,
15,
33347,
28,
187,
2948,
389,
15,
6156,
36877,
15,
47926,
15,
17393,
1178,
28,
187,
2948,
389,
15,
6156,
36877,
15,
9438,
15,
31775,
36877,
6825,
28,
187,
2948,
389,
15,
6156,
36877,
15,
19453,
15,
8906,
15,
19589,
28,
187,
2948,
389,
15,
6156,
36877,
15,
4113,
15,
15099,
28,
187,
2948,
389,
15,
6156,
36877,
15,
4113,
15,
22127,
15,
15476,
15,
15099,
10990,
9034,
7215,
28,
187,
187,
33,
33347,
1587,
1208,
80,
2807,
187,
33,
17393,
1178,
1587,
681,
15,
6156,
36877,
15,
9671,
17393,
4531,
2807,
187,
4387,
966,
23566,
10990,
9034,
7215,
4041,
15099,
8725,
27426,
15099,
37,
79,
37,
551,
535,
50274,
33,
9677,
187,
50274,
18641,
2991,
9978,
9,
31775,
36877,
6825,
2748,
10,
551,
187,
50270,
788,
9571,
5023,
1178,
29279,
26592,
22,
37,
2109,
19157,
9,
5672,
558,
535,
50270,
15099,
29,
19589,
31,
9860,
426,
2794,
15099,
1898,
30296,
3378,
3233,
9,
1235,
558,
535,
50270,
15099,
10990,
9034,
7215,
29,
19589,
31,
9860,
9034,
7215,
426,
747,
23566,
10990,
9034,
7215,
29,
8743,
15476,
558,
535,
50270,
44103,
5089,
2214,
9,
15476,
9034,
7215,
558,
187,
50274,
94,
187,
187,
94,
187
] | package com.vaadin.tests.components.grid;
import com.vaadin.annotations.Theme;
import com.vaadin.annotations.Widgetset;
import com.vaadin.server.VaadinRequest;
import com.vaadin.tests.util.Person;
import com.vaadin.ui.Grid;
import com.vaadin.ui.components.grid.GridRowDragger;
@Theme("valo")
@Widgetset("com.vaadin.DefaultWidgetSet")
public class GridRowDraggerOneGrid extends AbstractGridDnD {
@Override
protected void setup(VaadinRequest request) {
getUI().setMobileHtml5DndEnabled(true);
Grid<Person> grid = createGridAndFillWithData(50);
GridRowDragger<Person> gridDragger = new GridRowDragger<>(grid);
initializeTestFor(gridDragger);
}
}
|
214,445 | Github | [
3122,
187,
475,
187,
475,
8283,
9169,
305,
48095,
4477,
15,
187,
475,
187,
475,
21737,
762,
253,
14325,
4637,
13,
11099,
374,
15,
17,
313,
783,
346,
17736,
3287,
187,
475,
368,
778,
417,
897,
436,
1873,
3707,
275,
10276,
342,
253,
4637,
15,
187,
475,
1422,
778,
4044,
247,
3491,
273,
253,
4637,
387,
187,
475,
187,
475,
50273,
2413,
1358,
2700,
15,
8418,
15,
2061,
16,
17130,
16,
17821,
14,
19,
15,
17,
187,
475,
187,
475,
15999,
2424,
407,
7763,
1569,
390,
5821,
281,
275,
4028,
13,
3694,
187,
475,
5939,
762,
253,
4637,
310,
5939,
327,
271,
346,
1719,
4110,
3,
23440,
13,
187,
475,
15002,
15466,
4145,
22998,
3481,
9103,
19329,
13,
2057,
3890,
390,
10466,
15,
187,
475,
2594,
253,
4637,
323,
253,
2173,
3448,
13200,
15607,
285,
187,
475,
7364,
762,
253,
4637,
15,
187,
475,
187,
1738,
187,
187,
10708,
650,
81,
498,
462,
187,
187,
605,
25585,
895,
26428,
1057,
20893,
342,
247,
17744,
15,
187,
605,
187,
605,
8192,
3390,
1332,
327,
247,
5296,
20131,
1293,
667,
17744,
15,
187,
881,
25585,
895,
26428,
1577,
551,
187,
186,
15445,
2876,
187,
94,
187,
187,
605,
13160,
1171,
1057,
8692,
20893,
15,
187,
4997,
313,
446,
475,
27111,
26428,
10,
13160,
1171,
9,
8124,
2876,
13,
13059,
3346,
15049,
39224,
551,
187,
186,
338,
499,
3613,
5296,
551,
996,
186,
605,
34107,
5296,
13,
594,
253,
5216,
476,
1509,
275,
247,
5296,
28822,
15,
996,
186,
8124,
426,
499,
15,
15445,
559,
5981,
187,
186,
94,
187,
186,
26428,
15,
20067,
1171,
9,
8124,
13,
13059,
19552,
187,
94,
187,
187,
605,
42982,
71,
1057,
9734,
20893,
15,
187,
4997,
313,
446,
475,
27111,
26428,
10,
42982,
71,
9,
8124,
2876,
13,
13059,
3346,
15049,
39224,
551,
187,
186,
338,
499,
3613,
5296,
551,
996,
186,
8124,
426,
499,
15,
15445,
559,
5981,
187,
186,
94,
187,
186,
26428,
15,
24979,
71,
9,
8124,
13,
13059,
19552,
187,
94,
187,
187,
605,
11759,
71,
1057,
2228,
20893,
15,
187,
4997,
313,
446,
475,
27111,
26428,
10,
11759,
71,
9,
8124,
2876,
13,
13059,
3346,
15049,
39224,
551,
187,
186,
338,
499,
3613,
5296,
551,
996,
186,
8124,
426,
499,
15,
15445,
559,
5981,
187,
186,
94,
187,
186,
26428,
15,
26071,
9,
8124,
13,
13059,
19552,
187,
94,
187,
187,
605,
26073,
71,
1057,
8692,
20893,
387,
48656,
1268,
374,
15,
187,
4997,
313,
446,
475,
27111,
26428,
10,
26073,
71,
9,
8124,
2876,
13,
13059,
3346,
15049,
39224,
551,
187,
186,
338,
45708,
15,
55,
9,
19,
10,
551,
996,
186,
446,
15,
20067,
1171,
9,
8124,
13,
13059,
19552,
187,
186,
94,
187,
94,
187,
187,
605,
1457,
27111,
26428,
10513,
247,
17744,
28822,
342,
253,
1677,
17744,
15,
187,
4997,
1457,
27111,
26428,
9,
15445,
2876,
10,
475,
27111,
26428,
551,
187,
186,
2309,
708,
27111,
26428,
92,
15445,
27,
17744,
94,
187,
94,
187
] | /*
*
* Copyright 2020 gRPC authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
package grpclog
// PrefixLogger does logging with a prefix.
//
// Logging method on a nil logs without any prefix.
type PrefixLogger struct {
prefix string
}
// Infof does info logging.
func (pl *PrefixLogger) Infof(format string, args ...interface{}) {
if pl != nil {
// Handle nil, so the tests can pass in a nil logger.
format = pl.prefix + format
}
Logger.Infof(format, args...)
}
// Warningf does warning logging.
func (pl *PrefixLogger) Warningf(format string, args ...interface{}) {
if pl != nil {
format = pl.prefix + format
}
Logger.Warningf(format, args...)
}
// Errorf does error logging.
func (pl *PrefixLogger) Errorf(format string, args ...interface{}) {
if pl != nil {
format = pl.prefix + format
}
Logger.Errorf(format, args...)
}
// Debugf does info logging at verbose level 2.
func (pl *PrefixLogger) Debugf(format string, args ...interface{}) {
if Logger.V(2) {
pl.Infof(format, args...)
}
}
// NewPrefixLogger creates a prefix logger with the given prefix.
func NewPrefixLogger(prefix string) *PrefixLogger {
return &PrefixLogger{prefix: prefix}
}
|
214,446 | Github | [
29,
20476,
31,
187,
50272,
29,
6219,
48492,
568,
15476,
29042,
19,
3,
1511,
568,
15476,
29042,
19,
64,
18867,
64,
15476,
4251,
64,
6219,
3,
1416,
568,
18867,
64,
15476,
4251,
3,
3453,
568,
14396,
5647,
187,
50272,
29,
6219,
48492,
568,
15476,
29042,
19,
3,
1511,
568,
15476,
29042,
19,
64,
26520,
64,
11667,
18,
3,
1416,
568,
26520,
18,
3,
3453,
568,
14396,
5647,
187,
50272,
29,
6219,
48492,
568,
15476,
29042,
19,
3,
1511,
568,
15476,
29042,
19,
64,
26520,
64,
11667,
19,
3,
1416,
568,
26520,
19,
3,
3453,
568,
14396,
5647,
187,
187,
870,
20476,
31,
187
] | <launch>
<node pkg="gridmapping2" type="gridmapping2_shared_gridmap_node" name="shared_gridmap" output="screen"/>
<node pkg="gridmapping2" type="gridmapping2_proxy_example1" name="proxy1" output="screen"/>
<node pkg="gridmapping2" type="gridmapping2_proxy_example2" name="proxy2" output="screen"/>
</launch>
|
214,447 | Github | [
605,
8283,
313,
68,
10,
4332,
380,
26595,
1514,
26940,
15,
1876,
3570,
10827,
15,
187,
605,
7890,
273,
436,
2603,
2127,
310,
17886,
407,
247,
32327,
14,
4826,
7981,
326,
476,
320,
187,
605,
1119,
275,
253,
21826,
1873,
15,
187,
187,
4,
17331,
5642,
51,
14519,
64,
7941,
33069,
947,
64,
32364,
48,
6766,
2293,
64,
1311,
18071,
64,
36,
10449,
64,
32704,
64,
41,
64,
187,
4,
3182,
5642,
51,
14519,
64,
7941,
33069,
947,
64,
32364,
48,
6766,
2293,
64,
1311,
18071,
64,
36,
10449,
64,
32704,
64,
41,
64,
187,
4,
26579,
2378,
187,
187,
4,
3709,
654,
11000,
31,
187,
187,
4,
3709,
346,
4793,
16,
21705,
10706,
15,
73,
3,
187,
4,
3709,
346,
4793,
16,
35044,
64,
6160,
15,
73,
3,
187,
4,
3709,
346,
4793,
16,
72,
2566,
64,
11510,
64,
8906,
15,
73,
3,
187,
4,
3709,
346,
23079,
16,
28197,
16,
1920,
1171,
408,
16,
1920,
1171,
408,
64,
881,
15,
73,
3,
187,
4,
3709,
346,
23079,
16,
28197,
16,
1920,
1171,
408,
16,
630,
64,
3423,
15,
73,
3,
187,
187,
2437,
5271,
1171,
408,
6180,
28,
187,
2437,
5271,
1171,
408,
4316,
9582,
28,
187,
187,
2437,
18451,
18497,
6180,
1163,
1345,
7191,
6180,
551,
187,
1345,
27,
187,
50276,
4659,
7191,
6180,
11,
35592,
9,
7034,
1171,
408,
4316,
9582,
11,
25152,
558,
535,
6885,
27,
187,
50276,
605,
7191,
6180,
27,
187,
50276,
22259,
7301,
6550,
1419,
6180,
9,
6180,
2548,
6648,
11,
3711,
10,
1030,
42978,
8015,
15400,
28,
535,
3055,
27,
187,
50276,
39,
4873,
8112,
64,
14524,
64,
5626,
64,
41464,
1410,
9,
38482,
18497,
6180,
5089,
13,
35592,
10292,
1514,
38482,
18497,
558,
187,
50276,
39,
4873,
8112,
64,
14524,
64,
5626,
64,
41464,
1410,
9,
38482,
18497,
6180,
5089,
13,
35592,
16135,
38482,
18497,
558,
187,
50276,
39,
4873,
8112,
64,
14524,
64,
5626,
64,
41464,
1410,
9,
38482,
18497,
6180,
5089,
13,
35592,
5892,
28907,
18085,
558,
187,
50276,
39,
4873,
8112,
64,
14524,
64,
5626,
64,
41464,
1410,
9,
38482,
18497,
6180,
5089,
13,
35592,
5892,
28907,
18085,
19,
558,
187,
50276,
39,
4873,
8112,
64,
14524,
64,
5626,
64,
41464,
1410,
9,
38482,
18497,
6180,
5089,
13,
35592,
5892,
6180,
558,
187,
50276,
39,
4873,
8112,
64,
14524,
64,
5626,
64,
41464,
1410,
9,
38482,
18497,
6180,
5089,
13,
35592,
5892,
6180,
19,
19224,
262,
18085,
558,
187,
50276,
39,
4873,
8112,
64,
14524,
64,
5626,
64,
41464,
1410,
9,
38482,
18497,
6180,
5089,
13,
187,
50254,
50275,
21962,
38482,
18497,
27046,
2402,
3378,
2648,
16135,
2402,
558,
535,
50276,
38482,
18497,
6180,
1874,
535,
50276,
3474,
5271,
1171,
408,
6180,
11,
3120,
11375,
17540,
50276,
605,
38016,
15,
535,
50276,
605,
17763,
40650,
7223,
452,
4858,
4910,
323,
253,
3120,
11375,
434,
806,
285,
187,
50276,
605,
1390,
4454,
28,
323,
824,
7223,
3120,
11375,
64,
6556,
253,
806,
1416,
1673,
285,
187,
50276,
605,
359,
4657,
253,
1390,
1416,
1673,
1060,
15,
187,
50276,
605,
313,
1231,
812,
4657,
271,
12691,
9424,
6180,
1789,
1060,
13,
533,
359,
1053,
626,
513,
594,
187,
50276,
605,
984,
253,
2505,
6127,
323,
11038,
247,
3120,
11375,
1416,
403,
1027,
187,
50276,
605,
685,
323,
9826,
4454,
13,
285,
984,
3120,
11375,
4454,
1620,
452,
14505,
13,
187,
50276,
605,
4766,
4454,
390,
34078,
265,
2698,
187,
50276,
3474,
5271,
1171,
408,
6180,
11,
3120,
11375,
64,
6275,
17540,
535,
50276,
605,
24202,
9,
75,
21733,
7232,
2262,
35592,
253,
3609,
1453,
15,
187,
50276,
3474,
5271,
1171,
408,
6180,
11,
1511,
17540,
50276,
605,
38016,
15,
187,
50276,
3474,
5271,
1171,
408,
6180,
11,
1180,
17540,
50276,
605,
41622,
15,
535,
50276,
605,
380,
495,
14,
36435,
3120,
21999,
1180,
28,
359,
1053,
626,
4390,
7522,
436,
15,
187,
50276,
3474,
5271,
1171,
408,
6180,
11,
21999,
17540,
535,
50276,
605,
22660,
1040,
4347,
10153,
64,
2754,
64,
93,
390,
1097,
1040,
4347,
10153,
64,
7791,
64,
93,
285,
187,
50276,
605,
1040,
4347,
10153,
64,
2913,
64,
93,
403,
2424,
15,
187,
50276,
3474,
5271,
1171,
408,
6180,
11,
32298,
64,
7791,
17540,
187,
50276,
3474,
5271,
1171,
408,
6180,
11,
32298,
64,
2913,
17540,
187,
50276,
3474,
5271,
1171,
408,
6180,
11,
32298,
64,
2754,
17540,
535,
50276,
605,
11793,
604,
253,
807,
310,
5189,
281,
320,
247,
374,
14,
36435,
807,
28,
5010,
13,
359,
5467,
187,
50276,
605,
247,
577,
14,
36435,
807,
15,
187,
50276,
10975,
310,
64,
9389,
64,
36435,
64,
2913,
17540,
535,
50276,
15857,
5626,
4290,
64,
49617,
64,
5543,
64,
7810,
13003,
9,
38482,
18497,
6180,
558,
187,
4718,
187,
187,
4,
7287,
50276,
605,
5642,
51,
14519,
64,
7941,
33069,
947,
64,
32364,
48,
6766,
2293,
64,
1311,
18071,
64,
36,
10449,
64,
32704,
64,
41,
64,
187
] | // Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_AUTOFILL_CREDIT_CARD_FIELD_H_
#define CHROME_BROWSER_AUTOFILL_CREDIT_CARD_FIELD_H_
#pragma once
#include <vector>
#include "base/basictypes.h"
#include "base/compiler_specific.h"
#include "base/gtest_prod_util.h"
#include "chrome/browser/autofill/autofill_type.h"
#include "chrome/browser/autofill/form_field.h"
class AutofillField;
class AutofillScanner;
class CreditCardField : public FormField {
public:
static FormField* Parse(AutofillScanner* scanner);
protected:
// FormField:
virtual bool ClassifyField(FieldTypeMap* map) const OVERRIDE;
private:
FRIEND_TEST_ALL_PREFIXES(CreditCardFieldTest, ParseMiniumCreditCard);
FRIEND_TEST_ALL_PREFIXES(CreditCardFieldTest, ParseFullCreditCard);
FRIEND_TEST_ALL_PREFIXES(CreditCardFieldTest, ParseExpMonthYear);
FRIEND_TEST_ALL_PREFIXES(CreditCardFieldTest, ParseExpMonthYear2);
FRIEND_TEST_ALL_PREFIXES(CreditCardFieldTest, ParseExpField);
FRIEND_TEST_ALL_PREFIXES(CreditCardFieldTest, ParseExpField2DigitYear);
FRIEND_TEST_ALL_PREFIXES(CreditCardFieldTest,
ParseCreditCardHolderNameWithCCFullName);
CreditCardField();
const AutofillField* cardholder_; // Optional.
// Occasionally pages have separate fields for the cardholder's first and
// last names; for such pages cardholder_ holds the first name field and
// we store the last name field here.
// (We could store an embedded NameField object here, but we don't do so
// because the text patterns for matching a cardholder name are different
// than for ordinary names, and because cardholder names never have titles,
// middle names or suffixes.)
const AutofillField* cardholder_last_;
// TODO(jhawkins): Parse the select control.
const AutofillField* type_; // Optional.
const AutofillField* number_; // Required.
// The 3-digit card verification number; we don't currently fill this.
const AutofillField* verification_;
// Either |expiration_date_| or both |expiration_month_| and
// |expiration_year_| are required.
const AutofillField* expiration_month_;
const AutofillField* expiration_year_;
const AutofillField* expiration_date_;
// True if the year is detected to be a 2-digit year; otherwise, we assume
// a 4-digit year.
bool is_two_digit_year_;
DISALLOW_COPY_AND_ASSIGN(CreditCardField);
};
#endif // CHROME_BROWSER_AUTOFILL_CREDIT_CARD_FIELD_H_
|
214,448 | Github | [
5397,
11324,
19,
64,
32272,
7669,
64,
18169,
37,
8528,
13587,
187,
186,
10975,
346,
4658,
69,
19122,
1088,
3,
187,
186,
7135,
11324,
19,
64,
32272,
7669,
64,
18169,
37,
8528,
30928,
187,
186,
13070,
996,
50276,
4658,
69,
19122,
1088,
3400,
247,
2969,
12153,
323,
4361,
996,
50276,
37,
8528,
14,
17213,
3888,
15,
6886,
50276,
3614,
1358,
2700,
15,
87,
504,
24361,
15,
2061,
16,
16714,
398,
16,
4658,
69,
19122,
8002,
15,
2974,
187
] | config BR2_PACKAGE_LIBDVDREAD
bool "libdvdread"
select BR2_PACKAGE_LIBDVDCSS
help
libdvdread provides a simple foundation for reading
DVD-Video images.
https://www.videolan.org/developers/libdvdnav.html
|
214,449 | Github | [
14277,
7229,
2715,
568,
18,
15,
17,
3,
9706,
568,
17880,
14,
25,
3,
40468,
568,
9820,
3,
23983,
187,
29,
53,
20,
3233,
34359,
31,
187,
50274,
29,
13518,
31,
187,
50270,
29,
8700,
46575,
31,
18,
870,
8700,
46575,
31,
187,
50274,
870,
13518,
31,
187,
50274,
29,
6689,
1507,
31,
187,
50270,
29,
84,
18800,
31,
187,
50266,
29,
34101,
31,
187,
50262,
29,
53,
4339,
13015,
31,
187,
50258,
29,
20472,
13408,
31,
2293,
45,
27,
9465,
27,
24884,
64,
10708,
16,
22804,
16,
22279,
16,
26170,
16,
8116,
423,
15,
30291,
71,
27,
17494,
870,
20472,
13408,
31,
187,
50262,
870,
53,
4339,
13015,
31,
187,
50262,
29,
881,
31,
3728,
870,
881,
31,
187,
50262,
29,
293,
31,
187,
50258,
29,
6986,
64,
10531,
31,
187,
50254,
29,
53,
4339,
13015,
31,
187,
50254,
50274,
29,
1968,
31,
2293,
45,
27,
9465,
27,
24884,
64,
10708,
16,
22804,
16,
22279,
16,
26170,
16,
8116,
423,
15,
30291,
71,
27,
39844,
279,
15,
6986,
64,
10531,
187,
50254,
50274,
870,
1968,
31,
187,
50254,
50274,
29,
5397,
31,
187,
50254,
50270,
29,
881,
31,
7135,
870,
881,
31,
187,
50254,
50270,
29,
12574,
2548,
31,
7135,
21822,
870,
12574,
2548,
31,
187,
50254,
50270,
29,
37380,
64,
2420,
31,
10136,
64,
13449,
10981,
377,
1627,
64,
39844,
279,
64,
4835,
870,
37380,
64,
2420,
31,
187,
50254,
50270,
29,
37380,
64,
2420,
64,
2811,
31,
5543,
28951,
64,
13449,
10981,
377,
1627,
64,
39844,
279,
64,
4835,
15,
1440,
64,
6071,
426,
209,
4118,
30308,
64,
18244,
4118,
870,
37380,
64,
2420,
64,
2811,
31,
187,
50254,
50270,
29,
15565,
1511,
568,
3728,
1138,
187,
50254,
50266,
29,
6370,
6060,
3605,
568,
17,
3,
1511,
568,
3728,
1138,
187,
50254,
50262,
29,
6370,
6060,
3605,
568,
17,
1138,
11336,
870,
6370,
6060,
31,
187,
50254,
50262,
29,
6370,
6060,
3605,
568,
18,
1138,
17,
870,
6370,
6060,
31,
187,
50254,
50266,
870,
6370,
6060,
31,
187,
50254,
50270,
870,
15565,
31,
187,
50254,
50274,
870,
5397,
31,
187,
50254,
870,
53,
4339,
13015,
31,
187,
50258,
870,
6986,
64,
10531,
31,
187,
50262,
870,
293,
31,
187,
50266,
870,
34101,
31,
187,
50270,
870,
84,
18800,
31,
187,
50274,
870,
6689,
1507,
31,
187,
870,
53,
20,
3233,
34359,
31,
187
] | <?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<T3DataStructure>
<meta>
<langDisable>1</langDisable>
</meta>
<sheets>
<sDEF>
<ROOT>
<TCEforms>
<sheetTitle>LLL:EXT:bootstrap_package/Resources/Private/Language/Backend.xlf:settings</sheetTitle>
</TCEforms>
<type>array</type>
<el>
<default_element>
<TCEforms>
<label>LLL:EXT:bootstrap_package/Resources/Private/Language/Backend.xlf:accordion.default_element
</label>
<config>
<type>select</type>
<renderType>selectSingle</renderType>
<foreign_table>tx_bootstrappackage_accordion_item</foreign_table>
<foreign_table_where>AND tx_bootstrappackage_accordion_item.tt_content = ###THIS_UID###</foreign_table_where>
<items type="array">
<numIndex index="0" type="array">
<numIndex index="0">None</numIndex>
<numIndex index="1">0</numIndex>
</numIndex>
</items>
</config>
</TCEforms>
</default_element>
</el>
</ROOT>
</sDEF>
</sheets>
</T3DataStructure>
|
214,450 | Github | [
605,
35588,
57,
14,
17736,
14,
18483,
27,
32506,
14,
19,
15,
17,
14,
7483,
187,
605,
187,
605,
37523,
22,
35488,
15,
68,
50276,
283,
50276,
4708,
22,
35488,
6589,
4576,
1893,
36,
9797,
4445,
6254,
187,
605,
187,
605,
8283,
4765,
10417,
34968,
13740,
3557,
8543,
9537,
15,
187,
605,
10360,
27,
44523,
418,
22728,
654,
26067,
19702,
80,
33,
6549,
34968,
15,
681,
31,
187,
605,
187,
187,
4,
3709,
654,
13217,
16,
8640,
15,
73,
31,
187,
4,
3709,
654,
13217,
16,
8640,
3575,
15,
73,
31,
187,
4,
3709,
654,
13217,
16,
4478,
15,
73,
31,
187,
4,
3709,
654,
13217,
16,
29000,
15,
73,
31,
187,
4,
3709,
654,
13217,
16,
2617,
15,
73,
31,
187,
4,
3709,
654,
13217,
16,
2617,
64,
21005,
15,
73,
31,
187,
4,
3709,
654,
13217,
16,
19161,
64,
10933,
15,
73,
31,
187,
4,
3709,
654,
13217,
16,
37640,
16,
37640,
15,
73,
31,
187,
4,
3709,
654,
13217,
16,
317,
2059,
15,
73,
31,
187,
4,
3709,
654,
13217,
16,
32956,
15,
73,
31,
187,
4,
3709,
654,
13217,
16,
1171,
64,
32956,
15,
73,
31,
187,
4,
3709,
654,
13217,
16,
22687,
15,
73,
31,
187,
4,
3709,
654,
27962,
16,
6443,
15,
73,
31,
187,
4,
3709,
654,
27962,
16,
35521,
15,
73,
31,
187,
4,
3709,
654,
27962,
16,
35521,
64,
12928,
15,
73,
31,
187,
4,
3709,
654,
27962,
16,
18043,
15,
73,
31,
187,
4,
3709,
654,
27962,
16,
33353,
15,
73,
31,
187,
4,
3709,
654,
27962,
16,
33353,
14,
69,
522,
78,
15,
73,
31,
187,
4,
3709,
654,
27962,
16,
4478,
1208,
15,
73,
31,
187,
4,
3709,
654,
27962,
16,
17945,
87,
15,
73,
31,
187,
4,
3709,
654,
27962,
16,
1378,
22,
35488,
15,
73,
31,
187,
187,
4,
3709,
346,
8435,
23,
18390,
15,
73,
3,
187,
4,
3709,
346,
1378,
22,
35488,
15,
73,
3,
187,
187,
3474,
1018,
475,
1378,
22,
35488,
64,
4032,
314,
64,
7886,
60,
4708,
22,
35488,
64,
20872,
64,
6971,
49,
3859,
9785,
62,
426,
551,
187,
186,
3,
5851,
11927,
995,
187,
186,
3,
34611,
8528,
37,
995,
187,
186,
3,
36639,
1194,
995,
187,
4718,
187,
30216,
64,
47788,
64,
44335,
9,
1378,
22,
35488,
64,
4032,
314,
64,
7886,
558,
187,
187,
4659,
1030,
1577,
810,
64,
21934,
12097,
64,
3550,
5456,
426,
551,
187,
186,
92,
4708,
22,
35488,
64,
18582,
64,
40921,
64,
52,
18041,
64,
20562,
64,
746,
13,
470,
89,
9138,
2023,
187,
186,
92,
4708,
22,
35488,
64,
48351,
64,
38348,
64,
42503,
64,
36755,
18,
13,
470,
14346,
9992,
2023,
187,
186,
92,
4708,
22,
35488,
64,
42,
19,
36,
64,
20562,
13,
470,
89,
933,
71,
2023,
187,
186,
92,
4708,
22,
35488,
64,
42690,
19,
64,
19118,
21686,
13,
470,
89,
25,
22313,
2023,
187,
4718,
187,
187,
4353,
37523,
22,
35488,
64,
18788,
64,
20559,
64,
3550,
9,
2855,
37523,
22,
35488,
64,
13552,
475,
1378,
22,
35488,
13,
1577,
2813,
475,
3620,
10,
187,
92,
187,
186,
565,
851,
28,
535,
186,
1221,
426,
810,
4251,
64,
23939,
64,
1747,
64,
6343,
9,
1378,
22,
35488,
1168,
1747,
4251,
13,
12097,
64,
3550,
13,
2664,
50273,
37983,
64,
12771,
9,
20559,
64,
3550,
4027,
187,
186,
338,
313,
1221,
10,
996,
186,
3620,
64,
30289,
9,
3620,
13,
346,
26383,
281,
4647,
810,
4251,
12097,
27,
2462,
69,
61,
79,
995,
851,
558,
187,
94,
187,
30216,
64,
47788,
64,
44335,
9,
1378,
22,
35488,
64,
18788,
64,
20559,
64,
3550,
558,
187,
187,
3474,
1577,
810,
64,
6986,
37523,
22,
35488,
64,
1747,
60,
4708,
22,
35488,
64,
11991,
64,
20872,
62,
426,
551,
187,
186,
92,
17,
89,
12603,
13,
470,
89,
40058,
2023,
187,
186,
92,
17,
89,
14602,
13,
470,
89,
33038,
2023,
187,
186,
92,
17,
89,
13930,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
19035,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
19765,
13,
470,
89,
10695,
71,
2023,
187,
186,
92,
17,
89,
933,
67,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
17553,
13,
470,
89,
1449,
1449,
2023,
187,
186,
92,
17,
89,
23643,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
26313,
13,
470,
89,
1047,
2125,
2023,
187,
186,
92,
17,
89,
28059,
13,
470,
89,
9138,
2023,
187,
186,
92,
17,
89,
28835,
13,
470,
14346,
361,
66,
2023,
187,
186,
92,
17,
89,
22140,
13,
470,
89,
17884,
21,
2023,
187,
186,
92,
17,
89,
29407,
13,
470,
89,
17884,
21,
2023,
187,
186,
92,
17,
89,
33416,
13,
470,
89,
2320,
2320,
2023,
187,
186,
92,
17,
89,
2874,
68,
13,
470,
89,
19,
71,
19,
71,
2023,
187,
186,
92,
17,
89,
2874,
71,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
28484,
13,
470,
89,
22,
31203,
2023,
187,
186,
92,
17,
89,
34063,
13,
470,
89,
45701,
2023,
187,
186,
92,
17,
89,
33713,
13,
470,
89,
933,
67,
2023,
187,
186,
92,
17,
89,
36310,
13,
470,
10587,
17,
68,
21,
2023,
187,
186,
92,
17,
89,
40085,
13,
470,
89,
40058,
2023,
187,
186,
92,
17,
89,
4699,
66,
13,
470,
14346,
17,
66,
17,
2023,
187,
186,
92,
17,
89,
4699,
67,
13,
470,
89,
2941,
361,
2023,
187,
186,
92,
17,
89,
29728,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
4838,
68,
13,
470,
89,
44135,
2023,
187,
186,
92,
17,
89,
45341,
13,
470,
89,
17,
68,
17,
68,
2023,
187,
186,
92,
17,
89,
361,
2537,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
361,
3832,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
361,
3763,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
361,
3571,
13,
470,
89,
4838,
71,
2023,
187,
186,
92,
17,
89,
361,
1540,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
41545,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
361,
2526,
13,
470,
89,
29728,
2023,
187,
186,
92,
17,
89,
361,
2251,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
7174,
67,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
7174,
68,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
7174,
69,
13,
470,
89,
1423,
361,
2023,
187,
186,
92,
17,
89,
7174,
70,
13,
470,
89,
17,
66,
740,
2023,
187,
186,
92,
17,
89,
42834,
13,
470,
89,
33038,
2023,
187,
186,
92,
17,
89,
361,
3677,
13,
470,
89,
33038,
2023,
187,
186,
92,
17,
89,
361,
3655,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
361,
3566,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
46010,
13,
470,
89,
12603,
2023,
187,
186,
92,
17,
89,
361,
3121,
13,
470,
89,
5831,
2023,
187,
186,
92,
17,
89,
361,
2787,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
7931,
66,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
7931,
67,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
7931,
68,
13,
470,
89,
28949,
2023,
187,
186,
92,
17,
89,
7931,
70,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
44135,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
361,
3593,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
361,
3507,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
361,
3245,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
361,
2759,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
361,
2227,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
361,
2691,
13,
470,
89,
13930,
2023,
187,
186,
92,
17,
89,
361,
2597,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
361,
2055,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
8897,
68,
13,
470,
89,
14602,
2023,
187,
186,
92,
17,
89,
8897,
69,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
8897,
70,
13,
470,
89,
35173,
2023,
187,
186,
92,
17,
89,
8897,
71,
13,
470,
89,
9138,
2023,
187,
186,
92,
17,
89,
361,
4739,
13,
470,
89,
17,
68,
1731,
2023,
187,
186,
92,
17,
89,
361,
4529,
13,
470,
89,
361,
3655,
2023,
187,
186,
92,
17,
89,
361,
4590,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
361,
3953,
13,
470,
89,
44135,
2023,
187,
186,
92,
17,
89,
361,
4185,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
8972,
66,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
8972,
67,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
8972,
68,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
8972,
69,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
8972,
70,
13,
470,
89,
2313,
68,
2023,
187,
186,
92,
17,
89,
8972,
71,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
361,
66,
17,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
361,
66,
20,
13,
470,
89,
12603,
2023,
187,
186,
92,
17,
89,
361,
66,
21,
13,
470,
89,
5831,
2023,
187,
186,
92,
17,
89,
361,
3348,
13,
470,
89,
938,
1449,
2023,
187,
186,
92,
17,
89,
361,
2320,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
361,
67,
23,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
361,
67,
24,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
361,
67,
25,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
361,
67,
26,
13,
470,
89,
12603,
2023,
187,
186,
92,
17,
89,
361,
1257,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
361,
68,
17,
13,
470,
89,
520,
1549,
2023,
187,
186,
92,
17,
89,
361,
68,
18,
13,
470,
89,
3507,
66,
17,
2023,
187,
186,
92,
17,
89,
361,
68,
19,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
361,
69,
17,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
361,
69,
18,
13,
470,
89,
17537,
21,
2023,
187,
186,
92,
17,
89,
361,
69,
19,
13,
470,
89,
1610,
361,
2023,
187,
186,
92,
17,
89,
361,
69,
20,
13,
470,
89,
1423,
361,
2023,
187,
186,
92,
17,
89,
361,
69,
21,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
361,
69,
26,
13,
470,
89,
24133,
2023,
187,
186,
92,
17,
89,
361,
1473,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
361,
5470,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
361,
12352,
13,
470,
89,
361,
68,
17,
2023,
187,
186,
92,
17,
89,
361,
1678,
13,
470,
89,
1423,
938,
2023,
187,
186,
92,
17,
89,
361,
615,
13,
470,
89,
20,
17015,
2023,
187,
186,
92,
17,
89,
361,
4989,
13,
470,
89,
20,
17015,
2023,
187,
186,
92,
17,
89,
361,
70,
17,
13,
470,
89,
20,
17015,
2023,
187,
186,
92,
17,
89,
361,
70,
19,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
361,
70,
20,
13,
470,
89,
25851,
2023,
187,
186,
92,
17,
89,
361,
70,
21,
13,
470,
89,
17,
5781,
17,
2023,
187,
186,
92,
17,
89,
361,
70,
22,
13,
470,
89,
20,
17015,
2023,
187,
186,
92,
17,
89,
361,
70,
23,
13,
470,
89,
20,
17015,
2023,
187,
186,
92,
17,
89,
361,
70,
24,
13,
470,
89,
20,
17015,
2023,
187,
186,
92,
17,
89,
361,
70,
25,
13,
470,
89,
20,
17015,
2023,
187,
186,
92,
17,
89,
361,
14576,
13,
470,
17296,
18911,
2023,
187,
186,
92,
17,
89,
361,
2275,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
361,
71,
17,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
361,
71,
18,
13,
470,
89,
361,
69,
17,
2023,
187,
186,
92,
17,
89,
361,
71,
19,
13,
470,
89,
361,
69,
17,
2023,
187,
186,
92,
17,
89,
361,
71,
23,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
361,
6855,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
361,
15662,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
361,
12964,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
361,
9194,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
361,
453,
13,
470,
89,
740,
886,
2023,
187,
186,
92,
17,
89,
361,
567,
13,
470,
89,
2082,
1229,
2023,
187,
186,
92,
17,
89,
28949,
13,
470,
14346,
17,
66,
17,
2023,
187,
186,
92,
17,
89,
9104,
67,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
9104,
68,
13,
470,
89,
3348,
361,
2023,
187,
186,
92,
17,
89,
9104,
69,
13,
470,
89,
39639,
17,
2023,
187,
186,
92,
17,
89,
9104,
70,
13,
470,
89,
25,
5781,
19,
2023,
187,
186,
92,
17,
89,
9104,
71,
13,
470,
89,
2640,
66,
19,
2023,
187,
186,
92,
17,
89,
520,
740,
13,
470,
10587,
933,
2023,
187,
186,
92,
17,
89,
520,
883,
13,
470,
89,
2125,
66,
19,
2023,
187,
186,
92,
17,
89,
520,
805,
13,
470,
89,
43518,
2023,
187,
186,
92,
17,
89,
520,
1012,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
520,
1166,
13,
470,
89,
28949,
2023,
187,
186,
92,
17,
89,
49464,
13,
470,
89,
2125,
740,
2023,
187,
186,
92,
17,
89,
520,
1237,
13,
470,
89,
1549,
1731,
2023,
187,
186,
92,
17,
89,
520,
1812,
13,
470,
89,
45240,
2023,
187,
186,
92,
17,
89,
520,
1839,
13,
470,
89,
1787,
361,
2023,
187,
186,
92,
17,
89,
13144,
66,
13,
470,
89,
6914,
2023,
187,
186,
92,
17,
89,
13144,
67,
13,
470,
89,
6914,
2023,
187,
186,
92,
17,
89,
13144,
68,
13,
470,
89,
9204,
2023,
187,
186,
92,
17,
89,
13144,
71,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
520,
2945,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
520,
1857,
13,
470,
89,
12603,
2023,
187,
186,
92,
17,
89,
520,
2950,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
520,
2504,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
520,
2385,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
520,
2537,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
520,
1235,
13,
470,
89,
2787,
66,
18,
2023,
187,
186,
92,
17,
89,
520,
3208,
13,
470,
89,
23342,
2023,
187,
186,
92,
17,
89,
520,
1549,
13,
470,
89,
21,
886,
17,
2023,
187,
186,
92,
17,
89,
520,
3832,
13,
470,
89,
44135,
2023,
187,
186,
92,
17,
89,
520,
3763,
13,
470,
89,
43943,
2023,
187,
186,
92,
17,
89,
520,
3571,
13,
470,
89,
2904,
361,
2023,
187,
186,
92,
17,
89,
520,
1540,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
520,
2082,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
520,
2526,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
520,
2251,
13,
470,
89,
933,
71,
2023,
187,
186,
92,
17,
89,
520,
2358,
13,
470,
89,
933,
71,
2023,
187,
186,
92,
17,
89,
520,
2090,
13,
470,
89,
39060,
2023,
187,
186,
92,
17,
89,
520,
2270,
13,
470,
89,
37012,
69,
2023,
187,
186,
92,
17,
89,
520,
3953,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
520,
2222,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
520,
4148,
13,
470,
89,
28484,
2023,
187,
186,
92,
17,
89,
520,
4185,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
520,
1525,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
520,
2320,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
520,
67,
17,
13,
470,
89,
2125,
361,
2023,
187,
186,
92,
17,
89,
520,
67,
18,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
520,
67,
19,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
520,
67,
20,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
520,
67,
21,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
520,
67,
22,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
520,
67,
23,
13,
470,
89,
520,
68,
20,
2023,
187,
186,
92,
17,
89,
520,
67,
24,
13,
470,
89,
2640,
66,
17,
2023,
187,
186,
92,
17,
89,
520,
67,
25,
13,
470,
89,
2941,
70,
26,
2023,
187,
186,
92,
17,
89,
520,
67,
26,
13,
470,
89,
1012,
2511,
2023,
187,
186,
92,
17,
89,
520,
5830,
13,
470,
10587,
27018,
2023,
187,
186,
92,
17,
89,
520,
4482,
13,
470,
89,
24133,
2023,
187,
186,
92,
17,
89,
520,
12847,
13,
470,
89,
31272,
2023,
187,
186,
92,
17,
89,
520,
14836,
13,
470,
89,
4699,
66,
2023,
187,
186,
92,
17,
89,
520,
1257,
13,
470,
89,
5525,
68,
2023,
187,
186,
92,
17,
89,
520,
3342,
13,
470,
89,
361,
4148,
2023,
187,
186,
92,
17,
89,
520,
68,
17,
13,
470,
89,
38693,
69,
2023,
187,
186,
92,
17,
89,
520,
68,
19,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
520,
68,
20,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
520,
68,
21,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
520,
68,
22,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
520,
68,
23,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
520,
68,
24,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
520,
68,
25,
13,
470,
89,
1449,
2320,
2023,
187,
186,
92,
17,
89,
520,
68,
26,
13,
470,
89,
17,
30967,
2023,
187,
186,
92,
17,
89,
520,
6357,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
520,
11316,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
520,
550,
13,
470,
89,
22,
31203,
2023,
187,
186,
92,
17,
89,
520,
2428,
13,
470,
89,
22,
31203,
2023,
187,
186,
92,
17,
89,
520,
336,
13,
470,
89,
22,
31203,
2023,
187,
186,
92,
17,
89,
520,
7836,
13,
470,
89,
22,
31203,
2023,
187,
186,
92,
17,
89,
520,
69,
17,
13,
470,
89,
22,
31203,
2023,
187,
186,
92,
17,
89,
520,
69,
18,
13,
470,
89,
22,
31203,
2023,
187,
186,
92,
17,
89,
520,
69,
19,
13,
470,
89,
22,
31203,
2023,
187,
186,
92,
17,
89,
520,
69,
20,
13,
470,
89,
22,
31203,
2023,
187,
186,
92,
17,
89,
520,
69,
21,
13,
470,
89,
22,
31203,
2023,
187,
186,
92,
17,
89,
520,
69,
22,
13,
470,
89,
22,
31203,
2023,
187,
186,
92,
17,
89,
520,
69,
23,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
520,
69,
24,
13,
470,
89,
19765,
2023,
187,
186,
92,
17,
89,
520,
69,
25,
13,
470,
89,
40085,
2023,
187,
186,
92,
17,
89,
520,
69,
26,
13,
470,
89,
26409,
2023,
187,
186,
92,
17,
89,
520,
1473,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
520,
5470,
13,
470,
89,
15017,
2023,
187,
186,
92,
17,
89,
520,
12352,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
520,
615,
13,
470,
89,
24,
68,
361,
2023,
187,
186,
92,
17,
89,
520,
4989,
13,
470,
89,
2941,
938,
2023,
187,
186,
92,
17,
89,
520,
70,
17,
13,
470,
89,
3071,
66,
18,
2023,
187,
186,
92,
17,
89,
520,
70,
18,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
520,
70,
19,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
520,
70,
20,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
520,
70,
21,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
520,
70,
23,
13,
470,
89,
5831,
2023,
187,
186,
92,
17,
89,
520,
70,
24,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
520,
70,
25,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
520,
14576,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
520,
2275,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
520,
886,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
520,
264,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
520,
1796,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
520,
832,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
520,
71,
17,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
520,
71,
18,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
520,
71,
19,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
520,
71,
20,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
520,
71,
21,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
2640,
740,
13,
470,
89,
23,
23185,
2023,
187,
186,
92,
17,
89,
2640,
883,
13,
470,
14346,
5523,
2023,
187,
186,
92,
17,
89,
2640,
805,
13,
470,
89,
25,
1348,
68,
2023,
187,
186,
92,
17,
89,
2640,
1012,
13,
470,
14506,
24,
567,
2023,
187,
186,
92,
17,
89,
2640,
1047,
13,
470,
14506,
1348,
68,
2023,
187,
186,
92,
17,
89,
2640,
1010,
13,
470,
89,
520,
2640,
2023,
187,
186,
92,
17,
89,
2640,
1036,
13,
470,
89,
361,
66,
20,
2023,
187,
186,
92,
17,
89,
2640,
1166,
13,
470,
89,
361,
2385,
2023,
187,
186,
92,
17,
89,
2640,
1093,
13,
470,
14346,
19,
68,
17,
2023,
187,
186,
92,
17,
89,
2640,
746,
13,
470,
89,
2125,
361,
2023,
187,
186,
92,
17,
89,
21940,
66,
13,
470,
89,
361,
68,
25,
2023,
187,
186,
92,
17,
89,
21940,
67,
13,
470,
89,
361,
68,
17,
2023,
187,
186,
92,
17,
89,
21940,
68,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
17,
9519,
13,
470,
89,
1857,
361,
2023,
187,
186,
92,
17,
89,
14521,
18,
13,
470,
89,
1449,
67,
20,
2023,
187,
186,
92,
17,
89,
14521,
19,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
14521,
20,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
14521,
21,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
17,
10637,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
17,
9726,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
14521,
24,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
14521,
25,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
14521,
26,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
14521,
66,
13,
470,
89,
13930,
2023,
187,
186,
92,
17,
89,
16604,
17,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
2640,
567,
13,
470,
89,
520,
740,
2023,
187,
186,
92,
17,
89,
2941,
361,
13,
470,
89,
2874,
71,
2023,
187,
186,
92,
17,
89,
2941,
520,
13,
470,
89,
19634,
68,
2023,
187,
186,
92,
17,
89,
15960,
19,
13,
470,
89,
22,
71,
1797,
2023,
187,
186,
92,
17,
89,
15960,
20,
13,
470,
89,
25851,
2023,
187,
186,
92,
17,
89,
15960,
21,
13,
470,
89,
25851,
2023,
187,
186,
92,
17,
89,
15960,
22,
13,
470,
89,
3071,
69,
22,
2023,
187,
186,
92,
17,
89,
15960,
23,
13,
470,
89,
33038,
2023,
187,
186,
92,
17,
89,
15960,
24,
13,
470,
89,
2922,
361,
2023,
187,
186,
92,
17,
89,
2941,
740,
13,
470,
89,
1857,
1549,
2023,
187,
186,
92,
17,
89,
2941,
883,
13,
470,
14346,
21,
66,
25,
2023,
187,
186,
92,
17,
89,
2941,
805,
13,
470,
89,
3566,
1093,
2023,
187,
186,
92,
17,
89,
2941,
1012,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
2941,
1047,
13,
470,
89,
19035,
2023,
187,
186,
92,
17,
89,
2941,
1010,
13,
470,
49477,
2023,
187,
186,
92,
17,
89,
2941,
1036,
13,
470,
10587,
8320,
2023,
187,
186,
92,
17,
89,
2941,
1166,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
2941,
68,
17,
13,
470,
89,
24,
70,
361,
2023,
187,
186,
92,
17,
89,
2941,
68,
18,
13,
470,
89,
33038,
2023,
187,
186,
92,
17,
89,
2941,
68,
19,
13,
470,
89,
33038,
2023,
187,
186,
92,
17,
89,
2941,
68,
20,
13,
470,
89,
33038,
2023,
187,
186,
92,
17,
89,
2941,
68,
21,
13,
470,
89,
33038,
2023,
187,
186,
92,
17,
89,
2941,
68,
22,
13,
470,
89,
33038,
2023,
187,
186,
92,
17,
89,
2941,
68,
23,
13,
470,
89,
33038,
2023,
187,
186,
92,
17,
89,
2941,
68,
24,
13,
470,
89,
33038,
2023,
187,
186,
92,
17,
89,
2941,
68,
25,
13,
470,
89,
33038,
2023,
187,
186,
92,
17,
89,
2941,
68,
26,
13,
470,
89,
33038,
2023,
187,
186,
92,
17,
89,
2941,
6357,
13,
470,
89,
33038,
2023,
187,
186,
92,
17,
89,
2941,
11316,
13,
470,
89,
33038,
2023,
187,
186,
92,
17,
89,
2941,
550,
13,
470,
89,
33038,
2023,
187,
186,
92,
17,
89,
2941,
69,
17,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
2941,
69,
18,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
2941,
69,
19,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
2941,
69,
20,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
2941,
69,
21,
13,
470,
89,
6914,
2023,
187,
186,
92,
17,
89,
2941,
69,
22,
13,
470,
89,
6914,
2023,
187,
186,
92,
17,
89,
2941,
69,
23,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
2941,
69,
24,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
2941,
69,
25,
13,
470,
89,
6914,
2023,
187,
186,
92,
17,
89,
2941,
69,
26,
13,
470,
89,
6914,
2023,
187,
186,
92,
17,
89,
2941,
1473,
13,
470,
89,
6914,
2023,
187,
186,
92,
17,
89,
2941,
5470,
13,
470,
89,
6914,
2023,
187,
186,
92,
17,
89,
2941,
12352,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
2941,
1678,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
2941,
615,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
2941,
4989,
13,
470,
89,
6914,
2023,
187,
186,
92,
17,
89,
2941,
70,
17,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
2941,
70,
18,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
2941,
70,
19,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
2941,
70,
20,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
2941,
70,
21,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
2941,
70,
22,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
2941,
70,
23,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
2941,
70,
24,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
2941,
70,
25,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
2941,
70,
26,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
2941,
14576,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
2941,
2275,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
2941,
886,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
2941,
264,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
2941,
1796,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
2941,
832,
13,
470,
89,
1418,
2023,
187,
186,
92,
17,
89,
2941,
71,
17,
13,
470,
89,
2904,
361,
2023,
187,
186,
92,
17,
89,
2941,
71,
18,
13,
470,
89,
2904,
361,
2023,
187,
186,
92,
17,
89,
2941,
71,
19,
13,
470,
89,
2904,
361,
2023,
187,
186,
92,
17,
89,
2941,
71,
20,
13,
470,
89,
2904,
361,
2023,
187,
4718,
187,
30216,
64,
47788,
64,
44335,
9,
1378,
22,
35488,
64,
1747,
558,
187,
187,
10975,
37523,
22,
35488,
64,
34388,
64,
15905,
9,
2855,
2813,
475,
3620,
13,
10698,
540,
810,
10,
187,
92,
187,
186,
16065,
313,
1747,
10,
551,
187,
186,
5045,
9233,
22,
35488,
64,
47885,
27,
187,
186,
5045,
9233,
22,
35488,
64,
14922,
43,
64,
20562,
64,
19,
27,
187,
186,
5045,
9233,
22,
35488,
64,
7999,
64,
1267,
64,
18,
27,
187,
186,
5045,
9233,
22,
35488,
64,
21,
11584,
47,
64,
3077,
64,
24840,
64,
18,
27,
187,
186,
5045,
9233,
22,
35488,
64,
34,
30612,
18,
64,
20562,
27,
187,
186,
5045,
9233,
22,
35488,
64,
18582,
64,
39350,
5472,
64,
20562,
64,
18,
27,
187,
186,
5045,
9233,
22,
35488,
64,
28663,
64,
1838,
27,
187,
186,
5045,
9233,
22,
35488,
64,
42,
19,
36,
64,
18129,
27,
187,
186,
5045,
9233,
22,
35488,
64,
18582,
64,
39350,
5472,
64,
20562,
64,
740,
27,
187,
186,
5045,
9233,
22,
35488,
64,
16462,
17423,
64,
20562,
64,
19,
27,
187,
186,
5045,
9233,
22,
35488,
64,
30612,
64,
32887,
64,
12548,
64,
55,
3125,
45,
27,
187,
186,
5045,
9233,
22,
35488,
64,
18582,
64,
40921,
64,
52,
18041,
64,
20562,
64,
746,
27,
187,
186,
5045,
9233,
22,
35488,
64,
3077,
64,
24840,
64,
18,
27,
187,
186,
5045,
9233,
22,
35488,
64,
52,
1277,
64,
3077,
64,
24840,
64,
19,
27,
187,
186,
5045,
9233,
22,
35488,
64,
52,
1277,
64,
3077,
64,
24840,
64,
21,
27,
187,
186,
5045,
9233,
22,
35488,
64,
52,
1277,
64,
3077,
64,
24840,
64,
740,
27,
187,
186,
5045,
9233,
22,
35488,
64,
52,
1277,
64,
3077,
64,
24840,
64,
883,
27,
187,
186,
5045,
9233,
22,
35488,
64,
16462,
17423,
64,
20562,
64,
23,
1051,
4708,
22,
35488,
64,
16462,
17423,
64,
20562,
64,
883,
27,
187,
186,
5045,
9233,
22,
35488,
64,
18582,
64,
39350,
5472,
64,
37789,
64,
18,
1051,
4708,
22,
35488,
64,
18582,
64,
39350,
5472,
64,
37789,
64,
883,
27,
996,
186,
2309,
2032,
28,
187,
186,
6986,
27,
996,
186,
2309,
3221,
28,
187,
186,
94,
187,
94,
187,
30216,
64,
47788,
64,
44335,
9,
1378,
22,
35488,
64,
34388,
64,
15905,
558,
187,
187,
10975,
37523,
22,
35488,
64,
25285,
64,
15905,
9,
2855,
2813,
475,
3620,
13,
10698,
540,
810,
10,
187,
92,
187,
186,
16065,
313,
1747,
10,
551,
187,
186,
5045,
9233,
22,
35488,
64,
47885,
27,
187,
186,
5045,
9233,
22,
35488,
64,
17037,
64,
1838,
27,
187,
186,
5045,
9233,
22,
35488,
64,
55,
8112,
1372,
64,
1838,
27,
187,
186,
5045,
9233,
22,
35488,
64,
28663,
64,
1838,
27,
187,
186,
5045,
9233,
22,
35488,
64,
18582,
64,
20562,
64,
18,
27,
187,
186,
5045,
9233,
22,
35488,
64,
18582,
64,
20562,
64,
19,
27,
187,
186,
5045,
9233,
22,
35488,
64,
41,
3859,
64,
7283,
1042,
27,
187,
186,
5045,
9233,
22,
35488,
64,
41,
3175,
64,
7283,
1042,
27,
187,
186,
5045,
9233,
22,
35488,
64,
42,
19,
36,
64,
20562,
27,
187,
186,
5045,
9233,
22,
35488,
64,
14922,
43,
64,
35,
1267,
64,
20562,
27,
187,
186,
5045,
9233,
22,
35488,
64,
14922,
43,
64,
20562,
64,
18,
27,
187,
186,
5045,
9233,
22,
35488,
64,
14922,
43,
64,
20562,
64,
19,
27,
187,
186,
5045,
9233,
22,
35488,
64,
14922,
43,
64,
20562,
64,
20,
27,
187,
186,
5045,
9233,
22,
35488,
64,
14922,
43,
64,
20562,
64,
21,
27,
187,
186,
5045,
9233,
22,
35488,
64,
14922,
43,
64,
20562,
64,
22,
27,
187,
186,
5045,
9233,
22,
35488,
64,
14922,
43,
64,
20562,
64,
23,
27,
187,
186,
5045,
9233,
22,
35488,
64,
14922,
43,
64,
20562,
64,
24,
27,
187,
186,
5045,
9233,
22,
35488,
64,
48351,
18,
64,
42503,
64,
36755,
27,
187,
186,
5045,
9233,
22,
35488,
64,
1267,
48,
18,
64,
38348,
64,
42503,
64,
36755,
27,
187,
186,
5045,
9233,
22,
35488,
64,
1267,
48,
18,
64,
38348,
64,
30113,
27,
187,
186,
5045,
9233,
22,
35488,
64,
18582,
64,
40921,
64,
7283,
1042,
64,
18,
27,
187,
186,
5045,
9233,
22,
35488,
64,
18582,
64,
40921,
64,
7283,
1042,
64,
19,
27,
187,
186,
5045,
9233,
22,
35488,
64,
49491,
2025,
11147,
64,
20562,
27,
187,
186,
5045,
9233,
22,
35488,
64,
1267,
48,
18,
64,
38348,
64,
43640,
947,
27,
187,
186,
5045,
9233,
22,
35488,
64,
2350,
64,
4877,
64,
43640,
947,
27,
187,
186,
5045,
9233,
22,
35488,
64,
1267,
48,
18,
64,
48351,
64,
43640,
947,
27,
187,
186,
5045,
9233,
22,
35488,
64,
34,
64,
48351,
18,
64,
46,
21466,
27,
187,
186,
5045,
9233,
22,
35488,
64,
42503,
64,
42101,
19,
64,
17020,
27,
187,
186,
5045,
9233,
22,
35488,
64,
34181,
64,
43640,
947,
27,
187,
186,
5045,
9233,
22,
35488,
64,
39350,
64,
34181,
27,
187,
186,
5045,
9233,
22,
35488,
64,
1556,
36,
64,
25292,
64,
7283,
1042,
27,
187,
186,
5045,
9233,
22,
35488,
64,
49,
10690,
64,
42503,
64,
18,
27,
187,
186,
5045,
9233,
22,
35488,
64,
49,
10690,
64,
42503,
64,
19,
27,
187,
186,
5045,
9233,
22,
35488,
64,
49,
10690,
64,
1539,
37673,
64,
18,
27,
187,
186,
5045,
9233,
22,
35488,
64,
49,
10690,
64,
1539,
37673,
64,
19,
27,
187,
186,
5045,
9233,
22,
35488,
64,
49,
10690,
64,
1539,
37673,
64,
20,
27,
187,
186,
5045,
9233,
22,
35488,
64,
49,
10690,
64,
43640,
947,
27,
187,
186,
5045,
9233,
22,
35488,
64,
49,
10690,
64,
36755,
27,
187,
186,
5045,
9233,
22,
35488,
64,
22370,
64,
35468,
27,
187,
186,
5045,
9233,
22,
35488,
64,
47885,
64,
13010,
39,
64,
20562,
27,
187,
186,
5045,
9233,
22,
35488,
64,
47885,
64,
41,
14981,
64,
20562,
27,
187,
186,
5045,
9233,
22,
35488,
64,
9042,
1864,
64,
20562,
64,
18,
27,
187,
186,
5045,
9233,
22,
35488,
64,
42,
19,
52,
18,
64,
3871,
49,
27,
187,
186,
5045,
9233,
22,
35488,
64,
42,
19,
52,
19,
64,
3871,
49,
27,
187,
186,
5045,
9233,
22,
35488,
64,
2350,
4877,
64,
22370,
64,
18,
27,
187,
186,
5045,
9233,
22,
35488,
64,
2350,
4877,
64,
22370,
64,
19,
27,
187,
186,
5045,
9233,
22,
35488,
64,
42,
19,
52,
18,
64,
39,
64,
37151,
64,
20562,
64,
18,
27,
187,
186,
5045,
9233,
22,
35488,
64,
42,
19,
52,
18,
64,
39,
64,
37151,
64,
20562,
64,
19,
27,
187,
186,
5045,
9233,
22,
35488,
64,
53,
9042,
64,
20562,
27,
187,
186,
5045,
9233,
22,
35488,
64,
53,
9042,
64,
2350,
4877,
64,
20562,
64,
18,
27,
187,
186,
5045,
9233,
22,
35488,
64,
53,
9042,
64,
2350,
4877,
64,
20562,
64,
19,
27,
187,
186,
5045,
9233,
22,
35488,
64,
17020,
64,
27300,
64,
20562,
64,
18,
27,
187,
186,
5045,
9233,
22,
35488,
64,
53,
9042,
64,
53,
5707,
64,
20562,
27,
187,
186,
5045,
9233,
22,
35488,
64,
5990,
35,
64,
22370,
27,
187,
186,
5045,
9233,
22,
35488,
64,
42690,
64,
20562,
64,
18,
27,
187,
186,
5045,
9233,
22,
35488,
64,
42690,
64,
20562,
64,
19,
27,
187,
186,
5045,
9233,
22,
35488,
64,
42690,
64,
3125,
8100,
64,
18,
27,
187,
186,
5045,
9233,
22,
35488,
64,
42690,
64,
3125,
8100,
64,
19,
27,
187,
186,
5045,
9233,
22,
35488,
64,
42690,
64,
3125,
8100,
64,
20,
27,
187,
186,
5045,
9233,
22,
35488,
64,
42690,
64,
3125,
8100,
64,
21,
27,
187,
186,
5045,
9233,
22,
35488,
64,
42690,
64,
3125,
8100,
64,
22,
27,
187,
186,
5045,
9233,
22,
35488,
64,
42690,
64,
3125,
8100,
64,
23,
27,
187,
186,
5045,
9233,
22,
35488,
64,
42690,
64,
3125,
8100,
64,
883,
27,
187,
186,
5045,
9233,
22,
35488,
64,
3871,
56,
64,
15619,
64,
22370,
27,
187,
186,
5045,
9233,
22,
35488,
64,
32568,
2795,
64,
18,
27,
187,
186,
5045,
9233,
22,
35488,
64,
32568,
2795,
64,
19,
27,
187,
186,
5045,
9233,
22,
35488,
64,
18582,
64,
15843,
7538,
64,
7575,
4548,
64,
18,
27,
187,
186,
5045,
9233,
22,
35488,
64,
18582,
64,
15843,
7538,
64,
7575,
4548,
64,
19,
27,
187,
186,
5045,
9233,
22,
35488,
64,
34611,
6159,
1719,
64,
18,
27,
187,
186,
5045,
9233,
22,
35488,
64,
34611,
6159,
1719,
64,
19,
27,
187,
186,
5045,
9233,
22,
35488,
64,
42690,
64,
3125,
8100,
64,
805,
27,
187,
186,
5045,
9233,
22,
35488,
64,
42690,
64,
3125,
8100,
64,
1047,
27,
187,
186,
5045,
9233,
22,
35488,
64,
42690,
19,
64,
20562,
64,
18,
27,
187,
186,
5045,
9233,
22,
35488,
64,
42690,
19,
64,
20562,
64,
19,
27,
187,
186,
5045,
9233,
22,
35488,
64,
42690,
19,
64,
20562,
64,
20,
27,
187,
186,
5045,
9233,
22,
35488,
64,
42690,
19,
64,
20562,
64,
21,
27,
187,
186,
5045,
9233,
22,
35488,
64,
19921,
64,
22370,
64,
20562,
27,
187,
186,
5045,
9233,
22,
35488,
64,
42,
19,
52,
64,
46,
64,
22370,
64,
20562,
64,
18,
27,
187,
186,
5045,
9233,
22,
35488,
64,
42,
19,
52,
19,
64,
39,
64,
37151,
64,
20562,
64,
18,
27,
187,
186,
5045,
9233,
22,
35488,
64,
42,
19,
52,
19,
64,
39,
64,
37151,
64,
20562,
64,
19,
27,
187,
186,
5045,
9233,
22,
35488,
64,
19090,
64,
20562,
64,
18,
27,
187,
186,
5045,
9233,
22,
35488,
64,
19090,
64,
20562,
64,
19,
27,
187,
186,
5045,
9233,
22,
35488,
64,
27209,
64,
20562,
64,
18,
27,
187,
186,
5045,
9233,
22,
35488,
64,
27209,
64,
20562,
64,
19,
27,
187,
186,
5045,
9233,
22,
35488,
64,
27209,
64,
20562,
64,
20,
27,
187,
186,
5045,
9233,
22,
35488,
64,
27209,
64,
20562,
64,
21,
27,
187,
186,
5045,
9233,
22,
35488,
64,
7999,
64,
1267,
64,
18,
27,
187,
186,
5045,
9233,
22,
35488,
64,
33752,
64,
20562,
64,
18,
27,
187,
186,
5045,
9233,
22,
35488,
64,
33752,
64,
20562,
64,
19,
27,
187,
186,
5045,
9233,
22,
35488,
64,
33752,
64,
20562,
64,
20,
27,
187,
186,
5045,
9233,
22,
35488,
64,
18582,
64,
12437,
64,
35468,
64,
20562,
64,
18,
27,
187,
186,
5045,
9233,
22,
35488,
64,
18582,
64,
12437,
64,
35468,
64,
20562,
64,
19,
27,
187,
186,
5045,
9233,
22,
35488,
64,
46,
1838,
64,
18582,
64,
12437,
64,
35468,
27,
187,
186,
5045,
9233,
22,
35488,
64,
47123,
64,
18582,
64,
12437,
64,
35468,
27,
187,
186,
5045,
9233,
22,
35488,
64,
2573,
25055,
64,
36675,
64,
20562,
27,
187,
186,
5045,
9233,
22,
35488,
64,
12944,
64,
59,
3717,
64,
18,
27,
187,
186,
5045,
9233,
22,
35488,
64,
12944,
64,
59,
3717,
64,
19,
27,
187,
186,
5045,
9233,
22,
35488,
64,
3077,
64,
24840,
64,
18,
27,
187,
186,
5045,
9233,
22,
35488,
64,
3077,
64,
24840,
64,
19,
27,
187,
186,
5045,
9233,
22,
35488,
64,
3077,
64,
24840,
64,
20,
27,
187,
186,
5045,
9233,
22,
35488,
64,
3077,
64,
24840,
64,
21,
27,
187,
186,
5045,
9233,
22,
35488,
64,
3077,
64,
24840,
64,
22,
27,
187,
186,
5045,
9233,
22,
35488,
64,
3077,
64,
24840,
64,
23,
27,
187,
186,
5045,
9233,
22,
35488,
64,
21,
11584,
47,
64,
3077,
64,
24840,
64,
18,
27,
187,
186,
5045,
9233,
22,
35488,
64,
21,
11584,
47,
64,
3077,
64,
24840,
64,
19,
27,
187,
186,
5045,
9233,
22,
35488,
64,
21,
11584,
47,
64,
3077,
64,
24840,
64,
20,
27,
187,
186,
5045,
9233,
22,
35488,
64,
21,
11584,
47,
64,
3077,
64,
24840,
64,
21,
27,
187,
186,
5045,
9233,
22,
35488,
64,
21,
11584,
47,
64,
3077,
64,
24840,
64,
22,
27,
187,
186,
5045,
9233,
22,
35488,
64,
21,
11584,
47,
64,
3077,
64,
24840,
64,
23,
27,
187,
186,
5045,
9233,
22,
35488,
64,
21,
11584,
47,
64,
3077,
64,
24840,
64,
24,
27,
187,
186,
5045,
9233,
22,
35488,
64,
38348,
64,
1267,
48,
18,
64,
18582,
64,
20562,
64,
18,
27,
187,
186,
5045,
9233,
22,
35488,
64,
38348,
64,
1267,
48,
18,
64,
18582,
64,
20562,
64,
19,
27,
187,
186,
5045,
9233,
22,
35488,
64,
34,
30612,
18,
64,
20562,
27,
187,
186,
5045,
9233,
22,
35488,
64,
30612,
18,
64,
3886,
37,
27,
187,
186,
5045,
9233,
22,
35488,
64,
30612,
19,
64,
3886,
37,
27,
187,
186,
5045,
9233,
22,
35488,
64,
30612,
64,
20562,
64,
18,
27,
187,
186,
5045,
9233,
22,
35488,
64,
37,
5529,
19805,
64,
18,
27,
187,
186,
5045,
9233,
22,
35488,
64,
37,
5529,
19805,
64,
19,
27,
187,
186,
5045,
9233,
22,
35488,
64,
37,
5529,
19805,
64,
20,
27,
187,
186,
5045,
9233,
22,
35488,
64,
48351,
64,
38348,
64,
42503,
64,
36755,
18,
27,
187,
186,
5045,
9233,
22,
35488,
64,
6159,
1719,
64,
26336,
64,
20562,
64,
19,
27,
187,
186,
5045,
9233,
22,
35488,
64,
6159,
1719,
64,
26336,
64,
20562,
64,
20,
27,
187,
186,
5045,
9233,
22,
35488,
64,
6159,
1719,
64,
26336,
64,
20562,
64,
21,
27,
187,
186,
5045,
9233,
22,
35488,
64,
6159,
1719,
64,
26336,
64,
20562,
64,
22,
27,
187,
186,
5045,
9233,
22,
35488,
64,
6159,
1719,
64,
26336,
64,
20562,
64,
23,
27,
187,
186,
5045,
9233,
22,
35488,
64,
6159,
1719,
64,
26336,
64,
20562,
64,
24,
27,
187,
186,
5045,
9233,
22,
35488,
64,
6159,
1719,
64,
26336,
64,
20562,
64,
25,
27,
187,
186,
5045,
9233,
22,
35488,
64,
6159,
1719,
64,
26336,
64,
20562,
64,
26,
27,
187,
186,
5045,
9233,
22,
35488,
64,
6159,
1719,
64,
26336,
64,
20562,
64,
740,
27,
187,
186,
5045,
9233,
22,
35488,
64,
55,
15619,
64,
34181,
64,
2795,
64,
18446,
64,
20027,
64,
20562,
27,
187,
186,
5045,
9233,
22,
35488,
64,
15843,
7538,
64,
7575,
4548,
64,
18,
27,
187,
186,
5045,
9233,
22,
35488,
64,
42503,
64,
1042,
64,
20562,
64,
18,
27,
187,
186,
5045,
9233,
22,
35488,
64,
41420,
64,
4976,
3252,
2637,
64,
20562,
27,
187,
186,
5045,
9233,
22,
35488,
64,
8683,
5518,
64,
51,
12437,
64,
32568,
2795,
27,
187,
186,
5045,
9233,
22,
35488,
64,
2775,
2795,
64,
48351,
27,
187,
186,
5045,
9233,
22,
35488,
64,
2775,
2795,
64,
38348,
27,
187,
186,
5045,
9233,
22,
35488,
64,
39350,
5472,
64,
38348,
64,
20562,
27,
187,
186,
5045,
9233,
22,
35488,
64,
36755,
64,
14524,
27,
187,
186,
5045,
9233,
22,
35488,
64,
4350,
44,
8528,
37,
64,
35468,
64,
37789,
27,
187,
186,
5045,
9233,
22,
35488,
64,
14524,
64,
18129,
64,
20562,
64,
18,
27,
187,
186,
5045,
9233,
22,
35488,
64,
14524,
64,
18129,
64,
20562,
64,
19,
27,
187,
186,
5045,
9233,
22,
35488,
64,
14524,
64,
18129,
64,
20562,
64,
20,
27,
187,
186,
5045,
9233,
22,
35488,
64,
14524,
64,
18129,
64,
20562,
64,
21,
27,
187,
186,
5045,
9233,
22,
35488,
64,
14524,
64,
18129,
64,
20562,
64,
22,
27,
187,
186,
5045,
9233,
22,
35488,
64,
42690,
18,
64,
19118,
21686,
27,
187,
186,
5045,
9233,
22,
35488,
64,
42690,
19,
64,
19118,
21686,
27,
187,
186,
5045,
9233,
22,
35488,
64,
1267,
48,
64,
12770,
19,
64,
20562,
64,
18,
27,
187,
186,
5045,
9233,
22,
35488,
64,
1267,
48,
64,
12770,
19,
64,
20562,
64,
19,
27,
187,
186,
5045,
9233,
22,
35488,
64,
1267,
48,
64,
12770,
19,
64,
20562,
64,
20,
27,
187,
186,
5045,
9233,
22,
35488,
64,
1267,
48,
64,
12770,
19,
64,
20562,
64,
21,
27,
187,
186,
5045,
9233,
22,
35488,
64,
1267,
48,
64,
12770,
19,
64,
20562,
64,
22,
27,
187,
186,
5045,
9233,
22,
35488,
64,
1267,
48,
64,
12770,
19,
64,
20562,
64,
23,
27,
187,
186,
5045,
9233,
22,
35488,
64,
1267,
48,
64,
12770,
19,
64,
20562,
64,
24,
27,
187,
186,
5045,
9233,
22,
35488,
64,
1267,
48,
64,
12770,
19,
64,
20562,
64,
25,
27,
187,
186,
5045,
9233,
22,
35488,
64,
1267,
48,
64,
12770,
19,
64,
20562,
64,
26,
27,
187,
186,
5045,
9233,
22,
35488,
64,
1267,
48,
64,
12770,
19,
64,
20562,
64,
740,
27,
187,
186,
5045,
9233,
22,
35488,
64,
1267,
48,
18,
64,
48351,
64,
52,
3077,
64,
35468,
27,
187,
186,
5045,
9233,
22,
35488,
64,
52,
3077,
64,
3299,
55,
64,
20562,
18,
27,
187,
186,
5045,
9233,
22,
35488,
64,
52,
3077,
64,
3299,
55,
64,
20562,
19,
27,
187,
186,
5045,
9233,
22,
35488,
64,
52,
3077,
64,
3299,
55,
64,
20562,
20,
27,
187,
186,
5045,
9233,
22,
35488,
64,
52,
3077,
64,
3299,
55,
64,
20562,
21,
27,
187,
186,
5045,
9233,
22,
35488,
64,
52,
3077,
64,
3299,
55,
64,
20562,
22,
27,
187,
186,
5045,
9233,
22,
35488,
64,
18582,
64,
40921,
64,
52,
18041,
64,
20562,
64,
520,
27,
187,
186,
5045,
9233,
22,
35488,
64,
18582,
64,
40921,
64,
52,
18041,
64,
20562,
64,
2640,
27,
187,
186,
5045,
9233,
22,
35488,
64,
18582,
64,
40921,
64,
52,
18041,
64,
20562,
64,
2941,
27,
187,
186,
5045,
9233,
22,
35488,
64,
18582,
64,
40921,
64,
52,
18041,
64,
20562,
64,
2125,
27,
187,
186,
5045,
9233,
22,
35488,
64,
18582,
64,
40921,
64,
52,
18041,
64,
20562,
64,
1762,
27,
187,
186,
5045,
9233,
22,
35488,
64,
18582,
64,
40921,
64,
52,
18041,
64,
20562,
64,
3071,
27,
187,
186,
5045,
9233,
22,
35488,
64,
18582,
64,
40921,
64,
52,
18041,
64,
20562,
64,
2922,
27,
187,
186,
5045,
9233,
22,
35488,
64,
18582,
64,
40921,
64,
52,
18041,
64,
20562,
64,
2904,
27,
187,
186,
5045,
9233,
22,
35488,
64,
18582,
64,
40921,
64,
52,
18041,
64,
20562,
64,
2693,
27,
187,
186,
5045,
9233,
22,
35488,
64,
18582,
64,
40921,
64,
52,
18041,
64,
20562,
64,
740,
27,
187,
186,
5045,
9233,
22,
35488,
64,
18582,
64,
40921,
64,
52,
18041,
64,
20562,
64,
883,
27,
187,
186,
5045,
9233,
22,
35488,
64,
18582,
64,
40921,
64,
52,
18041,
64,
20562,
64,
805,
27,
187,
186,
5045,
9233,
22,
35488,
64,
18582,
64,
40921,
64,
52,
18041,
64,
20562,
64,
1012,
27,
187,
186,
5045,
9233,
22,
35488,
64,
18582,
64,
40921,
64,
52,
18041,
64,
20562,
64,
1047,
27,
187,
186,
5045,
9233,
22,
35488,
64,
18582,
64,
40921,
64,
52,
18041,
64,
20562,
64,
1010,
27,
187,
186,
5045,
9233,
22,
35488,
64,
18582,
64,
40921,
64,
52,
18041,
64,
20562,
64,
1036,
27,
187,
186,
5045,
9233,
22,
35488,
64,
18582,
64,
40921,
64,
52,
18041,
64,
20562,
64,
1166,
27,
187,
186,
5045,
9233,
22,
35488,
64,
18582,
64,
40921,
64,
52,
18041,
64,
20562,
64,
1093,
27,
187,
186,
5045,
9233,
22,
35488,
64,
18582,
64,
40921,
64,
52,
18041,
64,
20562,
64,
746,
27,
187,
186,
5045,
9233,
22,
35488,
64,
18582,
64,
40921,
64,
52,
18041,
64,
20562,
64,
938,
27,
187,
186,
5045,
9233,
22,
35488,
64,
18582,
64,
40921,
64,
52,
18041,
64,
20562,
64,
1797,
27,
187,
186,
5045,
9233,
22,
35488,
64,
18582,
64,
40921,
64,
52,
18041,
64,
20562,
64,
1423,
27,
187,
186,
5045,
9233,
22,
35488,
64,
18582,
64,
40921,
64,
52,
18041,
64,
20562,
64,
1508,
27,
187,
186,
5045,
9233,
22,
35488,
64,
18582,
64,
40921,
64,
52,
18041,
64,
20562,
64,
1348,
27,
187,
186,
5045,
9233,
22,
35488,
64,
18582,
64,
40921,
64,
52,
18041,
64,
20562,
64,
1099,
27,
187,
186,
5045,
9233,
22,
35488,
64,
18582,
64,
40921,
64,
52,
18041,
64,
20562,
64,
1731,
27,
187,
186,
5045,
9233,
22,
35488,
64,
18582,
64,
40921,
64,
52,
18041,
64,
20562,
64,
1630,
27,
187,
186,
5045,
9233,
22,
35488,
64,
18582,
64,
40921,
64,
52,
18041,
64,
20562,
64,
1619,
27,
187,
186,
5045,
9233,
22,
35488,
64,
18582,
64,
40921,
64,
52,
18041,
64,
20562,
64,
1717,
27,
187,
186,
5045,
9233,
22,
35488,
64,
18582,
64,
40921,
64,
52,
18041,
64,
20562,
64,
1229,
27,
187,
186,
5045,
9233,
22,
35488,
64,
18582,
64,
40921,
64,
52,
18041,
64,
20562,
64,
2405,
27,
187,
186,
5045,
9233,
22,
35488,
64,
18582,
64,
40921,
64,
52,
18041,
64,
20562,
64,
1237,
27,
187,
186,
5045,
9233,
22,
35488,
64,
18582,
64,
40921,
64,
52,
18041,
64,
20562,
64,
1610,
27,
187,
186,
5045,
9233,
22,
35488,
64,
18582,
64,
40921,
64,
52,
18041,
64,
20562,
64,
1706,
27,
187,
186,
5045,
9233,
22,
35488,
64,
18582,
64,
40921,
64,
52,
18041,
64,
20562,
64,
1671,
27,
187,
186,
5045,
9233,
22,
35488,
64,
18582,
64,
40921,
64,
52,
18041,
64,
20562,
64,
1812,
27,
187,
186,
5045,
9233,
22,
35488,
64,
18582,
64,
40921,
64,
52,
18041,
64,
20562,
64,
1787,
27,
187,
186,
5045,
9233,
22,
35488,
64,
18582,
64,
40921,
64,
52,
18041,
64,
20562,
64,
1839,
27,
187,
186,
5045,
9233,
22,
35488,
64,
18582,
64,
40921,
64,
52,
18041,
64,
20562,
64,
1867,
27,
187,
186,
5045,
9233,
22,
35488,
64,
18582,
64,
40921,
64,
52,
18041,
64,
20562,
64,
1449,
27,
187,
186,
5045,
9233,
22,
35488,
64,
18582,
64,
40921,
64,
52,
18041,
64,
20562,
64,
3156,
27,
187,
186,
5045,
9233,
22,
35488,
64,
18582,
64,
40921,
64,
52,
18041,
64,
20562,
64,
2945,
27,
187,
186,
5045,
9233,
22,
35488,
64,
18582,
64,
40921,
64,
52,
18041,
64,
20562,
64,
3079,
27,
187,
186,
5045,
9233,
22,
35488,
64,
18582,
64,
21273,
1864,
64,
20562,
64,
18,
27,
187,
186,
5045,
9233,
22,
35488,
64,
18582,
64,
21273,
1864,
64,
20562,
64,
19,
27,
187,
186,
5045,
9233,
22,
35488,
64,
18582,
64,
21273,
1864,
64,
20562,
64,
20,
27,
187,
186,
5045,
9233,
22,
35488,
64,
18582,
64,
39350,
5472,
64,
20562,
64,
18,
27,
187,
186,
5045,
9233,
22,
35488,
64,
18582,
64,
39350,
5472,
64,
20562,
64,
19,
27,
187,
186,
5045,
9233,
22,
35488,
64,
18582,
64,
39350,
5472,
64,
20562,
64,
20,
27,
187,
186,
5045,
9233,
22,
35488,
64,
18582,
64,
39350,
5472,
64,
20562,
64,
21,
27,
187,
186,
5045,
9233,
22,
35488,
64,
18582,
64,
39350,
5472,
64,
20562,
64,
22,
27,
187,
186,
5045,
9233,
22,
35488,
64,
18582,
64,
39350,
5472,
64,
20562,
64,
23,
27,
187,
186,
5045,
9233,
22,
35488,
64,
18582,
64,
39350,
5472,
64,
20562,
64,
24,
27,
187,
186,
5045,
9233,
22,
35488,
64,
18582,
64,
39350,
5472,
64,
20562,
64,
26,
27,
187,
186,
5045,
9233,
22,
35488,
64,
18582,
64,
39350,
5472,
64,
20562,
64,
740,
27,
187,
186,
5045,
9233,
22,
35488,
64,
18582,
64,
39350,
5472,
64,
20562,
64,
883,
27,
187,
186,
5045,
9233,
22,
35488,
64,
18582,
64,
39350,
5472,
64,
37789,
64,
18,
27,
187,
186,
5045,
9233,
22,
35488,
64,
18582,
64,
39350,
5472,
64,
37789,
64,
19,
27,
187,
186,
5045,
9233,
22,
35488,
64,
18582,
64,
39350,
5472,
64,
37789,
64,
20,
27,
187,
186,
5045,
9233,
22,
35488,
64,
18582,
64,
39350,
5472,
64,
37789,
64,
21,
27,
187,
186,
5045,
9233,
22,
35488,
64,
18582,
64,
39350,
5472,
64,
37789,
64,
22,
27,
187,
186,
5045,
9233,
22,
35488,
64,
18582,
64,
39350,
5472,
64,
37789,
64,
23,
27,
187,
186,
5045,
9233,
22,
35488,
64,
18582,
64,
39350,
5472,
64,
37789,
64,
24,
27,
187,
186,
5045,
9233,
22,
35488,
64,
18582,
64,
39350,
5472,
64,
37789,
64,
25,
27,
187,
186,
5045,
9233,
22,
35488,
64,
18582,
64,
39350,
5472,
64,
37789,
64,
26,
27,
187,
186,
5045,
9233,
22,
35488,
64,
18582,
64,
39350,
5472,
64,
37789,
64,
740,
27,
187,
186,
5045,
9233,
22,
35488,
64,
18582,
64,
39350,
5472,
64,
37789,
64,
883,
27,
187,
186,
5045,
9233,
22,
35488,
64,
52,
1277,
64,
3077,
64,
24840,
64,
18,
27,
187,
186,
5045,
9233,
22,
35488,
64,
52,
1277,
64,
3077,
64,
24840,
64,
19,
27,
187,
186,
5045,
9233,
22,
35488,
64,
52,
1277,
64,
3077,
64,
24840,
64,
20,
27,
187,
186,
5045,
9233,
22,
35488,
64,
52,
1277,
64,
3077,
64,
24840,
64,
21,
27,
187,
186,
5045,
9233,
22,
35488,
64,
52,
1277,
64,
3077,
64,
24840,
64,
22,
27,
187,
186,
5045,
9233,
22,
35488,
64,
52,
1277,
64,
3077,
64,
24840,
64,
23,
27,
187,
186,
5045,
9233,
22,
35488,
64,
52,
1277,
64,
3077,
64,
24840,
64,
24,
27,
187,
186,
5045,
9233,
22,
35488,
64,
52,
1277,
64,
3077,
64,
24840,
64,
25,
27,
187,
186,
5045,
9233,
22,
35488,
64,
52,
1277,
64,
3077,
64,
24840,
64,
26,
27,
187,
186,
5045,
9233,
22,
35488,
64,
52,
1277,
64,
3077,
64,
24840,
64,
740,
27,
187,
186,
5045,
9233,
22,
35488,
64,
52,
1277,
64,
3077,
64,
24840,
64,
883,
27,
187,
186,
5045,
9233,
22,
35488,
64,
52,
1277,
64,
3077,
64,
24840,
64,
805,
27,
187,
186,
5045,
9233,
22,
35488,
64,
52,
1277,
64,
3077,
64,
24840,
64,
1012,
27,
187,
186,
5045,
9233,
22,
35488,
64,
16462,
17423,
64,
20562,
64,
18,
27,
187,
186,
5045,
9233,
22,
35488,
64,
16462,
17423,
64,
20562,
64,
19,
27,
187,
186,
5045,
9233,
22,
35488,
64,
16462,
17423,
64,
20562,
64,
20,
27,
187,
186,
5045,
9233,
22,
35488,
64,
16462,
17423,
64,
20562,
64,
21,
27,
187,
186,
5045,
9233,
22,
35488,
64,
16462,
17423,
64,
20562,
64,
22,
27,
187,
186,
5045,
9233,
22,
35488,
64,
16462,
17423,
64,
20562,
64,
23,
27,
187,
186,
5045,
9233,
22,
35488,
64,
16462,
17423,
64,
20562,
64,
24,
27,
187,
186,
5045,
9233,
22,
35488,
64,
16462,
17423,
64,
20562,
64,
25,
27,
187,
186,
5045,
9233,
22,
35488,
64,
16462,
17423,
64,
20562,
64,
26,
27,
187,
186,
5045,
9233,
22,
35488,
64,
16462,
17423,
64,
20562,
64,
740,
27,
187,
186,
5045,
9233,
22,
35488,
64,
16462,
17423,
64,
20562,
64,
883,
27,
187,
186,
5045,
9233,
22,
35488,
64,
30612,
64,
32887,
64,
12548,
64,
55,
3125,
45,
27,
187,
186,
5045,
9233,
22,
35488,
64,
4976,
36,
18,
64,
20562,
64,
17,
27,
187,
186,
5045,
9233,
22,
35488,
64,
4976,
36,
18,
64,
20562,
64,
18,
27,
187,
186,
5045,
9233,
22,
35488,
64,
4976,
36,
18,
64,
20562,
64,
19,
27,
187,
186,
5045,
9233,
22,
35488,
64,
4976,
36,
18,
64,
20562,
64,
20,
27,
187,
186,
5045,
9233,
22,
35488,
64,
4976,
36,
18,
64,
20562,
64,
21,
27,
187,
186,
5045,
9233,
22,
35488,
64,
4976,
36,
18,
64,
20562,
64,
22,
27,
187,
186,
5045,
9233,
22,
35488,
64,
4976,
36,
18,
64,
20562,
64,
23,
27,
187,
186,
5045,
9233,
22,
35488,
64,
4976,
36,
18,
64,
41,
10449,
64,
45,
6229,
64,
20562,
64,
18,
27,
187,
186,
5045,
9233,
22,
35488,
64,
4976,
36,
18,
64,
41,
10449,
64,
45,
6229,
64,
20562,
64,
19,
27,
187,
186,
5045,
9233,
22,
35488,
64,
4976,
36,
18,
64,
3175,
3252,
64,
18,
27,
187,
186,
5045,
9233,
22,
35488,
64,
4976,
36,
18,
64,
3175,
3252,
64,
19,
27,
187,
186,
5045,
9233,
22,
35488,
64,
4976,
36,
18,
64,
3175,
3252,
64,
20,
27,
187,
186,
5045,
9233,
22,
35488,
64,
4976,
36,
18,
64,
3175,
3252,
64,
21,
27,
187,
186,
5045,
9233,
22,
35488,
64,
4976,
36,
18,
64,
3175,
3252,
64,
22,
27,
187,
186,
5045,
9233,
22,
35488,
64,
4976,
36,
18,
64,
3175,
3252,
64,
23,
27,
187,
186,
5045,
9233,
22,
35488,
64,
4976,
36,
18,
64,
3175,
3252,
64,
24,
27,
187,
186,
5045,
9233,
22,
35488,
64,
4976,
36,
18,
64,
3175,
3252,
64,
25,
27,
187,
186,
5045,
9233,
22,
35488,
64,
19090,
64,
32364,
48,
64,
51,
8887,
64,
20562,
18,
27,
187,
186,
5045,
9233,
22,
35488,
64,
19090,
64,
32364,
48,
64,
51,
8887,
64,
20562,
19,
27,
187,
186,
5045,
9233,
22,
35488,
64,
19090,
64,
32364,
48,
64,
51,
8887,
64,
20562,
20,
27,
187,
186,
5045,
9233,
22,
35488,
64,
19090,
64,
32364,
48,
64,
51,
8887,
64,
20562,
21,
27,
187,
186,
5045,
9233,
22,
35488,
64,
19090,
64,
32364,
48,
64,
51,
8887,
64,
20562,
22,
27,
187,
186,
5045,
9233,
22,
35488,
64,
19090,
64,
32364,
48,
64,
51,
8887,
64,
20562,
23,
27,
187,
186,
5045,
9233,
22,
35488,
64,
19090,
64,
32364,
48,
64,
51,
8887,
64,
20562,
24,
27,
187,
186,
5045,
9233,
22,
35488,
64,
19090,
64,
32364,
48,
64,
51,
8887,
64,
20562,
25,
27,
187,
186,
5045,
9233,
22,
35488,
64,
19090,
64,
32364,
48,
64,
51,
8887,
64,
20562,
26,
27,
187,
186,
5045,
9233,
22,
35488,
64,
19090,
64,
32364,
48,
64,
51,
8887,
64,
20562,
740,
27,
187,
186,
5045,
9233,
22,
35488,
64,
19090,
64,
32364,
48,
64,
51,
8887,
64,
20562,
883,
27,
187,
186,
5045,
9233,
22,
35488,
64,
19090,
64,
32364,
48,
64,
51,
8887,
64,
20562,
805,
27,
187,
186,
5045,
9233,
22,
35488,
64,
19090,
64,
32364,
48,
64,
51,
8887,
64,
20562,
1012,
27,
187,
186,
5045,
9233,
22,
35488,
64,
38348,
64,
45,
64,
19090,
64,
13010,
39,
18,
64,
34,
18,
27,
187,
186,
5045,
9233,
22,
35488,
64,
51,
64,
19090,
64,
13010,
39,
18,
64,
34,
18,
27,
187,
186,
5045,
9233,
22,
35488,
64,
45,
64,
19090,
64,
13010,
39,
18,
64,
41,
17,
27,
187,
186,
5045,
9233,
22,
35488,
64,
51,
64,
19090,
64,
13010,
39,
18,
64,
41,
17,
27,
187,
186,
5045,
9233,
22,
35488,
64,
45,
64,
19090,
64,
36053,
18,
64,
34,
18,
27,
187,
186,
5045,
9233,
22,
35488,
64,
51,
64,
19090,
64,
36053,
18,
64,
34,
18,
27,
187,
186,
5045,
9233,
22,
35488,
64,
45,
64,
19090,
64,
36053,
18,
64,
34,
19,
27,
187,
186,
5045,
9233,
22,
35488,
64,
51,
64,
19090,
64,
36053,
18,
64,
34,
19,
27,
187,
186,
5045,
9233,
22,
35488,
64,
45,
64,
19090,
64,
36053,
18,
64,
41,
17,
27,
187,
186,
5045,
9233,
22,
35488,
64,
51,
64,
19090,
64,
36053,
18,
64,
41,
17,
27,
187,
186,
5045,
9233,
22,
35488,
64,
45,
64,
19090,
64,
36053,
19,
64,
34,
18,
27,
187,
186,
5045,
9233,
22,
35488,
64,
51,
64,
19090,
64,
36053,
19,
64,
34,
18,
27,
187,
186,
5045,
9233,
22,
35488,
64,
45,
64,
19090,
64,
36053,
19,
64,
34,
19,
27,
187,
186,
5045,
9233,
22,
35488,
64,
51,
64,
19090,
64,
36053,
19,
64,
34,
19,
27,
187,
186,
5045,
9233,
22,
35488,
64,
45,
64,
19090,
64,
36053,
19,
64,
41,
17,
27,
187,
186,
5045,
9233,
22,
35488,
64,
51,
64,
19090,
64,
36053,
19,
64,
41,
17,
27,
187,
186,
5045,
9233,
22,
35488,
64,
45,
64,
19090,
64,
36053,
20,
64,
34,
18,
27,
187,
186,
5045,
9233,
22,
35488,
64,
51,
64,
19090,
64,
36053,
20,
64,
34,
18,
27,
187,
186,
5045,
9233,
22,
35488,
64,
45,
64,
19090,
64,
36053,
20,
64,
34,
19,
27,
187,
186,
5045,
9233,
22,
35488,
64,
51,
64,
19090,
64,
36053,
20,
64,
34,
19,
27,
187,
186,
5045,
9233,
22,
35488,
64,
45,
64,
19090,
64,
36053,
20,
64,
41,
17,
27,
187,
186,
5045,
9233,
22,
35488,
64,
51,
64,
19090,
64,
36053,
20,
64,
41,
17,
27,
187,
186,
5045,
9233,
22,
35488,
64,
45,
64,
19090,
64,
36053,
21,
64,
34,
18,
27,
187,
186,
5045,
9233,
22,
35488,
64,
51,
64,
19090,
64,
36053,
21,
64,
34,
18,
27,
187,
186,
5045,
9233,
22,
35488,
64,
45,
64,
19090,
64,
36053,
21,
64,
34,
19,
27,
187,
186,
5045,
9233,
22,
35488,
64,
51,
64,
19090,
64,
36053,
21,
64,
34,
19,
27,
187,
186,
5045,
9233,
22,
35488,
64,
45,
64,
19090,
64,
36053,
21,
64,
41,
17,
27,
187,
186,
5045,
9233,
22,
35488,
64,
51,
64,
19090,
64,
36053,
21,
64,
41,
17,
27,
187,
186,
5045,
9233,
22,
35488,
64,
45,
64,
19090,
64,
41,
14981,
18,
64,
34,
18,
27,
187,
186,
5045,
9233,
22,
35488,
64,
51,
64,
19090,
64,
41,
14981,
18,
64,
34,
18,
27,
187,
186,
5045,
9233,
22,
35488,
64,
45,
64,
19090,
64,
41,
14981,
18,
64,
41,
17,
27,
187,
186,
5045,
9233,
22,
35488,
64,
51,
64,
19090,
64,
41,
14981,
18,
64,
41,
17,
27,
187,
186,
5045,
9233,
22,
35488,
64,
45,
64,
19090,
64,
14364,
64,
36755,
27,
187,
186,
5045,
9233,
22,
35488,
64,
51,
64,
19090,
64,
14364,
64,
36755,
27,
187,
186,
5045,
9233,
22,
35488,
64,
45,
64,
19090,
64,
15743,
64,
36755,
27,
187,
186,
5045,
9233,
22,
35488,
64,
51,
64,
19090,
64,
15743,
64,
36755,
27,
187,
186,
5045,
9233,
22,
35488,
64,
42,
19,
36,
64,
18129,
27,
996,
186,
2309,
2032,
28,
187,
186,
6986,
27,
996,
186,
2309,
3221,
28,
187,
186,
94,
187,
94,
187,
30216,
64,
47788,
64,
44335,
9,
1378,
22,
35488,
64,
25285,
64,
15905,
558,
187,
187,
4659,
1030,
6202,
3207,
9818,
64,
14135,
55,
64,
8904,
64,
4061,
23502,
9,
69,
317,
64,
8625,
64,
17945,
87,
13,
428,
2082,
1099,
13,
6879,
13,
470,
558,
187,
4659,
1030,
6202,
3207,
9818,
64,
14135,
55,
64,
8904,
64,
4061,
23502,
9,
324,
68,
64,
8625,
64,
17945,
87,
13,
428,
1166,
1099,
13,
6879,
13,
470,
558,
187,
4659,
1030,
6202,
3207,
9818,
64,
14135,
55,
64,
8904,
64,
4061,
23502,
9,
324,
68,
64,
35441,
64,
17945,
87,
13,
470,
13,
31268,
13,
470,
558,
187,
187,
3122,
551,
17,
13,
559,
938,
13,
559,
1348,
13,
559,
1229,
13,
559,
1671,
13,
559,
1449,
13,
559,
2031,
13,
559,
1235,
13,
559,
3583,
94,
29527,
1738,
187,
4659,
1030,
6202,
3207,
9818,
64,
14135,
55,
64,
8904,
64,
51,
25876,
9,
35441,
64,
17945,
87,
13,
187,
186,
17,
13,
470,
13,
308,
17173,
64,
8904,
64,
4061,
23502,
64,
45129,
9,
17,
13,
470,
13,
470,
582,
187,
186,
18,
13,
337,
13,
308,
17173,
64,
8904,
64,
4061,
23502,
64,
45129,
9,
6914,
13,
470,
13,
470,
582,
187,
186,
19,
13,
374,
13,
308,
17173,
64,
8904,
64,
4061,
23502,
64,
45129,
9,
1348,
361,
13,
470,
13,
470,
582,
187,
186,
20,
13,
608,
13,
308,
17173,
64,
8904,
64,
4061,
23502,
64,
45129,
9,
26990,
13,
6783,
13,
470,
582,
187,
186,
23,
13,
721,
13,
308,
17173,
64,
8904,
64,
4061,
23502,
64,
45129,
9,
2031,
361,
13,
470,
13,
470,
582,
187,
186,
24,
13,
818,
13,
308,
17173,
64,
8904,
64,
4061,
23502,
64,
45129,
9,
28306,
13,
470,
13,
470,
582,
187,
186,
25,
13,
854,
13,
308,
17173,
64,
8904,
64,
4061,
23502,
64,
45129,
9,
22,
1518,
13,
470,
13,
470,
10,
187,
558,
187,
187,
3122,
33106,
941,
3609,
1738,
187,
4659,
1030,
1018,
475,
1030,
37523,
22,
35488,
64,
2203,
64,
7135,
5456,
426,
551,
187,
186,
3,
45,
16,
51,
995,
346,
51,
16,
45,
995,
346,
45,
16,
45,
995,
346,
51,
16,
51,
3,
187,
4718,
187,
187,
4659,
31909,
64,
1400,
5529,
64,
47307,
1843,
64,
27588,
9,
1378,
22,
35488,
64,
338,
19,
64,
324,
68,
64,
14379,
13,
187,
186,
4708,
22,
35488,
64,
42503,
64,
42101,
19,
64,
17020,
13,
9233,
22,
35488,
64,
3801,
19,
64,
38348,
64,
27300,
64,
52,
5518,
13,
37523,
22,
35488,
64,
2203,
64,
7135,
558,
187,
187,
4659,
31909,
64,
1400,
5529,
64,
47307,
1843,
64,
27588,
9,
1378,
22,
35488,
64,
338,
18,
64,
520,
64,
324,
68,
64,
14379,
13,
187,
186,
4708,
22,
35488,
64,
53,
9042,
64,
2350,
4877,
64,
20562,
64,
18,
13,
9233,
22,
35488,
64,
3801,
18,
64,
38348,
18,
64,
27300,
64,
52,
5518,
13,
37523,
22,
35488,
64,
2203,
64,
7135,
558,
187,
187,
4659,
31909,
64,
1400,
5529,
64,
47307,
1843,
64,
27588,
9,
1378,
22,
35488,
64,
338,
18,
64,
1508,
64,
324,
68,
64,
14379,
13,
187,
186,
4708,
22,
35488,
64,
53,
9042,
64,
2350,
4877,
64,
20562,
64,
18,
13,
9233,
22,
35488,
64,
3801,
18,
64,
38348,
19,
64,
27300,
64,
52,
5518,
13,
37523,
22,
35488,
64,
2203,
64,
7135,
558,
187,
187,
4659,
31909,
64,
1400,
5529,
64,
47307,
1843,
64,
27588,
9,
1378,
22,
35488,
64,
338,
18,
64,
1857,
64,
324,
68,
64,
14379,
13,
187,
186,
4708,
22,
35488,
64,
53,
9042,
64,
2350,
4877,
64,
20562,
64,
18,
13,
9233,
22,
35488,
64,
3801,
18,
64,
38348,
20,
64,
27300,
64,
52,
5518,
13,
37523,
22,
35488,
64,
2203,
64,
7135,
558,
187,
187,
4659,
31909,
64,
1400,
5529,
64,
47307,
1843,
64,
27588,
9,
1378,
22,
35488,
64,
338,
18,
64,
2251,
64,
324,
68,
64,
14379,
13,
187,
186,
4708,
22,
35488,
64,
53,
9042,
64,
2350,
4877,
64,
20562,
64,
18,
13,
9233,
22,
35488,
64,
3801,
18,
64,
38348,
21,
64,
27300,
64,
52,
5518,
13,
37523,
22,
35488,
64,
2203,
64,
7135,
558,
187,
187,
4659,
1030,
1577,
23673,
64,
76,
8519,
64,
1826,
37523,
22,
35488,
64,
338,
19,
64,
324,
68,
64,
35933,
64,
49862,
426,
187,
186,
34429,
64,
37,
2088,
46,
64,
1400,
5529,
1587,
3801,
19,
34026,
4235,
522,
353,
2310,
995,
37523,
22,
35488,
64,
338,
19,
64,
324,
68,
64,
14379,
558,
187,
187,
4659,
1030,
1577,
23673,
64,
76,
8519,
64,
1826,
37523,
22,
35488,
64,
338,
18,
64,
520,
64,
324,
68,
64,
35933,
64,
49862,
426,
187,
186,
34429,
64,
37,
2088,
46,
64,
1400,
5529,
1587,
3801,
18,
14805,
34026,
4235,
522,
353,
2310,
995,
37523,
22,
35488,
64,
338,
18,
64,
520,
64,
324,
68,
64,
14379,
558,
187,
187,
4659,
1030,
1577,
23673,
64,
76,
8519,
64,
1826,
37523,
22,
35488,
64,
338,
18,
64,
1508,
64,
324,
68,
64,
35933,
64,
49862,
426,
187,
186,
34429,
64,
37,
2088,
46,
64,
1400,
5529,
1587,
3801,
18,
3495,
34026,
4235,
522,
353,
2310,
995,
37523,
22,
35488,
64,
338,
18,
64,
1508,
64,
324,
68,
64,
14379,
558,
187,
187,
4659,
1030,
1577,
23673,
64,
76,
8519,
64,
1826,
37523,
22,
35488,
64,
338,
18,
64,
1857,
64,
324,
68,
64,
35933,
64,
49862,
426,
187,
186,
34429,
64,
37,
2088,
46,
64,
1400,
5529,
1587,
3801,
18,
5329,
34026,
4235,
522,
353,
2310,
995,
37523,
22,
35488,
64,
338,
18,
64,
1857,
64,
324,
68,
64,
14379,
558,
187,
187,
4659,
1030,
1577,
23673,
64,
76,
8519,
64,
1826,
37523,
22,
35488,
64,
338,
18,
64,
2251,
64,
324,
68,
64,
35933,
64,
49862,
426,
187,
186,
34429,
64,
37,
2088,
46,
64,
1400,
5529,
1587,
3801,
18,
9963,
34026,
4235,
522,
353,
2310,
995,
37523,
22,
35488,
64,
338,
18,
64,
2251,
64,
324,
68,
64,
14379,
558,
187,
187,
4659,
1030,
1018,
475,
1030,
37523,
22,
35488,
64,
69,
317,
64,
7135,
5456,
426,
551,
187,
186,
3,
3801,
18,
995,
346,
52,
15289,
3,
187,
4718,
187,
187,
4659,
31909,
64,
1400,
5529,
64,
47307,
1843,
64,
27588,
9,
1378,
22,
35488,
64,
69,
29404,
64,
14379,
13,
187,
186,
4708,
22,
35488,
64,
2350,
64,
4877,
64,
43640,
947,
13,
9233,
22,
35488,
64,
48351,
18,
64,
45,
64,
27300,
64,
52,
5518,
13,
37523,
22,
35488,
64,
69,
317,
64,
7135,
558,
187,
187,
4659,
1030,
1577,
23673,
64,
76,
8519,
64,
1826,
37523,
22,
35488,
64,
69,
317,
64,
77,
64,
49862,
426,
187,
186,
34429,
64,
37,
2088,
46,
64,
1400,
5529,
1587,
48351,
418,
353,
2310,
995,
37523,
22,
35488,
64,
69,
29404,
64,
14379,
558,
187,
187,
4659,
31909,
64,
1400,
5529,
64,
47307,
1843,
64,
27588,
9,
1378,
22,
35488,
64,
69,
317,
83,
64,
14379,
13,
187,
186,
4708,
22,
35488,
64,
2350,
64,
4877,
64,
43640,
947,
13,
9233,
22,
35488,
64,
48351,
18,
64,
51,
64,
27300,
64,
52,
5518,
13,
37523,
22,
35488,
64,
69,
317,
64,
7135,
558,
187,
187,
4659,
1030,
1577,
23673,
64,
76,
8519,
64,
1826,
37523,
22,
35488,
64,
69,
317,
64,
83,
64,
49862,
426,
187,
186,
34429,
64,
37,
2088,
46,
64,
1400,
5529,
1587,
48351,
416,
353,
2310,
995,
37523,
22,
35488,
64,
69,
317,
83,
64,
14379,
558,
187,
187,
4353,
37523,
22,
35488,
64,
19511,
9,
2855,
37523,
22,
35488,
64,
13552,
475,
1378,
22,
35488,
10,
187,
92,
187,
186,
1747,
4251,
64,
6343,
9,
1378,
22,
35488,
1168,
1747,
4251,
13,
9233,
22,
35488,
64,
47885,
13,
470,
558,
187,
186,
338,
6522,
1378,
22,
35488,
1168,
261,
64,
8289,
88,
10,
996,
186,
1747,
4251,
64,
6343,
9,
1378,
22,
35488,
1168,
1747,
4251,
13,
9233,
22,
35488,
64,
42,
19,
36,
64,
18129,
13,
337,
558,
187,
94,
187,
30216,
64,
47788,
64,
44335,
9,
1378,
22,
35488,
64,
19511,
558,
187,
187,
6930,
187,
475,
37523,
22,
35488,
64,
2034,
64,
284,
3373,
64,
18255,
64,
7614,
428,
3609,
7412,
19921,
8886,
2603,
323,
247,
873,
273,
15116,
187,
475,
1214,
15658,
27,
1893,
36,
9797,
4445,
2813,
15,
187,
475,
1214,
10978,
64,
12477,
27,
8989,
273,
15116,
15,
187,
475,
1214,
18255,
64,
7614,
27,
8886,
2603,
187,
475,
187,
475,
380,
7412,
19921,
1159,
310,
323,
35576,
353,
22370,
285,
29718,
7519,
15,
5220,
13,
1580,
9233,
22,
35488,
476,
187,
475,
760,
1329,
2629,
4567,
3671,
390,
6705,
3671,
891,
19,
84,
5981,
13,
7412,
19921,
943,
320,
11410,
281,
187,
475,
1329,
2714,
891,
19,
84,
8886,
5981,
824,
347,
17545,
434,
2233,
3671,
9,
2313,
475,
10491,
2281,
481,
187,
475,
7412,
19921,
1159,
588,
3540,
891,
19,
84,
8886,
285,
6635,
247,
3969,
985,
8886,
187,
475,
323,
47618,
15,
831,
1159,
3400,
271,
8990,
281,
3609,
253,
8886,
2603,
323,
247,
187,
475,
873,
273,
15116,
7616,
407,
253,
8989,
15,
1244,
253,
4445,
6254,
588,
1614,
327,
187,
475,
7412,
19921,
323,
841,
15116,
604,
7412,
19921,
310,
4236,
347,
616,
8886,
2603,
15,
187,
1738,
187,
565,
37523,
22,
35488,
64,
2034,
64,
284,
3373,
64,
18255,
64,
7614,
9,
2855,
23673,
64,
33353,
64,
15658,
475,
15658,
13,
996,
186,
10790,
540,
5806,
64,
12477,
13,
10698,
540,
49362,
64,
7614,
10,
187,
92,
187,
186,
16065,
313,
18255,
64,
7614,
10,
551,
187,
186,
5045,
9233,
22,
35488,
64,
22370,
64,
27300,
64,
9316,
27,
187,
186,
5045,
9233,
22,
35488,
64,
22370,
64,
27300,
64,
42,
19,
52,
18,
64,
1719,
19921,
27,
187,
186,
5045,
9233,
22,
35488,
64,
22370,
64,
27300,
64,
42,
19,
52,
19,
64,
1719,
19921,
27,
996,
186,
7054,
28,
535,
186,
6986,
27,
996,
186,
2309,
428,
37213,
28,
187,
186,
94,
535,
186,
338,
313,
10978,
64,
12477,
708,
9233,
22,
35488,
64,
4877,
64,
1267,
8147,
48,
18,
64,
44624,
10,
551,
996,
186,
33999,
64,
33353,
64,
15658,
64,
11183,
64,
11209,
9,
15658,
13,
9233,
22,
35488,
64,
42690,
64,
3125,
8100,
64,
19,
13,
988,
186,
4708,
22,
35488,
64,
44624,
64,
22370,
64,
27300,
64,
18690,
13,
988,
186,
18255,
64,
7614,
5291,
9233,
22,
35488,
64,
44624,
64,
22370,
64,
27300,
64,
52,
5518,
558,
187,
186,
94,
535,
186,
338,
313,
10978,
64,
12477,
708,
9233,
22,
35488,
64,
2350,
64,
1267,
8147,
48,
18,
64,
44624,
10,
551,
996,
186,
33999,
64,
33353,
64,
15658,
64,
11183,
64,
11209,
9,
15658,
13,
9233,
22,
35488,
64,
42690,
64,
3125,
8100,
64,
20,
13,
988,
186,
4708,
22,
35488,
64,
44624,
64,
22370,
64,
27300,
64,
18690,
13,
988,
186,
18255,
64,
7614,
5291,
9233,
22,
35488,
64,
44624,
64,
22370,
64,
27300,
64,
52,
5518,
558,
187,
186,
94,
535,
186,
2309,
470,
28,
187,
94,
187,
30216,
64,
47788,
64,
44335,
9,
1378,
22,
35488,
64,
2034,
64,
284,
3373,
64,
18255,
64,
7614,
558,
187,
187,
4659,
540,
37523,
22,
35488,
64,
8060,
64,
33492,
9,
2855,
23673,
64,
33353,
64,
15658,
475,
15658,
10,
187,
92,
187,
186,
565,
23929,
64,
881,
13,
821,
28,
535,
186,
1208,
426,
23673,
64,
33353,
64,
15658,
64,
1088,
9,
15658,
13,
9233,
22,
35488,
64,
21,
11584,
47,
64,
3077,
64,
24840,
64,
18,
558,
187,
186,
15581,
64,
881,
426,
821,
708,
470,
21671,
71,
17,
28,
187,
186,
33999,
64,
33353,
64,
15658,
64,
6343,
9,
15658,
13,
9233,
22,
35488,
64,
21,
11584,
47,
64,
3077,
64,
24840,
64,
18,
13,
821,
558,
187,
186,
3620,
64,
37463,
9,
15658,
1168,
3620,
13,
17280,
84,
23929,
64,
881,
23869,
89,
61,
79,
995,
4772,
4997,
30738,
23929,
64,
881,
558,
187,
186,
33999,
64,
33353,
64,
15658,
64,
11183,
64,
11209,
9,
15658,
13,
996,
186,
4708,
22,
35488,
64,
52,
1277,
64,
3077,
64,
24840,
64,
19,
13,
470,
89,
740,
13,
470,
89,
740,
558,
535,
186,
2309,
23929,
64,
881,
28,
187,
94,
187,
187,
4659,
2991,
37523,
22,
35488,
64,
14760,
64,
11340,
64,
8060,
64,
20331,
9,
2855,
23673,
64,
33353,
64,
15658,
475,
15658,
13,
996,
186,
10975,
8046,
10,
187,
92,
187,
186,
2855,
37523,
22,
35488,
64,
13552,
475,
1378,
22,
35488,
426,
23673,
64,
33353,
64,
15658,
64,
788,
64,
35805,
2203,
9,
15658,
558,
535,
186,
338,
313,
14760,
10,
551,
996,
186,
33999,
64,
33353,
64,
15658,
64,
11183,
64,
11209,
9,
15658,
13,
9233,
22,
35488,
64,
52,
1277,
64,
3077,
64,
24840,
64,
18,
13,
988,
186,
4708,
22,
35488,
64,
52,
1277,
64,
30741,
53,
64,
35468,
64,
18690,
13,
9233,
22,
35488,
64,
52,
1277,
64,
30741,
53,
64,
35468,
64,
1400,
558,
996,
186,
33999,
64,
33353,
64,
15658,
64,
11183,
64,
11209,
9,
15658,
13,
9233,
22,
35488,
64,
52,
1277,
64,
3077,
64,
24840,
64,
1012,
13,
988,
186,
4708,
22,
35488,
64,
52,
1277,
64,
52,
11862,
64,
18690,
13,
9233,
22,
35488,
64,
52,
1277,
64,
52,
11862,
64,
11584,
47,
558,
996,
186,
33999,
64,
33353,
64,
15658,
64,
6343,
9,
15658,
13,
9233,
22,
35488,
64,
3077,
64,
24840,
64,
18,
13,
470,
89,
31119,
558,
996,
186,
33999,
64,
33353,
64,
15658,
64,
11183,
64,
11209,
9,
15658,
13,
9233,
22,
35488,
64,
21,
11584,
47,
64,
3077,
64,
24840,
64,
19,
13,
988,
186,
4708,
22,
35488,
64,
21,
11584,
47,
64,
3077,
64,
18690,
1040,
9233,
22,
35488,
64,
21,
11584,
47,
64,
3077,
64,
51,
1267,
64,
18690,
13,
988,
186,
4708,
22,
35488,
64,
21,
11584,
47,
64,
3077,
64,
1400,
1040,
9233,
22,
35488,
64,
21,
11584,
47,
64,
3077,
64,
38035,
558,
996,
186,
338,
313,
1378,
22,
35488,
1168,
261,
64,
8289,
88,
10,
988,
186,
33999,
64,
33353,
64,
15658,
64,
11183,
64,
11209,
9,
15658,
13,
2657,
186,
4708,
22,
35488,
64,
27209,
64,
20562,
64,
20,
13,
2657,
186,
4708,
22,
35488,
64,
3077,
64,
27209,
64,
18690,
1040,
9233,
22,
35488,
64,
3077,
64,
27209,
64,
10560,
64,
18690,
13,
2657,
186,
4708,
22,
35488,
64,
3077,
64,
27209,
64,
1400,
1040,
9233,
22,
35488,
64,
3077,
64,
27209,
64,
49,
4641,
558,
996,
186,
7271,
988,
186,
33999,
64,
33353,
64,
15658,
64,
11183,
64,
11209,
9,
15658,
13,
2657,
186,
4708,
22,
35488,
64,
27209,
64,
20562,
64,
20,
13,
9233,
22,
35488,
64,
3077,
64,
27209,
64,
18690,
13,
2657,
186,
4708,
22,
35488,
64,
3077,
64,
27209,
64,
1400,
558,
187,
186,
94,
2010,
551,
996,
186,
33999,
64,
33353,
64,
15658,
64,
11183,
64,
11209,
9,
15658,
13,
9233,
22,
35488,
64,
27209,
64,
20562,
64,
20,
13,
988,
186,
4708,
22,
35488,
64,
3077,
64,
27209,
64,
18690,
13,
9233,
22,
35488,
64,
3077,
64,
27209,
64,
15857,
558,
996,
186,
33999,
64,
33353,
64,
15658,
64,
11183,
64,
11209,
9,
15658,
13,
9233,
22,
35488,
64,
52,
1277,
64,
3077,
64,
24840,
64,
18,
13,
988,
186,
4708,
22,
35488,
64,
52,
1277,
64,
30741,
53,
64,
35468,
64,
18690,
13,
9233,
22,
35488,
64,
52,
1277,
64,
30741,
53,
64,
35468,
64,
15857,
558,
996,
186,
33999,
64,
33353,
64,
15658,
64,
11183,
64,
11209,
9,
15658,
13,
9233,
22,
35488,
64,
21,
11584,
47,
64,
3077,
64,
24840,
64,
19,
13,
988,
186,
4708,
22,
35488,
64,
21,
11584,
47,
64,
3077,
64,
18690,
13,
9233,
22,
35488,
64,
21,
11584,
47,
64,
3077,
64,
15857,
558,
996,
186,
33999,
64,
33353,
64,
15658,
64,
11183,
64,
11209,
9,
15658,
13,
9233,
22,
35488,
64,
21,
11584,
47,
64,
3077,
64,
24840,
64,
19,
13,
988,
186,
4708,
22,
35488,
64,
21,
11584,
47,
64,
3077,
64,
51,
1267,
64,
18690,
13,
9233,
22,
35488,
64,
21,
11584,
47,
64,
3077,
64,
51,
1267,
558,
996,
186,
33999,
64,
33353,
64,
15658,
64,
11183,
64,
11209,
9,
15658,
13,
9233,
22,
35488,
64,
52,
1277,
64,
3077,
64,
24840,
64,
1012,
13,
988,
186,
4708,
22,
35488,
64,
52,
1277,
64,
52,
11862,
64,
18690,
13,
9233,
22,
35488,
64,
52,
1277,
64,
52,
11862,
64,
10560,
558,
187,
186,
94,
187,
94,
187,
187,
6930,
187,
475,
37523,
22,
35488,
64,
2522,
1178,
64,
33492,
428,
22464,
48691,
15,
187,
475,
1214,
15658,
27,
1893,
36,
9797,
4445,
2813,
15,
187,
475,
1214,
18043,
64,
14447,
27,
5332,
5669,
390,
417,
15,
187,
475,
187,
475,
22464,
1880,
310,
48691,
390,
417,
672,
19708,
13400,
15,
187,
475,
187,
475,
16548,
2736,
3708,
15,
187,
1738,
187,
565,
37523,
22,
35488,
64,
2522,
1178,
64,
33492,
9,
2855,
23673,
64,
33353,
64,
15658,
475,
15658,
13,
540,
19708,
64,
14447,
10,
187,
92,
187,
186,
2855,
37523,
22,
35488,
64,
13552,
475,
1378,
22,
35488,
426,
23673,
64,
33353,
64,
15658,
64,
788,
64,
35805,
2203,
9,
15658,
558,
187,
186,
2855,
23673,
64,
33353,
64,
69,
522,
78,
64,
8882,
475,
69,
522,
78,
426,
708,
15658,
1168,
69,
522,
78,
28,
187,
186,
10790,
540,
821,
13,
1385,
28,
535,
186,
338,
313,
18043,
64,
14447,
10,
551,
996,
186,
33999,
64,
33353,
64,
15658,
64,
11183,
64,
11209,
9,
15658,
13,
9233,
22,
35488,
64,
49,
10690,
64,
1539,
37673,
64,
18,
13,
988,
186,
4708,
22,
35488,
64,
49,
10690,
64,
55,
15619,
19,
1040,
9233,
22,
35488,
64,
49,
10690,
64,
9180,
13,
988,
186,
4708,
22,
35488,
64,
49,
10690,
64,
55,
15619,
19,
1040,
9233,
22,
35488,
64,
49,
10690,
64,
9180,
558,
996,
186,
33999,
64,
33353,
64,
15658,
64,
11183,
64,
11209,
9,
15658,
13,
988,
186,
4708,
22,
35488,
64,
49,
10690,
64,
1539,
37673,
64,
18,
13,
9233,
22,
35488,
64,
49,
10690,
64,
42972,
19,
13,
470,
558,
996,
186,
316,
9481,
64,
6324,
9,
1010,
933,
13,
1052,
361,
558,
996,
186,
33999,
64,
33353,
64,
15658,
64,
11183,
64,
11209,
9,
15658,
13,
988,
186,
4708,
22,
35488,
64,
49,
10690,
64,
1539,
37673,
64,
18,
13,
9233,
22,
35488,
64,
49,
10690,
64,
42972,
19,
13,
9233,
22,
35488,
64,
49,
10690,
64,
42972,
19,
558,
996,
186,
33999,
64,
33353,
64,
15658,
64,
11183,
64,
11209,
9,
15658,
13,
9233,
22,
35488,
64,
49,
10690,
64,
1539,
37673,
64,
20,
13,
988,
186,
4708,
22,
35488,
64,
49,
10690,
64,
14922,
43,
13,
9233,
22,
35488,
64,
49,
10690,
64,
14922,
43,
558,
996,
186,
33999,
64,
33353,
64,
15658,
64,
11183,
64,
11209,
9,
15658,
13,
988,
186,
4708,
22,
35488,
64,
18582,
64,
15843,
7538,
64,
7575,
4548,
64,
18,
13,
988,
186,
4708,
22,
35488,
64,
2697,
56,
64,
45,
64,
18690,
1040,
9233,
22,
35488,
64,
2697,
56,
64,
51,
64,
18690,
13,
470,
558,
996,
186,
33999,
64,
33353,
64,
15658,
64,
11183,
64,
11209,
9,
15658,
13,
9233,
22,
35488,
64,
14922,
43,
64,
20562,
64,
18,
13,
988,
186,
4708,
22,
35488,
64,
3125,
2431,
64,
30612,
64,
18690,
13,
9233,
22,
35488,
64,
3125,
2431,
64,
30612,
64,
41,
30292,
558,
6886,
186,
5560,
426,
470,
28,
996,
186,
1208,
426,
23673,
64,
33353,
64,
15658,
64,
1088,
9,
15658,
13,
9233,
22,
35488,
64,
14922,
43,
64,
20562,
64,
19,
10,
988,
186,
7,
9233,
22,
35488,
64,
43,
8100,
64,
10560,
64,
18690,
28,
996,
186,
6050,
313,
1208,
2295,
470,
3857,
1385,
654,
2456,
10,
551,
988,
186,
316,
9481,
64,
6324,
9,
25463,
13,
1458,
933,
558,
988,
186,
1208,
426,
23673,
64,
33353,
64,
15658,
64,
1088,
9,
15658,
13,
2657,
186,
4708,
22,
35488,
64,
14922,
43,
64,
20562,
64,
19,
10,
708,
9233,
22,
35488,
64,
43,
8100,
64,
10560,
64,
18690,
28,
988,
186,
5560,
14788,
996,
186,
94,
6886,
186,
16065,
313,
1208,
10,
551,
996,
186,
5045,
470,
89,
18,
27,
996,
186,
5045,
470,
89,
19,
27,
988,
186,
1378,
22,
35488,
1168,
18043,
64,
881,
426,
322,
6577,
64,
43,
8100,
64,
22225,
10452,
28,
988,
186,
1378,
22,
35488,
64,
14760,
64,
11340,
64,
8060,
64,
20331,
9,
15658,
13,
2032,
558,
988,
186,
7054,
28,
996,
186,
6986,
27,
988,
186,
1378,
22,
35488,
1168,
18043,
64,
881,
426,
322,
6577,
64,
43,
8100,
64,
22225,
6663,
11147,
28,
988,
186,
7054,
28,
996,
186,
94,
6886,
186,
33999,
64,
33353,
64,
15658,
64,
11183,
64,
11209,
9,
15658,
13,
988,
186,
4708,
22,
35488,
64,
18582,
64,
15843,
7538,
64,
7575,
4548,
64,
18,
13,
988,
186,
4708,
22,
35488,
64,
2697,
56,
64,
45,
64,
18690,
1040,
9233,
22,
35488,
64,
2697,
56,
64,
51,
64,
18690,
13,
988,
186,
4708,
22,
35488,
64,
2697,
56,
64,
45,
64,
1400,
1040,
9233,
22,
35488,
64,
2697,
56,
64,
51,
64,
1400,
558,
996,
186,
33999,
64,
33353,
64,
15658,
64,
11183,
64,
11209,
9,
15658,
13,
9233,
22,
35488,
64,
34611,
6159,
1719,
64,
19,
13,
988,
186,
4708,
22,
35488,
64,
49,
10690,
64,
22370,
1099,
46,
64,
18690,
1040,
9233,
22,
35488,
64,
49,
10690,
64,
22370,
18,
46,
64,
18690,
13,
988,
186,
4708,
22,
35488,
64,
49,
10690,
64,
22370,
1099,
46,
64,
7575,
1040,
9233,
22,
35488,
64,
49,
10690,
64,
22370,
18,
46,
64,
7575,
558,
187,
186,
94,
2010,
551,
996,
186,
1378,
22,
35488,
64,
14760,
64,
11340,
64,
8060,
64,
20331,
9,
15658,
13,
3221,
558,
996,
186,
33999,
64,
33353,
64,
15658,
64,
11183,
64,
11209,
9,
15658,
13,
9233,
22,
35488,
64,
14922,
43,
64,
20562,
64,
18,
13,
988,
186,
4708,
22,
35488,
64,
3125,
2431,
64,
30612,
64,
18690,
13,
9233,
22,
35488,
64,
3125,
2431,
64,
30612,
64,
47123,
558,
996,
186,
338,
6522,
33999,
64,
33353,
64,
69,
522,
78,
64,
788,
64,
9852,
64,
8581,
9,
69,
522,
78,
13,
346,
34611,
6159,
1719,
14708,
988,
186,
33999,
64,
33353,
64,
15658,
64,
11183,
64,
11209,
9,
15658,
13,
2657,
186,
4708,
22,
35488,
64,
49,
10690,
64,
1539,
37673,
64,
18,
13,
9233,
22,
35488,
64,
49,
10690,
64,
9180,
13,
470,
558,
996,
186,
338,
6522,
33999,
64,
33353,
64,
69,
522,
78,
64,
788,
64,
9852,
64,
8581,
9,
69,
522,
78,
13,
346,
55,
709,
19,
14708,
988,
186,
33999,
64,
33353,
64,
15658,
64,
11183,
64,
11209,
9,
15658,
13,
2657,
186,
4708,
22,
35488,
64,
49,
10690,
64,
1539,
37673,
64,
18,
13,
9233,
22,
35488,
64,
49,
10690,
64,
55,
15619,
19,
13,
470,
558,
996,
186,
33999,
64,
33353,
64,
15658,
64,
11183,
64,
11209,
9,
15658,
13,
9233,
22,
35488,
64,
49,
10690,
64,
1539,
37673,
64,
20,
13,
988,
186,
4708,
22,
35488,
64,
49,
10690,
64,
14922,
43,
13,
470,
558,
996,
186,
33999,
64,
33353,
64,
15658,
64,
11183,
64,
11209,
9,
15658,
13,
9233,
22,
35488,
64,
34611,
6159,
1719,
64,
19,
13,
988,
186,
4708,
22,
35488,
64,
49,
10690,
64,
22370,
1099,
46,
64,
18690,
1040,
9233,
22,
35488,
64,
49,
10690,
64,
22370,
18,
46,
64,
18690,
13,
988,
186,
4708,
22,
35488,
64,
49,
10690,
64,
22370,
1099,
46,
64,
5414,
1040,
9233,
22,
35488,
64,
49,
10690,
64,
22370,
18,
46,
64,
5414,
558,
6886,
186,
1378,
22,
35488,
1168,
18043,
64,
881,
426,
470,
28,
187,
186,
94,
535,
186,
3620,
64,
37463,
9,
15658,
1168,
3620,
13,
346,
18043,
64,
881,
426,
2462,
69,
61,
79,
995,
37523,
22,
35488,
1168,
18043,
64,
881,
558,
187,
186,
2309,
37523,
22,
35488,
1168,
18043,
64,
881,
28,
187,
94,
187,
30216,
64,
47788,
64,
44335,
9,
1378,
22,
35488,
64,
2522,
1178,
64,
33492,
558,
187,
187,
4659,
540,
37523,
22,
35488,
64,
1178,
64,
18043,
64,
33492,
9,
2855,
23673,
64,
33353,
64,
15658,
475,
15658,
13,
996,
186,
2855,
23673,
64,
33353,
64,
18043,
475,
11285,
64,
18043,
13,
2991,
475,
2203,
10,
187,
92,
187,
186,
2855,
37523,
22,
35488,
64,
13552,
475,
1378,
22,
35488,
426,
23673,
64,
33353,
64,
15658,
64,
788,
64,
35805,
2203,
9,
15658,
558,
535,
186,
1378,
22,
35488,
1168,
11285,
64,
18043,
426,
49343,
64,
18043,
28,
535,
186,
338,
6522,
11285,
64,
18043,
10,
551,
996,
186,
1747,
4251,
64,
11183,
64,
11209,
9,
1378,
22,
35488,
1168,
1747,
4251,
13,
9233,
22,
35488,
64,
27209,
64,
20562,
64,
19,
13,
988,
186,
4708,
22,
35488,
64,
30612,
18,
64,
1400,
64,
18690,
13,
9233,
22,
35488,
64,
30612,
18,
64,
15857,
558,
996,
186,
1747,
4251,
64,
11183,
64,
11209,
9,
1378,
22,
35488,
1168,
1747,
4251,
13,
9233,
22,
35488,
64,
19921,
64,
22370,
64,
20562,
13,
988,
186,
4708,
22,
35488,
64,
49,
4290,
64,
43,
13432,
1040,
9233,
22,
35488,
64,
49,
4290,
64,
43,
6721,
13,
470,
558,
996,
186,
35899,
64,
7555,
19416,
64,
1601,
64,
24335,
6395,
1378,
22,
35488,
1168,
18043,
64,
33492,
64,
1601,
558,
6886,
186,
2309,
470,
28,
187,
186,
94,
535,
186,
338,
6522,
1378,
22,
35488,
1168,
261,
64,
8289,
88,
10,
551,
996,
186,
16065,
313,
1378,
22,
35488,
1168,
81,
2203,
15,
28034,
64,
7614,
10,
551,
996,
186,
5045,
9233,
22,
35488,
64,
30612,
18,
27,
988,
186,
33999,
64,
33353,
64,
15658,
64,
11183,
64,
11209,
9,
15658,
13,
2657,
186,
4708,
22,
35488,
64,
14922,
43,
64,
20562,
64,
19,
13,
9233,
22,
35488,
64,
9465,
64,
30612,
64,
31694,
13,
2657,
186,
4708,
22,
35488,
64,
9465,
64,
30612,
64,
31694,
64,
15157,
31440,
558,
988,
186,
33999,
64,
33353,
64,
15658,
64,
6343,
9,
15658,
13,
9233,
22,
35488,
64,
14922,
43,
64,
20562,
64,
18,
13,
2657,
186,
17,
17176,
30969,
558,
988,
186,
33999,
64,
33353,
64,
15658,
64,
11183,
64,
11209,
9,
15658,
13,
2657,
186,
4708,
22,
35488,
64,
14922,
43,
64,
20562,
64,
20,
13,
9233,
22,
35488,
64,
14922,
43,
64,
1042,
64,
36675,
64,
1400,
13,
2657,
186,
4708,
22,
35488,
64,
14922,
43,
64,
1042,
64,
36675,
64,
1400,
558,
988,
186,
33999,
64,
33353,
64,
15658,
64,
11183,
64,
11209,
9,
15658,
13,
2657,
186,
4708,
22,
35488,
64,
52,
1277,
64,
3077,
64,
24840,
64,
18,
13,
9233,
22,
35488,
64,
52,
1277,
64,
49,
4290,
64,
18690,
13,
2657,
186,
4708,
22,
35488,
64,
52,
1277,
64,
49,
4290,
64,
1400,
558,
988,
186,
1747,
4251,
64,
11183,
64,
11209,
9,
1378,
22,
35488,
1168,
1747,
4251,
13,
9233,
22,
35488,
64,
33752,
64,
20562,
64,
18,
13,
2657,
186,
4708,
22,
35488,
64,
12295,
18,
64,
21793,
64,
18690,
13,
9233,
22,
35488,
64,
12295,
18,
64,
21793,
64,
27209,
558,
988,
186,
1747,
4251,
64,
11183,
64,
11209,
9,
1378,
22,
35488,
1168,
1747,
4251,
13,
9233,
22,
35488,
64,
19921,
64,
22370,
64,
20562,
13,
2657,
186,
4708,
22,
35488,
64,
49,
4290,
64,
27209,
1040,
9233,
22,
35488,
64,
49,
4290,
64,
43,
13432,
1040,
2657,
186,
4708,
22,
35488,
64,
49,
4290,
64,
49091,
13,
9233,
22,
35488,
64,
49,
4290,
64,
27209,
1040,
2657,
186,
4708,
22,
35488,
64,
49,
4290,
64,
43,
13432,
1040,
9233,
22,
35488,
64,
49,
4290,
64,
49091,
558,
988,
186,
1747,
4251,
64,
11183,
64,
11209,
9,
1378,
22,
35488,
1168,
1747,
4251,
13,
9233,
22,
35488,
64,
49,
10690,
64,
1539,
37673,
64,
19,
13,
2657,
186,
4708,
22,
35488,
64,
49,
10690,
64,
43,
13432,
13,
9233,
22,
35488,
64,
49,
10690,
64,
43,
13432,
558,
988,
186,
1747,
4251,
64,
11183,
64,
11209,
9,
1378,
22,
35488,
1168,
1747,
4251,
13,
9233,
22,
35488,
64,
27209,
64,
20562,
64,
19,
13,
2657,
186,
4708,
22,
35488,
64,
30612,
18,
64,
1400,
64,
18690,
1040,
9233,
22,
35488,
64,
30612,
18,
64,
34948,
64,
18690,
13,
2657,
186,
4708,
22,
35488,
64,
30612,
18,
64,
1400,
1040,
9233,
22,
35488,
64,
30612,
18,
64,
34948,
64,
38035,
558,
988,
186,
1747,
4251,
64,
11183,
64,
11209,
9,
1378,
22,
35488,
1168,
1747,
4251,
13,
9233,
22,
35488,
64,
21,
11584,
47,
64,
3077,
64,
24840,
64,
21,
13,
2657,
186,
17,
89,
24,
71,
24,
71,
13,
313,
1378,
22,
35488,
1168,
81,
2203,
15,
2612,
2109,
292,
64,
29000,
5291,
854,
1040,
2657,
186,
1378,
22,
35488,
1168,
81,
2203,
15,
2612,
2109,
292,
64,
29000,
4027,
988,
186,
1747,
4251,
64,
11183,
64,
11209,
9,
1378,
22,
35488,
1168,
1747,
4251,
13,
9233,
22,
35488,
64,
21,
11584,
47,
64,
3077,
64,
24840,
64,
22,
13,
2657,
186,
17,
89,
24,
71,
24,
71,
13,
313,
1378,
22,
35488,
1168,
81,
2203,
15,
2612,
2109,
292,
64,
29000,
5291,
854,
1040,
2657,
186,
1378,
22,
35488,
1168,
81,
2203,
15,
2612,
2109,
292,
64,
29000,
4027,
988,
186,
1747,
4251,
64,
11183,
64,
11209,
9,
1378,
22,
35488,
1168,
1747,
4251,
13,
9233,
22,
35488,
64,
21,
11584,
47,
64,
3077,
64,
24840,
64,
23,
13,
2657,
186,
17,
89,
24,
71,
24,
71,
13,
313,
1378,
22,
35488,
1168,
81,
2203,
15,
2612,
2109,
292,
64,
29000,
5291,
854,
1040,
2657,
186,
1378,
22,
35488,
1168,
81,
2203,
15,
2612,
2109,
292,
64,
29000,
4027,
988,
186,
1747,
4251,
64,
11183,
64,
11209,
9,
1378,
22,
35488,
1168,
1747,
4251,
13,
9233,
22,
35488,
64,
21,
11584,
47,
64,
3077,
64,
24840,
64,
24,
13,
2657,
186,
17,
89,
24,
71,
24,
71,
13,
313,
1378,
22,
35488,
1168,
81,
2203,
15,
2612,
2109,
292,
64,
29000,
5291,
854,
1040,
2657,
186,
1378,
22,
35488,
1168,
81,
2203,
15,
2612,
2109,
292,
64,
29000,
4027,
988,
186,
2307,
64,
7555,
19416,
64,
1601,
9,
10394,
64,
9177,
64,
20246,
64,
88,
82,
13,
2657,
186,
7,
1378,
22,
35488,
1168,
18043,
64,
33492,
64,
1601,
13,
2657,
186,
78,
1704,
84,
64,
936,
64,
75,
1648,
447,
9,
9519,
4027,
988,
186,
7054,
28,
6886,
186,
5045,
9233,
22,
35488,
64,
30612,
64,
15522,
27,
988,
186,
1747,
4251,
64,
11183,
64,
11209,
9,
1378,
22,
35488,
1168,
1747,
4251,
13,
9233,
22,
35488,
64,
27209,
64,
20562,
64,
19,
13,
2657,
186,
4708,
22,
35488,
64,
30612,
18,
64,
1400,
64,
18690,
13,
9233,
22,
35488,
64,
30612,
18,
64,
15857,
558,
988,
186,
1747,
4251,
64,
11183,
64,
11209,
9,
1378,
22,
35488,
1168,
1747,
4251,
13,
9233,
22,
35488,
64,
19921,
64,
22370,
64,
20562,
13,
2657,
186,
4708,
22,
35488,
64,
49,
4290,
64,
43,
13432,
1040,
9233,
22,
35488,
64,
49,
4290,
64,
43,
6721,
13,
470,
558,
988,
186,
7054,
28,
6886,
186,
6986,
27,
988,
186,
3620,
64,
30289,
9,
15658,
1168,
3620,
13,
346,
56,
29487,
34166,
2603,
61,
79,
3287,
988,
186,
7054,
28,
996,
186,
94,
187,
186,
94,
535,
186,
2309,
470,
28,
187,
94,
187,
187,
4353,
37523,
22,
35488,
64,
18043,
64,
33492,
64,
20238,
9,
2855,
789,
64,
2855,
475,
1601,
10,
187,
92,
187,
186,
2855,
37523,
22,
35488,
64,
13552,
475,
1378,
22,
35488,
426,
996,
186,
13299,
64,
1171,
9,
1601,
13,
1577,
37523,
22,
35488,
64,
13552,
13,
19708,
64,
33492,
64,
1601,
15,
1601,
558,
187,
186,
565,
821,
13,
23929,
64,
881,
28,
535,
186,
6050,
6522,
1378,
22,
35488,
1168,
15658,
10,
996,
186,
316,
9481,
64,
6324,
9,
25463,
13,
1458,
933,
558,
535,
186,
6050,
6522,
1378,
22,
35488,
1168,
15658,
1168,
9290,
1168,
43760,
4215,
10,
996,
186,
316,
9481,
64,
6324,
9,
25463,
13,
1458,
933,
558,
535,
186,
22687,
64,
4348,
6395,
1378,
22,
35488,
1168,
1179,
2560,
366,
64,
22687,
558,
535,
186,
1208,
426,
23673,
64,
33353,
64,
15658,
64,
1088,
9,
1378,
22,
35488,
1168,
15658,
13,
9233,
22,
35488,
64,
34,
30612,
18,
64,
20562,
10,
996,
186,
7,
9233,
22,
35488,
64,
43,
13432,
64,
6453,
64,
18690,
28,
187,
186,
338,
6522,
1208,
10,
551,
996,
186,
3122,
19708,
275,
1738,
996,
186,
338,
313,
1378,
22,
35488,
1168,
18043,
64,
881,
2295,
470,
10,
551,
988,
186,
3122,
19708,
369,
562,
13,
1304,
19708,
1511,
1738,
988,
186,
1378,
22,
35488,
1168,
18043,
64,
881,
426,
2657,
186,
1378,
22,
35488,
64,
2522,
1178,
64,
33492,
9,
1378,
22,
35488,
1168,
15658,
13,
337,
558,
996,
186,
94,
2010,
604,
6048,
1378,
22,
35488,
1168,
18043,
64,
881,
708,
322,
6577,
64,
43,
8100,
64,
22225,
10452,
10,
2295,
988,
186,
52,
6577,
64,
43,
8100,
64,
22225,
10452,
10,
551,
988,
186,
3122,
19708,
310,
2168,
275,
13,
1304,
6409,
2362,
1738,
988,
186,
1378,
22,
35488,
1168,
18043,
64,
881,
426,
322,
6577,
64,
43,
8100,
64,
22225,
10452,
28,
988,
186,
15581,
64,
881,
426,
37523,
22,
35488,
64,
8060,
64,
33492,
9,
1378,
22,
35488,
1168,
15658,
558,
988,
186,
6930,
2657,
475,
37523,
22,
35488,
476,
1304,
1264,
9351,
273,
6409,
3879,
13,
2657,
475,
581,
5532,
13,
4021,
5532,
285,
2186,
15,
1723,
13,
2657,
475,
4390,
359,
588,
1304,
6409,
13661,
16,
38296,
2657,
475,
2362,
15,
1893,
512,
253,
1264,
6409,
13576,
403,
2657,
475,
4127,
347,
6409,
13661,
15,
2657,
1738,
988,
186,
16065,
313,
15581,
64,
881,
10,
551,
988,
186,
5045,
470,
89,
33038,
27,
988,
186,
5045,
470,
89,
25851,
27,
988,
186,
5045,
470,
89,
6914,
27,
2657,
186,
1378,
22,
35488,
1168,
18043,
64,
881,
19470,
322,
6577,
64,
43,
8100,
64,
11584,
47,
64,
17,
28,
2657,
186,
7054,
28,
988,
186,
5045,
470,
89,
9138,
27,
988,
186,
5045,
470,
89,
2904,
361,
27,
988,
186,
5045,
470,
89,
2125,
361,
27,
2657,
186,
1378,
22,
35488,
1168,
18043,
64,
881,
19470,
322,
6577,
64,
43,
8100,
64,
11584,
47,
64,
18,
28,
2657,
186,
7054,
28,
988,
186,
5045,
470,
89,
43943,
27,
988,
186,
5045,
470,
89,
28949,
27,
988,
186,
5045,
470,
89,
44135,
27,
2657,
186,
1378,
22,
35488,
1168,
18043,
64,
881,
19470,
322,
6577,
64,
43,
8100,
64,
11584,
47,
64,
19,
28,
2657,
186,
7054,
28,
988,
186,
5045,
470,
89,
31119,
27,
988,
186,
5045,
470,
89,
20515,
27,
988,
186,
5045,
470,
89,
17553,
27,
2657,
186,
1378,
22,
35488,
1168,
18043,
64,
881,
19470,
322,
6577,
64,
43,
8100,
64,
11584,
47,
64,
20,
28,
2657,
186,
7054,
28,
988,
186,
5045,
470,
89,
1418,
27,
3476,
440,
30813,
1738,
2657,
186,
7054,
28,
988,
186,
6986,
27,
2657,
186,
3620,
64,
1000,
9,
1378,
22,
35488,
1168,
15658,
1168,
3620,
13,
2664,
186,
3,
42747,
6409,
2127,
470,
89,
6,
2125,
89,
61,
79,
995,
2664,
186,
15581,
64,
881,
558,
2657,
186,
7054,
28,
988,
186,
94,
996,
186,
94,
187,
186,
94,
2010,
551,
996,
186,
3122,
19708,
562,
1738,
996,
186,
1378,
22,
35488,
1168,
18043,
64,
881,
426,
37523,
22,
35488,
64,
2522,
1178,
64,
33492,
9,
1378,
22,
35488,
1168,
15658,
13,
470,
558,
187,
186,
94,
535,
186,
33999,
64,
33353,
64,
18043,
64,
16223,
9,
1378,
22,
35488,
1168,
11285,
64,
18043,
13,
37523,
22,
35488,
1168,
18043,
64,
881,
13,
996,
186,
52,
6577,
64,
43,
8100,
64,
22225,
10452,
1040,
996,
186,
52,
6577,
64,
43,
8100,
64,
11584,
47,
64,
17,
1040,
322,
6577,
64,
43,
8100,
64,
11584,
47,
64,
18,
1040,
996,
186,
52,
6577,
64,
43,
8100,
64,
11584,
47,
64,
19,
1040,
322,
6577,
64,
43,
8100,
64,
11584,
47,
64,
20,
558,
535,
186,
338,
6522,
1378,
22,
35488,
1168,
261,
64,
8289,
88,
10,
551,
996,
186,
338,
313,
1378,
22,
35488,
1168,
18043,
64,
881,
708,
313,
52,
6577,
64,
43,
8100,
64,
11584,
47,
64,
17,
1040,
322,
6577,
64,
43,
8100,
64,
11584,
47,
64,
18,
1040,
988,
186,
52,
6577,
64,
43,
8100,
64,
11584,
47,
64,
19,
1040,
322,
6577,
64,
43,
8100,
64,
11584,
47,
64,
20,
1228,
988,
186,
44128,
64,
7555,
19416,
64,
1601,
6395,
1378,
22,
35488,
1168,
28034,
64,
5903,
64,
1601,
13,
470,
558,
996,
186,
7271,
988,
186,
35899,
64,
7555,
19416,
64,
1601,
64,
24335,
6395,
1378,
22,
35488,
1168,
28034,
64,
5903,
64,
1601,
558,
187,
186,
94,
535,
186,
22687,
64,
25919,
6395,
1378,
22,
35488,
1168,
1179,
2560,
366,
64,
22687,
558,
187,
94,
187,
30216,
64,
47788,
64,
44335,
9,
1378,
22,
35488,
64,
18043,
64,
33492,
64,
20238,
558,
187,
187,
4659,
1030,
1577,
23673,
64,
76,
8519,
64,
1826,
37523,
22,
35488,
64,
33999,
64,
38211,
5456,
426,
551,
187,
186,
3122,
47522,
16132,
22248,
1738,
187,
186,
34429,
64,
37,
43028,
64,
14135,
55,
1587,
48351,
18,
10223,
2135,
22248,
995,
9233,
22,
35488,
64,
48351,
18,
64,
42503,
64,
36755,
13,
996,
186,
4708,
22,
35488,
64,
45,
64,
36755,
64,
52,
5518,
559,
337,
13,
9233,
22,
35488,
64,
51,
64,
36755,
64,
52,
5518,
559,
337,
13,
11422,
13,
470,
13,
277,
317,
64,
8625,
64,
17945,
87,
582,
535,
186,
3122,
2949,
35476,
22248,
1738,
187,
186,
34429,
64,
47307,
1843,
64,
14135,
55,
1587,
14922,
43,
35476,
22248,
995,
9233,
22,
35488,
64,
14922,
43,
64,
35,
1267,
64,
20562,
13,
996,
186,
4708,
22,
35488,
64,
35,
1267,
64,
14922,
43,
64,
52,
5518,
13,
854,
13,
470,
13,
270,
296,
64,
17945,
87,
582,
535,
186,
3122,
34026,
16132,
22248,
9175,
1738,
187,
186,
34429,
64,
37,
43028,
1587,
1267,
48,
18,
34026,
9426,
459,
26457,
995,
9233,
22,
35488,
64,
1267,
48,
18,
64,
38348,
64,
42503,
64,
36755,
13,
996,
186,
4708,
22,
35488,
64,
45,
64,
46,
23638,
64,
52,
5518,
13,
9233,
22,
35488,
64,
51,
64,
46,
23638,
64,
52,
5518,
13,
337,
13,
337,
582,
187,
186,
34429,
64,
37,
43028,
64,
14135,
55,
1587,
1267,
48,
18,
34026,
9426,
459,
22248,
995,
9233,
22,
35488,
64,
1267,
48,
18,
64,
38348,
64,
42503,
64,
36755,
13,
996,
186,
4708,
22,
35488,
64,
45,
64,
36755,
64,
52,
5518,
559,
337,
13,
9233,
22,
35488,
64,
51,
64,
36755,
64,
52,
5518,
559,
337,
13,
9654,
13,
470,
13,
519,
68,
64,
8625,
64,
17945,
87,
582,
535,
186,
3122,
34026,
35476,
22248,
9175,
1738,
187,
186,
34429,
64,
37,
43028,
64,
14135,
55,
1587,
1267,
48,
18,
34026,
35476,
443,
404,
22248,
995,
9233,
22,
35488,
64,
1267,
48,
18,
64,
38348,
64,
30113,
13,
996,
186,
4708,
22,
35488,
64,
1267,
48,
18,
64,
38348,
64,
45,
64,
35,
1267,
64,
52,
5518,
13,
9233,
22,
35488,
64,
1267,
48,
18,
64,
38348,
64,
51,
64,
35,
1267,
64,
52,
5518,
13,
996,
186,
20,
13,
470,
13,
519,
68,
64,
35441,
64,
17945,
87,
582,
187,
4718,
187,
187,
4659,
540,
37523,
22,
35488,
64,
2154,
64,
2034,
9,
2855,
37523,
22,
35488,
64,
13552,
475,
1378,
22,
35488,
13,
996,
186,
565,
2303,
13,
1030,
540,
2017,
60,
1092,
540,
1979,
10,
187,
92,
187,
186,
565,
891,
28,
535,
186,
338,
313,
1378,
22,
35488,
1168,
10404,
18255,
654,
2303,
10,
551,
996,
186,
3620,
64,
1000,
9,
1378,
22,
35488,
1168,
15658,
1168,
3620,
13,
988,
186,
3,
10404,
18255,
2281,
2462,
69,
310,
1512,
1698,
61,
79,
995,
37523,
22,
35488,
1168,
10404,
18255,
558,
996,
186,
2309,
470,
28,
187,
186,
94,
535,
186,
1542,
313,
74,
426,
470,
28,
891,
654,
1979,
428,
337,
28,
891,
9234,
551,
996,
186,
3620,
64,
37463,
9,
1378,
22,
35488,
1168,
15658,
1168,
3620,
13,
346,
2154,
60,
6,
69,
18772,
6,
69,
61,
79,
995,
891,
13,
2017,
60,
74,
9259,
996,
186,
338,
313,
7831,
475,
2017,
60,
74,
62,
2295,
37523,
22,
35488,
1168,
10404,
18255,
10,
988,
186,
2309,
891,
28,
996,
186,
338,
313,
7831,
475,
2017,
60,
74,
559,
337,
62,
2239,
37523,
22,
35488,
1168,
10404,
18255,
10,
551,
988,
186,
3620,
64,
37463,
9,
1378,
22,
35488,
1168,
15658,
1168,
3620,
13,
2657,
186,
3,
5092,
626,
1089,
2017,
323,
11876,
18255,
2462,
69,
61,
79,
995,
2657,
186,
1378,
22,
35488,
1168,
10404,
18255,
558,
988,
186,
2309,
891,
28,
996,
186,
94,
187,
186,
94,
535,
186,
338,
313,
7831,
475,
2017,
60,
74,
62,
654,
37523,
22,
35488,
1168,
10404,
18255,
10,
996,
186,
3620,
64,
1000,
9,
1378,
22,
35488,
1168,
15658,
1168,
3620,
13,
988,
186,
3,
10404,
18255,
2281,
2462,
69,
310,
1512,
1029,
61,
79,
995,
37523,
22,
35488,
1168,
10404,
18255,
558,
535,
186,
2309,
1979,
428,
337,
28,
187,
94,
187,
187,
6930,
187,
475,
873,
64,
69,
6185,
64,
18255,
428,
6618,
4764,
273,
277,
6185,
15,
187,
475,
187,
475,
1214,
88,
27,
399,
2088,
46,
26706,
15,
187,
475,
1214,
76,
8519,
27,
380,
465,
8519,
273,
436,
26706,
15,
187,
475,
1214,
8045,
27,
11846,
2654,
15,
187,
475,
187,
475,
28890,
277,
6185,
8886,
875,
337,
32023,
285,
495,
32023,
15,
187,
475,
733,
310,
1805,
323,
8886,
281,
16851,
495,
32023,
15,
187,
1738,
187,
4659,
540,
873,
64,
69,
6185,
64,
18255,
9,
2855,
23673,
64,
33353,
64,
69,
522,
78,
64,
14778,
475,
88,
13,
996,
186,
2855,
23673,
64,
76,
8519,
475,
76,
8519,
13,
540,
2362,
10,
187,
92,
187,
186,
2855,
23673,
64,
33353,
64,
15658,
475,
15658,
426,
996,
186,
33999,
64,
33353,
64,
69,
522,
78,
64,
936,
64,
15658,
9,
88,
1168,
69,
522,
78,
558,
187,
186,
2855,
37523,
22,
35488,
64,
13552,
475,
1378,
22,
35488,
426,
23673,
64,
33353,
64,
15658,
64,
788,
64,
35805,
2203,
9,
15658,
558,
187,
186,
565,
27071,
426,
428,
37213,
13,
277,
6185,
64,
18255,
64,
4427,
426,
1884,
3547,
933,
28,
187,
186,
4659,
1030,
540,
2017,
5456,
426,
551,
19,
13,
577,
13,
721,
13,
854,
13,
1249,
13,
1668,
13,
2164,
13,
4567,
13,
5693,
13,
6705,
13,
9161,
13,
12842,
4718,
535,
186,
338,
313,
1378,
22,
35488,
1168,
81,
2203,
15,
69,
6185,
64,
18255,
64,
4427,
10,
996,
186,
69,
6185,
64,
18255,
64,
4427,
426,
37523,
22,
35488,
1168,
81,
2203,
15,
69,
6185,
64,
18255,
64,
4427,
28,
535,
186,
16159,
426,
37523,
22,
35488,
64,
2154,
64,
2034,
9,
1378,
22,
35488,
13,
277,
6185,
64,
18255,
64,
4427,
13,
2017,
13,
6647,
23544,
64,
12771,
9,
2154,
4027,
535,
186,
33999,
64,
33353,
64,
15658,
64,
11183,
64,
11209,
9,
15658,
13,
9233,
22,
35488,
64,
9042,
1864,
64,
20562,
64,
18,
13,
996,
186,
4708,
22,
35488,
64,
9042,
1864,
64,
22370,
64,
18690,
13,
27071,
5291,
9233,
22,
35488,
64,
9042,
1864,
64,
22370,
64,
52,
5518,
558,
535,
186,
2309,
470,
28,
187,
94,
187,
187,
4659,
540,
873,
64,
10978,
64,
18255,
9,
2855,
23673,
64,
33353,
64,
69,
522,
78,
64,
14778,
475,
88,
13,
996,
186,
2855,
23673,
64,
76,
8519,
475,
76,
8519,
13,
540,
2362,
10,
187,
92,
187,
186,
2855,
23673,
64,
33353,
64,
15658,
475,
15658,
426,
996,
186,
33999,
64,
33353,
64,
69,
522,
78,
64,
936,
64,
15658,
9,
88,
1168,
69,
522,
78,
558,
187,
186,
2855,
37523,
22,
35488,
64,
13552,
475,
1378,
22,
35488,
426,
23673,
64,
33353,
64,
15658,
64,
788,
64,
35805,
2203,
9,
15658,
558,
187,
186,
565,
1275,
13,
821,
13,
810,
13,
27071,
426,
428,
37213,
28,
187,
186,
4659,
1030,
540,
2017,
64,
71,
5456,
426,
551,
18,
13,
374,
13,
495,
13,
577,
13,
721,
13,
854,
13,
1249,
13,
1668,
13,
2164,
13,
4567,
13,
5693,
4718,
187,
186,
4659,
1030,
540,
2017,
64,
80,
5456,
426,
551,
18,
13,
374,
13,
577,
13,
721,
13,
854,
13,
1249,
13,
1668,
13,
2164,
13,
4567,
13,
5693,
4718,
535,
186,
338,
313,
1378,
22,
35488,
1168,
261,
64,
8289,
88,
10,
996,
186,
2309,
470,
28,
535,
186,
1208,
426,
23673,
64,
33353,
64,
15658,
64,
1088,
9,
15658,
13,
9233,
22,
35488,
64,
33752,
64,
20562,
64,
18,
10,
708,
996,
186,
4708,
22,
35488,
64,
12295,
21,
64,
21793,
64,
18690,
28,
187,
186,
338,
313,
88,
1168,
11551,
2295,
9233,
22,
35488,
64,
49,
10690,
64,
38348,
64,
52,
18,
39,
64,
14609,
3857,
996,
186,
1208,
2295,
9233,
22,
35488,
64,
12295,
21,
64,
21793,
64,
2350,
3717,
1194,
19,
10,
996,
186,
709,
426,
17558,
475,
37523,
22,
35488,
1168,
32888,
777,
60,
4708,
22,
35488,
64,
34,
3801,
19,
2194,
187,
186,
7271,
996,
186,
709,
426,
17558,
475,
37523,
22,
35488,
1168,
32888,
777,
60,
4708,
22,
35488,
64,
34,
3801,
18,
2194,
535,
186,
16159,
426,
37523,
22,
35488,
64,
2154,
64,
2034,
9,
1378,
22,
35488,
13,
1275,
13,
2017,
64,
71,
13,
6647,
23544,
64,
12771,
9,
2154,
64,
71,
4027,
535,
186,
338,
313,
88,
1168,
11551,
2295,
9233,
22,
35488,
64,
49,
10690,
64,
38348,
64,
52,
18,
39,
64,
14609,
10,
996,
186,
1747,
426,
9233,
22,
35488,
64,
42690,
64,
3125,
8100,
64,
20,
28,
187,
186,
7271,
996,
186,
1747,
426,
9233,
22,
35488,
64,
42690,
64,
3125,
8100,
64,
19,
28,
535,
186,
33999,
64,
33353,
64,
15658,
64,
11183,
64,
11209,
9,
15658,
13,
810,
13,
996,
186,
4708,
22,
35488,
64,
44624,
64,
22370,
64,
37151,
64,
18690,
13,
27071,
5291,
9233,
22,
35488,
64,
44624,
64,
22370,
64,
37151,
64,
52,
5518,
558,
535,
186,
3122,
3609,
689,
3410,
2281,
1738,
187,
186,
1542,
313,
16159,
426,
470,
28,
27071,
654,
6647,
23544,
64,
12771,
9,
2154,
64,
80,
558,
27071,
9234,
551,
996,
186,
338,
313,
1378,
22,
35488,
1168,
10404,
18255,
11049,
1249,
21340,
933,
475,
2017,
64,
80,
60,
16159,
3291,
988,
186,
7054,
28,
187,
186,
94,
535,
186,
33999,
64,
33353,
64,
15658,
64,
11183,
64,
11209,
9,
15658,
13,
9233,
22,
35488,
64,
2350,
4877,
64,
22370,
64,
18,
13,
996,
186,
4708,
22,
35488,
64,
38348,
64,
2697,
51,
64,
18690,
1040,
9233,
22,
35488,
64,
48351,
64,
2697,
51,
64,
18690,
13,
996,
186,
9,
16159,
5291,
9233,
22,
35488,
64,
38348,
64,
2697,
51,
64,
52,
5518,
10,
1040,
313,
16159,
5291,
9233,
22,
35488,
64,
48351,
64,
2697,
51,
64,
52,
5518,
4027,
535,
186,
2309,
470,
28,
187,
94,
187,
187,
4659,
540,
310,
64,
10404,
64,
18255,
64,
4064,
64,
50153,
18,
9,
2855,
23673,
64,
33353,
64,
69,
522,
78,
64,
14778,
475,
88,
13,
996,
186,
2855,
23673,
64,
33353,
64,
69,
522,
78,
64,
14778,
475,
84,
750,
10,
187,
92,
187,
186,
10790,
540,
821,
28,
187,
186,
2855,
23673,
64,
33353,
64,
15658,
475,
15658,
426,
996,
186,
33999,
64,
33353,
64,
69,
522,
78,
64,
936,
64,
15658,
9,
88,
1168,
69,
522,
78,
558,
535,
186,
1208,
426,
23673,
64,
33353,
64,
15658,
64,
1088,
9,
15658,
13,
9233,
22,
35488,
64,
5990,
35,
64,
22370,
558,
187,
186,
1208,
7196,
9233,
22,
35488,
64,
52,
22370,
64,
31694,
64,
18690,
28,
187,
186,
338,
313,
1208,
2295,
9233,
22,
35488,
64,
52,
22370,
64,
31694,
64,
42690,
18,
10,
996,
186,
2309,
337,
28,
187,
186,
7271,
996,
186,
2309,
470,
28,
187,
94,
187,
187,
4659,
540,
310,
64,
10404,
64,
18255,
64,
4064,
64,
50153,
19,
9,
2855,
23673,
64,
33353,
64,
69,
522,
78,
64,
14778,
475,
88,
13,
996,
186,
2855,
23673,
64,
33353,
64,
69,
522,
78,
64,
14778,
475,
84,
750,
10,
187,
92,
187,
186,
10790,
540,
821,
28,
187,
186,
2855,
23673,
64,
33353,
64,
15658,
475,
15658,
426,
996,
186,
33999,
64,
33353,
64,
69,
522,
78,
64,
936,
64,
15658,
9,
88,
1168,
69,
522,
78,
558,
535,
186,
1208,
426,
23673,
64,
33353,
64,
15658,
64,
1088,
9,
15658,
13,
9233,
22,
35488,
64,
5990,
35,
64,
22370,
558,
187,
186,
1208,
7196,
9233,
22,
35488,
64,
52,
22370,
64,
31694,
64,
18690,
28,
187,
186,
338,
313,
1208,
2295,
9233,
22,
35488,
64,
52,
22370,
64,
31694,
64,
42690,
19,
10,
996,
186,
2309,
337,
28,
187,
186,
7271,
996,
186,
2309,
470,
28,
187,
94,
187,
187,
4659,
540,
310,
64,
5302,
64,
284,
3373,
9,
2855,
23673,
64,
33353,
64,
69,
522,
78,
64,
14778,
475,
88,
13,
996,
186,
2855,
23673,
64,
33353,
64,
69,
522,
78,
64,
14778,
475,
84,
750,
10,
187,
92,
187,
186,
10790,
540,
810,
13,
5333,
13,
821,
28,
187,
186,
2855,
23673,
64,
33353,
64,
15658,
475,
15658,
426,
996,
186,
33999,
64,
33353,
64,
69,
522,
78,
64,
936,
64,
15658,
9,
88,
1168,
69,
522,
78,
558,
535,
186,
16065,
313,
88,
1168,
11551,
10,
551,
187,
186,
5045,
9233,
22,
35488,
64,
38348,
64,
1267,
48,
18,
64,
1719,
19921,
64,
52,
5518,
27,
996,
186,
1747,
426,
9233,
22,
35488,
64,
42690,
64,
3125,
8100,
64,
20,
28,
996,
186,
11551,
426,
9233,
22,
35488,
64,
44624,
64,
22370,
64,
27300,
64,
52,
5518,
28,
996,
186,
7054,
28,
187,
186,
5045,
9233,
22,
35488,
64,
48351,
64,
1267,
48,
18,
64,
1719,
19921,
64,
52,
5518,
27,
996,
186,
1747,
426,
9233,
22,
35488,
64,
42690,
64,
3125,
8100,
64,
19,
28,
996,
186,
11551,
426,
9233,
22,
35488,
64,
44624,
64,
22370,
64,
27300,
64,
52,
5518,
28,
996,
186,
7054,
28,
187,
186,
6986,
27,
996,
186,
2309,
470,
28,
187,
186,
94,
535,
186,
1208,
426,
313,
33999,
64,
33353,
64,
15658,
64,
1088,
9,
15658,
13,
810,
10,
11396,
5333,
10,
708,
470,
14506,
28,
187,
186,
16065,
313,
1208,
10,
551,
187,
186,
5045,
9233,
22,
35488,
64,
22370,
64,
27300,
64,
42,
19,
52,
18,
64,
1719,
19921,
27,
187,
186,
5045,
9233,
22,
35488,
64,
22370,
64,
27300,
64,
42,
19,
52,
19,
64,
1719,
19921,
27,
996,
186,
2309,
337,
28,
187,
186,
6986,
27,
996,
186,
2309,
470,
28,
187,
186,
94,
187,
94,
187,
187,
3122,
16132,
22347,
254,
1738,
187,
4659,
1030,
1577,
23673,
64,
76,
8519,
64,
1826,
37523,
22,
35488,
64,
11769,
18,
64,
324,
68,
64,
77,
64,
24706,
5456,
426,
551,
187,
186,
34429,
64,
37,
2088,
46,
64,
47307,
1843,
1587,
38348,
18,
26457,
995,
9233,
22,
35488,
64,
1267,
48,
18,
64,
38348,
64,
43640,
947,
13,
988,
186,
4708,
22,
35488,
64,
46,
64,
1267,
48,
18,
64,
38348,
64,
45,
18,
64,
52,
5518,
13,
337,
13,
337,
582,
187,
186,
34429,
64,
37,
2088,
46,
64,
47307,
1843,
1587,
38348,
19,
26457,
995,
9233,
22,
35488,
64,
1267,
48,
18,
64,
38348,
64,
43640,
947,
13,
988,
186,
4708,
22,
35488,
64,
46,
64,
1267,
48,
18,
64,
38348,
64,
45,
19,
64,
52,
5518,
13,
337,
13,
337,
582,
187,
4718,
187,
187,
4659,
1030,
1577,
23673,
64,
76,
8519,
64,
1826,
37523,
22,
35488,
64,
11769,
18,
64,
324,
68,
64,
83,
64,
24706,
5456,
426,
551,
187,
186,
34429,
64,
37,
2088,
46,
64,
47307,
1843,
1587,
38348,
18,
26457,
995,
9233,
22,
35488,
64,
1267,
48,
18,
64,
38348,
64,
43640,
947,
13,
988,
186,
4708,
22,
35488,
64,
46,
64,
1267,
48,
18,
64,
38348,
64,
51,
18,
64,
52,
5518,
13,
337,
13,
337,
582,
187,
186,
34429,
64,
37,
2088,
46,
64,
47307,
1843,
1587,
38348,
19,
26457,
995,
9233,
22,
35488,
64,
1267,
48,
18,
64,
38348,
64,
43640,
947,
13,
988,
186,
4708,
22,
35488,
64,
46,
64,
1267,
48,
18,
64,
38348,
64,
51,
19,
64,
52,
5518,
13,
337,
13,
337,
582,
187,
4718,
187,
187,
4659,
1030,
1577,
23673,
64,
76,
8519,
64,
1826,
37523,
22,
35488,
64,
69,
317,
64,
77,
64,
24706,
5456,
426,
551,
187,
186,
34429,
64,
37,
2088,
46,
64,
47307,
1843,
1587,
6812,
40470,
34026,
26457,
995,
9233,
22,
35488,
64,
2350,
64,
4877,
64,
43640,
947,
13,
988,
186,
4708,
22,
35488,
64,
46,
64,
2350,
5883,
10569,
64,
45,
64,
52,
5518,
13,
337,
13,
337,
582,
187,
186,
34429,
64,
37,
2088,
46,
64,
47307,
1843,
1587,
48351,
18,
26457,
995,
9233,
22,
35488,
64,
2350,
64,
4877,
64,
43640,
947,
13,
988,
186,
4708,
22,
35488,
64,
46,
64,
48351,
18,
64,
45,
64,
52,
5518,
13,
337,
13,
337,
582,
187,
4718,
187,
187,
4659,
1030,
1577,
23673,
64,
76,
8519,
64,
1826,
37523,
22,
35488,
64,
69,
317,
64,
83,
64,
24706,
5456,
426,
551,
187,
186,
34429,
64,
37,
2088,
46,
64,
47307,
1843,
1587,
6812,
40470,
34026,
26457,
995,
9233,
22,
35488,
64,
2350,
64,
4877,
64,
43640,
947,
13,
988,
186,
4708,
22,
35488,
64,
46,
64,
2350,
5883,
10569,
64,
51,
64,
52,
5518,
13,
337,
13,
337,
582,
187,
186,
34429,
64,
37,
2088,
46,
64,
47307,
1843,
1587,
48351,
18,
26457,
995,
9233,
22,
35488,
64,
2350,
64,
4877,
64,
43640,
947,
13,
988,
186,
4708,
22,
35488,
64,
46,
64,
48351,
18,
64,
51,
64,
52,
5518,
13,
337,
13,
337,
582,
187,
4718,
187,
187,
4659,
1030,
1577,
23673,
64,
76,
8519,
64,
1826,
37523,
22,
35488,
64,
11769,
18,
64,
69,
317,
64,
77,
64,
24706,
5456,
426,
551,
187,
186,
34429,
64,
37,
2088,
46,
64,
47307,
1843,
1587,
48351,
418,
18,
26457,
995,
9233,
22,
35488,
64,
1267,
48,
18,
64,
48351,
64,
43640,
947,
13,
988,
186,
4708,
22,
35488,
64,
46,
64,
48351,
64,
45,
18,
64,
1267,
48,
64,
45,
64,
52,
5518,
13,
337,
13,
337,
582,
187,
186,
34429,
64,
37,
2088,
46,
64,
47307,
1843,
1587,
48351,
416,
18,
26457,
995,
9233,
22,
35488,
64,
1267,
48,
18,
64,
48351,
64,
43640,
947,
13,
988,
186,
4708,
22,
35488,
64,
46,
64,
48351,
64,
51,
18,
64,
1267,
48,
64,
45,
64,
52,
5518,
13,
337,
13,
337,
582,
187,
4718,
187,
187,
4659,
1030,
1577,
23673,
64,
76,
8519,
64,
1826,
37523,
22,
35488,
64,
11769,
18,
64,
69,
317,
64,
83,
64,
24706,
5456,
426,
551,
187,
186,
34429,
64,
37,
2088,
46,
64,
47307,
1843,
1587,
48351,
418,
18,
26457,
995,
9233,
22,
35488,
64,
1267,
48,
18,
64,
48351,
64,
43640,
947,
13,
988,
186,
4708,
22,
35488,
64,
46,
64,
48351,
64,
45,
18,
64,
1267,
48,
64,
51,
64,
52,
5518,
13,
337,
13,
337,
582,
187,
186,
34429,
64,
37,
2088,
46,
64,
47307,
1843,
1587,
48351,
416,
18,
26457,
995,
9233,
22,
35488,
64,
1267,
48,
18,
64,
48351,
64,
43640,
947,
13,
988,
186,
4708,
22,
35488,
64,
46,
64,
48351,
64,
51,
18,
64,
1267,
48,
64,
51,
64,
52,
5518,
13,
337,
13,
337,
582,
187,
4718,
187,
187,
3122,
49470,
19832,
22347,
254,
1738,
187,
4659,
1030,
1577,
23673,
64,
76,
8519,
64,
1826,
37523,
22,
35488,
64,
2845,
18,
64,
77,
64,
24706,
5456,
426,
551,
187,
186,
34429,
64,
37,
2088,
46,
64,
47307,
1843,
1587,
14922,
43,
26457,
995,
9233,
22,
35488,
64,
34181,
64,
43640,
947,
13,
988,
186,
4708,
22,
35488,
64,
46,
64,
14922,
43,
64,
26889,
18,
64,
45,
64,
52,
5518,
13,
337,
13,
337,
582,
187,
4718,
187,
187,
3122,
3915,
48,
18,
34026,
18,
12269,
1738,
187,
3122,
42311,
14,
1731,
544,
1012,
62,
544,
22,
62,
1738,
187,
4659,
1030,
1018,
475,
1030,
37523,
22,
35488,
64,
11769,
18,
64,
324,
68,
18,
64,
7614,
5456,
426,
551,
187,
186,
3,
48351,
353,
10569,
995,
346,
38348,
3,
187,
4718,
187,
187,
4659,
31909,
64,
1400,
5529,
64,
47307,
1843,
64,
27588,
9,
187,
186,
1378,
22,
35488,
64,
11769,
18,
64,
324,
68,
18,
77,
64,
14379,
13,
9233,
22,
35488,
64,
1267,
48,
18,
64,
38348,
64,
43640,
947,
13,
187,
186,
4708,
22,
35488,
64,
1267,
48,
18,
64,
38348,
18,
45,
64,
31694,
64,
52,
5518,
13,
37523,
22,
35488,
64,
11769,
18,
64,
324,
68,
18,
64,
7614,
558,
187,
187,
4659,
1030,
1577,
23673,
64,
76,
8519,
64,
1826,
37523,
22,
35488,
64,
11769,
18,
64,
324,
68,
18,
77,
64,
49862,
426,
187,
186,
34429,
64,
37,
2088,
46,
64,
1400,
5529,
1587,
6812,
40470,
18,
34026,
18,
45,
12269,
995,
37523,
22,
35488,
64,
11769,
18,
64,
324,
68,
18,
77,
64,
14379,
558,
187,
187,
4659,
31909,
64,
1400,
5529,
64,
47307,
1843,
64,
27588,
9,
187,
186,
1378,
22,
35488,
64,
11769,
18,
64,
324,
68,
18,
83,
64,
14379,
13,
9233,
22,
35488,
64,
1267,
48,
18,
64,
38348,
64,
43640,
947,
13,
187,
186,
4708,
22,
35488,
64,
1267,
48,
18,
64,
38348,
18,
51,
64,
31694,
64,
52,
5518,
13,
37523,
22,
35488,
64,
11769,
18,
64,
324,
68,
18,
64,
7614,
558,
187,
187,
4659,
1030,
1577,
23673,
64,
76,
8519,
64,
1826,
37523,
22,
35488,
64,
11769,
18,
64,
324,
68,
18,
83,
64,
49862,
426,
187,
186,
34429,
64,
37,
2088,
46,
64,
1400,
5529,
1587,
6812,
40470,
18,
34026,
18,
45,
12269,
995,
37523,
22,
35488,
64,
11769,
18,
64,
324,
68,
18,
83,
64,
14379,
558,
187,
187,
3122,
3915,
48,
18,
34026,
12269,
1738,
187,
3122,
42311,
14,
1731,
544,
883,
27,
740,
62,
544,
20,
27,
19,
62,
1738,
187,
4659,
1030,
1018,
475,
1030,
37523,
22,
35488,
64,
11769,
18,
64,
324,
68,
64,
7614,
5456,
426,
551,
187,
186,
3,
38348,
18,
418,
995,
346,
38348,
18,
416,
3,
187,
4718,
187,
187,
4659,
31909,
64,
1400,
5529,
64,
47307,
1843,
64,
27588,
9,
187,
186,
1378,
22,
35488,
64,
11769,
18,
64,
324,
498,
64,
14379,
13,
9233,
22,
35488,
64,
1267,
48,
18,
64,
38348,
64,
43640,
947,
13,
187,
186,
4708,
22,
35488,
64,
1267,
48,
18,
64,
2350,
3207,
64,
31694,
64,
52,
5518,
13,
37523,
22,
35488,
64,
11769,
18,
64,
324,
68,
64,
7614,
558,
187,
187,
4659,
1030,
1577,
23673,
64,
76,
8519,
64,
1826,
37523,
22,
35488,
64,
11769,
18,
64,
324,
498,
64,
49862,
426,
187,
186,
34429,
64,
37,
2088,
46,
64,
1400,
5529,
1587,
6812,
40470,
18,
5446,
3207,
12269,
995,
37523,
22,
35488,
64,
11769,
18,
64,
324,
498,
64,
14379,
558,
187,
187,
4659,
31909,
64,
1400,
5529,
64,
47307,
1843,
64,
27588,
9,
187,
186,
1378,
22,
35488,
64,
11769,
18,
64,
324,
7083,
64,
14379,
13,
9233,
22,
35488,
64,
1267,
48,
18,
64,
38348,
64,
43640,
947,
13,
187,
186,
4708,
22,
35488,
64,
1267,
48,
18,
64,
2350,
1311,
64,
31694,
64,
52,
5518,
13,
37523,
22,
35488,
64,
11769,
18,
64,
324,
68,
64,
7614,
558,
187,
187,
4659,
1030,
1577,
23673,
64,
76,
8519,
64,
1826,
37523,
22,
35488,
64,
11769,
18,
64,
324,
7083,
64,
49862,
426,
187,
186,
34429,
64,
37,
2088,
46,
64,
1400,
5529,
1587,
6812,
40470,
18,
5446,
1311,
12269,
995,
37523,
22,
35488,
64,
11769,
18,
64,
324,
7083,
64,
14379,
558,
187,
187,
3122,
3915,
48,
18,
34026,
19,
12269,
1738,
187,
3122,
42311,
14,
1731,
544,
805,
62,
544,
21,
62,
1738,
187,
4659,
1030,
1018,
475,
1030,
37523,
22,
35488,
64,
11769,
18,
64,
324,
68,
19,
64,
7614,
5456,
426,
551,
187,
186,
3,
48351,
353,
10569,
995,
346,
9042,
1864,
3,
187,
4718,
187,
187,
4659,
31909,
64,
1400,
5529,
64,
47307,
1843,
64,
27588,
9,
187,
186,
1378,
22,
35488,
64,
11769,
18,
64,
324,
68,
19,
77,
64,
14379,
13,
9233,
22,
35488,
64,
1267,
48,
18,
64,
38348,
64,
43640,
947,
13,
187,
186,
4708,
22,
35488,
64,
1267,
48,
18,
64,
38348,
19,
45,
64,
31694,
64,
52,
5518,
13,
37523,
22,
35488,
64,
11769,
18,
64,
324,
68,
19,
64,
7614,
558,
187,
187,
4659,
1030,
1577,
23673,
64,
76,
8519,
64,
1826,
37523,
22,
35488,
64,
11769,
18,
64,
324,
68,
19,
77,
64,
49862,
426,
187,
186,
34429,
64,
37,
2088,
46,
64,
1400,
5529,
1587,
6812,
40470,
18,
34026,
19,
45,
12269,
995,
37523,
22,
35488,
64,
11769,
18,
64,
324,
68,
19,
77,
64,
14379,
558,
187,
187,
4659,
31909,
64,
1400,
5529,
64,
47307,
1843,
64,
27588,
9,
187,
186,
1378,
22,
35488,
64,
11769,
18,
64,
324,
68,
19,
83,
64,
14379,
13,
9233,
22,
35488,
64,
1267,
48,
18,
64,
38348,
64,
43640,
947,
13,
187,
186,
4708,
22,
35488,
64,
1267,
48,
18,
64,
38348,
19,
51,
64,
31694,
64,
52,
5518,
13,
37523,
22,
35488,
64,
11769,
18,
64,
324,
68,
19,
64,
7614,
558,
187,
187,
4659,
1030,
1577,
23673,
64,
76,
8519,
64,
1826,
37523,
22,
35488,
64,
11769,
18,
64,
324,
68,
19,
83,
64,
49862,
426,
187,
186,
34429,
64,
37,
2088,
46,
64,
1400,
5529,
1587,
6812,
40470,
18,
34026,
19,
51,
12269,
995,
37523,
22,
35488,
64,
11769,
18,
64,
324,
68,
19,
83,
64,
14379,
558,
187,
187,
3122,
42311,
14,
2787,
544,
23,
27,
21,
62,
309,
19,
52,
18,
34026,
941,
4328,
1738,
187,
4659,
1030,
10698,
540,
37523,
22,
35488,
64,
338,
18,
64,
324,
68,
64,
31873,
64,
8858,
5456,
426,
551,
187,
186,
17,
13,
187,
186,
19,
13,
187,
186,
21,
13,
187,
186,
23,
13,
187,
4718,
187,
187,
4659,
1030,
1018,
475,
1030,
37523,
22,
35488,
64,
338,
18,
64,
324,
68,
64,
31873,
64,
7614,
5456,
426,
551,
187,
186,
3,
48589,
470,
995,
346,
48589,
374,
995,
346,
48589,
577,
995,
346,
48589,
721,
3,
187,
4718,
187,
187,
4659,
31909,
64,
22355,
64,
1400,
5529,
64,
47307,
1843,
64,
27588,
9,
1378,
22,
35488,
64,
338,
18,
64,
324,
68,
64,
31873,
64,
14379,
13,
187,
186,
4708,
22,
35488,
64,
53,
9042,
64,
20562,
13,
9233,
22,
35488,
64,
53,
9042,
64,
38348,
64,
45,
4280,
64,
52,
5518,
13,
9233,
22,
35488,
64,
53,
9042,
64,
38348,
64,
45,
4280,
64,
18690,
13,
187,
186,
1378,
22,
35488,
64,
338,
18,
64,
324,
68,
64,
31873,
64,
7614,
13,
37523,
22,
35488,
64,
338,
18,
64,
324,
68,
64,
31873,
64,
8858,
558,
187,
187,
4659,
1030,
1577,
23673,
64,
76,
8519,
64,
1826,
37523,
22,
35488,
64,
338,
18,
64,
324,
68,
64,
31873,
64,
49862,
426,
187,
186,
34429,
64,
37,
2088,
46,
64,
1400,
5529,
1587,
3801,
18,
34026,
7335,
302,
4328,
995,
37523,
22,
35488,
64,
338,
18,
64,
324,
68,
64,
31873,
64,
14379,
558,
187,
187,
3122,
49470,
47522,
418,
18,
12269,
13,
49470,
47522,
416,
18,
12269,
8480,
187,
3122,
42311,
14,
19,
35,
544,
21,
1092,
42311,
14,
19,
35,
544,
17,
62,
8480,
187,
4659,
1030,
1018,
475,
1030,
37523,
22,
35488,
64,
13256,
64,
69,
317,
18,
64,
7614,
5456,
426,
551,
187,
186,
3,
6812,
40470,
18,
47522,
22347,
254,
995,
346,
48351,
18,
3,
187,
4718,
187,
187,
4659,
31909,
64,
1400,
5529,
64,
47307,
1843,
64,
27588,
9,
187,
186,
1378,
22,
35488,
64,
13256,
64,
69,
317,
64,
77,
18,
64,
14379,
13,
9233,
22,
35488,
64,
34,
64,
48351,
18,
64,
46,
21466,
13,
187,
186,
4708,
22,
35488,
64,
34,
64,
48351,
45,
18,
64,
52,
5518,
13,
37523,
22,
35488,
64,
13256,
64,
69,
317,
18,
64,
7614,
558,
187,
187,
4659,
1030,
1577,
23673,
64,
76,
8519,
64,
1826,
37523,
22,
35488,
64,
13256,
64,
69,
317,
64,
77,
18,
64,
49862,
426,
187,
186,
34429,
64,
37,
2088,
46,
64,
1400,
5529,
1587,
31280,
462,
47522,
418,
18,
12269,
995,
37523,
22,
35488,
64,
13256,
64,
69,
317,
64,
77,
18,
64,
14379,
558,
187,
187,
4659,
31909,
64,
1400,
5529,
64,
47307,
1843,
64,
27588,
9,
187,
186,
1378,
22,
35488,
64,
13256,
64,
69,
317,
64,
83,
18,
64,
14379,
13,
9233,
22,
35488,
64,
34,
64,
48351,
18,
64,
46,
21466,
13,
187,
186,
4708,
22,
35488,
64,
34,
64,
4877,
1311,
18,
64,
52,
5518,
13,
37523,
22,
35488,
64,
13256,
64,
69,
317,
18,
64,
7614,
558,
187,
187,
4659,
1030,
1577,
23673,
64,
76,
8519,
64,
1826,
37523,
22,
35488,
64,
13256,
64,
69,
317,
64,
83,
18,
64,
49862,
426,
187,
186,
34429,
64,
37,
2088,
46,
64,
1400,
5529,
1587,
31280,
462,
47522,
416,
18,
12269,
995,
37523,
22,
35488,
64,
13256,
64,
69,
317,
64,
83,
18,
64,
14379,
558,
187,
187,
3122,
6282,
26457,
1738,
187,
4659,
1030,
1577,
23673,
64,
76,
8519,
64,
1826,
288,
4818,
64,
16065,
426,
187,
186,
34429,
64,
37,
2088,
46,
64,
47307,
1843,
64,
32364,
3519,
1830,
8908,
1587,
37279,
995,
9233,
22,
35488,
64,
18582,
64,
20562,
64,
18,
13,
996,
186,
4708,
22,
35488,
64,
45,
64,
46,
23638,
64,
52,
5518,
13,
337,
13,
337,
558,
187,
4659,
1030,
1577,
23673,
64,
76,
8519,
64,
1826,
288,
1831,
64,
16065,
426,
187,
186,
34429,
64,
37,
2088,
46,
64,
47307,
1843,
64,
32364,
3519,
1830,
8908,
1587,
37279,
995,
9233,
22,
35488,
64,
18582,
64,
20562,
64,
18,
13,
996,
186,
4708,
22,
35488,
64,
51,
64,
46,
23638,
64,
52,
5518,
13,
337,
13,
337,
558,
187,
187,
4659,
540,
37523,
22,
35488,
64,
28368,
64,
8045,
9,
2855,
23673,
64,
33353,
64,
69,
522,
78,
64,
14778,
475,
88,
13,
996,
186,
2855,
23673,
64,
76,
8519,
475,
76,
8519,
13,
540,
2362,
10,
187,
92,
187,
186,
2855,
23673,
64,
33353,
64,
15658,
475,
15658,
426,
996,
186,
33999,
64,
33353,
64,
69,
522,
78,
64,
936,
64,
15658,
9,
88,
1168,
69,
522,
78,
558,
535,
186,
16065,
313,
8045,
10,
551,
187,
186,
5045,
322,
6577,
64,
34429,
64,
37,
2088,
46,
64,
14364,
64,
9122,
54,
27,
996,
186,
33999,
64,
33353,
64,
15658,
64,
6343,
9,
15658,
13,
988,
186,
4708,
22,
35488,
64,
18582,
64,
21273,
1864,
64,
20562,
64,
19,
13,
470,
89,
26313,
558,
996,
186,
33999,
64,
33353,
64,
15658,
64,
6343,
9,
15658,
13,
988,
186,
4708,
22,
35488,
64,
18582,
64,
20562,
64,
19,
13,
470,
89,
48616,
558,
996,
186,
33999,
64,
33353,
64,
15658,
64,
11183,
64,
11209,
9,
15658,
13,
988,
186,
4708,
22,
35488,
64,
32568,
2795,
64,
18,
13,
470,
89,
1549,
13,
470,
89,
1549,
558,
996,
186,
33999,
64,
33353,
64,
15658,
64,
11183,
64,
11209,
9,
15658,
13,
988,
186,
4708,
22,
35488,
64,
48351,
64,
38348,
64,
42503,
64,
36755,
18,
13,
470,
89,
361,
68,
17,
13,
470,
89,
44135,
558,
996,
186,
7054,
28,
535,
186,
5045,
322,
6577,
64,
34429,
64,
37,
2088,
46,
64,
15743,
64,
49,
7414,
27,
996,
186,
33999,
64,
33353,
64,
15658,
64,
11183,
64,
11209,
9,
15658,
13,
988,
186,
4708,
22,
35488,
64,
32568,
2795,
64,
18,
13,
470,
89,
1549,
13,
470,
89,
17,
558,
996,
186,
33999,
64,
33353,
64,
15658,
64,
6343,
9,
15658,
13,
988,
186,
4708,
22,
35488,
64,
18582,
64,
20562,
64,
19,
13,
470,
89,
1418,
558,
996,
186,
33999,
64,
33353,
64,
15658,
64,
11183,
64,
11209,
9,
15658,
13,
988,
186,
4708,
22,
35488,
64,
48351,
64,
38348,
64,
42503,
64,
36755,
18,
13,
470,
89,
361,
68,
17,
13,
470,
89,
1418,
558,
996,
186,
7054,
28,
187,
186,
94,
535,
186,
2309,
470,
28,
187,
94,
187,
187,
4659,
540,
873,
64,
69,
6185,
64,
9177,
9,
2855,
23673,
64,
33353,
64,
69,
522,
78,
64,
14778,
475,
88,
13,
996,
186,
2855,
23673,
64,
76,
8519,
475,
76,
8519,
13,
540,
2362,
10,
187,
92,
187,
186,
2855,
23673,
64,
33353,
64,
15658,
475,
15658,
426,
996,
186,
33999,
64,
33353,
64,
69,
522,
78,
64,
936,
64,
15658,
9,
88,
1168,
69,
522,
78,
558,
187,
186,
2855,
37523,
22,
35488,
64,
13552,
475,
1378,
22,
35488,
426,
23673,
64,
33353,
64,
15658,
64,
788,
64,
35805,
2203,
9,
15658,
558,
187,
186,
10790,
540,
5778,
426,
2456,
28,
535,
186,
338,
313,
1378,
22,
35488,
1168,
81,
2203,
15,
69,
6185,
64,
29000,
10,
996,
186,
29000,
426,
37523,
22,
35488,
1168,
81,
2203,
15,
69,
6185,
64,
29000,
28,
535,
186,
16065,
313,
8045,
10,
551,
187,
186,
5045,
322,
6577,
64,
34429,
64,
37,
2088,
46,
64,
15743,
64,
9122,
54,
27,
996,
186,
3122,
4717,
5778,
281,
3693,
1684,
6046,
8480,
996,
186,
983,
9481,
9,
29000,
558,
996,
186,
7054,
28,
187,
186,
94,
535,
186,
2309,
470,
28,
187,
94,
187,
187,
4659,
540,
37523,
22,
35488,
64,
1178,
64,
332,
71,
9,
2855,
23673,
64,
33353,
64,
69,
522,
78,
64,
14778,
475,
88,
13,
996,
186,
2855,
23673,
64,
76,
8519,
475,
76,
8519,
13,
540,
2362,
10,
187,
92,
187,
186,
2855,
23673,
64,
33353,
64,
15658,
475,
15658,
426,
996,
186,
33999,
64,
33353,
64,
69,
522,
78,
64,
936,
64,
15658,
9,
88,
1168,
69,
522,
78,
558,
535,
186,
16065,
313,
8045,
10,
551,
187,
186,
5045,
322,
6577,
64,
34429,
64,
37,
2088,
46,
64,
14364,
64,
9122,
54,
27,
996,
186,
16065,
313,
88,
1168,
11551,
10,
551,
996,
186,
5045,
9233,
22,
35488,
64,
49,
10690,
64,
55,
15619,
18,
64,
14609,
27,
988,
186,
33999,
64,
33353,
64,
15658,
64,
11183,
64,
11209,
9,
15658,
13,
2657,
186,
4708,
22,
35488,
64,
49,
10690,
64,
1539,
37673,
64,
18,
13,
9233,
22,
35488,
64,
49,
10690,
64,
42972,
18,
13,
470,
558,
988,
186,
7054,
28,
6886,
186,
5045,
9233,
22,
35488,
64,
49,
10690,
64,
55,
15619,
19,
64,
14609,
27,
988,
186,
33999,
64,
33353,
64,
15658,
64,
11183,
64,
11209,
9,
15658,
13,
2657,
186,
4708,
22,
35488,
64,
49,
10690,
64,
1539,
37673,
64,
18,
13,
9233,
22,
35488,
64,
49,
10690,
64,
42972,
19,
13,
470,
558,
988,
186,
7054,
28,
996,
186,
94,
996,
186,
7054,
28,
535,
186,
5045,
322,
6577,
64,
34429,
64,
37,
2088,
46,
64,
15743,
64,
9122,
54,
27,
996,
186,
316,
9481,
64,
6324,
9,
1010,
933,
13,
1052,
361,
558,
996,
186,
16065,
313,
88,
1168,
11551,
10,
551,
996,
186,
5045,
9233,
22,
35488,
64,
49,
10690,
64,
55,
15619,
18,
64,
14609,
27,
988,
186,
33999,
64,
33353,
64,
15658,
64,
11183,
64,
11209,
9,
15658,
13,
2657,
186,
4708,
22,
35488,
64,
49,
10690,
64,
1539,
37673,
64,
18,
13,
9233,
22,
35488,
64,
49,
10690,
64,
42972,
18,
13,
2657,
186,
4708,
22,
35488,
64,
49,
10690,
64,
42972,
18,
558,
988,
186,
7054,
28,
6886,
186,
5045,
9233,
22,
35488,
64,
49,
10690,
64,
55,
15619,
19,
64,
14609,
27,
988,
186,
33999,
64,
33353,
64,
15658,
64,
11183,
64,
11209,
9,
15658,
13,
2657,
186,
4708,
22,
35488,
64,
49,
10690,
64,
1539,
37673,
64,
18,
13,
9233,
22,
35488,
64,
49,
10690,
64,
42972,
19,
13,
2657,
186,
4708,
22,
35488,
64,
49,
10690,
64,
42972,
19,
558,
988,
186,
7054,
28,
996,
186,
94,
996,
186,
7054,
28,
187,
186,
94,
535,
186,
2309,
470,
28,
187,
94,
187,
187,
4659,
1030,
10698,
540,
37523,
22,
35488,
64,
324,
2428,
255,
64,
9852,
64,
8858,
5456,
426,
551,
187,
186,
18,
13,
187,
186,
20,
13,
187,
4718,
187,
187,
4659,
1030,
1018,
475,
1030,
37523,
22,
35488,
64,
324,
2428,
255,
64,
9852,
64,
7135,
5456,
426,
551,
187,
186,
3,
2350,
3717,
1194,
18,
995,
187,
186,
3,
2350,
3717,
1194,
19,
995,
187,
4718,
187,
187,
4659,
31909,
64,
22355,
64,
1400,
5529,
64,
47307,
1843,
64,
27588,
9,
1378,
22,
35488,
64,
324,
2428,
255,
64,
9852,
64,
14379,
13,
187,
186,
4708,
22,
35488,
64,
33752,
64,
20562,
64,
18,
13,
9233,
22,
35488,
64,
12295,
21,
64,
21793,
64,
52,
5518,
13,
9233,
22,
35488,
64,
12295,
21,
64,
21793,
64,
18690,
13,
187,
186,
1378,
22,
35488,
64,
324,
2428,
255,
64,
9852,
64,
7135,
13,
37523,
22,
35488,
64,
324,
2428,
255,
64,
9852,
64,
8858,
558,
187,
187,
4659,
1030,
1577,
23673,
64,
76,
8519,
64,
1826,
37523,
22,
35488,
64,
324,
2428,
255,
64,
9852,
64,
24845,
426,
187,
186,
34429,
64,
37,
2088,
46,
64,
1400,
5529,
1587,
2350,
3717,
1194,
995,
37523,
22,
35488,
64,
324,
2428,
255,
64,
9852,
64,
14379,
558,
187,
187,
4659,
1030,
1577,
23673,
64,
33353,
64,
69,
522,
78,
64,
14778,
37523,
22,
35488,
64,
69,
522,
78,
64,
49875,
5456,
426,
551,
187,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
6971,
49,
3859,
58,
1587,
9803,
48,
19,
995,
9233,
22,
35488,
64,
49,
10690,
64,
1539,
37673,
64,
20,
13,
9233,
22,
35488,
64,
49,
10690,
64,
9803,
48,
19,
64,
14609,
13,
996,
186,
17,
13,
5812,
13,
470,
582,
187,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
6971,
49,
3859,
58,
1587,
42690,
18,
995,
9233,
22,
35488,
64,
49,
10690,
64,
1539,
37673,
64,
20,
13,
9233,
22,
35488,
64,
49,
10690,
64,
42690,
64,
14609,
13,
996,
186,
17,
13,
5812,
13,
470,
582,
187,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
6971,
49,
3859,
58,
1587,
42690,
19,
35,
995,
9233,
22,
35488,
64,
49,
10690,
64,
1539,
37673,
64,
20,
13,
9233,
22,
35488,
64,
49,
10690,
64,
42690,
19,
35,
64,
14609,
13,
996,
186,
17,
13,
5812,
13,
470,
582,
187,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
6971,
49,
3859,
58,
1587,
42690,
19,
39,
995,
9233,
22,
35488,
64,
49,
10690,
64,
1539,
37673,
64,
20,
13,
9233,
22,
35488,
64,
49,
10690,
64,
42690,
19,
39,
64,
14609,
13,
996,
186,
17,
13,
873,
64,
10978,
64,
18255,
13,
322,
6577,
64,
34429,
64,
37,
2088,
46,
64,
14364,
64,
9122,
54,
582,
187,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
6971,
49,
3859,
58,
1587,
55,
709,
18,
995,
9233,
22,
35488,
64,
49,
10690,
64,
1539,
37673,
64,
18,
13,
9233,
22,
35488,
64,
49,
10690,
64,
55,
15619,
18,
64,
14609,
13,
470,
13,
996,
186,
1378,
22,
35488,
64,
1178,
64,
332,
71,
13,
322,
6577,
64,
34429,
64,
37,
2088,
46,
64,
14364,
64,
9122,
54,
1040,
322,
6577,
64,
34429,
64,
37,
2088,
46,
64,
15743,
64,
9122,
54,
582,
187,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
6971,
49,
3859,
58,
1587,
55,
709,
19,
995,
322,
6577,
64,
34429,
64,
47,
2795,
46,
13,
470,
13,
470,
13,
5812,
13,
470,
582,
187,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
6971,
49,
3859,
58,
1587,
34611,
6159,
1719,
995,
322,
6577,
64,
34429,
64,
47,
2795,
46,
13,
470,
13,
470,
13,
5812,
13,
470,
582,
535,
186,
3122,
7412,
19921,
1738,
187,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
6971,
49,
3859,
58,
64,
52,
1587,
48351,
3915,
48,
18,
7412,
19921,
995,
337,
13,
9233,
22,
35488,
64,
42690,
64,
3125,
8100,
64,
18,
13,
996,
186,
4708,
22,
35488,
64,
48351,
64,
1267,
48,
18,
64,
1719,
19921,
64,
52,
5518,
13,
470,
13,
5812,
13,
470,
582,
187,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
6971,
49,
3859,
58,
64,
52,
1587,
38348,
3915,
48,
18,
7412,
19921,
995,
337,
13,
9233,
22,
35488,
64,
42690,
64,
3125,
8100,
64,
18,
13,
996,
186,
4708,
22,
35488,
64,
38348,
64,
1267,
48,
18,
64,
1719,
19921,
64,
52,
5518,
13,
470,
13,
5812,
13,
470,
582,
187,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
6971,
49,
3859,
58,
64,
52,
1587,
2350,
7412,
19921,
995,
337,
13,
9233,
22,
35488,
64,
42690,
64,
3125,
8100,
64,
18,
13,
996,
186,
4708,
22,
35488,
64,
2350,
64,
1719,
19921,
64,
52,
5518,
13,
470,
13,
5812,
13,
470,
582,
187,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
6971,
49,
3859,
58,
64,
52,
1587,
4877,
7412,
19921,
995,
337,
13,
9233,
22,
35488,
64,
42690,
64,
3125,
8100,
64,
18,
13,
996,
186,
4708,
22,
35488,
64,
4877,
64,
1719,
19921,
64,
52,
5518,
13,
470,
13,
5812,
13,
470,
582,
187,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
6971,
49,
3859,
58,
64,
52,
1587,
9042,
1864,
7412,
19921,
995,
337,
13,
9233,
22,
35488,
64,
42690,
64,
3125,
8100,
64,
18,
13,
996,
186,
4708,
22,
35488,
64,
9042,
1864,
64,
1719,
19921,
64,
52,
5518,
13,
470,
13,
5812,
13,
470,
582,
535,
186,
3122,
19832,
19942,
1738,
187,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
6971,
49,
3859,
58,
1587,
34611,
6159,
1719,
18,
995,
9233,
22,
35488,
64,
49,
10690,
64,
1539,
37673,
64,
19,
13,
9233,
22,
35488,
64,
49,
10690,
64,
9180,
18,
64,
14609,
13,
996,
186,
17,
13,
5812,
13,
470,
582,
187,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
6971,
49,
3859,
58,
1587,
34611,
6159,
1719,
19,
995,
9233,
22,
35488,
64,
49,
10690,
64,
1539,
37673,
64,
19,
13,
9233,
22,
35488,
64,
49,
10690,
64,
9180,
19,
64,
14609,
13,
996,
186,
17,
13,
5812,
13,
470,
582,
535,
186,
3122,
19832,
31322,
1738,
187,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
35446,
1587,
9042,
1864,
418,
18,
8375,
187,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
35446,
1587,
9042,
1864,
416,
18,
8375,
535,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
35446,
1587,
1042,
18,
49,
8375,
535,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
6971,
49,
3859,
58,
1587,
9042,
1864,
8951,
44,
995,
322,
6577,
64,
34429,
64,
47,
2795,
46,
13,
470,
13,
470,
13,
996,
186,
1178,
64,
69,
6185,
64,
18255,
13,
322,
6577,
64,
34429,
64,
37,
2088,
46,
64,
14364,
64,
9122,
54,
582,
187,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
6971,
49,
3859,
58,
1587,
9042,
1864,
18,
8916,
995,
9233,
22,
35488,
64,
9042,
1864,
64,
20562,
64,
18,
13,
996,
186,
4708,
22,
35488,
64,
9042,
1864,
64,
18,
64,
1400,
64,
52,
5518,
13,
470,
13,
873,
64,
69,
6185,
64,
9177,
13,
322,
6577,
64,
34429,
64,
37,
2088,
46,
64,
15743,
64,
9122,
54,
582,
535,
186,
3122,
35476,
1738,
187,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
49,
7283,
1587,
35,
1267,
18,
17933,
43,
995,
322,
6577,
64,
34429,
64,
47,
2795,
46,
13,
996,
186,
17,
13,
470,
13,
5812,
13,
470,
582,
535,
186,
3122,
28239,
22347,
254,
1738,
187,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
43640,
947,
1587,
1848,
5883,
10569,
18,
45,
995,
322,
6577,
64,
34429,
64,
47,
2795,
46,
13,
470,
13,
470,
13,
37523,
22,
35488,
64,
2845,
18,
64,
77,
64,
24706,
13,
996,
186,
37983,
64,
12771,
9,
1378,
22,
35488,
64,
2845,
18,
64,
77,
64,
24706,
9679,
187,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
6971,
49,
3859,
58,
1587,
1848,
5883,
10569,
18,
45,
8916,
995,
9233,
22,
35488,
64,
49,
10690,
64,
1539,
37673,
64,
19,
13,
996,
186,
4708,
22,
35488,
64,
49,
10690,
64,
26889,
18,
64,
45,
64,
14609,
13,
470,
13,
5812,
13,
470,
582,
535,
186,
3122,
5446,
6072,
1738,
187,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
38348,
1587,
38348,
18,
418,
995,
5812,
13,
322,
6577,
64,
34429,
64,
47,
2795,
46,
13,
470,
13,
470,
582,
187,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
38348,
1587,
38348,
18,
416,
995,
5812,
13,
322,
6577,
64,
34429,
64,
47,
2795,
46,
13,
470,
13,
470,
582,
535,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
6971,
49,
3859,
58,
1587,
38348,
18,
418,
8916,
995,
9233,
22,
35488,
64,
49,
10690,
64,
42503,
64,
18,
13,
996,
186,
4708,
22,
35488,
64,
49,
10690,
64,
38348,
64,
45,
18,
64,
14609,
13,
470,
13,
5812,
13,
470,
582,
187,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
6971,
49,
3859,
58,
1587,
38348,
18,
416,
8916,
995,
9233,
22,
35488,
64,
49,
10690,
64,
42503,
64,
18,
13,
996,
186,
4708,
22,
35488,
64,
49,
10690,
64,
38348,
64,
51,
18,
64,
14609,
13,
470,
13,
5812,
13,
470,
582,
187,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
6971,
49,
3859,
58,
1587,
38348,
18,
8886,
995,
9233,
22,
35488,
64,
2775,
2795,
64,
38348,
13,
996,
186,
4708,
22,
35488,
64,
7519,
31183,
64,
38348,
18,
64,
52,
5518,
13,
470,
13,
5812,
13,
470,
582,
535,
186,
3122,
34026,
353,
2310,
1738,
187,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
46,
21466,
1587,
6812,
40470,
18,
34026,
418,
18,
353,
2310,
995,
322,
6577,
64,
34429,
64,
47,
2795,
46,
13,
470,
13,
470,
13,
996,
186,
7,
1378,
22,
35488,
64,
11769,
18,
64,
324,
68,
18,
77,
64,
49862,
582,
187,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
46,
21466,
1587,
6812,
40470,
18,
34026,
416,
18,
353,
2310,
995,
322,
6577,
64,
34429,
64,
47,
2795,
46,
13,
470,
13,
470,
13,
996,
186,
7,
1378,
22,
35488,
64,
11769,
18,
64,
324,
68,
18,
83,
64,
49862,
582,
187,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
46,
21466,
1587,
6812,
40470,
18,
34026,
418,
19,
353,
2310,
995,
322,
6577,
64,
34429,
64,
47,
2795,
46,
13,
470,
13,
470,
13,
996,
186,
7,
1378,
22,
35488,
64,
11769,
18,
64,
324,
68,
19,
77,
64,
49862,
582,
187,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
46,
21466,
1587,
6812,
40470,
18,
34026,
416,
19,
353,
2310,
995,
322,
6577,
64,
34429,
64,
47,
2795,
46,
13,
470,
13,
470,
13,
996,
186,
7,
1378,
22,
35488,
64,
11769,
18,
64,
324,
68,
19,
83,
64,
49862,
582,
187,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
46,
21466,
1587,
6812,
40470,
18,
34026,
418,
353,
2310,
995,
322,
6577,
64,
34429,
64,
47,
2795,
46,
13,
470,
13,
470,
13,
996,
186,
7,
1378,
22,
35488,
64,
11769,
18,
64,
324,
498,
64,
49862,
582,
187,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
46,
21466,
1587,
6812,
40470,
18,
34026,
416,
353,
2310,
995,
322,
6577,
64,
34429,
64,
47,
2795,
46,
13,
470,
13,
470,
13,
996,
186,
7,
1378,
22,
35488,
64,
11769,
18,
64,
324,
7083,
64,
49862,
582,
187,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
46,
21466,
1587,
3801,
18,
64,
38348,
353,
2310,
995,
322,
6577,
64,
34429,
64,
47,
2795,
46,
13,
470,
13,
470,
13,
996,
186,
7,
1378,
22,
35488,
64,
338,
18,
64,
324,
68,
64,
31873,
64,
49862,
582,
535,
186,
3122,
34026,
22347,
254,
1738,
187,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
6971,
49,
3859,
58,
1587,
38348,
2951,
40470,
18,
33328,
995,
9233,
22,
35488,
64,
49,
10690,
64,
42503,
64,
19,
13,
996,
186,
4708,
22,
35488,
64,
49,
10690,
64,
38348,
64,
52,
18,
39,
64,
14609,
13,
470,
13,
873,
64,
10978,
64,
18255,
13,
996,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
14364,
64,
9122,
54,
582,
187,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
43640,
947,
1587,
6812,
40470,
18,
34026,
353,
10569,
45,
995,
9233,
22,
35488,
64,
1267,
48,
18,
64,
38348,
64,
42503,
64,
36755,
13,
996,
186,
4708,
22,
35488,
64,
45,
64,
46,
23638,
64,
52,
5518,
13,
337,
13,
37523,
22,
35488,
64,
11769,
18,
64,
324,
68,
64,
77,
64,
24706,
13,
996,
186,
37983,
64,
12771,
9,
1378,
22,
35488,
64,
11769,
18,
64,
324,
68,
64,
77,
64,
24706,
9679,
187,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
43640,
947,
1587,
6812,
40470,
18,
34026,
353,
10569,
51,
995,
9233,
22,
35488,
64,
1267,
48,
18,
64,
38348,
64,
42503,
64,
36755,
13,
996,
186,
4708,
22,
35488,
64,
51,
64,
46,
23638,
64,
52,
5518,
13,
337,
13,
37523,
22,
35488,
64,
11769,
18,
64,
324,
68,
64,
83,
64,
24706,
13,
996,
186,
37983,
64,
12771,
9,
1378,
22,
35488,
64,
11769,
18,
64,
324,
68,
64,
83,
64,
24706,
9679,
187,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
6971,
49,
3859,
58,
1587,
11584,
47,
31765,
24629,
995,
9233,
22,
35488,
64,
52,
1277,
64,
3077,
64,
24840,
64,
18,
13,
996,
186,
1047,
13,
337,
13,
5812,
13,
470,
582,
535,
186,
3122,
34026,
367,
7283,
1738,
187,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
49,
7283,
1587,
6812,
40470,
18,
34026,
353,
10569,
995,
322,
6577,
64,
34429,
64,
47,
2795,
46,
13,
470,
13,
470,
13,
5812,
13,
470,
582,
535,
186,
3122,
16132,
33106,
1738,
187,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
6971,
49,
3859,
58,
1587,
42,
19,
52,
18,
995,
9233,
22,
35488,
64,
49,
10690,
64,
42503,
64,
18,
13,
9233,
22,
35488,
64,
49,
10690,
64,
42,
19,
52,
18,
64,
14609,
13,
996,
186,
17,
13,
5812,
13,
470,
582,
187,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
6971,
49,
3859,
58,
1587,
42,
19,
52,
19,
995,
9233,
22,
35488,
64,
49,
10690,
64,
42503,
64,
18,
13,
9233,
22,
35488,
64,
49,
10690,
64,
42,
19,
52,
19,
64,
14609,
13,
996,
186,
17,
13,
5812,
13,
470,
582,
187,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
49,
7283,
1587,
3801,
18,
47522,
18,
995,
322,
6577,
64,
34429,
64,
47,
2795,
46,
13,
470,
13,
470,
13,
5812,
13,
470,
582,
187,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
49,
7283,
1587,
3801,
18,
47522,
18,
418,
995,
322,
6577,
64,
34429,
64,
47,
2795,
46,
13,
470,
13,
470,
13,
5812,
13,
470,
582,
187,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
49,
7283,
1587,
3801,
18,
47522,
18,
416,
995,
322,
6577,
64,
34429,
64,
47,
2795,
46,
13,
470,
13,
470,
13,
5812,
13,
470,
582,
187,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
49,
7283,
1587,
52,
15289,
47522,
418,
995,
322,
6577,
64,
34429,
64,
47,
2795,
46,
13,
470,
13,
470,
13,
5812,
13,
470,
582,
187,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
49,
7283,
1587,
52,
15289,
47522,
416,
995,
322,
6577,
64,
34429,
64,
47,
2795,
46,
13,
470,
13,
470,
13,
5812,
13,
470,
582,
535,
186,
3122,
16132,
33106,
16551,
1738,
187,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
46,
21466,
1587,
3801,
18,
14805,
34026,
4235,
522,
353,
2310,
995,
322,
6577,
64,
34429,
64,
47,
2795,
46,
13,
470,
13,
470,
13,
996,
186,
7,
1378,
22,
35488,
64,
338,
18,
64,
520,
64,
324,
68,
64,
35933,
64,
49862,
582,
187,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
46,
21466,
1587,
3801,
18,
3495,
34026,
4235,
522,
353,
2310,
995,
322,
6577,
64,
34429,
64,
47,
2795,
46,
13,
470,
13,
470,
13,
996,
186,
7,
1378,
22,
35488,
64,
338,
18,
64,
1508,
64,
324,
68,
64,
35933,
64,
49862,
582,
187,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
46,
21466,
1587,
3801,
18,
5329,
34026,
4235,
522,
353,
2310,
995,
322,
6577,
64,
34429,
64,
47,
2795,
46,
13,
470,
13,
470,
13,
996,
186,
7,
1378,
22,
35488,
64,
338,
18,
64,
1857,
64,
324,
68,
64,
35933,
64,
49862,
582,
187,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
46,
21466,
1587,
3801,
18,
9963,
34026,
4235,
522,
353,
2310,
995,
322,
6577,
64,
34429,
64,
47,
2795,
46,
13,
470,
13,
470,
13,
996,
186,
7,
1378,
22,
35488,
64,
338,
18,
64,
2251,
64,
324,
68,
64,
35933,
64,
49862,
582,
187,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
46,
21466,
1587,
3801,
19,
34026,
4235,
522,
353,
2310,
995,
322,
6577,
64,
34429,
64,
47,
2795,
46,
13,
470,
13,
470,
13,
996,
186,
7,
1378,
22,
35488,
64,
338,
19,
64,
324,
68,
64,
35933,
64,
49862,
582,
535,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
46,
21466,
1587,
2350,
3717,
1194,
353,
2310,
995,
322,
6577,
64,
34429,
64,
47,
2795,
46,
13,
470,
13,
470,
13,
996,
186,
7,
1378,
22,
35488,
64,
324,
2428,
255,
64,
9852,
64,
24845,
582,
535,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
46,
21466,
1587,
48351,
418,
353,
2310,
995,
322,
6577,
64,
34429,
64,
47,
2795,
46,
13,
470,
13,
470,
13,
996,
186,
7,
1378,
22,
35488,
64,
69,
317,
64,
77,
64,
49862,
582,
187,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
46,
21466,
1587,
48351,
416,
353,
2310,
995,
322,
6577,
64,
34429,
64,
47,
2795,
46,
13,
470,
13,
470,
13,
996,
186,
7,
1378,
22,
35488,
64,
69,
317,
64,
83,
64,
49862,
582,
535,
186,
3122,
26319,
33106,
1738,
187,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
34,
3801,
64,
7310,
1587,
34,
3801,
18,
13257,
995,
346,
34,
3801,
18,
9426,
459,
995,
470,
13,
996,
186,
4708,
22,
35488,
64,
42,
19,
52,
18,
64,
3871,
49,
13,
9233,
22,
35488,
64,
27300,
64,
2350,
3717,
1194,
64,
52,
5518,
13,
337,
582,
187,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
34,
3801,
64,
7310,
1587,
34,
3801,
19,
13257,
995,
346,
34,
3801,
19,
9426,
459,
995,
470,
13,
996,
186,
4708,
22,
35488,
64,
42,
19,
52,
19,
64,
3871,
49,
13,
9233,
22,
35488,
64,
42,
19,
52,
19,
64,
21793,
64,
34949,
64,
52,
5518,
13,
337,
582,
187,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
34,
3801,
64,
1042,
1587,
34,
3801,
18,
20743,
995,
346,
34,
3801,
18,
10223,
2135,
995,
470,
13,
322,
6577,
64,
34429,
64,
47,
2795,
46,
13,
470,
13,
470,
582,
187,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
34,
3801,
64,
1042,
1587,
3871,
10690,
57,
995,
346,
3871,
56,
10223,
2135,
995,
470,
13,
322,
6577,
64,
34429,
64,
47,
2795,
46,
13,
470,
13,
470,
582,
187,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
34,
3801,
64,
7310,
1587,
3871,
56,
13257,
995,
346,
3871,
56,
9426,
459,
995,
470,
13,
322,
6577,
64,
34429,
64,
47,
2795,
46,
13,
470,
13,
470,
582,
535,
186,
3122,
24882,
19942,
1738,
187,
186,
3122,
47522,
33947,
1078,
3590,
1055,
50276,
8480,
187,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
43640,
947,
1587,
48351,
18,
353,
10569,
45,
995,
322,
6577,
64,
34429,
64,
47,
2795,
46,
13,
470,
13,
470,
13,
996,
186,
1378,
22,
35488,
64,
69,
317,
64,
77,
64,
24706,
13,
6647,
23544,
64,
12771,
9,
1378,
22,
35488,
64,
69,
317,
64,
77,
64,
24706,
9679,
187,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
43640,
947,
1587,
48351,
18,
353,
10569,
51,
995,
322,
6577,
64,
34429,
64,
47,
2795,
46,
13,
470,
13,
470,
13,
996,
186,
1378,
22,
35488,
64,
69,
317,
64,
83,
64,
24706,
13,
6647,
23544,
64,
12771,
9,
1378,
22,
35488,
64,
69,
317,
64,
83,
64,
24706,
9679,
535,
186,
3122,
47522,
5048,
353,
2310,
1738,
187,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
46,
21466,
1587,
48351,
418,
18,
12269,
995,
322,
6577,
64,
34429,
64,
47,
2795,
46,
13,
470,
13,
470,
13,
996,
186,
7,
1378,
22,
35488,
64,
13256,
64,
69,
317,
64,
77,
18,
64,
49862,
582,
187,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
46,
21466,
1587,
48351,
416,
18,
12269,
995,
322,
6577,
64,
34429,
64,
47,
2795,
46,
13,
470,
13,
470,
13,
996,
186,
7,
1378,
22,
35488,
64,
13256,
64,
69,
317,
64,
83,
18,
64,
49862,
582,
535,
186,
3122,
47522,
22347,
254,
1738,
187,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
6971,
49,
3859,
58,
1587,
48351,
2951,
40470,
18,
33328,
995,
9233,
22,
35488,
64,
49,
10690,
64,
42503,
64,
19,
13,
996,
186,
4708,
22,
35488,
64,
49,
10690,
64,
48351,
64,
52,
18,
39,
64,
14609,
13,
470,
13,
873,
64,
10978,
64,
18255,
13,
996,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
14364,
64,
9122,
54,
582,
187,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
43640,
947,
1587,
6812,
40470,
18,
47522,
353,
10569,
45,
995,
322,
6577,
64,
34429,
64,
47,
2795,
46,
13,
470,
13,
470,
13,
996,
186,
1378,
22,
35488,
64,
11769,
18,
64,
69,
317,
64,
77,
64,
24706,
13,
6647,
23544,
64,
12771,
9,
1378,
22,
35488,
64,
11769,
18,
64,
69,
317,
64,
77,
64,
24706,
9679,
187,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
43640,
947,
1587,
6812,
40470,
18,
47522,
353,
10569,
51,
995,
322,
6577,
64,
34429,
64,
47,
2795,
46,
13,
470,
13,
470,
13,
996,
186,
1378,
22,
35488,
64,
11769,
18,
64,
69,
317,
64,
83,
64,
24706,
13,
6647,
23544,
64,
12771,
9,
1378,
22,
35488,
64,
11769,
18,
64,
69,
317,
64,
83,
64,
24706,
9679,
535,
186,
3122,
47522,
84,
1738,
187,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
48351,
1587,
48351,
418,
18,
995,
5812,
13,
9233,
22,
35488,
64,
49,
10690,
64,
42503,
64,
18,
13,
996,
186,
4708,
22,
35488,
64,
49,
10690,
64,
48351,
64,
45,
18,
64,
14609,
13,
470,
582,
187,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
48351,
1587,
48351,
416,
18,
995,
5812,
13,
9233,
22,
35488,
64,
49,
10690,
64,
42503,
64,
18,
13,
996,
186,
4708,
22,
35488,
64,
49,
10690,
64,
48351,
64,
51,
18,
64,
14609,
13,
470,
582,
187,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
6971,
49,
3859,
58,
64,
52,
1587,
48351,
337,
41388,
995,
495,
13,
9233,
22,
35488,
64,
2775,
2795,
64,
48351,
13,
996,
186,
4708,
22,
35488,
64,
7519,
31183,
64,
48351,
18,
64,
52,
5518,
13,
470,
13,
5812,
13,
470,
582,
535,
186,
3122,
388,
5964,
1738,
187,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
49,
7283,
64,
52,
1587,
18582,
329,
2503,
995,
337,
13,
322,
6577,
64,
34429,
64,
47,
2795,
46,
13,
470,
13,
470,
13,
37523,
22,
35488,
64,
28368,
64,
8045,
13,
996,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
15743,
64,
49,
7414,
1040,
322,
6577,
64,
34429,
64,
37,
2088,
46,
64,
14364,
64,
9122,
54,
582,
535,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
6971,
49,
3859,
58,
1587,
18582,
329,
2503,
418,
995,
9233,
22,
35488,
64,
49,
10690,
64,
1539,
37673,
64,
18,
13,
996,
186,
4708,
22,
35488,
64,
49,
10690,
64,
10114,
64,
45,
64,
14609,
13,
470,
13,
5812,
13,
470,
582,
187,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
6971,
49,
3859,
58,
1587,
18582,
329,
2503,
416,
995,
9233,
22,
35488,
64,
49,
10690,
64,
1539,
37673,
64,
18,
13,
996,
186,
4708,
22,
35488,
64,
49,
10690,
64,
10114,
64,
51,
64,
14609,
13,
470,
13,
5812,
13,
470,
582,
187,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
6971,
49,
3859,
58,
64,
52,
1587,
8662,
463,
49011,
995,
337,
13,
9233,
22,
35488,
64,
32568,
2795,
64,
18,
13,
996,
186,
4708,
22,
35488,
64,
7575,
4548,
64,
1400,
64,
52,
5518,
13,
470,
13,
5812,
13,
470,
582,
187,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
6971,
49,
3859,
58,
64,
52,
1587,
13614,
18628,
995,
374,
13,
9233,
22,
35488,
64,
32568,
2795,
64,
18,
13,
996,
186,
4708,
22,
35488,
64,
20027,
45,
5479,
64,
1400,
64,
52,
5518,
13,
470,
13,
5812,
13,
470,
582,
535,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
13753,
38283,
1587,
18582,
3271,
10223,
2135,
995,
322,
6577,
64,
34429,
64,
47,
2795,
46,
13,
470,
13,
470,
13,
996,
186,
7,
73,
4818,
64,
16065,
582,
187,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
13753,
38283,
1587,
18582,
1372,
10223,
2135,
995,
322,
6577,
64,
34429,
64,
47,
2795,
46,
13,
470,
13,
470,
13,
996,
186,
7,
73,
1831,
64,
16065,
582,
535,
186,
3122,
8951,
44,
43190,
1738,
187,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
6971,
49,
3859,
58,
1587,
22370,
35468,
322,
6328,
995,
9233,
22,
35488,
64,
22370,
64,
35468,
13,
996,
186,
4708,
22,
35488,
64,
9316,
64,
22370,
64,
35468,
64,
52,
5518,
13,
186,
17,
13,
5812,
13,
470,
582,
187,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
6971,
49,
3859,
58,
1587,
22370,
35468,
45479,
18,
995,
9233,
22,
35488,
64,
22370,
64,
35468,
13,
996,
186,
4708,
22,
35488,
64,
42690,
18,
64,
22370,
64,
35468,
64,
52,
5518,
13,
470,
13,
5812,
13,
470,
582,
187,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
6971,
49,
3859,
58,
1587,
22370,
35468,
45479,
19,
995,
9233,
22,
35488,
64,
22370,
64,
35468,
13,
996,
186,
4708,
22,
35488,
64,
42690,
19,
64,
22370,
64,
35468,
64,
52,
5518,
13,
470,
13,
5812,
13,
470,
582,
187,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
6971,
49,
3859,
58,
1587,
22370,
35468,
995,
9233,
22,
35488,
64,
22370,
64,
35468,
13,
996,
186,
4708,
22,
35488,
64,
49,
4290,
64,
22370,
64,
35468,
64,
52,
5518,
13,
470,
13,
5812,
13,
470,
582,
535,
186,
3122,
24882,
31322,
1738,
187,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
38333,
1587,
18582,
3271,
8375,
187,
186,
52,
6577,
64,
34429,
64,
37,
2088,
46,
64,
38333,
1587,
18582,
1372,
8375,
187,
4718,
187,
187,
4659,
1030,
1577,
23673,
64,
33353,
64,
69,
522,
78,
64,
25966,
37523,
22,
35488,
64,
69,
522,
78,
64,
27861,
265,
5456,
426,
551,
187,
186,
3122,
42690,
8480,
187,
186,
9819,
38348,
2951,
40470,
18,
33328,
995,
5812,
13,
346,
42690,
18,
995,
310,
64,
10404,
64,
18255,
64,
4064,
64,
50153,
18,
2023,
187,
186,
9819,
38348,
2951,
40470,
18,
33328,
995,
5812,
13,
346,
42690,
19,
35,
995,
310,
64,
10404,
64,
18255,
64,
4064,
64,
50153,
19,
2023,
187,
186,
9819,
38348,
2951,
40470,
18,
33328,
995,
5812,
13,
346,
42690,
19,
39,
995,
310,
64,
10404,
64,
18255,
64,
4064,
64,
50153,
19,
2023,
187,
186,
9819,
48351,
2951,
40470,
18,
33328,
995,
5812,
13,
346,
42690,
18,
995,
310,
64,
10404,
64,
18255,
64,
4064,
64,
50153,
18,
2023,
187,
186,
9819,
48351,
2951,
40470,
18,
33328,
995,
5812,
13,
346,
42690,
19,
35,
995,
310,
64,
10404,
64,
18255,
64,
4064,
64,
50153,
19,
2023,
187,
186,
9819,
48351,
2951,
40470,
18,
33328,
995,
5812,
13,
346,
42690,
19,
39,
995,
310,
64,
10404,
64,
18255,
64,
4064,
64,
50153,
19,
2023,
535,
186,
3122,
1719,
19921,
8480,
187,
186,
9819,
38348,
2951,
40470,
18,
33328,
995,
5812,
13,
346,
38348,
3915,
48,
18,
7412,
19921,
995,
310,
64,
5302,
64,
284,
3373,
2023,
187,
186,
9819,
48351,
2951,
40470,
18,
33328,
995,
5812,
13,
346,
48351,
3915,
48,
18,
7412,
19921,
995,
310,
64,
5302,
64,
284,
3373,
2023,
187,
186,
9819,
38348,
3915,
48,
18,
7412,
19921,
995,
5812,
13,
346,
2350,
7412,
19921,
4982,
187,
186,
9819,
38348,
3915,
48,
18,
7412,
19921,
995,
5812,
13,
346,
4877,
7412,
19921,
4982,
187,
186,
9819,
38348,
3915,
48,
18,
7412,
19921,
995,
5812,
13,
346,
22370,
35468,
4982,
187,
186,
9819,
48351,
3915,
48,
18,
7412,
19921,
995,
5812,
13,
346,
2350,
7412,
19921,
4982,
187,
186,
9819,
48351,
3915,
48,
18,
7412,
19921,
995,
5812,
13,
346,
4877,
7412,
19921,
4982,
187,
186,
9819,
48351,
3915,
48,
18,
7412,
19921,
995,
5812,
13,
346,
22370,
35468,
4982,
535,
186,
3122,
55,
709,
8480,
187,
186,
9819,
34611,
6159,
1719,
18,
995,
5812,
13,
346,
55,
709,
18,
4982,
187,
186,
9819,
34611,
6159,
1719,
19,
995,
5812,
13,
346,
55,
709,
18,
4982,
535,
186,
9819,
22370,
35468,
322,
6328,
995,
5812,
13,
346,
22370,
35468,
4982,
535,
186,
9819,
1042,
18,
49,
995,
5812,
13,
346,
9803,
48,
19,
4982,
535,
186,
9819,
35,
1267,
18,
17933,
43,
995,
5812,
13,
346,
1042,
18,
49,
4982,
535,
186,
9819,
1848,
5883,
10569,
18,
45,
995,
346,
14922,
43,
26457,
995,
346,
35,
1267,
18,
17933,
43,
4982,
187,
186,
9819,
1848,
5883,
10569,
18,
45,
995,
5812,
13,
346,
1848,
5883,
10569,
18,
45,
8916,
4982,
535,
186,
9819,
38348,
18,
418,
995,
5812,
13,
346,
1848,
5883,
10569,
18,
45,
4982,
187,
186,
9819,
38348,
18,
418,
995,
5812,
13,
346,
38348,
18,
418,
8916,
4982,
187,
186,
9819,
38348,
18,
418,
995,
5812,
13,
346,
38348,
18,
8886,
4982,
535,
186,
9819,
9042,
1864,
418,
18,
995,
5812,
13,
346,
9042,
1864,
8951,
44,
4982,
187,
186,
9819,
9042,
1864,
418,
18,
995,
5812,
13,
346,
9042,
1864,
18,
8916,
4982,
187,
186,
9819,
9042,
1864,
416,
18,
995,
5812,
13,
346,
9042,
1864,
8951,
44,
4982,
187,
186,
9819,
9042,
1864,
416,
18,
995,
5812,
13,
346,
9042,
1864,
18,
8916,
4982,
187,
186,
9819,
9042,
1864,
8951,
44,
995,
5812,
13,
346,
9042,
1864,
7412,
19921,
4982,
535,
186,
9819,
6812,
40470,
18,
34026,
418,
353,
2310,
995,
346,
38348,
18,
418,
995,
346,
38348,
18,
418,
4982,
187,
186,
9819,
6812,
40470,
18,
34026,
418,
353,
2310,
995,
346,
38348,
18,
416,
995,
346,
38348,
18,
416,
4982,
187,
186,
9819,
6812,
40470,
18,
34026,
416,
353,
2310,
995,
346,
38348,
18,
418,
995,
346,
38348,
18,
418,
4982,
187,
186,
9819,
6812,
40470,
18,
34026,
416,
353,
2310,
995,
346,
38348,
18,
416,
995,
346,
38348,
18,
416,
4982,
535,
186,
9819,
6812,
40470,
18,
34026,
418,
18,
353,
2310,
995,
346,
38348,
995,
346,
6812,
40470,
18,
34026,
418,
353,
2310,
4982,
187,
186,
9819,
6812,
40470,
18,
34026,
418,
18,
353,
2310,
995,
346,
48351,
353,
10569,
995,
346,
6812,
40470,
18,
47522,
353,
10569,
45,
4982,
187,
186,
9819,
6812,
40470,
18,
34026,
418,
19,
353,
2310,
995,
346,
9042,
1864,
995,
346,
9042,
1864,
418,
18,
4982,
187,
186,
9819,
6812,
40470,
18,
34026,
418,
19,
353,
2310,
995,
346,
48351,
353,
10569,
995,
346,
6812,
40470,
18,
47522,
353,
10569,
45,
4982,
535,
186,
9819,
6812,
40470,
18,
34026,
416,
18,
353,
2310,
995,
346,
38348,
995,
346,
6812,
40470,
18,
34026,
416,
353,
2310,
4982,
187,
186,
9819,
6812,
40470,
18,
34026,
416,
18,
353,
2310,
995,
346,
48351,
353,
10569,
995,
346,
6812,
40470,
18,
47522,
353,
10569,
51,
4982,
187,
186,
9819,
6812,
40470,
18,
34026,
416,
19,
353,
2310,
995,
346,
9042,
1864,
995,
346,
9042,
1864,
416,
18,
4982,
187,
186,
9819,
6812,
40470,
18,
34026,
416,
19,
353,
2310,
995,
346,
48351,
353,
10569,
995,
346,
6812,
40470,
18,
47522,
353,
10569,
51,
4982,
535,
186,
9819,
6812,
40470,
18,
34026,
353,
10569,
45,
995,
346,
38348,
18,
26457,
995,
346,
6812,
40470,
18,
34026,
418,
18,
353,
2310,
4982,
187,
186,
9819,
6812,
40470,
18,
34026,
353,
10569,
45,
995,
346,
38348,
19,
26457,
995,
346,
6812,
40470,
18,
34026,
418,
19,
353,
2310,
4982,
187,
186,
9819,
6812,
40470,
18,
34026,
353,
10569,
45,
995,
5812,
13,
346,
38348,
2951,
40470,
18,
33328,
4982,
535,
186,
9819,
6812,
40470,
18,
34026,
353,
10569,
51,
995,
346,
38348,
18,
26457,
995,
346,
6812,
40470,
18,
34026,
416,
18,
353,
2310,
4982,
187,
186,
9819,
6812,
40470,
18,
34026,
353,
10569,
51,
995,
346,
38348,
19,
26457,
995,
346,
6812,
40470,
18,
34026,
416,
19,
353,
2310,
4982,
187,
186,
9819,
6812,
40470,
18,
34026,
353,
10569,
51,
995,
5812,
13,
346,
38348,
2951,
40470,
18,
33328,
4982,
535,
186,
9819,
38348,
2951,
40470,
18,
33328,
995,
5812,
13,
346,
11584,
47,
31765,
24629,
4982,
535,
186,
9819,
6812,
40470,
18,
34026,
353,
10569,
995,
5812,
13,
346,
6812,
40470,
18,
34026,
353,
10569,
45,
4982,
187,
186,
9819,
6812,
40470,
18,
34026,
353,
10569,
995,
5812,
13,
346,
6812,
40470,
18,
34026,
353,
10569,
51,
4982,
535,
186,
9819,
3801,
18,
14805,
34026,
4235,
522,
353,
2310,
995,
346,
45,
16,
51,
995,
346,
6812,
40470,
18,
34026,
353,
10569,
4982,
187,
186,
9819,
3801,
18,
14805,
34026,
4235,
522,
353,
2310,
995,
346,
45,
16,
45,
995,
346,
6812,
40470,
18,
34026,
353,
10569,
4982,
187,
186,
9819,
3801,
18,
14805,
34026,
4235,
522,
353,
2310,
995,
346,
51,
16,
45,
995,
346,
6812,
40470,
18,
34026,
353,
10569,
4982,
187,
186,
9819,
3801,
18,
14805,
34026,
4235,
522,
353,
2310,
995,
346,
51,
16,
51,
995,
346,
6812,
40470,
18,
34026,
353,
10569,
4982,
187,
186,
9819,
3801,
18,
3495,
34026,
4235,
522,
353,
2310,
995,
346,
45,
16,
51,
995,
346,
6812,
40470,
18,
34026,
353,
10569,
4982,
187,
186,
9819,
3801,
18,
3495,
34026,
4235,
522,
353,
2310,
995,
346,
51,
16,
45,
995,
346,
6812,
40470,
18,
34026,
353,
10569,
4982,
187,
186,
9819,
3801,
18,
3495,
34026,
4235,
522,
353,
2310,
995,
346,
45,
16,
45,
995,
346,
6812,
40470,
18,
34026,
353,
10569,
4982,
187,
186,
9819,
3801,
18,
3495,
34026,
4235,
522,
353,
2310,
995,
346,
51,
16,
51,
995,
346,
6812,
40470,
18,
34026,
353,
10569,
4982,
187,
186,
9819,
3801,
18,
5329,
34026,
4235,
522,
353,
2310,
995,
346,
45,
16,
51,
995,
346,
6812,
40470,
18,
34026,
353,
10569,
4982,
187,
186,
9819,
3801,
18,
5329,
34026,
4235,
522,
353,
2310,
995,
346,
51,
16,
45,
995,
346,
6812,
40470,
18,
34026,
353,
10569,
4982,
187,
186,
9819,
3801,
18,
5329,
34026,
4235,
522,
353,
2310,
995,
346,
45,
16,
45,
995,
346,
6812,
40470,
18,
34026,
353,
10569,
4982,
187,
186,
9819,
3801,
18,
5329,
34026,
4235,
522,
353,
2310,
995,
346,
51,
16,
51,
995,
346,
6812,
40470,
18,
34026,
353,
10569,
4982,
187,
186,
9819,
3801,
18,
9963,
34026,
4235,
522,
353,
2310,
995,
346,
45,
16,
51,
995,
346,
6812,
40470,
18,
34026,
353,
10569,
4982,
187,
186,
9819,
3801,
18,
9963,
34026,
4235,
522,
353,
2310,
995,
346,
51,
16,
45,
995,
346,
6812,
40470,
18,
34026,
353,
10569,
4982,
187,
186,
9819,
3801,
18,
9963,
34026,
4235,
522,
353,
2310,
995,
346,
45,
16,
45,
995,
346,
6812,
40470,
18,
34026,
353,
10569,
4982,
187,
186,
9819,
3801,
18,
9963,
34026,
4235,
522,
353,
2310,
995,
346,
51,
16,
51,
995,
346,
6812,
40470,
18,
34026,
353,
10569,
4982,
535,
186,
9819,
3801,
18,
64,
38348,
353,
2310,
995,
346,
48589,
470,
995,
346,
3801,
18,
14805,
34026,
4235,
522,
353,
2310,
4982,
187,
186,
9819,
3801,
18,
64,
38348,
353,
2310,
995,
346,
48589,
374,
995,
346,
3801,
18,
3495,
34026,
4235,
522,
353,
2310,
4982,
187,
186,
9819,
3801,
18,
64,
38348,
353,
2310,
995,
346,
48589,
577,
995,
346,
3801,
18,
5329,
34026,
4235,
522,
353,
2310,
4982,
187,
186,
9819,
3801,
18,
64,
38348,
353,
2310,
995,
346,
48589,
721,
995,
346,
3801,
18,
9963,
34026,
4235,
522,
353,
2310,
4982,
187,
186,
9819,
2350,
3717,
1194,
353,
2310,
995,
346,
2350,
3717,
1194,
18,
995,
346,
3801,
18,
64,
38348,
353,
2310,
4982,
187,
186,
9819,
34,
3801,
18,
13257,
995,
5812,
13,
346,
42,
19,
52,
18,
4982,
187,
186,
9819,
34,
3801,
18,
13257,
995,
5812,
13,
346,
2350,
3717,
1194,
353,
2310,
4982,
187,
186,
9819,
3801,
19,
34026,
4235,
522,
353,
2310,
995,
346,
45,
16,
51,
995,
346,
6812,
40470,
18,
34026,
353,
10569,
4982,
187,
186,
9819,
3801,
19,
34026,
4235,
522,
353,
2310,
995,
346,
51,
16,
45,
995,
346,
6812,
40470,
18,
34026,
353,
10569,
4982,
187,
186,
9819,
3801,
19,
34026,
4235,
522,
353,
2310,
995,
346,
45,
16,
45,
995,
346,
6812,
40470,
18,
34026,
353,
10569,
4982,
187,
186,
9819,
3801,
19,
34026,
4235,
522,
353,
2310,
995,
346,
51,
16,
51,
995,
346,
6812,
40470,
18,
34026,
353,
10569,
4982,
187,
186,
9819,
2350,
3717,
1194,
353,
2310,
995,
346,
2350,
3717,
1194,
19,
995,
346,
3801,
19,
34026,
4235,
522,
353,
2310,
4982,
187,
186,
9819,
34,
3801,
19,
13257,
995,
5812,
13,
346,
2350,
3717,
1194,
353,
2310,
4982,
535,
186,
9819,
3871,
56,
13257,
995,
5812,
13,
346,
42690,
19,
35,
4982,
187,
186,
9819,
3871,
56,
13257,
995,
5812,
13,
346,
42690,
19,
39,
4982,
187,
186,
9819,
3871,
56,
13257,
995,
5812,
13,
346,
2350,
3717,
1194,
353,
2310,
4982,
535,
186,
9819,
3801,
18,
47522,
18,
418,
995,
5812,
13,
346,
34,
3801,
18,
20743,
4982,
187,
186,
9819,
3801,
18,
47522,
18,
418,
995,
5812,
13,
346,
42,
19,
52,
18,
4982,
187,
186,
9819,
3801,
18,
47522,
18,
418,
995,
5812,
13,
346,
48351,
2951,
40470,
18,
33328,
4982,
187,
186,
9819,
3801,
18,
47522,
18,
416,
995,
5812,
13,
346,
34,
3801,
18,
20743,
4982,
187,
186,
9819,
3801,
18,
47522,
18,
416,
995,
5812,
13,
346,
42,
19,
52,
18,
4982,
187,
186,
9819,
3801,
18,
47522,
18,
416,
995,
5812,
13,
346,
48351,
2951,
40470,
18,
33328,
4982,
535,
186,
9819,
52,
15289,
47522,
418,
995,
5812,
13,
346,
3871,
10690,
57,
4982,
187,
186,
9819,
52,
15289,
47522,
418,
995,
5812,
13,
346,
48351,
2951,
40470,
18,
33328,
4982,
187,
186,
9819,
52,
15289,
47522,
418,
995,
5812,
13,
346,
42690,
19,
35,
4982,
187,
186,
9819,
52,
15289,
47522,
418,
995,
5812,
13,
346,
42690,
19,
39,
4982,
187,
186,
9819,
52,
15289,
47522,
416,
995,
5812,
13,
346,
3871,
10690,
57,
4982,
187,
186,
9819,
52,
15289,
47522,
416,
995,
5812,
13,
346,
48351,
2951,
40470,
18,
33328,
4982,
187,
186,
9819,
52,
15289,
47522,
416,
995,
5812,
13,
346,
42690,
19,
35,
4982,
187,
186,
9819,
52,
15289,
47522,
416,
995,
5812,
13,
346,
42690,
19,
39,
4982,
535,
186,
9819,
48351,
418,
353,
2310,
995,
346,
3801,
18,
995,
346,
3801,
18,
47522,
18,
418,
4982,
187,
186,
9819,
48351,
418,
353,
2310,
995,
346,
52,
15289,
995,
346,
52,
15289,
47522,
418,
4982,
187,
186,
9819,
48351,
416,
353,
2310,
995,
346,
3801,
18,
995,
346,
3801,
18,
47522,
18,
416,
4982,
187,
186,
9819,
48351,
416,
353,
2310,
995,
346,
52,
15289,
995,
346,
52,
15289,
47522,
416,
4982,
535,
186,
9819,
48351,
18,
353,
10569,
45,
995,
346,
6812,
40470,
34026,
26457,
995,
346,
6812,
40470,
18,
34026,
353,
10569,
45,
4982,
187,
186,
9819,
48351,
18,
353,
10569,
45,
995,
346,
48351,
18,
26457,
995,
346,
48351,
418,
353,
2310,
4982,
187,
186,
9819,
48351,
18,
353,
10569,
51,
995,
346,
6812,
40470,
34026,
26457,
995,
346,
6812,
40470,
18,
34026,
353,
10569,
51,
4982,
187,
186,
9819,
48351,
18,
353,
10569,
51,
995,
346,
48351,
18,
26457,
995,
346,
48351,
416,
353,
2310,
4982,
535,
186,
9819,
6812,
40470,
18,
47522,
353,
10569,
45,
995,
346,
48351,
418,
18,
26457,
995,
346,
48351,
18,
353,
10569,
45,
4982,
187,
186,
9819,
6812,
40470,
18,
47522,
353,
10569,
45,
995,
346,
48351,
416,
18,
26457,
995,
346,
48351,
18,
353,
10569,
51,
4982,
535,
186,
9819,
6812,
40470,
18,
47522,
353,
10569,
51,
995,
346,
48351,
416,
18,
26457,
995,
346,
48351,
18,
353,
10569,
51,
4982,
187,
186,
9819,
6812,
40470,
18,
47522,
353,
10569,
51,
995,
346,
48351,
418,
18,
26457,
995,
346,
48351,
18,
353,
10569,
45,
4982,
535,
186,
9819,
48351,
418,
18,
12269,
995,
346,
48351,
18,
995,
346,
48351,
18,
353,
10569,
45,
4982,
187,
186,
9819,
48351,
418,
18,
12269,
995,
346,
6812,
40470,
18,
47522,
22347,
254,
995,
346,
6812,
40470,
18,
47522,
353,
10569,
45,
4982,
187,
186,
9819,
48351,
416,
18,
12269,
995,
346,
48351,
18,
995,
346,
48351,
18,
353,
10569,
51,
4982,
187,
186,
9819,
48351,
416,
18,
12269,
995,
346,
6812,
40470,
18,
47522,
22347,
254,
995,
346,
6812,
40470,
18,
47522,
353,
10569,
51,
4982,
535,
186,
9819,
48351,
418,
18,
995,
5812,
13,
346,
48351,
418,
18,
12269,
4982,
187,
186,
9819,
48351,
416,
18,
995,
5812,
13,
346,
48351,
416,
18,
12269,
4982,
535,
186,
9819,
48351,
418,
18,
995,
5812,
13,
346,
48351,
337,
41388,
4982,
187,
186,
9819,
48351,
416,
18,
995,
5812,
13,
346,
48351,
337,
41388,
4982,
535,
186,
9819,
18582,
329,
2503,
995,
5812,
13,
346,
48351,
418,
18,
4982,
187,
186,
9819,
18582,
329,
2503,
995,
5812,
13,
346,
48351,
416,
18,
4982,
187,
186,
9819,
18582,
329,
2503,
995,
5812,
13,
346,
18582,
329,
2503,
418,
4982,
187,
186,
9819,
18582,
329,
2503,
995,
5812,
13,
346,
18582,
329,
2503,
416,
4982,
187,
186,
9819,
18582,
329,
2503,
995,
5812,
13,
346,
13614,
18628,
4982,
187,
186,
9819,
18582,
329,
2503,
995,
5812,
13,
346,
8662,
463,
49011,
4982,
187,
186,
9819,
18582,
329,
2503,
995,
5812,
13,
346,
22370,
35468,
322,
6328,
4982,
187,
186,
9819,
18582,
329,
2503,
995,
5812,
13,
346,
55,
709,
18,
4982,
187,
186,
9819,
18582,
3271,
10223,
2135,
995,
346,
37279,
995,
346,
18582,
329,
2503,
4982,
187,
186,
9819,
18582,
1372,
10223,
2135,
995,
346,
37279,
995,
346,
18582,
329,
2503,
4982,
187,
186,
9819,
18582,
3271,
995,
5812,
13,
346,
18582,
3271,
10223,
2135,
4982,
187,
186,
9819,
18582,
1372,
995,
5812,
13,
346,
18582,
1372,
10223,
2135,
4982,
187,
4718,
187,
187,
4659,
540,
37523,
22,
35488,
64,
1178,
64,
2851,
78,
64,
31873,
9,
2855,
23673,
64,
33353,
64,
1473,
74,
475,
1473,
74,
13,
10698,
540,
28951,
64,
12477,
13,
996,
186,
10790,
540,
44962,
64,
12477,
13,
540,
25195,
13,
540,
15239,
64,
3429,
10,
187,
92,
187,
186,
2855,
23673,
64,
33353,
64,
15658,
475,
15658,
426,
277,
2284,
1168,
15658,
28,
187,
186,
10790,
540,
502,
13,
821,
426,
470,
28,
535,
186,
338,
313,
10136,
64,
12477,
2785,
44962,
64,
12477,
10,
996,
186,
33999,
64,
33353,
64,
15658,
64,
11183,
64,
11209,
9,
15658,
13,
9233,
22,
35488,
64,
53,
9042,
64,
2350,
4877,
64,
20562,
64,
19,
13,
988,
186,
4708,
22,
35488,
64,
53,
9042,
64,
1400,
13,
9233,
22,
35488,
64,
53,
9042,
64,
1400,
558,
187,
186,
7271,
996,
186,
33999,
64,
33353,
64,
15658,
64,
11183,
64,
11209,
9,
15658,
13,
9233,
22,
35488,
64,
53,
9042,
64,
2350,
4877,
64,
20562,
64,
19,
13,
988,
186,
4708,
22,
35488,
64,
53,
9042,
64,
1400,
13,
470,
558,
535,
186,
16065,
313,
3433,
1502,
10,
551,
187,
186,
5045,
577,
27,
996,
186,
1208,
19470,
9233,
22,
35488,
64,
53,
9042,
64,
13257,
64,
2775,
64,
21,
28,
996,
186,
1208,
19470,
9233,
22,
35488,
64,
53,
9042,
64,
20743,
64,
2775,
64,
21,
28,
996,
186,
7054,
28,
187,
186,
5045,
721,
27,
996,
186,
1208,
19470,
9233,
22,
35488,
64,
53,
9042,
64,
13257,
64,
2775,
64,
23,
28,
996,
186,
1208,
19470,
9233,
22,
35488,
64,
53,
9042,
64,
20743,
64,
2775,
64,
23,
28,
996,
186,
7054,
28,
187,
186,
5045,
854,
27,
996,
186,
1208,
19470,
9233,
22,
35488,
64,
53,
9042,
64,
13257,
64,
2775,
64,
25,
28,
996,
186,
1208,
19470,
9233,
22,
35488,
64,
53,
9042,
64,
20743,
64,
2775,
64,
25,
28,
996,
186,
7054,
28,
187,
186,
5045,
374,
27,
996,
186,
7054,
28,
187,
186,
6986,
27,
996,
186,
2309,
428,
37213,
28,
187,
186,
94,
535,
186,
33999,
64,
33353,
64,
15658,
64,
11183,
64,
11209,
9,
15658,
13,
9233,
22,
35488,
64,
53,
9042,
64,
20562,
13,
996,
186,
4708,
22,
35488,
64,
53,
9042,
64,
13257,
64,
2775,
64,
18690,
1040,
9233,
22,
35488,
64,
53,
9042,
64,
20743,
64,
2775,
64,
18690,
13,
821,
558,
535,
186,
16065,
313,
31873,
64,
3429,
10,
551,
187,
186,
5045,
854,
27,
996,
186,
338,
313,
10136,
64,
12477,
2785,
44962,
64,
12477,
10,
988,
186,
2309,
428,
37213,
28,
996,
186,
498,
426,
9233,
22,
35488,
64,
42,
19,
52,
18,
64,
13257,
64,
2775,
45,
64,
25,
1040,
9233,
22,
35488,
64,
42,
19,
52,
18,
64,
20743,
64,
2775,
45,
64,
25,
28,
996,
186,
7054,
28,
187,
186,
5045,
1668,
27,
996,
186,
1208,
426,
9233,
22,
35488,
64,
53,
9042,
64,
3207,
64,
1036,
28,
996,
186,
498,
426,
9233,
22,
35488,
64,
42,
19,
52,
18,
64,
13257,
64,
2775,
45,
64,
1036,
1040,
9233,
22,
35488,
64,
42,
19,
52,
18,
64,
20743,
64,
2775,
45,
64,
1036,
28,
996,
186,
7054,
28,
187,
186,
5045,
1384,
27,
996,
186,
1208,
426,
9233,
22,
35488,
64,
53,
9042,
64,
3207,
64,
938,
28,
996,
186,
498,
426,
9233,
22,
35488,
64,
42,
19,
52,
18,
64,
13257,
64,
2775,
45,
64,
938,
1040,
9233,
22,
35488,
64,
42,
19,
52,
18,
64,
20743,
64,
2775,
45,
64,
938,
28,
996,
186,
7054,
28,
187,
186,
5045,
2164,
27,
996,
186,
1208,
426,
9233,
22,
35488,
64,
53,
9042,
64,
3207,
64,
1348,
28,
996,
186,
498,
426,
9233,
22,
35488,
64,
42,
19,
52,
18,
64,
13257,
64,
2775,
45,
64,
1348,
1040,
9233,
22,
35488,
64,
42,
19,
52,
18,
64,
20743,
64,
2775,
45,
64,
1348,
28,
996,
186,
7054,
28,
187,
186,
5045,
4567,
27,
996,
186,
1208,
426,
9233,
22,
35488,
64,
53,
9042,
64,
3207,
64,
1237,
28,
996,
186,
498,
426,
9233,
22,
35488,
64,
42,
19,
52,
18,
64,
13257,
64,
2775,
45,
64,
1237,
1040,
9233,
22,
35488,
64,
42,
19,
52,
18,
64,
20743,
64,
2775,
45,
64,
1237,
28,
996,
186,
7054,
28,
187,
186,
6986,
27,
996,
186,
2309,
428,
37213,
28,
187,
186,
94,
535,
186,
33999,
64,
33353,
64,
15658,
64,
11183,
64,
11209,
9,
15658,
13,
9233,
22,
35488,
64,
53,
9042,
64,
53,
5707,
64,
20562,
13,
996,
186,
4708,
22,
35488,
64,
53,
9042,
64,
3207,
64,
18690,
13,
821,
558,
187,
186,
33999,
64,
33353,
64,
15658,
64,
11183,
64,
11209,
9,
15658,
13,
9233,
22,
35488,
64,
42,
19,
52,
18,
64,
3871,
49,
13,
996,
186,
4708,
22,
35488,
64,
42,
19,
52,
18,
64,
13257,
64,
2775,
45,
64,
18690,
1040,
9233,
22,
35488,
64,
42,
19,
52,
18,
64,
20743,
64,
2775,
45,
64,
18690,
13,
502,
558,
535,
186,
2309,
470,
28,
187,
94,
187,
187,
4659,
540,
37523,
22,
35488,
64,
13816,
64,
12928,
9,
2855,
23673,
64,
35521,
64,
2377,
4963,
475,
2377,
4963,
13,
996,
186,
2855,
23673,
64,
35521,
64,
13816,
64,
12928,
475,
12928,
13,
1577,
23673,
64,
33353,
64,
1473,
74,
475,
1473,
74,
10,
187,
92,
187,
186,
2855,
23673,
64,
33353,
64,
15658,
475,
15658,
426,
277,
2284,
1168,
15658,
28,
187,
186,
2855,
37523,
22,
35488,
64,
13552,
475,
1378,
22,
35488,
426,
23673,
64,
33353,
64,
15658,
64,
788,
64,
35805,
2203,
9,
15658,
558,
187,
186,
10790,
540,
8472,
64,
18,
426,
470,
13,
8472,
64,
19,
426,
470,
28,
187,
186,
565,
638,
64,
2154,
13,
3665,
64,
3281,
28,
535,
186,
1378,
22,
35488,
1168,
32888,
777,
60,
1473,
74,
1168,
301,
62,
426,
18912,
64,
4427,
9,
12928,
558,
187,
186,
3456,
64,
2154,
426,
391,
77,
23,
18390,
64,
788,
64,
18255,
64,
5374,
9,
1378,
22,
35488,
1168,
10404,
18255,
13,
37523,
22,
35488,
1168,
32888,
777,
60,
1473,
74,
1168,
301,
9259,
535,
186,
6301,
64,
3281,
426,
23673,
64,
33353,
64,
12928,
64,
936,
64,
6301,
64,
3281,
9,
12928,
558,
187,
186,
338,
313,
6301,
64,
3281,
654,
470,
10,
551,
996,
186,
3620,
64,
1000,
9,
15658,
1168,
3620,
13,
346,
28240,
1135,
7551,
3665,
1979,
27,
2462,
69,
61,
79,
995,
988,
186,
6301,
64,
3281,
558,
996,
186,
2309,
428,
37213,
28,
187,
186,
94,
535,
186,
3620,
64,
37463,
9,
1473,
74,
1168,
3620,
13,
346,
32888,
777,
310,
2462,
69,
8161,
285,
638,
64,
2154,
310,
2462,
69,
323,
891,
261,
2462,
69,
61,
79,
995,
996,
186,
1378,
22,
35488,
1168,
32888,
777,
60,
1473,
74,
1168,
301,
1092,
638,
64,
2154,
13,
277,
2284,
1168,
301,
558,
535,
186,
16065,
313,
12928,
64,
3429,
9,
12928,
1228,
551,
187,
186,
5045,
1668,
27,
996,
186,
7054,
28,
187,
186,
5045,
1384,
27,
996,
186,
5025,
64,
18,
19470,
9233,
22,
35488,
64,
42,
19,
52,
18,
64,
6721,
64,
938,
28,
996,
186,
5025,
64,
19,
19470,
9233,
22,
35488,
64,
42,
19,
52,
19,
64,
6721,
64,
938,
28,
996,
186,
7054,
28,
187,
186,
5045,
2164,
27,
996,
186,
5025,
64,
18,
19470,
9233,
22,
35488,
64,
42,
19,
52,
18,
64,
6721,
64,
1348,
28,
996,
186,
5025,
64,
19,
19470,
9233,
22,
35488,
64,
42,
19,
52,
19,
64,
6721,
64,
1348,
28,
996,
186,
7054,
28,
187,
186,
5045,
4567,
27,
996,
186,
5025,
64,
18,
19470,
9233,
22,
35488,
64,
42,
19,
52,
18,
64,
6721,
64,
1237,
28,
996,
186,
5025,
64,
19,
19470,
9233,
22,
35488,
64,
42,
19,
52,
19,
64,
6721,
64,
1348,
28,
996,
186,
7054,
28,
187,
186,
5045,
854,
27,
996,
186,
5025,
64,
18,
19470,
9233,
22,
35488,
64,
42,
19,
52,
19,
64,
6721,
64,
25,
28,
996,
186,
5025,
64,
19,
19470,
9233,
22,
35488,
64,
42,
19,
52,
19,
64,
6721,
64,
25,
28,
996,
186,
7054,
28,
187,
186,
6986,
27,
996,
186,
2309,
428,
37213,
28,
187,
186,
94,
535,
186,
16065,
313,
1473,
74,
1168,
301,
10,
551,
187,
186,
5045,
9233,
22,
35488,
64,
34,
3801,
18,
27,
996,
186,
33999,
64,
33353,
64,
15658,
64,
11183,
64,
11209,
9,
15658,
13,
9233,
22,
35488,
64,
42,
19,
52,
18,
64,
3871,
49,
13,
988,
186,
4708,
22,
35488,
64,
42,
19,
52,
18,
64,
6721,
64,
18690,
13,
8472,
64,
18,
558,
996,
186,
338,
313,
1378,
22,
35488,
1168,
11717,
60,
4708,
22,
35488,
64,
34,
3801,
18,
3291,
551,
988,
186,
33999,
64,
33353,
64,
15658,
64,
11183,
64,
11209,
9,
15658,
13,
2657,
186,
4708,
22,
35488,
64,
2350,
4877,
64,
22370,
64,
18,
13,
9233,
22,
35488,
64,
42,
19,
52,
64,
46,
64,
37151,
64,
18690,
1040,
2657,
186,
4708,
22,
35488,
64,
42,
19,
52,
64,
22370,
64,
31694,
64,
18690,
13,
2657,
186,
3456,
64,
2154,
5291,
9233,
22,
35488,
64,
42,
19,
52,
64,
46,
64,
37151,
64,
52,
5518,
1040,
2657,
186,
9,
1378,
22,
35488,
1168,
10404,
18255,
64,
7614,
10,
5291,
9233,
22,
35488,
64,
42,
19,
52,
64,
22370,
64,
31694,
64,
52,
5518,
558,
996,
186,
94,
996,
186,
338,
313,
12928,
64,
32460,
9,
12928,
10,
2295,
337,
10,
3476,
23783,
4438,
1738,
988,
186,
33999,
64,
33353,
64,
15658,
64,
11183,
64,
11209,
9,
15658,
13,
2657,
186,
4708,
22,
35488,
64,
42,
19,
52,
18,
64,
3871,
49,
13,
9233,
22,
35488,
64,
42,
19,
52,
18,
64,
22362,
48,
64,
18690,
13,
2657,
186,
4708,
22,
35488,
64,
42,
19,
52,
18,
64,
22362,
48,
64,
1400,
558,
996,
186,
7271,
988,
186,
33999,
64,
33353,
64,
15658,
64,
11183,
64,
11209,
9,
15658,
13,
2657,
186,
4708,
22,
35488,
64,
42,
19,
52,
18,
64,
3871,
49,
13,
9233,
22,
35488,
64,
42,
19,
52,
18,
64,
22362,
48,
64,
18690,
13,
2657,
186,
4708,
22,
35488,
64,
42,
19,
52,
18,
64,
22362,
48,
64,
15857,
558,
996,
186,
7054,
28,
187,
186,
5045,
9233,
22,
35488,
64,
34,
3801,
19,
27,
996,
186,
33999,
64,
33353,
64,
15658,
64,
11183,
64,
11209,
9,
15658,
13,
9233,
22,
35488,
64,
42,
19,
52,
19,
64,
3871,
49,
13,
988,
186,
4708,
22,
35488,
64,
42,
19,
52,
19,
64,
6721,
64,
18690,
13,
8472,
64,
19,
558,
996,
186,
338,
313,
1378,
22,
35488,
1168,
11717,
60,
4708,
22,
35488,
64,
34,
3801,
19,
3291,
551,
988,
186,
33999,
64,
33353,
64,
15658,
64,
11183,
64,
11209,
9,
15658,
13,
2657,
186,
4708,
22,
35488,
64,
42,
19,
52,
64,
46,
64,
22370,
64,
20562,
64,
18,
13,
9233,
22,
35488,
64,
42,
19,
52,
19,
64,
46,
64,
5414,
64,
18690,
13,
2657,
186,
3456,
64,
2154,
5291,
9233,
22,
35488,
64,
42,
19,
52,
19,
64,
46,
64,
5414,
64,
52,
5518,
558,
996,
186,
94,
996,
186,
338,
313,
12928,
64,
32460,
9,
12928,
10,
2295,
337,
10,
3476,
23783,
4438,
1738,
988,
186,
33999,
64,
33353,
64,
15658,
64,
11183,
64,
11209,
9,
15658,
13,
2657,
186,
4708,
22,
35488,
64,
42,
19,
52,
19,
64,
3871,
49,
13,
9233,
22,
35488,
64,
42,
19,
52,
19,
64,
22362,
48,
64,
18690,
13,
2657,
186,
4708,
22,
35488,
64,
42,
19,
52,
19,
64,
22362,
48,
64,
1400,
558,
996,
186,
7271,
988,
186,
33999,
64,
33353,
64,
15658,
64,
11183,
64,
11209,
9,
15658,
13,
2657,
186,
4708,
22,
35488,
64,
42,
19,
52,
19,
64,
3871,
49,
13,
9233,
22,
35488,
64,
42,
19,
52,
19,
64,
22362,
48,
64,
18690,
13,
2657,
186,
4708,
22,
35488,
64,
42,
19,
52,
19,
64,
22362,
48,
64,
15857,
558,
996,
186,
7054,
28,
187,
186,
6986,
27,
996,
186,
3620,
64,
1000,
9,
15658,
1168,
3620,
13,
346,
19504,
277,
2284,
1168,
301,
27,
2462,
69,
61,
79,
995,
277,
2284,
1168,
301,
558,
996,
186,
2309,
428,
37213,
28,
187,
186,
94,
535,
186,
2309,
470,
28,
187,
94,
187,
187,
4659,
540,
37523,
22,
35488,
64,
1178,
64,
1473,
74,
64,
20602,
9,
2855,
23673,
64,
33353,
64,
1473,
74,
475,
1473,
74,
13,
10698,
540,
21081,
10,
187,
92,
187,
186,
2855,
23673,
64,
33353,
64,
15658,
475,
15658,
426,
277,
2284,
1168,
15658,
28,
187,
186,
2855,
37523,
22,
35488,
64,
13552,
475,
1378,
22,
35488,
426,
23673,
64,
33353,
64,
15658,
64,
788,
64,
35805,
2203,
9,
15658,
558,
187,
186,
10790,
540,
810,
64,
1208,
426,
470,
13,
246,
17670,
64,
24845,
426,
470,
28,
535,
186,
16065,
313,
20602,
708,
322,
6577,
64,
34429,
64,
4877,
3801,
6229,
64,
3788,
30883,
64,
18690,
10,
551,
187,
186,
5045,
322,
6577,
64,
34429,
64,
4877,
3801,
6229,
64,
36,
8417,
64,
7386,
46,
27,
996,
186,
1378,
22,
35488,
1168,
11717,
60,
1473,
74,
1168,
301,
62,
426,
337,
28,
996,
186,
7054,
28,
187,
186,
5045,
322,
6577,
64,
34429,
64,
4877,
3801,
6229,
64,
42866,
64,
7386,
52,
27,
996,
186,
1378,
22,
35488,
1168,
11717,
60,
1473,
74,
1168,
301,
62,
426,
470,
28,
996,
186,
7054,
28,
187,
186,
6986,
27,
996,
186,
2309,
428,
37213,
28,
187,
186,
94,
535,
186,
16065,
313,
20602,
708,
322,
6577,
64,
34429,
64,
4877,
3801,
6229,
64,
1042,
55,
64,
18690,
10,
551,
187,
186,
5045,
322,
6577,
64,
34429,
64,
4877,
3801,
6229,
64,
23097,
64,
8016,
27,
996,
186,
7054,
28,
187,
186,
5045,
322,
6577,
64,
34429,
64,
4877,
3801,
6229,
64,
5472,
64,
8016,
27,
996,
186,
1747,
64,
1208,
19470,
9233,
22,
35488,
64,
42,
19,
52,
64,
7282,
64,
1042,
55,
28,
996,
186,
2851,
78,
64,
24845,
19470,
9233,
22,
35488,
64,
53,
9042,
64,
52,
64,
7282,
64,
1042,
55,
28,
996,
186,
7054,
28,
187,
186,
5045,
322,
6577,
64,
34429,
64,
4877,
3801,
6229,
64,
23097,
64,
3801,
27,
996,
186,
338,
313,
1473,
74,
1168,
301,
2295,
9233,
22,
35488,
64,
34,
3801,
18,
10,
988,
186,
2851,
78,
64,
24845,
19470,
9233,
22,
35488,
64,
53,
9042,
64,
52,
64,
13010,
64,
1042,
55,
1040,
9233,
22,
35488,
64,
53,
9042,
64,
46,
64,
7282,
64,
1042,
55,
28,
996,
186,
7271,
988,
186,
2309,
428,
37213,
28,
996,
186,
7054,
28,
187,
186,
5045,
322,
6577,
64,
34429,
64,
4877,
3801,
6229,
64,
5472,
64,
3801,
27,
996,
186,
338,
313,
1473,
74,
1168,
301,
2295,
9233,
22,
35488,
64,
34,
3801,
18,
10,
988,
186,
2851,
78,
64,
24845,
19470,
9233,
22,
35488,
64,
53,
9042,
64,
52,
64,
7282,
64,
1042,
55,
1040,
9233,
22,
35488,
64,
53,
9042,
64,
52,
64,
13010,
64,
1042,
55,
1040,
2664,
50274,
4708,
22,
35488,
64,
53,
9042,
64,
46,
64,
7282,
64,
1042,
55,
1040,
9233,
22,
35488,
64,
53,
9042,
64,
46,
64,
13010,
64,
1042,
55,
28,
996,
186,
7271,
988,
186,
2309,
428,
37213,
28,
996,
186,
7054,
28,
187,
186,
6986,
27,
996,
186,
2309,
428,
37213,
28,
187,
186,
94,
535,
186,
16065,
313,
20602,
708,
322,
6577,
64,
34429,
64,
4877,
3801,
6229,
64,
31447,
64,
18690,
10,
551,
187,
186,
5045,
322,
6577,
64,
34429,
64,
4877,
3801,
6229,
64,
42,
19,
52,
27,
996,
186,
7054,
28,
187,
186,
5045,
322,
6577,
64,
34429,
64,
4877,
3801,
6229,
64,
33959,
64,
43,
27,
996,
186,
1747,
64,
1208,
19470,
9233,
22,
35488,
64,
42,
19,
52,
64,
14803,
64,
33959,
28,
996,
186,
2851,
78,
64,
24845,
19470,
9233,
22,
35488,
64,
53,
9042,
64,
14803,
64,
33959,
28,
996,
186,
7054,
28,
187,
186,
5045,
322,
6577,
64,
34429,
64,
4877,
3801,
6229,
64,
37,
4350,
64,
34,
27,
996,
186,
1747,
64,
1208,
19470,
9233,
22,
35488,
64,
42,
19,
52,
64,
14803,
64,
41935,
64,
34,
28,
996,
186,
2851,
78,
64,
24845,
19470,
9233,
22,
35488,
64,
53,
9042,
64,
14803,
64,
41935,
64,
34,
28,
996,
186,
7054,
28,
187,
186,
5045,
322,
6577,
64,
34429,
64,
4877,
3801,
6229,
64,
37,
4350,
64,
35,
27,
996,
186,
1747,
64,
1208,
19470,
9233,
22,
35488,
64,
42,
19,
52,
64,
14803,
64,
41935,
64,
35,
28,
996,
186,
2851,
78,
64,
24845,
19470,
9233,
22,
35488,
64,
53,
9042,
64,
14803,
64,
41935,
64,
35,
28,
996,
186,
7054,
28,
187,
186,
6986,
27,
996,
186,
2309,
428,
37213,
28,
187,
186,
94,
535,
186,
16065,
313,
1473,
74,
1168,
301,
10,
551,
187,
186,
5045,
9233,
22,
35488,
64,
34,
3801,
18,
27,
996,
186,
33999,
64,
33353,
64,
15658,
64,
11183,
64,
11209,
9,
15658,
13,
9233,
22,
35488,
64,
42,
19,
52,
18,
64,
3871,
49,
13,
988,
186,
4708,
22,
35488,
64,
42,
19,
52,
64,
14803,
64,
18690,
13,
810,
64,
1208,
558,
996,
186,
33999,
64,
33353,
64,
15658,
64,
11183,
64,
11209,
9,
15658,
13,
9233,
22,
35488,
64,
53,
9042,
64,
53,
5707,
64,
20562,
13,
988,
186,
4708,
22,
35488,
64,
53,
9042,
64,
3338,
64,
18690,
1040,
9233,
22,
35488,
64,
53,
9042,
64,
52,
64,
7282,
64,
18690,
1040,
988,
186,
4708,
22,
35488,
64,
53,
9042,
64,
14803,
64,
18690,
1040,
9233,
22,
35488,
64,
53,
9042,
64,
46,
64,
7282,
64,
18690,
1040,
988,
186,
4708,
22,
35488,
64,
53,
9042,
64,
46,
64,
13010,
64,
18690,
1040,
9233,
22,
35488,
64,
53,
9042,
64,
52,
64,
13010,
64,
18690,
13,
988,
186,
2851,
78,
64,
24845,
1040,
37523,
22,
35488,
1168,
11717,
60,
1473,
74,
1168,
301,
9259,
996,
186,
7054,
28,
187,
186,
5045,
9233,
22,
35488,
64,
34,
3801,
19,
27,
996,
186,
338,
313,
1378,
22,
35488,
1168,
11717,
60,
1473,
74,
1168,
301,
62,
2295,
470,
10,
988,
186,
1747,
64,
1208,
19470,
9233,
22,
35488,
64,
42,
19,
52,
19,
64,
3338,
64,
52,
28,
996,
186,
33999,
64,
33353,
64,
15658,
64,
11183,
64,
11209,
9,
15658,
13,
9233,
22,
35488,
64,
42,
19,
52,
19,
64,
3871,
49,
13,
988,
186,
4708,
22,
35488,
64,
42,
19,
52,
19,
64,
3338,
64,
18690,
1040,
9233,
22,
35488,
64,
42,
19,
52,
64,
7282,
64,
18690,
1040,
988,
186,
4708,
22,
35488,
64,
42,
19,
52,
64,
14803,
64,
18690,
13,
810,
64,
1208,
558,
996,
186,
7054,
28,
187,
186,
6986,
27,
996,
186,
3620,
64,
1000,
9,
15658,
1168,
3620,
13,
346,
19504,
277,
2284,
1168,
301,
27,
2462,
69,
61,
79,
995,
277,
2284,
1168,
301,
558,
996,
186,
2309,
428,
37213,
28,
187,
186,
94,
187,
186,
2309,
470,
28,
187,
94,
187,
187,
4659,
540,
37523,
22,
35488,
64,
1178,
64,
15658,
64,
10404,
18255,
9,
2855,
23673,
64,
33353,
64,
15658,
475,
15658,
13,
996,
186,
565,
49362,
64,
301,
13,
540,
2603,
13,
10698,
540,
4107,
82,
13,
540,
14035,
10,
187,
92,
187,
186,
2855,
37523,
22,
35488,
64,
13552,
475,
1378,
22,
35488,
426,
23673,
64,
33353,
64,
15658,
64,
788,
64,
35805,
2203,
9,
15658,
558,
187,
186,
10790,
540,
810,
64,
1208,
426,
470,
13,
6740,
426,
470,
28,
535,
186,
338,
313,
41122,
2295,
37523,
22,
35488,
1168,
10404,
18255,
3857,
49362,
64,
301,
2295,
37523,
22,
35488,
1168,
10404,
18255,
64,
7614,
10,
996,
186,
2309,
470,
28,
535,
186,
16065,
313,
18255,
64,
301,
10,
551,
187,
186,
5045,
9233,
22,
35488,
64,
52,
22370,
64,
52,
64,
46,
22370,
27,
996,
186,
1747,
64,
1208,
19470,
9233,
22,
35488,
64,
52,
22370,
64,
31694,
64,
46,
22370,
28,
996,
186,
7614,
426,
9233,
22,
35488,
64,
22370,
64,
31694,
64,
46,
22370,
28,
996,
186,
7054,
28,
187,
186,
5045,
9233,
22,
35488,
64,
52,
22370,
64,
52,
64,
42690,
18,
27,
996,
186,
1747,
64,
1208,
19470,
9233,
22,
35488,
64,
52,
22370,
64,
31694,
64,
42690,
18,
28,
996,
186,
7614,
426,
9233,
22,
35488,
64,
22370,
64,
31694,
64,
42690,
18,
28,
996,
186,
7054,
28,
187,
186,
5045,
9233,
22,
35488,
64,
52,
22370,
64,
52,
64,
42690,
19,
27,
996,
186,
1747,
64,
1208,
19470,
9233,
22,
35488,
64,
52,
22370,
64,
31694,
64,
42690,
19,
28,
996,
186,
7614,
426,
9233,
22,
35488,
64,
22370,
64,
31694,
64,
42690,
19,
28,
996,
186,
7054,
28,
187,
186,
5045,
9233,
22,
35488,
64,
52,
22370,
64,
52,
64,
45070,
45,
44,
27,
996,
186,
1747,
64,
1208,
19470,
9233,
22,
35488,
64,
52,
22370,
64,
31694,
64,
45070,
45,
44,
28,
996,
186,
7614,
426,
9233,
22,
35488,
64,
22370,
64,
31694,
64,
45070,
45,
44,
28,
996,
186,
7054,
28,
187,
186,
6986,
27,
996,
186,
3620,
64,
1000,
9,
15658,
1168,
3620,
13,
346,
19504,
8886,
2654,
26607,
69,
1572,
79,
995,
49362,
64,
301,
558,
996,
186,
2309,
428,
37213,
28,
187,
186,
94,
187,
186,
33999,
64,
33353,
64,
15658,
64,
11183,
64,
11209,
9,
15658,
13,
9233,
22,
35488,
64,
5990,
35,
64,
22370,
13,
996,
186,
4708,
22,
35488,
64,
52,
22370,
64,
31694,
64,
18690,
13,
810,
64,
1208,
558,
535,
186,
338,
313,
1378,
22,
35488,
1168,
11717,
60,
4708,
22,
35488,
64,
34,
3801,
19,
3291,
551,
996,
186,
33999,
64,
33353,
64,
15658,
64,
11183,
64,
11209,
9,
15658,
13,
988,
186,
4708,
22,
35488,
64,
42,
19,
52,
64,
46,
64,
22370,
64,
20562,
64,
18,
13,
9233,
22,
35488,
64,
42,
19,
52,
19,
64,
31694,
64,
18690,
13,
988,
186,
7614,
5291,
9233,
22,
35488,
64,
42,
19,
52,
19,
64,
31694,
64,
52,
5518,
558,
187,
186,
94,
535,
186,
1378,
22,
35488,
1168,
10404,
18255,
426,
4107,
82,
28,
187,
186,
1378,
22,
35488,
1168,
10404,
18255,
64,
7614,
426,
49362,
64,
301,
28,
535,
186,
3620,
64,
37463,
9,
15658,
1168,
3620,
13,
346,
40543,
18255,
310,
2462,
69,
8161,
285,
8886,
2654,
310,
2462,
69,
61,
79,
995,
996,
186,
41122,
13,
49362,
64,
301,
558,
535,
186,
2309,
470,
28,
187,
94,
187,
187,
4659,
540,
37523,
22,
35488,
64,
1178,
64,
15658,
64,
50153,
9,
2855,
23673,
64,
33353,
64,
15658,
475,
15658,
13,
996,
186,
565,
499,
77,
64,
301,
13,
540,
2603,
13,
10698,
540,
4107,
82,
64,
249,
13,
996,
186,
10790,
540,
4107,
82,
64,
483,
10,
187,
92,
187,
186,
2855,
37523,
22,
35488,
64,
13552,
475,
1378,
22,
35488,
426,
23673,
64,
33353,
64,
15658,
64,
788,
64,
35805,
2203,
9,
15658,
558,
187,
186,
2855,
391,
77,
23,
18390,
64,
50153,
64,
3211,
499,
77,
64,
3211,
13,
499,
77,
19,
71,
64,
3211,
13,
499,
77,
19,
67,
64,
3211,
28,
187,
186,
10790,
540,
499,
77,
19,
64,
71,
483,
18,
13,
499,
77,
19,
64,
793,
64,
1208,
28,
187,
186,
565,
851,
28,
535,
186,
338,
313,
6756,
2295,
37523,
22,
35488,
1168,
50153,
64,
7614,
60,
50153,
64,
301,
62,
3857,
996,
50274,
41122,
64,
249,
2295,
37523,
22,
35488,
1168,
50153,
64,
249,
60,
50153,
64,
301,
62,
3857,
996,
50274,
41122,
64,
483,
2295,
37523,
22,
35488,
1168,
50153,
64,
483,
60,
50153,
64,
301,
3291,
996,
186,
2309,
470,
28,
535,
186,
338,
6522,
41122,
64,
249,
2785,
2195,
41122,
64,
483,
10,
551,
996,
186,
3620,
64,
37463,
9,
15658,
1168,
3620,
13,
346,
42690,
13603,
61,
79,
3287,
6886,
186,
1378,
22,
35488,
1168,
50153,
64,
249,
60,
50153,
64,
301,
62,
426,
470,
28,
996,
186,
1378,
22,
35488,
1168,
50153,
64,
483,
60,
50153,
64,
301,
62,
426,
470,
28,
996,
186,
33999,
64,
33353,
64,
15658,
64,
11183,
64,
11209,
9,
15658,
13,
9233,
22,
35488,
64,
5990,
35,
64,
22370,
13,
988,
186,
4708,
22,
35488,
64,
52,
22370,
64,
31694,
64,
18690,
13,
9233,
22,
35488,
64,
52,
22370,
64,
31694,
64,
46,
22370,
558,
996,
186,
2309,
470,
28,
187,
186,
94,
535,
186,
338,
313,
50153,
64,
301,
2295,
9233,
22,
35488,
64,
42690,
19,
10,
551,
996,
186,
16065,
313,
6756,
10,
551,
996,
186,
5045,
9233,
22,
35488,
64,
42690,
19,
64,
52,
64,
46,
22370,
27,
988,
186,
33999,
64,
33353,
64,
15658,
64,
11183,
64,
11209,
9,
15658,
13,
2657,
186,
4708,
22,
35488,
64,
5990,
35,
64,
22370,
13,
9233,
22,
35488,
64,
42690,
19,
64,
31694,
64,
18690,
13,
2657,
186,
4708,
22,
35488,
64,
42690,
19,
64,
31694,
64,
46,
22370,
558,
988,
186,
7054,
28,
996,
186,
6986,
27,
988,
186,
3620,
64,
1000,
9,
15658,
1168,
3620,
13,
346,
20920,
45479,
19,
12269,
2462,
69,
61,
79,
995,
2657,
186,
6756,
558,
988,
186,
2309,
428,
37213,
28,
996,
186,
94,
6886,
186,
6930,
988,
475,
45479,
19,
32147,
684,
374,
45479,
5085,
15,
988,
475,
844,
1804,
253,
401,
483,
273,
253,
2914,
45479,
310,
495,
15,
2759,
32023,
15,
988,
1738,
996,
186,
50153,
19,
64,
71,
483,
18,
426,
31184,
1418,
28,
996,
186,
1221,
426,
391,
77,
23,
18390,
64,
50153,
64,
32557,
9,
41122,
64,
249,
13,
499,
77,
19,
64,
71,
483,
18,
13,
708,
50153,
19,
71,
64,
3211,
558,
996,
186,
338,
313,
1221,
654,
470,
10,
551,
988,
186,
3620,
64,
1000,
9,
15658,
1168,
3620,
13,
346,
28240,
1135,
430,
3280,
8886,
2462,
69,
61,
79,
995,
2657,
186,
41122,
64,
249,
558,
988,
186,
2309,
851,
28,
996,
186,
94,
996,
186,
3620,
64,
37463,
9,
15658,
1168,
3620,
13,
346,
42690,
19,
39,
27,
1442,
23869,
69,
269,
483,
23869,
69,
18210,
23869,
69,
278,
23869,
69,
295,
23869,
69,
465,
23869,
69,
61,
79,
995,
988,
186,
41122,
64,
249,
13,
499,
77,
19,
64,
71,
483,
18,
13,
988,
186,
50153,
19,
71,
64,
3211,
15,
78,
64,
12303,
13,
988,
186,
9,
50153,
19,
71,
64,
3211,
15,
78,
64,
12303,
3736,
470,
1163,
499,
77,
19,
71,
64,
3211,
15,
78,
64,
3211,
582,
988,
186,
50153,
19,
71,
64,
3211,
15,
79,
64,
3211,
13,
499,
77,
19,
71,
64,
3211,
15,
76,
64,
3211,
558,
6886,
186,
1221,
426,
391,
77,
23,
18390,
64,
50153,
64,
32557,
9,
50153,
19,
64,
71,
483,
18,
13,
4107,
82,
64,
483,
13,
708,
50153,
19,
67,
64,
3211,
558,
996,
186,
338,
313,
1221,
654,
470,
10,
551,
988,
186,
3620,
64,
1000,
9,
15658,
1168,
3620,
13,
346,
28240,
1135,
430,
3280,
8886,
2462,
69,
61,
79,
995,
2657,
186,
50153,
19,
64,
71,
483,
18,
558,
988,
186,
2309,
851,
28,
996,
186,
94,
996,
186,
3620,
64,
37463,
9,
15658,
1168,
3620,
13,
346,
42690,
19,
35,
27,
1442,
23869,
69,
269,
483,
23869,
69,
18210,
23869,
69,
278,
23869,
69,
295,
23869,
69,
465,
23869,
69,
61,
79,
995,
988,
186,
50153,
19,
64,
71,
483,
18,
13,
4107,
82,
64,
483,
13,
988,
186,
50153,
19,
67,
64,
3211,
15,
78,
64,
12303,
13,
988,
186,
9,
50153,
19,
67,
64,
3211,
15,
78,
64,
12303,
3736,
470,
1163,
499,
77,
19,
67,
64,
3211,
15,
78,
64,
3211,
582,
988,
186,
50153,
19,
67,
64,
3211,
15,
79,
64,
3211,
13,
499,
77,
19,
67,
64,
3211,
15,
76,
64,
3211,
558,
6886,
186,
33999,
64,
33353,
64,
15658,
64,
6343,
9,
15658,
13,
9233,
22,
35488,
64,
42690,
19,
64,
20562,
64,
18,
13,
988,
186,
50153,
19,
71,
64,
3211,
15,
76,
64,
3211,
5291,
9233,
22,
35488,
64,
42690,
19,
39,
64,
44,
64,
52,
5518,
1040,
988,
186,
50153,
19,
67,
64,
3211,
15,
76,
64,
3211,
5291,
9233,
22,
35488,
64,
42690,
19,
35,
64,
44,
64,
52,
5518,
1040,
988,
186,
50153,
19,
67,
64,
3211,
15,
78,
64,
3211,
558,
996,
186,
33999,
64,
33353,
64,
15658,
64,
6343,
9,
15658,
13,
9233,
22,
35488,
64,
42690,
19,
64,
20562,
64,
19,
13,
988,
186,
50153,
19,
71,
64,
3211,
15,
78,
64,
3211,
5291,
9233,
22,
35488,
64,
42690,
19,
39,
64,
46,
64,
52,
5518,
1040,
988,
186,
50153,
19,
67,
64,
3211,
15,
79,
64,
3211,
558,
996,
186,
33999,
64,
33353,
64,
15658,
64,
6343,
9,
15658,
13,
9233,
22,
35488,
64,
42690,
19,
64,
20562,
64,
20,
13,
988,
186,
50153,
19,
71,
64,
3211,
15,
79,
64,
3211,
5291,
9233,
22,
35488,
64,
42690,
19,
39,
64,
47,
64,
52,
5518,
558,
6886,
186,
338,
313,
41122,
64,
483,
2295,
19956,
2787,
1518,
10,
988,
186,
50153,
19,
64,
793,
64,
1208,
426,
337,
5291,
9233,
22,
35488,
64,
42690,
19,
35,
64,
27300,
64,
3299,
64,
52,
5518,
28,
996,
186,
7271,
988,
186,
50153,
19,
64,
793,
64,
1208,
426,
337,
5291,
9233,
22,
35488,
64,
42690,
19,
35,
64,
3299,
64,
15012,
49,
64,
52,
5518,
28,
996,
186,
33999,
64,
33353,
64,
15658,
64,
11183,
64,
11209,
9,
15658,
13,
9233,
22,
35488,
64,
42690,
19,
64,
20562,
64,
21,
13,
988,
186,
4708,
22,
35488,
64,
42690,
19,
35,
64,
27300,
64,
3299,
64,
18690,
1040,
9233,
22,
35488,
64,
42690,
19,
35,
64,
3299,
64,
15012,
49,
64,
18690,
1040,
988,
186,
4708,
22,
35488,
64,
42690,
19,
35,
64,
46,
64,
7282,
64,
18690,
1040,
9233,
22,
35488,
64,
42690,
19,
39,
64,
46,
64,
7282,
64,
18690,
1040,
470,
14506,
13,
988,
186,
50153,
19,
64,
793,
64,
1208,
1040,
988,
186,
9,
50153,
19,
67,
64,
3211,
15,
78,
64,
12303,
3736,
337,
1163,
470,
10,
5291,
9233,
22,
35488,
64,
42690,
19,
35,
64,
46,
64,
7282,
64,
52,
5518,
1040,
988,
186,
9,
50153,
19,
71,
64,
3211,
15,
78,
64,
12303,
3736,
337,
1163,
470,
10,
5291,
9233,
22,
35488,
64,
42690,
19,
39,
64,
46,
64,
7282,
64,
52,
5518,
1040,
988,
186,
17,
14506,
558,
187,
186,
94,
2010,
551,
996,
186,
16065,
313,
6756,
10,
551,
996,
186,
5045,
9233,
22,
35488,
64,
42690,
18,
64,
52,
64,
46,
22370,
27,
988,
186,
33999,
64,
33353,
64,
15658,
64,
11183,
64,
11209,
9,
15658,
13,
2657,
186,
4708,
22,
35488,
64,
5990,
35,
64,
22370,
13,
9233,
22,
35488,
64,
42690,
18,
64,
31694,
64,
18690,
13,
2657,
186,
4708,
22,
35488,
64,
42690,
18,
64,
31694,
64,
46,
22370,
558,
988,
186,
7054,
28,
996,
186,
5045,
9233,
22,
35488,
64,
42690,
18,
64,
52,
64,
35,
22370,
18,
27,
988,
186,
33999,
64,
33353,
64,
15658,
64,
11183,
64,
11209,
9,
15658,
13,
2657,
186,
4708,
22,
35488,
64,
5990,
35,
64,
22370,
13,
9233,
22,
35488,
64,
42690,
18,
64,
31694,
64,
18690,
13,
2657,
186,
4708,
22,
35488,
64,
42690,
18,
64,
31694,
64,
35,
22370,
18,
558,
988,
186,
7054,
28,
996,
186,
6986,
27,
988,
186,
3620,
64,
1000,
9,
15658,
1168,
3620,
13,
346,
20920,
45479,
18,
12269,
2462,
69,
61,
79,
995,
2657,
186,
6756,
558,
988,
186,
2309,
428,
37213,
28,
996,
186,
94,
6886,
186,
1221,
426,
391,
77,
23,
18390,
64,
50153,
64,
32557,
9,
41122,
64,
249,
13,
4107,
82,
64,
483,
13,
708,
50153,
64,
3211,
558,
996,
186,
338,
313,
1221,
654,
470,
10,
551,
988,
186,
3620,
64,
1000,
9,
15658,
1168,
3620,
13,
346,
28240,
1135,
430,
3280,
8886,
2462,
69,
61,
79,
995,
2657,
186,
41122,
64,
249,
558,
988,
186,
2309,
851,
28,
996,
186,
94,
6886,
186,
3620,
64,
37463,
9,
15658,
1168,
3620,
13,
346,
1615,
5858,
23869,
69,
278,
23869,
69,
295,
23869,
69,
465,
23869,
69,
61,
79,
995,
988,
186,
50153,
64,
3211,
15,
78,
64,
12303,
13,
313,
50153,
64,
3211,
15,
78,
64,
12303,
3736,
470,
1163,
499,
77,
64,
3211,
15,
78,
64,
3211,
582,
988,
186,
50153,
64,
3211,
15,
79,
64,
3211,
13,
499,
77,
64,
3211,
15,
76,
64,
3211,
558,
6886,
186,
33999,
64,
33353,
64,
15658,
64,
6343,
9,
15658,
13,
9233,
22,
35488,
64,
42690,
64,
20562,
64,
18,
13,
988,
186,
50153,
64,
3211,
15,
79,
64,
3211,
5291,
9233,
22,
35488,
64,
42690,
64,
47,
64,
52,
5518,
1040,
499,
77,
64,
3211,
15,
76,
64,
3211,
558,
996,
186,
33999,
64,
33353,
64,
15658,
64,
6343,
9,
15658,
13,
9233,
22,
35488,
64,
42690,
64,
20562,
64,
19,
13,
988,
50274,
9,
50153,
64,
3211,
15,
78,
64,
12303,
3736,
470,
1163,
499,
77,
64,
3211,
15,
78,
64,
3211,
10,
5291,
9233,
22,
35488,
64,
42690,
64,
46,
64,
52,
5518,
1040,
988,
50274,
50153,
64,
3211,
15,
78,
64,
12303,
5291,
9233,
22,
35488,
64,
42690,
64,
46,
64,
7282,
64,
52,
5518,
1040,
9233,
22,
35488,
64,
42690,
64,
51,
1267,
558,
187,
186,
94,
535,
186,
1378,
22,
35488,
1168,
50153,
64,
249,
60,
50153,
64,
301,
62,
426,
4107,
82,
64,
249,
28,
187,
186,
1378,
22,
35488,
1168,
50153,
64,
483,
60,
50153,
64,
301,
62,
426,
4107,
82,
64,
483,
28,
187,
186,
1378,
22,
35488,
1168,
50153,
64,
7614,
60,
50153,
64,
301,
62,
426,
2603,
28,
535,
186,
2309,
470,
28,
187,
94,
187,
187,
4659,
540,
37523,
22,
35488,
64,
1178,
64,
67,
18255,
18,
64,
29603,
9,
2855,
23673,
64,
33353,
64,
1473,
74,
475,
1473,
74,
13,
10698,
540,
4313,
10,
187,
92,
187,
186,
2855,
23673,
64,
33353,
64,
15658,
475,
15658,
426,
277,
2284,
1168,
15658,
28,
187,
186,
2855,
37523,
22,
35488,
64,
13552,
475,
1378,
22,
35488,
426,
23673,
64,
33353,
64,
15658,
64,
788,
64,
35805,
2203,
9,
15658,
558,
535,
186,
1378,
22,
35488,
1168,
67,
18255,
60,
1473,
74,
1168,
301,
62,
426,
4313,
28,
535,
186,
16065,
313,
29603,
10,
551,
187,
186,
5045,
17558,
27,
996,
186,
33999,
64,
33353,
64,
15658,
64,
11183,
64,
11209,
9,
15658,
13,
9233,
22,
35488,
64,
53,
9042,
64,
53,
5707,
64,
20562,
13,
988,
186,
4708,
22,
35488,
64,
53,
9042,
64,
35,
22370,
64,
3338,
18,
64,
18690,
13,
9233,
22,
35488,
64,
53,
9042,
64,
35,
22370,
64,
3338,
18,
64,
9726,
558,
996,
186,
7054,
28,
187,
186,
5045,
12842,
27,
996,
186,
33999,
64,
33353,
64,
15658,
64,
11183,
64,
11209,
9,
15658,
13,
9233,
22,
35488,
64,
53,
9042,
64,
53,
5707,
64,
20562,
13,
988,
186,
4708,
22,
35488,
64,
53,
9042,
64,
35,
22370,
64,
3338,
18,
64,
18690,
13,
9233,
22,
35488,
64,
53,
9042,
64,
35,
22370,
64,
3338,
18,
64,
8196,
558,
996,
186,
7054,
28,
187,
186,
5045,
6705,
27,
996,
186,
33999,
64,
33353,
64,
15658,
64,
11183,
64,
11209,
9,
15658,
13,
9233,
22,
35488,
64,
53,
9042,
64,
53,
5707,
64,
20562,
13,
988,
186,
4708,
22,
35488,
64,
53,
9042,
64,
35,
22370,
64,
3338,
18,
64,
18690,
13,
9233,
22,
35488,
64,
53,
9042,
64,
35,
22370,
64,
3338,
18,
64,
1540,
558,
996,
186,
7054,
28,
187,
186,
5045,
4567,
27,
996,
186,
33999,
64,
33353,
64,
15658,
64,
11183,
64,
11209,
9,
15658,
13,
9233,
22,
35488,
64,
53,
9042,
64,
53,
5707,
64,
20562,
13,
988,
186,
4708,
22,
35488,
64,
53,
9042,
64,
35,
22370,
64,
3338,
18,
64,
18690,
13,
9233,
22,
35488,
64,
53,
9042,
64,
35,
22370,
64,
3338,
18,
64,
1237,
558,
996,
186,
7054,
28,
187,
186,
6986,
27,
996,
186,
3620,
64,
1000,
9,
1473,
74,
1168,
3620,
13,
346,
19504,
270,
18255,
18,
4313,
2462,
69,
61,
79,
995,
4313,
558,
996,
186,
2309,
428,
37213,
28,
187,
186,
94,
535,
186,
2309,
470,
28,
187,
94,
187,
187,
4659,
540,
37523,
22,
35488,
64,
1178,
64,
67,
18255,
19,
64,
29603,
9,
2855,
23673,
64,
33353,
64,
1473,
74,
475,
1473,
74,
13,
10698,
540,
4313,
10,
187,
92,
187,
186,
2855,
23673,
64,
33353,
64,
15658,
475,
15658,
426,
277,
2284,
1168,
15658,
28,
187,
186,
2855,
37523,
22,
35488,
64,
13552,
475,
1378,
22,
35488,
426,
23673,
64,
33353,
64,
15658,
64,
788,
64,
35805,
2203,
9,
15658,
558,
535,
186,
1378,
22,
35488,
1168,
67,
18255,
60,
1473,
74,
1168,
301,
62,
426,
4313,
28,
535,
186,
16065,
313,
29603,
10,
551,
187,
186,
5045,
6705,
27,
996,
186,
33999,
64,
33353,
64,
15658,
64,
11183,
64,
11209,
9,
15658,
13,
9233,
22,
35488,
64,
2350,
4877,
64,
22370,
64,
19,
13,
988,
186,
4708,
22,
35488,
64,
42,
19,
52,
19,
64,
35,
22370,
64,
3338,
19,
64,
18690,
13,
988,
186,
4708,
22,
35488,
64,
42,
19,
52,
19,
64,
35,
22370,
64,
3338,
19,
64,
1540,
558,
996,
186,
7054,
28,
187,
186,
5045,
4567,
27,
996,
186,
33999,
64,
33353,
64,
15658,
64,
11183,
64,
11209,
9,
15658,
13,
9233,
22,
35488,
64,
2350,
4877,
64,
22370,
64,
19,
13,
988,
186,
4708,
22,
35488,
64,
42,
19,
52,
19,
64,
35,
22370,
64,
3338,
19,
64,
18690,
13,
988,
186,
4708,
22,
35488,
64,
42,
19,
52,
19,
64,
35,
22370,
64,
3338,
19,
64,
1237,
558,
996,
186,
7054,
28,
187,
186,
6986,
27,
996,
186,
3620,
64,
1000,
9,
1473,
74,
1168,
3620,
13,
346,
19504,
270,
18255,
19,
4313,
2462,
69,
61,
79,
995,
4313,
558,
996,
186,
2309,
428,
37213,
28,
187,
186,
94,
535,
186,
2309,
470,
28,
187,
94,
187,
187,
4659,
540,
37523,
22,
35488,
64,
1178,
64,
39043,
64,
5251,
9,
2855,
23673,
64,
33353,
64,
15658,
475,
15658,
13,
996,
186,
14379,
23673,
64,
33353,
64,
39043,
64,
5251,
1268,
10,
187,
92,
187,
186,
2855,
37523,
22,
35488,
64,
13552,
475,
1378,
22,
35488,
426,
23673,
64,
33353,
64,
15658,
64,
788,
64,
35805,
2203,
9,
15658,
558,
535,
186,
16065,
313,
5251,
10,
551,
187,
186,
5045,
322,
6577,
64,
34429,
64,
6159,
1719,
64,
14364,
49,
9818,
27,
996,
186,
1747,
4251,
64,
11183,
64,
11209,
9,
1378,
22,
35488,
1168,
1747,
4251,
13,
9233,
22,
35488,
64,
49,
10690,
64,
1539,
37673,
64,
18,
13,
988,
186,
4708,
22,
35488,
64,
49,
10690,
64,
21279,
13,
9233,
22,
35488,
64,
49,
10690,
64,
21279,
558,
996,
186,
1747,
4251,
64,
11183,
64,
11209,
9,
1378,
22,
35488,
1168,
1747,
4251,
13,
9233,
22,
35488,
64,
49,
10690,
64,
42503,
64,
18,
13,
988,
186,
4708,
22,
35488,
64,
42503,
64,
40,
4966,
64,
20562,
1040,
9233,
22,
35488,
64,
49,
10690,
64,
9803,
48,
13,
988,
186,
4708,
22,
35488,
64,
42503,
64,
40,
4966,
64,
20562,
1040,
9233,
22,
35488,
64,
49,
10690,
64,
9803,
48,
558,
996,
186,
7054,
28,
535,
186,
5045,
322,
6577,
64,
34429,
64,
6159,
1719,
64,
48643,
15012,
27,
996,
186,
1747,
4251,
64,
11183,
64,
11209,
9,
1378,
22,
35488,
1168,
1747,
4251,
13,
9233,
22,
35488,
64,
49,
10690,
64,
42503,
64,
18,
13,
988,
186,
4708,
22,
35488,
64,
42503,
64,
40,
4966,
64,
20562,
13,
9233,
22,
35488,
64,
42503,
64,
40,
4966,
64,
20562,
558,
996,
186,
7054,
28,
187,
186,
5045,
322,
6577,
64,
34429,
64,
6159,
1719,
64,
18036,
27,
996,
186,
1747,
4251,
64,
11183,
64,
11209,
9,
1378,
22,
35488,
1168,
1747,
4251,
13,
9233,
22,
35488,
64,
49,
10690,
64,
42503,
64,
18,
13,
988,
186,
4708,
22,
35488,
64,
42503,
64,
40,
4966,
64,
20562,
1040,
9233,
22,
35488,
64,
49,
10690,
64,
9803,
48,
13,
470,
558,
996,
186,
1747,
4251,
64,
11183,
64,
11209,
9,
1378,
22,
35488,
1168,
1747,
4251,
13,
9233,
22,
35488,
64,
49,
10690,
64,
1539,
37673,
64,
18,
13,
988,
186,
4708,
22,
35488,
64,
49,
10690,
64,
21279,
13,
470,
558,
996,
186,
7054,
28,
187,
186,
5045,
322,
6577,
64,
34429,
64,
6159,
1719,
64,
1139,
27,
996,
186,
7054,
28,
187,
186,
94,
535,
186,
2309,
470,
28,
187,
94,
187,
187,
4,
16238,
21628,
64,
9507,
22362,
64,
22370,
187,
4,
3182,
8951,
44,
64,
42690,
19,
64,
29003,
5693,
8551,
187,
4,
3182,
8951,
44,
64,
2385,
5693,
933,
187,
4,
3182,
8951,
44,
64,
2031,
7127,
2313,
187,
187,
4659,
7301,
37523,
22,
35488,
64,
18255,
64,
5903,
9,
2855,
37523,
22,
35488,
64,
13552,
475,
1378,
22,
35488,
10,
187,
92,
187,
186,
338,
6522,
1378,
22,
35488,
1168,
11717,
60,
4708,
22,
35488,
64,
34,
3801,
18,
3291,
551,
996,
186,
3620,
64,
1000,
9,
1378,
22,
35488,
1168,
15658,
1168,
3620,
13,
346,
10404,
18255,
16,
1473,
74,
417,
873,
9113,
61,
79,
3287,
996,
186,
2309,
3221,
28,
187,
186,
94,
187,
186,
2309,
2032,
28,
187,
94,
187,
187,
4659,
540,
37523,
22,
35488,
64,
88,
18255,
64,
35837,
9,
2855,
49362,
64,
13816,
475,
13816,
10,
187,
92,
187,
186,
2855,
37523,
22,
35488,
64,
13552,
475,
1378,
22,
35488,
426,
996,
186,
13299,
64,
1171,
9,
13816,
13,
1577,
37523,
22,
35488,
64,
13552,
13,
2657,
50273,
1473,
74,
64,
498,
661,
64,
13816,
60,
4708,
22,
35488,
64,
4877,
42,
64,
56,
22370,
64,
1838,
57,
9259,
187,
186,
2855,
23673,
64,
33353,
64,
15658,
475,
15658,
426,
37523,
22,
35488,
1168,
15658,
28,
187,
186,
2855,
23673,
64,
33353,
64,
69,
522,
78,
64,
8882,
475,
69,
522,
78,
426,
988,
186,
33999,
64,
33353,
64,
15658,
64,
788,
64,
69,
522,
78,
9,
15658,
558,
535,
186,
338,
6522,
1378,
22,
35488,
64,
18255,
64,
5903,
9,
1378,
22,
35488,
1228,
996,
186,
2309,
428,
37213,
28,
535,
186,
33999,
64,
33353,
64,
69,
522,
78,
64,
22687,
64,
4348,
9,
69,
522,
78,
558,
535,
186,
33999,
64,
33353,
64,
69,
522,
78,
64,
4774,
64,
14760,
64,
9852,
64,
25919,
264,
9,
69,
522,
78,
13,
346,
34611,
6159,
1719,
3287,
187,
186,
33999,
64,
33353,
64,
15658,
64,
11183,
64,
11209,
9,
15658,
13,
9233,
22,
35488,
64,
49,
10690,
64,
1539,
37673,
64,
18,
13,
2657,
186,
4708,
22,
35488,
64,
49,
10690,
64,
9180,
13,
9233,
22,
35488,
64,
49,
10690,
64,
9180,
558,
535,
186,
33999,
64,
33353,
64,
69,
522,
78,
64,
4774,
64,
14760,
64,
9852,
64,
25919,
264,
9,
69,
522,
78,
13,
346,
55,
709,
19,
3287,
187,
186,
33999,
64,
33353,
64,
15658,
64,
11183,
64,
11209,
9,
15658,
13,
9233,
22,
35488,
64,
49,
10690,
64,
1539,
37673,
64,
18,
13,
988,
186,
4708,
22,
35488,
64,
49,
10690,
64,
55,
15619,
19,
1040,
9233,
22,
35488,
64,
49,
10690,
64,
42972,
19,
13,
988,
186,
4708,
22,
35488,
64,
49,
10690,
64,
55,
15619,
19,
558,
187,
186,
316,
9481,
64,
6324,
9,
2417,
933,
13,
721,
1418,
558,
187,
186,
33999,
64,
33353,
64,
15658,
64,
11183,
64,
11209,
9,
15658,
13,
9233,
22,
35488,
64,
49,
10690,
64,
1539,
37673,
64,
18,
13,
988,
186,
4708,
22,
35488,
64,
49,
10690,
64,
42972,
19,
13,
9233,
22,
35488,
64,
49,
10690,
64,
42972,
19,
558,
535,
186,
33999,
64,
33353,
64,
69,
522,
78,
64,
4774,
64,
14760,
64,
9852,
64,
25919,
264,
9,
69,
522,
78,
13,
346,
42,
19,
52,
18,
3287,
187,
186,
33999,
64,
33353,
64,
69,
522,
78,
64,
4774,
64,
14760,
64,
9852,
64,
25919,
264,
9,
69,
522,
78,
13,
346,
42690,
19,
39,
3287,
187,
186,
33999,
64,
33353,
64,
69,
522,
78,
64,
4774,
64,
14760,
64,
9852,
64,
25919,
264,
9,
69,
522,
78,
13,
346,
42690,
19,
35,
3287,
187,
186,
33999,
64,
33353,
64,
69,
522,
78,
64,
24335,
64,
25919,
264,
9,
69,
522,
78,
558,
535,
186,
33999,
64,
33353,
64,
69,
522,
78,
64,
22687,
64,
25919,
9,
69,
522,
78,
558,
535,
186,
2309,
470,
28,
187,
94,
187,
187,
4659,
2991,
37523,
22,
35488,
64,
88,
18255,
64,
328,
35837,
9,
2855,
49362,
64,
13816,
475,
13816,
10,
187,
92,
187,
186,
2855,
37523,
22,
35488,
64,
13552,
475,
1378,
22,
35488,
426,
996,
186,
13299,
64,
1171,
9,
13816,
13,
1577,
37523,
22,
35488,
64,
13552,
13,
2657,
50273,
1473,
74,
64,
498,
661,
64,
13816,
60,
4708,
22,
35488,
64,
4877,
42,
64,
56,
22370,
64,
1838,
57,
9259,
187,
186,
2855,
23673,
64,
33353,
64,
15658,
475,
15658,
426,
37523,
22,
35488,
1168,
15658,
28,
187,
186,
2855,
23673,
64,
33353,
64,
69,
522,
78,
64,
8882,
475,
69,
522,
78,
426,
988,
186,
33999,
64,
33353,
64,
15658,
64,
788,
64,
69,
522,
78,
9,
15658,
558,
535,
186,
338,
6522,
1378,
22,
35488,
64,
18255,
64,
5903,
9,
1378,
22,
35488,
1228,
996,
186,
2309,
28,
535,
186,
33999,
64,
33353,
64,
69,
522,
78,
64,
22687,
64,
4348,
9,
69,
522,
78,
558,
535,
186,
33999,
64,
33353,
64,
69,
522,
78,
64,
25902,
64,
9852,
64,
25919,
264,
9,
69,
522,
78,
13,
346,
34611,
6159,
1719,
3287,
187,
186,
33999,
64,
33353,
64,
69,
522,
78,
64,
25902,
64,
9852,
64,
25919,
264,
9,
69,
522,
78,
13,
346,
55,
709,
19,
3287,
187,
186,
338,
6522,
1378,
22,
35488,
1168,
18043,
64,
881,
10,
996,
186,
33999,
64,
33353,
64,
15658,
64,
11183,
64,
11209,
9,
15658,
13,
9233,
22,
35488,
64,
49,
10690,
64,
1539,
37673,
64,
18,
13,
2657,
186,
4708,
22,
35488,
64,
49,
10690,
64,
55,
15619,
19,
1040,
9233,
22,
35488,
64,
49,
10690,
64,
42972,
19,
1040,
2657,
186,
4708,
22,
35488,
64,
49,
10690,
64,
9180,
13,
470,
558,
535,
186,
33999,
64,
33353,
64,
69,
522,
78,
64,
25902,
64,
9852,
64,
25919,
264,
9,
69,
522,
78,
13,
346,
42,
19,
52,
18,
3287,
187,
186,
33999,
64,
33353,
64,
69,
522,
78,
64,
25902,
64,
9852,
64,
25919,
264,
9,
69,
522,
78,
13,
346,
42690,
19,
39,
3287,
187,
186,
33999,
64,
33353,
64,
69,
522,
78,
64,
25902,
64,
9852,
64,
25919,
264,
9,
69,
522,
78,
13,
346,
42690,
19,
35,
3287,
187,
186,
33999,
64,
33353,
64,
69,
522,
78,
64,
24335,
64,
25919,
264,
9,
69,
522,
78,
558,
535,
186,
33999,
64,
33353,
64,
69,
522,
78,
64,
22687,
64,
25919,
9,
69,
522,
78,
558,
187,
94,
187,
187,
4659,
10698,
1048,
37523,
22,
35488,
64,
88,
18255,
64,
250,
32557,
64,
4427,
9,
2855,
49362,
64,
13816,
475,
13816,
13,
7308,
50273,
10790,
1048,
2885,
64,
4427,
10,
187,
92,
187,
186,
2855,
37523,
22,
35488,
64,
13552,
475,
1378,
22,
35488,
426,
996,
186,
13299,
64,
1171,
9,
13816,
13,
1577,
37523,
22,
35488,
64,
13552,
13,
2657,
50273,
1473,
74,
64,
498,
661,
64,
13816,
60,
4708,
22,
35488,
64,
4877,
42,
64,
56,
22370,
64,
1838,
57,
9259,
187,
186,
2855,
23673,
64,
33353,
64,
15658,
475,
15658,
426,
37523,
22,
35488,
1168,
15658,
28,
187,
186,
3474,
1018,
475,
1030,
49362,
64,
1590,
426,
4772,
18255,
64,
788,
64,
1590,
9,
13816,
1168,
18255,
558,
535,
186,
338,
6522,
1378,
22,
35488,
64,
18255,
64,
5903,
9,
1378,
22,
35488,
1228,
996,
186,
2309,
470,
28,
187,
186,
3122,
996,
475,
7214,
2997,
281,
873,
259,
18255,
2281,
281,
7127,
15,
18,
76,
390,
5693,
76,
8161,
15,
996,
1738,
187,
186,
338,
313,
1378,
22,
35488,
1168,
32888,
777,
60,
4708,
22,
35488,
64,
34,
3801,
18,
62,
3613,
8951,
44,
64,
2385,
3857,
996,
50274,
1378,
22,
35488,
1168,
32888,
777,
60,
4708,
22,
35488,
64,
34,
3801,
18,
62,
3613,
8951,
44,
64,
2031,
10,
551,
996,
186,
3620,
64,
30289,
9,
15658,
1168,
3620,
13,
17280,
84,
27,
49362,
2462,
84,
760,
1329,
2462,
69,
390,
2462,
69,
14878,
3453,
61,
79,
995,
988,
186,
876,
4997,
30738,
49362,
64,
1590,
13,
8951,
44,
64,
2031,
13,
8951,
44,
64,
2385,
558,
996,
186,
2309,
470,
28,
187,
186,
94,
535,
186,
2309,
37523,
22,
35488,
1168,
32888,
777,
60,
4708,
22,
35488,
64,
34,
3801,
18,
2194,
187,
94,
187,
187,
4659,
1048,
37523,
22,
35488,
64,
88,
18255,
64,
4650,
64,
4427,
9,
2855,
49362,
64,
13816,
475,
13816,
13,
10698,
1048,
2281,
13,
2664,
50275,
10790,
1048,
475,
5598,
64,
4427,
10,
187,
92,
187,
186,
2855,
37523,
22,
35488,
64,
13552,
475,
1378,
22,
35488,
426,
996,
186,
13299,
64,
1171,
9,
13816,
13,
1577,
37523,
22,
35488,
64,
13552,
13,
2657,
50273,
1473,
74,
64,
498,
661,
64,
13816,
60,
4708,
22,
35488,
64,
4877,
42,
64,
56,
22370,
64,
1838,
57,
9259,
187,
186,
2855,
23673,
64,
33353,
64,
15658,
475,
15658,
426,
37523,
22,
35488,
1168,
15658,
28,
187,
186,
3474,
1018,
475,
1030,
49362,
64,
1590,
426,
4772,
18255,
64,
788,
64,
1590,
9,
13816,
1168,
18255,
558,
535,
186,
338,
6522,
1378,
22,
35488,
64,
18255,
64,
5903,
9,
1378,
22,
35488,
1228,
996,
186,
2309,
428,
37213,
28,
187,
186,
3122,
996,
475,
7214,
2997,
281,
873,
259,
18255,
2281,
281,
7127,
15,
18,
76,
390,
5693,
76,
8161,
15,
996,
475,
733,
588,
3490,
281,
5693,
76,
8161,
604,
417,
1097,
15,
996,
1738,
187,
186,
338,
313,
4427,
3613,
8951,
44,
64,
2385,
3857,
2281,
3613,
8951,
44,
64,
2031,
10,
551,
996,
186,
3620,
64,
30289,
9,
15658,
1168,
3620,
13,
17280,
84,
27,
49362,
2462,
84,
760,
1329,
2462,
69,
390,
2462,
69,
14878,
3453,
61,
79,
995,
988,
186,
876,
4997,
30738,
49362,
64,
1590,
13,
8951,
44,
64,
2031,
13,
8951,
44,
64,
2385,
558,
996,
186,
4427,
426,
8951,
44,
64,
2385,
28,
187,
186,
94,
535,
186,
2309,
2281,
28,
187,
94,
187,
187,
4659,
540,
37523,
22,
35488,
64,
88,
18255,
64,
1178,
64,
4427,
9,
2855,
49362,
64,
13816,
475,
13816,
13,
10698,
1048,
2281,
13,
2657,
186,
10790,
1048,
2885,
64,
4427,
10,
187,
92,
187,
186,
2855,
37523,
22,
35488,
64,
13552,
475,
1378,
22,
35488,
426,
996,
186,
13299,
64,
1171,
9,
13816,
13,
1577,
37523,
22,
35488,
64,
13552,
13,
2657,
50273,
1473,
74,
64,
498,
661,
64,
13816,
60,
4708,
22,
35488,
64,
4877,
42,
64,
56,
22370,
64,
1838,
57,
9259,
187,
186,
2855,
23673,
64,
33353,
64,
15658,
475,
15658,
426,
37523,
22,
35488,
1168,
15658,
28,
187,
186,
2855,
49362,
475,
5598,
64,
18255,
28,
187,
186,
3474,
1018,
475,
1030,
49362,
64,
1590,
426,
4772,
18255,
64,
788,
64,
1590,
9,
13816,
1168,
18255,
558,
187,
186,
565,
638,
64,
2154,
28,
187,
186,
10790,
540,
49362,
64,
50153,
19,
64,
483,
28,
535,
186,
338,
6522,
1378,
22,
35488,
64,
18255,
64,
5903,
9,
1378,
22,
35488,
1228,
996,
186,
2309,
428,
37213,
28,
535,
186,
3122,
996,
475,
12369,
253,
259,
18255,
434,
2885,
49362,
313,
78,
18255,
10,
4961,
390,
417,
13,
4496,
5416,
996,
475,
352,
310,
4229,
390,
873,
281,
5693,
32023,
1078,
4758,
259,
18255,
2281,
15,
733,
434,
247,
996,
475,
11287,
12291,
15,
7214,
2997,
5693,
32023,
49362,
347,
253,
49362,
11716,
15,
996,
475,
996,
475,
733,
588,
873,
253,
47618,
8791,
407,
7384,
278,
18255,
310,
5693,
32023,
15,
996,
1738,
187,
186,
5598,
64,
18255,
426,
49362,
64,
788,
64,
5598,
9,
13816,
1168,
18255,
558,
187,
186,
338,
6522,
5598,
64,
18255,
10,
996,
186,
3620,
64,
30289,
9,
15658,
1168,
3620,
13,
988,
186,
3,
15852,
278,
18255,
273,
259,
18255,
417,
9288,
275,
6254,
15,
7764,
5416,
278,
18255,
369,
2530,
347,
2462,
69,
14878,
4880,
79,
995,
988,
186,
22370,
64,
42690,
19,
64,
29003,
558,
535,
186,
338,
313,
5598,
64,
4427,
3613,
8951,
44,
64,
42690,
19,
64,
29003,
10,
996,
186,
3620,
64,
30289,
9,
15658,
1168,
3620,
13,
346,
18255,
2462,
84,
760,
1329,
2462,
69,
14878,
3280,
61,
79,
995,
988,
186,
18255,
64,
1590,
13,
8951,
44,
64,
42690,
19,
64,
29003,
558,
535,
186,
3122,
996,
475,
1916,
5115,
253,
2281,
9436,
432,
5693,
32023,
281,
7127,
15,
18,
76,
390,
5693,
76,
8161,
13,
996,
475,
45479,
19,
310,
3058,
15,
996,
1738,
187,
186,
18255,
64,
50153,
19,
64,
483,
426,
2281,
475,
23414,
28,
187,
186,
1378,
22,
35488,
64,
1178,
64,
15658,
64,
50153,
9,
15658,
13,
9233,
22,
35488,
64,
42690,
19,
13,
9233,
22,
35488,
64,
42690,
19,
64,
52,
64,
46,
22370,
13,
996,
186,
22370,
64,
42690,
19,
64,
29003,
13,
49362,
64,
50153,
19,
64,
483,
558,
535,
186,
1378,
22,
35488,
64,
1178,
64,
15658,
64,
10404,
18255,
9,
15658,
13,
9233,
22,
35488,
64,
52,
22370,
64,
52,
64,
42690,
19,
13,
470,
13,
996,
186,
18255,
64,
50153,
19,
64,
483,
13,
322,
6577,
64,
34429,
64,
49785,
64,
1042,
558,
535,
186,
1378,
22,
35488,
1168,
32888,
777,
60,
4708,
22,
35488,
64,
34,
3801,
18,
62,
426,
2281,
28,
535,
186,
3456,
64,
2154,
426,
391,
77,
23,
18390,
64,
788,
64,
18255,
64,
5374,
9,
1378,
22,
35488,
1168,
10404,
18255,
13,
2281,
558,
535,
186,
33999,
64,
33353,
64,
15658,
64,
11183,
64,
11209,
9,
15658,
13,
9233,
22,
35488,
64,
2350,
4877,
64,
22370,
64,
18,
13,
996,
186,
4708,
22,
35488,
64,
42,
19,
52,
64,
46,
64,
37151,
64,
18690,
1040,
9233,
22,
35488,
64,
42,
19,
52,
64,
22370,
64,
31694,
64,
18690,
13,
996,
186,
3456,
64,
2154,
5291,
9233,
22,
35488,
64,
42,
19,
52,
64,
46,
64,
37151,
64,
52,
5518,
1040,
996,
186,
9,
1378,
22,
35488,
1168,
10404,
18255,
64,
7614,
10,
5291,
9233,
22,
35488,
64,
42,
19,
52,
64,
22370,
64,
31694,
64,
52,
5518,
558,
535,
186,
2309,
470,
28,
187,
94,
187,
187,
4659,
10698,
1048,
37523,
22,
35488,
64,
67,
18255,
64,
250,
32557,
64,
4427,
9,
2855,
49362,
64,
13816,
475,
13816,
13,
7308,
50273,
10790,
1048,
2885,
64,
4427,
10,
187,
92,
187,
186,
2855,
37523,
22,
35488,
64,
13552,
475,
1378,
22,
35488,
426,
996,
186,
13299,
64,
1171,
9,
13816,
13,
1577,
37523,
22,
35488,
64,
13552,
13,
2657,
50273,
1473,
74,
64,
498,
661,
64,
13816,
60,
4708,
22,
35488,
64,
4877,
42,
64,
35,
22370,
64,
1838,
57,
9259,
187,
186,
2855,
23673,
64,
33353,
64,
15658,
475,
15658,
426,
37523,
22,
35488,
1168,
15658,
28,
187,
186,
10790,
540,
270,
498,
661,
64,
468,
64,
88,
18255,
28,
535,
186,
67,
498,
661,
64,
468,
64,
88,
18255,
426,
23673,
64,
33353,
64,
15658,
64,
1088,
9,
15658,
13,
9233,
22,
35488,
64,
53,
9042,
64,
53,
5707,
64,
20562,
558,
535,
186,
16065,
313,
67,
498,
661,
64,
468,
64,
88,
18255,
708,
9233,
22,
35488,
64,
53,
9042,
64,
35,
22370,
64,
3338,
18,
64,
18690,
10,
551,
187,
186,
5045,
9233,
22,
35488,
64,
53,
9042,
64,
35,
22370,
64,
3338,
18,
64,
9726,
27,
996,
186,
2309,
2885,
64,
4427,
475,
17558,
28,
187,
186,
5045,
9233,
22,
35488,
64,
53,
9042,
64,
35,
22370,
64,
3338,
18,
64,
8196,
27,
996,
186,
2309,
2885,
64,
4427,
475,
12842,
28,
187,
186,
5045,
9233,
22,
35488,
64,
53,
9042,
64,
35,
22370,
64,
3338,
18,
64,
1540,
27,
996,
186,
2309,
2885,
64,
4427,
475,
6705,
28,
187,
186,
5045,
9233,
22,
35488,
64,
53,
9042,
64,
35,
22370,
64,
3338,
18,
64,
1237,
27,
996,
186,
2309,
2885,
64,
4427,
475,
4567,
28,
187,
186,
6986,
27,
996,
186,
2309,
470,
28,
187,
186,
94,
187,
94,
187,
187,
4659,
10698,
1048,
37523,
22,
35488,
64,
67,
18255,
64,
788,
64,
19012,
9,
10790,
1048,
2281,
13,
7308,
50274,
10790,
1048,
2885,
64,
4427,
10,
187,
92,
187,
186,
10790,
1048,
2803,
28,
535,
186,
19012,
426,
2281,
1227,
2885,
64,
4427,
28,
187,
186,
338,
313,
19012,
654,
6705,
10,
996,
186,
2309,
4567,
28,
187,
186,
7271,
604,
313,
19012,
654,
12842,
10,
996,
186,
2309,
6705,
28,
187,
186,
7271,
604,
313,
19012,
654,
17558,
10,
996,
186,
2309,
12842,
28,
187,
186,
7271,
996,
186,
2309,
17558,
28,
187,
94,
187,
187,
4659,
1048,
37523,
22,
35488,
64,
67,
18255,
64,
4650,
64,
4427,
9,
2855,
49362,
64,
13816,
475,
13816,
13,
10698,
1048,
2281,
13,
2664,
50275,
10790,
1048,
475,
5598,
64,
4427,
10,
187,
92,
187,
186,
2855,
37523,
22,
35488,
64,
13552,
475,
1378,
22,
35488,
426,
996,
186,
13299,
64,
1171,
9,
13816,
13,
1577,
37523,
22,
35488,
64,
13552,
13,
2657,
50273,
1473,
74,
64,
498,
661,
64,
13816,
60,
4708,
22,
35488,
64,
4877,
42,
64,
35,
22370,
64,
1838,
57,
9259,
187,
186,
10790,
1048,
2803,
28,
535,
186,
338,
6522,
11,
5598,
64,
4427,
2785,
2195,
1378,
22,
35488,
64,
18255,
64,
5903,
9,
1378,
22,
35488,
1228,
996,
186,
2309,
428,
37213,
28,
535,
186,
3122,
996,
475,
378,
22370,
4142,
403,
873,
347,
247,
39199,
273,
411,
22370,
275,
44769,
15,
996,
475,
844,
1053,
626,
1581,
6890,
253,
2885,
411,
22370,
15,
844,
816,
513,
996,
475,
690,
46551,
1066,
1754,
327,
253,
2885,
411,
22370,
2281,
996,
475,
285,
1089,
253,
4569,
39199,
273,
378,
22370,
281,
996,
475,
755,
253,
9971,
1066,
378,
22370,
1318,
15,
996,
1738,
187,
186,
19012,
426,
37523,
22,
35488,
64,
67,
18255,
64,
788,
64,
19012,
9,
4427,
13,
475,
5598,
64,
4427,
558,
535,
186,
2309,
475,
5598,
64,
4427,
475,
2803,
28,
187,
94,
187,
187,
4659,
540,
37523,
22,
35488,
64,
67,
18255,
64,
1178,
64,
4427,
9,
2855,
49362,
64,
13816,
475,
13816,
13,
10698,
1048,
2281,
13,
2657,
186,
10790,
1048,
2885,
64,
4427,
10,
187,
92,
187,
186,
2855,
37523,
22,
35488,
64,
13552,
475,
1378,
22,
35488,
426,
996,
186,
13299,
64,
1171,
9,
13816,
13,
1577,
37523,
22,
35488,
64,
13552,
13,
2657,
50273,
1473,
74,
64,
498,
661,
64,
13816,
60,
4708,
22,
35488,
64,
4877,
42,
64,
35,
22370,
64,
1838,
57,
9259,
187,
186,
2855,
23673,
64,
33353,
64,
15658,
475,
15658,
426,
37523,
22,
35488,
1168,
15658,
28,
187,
186,
2855,
23673,
64,
33353,
64,
1473,
74,
475,
1473,
74,
426,
5812,
28,
187,
186,
10790,
1048,
2803,
28,
535,
186,
338,
6522,
1378,
22,
35488,
64,
18255,
64,
5903,
9,
1378,
22,
35488,
1228,
996,
186,
2309,
428,
37213,
28,
535,
186,
19012,
426,
37523,
22,
35488,
64,
67,
18255,
64,
788,
64,
19012,
9,
4427,
13,
2885,
64,
4427,
558,
535,
186,
1542,
64,
14382,
64,
15658,
64,
1473,
261,
9,
15658,
13,
277,
2284,
10,
996,
186,
338,
313,
1473,
74,
1168,
301,
2295,
9233,
22,
35488,
64,
34,
3801,
18,
10,
988,
186,
7054,
28,
187,
186,
338,
6522,
1473,
74,
10,
551,
996,
186,
3620,
64,
1000,
9,
15658,
1168,
3620,
13,
346,
1473,
74,
2462,
69,
417,
1119,
275,
4445,
61,
79,
995,
988,
186,
4708,
22,
35488,
64,
34,
3801,
18,
558,
996,
186,
2309,
428,
41188,
15528,
28,
187,
186,
94,
535,
186,
2309,
37523,
22,
35488,
64,
1178,
64,
67,
18255,
18,
64,
29603,
9,
1473,
74,
13,
2803,
558,
187,
94,
187,
187,
4659,
1030,
1577,
49362,
64,
2695,
37523,
22,
35488,
64,
1473,
74,
64,
18255,
64,
2695,
60,
4708,
22,
35488,
64,
4877,
42,
64,
20872,
64,
3207,
14007,
62,
426,
551,
187,
186,
60,
4708,
22,
35488,
64,
4877,
42,
64,
56,
22370,
64,
1838,
57,
62,
426,
551,
996,
186,
15,
35837,
426,
37523,
22,
35488,
64,
88,
18255,
64,
35837,
13,
996,
186,
15,
328,
35837,
426,
37523,
22,
35488,
64,
88,
18255,
64,
328,
35837,
13,
996,
186,
15,
250,
32557,
64,
4427,
426,
37523,
22,
35488,
64,
88,
18255,
64,
250,
32557,
64,
4427,
13,
996,
186,
15,
4650,
64,
4427,
426,
37523,
22,
35488,
64,
88,
18255,
64,
4650,
64,
4427,
13,
996,
186,
15,
1178,
64,
4427,
426,
37523,
22,
35488,
64,
88,
18255,
64,
1178,
64,
4427,
13,
187,
186,
2023,
187,
186,
60,
4708,
22,
35488,
64,
4877,
42,
64,
35,
22370,
64,
1838,
57,
62,
426,
551,
996,
186,
15,
250,
32557,
64,
4427,
426,
37523,
22,
35488,
64,
67,
18255,
64,
250,
32557,
64,
4427,
13,
996,
186,
15,
4650,
64,
4427,
426,
37523,
22,
35488,
64,
67,
18255,
64,
4650,
64,
4427,
13,
996,
186,
15,
1178,
64,
4427,
426,
37523,
22,
35488,
64,
67,
18255,
64,
1178,
64,
4427,
13,
187,
186,
2023,
187,
4718,
187,
187,
4659,
540,
37523,
22,
35488,
64,
15905,
64,
1473,
74,
64,
498,
661,
9,
2855,
23673,
64,
33353,
64,
15658,
475,
15658,
10,
187,
92,
187,
186,
2855,
2813,
475,
3620,
426,
4445,
1168,
3620,
28,
187,
186,
2855,
37523,
22,
35488,
64,
13552,
475,
1378,
22,
35488,
426,
23673,
64,
33353,
64,
15658,
64,
788,
64,
35805,
2203,
9,
15658,
558,
187,
186,
2855,
37523,
22,
35488,
64,
19161,
64,
2203,
475,
81,
2203,
426,
708,
1378,
22,
35488,
1168,
81,
2203,
28,
187,
186,
2855,
49362,
64,
4478,
64,
2203,
2012,
28,
187,
186,
2855,
49362,
475,
1473,
74,
64,
18255,
28,
187,
186,
2855,
49362,
64,
26178,
475,
1473,
74,
64,
18255,
64,
26178,
28,
187,
186,
2855,
49362,
64,
13816,
475,
1473,
74,
64,
18255,
64,
13816,
28,
187,
186,
3474,
1018,
475,
5598,
64,
1590,
28,
187,
186,
565,
891,
13,
851,
28,
535,
186,
1542,
313,
74,
426,
470,
28,
891,
654,
9233,
22,
35488,
64,
4877,
42,
64,
20872,
64,
3207,
14007,
28,
12996,
74,
10,
551,
996,
186,
1473,
74,
64,
18255,
64,
13816,
426,
708,
1378,
22,
35488,
1168,
1473,
74,
64,
498,
661,
64,
13816,
60,
74,
2194,
6886,
186,
16065,
313,
74,
10,
551,
996,
186,
5045,
9233,
22,
35488,
64,
4877,
42,
64,
56,
22370,
64,
1838,
57,
27,
988,
186,
3122,
10338,
353,
22370,
253,
2885,
273,
411,
22370,
1738,
988,
186,
338,
313,
1378,
22,
35488,
1168,
78,
18255,
10,
551,
2657,
186,
5598,
64,
1590,
426,
4772,
18255,
64,
788,
64,
1590,
9,
1378,
22,
35488,
1168,
78,
18255,
558,
2657,
186,
4478,
15,
5598,
64,
7886,
426,
708,
5598,
64,
1590,
28,
2657,
186,
4478,
15,
6370,
64,
24905,
426,
337,
28,
988,
186,
94,
2010,
551,
2657,
186,
4478,
15,
5598,
64,
7886,
426,
5812,
28,
2657,
186,
4478,
15,
6370,
64,
24905,
426,
470,
28,
988,
186,
94,
988,
186,
7054,
28,
996,
186,
5045,
9233,
22,
35488,
64,
4877,
42,
64,
35,
22370,
64,
1838,
57,
27,
988,
186,
3122,
10338,
411,
22370,
253,
2885,
273,
378,
22370,
1738,
988,
186,
5598,
64,
1590,
426,
4772,
18255,
64,
788,
64,
1590,
9,
2657,
186,
1378,
22,
35488,
1168,
1473,
74,
64,
498,
661,
60,
4708,
22,
35488,
64,
4877,
42,
64,
56,
22370,
64,
1838,
57,
9259,
988,
186,
4478,
15,
5598,
64,
7886,
426,
708,
5598,
64,
1590,
28,
988,
186,
4478,
15,
6370,
64,
24905,
426,
337,
28,
988,
186,
7054,
28,
996,
186,
6986,
27,
988,
186,
3620,
64,
1000,
9,
3620,
13,
346,
19504,
8886,
3605,
61,
79,
3287,
988,
186,
1221,
426,
428,
37213,
28,
988,
186,
18026,
1486,
28,
996,
186,
94,
6886,
186,
4478,
15,
1590,
426,
268,
2203,
1168,
1473,
74,
64,
18255,
64,
7886,
60,
74,
2194,
996,
186,
4478,
15,
2695,
426,
708,
1378,
22,
35488,
64,
1473,
74,
64,
18255,
64,
2695,
60,
74,
2194,
996,
186,
4478,
15,
12790,
426,
8951,
44,
64,
9278,
64,
47036,
64,
47,
3231,
1934,
1922,
1040,
8951,
44,
64,
10452,
64,
47036,
64,
40,
4966,
28,
996,
186,
1473,
74,
64,
18255,
64,
13816,
1168,
4478,
426,
708,
4478,
28,
6886,
186,
1473,
74,
64,
18255,
426,
1474,
78,
64,
18255,
64,
15905,
9,
3620,
13,
277,
2284,
64,
18255,
64,
13816,
558,
996,
186,
338,
313,
1830,
64,
8015,
9,
1473,
74,
64,
18255,
1228,
551,
988,
186,
3620,
64,
30289,
9,
3620,
13,
346,
26383,
281,
8749,
2462,
84,
27,
2462,
392,
61,
79,
995,
2664,
2012,
15,
1590,
13,
367,
3125,
64,
8015,
9,
1473,
74,
64,
18255,
4027,
988,
186,
1221,
426,
367,
3125,
64,
8015,
9,
1473,
74,
64,
18255,
558,
988,
186,
18026,
1486,
28,
996,
186,
94,
996,
186,
1378,
22,
35488,
1168,
1473,
74,
64,
498,
661,
60,
74,
62,
426,
277,
2284,
64,
18255,
28,
6886,
186,
338,
313,
3620,
1168,
1171,
64,
6219,
10,
551,
988,
186,
3620,
78,
64,
1171,
64,
18255,
64,
1911,
64,
13816,
64,
33008,
9,
3620,
13,
273,
64,
18255,
64,
13816,
64,
19583,
64,
788,
13,
9220,
50274,
1473,
74,
64,
18255,
64,
13816,
558,
996,
186,
94,
2010,
551,
988,
186,
1473,
74,
64,
18255,
64,
26178,
426,
49362,
3620,
64,
6953,
9,
1473,
74,
64,
18255,
13,
2012,
15,
1590,
13,
9220,
50271,
3,
6,
84,
995,
1474,
64,
1590,
9,
3620,
4027,
988,
186,
338,
6522,
1473,
74,
64,
18255,
64,
26178,
10,
551,
2657,
186,
1221,
426,
428,
1400,
48579,
28,
2657,
186,
18026,
1486,
28,
988,
186,
94,
2010,
551,
2657,
186,
1378,
22,
35488,
1168,
1473,
74,
64,
498,
661,
64,
26178,
60,
74,
62,
426,
277,
2284,
64,
18255,
64,
26178,
28,
988,
186,
94,
996,
186,
94,
187,
186,
94,
535,
186,
2309,
470,
28,
187,
187,
1000,
27,
187,
186,
3088,
551,
996,
186,
338,
313,
1378,
22,
35488,
1168,
1473,
74,
64,
498,
661,
64,
26178,
60,
74,
3291,
988,
186,
18255,
3620,
64,
12233,
9,
1378,
22,
35488,
1168,
1473,
74,
64,
498,
661,
64,
26178,
60,
74,
9259,
187,
186,
94,
1223,
313,
74,
283,
2239,
470,
558,
535,
186,
2309,
851,
28,
187,
94,
187,
4,
7287,
3476,
21628,
64,
9507,
22362,
64,
22370,
1738,
187,
187,
4659,
540,
37523,
22,
35488,
64,
32373,
9,
2855,
23673,
64,
33353,
64,
15658,
475,
15658,
10,
187,
92,
187,
186,
2855,
37523,
22,
35488,
64,
13552,
475,
1378,
22,
35488,
426,
23673,
64,
33353,
64,
15658,
64,
788,
64,
35805,
2203,
9,
15658,
558,
187,
186,
2855,
256,
23985,
64,
39629,
475,
39629,
28,
187,
186,
10790,
1048,
673,
28,
187,
186,
2855,
23673,
64,
33353,
64,
69,
522,
78,
64,
8882,
475,
69,
522,
78,
426,
708,
15658,
1168,
69,
522,
78,
28,
187,
187,
4,
16238,
21628,
64,
9507,
22362,
64,
22370,
187,
186,
565,
851,
28,
187,
4,
7287,
187,
186,
1378,
22,
35488,
1168,
15658,
426,
4445,
28,
535,
186,
338,
313,
1378,
22,
35488,
1168,
261,
64,
8289,
88,
10,
551,
996,
186,
39629,
426,
37523,
22,
35488,
1168,
39629,
28,
996,
186,
2606,
426,
3343,
64,
1542,
64,
45634,
64,
23896,
9,
988,
186,
7,
39629,
1168,
19078,
1320,
64,
11984,
13,
988,
186,
78,
1704,
84,
64,
936,
64,
75,
1648,
447,
9,
4708,
22,
35488,
64,
20371,
8998,
64,
18318,
7310,
4027,
996,
186,
338,
6522,
2606,
10,
551,
988,
186,
3620,
64,
1000,
6395,
39629,
1168,
3620,
13,
346,
23527,
1320,
417,
3426,
13,
37282,
562,
61,
79,
3287,
988,
186,
2309,
428,
2025,
2894,
1703,
7310,
28,
996,
186,
94,
187,
186,
94,
2010,
551,
187,
4,
16238,
21628,
64,
9507,
22362,
64,
22370,
996,
186,
3122,
9423,
604,
353,
22370,
2530,
1738,
996,
186,
1378,
22,
35488,
1168,
78,
18255,
426,
1474,
78,
64,
18255,
64,
788,
9,
15658,
1168,
3620,
13,
346,
78,
18255,
3287,
996,
186,
338,
313,
1830,
64,
8015,
9,
1378,
22,
35488,
1168,
78,
18255,
1228,
551,
988,
186,
338,
313,
33955,
64,
8015,
9,
1378,
22,
35488,
1168,
78,
18255,
10,
3613,
428,
41188,
3489,
10,
551,
2657,
186,
1221,
426,
367,
3125,
64,
8015,
9,
1378,
22,
35488,
1168,
78,
18255,
558,
2657,
186,
2309,
851,
28,
988,
186,
94,
988,
186,
1378,
22,
35488,
1168,
78,
18255,
426,
5812,
28,
996,
186,
94,
6886,
186,
3122,
13106,
330,
7386,
15670,
42,
8886,
1453,
1738,
996,
186,
1221,
426,
37523,
22,
35488,
64,
15905,
64,
1473,
74,
64,
498,
661,
9,
15658,
558,
996,
186,
338,
313,
1221,
10,
988,
186,
2309,
851,
28,
6886,
186,
3122,
23280,
9978,
323,
330,
7386,
1738,
996,
186,
1378,
22,
35488,
1168,
32888,
777,
60,
4708,
22,
35488,
64,
34,
3801,
18,
62,
426,
8951,
44,
64,
2385,
28,
187,
4,
7287,
187,
186,
94,
535,
186,
33999,
64,
33353,
64,
69,
522,
78,
64,
25902,
64,
9852,
9,
69,
522,
78,
13,
346,
34611,
6159,
1719,
3287,
187,
186,
33999,
64,
33353,
64,
69,
522,
78,
64,
25902,
64,
9852,
9,
69,
522,
78,
13,
346,
55,
709,
19,
3287,
187,
186,
33999,
64,
33353,
64,
69,
522,
78,
64,
24335,
9,
69,
522,
78,
558,
187,
186,
2309,
470,
28,
187,
94,
187,
187,
4659,
2991,
37523,
22,
35488,
64,
12163,
9,
2855,
23673,
64,
33353,
64,
15658,
475,
15658,
10,
187,
92,
187,
186,
2855,
37523,
22,
35488,
64,
13552,
475,
1378,
22,
35488,
426,
23673,
64,
33353,
64,
15658,
64,
788,
64,
35805,
2203,
9,
15658,
558,
187,
187,
4,
16238,
21628,
64,
9507,
22362,
64,
22370,
187,
186,
565,
891,
28,
535,
186,
1542,
313,
74,
426,
9233,
22,
35488,
64,
4877,
42,
64,
20872,
64,
3207,
14007,
428,
337,
28,
891,
10122,
470,
28,
1969,
74,
10,
551,
996,
186,
338,
313,
1378,
22,
35488,
1168,
1473,
74,
64,
498,
661,
64,
26178,
60,
74,
3291,
988,
186,
18255,
3620,
64,
12233,
9,
1378,
22,
35488,
1168,
1473,
74,
64,
498,
661,
64,
26178,
60,
74,
9259,
187,
186,
94,
187,
4,
7287,
535,
186,
1378,
22,
35488,
64,
19511,
9,
1378,
22,
35488,
558,
187,
94,
187,
187,
4,
16238,
21628,
64,
9122,
187,
4659,
540,
37523,
22,
35488,
64,
39686,
423,
9,
2855,
23673,
64,
33353,
64,
15658,
475,
15658,
10,
187,
92,
187,
186,
2855,
37523,
22,
35488,
64,
13552,
475,
1378,
22,
35488,
426,
23673,
64,
33353,
64,
15658,
64,
788,
64,
35805,
2203,
9,
15658,
558,
535,
186,
1747,
12985,
64,
12985,
64,
7483,
9,
1378,
22,
35488,
1168,
1747,
4251,
13,
2032,
558,
187,
186,
1747,
12985,
64,
4698,
64,
46920,
9,
1378,
22,
35488,
1168,
1747,
4251,
558,
187,
186,
2309,
470,
28,
187,
94,
187,
187,
4659,
540,
37523,
22,
35488,
64,
373,
2123,
9,
2855,
23673,
64,
33353,
64,
15658,
475,
15658,
10,
187,
92,
187,
186,
2855,
37523,
22,
35488,
64,
13552,
475,
1378,
22,
35488,
426,
23673,
64,
33353,
64,
15658,
64,
788,
64,
35805,
2203,
9,
15658,
558,
535,
186,
1747,
12985,
64,
12985,
64,
7483,
9,
1378,
22,
35488,
1168,
1747,
4251,
13,
3221,
558,
187,
186,
1747,
12985,
64,
24335,
9,
1378,
22,
35488,
1168,
1747,
4251,
558,
535,
186,
2307,
64,
7555,
19416,
64,
1601,
9,
10394,
64,
9177,
64,
20246,
64,
88,
82,
13,
996,
186,
7,
1378,
22,
35488,
1168,
18043,
64,
33492,
64,
1601,
13,
278,
1704,
84,
64,
936,
64,
75,
1648,
447,
9,
9519,
4027,
535,
186,
2309,
470,
28,
187,
94,
187,
4,
7271,
187,
4,
3182,
37523,
22,
35488,
64,
39686,
423,
5812,
187,
4,
3182,
37523,
22,
35488,
64,
373,
2123,
5812,
187,
4,
7287,
187,
187,
3474,
1577,
23673,
64,
33353,
64,
1473,
74,
64,
2695,
37523,
22,
35488,
64,
66,
338,
18,
64,
1473,
74,
64,
2695,
426,
551,
187,
186,
15,
13816,
64,
12928,
426,
37523,
22,
35488,
64,
13816,
64,
12928,
13,
187,
186,
15,
1178,
64,
20602,
426,
37523,
22,
35488,
64,
1178,
64,
1473,
74,
64,
20602,
13,
187,
186,
15,
1178,
64,
2851,
78,
64,
31873,
426,
37523,
22,
35488,
64,
1178,
64,
2851,
78,
64,
31873,
13,
187,
186,
15,
1178,
64,
67,
18255,
64,
29603,
426,
37523,
22,
35488,
64,
1178,
64,
67,
18255,
18,
64,
29603,
13,
187,
4718,
187,
30216,
64,
47788,
64,
44335,
9,
1378,
22,
35488,
64,
66,
338,
18,
64,
1473,
74,
64,
2695,
558,
187,
187,
3474,
1577,
23673,
64,
33353,
64,
1473,
74,
64,
2695,
37523,
22,
35488,
64,
66,
338,
19,
64,
1473,
74,
64,
2695,
426,
551,
187,
186,
15,
13816,
64,
12928,
426,
37523,
22,
35488,
64,
13816,
64,
12928,
13,
187,
186,
15,
1178,
64,
20602,
426,
37523,
22,
35488,
64,
1178,
64,
1473,
74,
64,
20602,
13,
187,
186,
15,
1178,
64,
67,
18255,
64,
29603,
426,
37523,
22,
35488,
64,
1178,
64,
67,
18255,
19,
64,
29603,
13,
187,
4718,
187,
30216,
64,
47788,
64,
44335,
9,
1378,
22,
35488,
64,
66,
338,
19,
64,
1473,
74,
64,
2695,
558,
187,
187,
3474,
1577,
23673,
64,
33353,
64,
15658,
64,
17440,
37523,
22,
35488,
64,
33353,
64,
15658,
64,
3620,
426,
551,
187,
186,
15,
32373,
426,
37523,
22,
35488,
64,
32373,
13,
187,
186,
15,
12163,
426,
37523,
22,
35488,
64,
12163,
13,
187,
186,
15,
39686,
423,
426,
37523,
22,
35488,
64,
39686,
423,
13,
187,
186,
15,
373,
2123,
426,
37523,
22,
35488,
64,
373,
2123,
13,
187,
186,
15,
1178,
64,
39043,
64,
5251,
426,
37523,
22,
35488,
64,
1178,
64,
39043,
64,
5251,
13,
187,
186,
15,
38211,
426,
37523,
22,
35488,
64,
33999,
64,
38211,
13,
187,
186,
15,
6370,
64,
38211,
426,
6647,
23544,
64,
12771,
9,
1378,
22,
35488,
64,
33999,
64,
38211,
582,
187,
186,
15,
69,
522,
78,
64,
49875,
426,
37523,
22,
35488,
64,
69,
522,
78,
64,
49875,
13,
187,
186,
15,
6370,
64,
69,
522,
78,
64,
49875,
426,
6647,
23544,
64,
12771,
9,
1378,
22,
35488,
64,
69,
522,
78,
64,
49875,
582,
187,
186,
15,
69,
522,
78,
64,
27861,
265,
426,
37523,
22,
35488,
64,
69,
522,
78,
64,
27861,
265,
13,
187,
186,
15,
6370,
64,
69,
522,
78,
64,
27861,
265,
426,
6647,
23544,
64,
12771,
9,
1378,
22,
35488,
64,
69,
522,
78,
64,
27861,
265,
582,
187,
186,
15,
1178,
64,
10404,
18255,
426,
37523,
22,
35488,
64,
1178,
64,
15658,
64,
10404,
18255,
13,
187,
186,
15,
1178,
64,
50153,
426,
37523,
22,
35488,
64,
1178,
64,
15658,
64,
50153,
13,
187,
186,
15,
1178,
64,
18043,
426,
37523,
22,
35488,
64,
1178,
64,
18043,
64,
33492,
13,
187,
186,
15,
2327,
64,
2617,
3487,
64,
2606,
186,
30,
337,
13,
187,
186,
15,
423,
757,
1255,
186,
186,
30,
337,
13,
187,
186,
15,
4160,
64,
1851,
1974,
64,
1473,
74,
64,
6292,
272,
186,
30,
337,
13,
187,
4718,
187,
30216,
64,
47788,
64,
44335,
9,
1378,
22,
35488,
64,
33353,
64,
15658,
64,
3620,
558,
187,
187,
565,
37523,
22,
35488,
64,
12083,
64,
7064,
9,
2855,
37523,
22,
35488,
64,
13552,
475,
1378,
22,
35488,
13,
1577,
2813,
475,
3620,
10,
187,
92,
535,
186,
10933,
64,
9134,
64,
1088,
64,
86,
1237,
9,
3620,
13,
346,
6549,
34968,
13,
69,
6185,
18,
14,
2203,
14,
9852,
995,
996,
186,
7,
1378,
22,
35488,
1168,
81,
2203,
15,
69,
6185,
18,
64,
2203,
64,
9852,
558,
187,
186,
10933,
64,
9134,
64,
1088,
64,
86,
1237,
9,
3620,
13,
346,
6549,
34968,
13,
69,
6185,
18,
14,
18255,
14,
9852,
995,
996,
186,
7,
1378,
22,
35488,
1168,
81,
2203,
15,
69,
6185,
18,
64,
18255,
64,
9852,
558,
187,
186,
10933,
64,
9134,
64,
1088,
64,
86,
1237,
9,
3620,
13,
346,
6549,
34968,
13,
28034,
14,
7614,
995,
996,
186,
7,
1378,
22,
35488,
1168,
81,
2203,
15,
28034,
64,
7614,
558,
187,
186,
10933,
64,
9134,
64,
1088,
64,
86,
1237,
9,
3620,
13,
346,
6549,
34968,
13,
2612,
2109,
292,
14,
29000,
995,
996,
186,
7,
1378,
22,
35488,
1168,
81,
2203,
15,
2612,
2109,
292,
64,
29000,
558,
187,
186,
10933,
64,
9134,
64,
1088,
64,
86,
1237,
9,
3620,
13,
346,
6549,
34968,
13,
69,
6185,
14,
18255,
14,
4427,
14,
73,
91,
995,
996,
186,
7,
1378,
22,
35488,
1168,
81,
2203,
15,
69,
6185,
64,
18255,
64,
4427,
558,
187,
186,
10933,
64,
9134,
64,
1088,
64,
86,
1237,
9,
3620,
13,
346,
6549,
34968,
13,
69,
6185,
14,
29000,
14,
983,
995,
996,
186,
7,
1378,
22,
35488,
1168,
81,
2203,
15,
69,
6185,
64,
29000,
558,
535,
186,
1378,
22,
35488,
1168,
81,
2203,
15,
392,
80,
18,
64,
257,
426,
273,
64,
788,
64,
19389,
64,
32956,
9,
3620,
1168,
1171,
64,
6219,
13,
996,
186,
3,
6549,
34968,
13,
392,
80,
18,
14,
257,
14,
72,
2059,
375,
995,
470,
558,
535,
186,
338,
313,
10933,
64,
9134,
64,
1088,
64,
2703,
64,
3728,
9,
3620,
13,
346,
13273,
14,
9252,
14,
7886,
995,
7308,
50272,
1378,
22,
35488,
1168,
81,
2203,
15,
1473,
74,
64,
18255,
64,
7886,
13,
7308,
50272,
4708,
22,
35488,
64,
4877,
42,
64,
20872,
64,
3207,
14007,
10,
654,
470,
10,
996,
186,
3620,
64,
30289,
9,
3620,
13,
346,
11888,
4284,
15670,
42,
49362,
4454,
27,
2462,
84,
13,
2462,
84,
61,
79,
995,
2657,
37523,
22,
35488,
1168,
81,
2203,
15,
1473,
74,
64,
18255,
64,
7886,
60,
4708,
22,
35488,
64,
4877,
42,
64,
56,
22370,
64,
1838,
57,
1092,
2657,
37523,
22,
35488,
1168,
81,
2203,
15,
1473,
74,
64,
18255,
64,
7886,
60,
4708,
22,
35488,
64,
4877,
42,
64,
35,
22370,
64,
1838,
57,
9259,
535,
186,
2309,
470,
28,
187,
94,
187,
30216,
64,
47788,
64,
44335,
9,
1378,
22,
35488,
64,
12083,
64,
7064,
558,
187,
187,
4353,
37523,
22,
35488,
64,
1179,
2560,
366,
9,
2855,
37523,
22,
35488,
64,
13552,
475,
1378,
22,
35488,
10,
187,
92,
187,
186,
565,
1318,
13,
1385,
28,
535,
186,
22687,
64,
4348,
6395,
1378,
22,
35488,
1168,
1179,
2560,
366,
64,
22687,
558,
535,
186,
1378,
22,
35488,
64,
19511,
9,
1378,
22,
35488,
558,
187,
186,
1747,
4251,
64,
6343,
9,
1378,
22,
35488,
1168,
1747,
4251,
13,
9233,
22,
35488,
64,
42,
19,
36,
64,
20562,
13,
470,
89,
933,
71,
558,
187,
186,
1747,
4251,
64,
6343,
9,
1378,
22,
35488,
1168,
1747,
4251,
13,
9233,
22,
35488,
64,
49,
10690,
64,
1539,
37673,
64,
18,
13,
470,
14346,
19,
2320,
558,
187,
186,
316,
9481,
64,
6324,
9,
1010,
933,
13,
1052,
361,
558,
187,
186,
1747,
4251,
64,
6343,
9,
1378,
22,
35488,
1168,
1747,
4251,
13,
9233,
22,
35488,
64,
49,
10690,
64,
1539,
37673,
64,
18,
13,
470,
14506,
19,
2320,
558,
187,
186,
1747,
4251,
64,
6343,
9,
1378,
22,
35488,
1168,
1747,
4251,
13,
9233,
22,
35488,
64,
34611,
6159,
1719,
64,
19,
13,
470,
89,
2941,
361,
558,
187,
186,
1747,
4251,
64,
6343,
9,
1378,
22,
35488,
1168,
1747,
4251,
13,
9233,
22,
35488,
64,
5990,
35,
64,
22370,
13,
470,
89,
33038,
558,
187,
186,
1747,
4251,
64,
6343,
9,
1378,
22,
35488,
1168,
1747,
4251,
13,
9233,
22,
35488,
64,
49,
10690,
64,
42503,
64,
18,
13,
470,
89,
28949,
558,
187,
186,
1747,
4251,
64,
6343,
9,
1378,
22,
35488,
1168,
1747,
4251,
13,
9233,
22,
35488,
64,
18582,
64,
40921,
64,
52,
18041,
64,
20562,
64,
746,
13,
470,
89,
1839,
361,
558,
187,
186,
1747,
4251,
64,
6343,
9,
1378,
22,
35488,
1168,
1747,
4251,
13,
9233,
22,
35488,
64,
2775,
2795,
64,
48351,
13,
470,
89,
26990,
558,
187,
186,
1747,
4251,
64,
6343,
9,
1378,
22,
35488,
1168,
1747,
4251,
13,
9233,
22,
35488,
64,
39350,
5472,
64,
38348,
64,
20562,
13,
470,
89,
24,
5523,
558,
187,
186,
1747,
4251,
64,
6343,
9,
1378,
22,
35488,
1168,
1747,
4251,
13,
9233,
22,
35488,
64,
1267,
48,
18,
64,
38348,
64,
43640,
947,
13,
470,
89,
28057,
68,
558,
187,
186,
1747,
4251,
64,
6343,
9,
1378,
22,
35488,
1168,
1747,
4251,
13,
9233,
22,
35488,
64,
39350,
64,
34181,
13,
470,
89,
17,
69,
17,
69,
558,
187,
186,
1747,
4251,
64,
6343,
9,
1378,
22,
35488,
1168,
1747,
4251,
13,
9233,
22,
35488,
64,
18582,
64,
39350,
5472,
64,
20562,
64,
19,
13,
470,
89,
19634,
18,
558,
187,
186,
1747,
4251,
64,
6343,
9,
1378,
22,
35488,
1168,
1747,
4251,
13,
9233,
22,
35488,
64,
18582,
64,
21273,
1864,
64,
20562,
64,
19,
13,
470,
89,
15017,
558,
187,
186,
1747,
4251,
64,
6343,
9,
1378,
22,
35488,
1168,
1747,
4251,
13,
9233,
22,
35488,
64,
18582,
64,
39350,
5472,
64,
20562,
64,
18,
13,
470,
89,
24,
68,
361,
558,
187,
186,
1747,
4251,
64,
6343,
9,
1378,
22,
35488,
1168,
1747,
4251,
13,
9233,
22,
35488,
64,
18582,
64,
39350,
5472,
64,
20562,
64,
20,
13,
470,
89,
3071,
66,
18,
558,
187,
186,
1747,
4251,
64,
6343,
9,
1378,
22,
35488,
1168,
1747,
4251,
13,
9233,
22,
35488,
64,
34,
64,
48351,
18,
64,
46,
21466,
13,
470,
89,
2941,
883,
558,
187,
186,
1747,
4251,
64,
6343,
9,
1378,
22,
35488,
1168,
1747,
4251,
13,
9233,
22,
35488,
64,
18582,
64,
39350,
5472,
64,
20562,
64,
18,
13,
470,
89,
24,
68,
361,
558,
535,
186,
1747,
4251,
64,
6343,
9,
1378,
22,
35488,
1168,
1747,
4251,
13,
9233,
22,
35488,
64,
18582,
64,
39350,
5472,
64,
20562,
64,
18,
13,
470,
89,
12964,
361,
558,
535,
186,
1542,
313,
5560,
426,
470,
28,
1385,
654,
3925,
28,
1385,
9234,
551,
996,
186,
1747,
4251,
64,
1088,
9,
1378,
22,
35488,
1168,
1747,
4251,
13,
9233,
22,
35488,
64,
18582,
64,
39350,
5472,
64,
37789,
64,
18,
13,
708,
2877,
558,
996,
186,
338,
45496,
2877,
708,
470,
89,
33038,
1228,
988,
186,
7054,
28,
6886,
186,
316,
9481,
64,
6324,
9,
25463,
13,
9098,
22,
558,
187,
186,
94,
535,
186,
338,
313,
5560,
10122,
3925,
10,
996,
186,
3620,
64,
1000,
9,
1378,
22,
35488,
1168,
15658,
1168,
3620,
13,
346,
18582,
2263,
11457,
32104,
61,
79,
3287,
535,
186,
3122,
15042,
7533,
1738,
187,
186,
1747,
4251,
64,
6343,
9,
1378,
22,
35488,
1168,
1747,
4251,
13,
9233,
22,
35488,
64,
49,
10690,
64,
1539,
37673,
64,
18,
13,
470,
89,
4699,
71,
558,
187,
186,
1747,
4251,
64,
6343,
9,
1378,
22,
35488,
1168,
1747,
4251,
13,
9233,
22,
35488,
64,
34611,
6159,
1719,
64,
19,
13,
470,
89,
44135,
558,
187,
186,
1747,
4251,
64,
6343,
9,
1378,
22,
35488,
1168,
1747,
4251,
13,
9233,
22,
35488,
64,
5990,
35,
64,
22370,
13,
470,
89,
1418,
558,
187,
186,
1747,
4251,
64,
6343,
9,
1378,
22,
35488,
1168,
1747,
4251,
13,
9233,
22,
35488,
64,
49,
10690,
64,
42503,
64,
18,
13,
470,
89,
1418,
558,
187,
186,
1747,
4251,
64,
6343,
9,
1378,
22,
35488,
1168,
1747,
4251,
13,
9233,
22,
35488,
64,
2775,
2795,
64,
48351,
13,
470,
89,
6914,
558,
187,
186,
1747,
4251,
64,
6343,
9,
1378,
22,
35488,
1168,
1747,
4251,
13,
9233,
22,
35488,
64,
39350,
5472,
64,
38348,
64,
20562,
13,
470,
89,
9204,
558,
187,
186,
1747,
4251,
64,
6343,
9,
1378,
22,
35488,
1168,
1747,
4251,
13,
9233,
22,
35488,
64,
1267,
48,
18,
64,
38348,
64,
43640,
947,
13,
470,
10587,
17,
68,
21,
558,
187,
186,
1747,
4251,
64,
6343,
9,
1378,
22,
35488,
1168,
1747,
4251,
13,
9233,
22,
35488,
64,
39350,
64,
34181,
13,
470,
89,
17,
68,
17,
68,
558,
535,
186,
22687,
64,
25919,
6395,
1378,
22,
35488,
1168,
1179,
2560,
366,
64,
22687,
558,
187,
94,
187,
30216,
64,
47788,
64,
44335,
9,
1378,
22,
35488,
64,
1179,
2560,
366,
558,
187,
187,
27660,
64,
19578,
33480,
1587,
1719,
80,
36,
9233,
22,
35488,
6254,
3287,
187,
27660,
64,
37482,
1372,
1587,
35,
472,
418,
22728,
654,
26067,
19702,
80,
33,
6549,
34968,
15,
681,
31,
3287,
187,
27660,
64,
17821,
1587,
44335,
362,
19,
3287,
187
] | // SPDX-License-Identifier: GPL-2.0-only
//
// rt5682.c -- RT5682 ALSA SoC audio component driver
//
// Copyright 2018 Realtek Semiconductor Corp.
// Author: Bard Liao <[email protected]>
//
#include <linux/module.h>
#include <linux/moduleparam.h>
#include <linux/init.h>
#include <linux/delay.h>
#include <linux/pm.h>
#include <linux/pm_runtime.h>
#include <linux/platform_device.h>
#include <linux/spi/spi.h>
#include <linux/acpi.h>
#include <linux/gpio.h>
#include <linux/of_gpio.h>
#include <linux/mutex.h>
#include <sound/core.h>
#include <sound/pcm.h>
#include <sound/pcm_params.h>
#include <sound/jack.h>
#include <sound/soc.h>
#include <sound/soc-dapm.h>
#include <sound/initval.h>
#include <sound/tlv.h>
#include <sound/rt5682.h>
#include "rl6231.h"
#include "rt5682.h"
const char *rt5682_supply_names[RT5682_NUM_SUPPLIES] = {
"AVDD",
"MICVDD",
"VBAT",
};
EXPORT_SYMBOL_GPL(rt5682_supply_names);
static const struct reg_sequence patch_list[] = {
{RT5682_HP_IMP_SENS_CTRL_19, 0x1000},
{RT5682_DAC_ADC_DIG_VOL1, 0xa020},
{RT5682_I2C_CTRL, 0x000f},
{RT5682_PLL2_INTERNAL, 0x8266},
};
void rt5682_apply_patch_list(struct rt5682_priv *rt5682, struct device *dev)
{
int ret;
ret = regmap_multi_reg_write(rt5682->regmap, patch_list,
ARRAY_SIZE(patch_list));
if (ret)
dev_warn(dev, "Failed to apply regmap patch: %d\n", ret);
}
EXPORT_SYMBOL_GPL(rt5682_apply_patch_list);
const struct reg_default rt5682_reg[RT5682_REG_NUM] = {
{0x0002, 0x8080},
{0x0003, 0x8000},
{0x0005, 0x0000},
{0x0006, 0x0000},
{0x0008, 0x800f},
{0x000b, 0x0000},
{0x0010, 0x4040},
{0x0011, 0x0000},
{0x0012, 0x1404},
{0x0013, 0x1000},
{0x0014, 0xa00a},
{0x0015, 0x0404},
{0x0016, 0x0404},
{0x0019, 0xafaf},
{0x001c, 0x2f2f},
{0x001f, 0x0000},
{0x0022, 0x5757},
{0x0023, 0x0039},
{0x0024, 0x000b},
{0x0026, 0xc0c4},
{0x0029, 0x8080},
{0x002a, 0xa0a0},
{0x002b, 0x0300},
{0x0030, 0x0000},
{0x003c, 0x0080},
{0x0044, 0x0c0c},
{0x0049, 0x0000},
{0x0061, 0x0000},
{0x0062, 0x0000},
{0x0063, 0x003f},
{0x0064, 0x0000},
{0x0065, 0x0000},
{0x0066, 0x0030},
{0x0067, 0x0000},
{0x006b, 0x0000},
{0x006c, 0x0000},
{0x006d, 0x2200},
{0x006e, 0x0a10},
{0x0070, 0x8000},
{0x0071, 0x8000},
{0x0073, 0x0000},
{0x0074, 0x0000},
{0x0075, 0x0002},
{0x0076, 0x0001},
{0x0079, 0x0000},
{0x007a, 0x0000},
{0x007b, 0x0000},
{0x007c, 0x0100},
{0x007e, 0x0000},
{0x0080, 0x0000},
{0x0081, 0x0000},
{0x0082, 0x0000},
{0x0083, 0x0000},
{0x0084, 0x0000},
{0x0085, 0x0000},
{0x0086, 0x0005},
{0x0087, 0x0000},
{0x0088, 0x0000},
{0x008c, 0x0003},
{0x008d, 0x0000},
{0x008e, 0x0060},
{0x008f, 0x1000},
{0x0091, 0x0c26},
{0x0092, 0x0073},
{0x0093, 0x0000},
{0x0094, 0x0080},
{0x0098, 0x0000},
{0x009a, 0x0000},
{0x009b, 0x0000},
{0x009c, 0x0000},
{0x009d, 0x0000},
{0x009e, 0x100c},
{0x009f, 0x0000},
{0x00a0, 0x0000},
{0x00a3, 0x0002},
{0x00a4, 0x0001},
{0x00ae, 0x2040},
{0x00af, 0x0000},
{0x00b6, 0x0000},
{0x00b7, 0x0000},
{0x00b8, 0x0000},
{0x00b9, 0x0002},
{0x00be, 0x0000},
{0x00c0, 0x0160},
{0x00c1, 0x82a0},
{0x00c2, 0x0000},
{0x00d0, 0x0000},
{0x00d1, 0x2244},
{0x00d2, 0x3300},
{0x00d3, 0x2200},
{0x00d4, 0x0000},
{0x00d9, 0x0009},
{0x00da, 0x0000},
{0x00db, 0x0000},
{0x00dc, 0x00c0},
{0x00dd, 0x2220},
{0x00de, 0x3131},
{0x00df, 0x3131},
{0x00e0, 0x3131},
{0x00e2, 0x0000},
{0x00e3, 0x4000},
{0x00e4, 0x0aa0},
{0x00e5, 0x3131},
{0x00e6, 0x3131},
{0x00e7, 0x3131},
{0x00e8, 0x3131},
{0x00ea, 0xb320},
{0x00eb, 0x0000},
{0x00f0, 0x0000},
{0x00f1, 0x00d0},
{0x00f2, 0x00d0},
{0x00f6, 0x0000},
{0x00fa, 0x0000},
{0x00fb, 0x0000},
{0x00fc, 0x0000},
{0x00fd, 0x0000},
{0x00fe, 0x10ec},
{0x00ff, 0x6530},
{0x0100, 0xa0a0},
{0x010b, 0x0000},
{0x010c, 0xae00},
{0x010d, 0xaaa0},
{0x010e, 0x8aa2},
{0x010f, 0x02a2},
{0x0110, 0xc000},
{0x0111, 0x04a2},
{0x0112, 0x2800},
{0x0113, 0x0000},
{0x0117, 0x0100},
{0x0125, 0x0410},
{0x0132, 0x6026},
{0x0136, 0x5555},
{0x0138, 0x3700},
{0x013a, 0x2000},
{0x013b, 0x2000},
{0x013c, 0x2005},
{0x013f, 0x0000},
{0x0142, 0x0000},
{0x0145, 0x0002},
{0x0146, 0x0000},
{0x0147, 0x0000},
{0x0148, 0x0000},
{0x0149, 0x0000},
{0x0150, 0x79a1},
{0x0156, 0xaaaa},
{0x0160, 0x4ec0},
{0x0161, 0x0080},
{0x0162, 0x0200},
{0x0163, 0x0800},
{0x0164, 0x0000},
{0x0165, 0x0000},
{0x0166, 0x0000},
{0x0167, 0x000f},
{0x0168, 0x000f},
{0x0169, 0x0021},
{0x0190, 0x413d},
{0x0194, 0x0000},
{0x0195, 0x0000},
{0x0197, 0x0022},
{0x0198, 0x0000},
{0x0199, 0x0000},
{0x01af, 0x0000},
{0x01b0, 0x0400},
{0x01b1, 0x0000},
{0x01b2, 0x0000},
{0x01b3, 0x0000},
{0x01b4, 0x0000},
{0x01b5, 0x0000},
{0x01b6, 0x01c3},
{0x01b7, 0x02a0},
{0x01b8, 0x03e9},
{0x01b9, 0x1389},
{0x01ba, 0xc351},
{0x01bb, 0x0009},
{0x01bc, 0x0018},
{0x01bd, 0x002a},
{0x01be, 0x004c},
{0x01bf, 0x0097},
{0x01c0, 0x433d},
{0x01c2, 0x0000},
{0x01c3, 0x0000},
{0x01c4, 0x0000},
{0x01c5, 0x0000},
{0x01c6, 0x0000},
{0x01c7, 0x0000},
{0x01c8, 0x40af},
{0x01c9, 0x0702},
{0x01ca, 0x0000},
{0x01cb, 0x0000},
{0x01cc, 0x5757},
{0x01cd, 0x5757},
{0x01ce, 0x5757},
{0x01cf, 0x5757},
{0x01d0, 0x5757},
{0x01d1, 0x5757},
{0x01d2, 0x5757},
{0x01d3, 0x5757},
{0x01d4, 0x5757},
{0x01d5, 0x5757},
{0x01d6, 0x0000},
{0x01d7, 0x0008},
{0x01d8, 0x0029},
{0x01d9, 0x3333},
{0x01da, 0x0000},
{0x01db, 0x0004},
{0x01dc, 0x0000},
{0x01de, 0x7c00},
{0x01df, 0x0320},
{0x01e0, 0x06a1},
{0x01e1, 0x0000},
{0x01e2, 0x0000},
{0x01e3, 0x0000},
{0x01e4, 0x0000},
{0x01e6, 0x0001},
{0x01e7, 0x0000},
{0x01e8, 0x0000},
{0x01ea, 0x0000},
{0x01eb, 0x0000},
{0x01ec, 0x0000},
{0x01ed, 0x0000},
{0x01ee, 0x0000},
{0x01ef, 0x0000},
{0x01f0, 0x0000},
{0x01f1, 0x0000},
{0x01f2, 0x0000},
{0x01f3, 0x0000},
{0x01f4, 0x0000},
{0x0210, 0x6297},
{0x0211, 0xa005},
{0x0212, 0x824c},
{0x0213, 0xf7ff},
{0x0214, 0xf24c},
{0x0215, 0x0102},
{0x0216, 0x00a3},
{0x0217, 0x0048},
{0x0218, 0xa2c0},
{0x0219, 0x0400},
{0x021a, 0x00c8},
{0x021b, 0x00c0},
{0x021c, 0x0000},
{0x0250, 0x4500},
{0x0251, 0x40b3},
{0x0252, 0x0000},
{0x0253, 0x0000},
{0x0254, 0x0000},
{0x0255, 0x0000},
{0x0256, 0x0000},
{0x0257, 0x0000},
{0x0258, 0x0000},
{0x0259, 0x0000},
{0x025a, 0x0005},
{0x0270, 0x0000},
{0x02ff, 0x0110},
{0x0300, 0x001f},
{0x0301, 0x032c},
{0x0302, 0x5f21},
{0x0303, 0x4000},
{0x0304, 0x4000},
{0x0305, 0x06d5},
{0x0306, 0x8000},
{0x0307, 0x0700},
{0x0310, 0x4560},
{0x0311, 0xa4a8},
{0x0312, 0x7418},
{0x0313, 0x0000},
{0x0314, 0x0006},
{0x0315, 0xffff},
{0x0316, 0xc400},
{0x0317, 0x0000},
{0x03c0, 0x7e00},
{0x03c1, 0x8000},
{0x03c2, 0x8000},
{0x03c3, 0x8000},
{0x03c4, 0x8000},
{0x03c5, 0x8000},
{0x03c6, 0x8000},
{0x03c7, 0x8000},
{0x03c8, 0x8000},
{0x03c9, 0x8000},
{0x03ca, 0x8000},
{0x03cb, 0x8000},
{0x03cc, 0x8000},
{0x03d0, 0x0000},
{0x03d1, 0x0000},
{0x03d2, 0x0000},
{0x03d3, 0x0000},
{0x03d4, 0x2000},
{0x03d5, 0x2000},
{0x03d6, 0x0000},
{0x03d7, 0x0000},
{0x03d8, 0x2000},
{0x03d9, 0x2000},
{0x03da, 0x2000},
{0x03db, 0x2000},
{0x03dc, 0x0000},
{0x03dd, 0x0000},
{0x03de, 0x0000},
{0x03df, 0x2000},
{0x03e0, 0x0000},
{0x03e1, 0x0000},
{0x03e2, 0x0000},
{0x03e3, 0x0000},
{0x03e4, 0x0000},
{0x03e5, 0x0000},
{0x03e6, 0x0000},
{0x03e7, 0x0000},
{0x03e8, 0x0000},
{0x03e9, 0x0000},
{0x03ea, 0x0000},
{0x03eb, 0x0000},
{0x03ec, 0x0000},
{0x03ed, 0x0000},
{0x03ee, 0x0000},
{0x03ef, 0x0000},
{0x03f0, 0x0800},
{0x03f1, 0x0800},
{0x03f2, 0x0800},
{0x03f3, 0x0800},
};
EXPORT_SYMBOL_GPL(rt5682_reg);
bool rt5682_volatile_register(struct device *dev, unsigned int reg)
{
switch (reg) {
case RT5682_RESET:
case RT5682_CBJ_CTRL_2:
case RT5682_INT_ST_1:
case RT5682_4BTN_IL_CMD_1:
case RT5682_AJD1_CTRL:
case RT5682_HP_CALIB_CTRL_1:
case RT5682_DEVICE_ID:
case RT5682_I2C_MODE:
case RT5682_HP_CALIB_CTRL_10:
case RT5682_EFUSE_CTRL_2:
case RT5682_JD_TOP_VC_VTRL:
case RT5682_HP_IMP_SENS_CTRL_19:
case RT5682_IL_CMD_1:
case RT5682_SAR_IL_CMD_2:
case RT5682_SAR_IL_CMD_4:
case RT5682_SAR_IL_CMD_10:
case RT5682_SAR_IL_CMD_11:
case RT5682_EFUSE_CTRL_6...RT5682_EFUSE_CTRL_11:
case RT5682_HP_CALIB_STA_1...RT5682_HP_CALIB_STA_11:
return true;
default:
return false;
}
}
EXPORT_SYMBOL_GPL(rt5682_volatile_register);
bool rt5682_readable_register(struct device *dev, unsigned int reg)
{
switch (reg) {
case RT5682_RESET:
case RT5682_VERSION_ID:
case RT5682_VENDOR_ID:
case RT5682_DEVICE_ID:
case RT5682_HP_CTRL_1:
case RT5682_HP_CTRL_2:
case RT5682_HPL_GAIN:
case RT5682_HPR_GAIN:
case RT5682_I2C_CTRL:
case RT5682_CBJ_BST_CTRL:
case RT5682_CBJ_CTRL_1:
case RT5682_CBJ_CTRL_2:
case RT5682_CBJ_CTRL_3:
case RT5682_CBJ_CTRL_4:
case RT5682_CBJ_CTRL_5:
case RT5682_CBJ_CTRL_6:
case RT5682_CBJ_CTRL_7:
case RT5682_DAC1_DIG_VOL:
case RT5682_STO1_ADC_DIG_VOL:
case RT5682_STO1_ADC_BOOST:
case RT5682_HP_IMP_GAIN_1:
case RT5682_HP_IMP_GAIN_2:
case RT5682_SIDETONE_CTRL:
case RT5682_STO1_ADC_MIXER:
case RT5682_AD_DA_MIXER:
case RT5682_STO1_DAC_MIXER:
case RT5682_A_DAC1_MUX:
case RT5682_DIG_INF2_DATA:
case RT5682_REC_MIXER:
case RT5682_CAL_REC:
case RT5682_ALC_BACK_GAIN:
case RT5682_PWR_DIG_1:
case RT5682_PWR_DIG_2:
case RT5682_PWR_ANLG_1:
case RT5682_PWR_ANLG_2:
case RT5682_PWR_ANLG_3:
case RT5682_PWR_MIXER:
case RT5682_PWR_VOL:
case RT5682_CLK_DET:
case RT5682_RESET_LPF_CTRL:
case RT5682_RESET_HPF_CTRL:
case RT5682_DMIC_CTRL_1:
case RT5682_I2S1_SDP:
case RT5682_I2S2_SDP:
case RT5682_ADDA_CLK_1:
case RT5682_ADDA_CLK_2:
case RT5682_I2S1_F_DIV_CTRL_1:
case RT5682_I2S1_F_DIV_CTRL_2:
case RT5682_TDM_CTRL:
case RT5682_TDM_ADDA_CTRL_1:
case RT5682_TDM_ADDA_CTRL_2:
case RT5682_DATA_SEL_CTRL_1:
case RT5682_TDM_TCON_CTRL:
case RT5682_GLB_CLK:
case RT5682_PLL_CTRL_1:
case RT5682_PLL_CTRL_2:
case RT5682_PLL_TRACK_1:
case RT5682_PLL_TRACK_2:
case RT5682_PLL_TRACK_3:
case RT5682_PLL_TRACK_4:
case RT5682_PLL_TRACK_5:
case RT5682_PLL_TRACK_6:
case RT5682_PLL_TRACK_11:
case RT5682_SDW_REF_CLK:
case RT5682_DEPOP_1:
case RT5682_DEPOP_2:
case RT5682_HP_CHARGE_PUMP_1:
case RT5682_HP_CHARGE_PUMP_2:
case RT5682_MICBIAS_1:
case RT5682_MICBIAS_2:
case RT5682_PLL_TRACK_12:
case RT5682_PLL_TRACK_14:
case RT5682_PLL2_CTRL_1:
case RT5682_PLL2_CTRL_2:
case RT5682_PLL2_CTRL_3:
case RT5682_PLL2_CTRL_4:
case RT5682_RC_CLK_CTRL:
case RT5682_I2S_M_CLK_CTRL_1:
case RT5682_I2S2_F_DIV_CTRL_1:
case RT5682_I2S2_F_DIV_CTRL_2:
case RT5682_EQ_CTRL_1:
case RT5682_EQ_CTRL_2:
case RT5682_IRQ_CTRL_1:
case RT5682_IRQ_CTRL_2:
case RT5682_IRQ_CTRL_3:
case RT5682_IRQ_CTRL_4:
case RT5682_INT_ST_1:
case RT5682_GPIO_CTRL_1:
case RT5682_GPIO_CTRL_2:
case RT5682_GPIO_CTRL_3:
case RT5682_HP_AMP_DET_CTRL_1:
case RT5682_HP_AMP_DET_CTRL_2:
case RT5682_MID_HP_AMP_DET:
case RT5682_LOW_HP_AMP_DET:
case RT5682_DELAY_BUF_CTRL:
case RT5682_SV_ZCD_1:
case RT5682_SV_ZCD_2:
case RT5682_IL_CMD_1:
case RT5682_IL_CMD_2:
case RT5682_IL_CMD_3:
case RT5682_IL_CMD_4:
case RT5682_IL_CMD_5:
case RT5682_IL_CMD_6:
case RT5682_4BTN_IL_CMD_1:
case RT5682_4BTN_IL_CMD_2:
case RT5682_4BTN_IL_CMD_3:
case RT5682_4BTN_IL_CMD_4:
case RT5682_4BTN_IL_CMD_5:
case RT5682_4BTN_IL_CMD_6:
case RT5682_4BTN_IL_CMD_7:
case RT5682_ADC_STO1_HP_CTRL_1:
case RT5682_ADC_STO1_HP_CTRL_2:
case RT5682_AJD1_CTRL:
case RT5682_JD1_THD:
case RT5682_JD2_THD:
case RT5682_JD_CTRL_1:
case RT5682_DUMMY_1:
case RT5682_DUMMY_2:
case RT5682_DUMMY_3:
case RT5682_DAC_ADC_DIG_VOL1:
case RT5682_BIAS_CUR_CTRL_2:
case RT5682_BIAS_CUR_CTRL_3:
case RT5682_BIAS_CUR_CTRL_4:
case RT5682_BIAS_CUR_CTRL_5:
case RT5682_BIAS_CUR_CTRL_6:
case RT5682_BIAS_CUR_CTRL_7:
case RT5682_BIAS_CUR_CTRL_8:
case RT5682_BIAS_CUR_CTRL_9:
case RT5682_BIAS_CUR_CTRL_10:
case RT5682_VREF_REC_OP_FB_CAP_CTRL:
case RT5682_CHARGE_PUMP_1:
case RT5682_DIG_IN_CTRL_1:
case RT5682_PAD_DRIVING_CTRL:
case RT5682_SOFT_RAMP_DEPOP:
case RT5682_CHOP_DAC:
case RT5682_CHOP_ADC:
case RT5682_CALIB_ADC_CTRL:
case RT5682_VOL_TEST:
case RT5682_SPKVDD_DET_STA:
case RT5682_TEST_MODE_CTRL_1:
case RT5682_TEST_MODE_CTRL_2:
case RT5682_TEST_MODE_CTRL_3:
case RT5682_TEST_MODE_CTRL_4:
case RT5682_TEST_MODE_CTRL_5:
case RT5682_PLL1_INTERNAL:
case RT5682_PLL2_INTERNAL:
case RT5682_STO_NG2_CTRL_1:
case RT5682_STO_NG2_CTRL_2:
case RT5682_STO_NG2_CTRL_3:
case RT5682_STO_NG2_CTRL_4:
case RT5682_STO_NG2_CTRL_5:
case RT5682_STO_NG2_CTRL_6:
case RT5682_STO_NG2_CTRL_7:
case RT5682_STO_NG2_CTRL_8:
case RT5682_STO_NG2_CTRL_9:
case RT5682_STO_NG2_CTRL_10:
case RT5682_STO1_DAC_SIL_DET:
case RT5682_SIL_PSV_CTRL1:
case RT5682_SIL_PSV_CTRL2:
case RT5682_SIL_PSV_CTRL3:
case RT5682_SIL_PSV_CTRL4:
case RT5682_SIL_PSV_CTRL5:
case RT5682_HP_IMP_SENS_CTRL_01:
case RT5682_HP_IMP_SENS_CTRL_02:
case RT5682_HP_IMP_SENS_CTRL_03:
case RT5682_HP_IMP_SENS_CTRL_04:
case RT5682_HP_IMP_SENS_CTRL_05:
case RT5682_HP_IMP_SENS_CTRL_06:
case RT5682_HP_IMP_SENS_CTRL_07:
case RT5682_HP_IMP_SENS_CTRL_08:
case RT5682_HP_IMP_SENS_CTRL_09:
case RT5682_HP_IMP_SENS_CTRL_10:
case RT5682_HP_IMP_SENS_CTRL_11:
case RT5682_HP_IMP_SENS_CTRL_12:
case RT5682_HP_IMP_SENS_CTRL_13:
case RT5682_HP_IMP_SENS_CTRL_14:
case RT5682_HP_IMP_SENS_CTRL_15:
case RT5682_HP_IMP_SENS_CTRL_16:
case RT5682_HP_IMP_SENS_CTRL_17:
case RT5682_HP_IMP_SENS_CTRL_18:
case RT5682_HP_IMP_SENS_CTRL_19:
case RT5682_HP_IMP_SENS_CTRL_20:
case RT5682_HP_IMP_SENS_CTRL_21:
case RT5682_HP_IMP_SENS_CTRL_22:
case RT5682_HP_IMP_SENS_CTRL_23:
case RT5682_HP_IMP_SENS_CTRL_24:
case RT5682_HP_IMP_SENS_CTRL_25:
case RT5682_HP_IMP_SENS_CTRL_26:
case RT5682_HP_IMP_SENS_CTRL_27:
case RT5682_HP_IMP_SENS_CTRL_28:
case RT5682_HP_IMP_SENS_CTRL_29:
case RT5682_HP_IMP_SENS_CTRL_30:
case RT5682_HP_IMP_SENS_CTRL_31:
case RT5682_HP_IMP_SENS_CTRL_32:
case RT5682_HP_IMP_SENS_CTRL_33:
case RT5682_HP_IMP_SENS_CTRL_34:
case RT5682_HP_IMP_SENS_CTRL_35:
case RT5682_HP_IMP_SENS_CTRL_36:
case RT5682_HP_IMP_SENS_CTRL_37:
case RT5682_HP_IMP_SENS_CTRL_38:
case RT5682_HP_IMP_SENS_CTRL_39:
case RT5682_HP_IMP_SENS_CTRL_40:
case RT5682_HP_IMP_SENS_CTRL_41:
case RT5682_HP_IMP_SENS_CTRL_42:
case RT5682_HP_IMP_SENS_CTRL_43:
case RT5682_HP_LOGIC_CTRL_1:
case RT5682_HP_LOGIC_CTRL_2:
case RT5682_HP_LOGIC_CTRL_3:
case RT5682_HP_CALIB_CTRL_1:
case RT5682_HP_CALIB_CTRL_2:
case RT5682_HP_CALIB_CTRL_3:
case RT5682_HP_CALIB_CTRL_4:
case RT5682_HP_CALIB_CTRL_5:
case RT5682_HP_CALIB_CTRL_6:
case RT5682_HP_CALIB_CTRL_7:
case RT5682_HP_CALIB_CTRL_9:
case RT5682_HP_CALIB_CTRL_10:
case RT5682_HP_CALIB_CTRL_11:
case RT5682_HP_CALIB_STA_1:
case RT5682_HP_CALIB_STA_2:
case RT5682_HP_CALIB_STA_3:
case RT5682_HP_CALIB_STA_4:
case RT5682_HP_CALIB_STA_5:
case RT5682_HP_CALIB_STA_6:
case RT5682_HP_CALIB_STA_7:
case RT5682_HP_CALIB_STA_8:
case RT5682_HP_CALIB_STA_9:
case RT5682_HP_CALIB_STA_10:
case RT5682_HP_CALIB_STA_11:
case RT5682_SAR_IL_CMD_1:
case RT5682_SAR_IL_CMD_2:
case RT5682_SAR_IL_CMD_3:
case RT5682_SAR_IL_CMD_4:
case RT5682_SAR_IL_CMD_5:
case RT5682_SAR_IL_CMD_6:
case RT5682_SAR_IL_CMD_7:
case RT5682_SAR_IL_CMD_8:
case RT5682_SAR_IL_CMD_9:
case RT5682_SAR_IL_CMD_10:
case RT5682_SAR_IL_CMD_11:
case RT5682_SAR_IL_CMD_12:
case RT5682_SAR_IL_CMD_13:
case RT5682_EFUSE_CTRL_1:
case RT5682_EFUSE_CTRL_2:
case RT5682_EFUSE_CTRL_3:
case RT5682_EFUSE_CTRL_4:
case RT5682_EFUSE_CTRL_5:
case RT5682_EFUSE_CTRL_6:
case RT5682_EFUSE_CTRL_7:
case RT5682_EFUSE_CTRL_8:
case RT5682_EFUSE_CTRL_9:
case RT5682_EFUSE_CTRL_10:
case RT5682_EFUSE_CTRL_11:
case RT5682_JD_TOP_VC_VTRL:
case RT5682_DRC1_CTRL_0:
case RT5682_DRC1_CTRL_1:
case RT5682_DRC1_CTRL_2:
case RT5682_DRC1_CTRL_3:
case RT5682_DRC1_CTRL_4:
case RT5682_DRC1_CTRL_5:
case RT5682_DRC1_CTRL_6:
case RT5682_DRC1_HARD_LMT_CTRL_1:
case RT5682_DRC1_HARD_LMT_CTRL_2:
case RT5682_DRC1_PRIV_1:
case RT5682_DRC1_PRIV_2:
case RT5682_DRC1_PRIV_3:
case RT5682_DRC1_PRIV_4:
case RT5682_DRC1_PRIV_5:
case RT5682_DRC1_PRIV_6:
case RT5682_DRC1_PRIV_7:
case RT5682_DRC1_PRIV_8:
case RT5682_EQ_AUTO_RCV_CTRL1:
case RT5682_EQ_AUTO_RCV_CTRL2:
case RT5682_EQ_AUTO_RCV_CTRL3:
case RT5682_EQ_AUTO_RCV_CTRL4:
case RT5682_EQ_AUTO_RCV_CTRL5:
case RT5682_EQ_AUTO_RCV_CTRL6:
case RT5682_EQ_AUTO_RCV_CTRL7:
case RT5682_EQ_AUTO_RCV_CTRL8:
case RT5682_EQ_AUTO_RCV_CTRL9:
case RT5682_EQ_AUTO_RCV_CTRL10:
case RT5682_EQ_AUTO_RCV_CTRL11:
case RT5682_EQ_AUTO_RCV_CTRL12:
case RT5682_EQ_AUTO_RCV_CTRL13:
case RT5682_ADC_L_EQ_LPF1_A1:
case RT5682_R_EQ_LPF1_A1:
case RT5682_L_EQ_LPF1_H0:
case RT5682_R_EQ_LPF1_H0:
case RT5682_L_EQ_BPF1_A1:
case RT5682_R_EQ_BPF1_A1:
case RT5682_L_EQ_BPF1_A2:
case RT5682_R_EQ_BPF1_A2:
case RT5682_L_EQ_BPF1_H0:
case RT5682_R_EQ_BPF1_H0:
case RT5682_L_EQ_BPF2_A1:
case RT5682_R_EQ_BPF2_A1:
case RT5682_L_EQ_BPF2_A2:
case RT5682_R_EQ_BPF2_A2:
case RT5682_L_EQ_BPF2_H0:
case RT5682_R_EQ_BPF2_H0:
case RT5682_L_EQ_BPF3_A1:
case RT5682_R_EQ_BPF3_A1:
case RT5682_L_EQ_BPF3_A2:
case RT5682_R_EQ_BPF3_A2:
case RT5682_L_EQ_BPF3_H0:
case RT5682_R_EQ_BPF3_H0:
case RT5682_L_EQ_BPF4_A1:
case RT5682_R_EQ_BPF4_A1:
case RT5682_L_EQ_BPF4_A2:
case RT5682_R_EQ_BPF4_A2:
case RT5682_L_EQ_BPF4_H0:
case RT5682_R_EQ_BPF4_H0:
case RT5682_L_EQ_HPF1_A1:
case RT5682_R_EQ_HPF1_A1:
case RT5682_L_EQ_HPF1_H0:
case RT5682_R_EQ_HPF1_H0:
case RT5682_L_EQ_PRE_VOL:
case RT5682_R_EQ_PRE_VOL:
case RT5682_L_EQ_POST_VOL:
case RT5682_R_EQ_POST_VOL:
case RT5682_I2C_MODE:
return true;
default:
return false;
}
}
EXPORT_SYMBOL_GPL(rt5682_readable_register);
static const DECLARE_TLV_DB_SCALE(dac_vol_tlv, -6525, 75, 0);
static const DECLARE_TLV_DB_SCALE(adc_vol_tlv, -1725, 75, 0);
static const DECLARE_TLV_DB_SCALE(adc_bst_tlv, 0, 1200, 0);
/* {0, +20, +24, +30, +35, +40, +44, +50, +52} dB */
static const DECLARE_TLV_DB_RANGE(bst_tlv,
0, 0, TLV_DB_SCALE_ITEM(0, 0, 0),
1, 1, TLV_DB_SCALE_ITEM(2000, 0, 0),
2, 2, TLV_DB_SCALE_ITEM(2400, 0, 0),
3, 5, TLV_DB_SCALE_ITEM(3000, 500, 0),
6, 6, TLV_DB_SCALE_ITEM(4400, 0, 0),
7, 7, TLV_DB_SCALE_ITEM(5000, 0, 0),
8, 8, TLV_DB_SCALE_ITEM(5200, 0, 0)
);
/* Interface data select */
static const char * const rt5682_data_select[] = {
"L/R", "R/L", "L/L", "R/R"
};
static SOC_ENUM_SINGLE_DECL(rt5682_if2_adc_enum,
RT5682_DIG_INF2_DATA, RT5682_IF2_ADC_SEL_SFT, rt5682_data_select);
static SOC_ENUM_SINGLE_DECL(rt5682_if1_01_adc_enum,
RT5682_TDM_ADDA_CTRL_1, RT5682_IF1_ADC1_SEL_SFT, rt5682_data_select);
static SOC_ENUM_SINGLE_DECL(rt5682_if1_23_adc_enum,
RT5682_TDM_ADDA_CTRL_1, RT5682_IF1_ADC2_SEL_SFT, rt5682_data_select);
static SOC_ENUM_SINGLE_DECL(rt5682_if1_45_adc_enum,
RT5682_TDM_ADDA_CTRL_1, RT5682_IF1_ADC3_SEL_SFT, rt5682_data_select);
static SOC_ENUM_SINGLE_DECL(rt5682_if1_67_adc_enum,
RT5682_TDM_ADDA_CTRL_1, RT5682_IF1_ADC4_SEL_SFT, rt5682_data_select);
static const struct snd_kcontrol_new rt5682_if2_adc_swap_mux =
SOC_DAPM_ENUM("IF2 ADC Swap Mux", rt5682_if2_adc_enum);
static const struct snd_kcontrol_new rt5682_if1_01_adc_swap_mux =
SOC_DAPM_ENUM("IF1 01 ADC Swap Mux", rt5682_if1_01_adc_enum);
static const struct snd_kcontrol_new rt5682_if1_23_adc_swap_mux =
SOC_DAPM_ENUM("IF1 23 ADC Swap Mux", rt5682_if1_23_adc_enum);
static const struct snd_kcontrol_new rt5682_if1_45_adc_swap_mux =
SOC_DAPM_ENUM("IF1 45 ADC Swap Mux", rt5682_if1_45_adc_enum);
static const struct snd_kcontrol_new rt5682_if1_67_adc_swap_mux =
SOC_DAPM_ENUM("IF1 67 ADC Swap Mux", rt5682_if1_67_adc_enum);
static const char * const rt5682_dac_select[] = {
"IF1", "SOUND"
};
static SOC_ENUM_SINGLE_DECL(rt5682_dacl_enum,
RT5682_AD_DA_MIXER, RT5682_DAC1_L_SEL_SFT, rt5682_dac_select);
static const struct snd_kcontrol_new rt5682_dac_l_mux =
SOC_DAPM_ENUM("DAC L Mux", rt5682_dacl_enum);
static SOC_ENUM_SINGLE_DECL(rt5682_dacr_enum,
RT5682_AD_DA_MIXER, RT5682_DAC1_R_SEL_SFT, rt5682_dac_select);
static const struct snd_kcontrol_new rt5682_dac_r_mux =
SOC_DAPM_ENUM("DAC R Mux", rt5682_dacr_enum);
void rt5682_reset(struct rt5682_priv *rt5682)
{
regmap_write(rt5682->regmap, RT5682_RESET, 0);
if (!rt5682->is_sdw)
regmap_write(rt5682->regmap, RT5682_I2C_MODE, 1);
}
EXPORT_SYMBOL_GPL(rt5682_reset);
/**
* rt5682_sel_asrc_clk_src - select ASRC clock source for a set of filters
* @component: SoC audio component device.
* @filter_mask: mask of filters.
* @clk_src: clock source
*
* The ASRC function is for asynchronous MCLK and LRCK. Also, since RT5682 can
* only support standard 32fs or 64fs i2s format, ASRC should be enabled to
* support special i2s clock format such as Intel's 100fs(100 * sampling rate).
* ASRC function will track i2s clock and generate a corresponding system clock
* for codec. This function provides an API to select the clock source for a
* set of filters specified by the mask. And the component driver will turn on
* ASRC for these filters if ASRC is selected as their clock source.
*/
int rt5682_sel_asrc_clk_src(struct snd_soc_component *component,
unsigned int filter_mask, unsigned int clk_src)
{
switch (clk_src) {
case RT5682_CLK_SEL_SYS:
case RT5682_CLK_SEL_I2S1_ASRC:
case RT5682_CLK_SEL_I2S2_ASRC:
break;
default:
return -EINVAL;
}
if (filter_mask & RT5682_DA_STEREO1_FILTER) {
snd_soc_component_update_bits(component, RT5682_PLL_TRACK_2,
RT5682_FILTER_CLK_SEL_MASK,
clk_src << RT5682_FILTER_CLK_SEL_SFT);
}
if (filter_mask & RT5682_AD_STEREO1_FILTER) {
snd_soc_component_update_bits(component, RT5682_PLL_TRACK_3,
RT5682_FILTER_CLK_SEL_MASK,
clk_src << RT5682_FILTER_CLK_SEL_SFT);
}
return 0;
}
EXPORT_SYMBOL_GPL(rt5682_sel_asrc_clk_src);
static int rt5682_button_detect(struct snd_soc_component *component)
{
int btn_type, val;
val = snd_soc_component_read(component, RT5682_4BTN_IL_CMD_1);
btn_type = val & 0xfff0;
snd_soc_component_write(component, RT5682_4BTN_IL_CMD_1, val);
dev_dbg(component->dev, "%s btn_type=%x\n", __func__, btn_type);
snd_soc_component_update_bits(component,
RT5682_SAR_IL_CMD_2, 0x10, 0x10);
return btn_type;
}
static void rt5682_enable_push_button_irq(struct snd_soc_component *component,
bool enable)
{
struct rt5682_priv *rt5682 = snd_soc_component_get_drvdata(component);
if (enable) {
snd_soc_component_update_bits(component, RT5682_SAR_IL_CMD_1,
RT5682_SAR_BUTT_DET_MASK, RT5682_SAR_BUTT_DET_EN);
snd_soc_component_update_bits(component, RT5682_SAR_IL_CMD_13,
RT5682_SAR_SOUR_MASK, RT5682_SAR_SOUR_BTN);
snd_soc_component_write(component, RT5682_IL_CMD_1, 0x0040);
snd_soc_component_update_bits(component, RT5682_4BTN_IL_CMD_2,
RT5682_4BTN_IL_MASK | RT5682_4BTN_IL_RST_MASK,
RT5682_4BTN_IL_EN | RT5682_4BTN_IL_NOR);
if (rt5682->is_sdw)
snd_soc_component_update_bits(component,
RT5682_IRQ_CTRL_3,
RT5682_IL_IRQ_MASK | RT5682_IL_IRQ_TYPE_MASK,
RT5682_IL_IRQ_EN | RT5682_IL_IRQ_PUL);
else
snd_soc_component_update_bits(component,
RT5682_IRQ_CTRL_3, RT5682_IL_IRQ_MASK,
RT5682_IL_IRQ_EN);
} else {
snd_soc_component_update_bits(component, RT5682_IRQ_CTRL_3,
RT5682_IL_IRQ_MASK, RT5682_IL_IRQ_DIS);
snd_soc_component_update_bits(component, RT5682_SAR_IL_CMD_1,
RT5682_SAR_BUTT_DET_MASK, RT5682_SAR_BUTT_DET_DIS);
snd_soc_component_update_bits(component, RT5682_4BTN_IL_CMD_2,
RT5682_4BTN_IL_MASK, RT5682_4BTN_IL_DIS);
snd_soc_component_update_bits(component, RT5682_4BTN_IL_CMD_2,
RT5682_4BTN_IL_RST_MASK, RT5682_4BTN_IL_RST);
snd_soc_component_update_bits(component, RT5682_SAR_IL_CMD_13,
RT5682_SAR_SOUR_MASK, RT5682_SAR_SOUR_TYPE);
}
}
/**
* rt5682_headset_detect - Detect headset.
* @component: SoC audio component device.
* @jack_insert: Jack insert or not.
*
* Detect whether is headset or not when jack inserted.
*
* Returns detect status.
*/
int rt5682_headset_detect(struct snd_soc_component *component, int jack_insert)
{
struct rt5682_priv *rt5682 = snd_soc_component_get_drvdata(component);
struct snd_soc_dapm_context *dapm = &component->dapm;
unsigned int val, count;
if (jack_insert) {
snd_soc_component_update_bits(component, RT5682_PWR_ANLG_1,
RT5682_PWR_VREF2 | RT5682_PWR_MB,
RT5682_PWR_VREF2 | RT5682_PWR_MB);
snd_soc_component_update_bits(component,
RT5682_PWR_ANLG_1, RT5682_PWR_FV2, 0);
usleep_range(15000, 20000);
snd_soc_component_update_bits(component,
RT5682_PWR_ANLG_1, RT5682_PWR_FV2, RT5682_PWR_FV2);
snd_soc_component_update_bits(component, RT5682_PWR_ANLG_3,
RT5682_PWR_CBJ, RT5682_PWR_CBJ);
snd_soc_component_update_bits(component,
RT5682_HP_CHARGE_PUMP_1,
RT5682_OSW_L_MASK | RT5682_OSW_R_MASK, 0);
snd_soc_component_update_bits(component, RT5682_CBJ_CTRL_1,
RT5682_TRIG_JD_MASK, RT5682_TRIG_JD_HIGH);
count = 0;
val = snd_soc_component_read(component, RT5682_CBJ_CTRL_2)
& RT5682_JACK_TYPE_MASK;
while (val == 0 && count < 50) {
usleep_range(10000, 15000);
val = snd_soc_component_read(component,
RT5682_CBJ_CTRL_2) & RT5682_JACK_TYPE_MASK;
count++;
}
switch (val) {
case 0x1:
case 0x2:
rt5682->jack_type = SND_JACK_HEADSET;
rt5682_enable_push_button_irq(component, true);
break;
default:
rt5682->jack_type = SND_JACK_HEADPHONE;
break;
}
snd_soc_component_update_bits(component,
RT5682_HP_CHARGE_PUMP_1,
RT5682_OSW_L_MASK | RT5682_OSW_R_MASK,
RT5682_OSW_L_EN | RT5682_OSW_R_EN);
snd_soc_component_update_bits(component, RT5682_MICBIAS_2,
RT5682_PWR_CLK25M_MASK | RT5682_PWR_CLK1M_MASK,
RT5682_PWR_CLK25M_PU | RT5682_PWR_CLK1M_PU);
} else {
rt5682_enable_push_button_irq(component, false);
snd_soc_component_update_bits(component, RT5682_CBJ_CTRL_1,
RT5682_TRIG_JD_MASK, RT5682_TRIG_JD_LOW);
if (!snd_soc_dapm_get_pin_status(dapm, "MICBIAS"))
snd_soc_component_update_bits(component,
RT5682_PWR_ANLG_1, RT5682_PWR_MB, 0);
if (!snd_soc_dapm_get_pin_status(dapm, "Vref2"))
snd_soc_component_update_bits(component,
RT5682_PWR_ANLG_1, RT5682_PWR_VREF2, 0);
snd_soc_component_update_bits(component, RT5682_PWR_ANLG_3,
RT5682_PWR_CBJ, 0);
snd_soc_component_update_bits(component, RT5682_MICBIAS_2,
RT5682_PWR_CLK25M_MASK | RT5682_PWR_CLK1M_MASK,
RT5682_PWR_CLK25M_PD | RT5682_PWR_CLK1M_PD);
rt5682->jack_type = 0;
}
dev_dbg(component->dev, "jack_type = %d\n", rt5682->jack_type);
return rt5682->jack_type;
}
EXPORT_SYMBOL_GPL(rt5682_headset_detect);
static int rt5682_set_jack_detect(struct snd_soc_component *component,
struct snd_soc_jack *hs_jack, void *data)
{
struct rt5682_priv *rt5682 = snd_soc_component_get_drvdata(component);
rt5682->hs_jack = hs_jack;
if (!hs_jack) {
regmap_update_bits(rt5682->regmap, RT5682_IRQ_CTRL_2,
RT5682_JD1_EN_MASK, RT5682_JD1_DIS);
regmap_update_bits(rt5682->regmap, RT5682_RC_CLK_CTRL,
RT5682_POW_JDH | RT5682_POW_JDL, 0);
cancel_delayed_work_sync(&rt5682->jack_detect_work);
return 0;
}
if (!rt5682->is_sdw) {
switch (rt5682->pdata.jd_src) {
case RT5682_JD1:
snd_soc_component_update_bits(component,
RT5682_CBJ_CTRL_2, RT5682_EXT_JD_SRC,
RT5682_EXT_JD_SRC_MANUAL);
snd_soc_component_write(component, RT5682_CBJ_CTRL_1,
0xd042);
snd_soc_component_update_bits(component,
RT5682_CBJ_CTRL_3, RT5682_CBJ_IN_BUF_EN,
RT5682_CBJ_IN_BUF_EN);
snd_soc_component_update_bits(component,
RT5682_SAR_IL_CMD_1, RT5682_SAR_POW_MASK,
RT5682_SAR_POW_EN);
regmap_update_bits(rt5682->regmap, RT5682_GPIO_CTRL_1,
RT5682_GP1_PIN_MASK, RT5682_GP1_PIN_IRQ);
regmap_update_bits(rt5682->regmap, RT5682_RC_CLK_CTRL,
RT5682_POW_IRQ | RT5682_POW_JDH |
RT5682_POW_ANA, RT5682_POW_IRQ |
RT5682_POW_JDH | RT5682_POW_ANA);
regmap_update_bits(rt5682->regmap, RT5682_PWR_ANLG_2,
RT5682_PWR_JDH, RT5682_PWR_JDH);
regmap_update_bits(rt5682->regmap, RT5682_IRQ_CTRL_2,
RT5682_JD1_EN_MASK | RT5682_JD1_POL_MASK,
RT5682_JD1_EN | RT5682_JD1_POL_NOR);
regmap_update_bits(rt5682->regmap, RT5682_4BTN_IL_CMD_4,
0x7f7f, (rt5682->pdata.btndet_delay << 8 |
rt5682->pdata.btndet_delay));
regmap_update_bits(rt5682->regmap, RT5682_4BTN_IL_CMD_5,
0x7f7f, (rt5682->pdata.btndet_delay << 8 |
rt5682->pdata.btndet_delay));
regmap_update_bits(rt5682->regmap, RT5682_4BTN_IL_CMD_6,
0x7f7f, (rt5682->pdata.btndet_delay << 8 |
rt5682->pdata.btndet_delay));
regmap_update_bits(rt5682->regmap, RT5682_4BTN_IL_CMD_7,
0x7f7f, (rt5682->pdata.btndet_delay << 8 |
rt5682->pdata.btndet_delay));
mod_delayed_work(system_power_efficient_wq,
&rt5682->jack_detect_work,
msecs_to_jiffies(250));
break;
case RT5682_JD_NULL:
regmap_update_bits(rt5682->regmap, RT5682_IRQ_CTRL_2,
RT5682_JD1_EN_MASK, RT5682_JD1_DIS);
regmap_update_bits(rt5682->regmap, RT5682_RC_CLK_CTRL,
RT5682_POW_JDH | RT5682_POW_JDL, 0);
break;
default:
dev_warn(component->dev, "Wrong JD source\n");
break;
}
}
return 0;
}
void rt5682_jack_detect_handler(struct work_struct *work)
{
struct rt5682_priv *rt5682 =
container_of(work, struct rt5682_priv, jack_detect_work.work);
int val, btn_type;
while (!rt5682->component)
usleep_range(10000, 15000);
while (!rt5682->component->card->instantiated)
usleep_range(10000, 15000);
mutex_lock(&rt5682->calibrate_mutex);
val = snd_soc_component_read(rt5682->component, RT5682_AJD1_CTRL)
& RT5682_JDH_RS_MASK;
if (!val) {
/* jack in */
if (rt5682->jack_type == 0) {
/* jack was out, report jack type */
rt5682->jack_type =
rt5682_headset_detect(rt5682->component, 1);
} else if ((rt5682->jack_type & SND_JACK_HEADSET) ==
SND_JACK_HEADSET) {
/* jack is already in, report button event */
rt5682->jack_type = SND_JACK_HEADSET;
btn_type = rt5682_button_detect(rt5682->component);
/**
* rt5682 can report three kinds of button behavior,
* one click, double click and hold. However,
* currently we will report button pressed/released
* event. So all the three button behaviors are
* treated as button pressed.
*/
switch (btn_type) {
case 0x8000:
case 0x4000:
case 0x2000:
rt5682->jack_type |= SND_JACK_BTN_0;
break;
case 0x1000:
case 0x0800:
case 0x0400:
rt5682->jack_type |= SND_JACK_BTN_1;
break;
case 0x0200:
case 0x0100:
case 0x0080:
rt5682->jack_type |= SND_JACK_BTN_2;
break;
case 0x0040:
case 0x0020:
case 0x0010:
rt5682->jack_type |= SND_JACK_BTN_3;
break;
case 0x0000: /* unpressed */
break;
default:
dev_err(rt5682->component->dev,
"Unexpected button code 0x%04x\n",
btn_type);
break;
}
}
} else {
/* jack out */
rt5682->jack_type = rt5682_headset_detect(rt5682->component, 0);
}
snd_soc_jack_report(rt5682->hs_jack, rt5682->jack_type,
SND_JACK_HEADSET |
SND_JACK_BTN_0 | SND_JACK_BTN_1 |
SND_JACK_BTN_2 | SND_JACK_BTN_3);
if (!rt5682->is_sdw) {
if (rt5682->jack_type & (SND_JACK_BTN_0 | SND_JACK_BTN_1 |
SND_JACK_BTN_2 | SND_JACK_BTN_3))
schedule_delayed_work(&rt5682->jd_check_work, 0);
else
cancel_delayed_work_sync(&rt5682->jd_check_work);
}
mutex_unlock(&rt5682->calibrate_mutex);
}
EXPORT_SYMBOL_GPL(rt5682_jack_detect_handler);
static const struct snd_kcontrol_new rt5682_snd_controls[] = {
/* DAC Digital Volume */
SOC_DOUBLE_TLV("DAC1 Playback Volume", RT5682_DAC1_DIG_VOL,
RT5682_L_VOL_SFT + 1, RT5682_R_VOL_SFT + 1, 87, 0, dac_vol_tlv),
/* IN Boost Volume */
SOC_SINGLE_TLV("CBJ Boost Volume", RT5682_CBJ_BST_CTRL,
RT5682_BST_CBJ_SFT, 8, 0, bst_tlv),
/* ADC Digital Volume Control */
SOC_DOUBLE("STO1 ADC Capture Switch", RT5682_STO1_ADC_DIG_VOL,
RT5682_L_MUTE_SFT, RT5682_R_MUTE_SFT, 1, 1),
SOC_DOUBLE_TLV("STO1 ADC Capture Volume", RT5682_STO1_ADC_DIG_VOL,
RT5682_L_VOL_SFT + 1, RT5682_R_VOL_SFT + 1, 63, 0, adc_vol_tlv),
/* ADC Boost Volume Control */
SOC_DOUBLE_TLV("STO1 ADC Boost Gain Volume", RT5682_STO1_ADC_BOOST,
RT5682_STO1_ADC_L_BST_SFT, RT5682_STO1_ADC_R_BST_SFT,
3, 0, adc_bst_tlv),
};
static int rt5682_div_sel(struct rt5682_priv *rt5682,
int target, const int div[], int size)
{
int i;
if (rt5682->sysclk < target) {
dev_err(rt5682->component->dev,
"sysclk rate %d is too low\n", rt5682->sysclk);
return 0;
}
for (i = 0; i < size - 1; i++) {
dev_dbg(rt5682->component->dev, "div[%d]=%d\n", i, div[i]);
if (target * div[i] == rt5682->sysclk)
return i;
if (target * div[i + 1] > rt5682->sysclk) {
dev_dbg(rt5682->component->dev,
"can't find div for sysclk %d\n",
rt5682->sysclk);
return i;
}
}
if (target * div[i] < rt5682->sysclk)
dev_err(rt5682->component->dev,
"sysclk rate %d is too high\n", rt5682->sysclk);
return size - 1;
}
/**
* set_dmic_clk - Set parameter of dmic.
*
* @w: DAPM widget.
* @kcontrol: The kcontrol of this widget.
* @event: Event id.
*
* Choose dmic clock between 1MHz and 3MHz.
* It is better for clock to approximate 3MHz.
*/
static int set_dmic_clk(struct snd_soc_dapm_widget *w,
struct snd_kcontrol *kcontrol, int event)
{
struct snd_soc_component *component =
snd_soc_dapm_to_component(w->dapm);
struct rt5682_priv *rt5682 = snd_soc_component_get_drvdata(component);
int idx = -EINVAL, dmic_clk_rate = 3072000;
static const int div[] = {2, 4, 6, 8, 12, 16, 24, 32, 48, 64, 96, 128};
if (rt5682->pdata.dmic_clk_rate)
dmic_clk_rate = rt5682->pdata.dmic_clk_rate;
idx = rt5682_div_sel(rt5682, dmic_clk_rate, div, ARRAY_SIZE(div));
snd_soc_component_update_bits(component, RT5682_DMIC_CTRL_1,
RT5682_DMIC_CLK_MASK, idx << RT5682_DMIC_CLK_SFT);
return 0;
}
static int set_filter_clk(struct snd_soc_dapm_widget *w,
struct snd_kcontrol *kcontrol, int event)
{
struct snd_soc_component *component =
snd_soc_dapm_to_component(w->dapm);
struct rt5682_priv *rt5682 = snd_soc_component_get_drvdata(component);
int ref, val, reg, idx = -EINVAL;
static const int div_f[] = {1, 2, 3, 4, 6, 8, 12, 16, 24, 32, 48};
static const int div_o[] = {1, 2, 4, 6, 8, 12, 16, 24, 32, 48};
if (rt5682->is_sdw)
return 0;
val = snd_soc_component_read(component, RT5682_GPIO_CTRL_1) &
RT5682_GP4_PIN_MASK;
if (w->shift == RT5682_PWR_ADC_S1F_BIT &&
val == RT5682_GP4_PIN_ADCDAT2)
ref = 256 * rt5682->lrck[RT5682_AIF2];
else
ref = 256 * rt5682->lrck[RT5682_AIF1];
idx = rt5682_div_sel(rt5682, ref, div_f, ARRAY_SIZE(div_f));
if (w->shift == RT5682_PWR_ADC_S1F_BIT)
reg = RT5682_PLL_TRACK_3;
else
reg = RT5682_PLL_TRACK_2;
snd_soc_component_update_bits(component, reg,
RT5682_FILTER_CLK_DIV_MASK, idx << RT5682_FILTER_CLK_DIV_SFT);
/* select over sample rate */
for (idx = 0; idx < ARRAY_SIZE(div_o); idx++) {
if (rt5682->sysclk <= 12288000 * div_o[idx])
break;
}
snd_soc_component_update_bits(component, RT5682_ADDA_CLK_1,
RT5682_ADC_OSR_MASK | RT5682_DAC_OSR_MASK,
(idx << RT5682_ADC_OSR_SFT) | (idx << RT5682_DAC_OSR_SFT));
return 0;
}
static int is_sys_clk_from_pll1(struct snd_soc_dapm_widget *w,
struct snd_soc_dapm_widget *sink)
{
unsigned int val;
struct snd_soc_component *component =
snd_soc_dapm_to_component(w->dapm);
val = snd_soc_component_read(component, RT5682_GLB_CLK);
val &= RT5682_SCLK_SRC_MASK;
if (val == RT5682_SCLK_SRC_PLL1)
return 1;
else
return 0;
}
static int is_sys_clk_from_pll2(struct snd_soc_dapm_widget *w,
struct snd_soc_dapm_widget *sink)
{
unsigned int val;
struct snd_soc_component *component =
snd_soc_dapm_to_component(w->dapm);
val = snd_soc_component_read(component, RT5682_GLB_CLK);
val &= RT5682_SCLK_SRC_MASK;
if (val == RT5682_SCLK_SRC_PLL2)
return 1;
else
return 0;
}
static int is_using_asrc(struct snd_soc_dapm_widget *w,
struct snd_soc_dapm_widget *sink)
{
unsigned int reg, shift, val;
struct snd_soc_component *component =
snd_soc_dapm_to_component(w->dapm);
switch (w->shift) {
case RT5682_ADC_STO1_ASRC_SFT:
reg = RT5682_PLL_TRACK_3;
shift = RT5682_FILTER_CLK_SEL_SFT;
break;
case RT5682_DAC_STO1_ASRC_SFT:
reg = RT5682_PLL_TRACK_2;
shift = RT5682_FILTER_CLK_SEL_SFT;
break;
default:
return 0;
}
val = (snd_soc_component_read(component, reg) >> shift) & 0xf;
switch (val) {
case RT5682_CLK_SEL_I2S1_ASRC:
case RT5682_CLK_SEL_I2S2_ASRC:
return 1;
default:
return 0;
}
}
/* Digital Mixer */
static const struct snd_kcontrol_new rt5682_sto1_adc_l_mix[] = {
SOC_DAPM_SINGLE("ADC1 Switch", RT5682_STO1_ADC_MIXER,
RT5682_M_STO1_ADC_L1_SFT, 1, 1),
SOC_DAPM_SINGLE("ADC2 Switch", RT5682_STO1_ADC_MIXER,
RT5682_M_STO1_ADC_L2_SFT, 1, 1),
};
static const struct snd_kcontrol_new rt5682_sto1_adc_r_mix[] = {
SOC_DAPM_SINGLE("ADC1 Switch", RT5682_STO1_ADC_MIXER,
RT5682_M_STO1_ADC_R1_SFT, 1, 1),
SOC_DAPM_SINGLE("ADC2 Switch", RT5682_STO1_ADC_MIXER,
RT5682_M_STO1_ADC_R2_SFT, 1, 1),
};
static const struct snd_kcontrol_new rt5682_dac_l_mix[] = {
SOC_DAPM_SINGLE("Stereo ADC Switch", RT5682_AD_DA_MIXER,
RT5682_M_ADCMIX_L_SFT, 1, 1),
SOC_DAPM_SINGLE("DAC1 Switch", RT5682_AD_DA_MIXER,
RT5682_M_DAC1_L_SFT, 1, 1),
};
static const struct snd_kcontrol_new rt5682_dac_r_mix[] = {
SOC_DAPM_SINGLE("Stereo ADC Switch", RT5682_AD_DA_MIXER,
RT5682_M_ADCMIX_R_SFT, 1, 1),
SOC_DAPM_SINGLE("DAC1 Switch", RT5682_AD_DA_MIXER,
RT5682_M_DAC1_R_SFT, 1, 1),
};
static const struct snd_kcontrol_new rt5682_sto1_dac_l_mix[] = {
SOC_DAPM_SINGLE("DAC L1 Switch", RT5682_STO1_DAC_MIXER,
RT5682_M_DAC_L1_STO_L_SFT, 1, 1),
SOC_DAPM_SINGLE("DAC R1 Switch", RT5682_STO1_DAC_MIXER,
RT5682_M_DAC_R1_STO_L_SFT, 1, 1),
};
static const struct snd_kcontrol_new rt5682_sto1_dac_r_mix[] = {
SOC_DAPM_SINGLE("DAC L1 Switch", RT5682_STO1_DAC_MIXER,
RT5682_M_DAC_L1_STO_R_SFT, 1, 1),
SOC_DAPM_SINGLE("DAC R1 Switch", RT5682_STO1_DAC_MIXER,
RT5682_M_DAC_R1_STO_R_SFT, 1, 1),
};
/* Analog Input Mixer */
static const struct snd_kcontrol_new rt5682_rec1_l_mix[] = {
SOC_DAPM_SINGLE("CBJ Switch", RT5682_REC_MIXER,
RT5682_M_CBJ_RM1_L_SFT, 1, 1),
};
/* STO1 ADC1 Source */
/* MX-26 [13] [5] */
static const char * const rt5682_sto1_adc1_src[] = {
"DAC MIX", "ADC"
};
static SOC_ENUM_SINGLE_DECL(
rt5682_sto1_adc1l_enum, RT5682_STO1_ADC_MIXER,
RT5682_STO1_ADC1L_SRC_SFT, rt5682_sto1_adc1_src);
static const struct snd_kcontrol_new rt5682_sto1_adc1l_mux =
SOC_DAPM_ENUM("Stereo1 ADC1L Source", rt5682_sto1_adc1l_enum);
static SOC_ENUM_SINGLE_DECL(
rt5682_sto1_adc1r_enum, RT5682_STO1_ADC_MIXER,
RT5682_STO1_ADC1R_SRC_SFT, rt5682_sto1_adc1_src);
static const struct snd_kcontrol_new rt5682_sto1_adc1r_mux =
SOC_DAPM_ENUM("Stereo1 ADC1L Source", rt5682_sto1_adc1r_enum);
/* STO1 ADC Source */
/* MX-26 [11:10] [3:2] */
static const char * const rt5682_sto1_adc_src[] = {
"ADC1 L", "ADC1 R"
};
static SOC_ENUM_SINGLE_DECL(
rt5682_sto1_adcl_enum, RT5682_STO1_ADC_MIXER,
RT5682_STO1_ADCL_SRC_SFT, rt5682_sto1_adc_src);
static const struct snd_kcontrol_new rt5682_sto1_adcl_mux =
SOC_DAPM_ENUM("Stereo1 ADCL Source", rt5682_sto1_adcl_enum);
static SOC_ENUM_SINGLE_DECL(
rt5682_sto1_adcr_enum, RT5682_STO1_ADC_MIXER,
RT5682_STO1_ADCR_SRC_SFT, rt5682_sto1_adc_src);
static const struct snd_kcontrol_new rt5682_sto1_adcr_mux =
SOC_DAPM_ENUM("Stereo1 ADCR Source", rt5682_sto1_adcr_enum);
/* STO1 ADC2 Source */
/* MX-26 [12] [4] */
static const char * const rt5682_sto1_adc2_src[] = {
"DAC MIX", "DMIC"
};
static SOC_ENUM_SINGLE_DECL(
rt5682_sto1_adc2l_enum, RT5682_STO1_ADC_MIXER,
RT5682_STO1_ADC2L_SRC_SFT, rt5682_sto1_adc2_src);
static const struct snd_kcontrol_new rt5682_sto1_adc2l_mux =
SOC_DAPM_ENUM("Stereo1 ADC2L Source", rt5682_sto1_adc2l_enum);
static SOC_ENUM_SINGLE_DECL(
rt5682_sto1_adc2r_enum, RT5682_STO1_ADC_MIXER,
RT5682_STO1_ADC2R_SRC_SFT, rt5682_sto1_adc2_src);
static const struct snd_kcontrol_new rt5682_sto1_adc2r_mux =
SOC_DAPM_ENUM("Stereo1 ADC2R Source", rt5682_sto1_adc2r_enum);
/* MX-79 [6:4] I2S1 ADC data location */
static const unsigned int rt5682_if1_adc_slot_values[] = {
0,
2,
4,
6,
};
static const char * const rt5682_if1_adc_slot_src[] = {
"Slot 0", "Slot 2", "Slot 4", "Slot 6"
};
static SOC_VALUE_ENUM_SINGLE_DECL(rt5682_if1_adc_slot_enum,
RT5682_TDM_CTRL, RT5682_TDM_ADC_LCA_SFT, RT5682_TDM_ADC_LCA_MASK,
rt5682_if1_adc_slot_src, rt5682_if1_adc_slot_values);
static const struct snd_kcontrol_new rt5682_if1_adc_slot_mux =
SOC_DAPM_ENUM("IF1 ADC Slot location", rt5682_if1_adc_slot_enum);
/* Analog DAC L1 Source, Analog DAC R1 Source*/
/* MX-2B [4], MX-2B [0]*/
static const char * const rt5682_alg_dac1_src[] = {
"Stereo1 DAC Mixer", "DAC1"
};
static SOC_ENUM_SINGLE_DECL(
rt5682_alg_dac_l1_enum, RT5682_A_DAC1_MUX,
RT5682_A_DACL1_SFT, rt5682_alg_dac1_src);
static const struct snd_kcontrol_new rt5682_alg_dac_l1_mux =
SOC_DAPM_ENUM("Analog DAC L1 Source", rt5682_alg_dac_l1_enum);
static SOC_ENUM_SINGLE_DECL(
rt5682_alg_dac_r1_enum, RT5682_A_DAC1_MUX,
RT5682_A_DACR1_SFT, rt5682_alg_dac1_src);
static const struct snd_kcontrol_new rt5682_alg_dac_r1_mux =
SOC_DAPM_ENUM("Analog DAC R1 Source", rt5682_alg_dac_r1_enum);
/* Out Switch */
static const struct snd_kcontrol_new hpol_switch =
SOC_DAPM_SINGLE_AUTODISABLE("Switch", RT5682_HP_CTRL_1,
RT5682_L_MUTE_SFT, 1, 1);
static const struct snd_kcontrol_new hpor_switch =
SOC_DAPM_SINGLE_AUTODISABLE("Switch", RT5682_HP_CTRL_1,
RT5682_R_MUTE_SFT, 1, 1);
static int rt5682_hp_event(struct snd_soc_dapm_widget *w,
struct snd_kcontrol *kcontrol, int event)
{
struct snd_soc_component *component =
snd_soc_dapm_to_component(w->dapm);
switch (event) {
case SND_SOC_DAPM_PRE_PMU:
snd_soc_component_write(component,
RT5682_HP_LOGIC_CTRL_2, 0x0012);
snd_soc_component_write(component,
RT5682_HP_CTRL_2, 0x6000);
snd_soc_component_update_bits(component,
RT5682_DEPOP_1, 0x60, 0x60);
snd_soc_component_update_bits(component,
RT5682_DAC_ADC_DIG_VOL1, 0x00c0, 0x0080);
break;
case SND_SOC_DAPM_POST_PMD:
snd_soc_component_update_bits(component,
RT5682_DEPOP_1, 0x60, 0x0);
snd_soc_component_write(component,
RT5682_HP_CTRL_2, 0x0000);
snd_soc_component_update_bits(component,
RT5682_DAC_ADC_DIG_VOL1, 0x00c0, 0x0000);
break;
}
return 0;
}
static int set_dmic_power(struct snd_soc_dapm_widget *w,
struct snd_kcontrol *kcontrol, int event)
{
struct snd_soc_component *component =
snd_soc_dapm_to_component(w->dapm);
struct rt5682_priv *rt5682 = snd_soc_component_get_drvdata(component);
unsigned int delay = 50;
if (rt5682->pdata.dmic_delay)
delay = rt5682->pdata.dmic_delay;
switch (event) {
case SND_SOC_DAPM_POST_PMU:
/*Add delay to avoid pop noise*/
msleep(delay);
break;
}
return 0;
}
static int rt5682_set_verf(struct snd_soc_dapm_widget *w,
struct snd_kcontrol *kcontrol, int event)
{
struct snd_soc_component *component =
snd_soc_dapm_to_component(w->dapm);
switch (event) {
case SND_SOC_DAPM_PRE_PMU:
switch (w->shift) {
case RT5682_PWR_VREF1_BIT:
snd_soc_component_update_bits(component,
RT5682_PWR_ANLG_1, RT5682_PWR_FV1, 0);
break;
case RT5682_PWR_VREF2_BIT:
snd_soc_component_update_bits(component,
RT5682_PWR_ANLG_1, RT5682_PWR_FV2, 0);
break;
}
break;
case SND_SOC_DAPM_POST_PMU:
usleep_range(15000, 20000);
switch (w->shift) {
case RT5682_PWR_VREF1_BIT:
snd_soc_component_update_bits(component,
RT5682_PWR_ANLG_1, RT5682_PWR_FV1,
RT5682_PWR_FV1);
break;
case RT5682_PWR_VREF2_BIT:
snd_soc_component_update_bits(component,
RT5682_PWR_ANLG_1, RT5682_PWR_FV2,
RT5682_PWR_FV2);
break;
}
break;
}
return 0;
}
static const unsigned int rt5682_adcdat_pin_values[] = {
1,
3,
};
static const char * const rt5682_adcdat_pin_select[] = {
"ADCDAT1",
"ADCDAT2",
};
static SOC_VALUE_ENUM_SINGLE_DECL(rt5682_adcdat_pin_enum,
RT5682_GPIO_CTRL_1, RT5682_GP4_PIN_SFT, RT5682_GP4_PIN_MASK,
rt5682_adcdat_pin_select, rt5682_adcdat_pin_values);
static const struct snd_kcontrol_new rt5682_adcdat_pin_ctrl =
SOC_DAPM_ENUM("ADCDAT", rt5682_adcdat_pin_enum);
static const struct snd_soc_dapm_widget rt5682_dapm_widgets[] = {
SND_SOC_DAPM_SUPPLY("LDO2", RT5682_PWR_ANLG_3, RT5682_PWR_LDO2_BIT,
0, NULL, 0),
SND_SOC_DAPM_SUPPLY("PLL1", RT5682_PWR_ANLG_3, RT5682_PWR_PLL_BIT,
0, NULL, 0),
SND_SOC_DAPM_SUPPLY("PLL2B", RT5682_PWR_ANLG_3, RT5682_PWR_PLL2B_BIT,
0, NULL, 0),
SND_SOC_DAPM_SUPPLY("PLL2F", RT5682_PWR_ANLG_3, RT5682_PWR_PLL2F_BIT,
0, set_filter_clk, SND_SOC_DAPM_PRE_PMU),
SND_SOC_DAPM_SUPPLY("Vref1", RT5682_PWR_ANLG_1, RT5682_PWR_VREF1_BIT, 0,
rt5682_set_verf, SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMU),
SND_SOC_DAPM_SUPPLY("Vref2", SND_SOC_NOPM, 0, 0, NULL, 0),
SND_SOC_DAPM_SUPPLY("MICBIAS", SND_SOC_NOPM, 0, 0, NULL, 0),
/* ASRC */
SND_SOC_DAPM_SUPPLY_S("DAC STO1 ASRC", 1, RT5682_PLL_TRACK_1,
RT5682_DAC_STO1_ASRC_SFT, 0, NULL, 0),
SND_SOC_DAPM_SUPPLY_S("ADC STO1 ASRC", 1, RT5682_PLL_TRACK_1,
RT5682_ADC_STO1_ASRC_SFT, 0, NULL, 0),
SND_SOC_DAPM_SUPPLY_S("AD ASRC", 1, RT5682_PLL_TRACK_1,
RT5682_AD_ASRC_SFT, 0, NULL, 0),
SND_SOC_DAPM_SUPPLY_S("DA ASRC", 1, RT5682_PLL_TRACK_1,
RT5682_DA_ASRC_SFT, 0, NULL, 0),
SND_SOC_DAPM_SUPPLY_S("DMIC ASRC", 1, RT5682_PLL_TRACK_1,
RT5682_DMIC_ASRC_SFT, 0, NULL, 0),
/* Input Side */
SND_SOC_DAPM_SUPPLY("MICBIAS1", RT5682_PWR_ANLG_2, RT5682_PWR_MB1_BIT,
0, NULL, 0),
SND_SOC_DAPM_SUPPLY("MICBIAS2", RT5682_PWR_ANLG_2, RT5682_PWR_MB2_BIT,
0, NULL, 0),
/* Input Lines */
SND_SOC_DAPM_INPUT("DMIC L1"),
SND_SOC_DAPM_INPUT("DMIC R1"),
SND_SOC_DAPM_INPUT("IN1P"),
SND_SOC_DAPM_SUPPLY("DMIC CLK", SND_SOC_NOPM, 0, 0,
set_dmic_clk, SND_SOC_DAPM_PRE_PMU),
SND_SOC_DAPM_SUPPLY("DMIC1 Power", RT5682_DMIC_CTRL_1,
RT5682_DMIC_1_EN_SFT, 0, set_dmic_power, SND_SOC_DAPM_POST_PMU),
/* Boost */
SND_SOC_DAPM_PGA("BST1 CBJ", SND_SOC_NOPM,
0, 0, NULL, 0),
/* REC Mixer */
SND_SOC_DAPM_MIXER("RECMIX1L", SND_SOC_NOPM, 0, 0, rt5682_rec1_l_mix,
ARRAY_SIZE(rt5682_rec1_l_mix)),
SND_SOC_DAPM_SUPPLY("RECMIX1L Power", RT5682_PWR_ANLG_2,
RT5682_PWR_RM1_L_BIT, 0, NULL, 0),
/* ADCs */
SND_SOC_DAPM_ADC("ADC1 L", NULL, SND_SOC_NOPM, 0, 0),
SND_SOC_DAPM_ADC("ADC1 R", NULL, SND_SOC_NOPM, 0, 0),
SND_SOC_DAPM_SUPPLY("ADC1 L Power", RT5682_PWR_DIG_1,
RT5682_PWR_ADC_L1_BIT, 0, NULL, 0),
SND_SOC_DAPM_SUPPLY("ADC1 R Power", RT5682_PWR_DIG_1,
RT5682_PWR_ADC_R1_BIT, 0, NULL, 0),
SND_SOC_DAPM_SUPPLY("ADC1 clock", RT5682_CHOP_ADC,
RT5682_CKGEN_ADC1_SFT, 0, NULL, 0),
/* ADC Mux */
SND_SOC_DAPM_MUX("Stereo1 ADC L1 Mux", SND_SOC_NOPM, 0, 0,
&rt5682_sto1_adc1l_mux),
SND_SOC_DAPM_MUX("Stereo1 ADC R1 Mux", SND_SOC_NOPM, 0, 0,
&rt5682_sto1_adc1r_mux),
SND_SOC_DAPM_MUX("Stereo1 ADC L2 Mux", SND_SOC_NOPM, 0, 0,
&rt5682_sto1_adc2l_mux),
SND_SOC_DAPM_MUX("Stereo1 ADC R2 Mux", SND_SOC_NOPM, 0, 0,
&rt5682_sto1_adc2r_mux),
SND_SOC_DAPM_MUX("Stereo1 ADC L Mux", SND_SOC_NOPM, 0, 0,
&rt5682_sto1_adcl_mux),
SND_SOC_DAPM_MUX("Stereo1 ADC R Mux", SND_SOC_NOPM, 0, 0,
&rt5682_sto1_adcr_mux),
SND_SOC_DAPM_MUX("IF1_ADC Mux", SND_SOC_NOPM, 0, 0,
&rt5682_if1_adc_slot_mux),
/* ADC Mixer */
SND_SOC_DAPM_SUPPLY("ADC Stereo1 Filter", RT5682_PWR_DIG_2,
RT5682_PWR_ADC_S1F_BIT, 0, set_filter_clk,
SND_SOC_DAPM_PRE_PMU),
SND_SOC_DAPM_MIXER("Stereo1 ADC MIXL", RT5682_STO1_ADC_DIG_VOL,
RT5682_L_MUTE_SFT, 1, rt5682_sto1_adc_l_mix,
ARRAY_SIZE(rt5682_sto1_adc_l_mix)),
SND_SOC_DAPM_MIXER("Stereo1 ADC MIXR", RT5682_STO1_ADC_DIG_VOL,
RT5682_R_MUTE_SFT, 1, rt5682_sto1_adc_r_mix,
ARRAY_SIZE(rt5682_sto1_adc_r_mix)),
SND_SOC_DAPM_SUPPLY("BTN Detection Mode", RT5682_SAR_IL_CMD_1,
14, 1, NULL, 0),
/* ADC PGA */
SND_SOC_DAPM_PGA("Stereo1 ADC MIX", SND_SOC_NOPM, 0, 0, NULL, 0),
/* Digital Interface */
SND_SOC_DAPM_SUPPLY("I2S1", RT5682_PWR_DIG_1, RT5682_PWR_I2S1_BIT,
0, NULL, 0),
SND_SOC_DAPM_SUPPLY("I2S2", RT5682_PWR_DIG_1, RT5682_PWR_I2S2_BIT,
0, NULL, 0),
SND_SOC_DAPM_PGA("IF1 DAC1", SND_SOC_NOPM, 0, 0, NULL, 0),
SND_SOC_DAPM_PGA("IF1 DAC1 L", SND_SOC_NOPM, 0, 0, NULL, 0),
SND_SOC_DAPM_PGA("IF1 DAC1 R", SND_SOC_NOPM, 0, 0, NULL, 0),
SND_SOC_DAPM_PGA("SOUND DAC L", SND_SOC_NOPM, 0, 0, NULL, 0),
SND_SOC_DAPM_PGA("SOUND DAC R", SND_SOC_NOPM, 0, 0, NULL, 0),
/* Digital Interface Select */
SND_SOC_DAPM_MUX("IF1 01 ADC Swap Mux", SND_SOC_NOPM, 0, 0,
&rt5682_if1_01_adc_swap_mux),
SND_SOC_DAPM_MUX("IF1 23 ADC Swap Mux", SND_SOC_NOPM, 0, 0,
&rt5682_if1_23_adc_swap_mux),
SND_SOC_DAPM_MUX("IF1 45 ADC Swap Mux", SND_SOC_NOPM, 0, 0,
&rt5682_if1_45_adc_swap_mux),
SND_SOC_DAPM_MUX("IF1 67 ADC Swap Mux", SND_SOC_NOPM, 0, 0,
&rt5682_if1_67_adc_swap_mux),
SND_SOC_DAPM_MUX("IF2 ADC Swap Mux", SND_SOC_NOPM, 0, 0,
&rt5682_if2_adc_swap_mux),
SND_SOC_DAPM_MUX("ADCDAT Mux", SND_SOC_NOPM, 0, 0,
&rt5682_adcdat_pin_ctrl),
SND_SOC_DAPM_MUX("DAC L Mux", SND_SOC_NOPM, 0, 0,
&rt5682_dac_l_mux),
SND_SOC_DAPM_MUX("DAC R Mux", SND_SOC_NOPM, 0, 0,
&rt5682_dac_r_mux),
/* Audio Interface */
SND_SOC_DAPM_AIF_OUT("AIF1TX", "AIF1 Capture", 0,
RT5682_I2S1_SDP, RT5682_SEL_ADCDAT_SFT, 1),
SND_SOC_DAPM_AIF_OUT("AIF2TX", "AIF2 Capture", 0,
RT5682_I2S2_SDP, RT5682_I2S2_PIN_CFG_SFT, 1),
SND_SOC_DAPM_AIF_IN("AIF1RX", "AIF1 Playback", 0, SND_SOC_NOPM, 0, 0),
SND_SOC_DAPM_AIF_IN("SDWRX", "SDW Playback", 0, SND_SOC_NOPM, 0, 0),
SND_SOC_DAPM_AIF_OUT("SDWTX", "SDW Capture", 0, SND_SOC_NOPM, 0, 0),
/* Output Side */
/* DAC mixer before sound effect */
SND_SOC_DAPM_MIXER("DAC1 MIXL", SND_SOC_NOPM, 0, 0,
rt5682_dac_l_mix, ARRAY_SIZE(rt5682_dac_l_mix)),
SND_SOC_DAPM_MIXER("DAC1 MIXR", SND_SOC_NOPM, 0, 0,
rt5682_dac_r_mix, ARRAY_SIZE(rt5682_dac_r_mix)),
/* DAC channel Mux */
SND_SOC_DAPM_MUX("DAC L1 Source", SND_SOC_NOPM, 0, 0,
&rt5682_alg_dac_l1_mux),
SND_SOC_DAPM_MUX("DAC R1 Source", SND_SOC_NOPM, 0, 0,
&rt5682_alg_dac_r1_mux),
/* DAC Mixer */
SND_SOC_DAPM_SUPPLY("DAC Stereo1 Filter", RT5682_PWR_DIG_2,
RT5682_PWR_DAC_S1F_BIT, 0, set_filter_clk,
SND_SOC_DAPM_PRE_PMU),
SND_SOC_DAPM_MIXER("Stereo1 DAC MIXL", SND_SOC_NOPM, 0, 0,
rt5682_sto1_dac_l_mix, ARRAY_SIZE(rt5682_sto1_dac_l_mix)),
SND_SOC_DAPM_MIXER("Stereo1 DAC MIXR", SND_SOC_NOPM, 0, 0,
rt5682_sto1_dac_r_mix, ARRAY_SIZE(rt5682_sto1_dac_r_mix)),
/* DACs */
SND_SOC_DAPM_DAC("DAC L1", NULL, RT5682_PWR_DIG_1,
RT5682_PWR_DAC_L1_BIT, 0),
SND_SOC_DAPM_DAC("DAC R1", NULL, RT5682_PWR_DIG_1,
RT5682_PWR_DAC_R1_BIT, 0),
SND_SOC_DAPM_SUPPLY_S("DAC 1 Clock", 3, RT5682_CHOP_DAC,
RT5682_CKGEN_DAC1_SFT, 0, NULL, 0),
/* HPO */
SND_SOC_DAPM_PGA_S("HP Amp", 1, SND_SOC_NOPM, 0, 0, rt5682_hp_event,
SND_SOC_DAPM_POST_PMD | SND_SOC_DAPM_PRE_PMU),
SND_SOC_DAPM_SUPPLY("HP Amp L", RT5682_PWR_ANLG_1,
RT5682_PWR_HA_L_BIT, 0, NULL, 0),
SND_SOC_DAPM_SUPPLY("HP Amp R", RT5682_PWR_ANLG_1,
RT5682_PWR_HA_R_BIT, 0, NULL, 0),
SND_SOC_DAPM_SUPPLY_S("Charge Pump", 1, RT5682_DEPOP_1,
RT5682_PUMP_EN_SFT, 0, NULL, 0),
SND_SOC_DAPM_SUPPLY_S("Capless", 2, RT5682_DEPOP_1,
RT5682_CAPLESS_EN_SFT, 0, NULL, 0),
SND_SOC_DAPM_SWITCH("HPOL Playback", SND_SOC_NOPM, 0, 0,
&hpol_switch),
SND_SOC_DAPM_SWITCH("HPOR Playback", SND_SOC_NOPM, 0, 0,
&hpor_switch),
/* CLK DET */
SND_SOC_DAPM_SUPPLY("CLKDET SYS", RT5682_CLK_DET,
RT5682_SYS_CLK_DET_SFT, 0, NULL, 0),
SND_SOC_DAPM_SUPPLY("CLKDET PLL1", RT5682_CLK_DET,
RT5682_PLL1_CLK_DET_SFT, 0, NULL, 0),
SND_SOC_DAPM_SUPPLY("CLKDET PLL2", RT5682_CLK_DET,
RT5682_PLL2_CLK_DET_SFT, 0, NULL, 0),
SND_SOC_DAPM_SUPPLY("CLKDET", RT5682_CLK_DET,
RT5682_POW_CLK_DET_SFT, 0, NULL, 0),
/* Output Lines */
SND_SOC_DAPM_OUTPUT("HPOL"),
SND_SOC_DAPM_OUTPUT("HPOR"),
};
static const struct snd_soc_dapm_route rt5682_dapm_routes[] = {
/*PLL*/
{"ADC Stereo1 Filter", NULL, "PLL1", is_sys_clk_from_pll1},
{"ADC Stereo1 Filter", NULL, "PLL2B", is_sys_clk_from_pll2},
{"ADC Stereo1 Filter", NULL, "PLL2F", is_sys_clk_from_pll2},
{"DAC Stereo1 Filter", NULL, "PLL1", is_sys_clk_from_pll1},
{"DAC Stereo1 Filter", NULL, "PLL2B", is_sys_clk_from_pll2},
{"DAC Stereo1 Filter", NULL, "PLL2F", is_sys_clk_from_pll2},
/*ASRC*/
{"ADC Stereo1 Filter", NULL, "ADC STO1 ASRC", is_using_asrc},
{"DAC Stereo1 Filter", NULL, "DAC STO1 ASRC", is_using_asrc},
{"ADC STO1 ASRC", NULL, "AD ASRC"},
{"ADC STO1 ASRC", NULL, "DA ASRC"},
{"ADC STO1 ASRC", NULL, "CLKDET"},
{"DAC STO1 ASRC", NULL, "AD ASRC"},
{"DAC STO1 ASRC", NULL, "DA ASRC"},
{"DAC STO1 ASRC", NULL, "CLKDET"},
/*Vref*/
{"MICBIAS1", NULL, "Vref1"},
{"MICBIAS2", NULL, "Vref1"},
{"CLKDET SYS", NULL, "CLKDET"},
{"IN1P", NULL, "LDO2"},
{"BST1 CBJ", NULL, "IN1P"},
{"RECMIX1L", "CBJ Switch", "BST1 CBJ"},
{"RECMIX1L", NULL, "RECMIX1L Power"},
{"ADC1 L", NULL, "RECMIX1L"},
{"ADC1 L", NULL, "ADC1 L Power"},
{"ADC1 L", NULL, "ADC1 clock"},
{"DMIC L1", NULL, "DMIC CLK"},
{"DMIC L1", NULL, "DMIC1 Power"},
{"DMIC R1", NULL, "DMIC CLK"},
{"DMIC R1", NULL, "DMIC1 Power"},
{"DMIC CLK", NULL, "DMIC ASRC"},
{"Stereo1 ADC L Mux", "ADC1 L", "ADC1 L"},
{"Stereo1 ADC L Mux", "ADC1 R", "ADC1 R"},
{"Stereo1 ADC R Mux", "ADC1 L", "ADC1 L"},
{"Stereo1 ADC R Mux", "ADC1 R", "ADC1 R"},
{"Stereo1 ADC L1 Mux", "ADC", "Stereo1 ADC L Mux"},
{"Stereo1 ADC L1 Mux", "DAC MIX", "Stereo1 DAC MIXL"},
{"Stereo1 ADC L2 Mux", "DMIC", "DMIC L1"},
{"Stereo1 ADC L2 Mux", "DAC MIX", "Stereo1 DAC MIXL"},
{"Stereo1 ADC R1 Mux", "ADC", "Stereo1 ADC R Mux"},
{"Stereo1 ADC R1 Mux", "DAC MIX", "Stereo1 DAC MIXR"},
{"Stereo1 ADC R2 Mux", "DMIC", "DMIC R1"},
{"Stereo1 ADC R2 Mux", "DAC MIX", "Stereo1 DAC MIXR"},
{"Stereo1 ADC MIXL", "ADC1 Switch", "Stereo1 ADC L1 Mux"},
{"Stereo1 ADC MIXL", "ADC2 Switch", "Stereo1 ADC L2 Mux"},
{"Stereo1 ADC MIXL", NULL, "ADC Stereo1 Filter"},
{"Stereo1 ADC MIXR", "ADC1 Switch", "Stereo1 ADC R1 Mux"},
{"Stereo1 ADC MIXR", "ADC2 Switch", "Stereo1 ADC R2 Mux"},
{"Stereo1 ADC MIXR", NULL, "ADC Stereo1 Filter"},
{"ADC Stereo1 Filter", NULL, "BTN Detection Mode"},
{"Stereo1 ADC MIX", NULL, "Stereo1 ADC MIXL"},
{"Stereo1 ADC MIX", NULL, "Stereo1 ADC MIXR"},
{"IF1 01 ADC Swap Mux", "L/R", "Stereo1 ADC MIX"},
{"IF1 01 ADC Swap Mux", "L/L", "Stereo1 ADC MIX"},
{"IF1 01 ADC Swap Mux", "R/L", "Stereo1 ADC MIX"},
{"IF1 01 ADC Swap Mux", "R/R", "Stereo1 ADC MIX"},
{"IF1 23 ADC Swap Mux", "L/R", "Stereo1 ADC MIX"},
{"IF1 23 ADC Swap Mux", "R/L", "Stereo1 ADC MIX"},
{"IF1 23 ADC Swap Mux", "L/L", "Stereo1 ADC MIX"},
{"IF1 23 ADC Swap Mux", "R/R", "Stereo1 ADC MIX"},
{"IF1 45 ADC Swap Mux", "L/R", "Stereo1 ADC MIX"},
{"IF1 45 ADC Swap Mux", "R/L", "Stereo1 ADC MIX"},
{"IF1 45 ADC Swap Mux", "L/L", "Stereo1 ADC MIX"},
{"IF1 45 ADC Swap Mux", "R/R", "Stereo1 ADC MIX"},
{"IF1 67 ADC Swap Mux", "L/R", "Stereo1 ADC MIX"},
{"IF1 67 ADC Swap Mux", "R/L", "Stereo1 ADC MIX"},
{"IF1 67 ADC Swap Mux", "L/L", "Stereo1 ADC MIX"},
{"IF1 67 ADC Swap Mux", "R/R", "Stereo1 ADC MIX"},
{"IF1_ADC Mux", "Slot 0", "IF1 01 ADC Swap Mux"},
{"IF1_ADC Mux", "Slot 2", "IF1 23 ADC Swap Mux"},
{"IF1_ADC Mux", "Slot 4", "IF1 45 ADC Swap Mux"},
{"IF1_ADC Mux", "Slot 6", "IF1 67 ADC Swap Mux"},
{"ADCDAT Mux", "ADCDAT1", "IF1_ADC Mux"},
{"AIF1TX", NULL, "I2S1"},
{"AIF1TX", NULL, "ADCDAT Mux"},
{"IF2 ADC Swap Mux", "L/R", "Stereo1 ADC MIX"},
{"IF2 ADC Swap Mux", "R/L", "Stereo1 ADC MIX"},
{"IF2 ADC Swap Mux", "L/L", "Stereo1 ADC MIX"},
{"IF2 ADC Swap Mux", "R/R", "Stereo1 ADC MIX"},
{"ADCDAT Mux", "ADCDAT2", "IF2 ADC Swap Mux"},
{"AIF2TX", NULL, "ADCDAT Mux"},
{"SDWTX", NULL, "PLL2B"},
{"SDWTX", NULL, "PLL2F"},
{"SDWTX", NULL, "ADCDAT Mux"},
{"IF1 DAC1 L", NULL, "AIF1RX"},
{"IF1 DAC1 L", NULL, "I2S1"},
{"IF1 DAC1 L", NULL, "DAC Stereo1 Filter"},
{"IF1 DAC1 R", NULL, "AIF1RX"},
{"IF1 DAC1 R", NULL, "I2S1"},
{"IF1 DAC1 R", NULL, "DAC Stereo1 Filter"},
{"SOUND DAC L", NULL, "SDWRX"},
{"SOUND DAC L", NULL, "DAC Stereo1 Filter"},
{"SOUND DAC L", NULL, "PLL2B"},
{"SOUND DAC L", NULL, "PLL2F"},
{"SOUND DAC R", NULL, "SDWRX"},
{"SOUND DAC R", NULL, "DAC Stereo1 Filter"},
{"SOUND DAC R", NULL, "PLL2B"},
{"SOUND DAC R", NULL, "PLL2F"},
{"DAC L Mux", "IF1", "IF1 DAC1 L"},
{"DAC L Mux", "SOUND", "SOUND DAC L"},
{"DAC R Mux", "IF1", "IF1 DAC1 R"},
{"DAC R Mux", "SOUND", "SOUND DAC R"},
{"DAC1 MIXL", "Stereo ADC Switch", "Stereo1 ADC MIXL"},
{"DAC1 MIXL", "DAC1 Switch", "DAC L Mux"},
{"DAC1 MIXR", "Stereo ADC Switch", "Stereo1 ADC MIXR"},
{"DAC1 MIXR", "DAC1 Switch", "DAC R Mux"},
{"Stereo1 DAC MIXL", "DAC L1 Switch", "DAC1 MIXL"},
{"Stereo1 DAC MIXL", "DAC R1 Switch", "DAC1 MIXR"},
{"Stereo1 DAC MIXR", "DAC R1 Switch", "DAC1 MIXR"},
{"Stereo1 DAC MIXR", "DAC L1 Switch", "DAC1 MIXL"},
{"DAC L1 Source", "DAC1", "DAC1 MIXL"},
{"DAC L1 Source", "Stereo1 DAC Mixer", "Stereo1 DAC MIXL"},
{"DAC R1 Source", "DAC1", "DAC1 MIXR"},
{"DAC R1 Source", "Stereo1 DAC Mixer", "Stereo1 DAC MIXR"},
{"DAC L1", NULL, "DAC L1 Source"},
{"DAC R1", NULL, "DAC R1 Source"},
{"DAC L1", NULL, "DAC 1 Clock"},
{"DAC R1", NULL, "DAC 1 Clock"},
{"HP Amp", NULL, "DAC L1"},
{"HP Amp", NULL, "DAC R1"},
{"HP Amp", NULL, "HP Amp L"},
{"HP Amp", NULL, "HP Amp R"},
{"HP Amp", NULL, "Capless"},
{"HP Amp", NULL, "Charge Pump"},
{"HP Amp", NULL, "CLKDET SYS"},
{"HP Amp", NULL, "Vref1"},
{"HPOL Playback", "Switch", "HP Amp"},
{"HPOR Playback", "Switch", "HP Amp"},
{"HPOL", NULL, "HPOL Playback"},
{"HPOR", NULL, "HPOR Playback"},
};
static int rt5682_set_tdm_slot(struct snd_soc_dai *dai, unsigned int tx_mask,
unsigned int rx_mask, int slots, int slot_width)
{
struct snd_soc_component *component = dai->component;
unsigned int cl, val = 0;
if (tx_mask || rx_mask)
snd_soc_component_update_bits(component, RT5682_TDM_ADDA_CTRL_2,
RT5682_TDM_EN, RT5682_TDM_EN);
else
snd_soc_component_update_bits(component, RT5682_TDM_ADDA_CTRL_2,
RT5682_TDM_EN, 0);
switch (slots) {
case 4:
val |= RT5682_TDM_TX_CH_4;
val |= RT5682_TDM_RX_CH_4;
break;
case 6:
val |= RT5682_TDM_TX_CH_6;
val |= RT5682_TDM_RX_CH_6;
break;
case 8:
val |= RT5682_TDM_TX_CH_8;
val |= RT5682_TDM_RX_CH_8;
break;
case 2:
break;
default:
return -EINVAL;
}
snd_soc_component_update_bits(component, RT5682_TDM_CTRL,
RT5682_TDM_TX_CH_MASK | RT5682_TDM_RX_CH_MASK, val);
switch (slot_width) {
case 8:
if (tx_mask || rx_mask)
return -EINVAL;
cl = RT5682_I2S1_TX_CHL_8 | RT5682_I2S1_RX_CHL_8;
break;
case 16:
val = RT5682_TDM_CL_16;
cl = RT5682_I2S1_TX_CHL_16 | RT5682_I2S1_RX_CHL_16;
break;
case 20:
val = RT5682_TDM_CL_20;
cl = RT5682_I2S1_TX_CHL_20 | RT5682_I2S1_RX_CHL_20;
break;
case 24:
val = RT5682_TDM_CL_24;
cl = RT5682_I2S1_TX_CHL_24 | RT5682_I2S1_RX_CHL_24;
break;
case 32:
val = RT5682_TDM_CL_32;
cl = RT5682_I2S1_TX_CHL_32 | RT5682_I2S1_RX_CHL_32;
break;
default:
return -EINVAL;
}
snd_soc_component_update_bits(component, RT5682_TDM_TCON_CTRL,
RT5682_TDM_CL_MASK, val);
snd_soc_component_update_bits(component, RT5682_I2S1_SDP,
RT5682_I2S1_TX_CHL_MASK | RT5682_I2S1_RX_CHL_MASK, cl);
return 0;
}
static int rt5682_hw_params(struct snd_pcm_substream *substream,
struct snd_pcm_hw_params *params, struct snd_soc_dai *dai)
{
struct snd_soc_component *component = dai->component;
struct rt5682_priv *rt5682 = snd_soc_component_get_drvdata(component);
unsigned int len_1 = 0, len_2 = 0;
int pre_div, frame_size;
rt5682->lrck[dai->id] = params_rate(params);
pre_div = rl6231_get_clk_info(rt5682->sysclk, rt5682->lrck[dai->id]);
frame_size = snd_soc_params_to_frame_size(params);
if (frame_size < 0) {
dev_err(component->dev, "Unsupported frame size: %d\n",
frame_size);
return -EINVAL;
}
dev_dbg(dai->dev, "lrck is %dHz and pre_div is %d for iis %d\n",
rt5682->lrck[dai->id], pre_div, dai->id);
switch (params_width(params)) {
case 16:
break;
case 20:
len_1 |= RT5682_I2S1_DL_20;
len_2 |= RT5682_I2S2_DL_20;
break;
case 24:
len_1 |= RT5682_I2S1_DL_24;
len_2 |= RT5682_I2S2_DL_24;
break;
case 32:
len_1 |= RT5682_I2S1_DL_32;
len_2 |= RT5682_I2S2_DL_24;
break;
case 8:
len_1 |= RT5682_I2S2_DL_8;
len_2 |= RT5682_I2S2_DL_8;
break;
default:
return -EINVAL;
}
switch (dai->id) {
case RT5682_AIF1:
snd_soc_component_update_bits(component, RT5682_I2S1_SDP,
RT5682_I2S1_DL_MASK, len_1);
if (rt5682->master[RT5682_AIF1]) {
snd_soc_component_update_bits(component,
RT5682_ADDA_CLK_1, RT5682_I2S_M_DIV_MASK |
RT5682_I2S_CLK_SRC_MASK,
pre_div << RT5682_I2S_M_DIV_SFT |
(rt5682->sysclk_src) << RT5682_I2S_CLK_SRC_SFT);
}
if (params_channels(params) == 1) /* mono mode */
snd_soc_component_update_bits(component,
RT5682_I2S1_SDP, RT5682_I2S1_MONO_MASK,
RT5682_I2S1_MONO_EN);
else
snd_soc_component_update_bits(component,
RT5682_I2S1_SDP, RT5682_I2S1_MONO_MASK,
RT5682_I2S1_MONO_DIS);
break;
case RT5682_AIF2:
snd_soc_component_update_bits(component, RT5682_I2S2_SDP,
RT5682_I2S2_DL_MASK, len_2);
if (rt5682->master[RT5682_AIF2]) {
snd_soc_component_update_bits(component,
RT5682_I2S_M_CLK_CTRL_1, RT5682_I2S2_M_PD_MASK,
pre_div << RT5682_I2S2_M_PD_SFT);
}
if (params_channels(params) == 1) /* mono mode */
snd_soc_component_update_bits(component,
RT5682_I2S2_SDP, RT5682_I2S2_MONO_MASK,
RT5682_I2S2_MONO_EN);
else
snd_soc_component_update_bits(component,
RT5682_I2S2_SDP, RT5682_I2S2_MONO_MASK,
RT5682_I2S2_MONO_DIS);
break;
default:
dev_err(component->dev, "Invalid dai->id: %d\n", dai->id);
return -EINVAL;
}
return 0;
}
static int rt5682_set_dai_fmt(struct snd_soc_dai *dai, unsigned int fmt)
{
struct snd_soc_component *component = dai->component;
struct rt5682_priv *rt5682 = snd_soc_component_get_drvdata(component);
unsigned int reg_val = 0, tdm_ctrl = 0;
switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
case SND_SOC_DAIFMT_CBM_CFM:
rt5682->master[dai->id] = 1;
break;
case SND_SOC_DAIFMT_CBS_CFS:
rt5682->master[dai->id] = 0;
break;
default:
return -EINVAL;
}
switch (fmt & SND_SOC_DAIFMT_INV_MASK) {
case SND_SOC_DAIFMT_NB_NF:
break;
case SND_SOC_DAIFMT_IB_NF:
reg_val |= RT5682_I2S_BP_INV;
tdm_ctrl |= RT5682_TDM_S_BP_INV;
break;
case SND_SOC_DAIFMT_NB_IF:
if (dai->id == RT5682_AIF1)
tdm_ctrl |= RT5682_TDM_S_LP_INV | RT5682_TDM_M_BP_INV;
else
return -EINVAL;
break;
case SND_SOC_DAIFMT_IB_IF:
if (dai->id == RT5682_AIF1)
tdm_ctrl |= RT5682_TDM_S_BP_INV | RT5682_TDM_S_LP_INV |
RT5682_TDM_M_BP_INV | RT5682_TDM_M_LP_INV;
else
return -EINVAL;
break;
default:
return -EINVAL;
}
switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) {
case SND_SOC_DAIFMT_I2S:
break;
case SND_SOC_DAIFMT_LEFT_J:
reg_val |= RT5682_I2S_DF_LEFT;
tdm_ctrl |= RT5682_TDM_DF_LEFT;
break;
case SND_SOC_DAIFMT_DSP_A:
reg_val |= RT5682_I2S_DF_PCM_A;
tdm_ctrl |= RT5682_TDM_DF_PCM_A;
break;
case SND_SOC_DAIFMT_DSP_B:
reg_val |= RT5682_I2S_DF_PCM_B;
tdm_ctrl |= RT5682_TDM_DF_PCM_B;
break;
default:
return -EINVAL;
}
switch (dai->id) {
case RT5682_AIF1:
snd_soc_component_update_bits(component, RT5682_I2S1_SDP,
RT5682_I2S_DF_MASK, reg_val);
snd_soc_component_update_bits(component, RT5682_TDM_TCON_CTRL,
RT5682_TDM_MS_MASK | RT5682_TDM_S_BP_MASK |
RT5682_TDM_DF_MASK | RT5682_TDM_M_BP_MASK |
RT5682_TDM_M_LP_MASK | RT5682_TDM_S_LP_MASK,
tdm_ctrl | rt5682->master[dai->id]);
break;
case RT5682_AIF2:
if (rt5682->master[dai->id] == 0)
reg_val |= RT5682_I2S2_MS_S;
snd_soc_component_update_bits(component, RT5682_I2S2_SDP,
RT5682_I2S2_MS_MASK | RT5682_I2S_BP_MASK |
RT5682_I2S_DF_MASK, reg_val);
break;
default:
dev_err(component->dev, "Invalid dai->id: %d\n", dai->id);
return -EINVAL;
}
return 0;
}
static int rt5682_set_component_sysclk(struct snd_soc_component *component,
int clk_id, int source, unsigned int freq, int dir)
{
struct rt5682_priv *rt5682 = snd_soc_component_get_drvdata(component);
unsigned int reg_val = 0, src = 0;
if (freq == rt5682->sysclk && clk_id == rt5682->sysclk_src)
return 0;
switch (clk_id) {
case RT5682_SCLK_S_MCLK:
reg_val |= RT5682_SCLK_SRC_MCLK;
src = RT5682_CLK_SRC_MCLK;
break;
case RT5682_SCLK_S_PLL1:
reg_val |= RT5682_SCLK_SRC_PLL1;
src = RT5682_CLK_SRC_PLL1;
break;
case RT5682_SCLK_S_PLL2:
reg_val |= RT5682_SCLK_SRC_PLL2;
src = RT5682_CLK_SRC_PLL2;
break;
case RT5682_SCLK_S_RCCLK:
reg_val |= RT5682_SCLK_SRC_RCCLK;
src = RT5682_CLK_SRC_RCCLK;
break;
default:
dev_err(component->dev, "Invalid clock id (%d)\n", clk_id);
return -EINVAL;
}
snd_soc_component_update_bits(component, RT5682_GLB_CLK,
RT5682_SCLK_SRC_MASK, reg_val);
if (rt5682->master[RT5682_AIF2]) {
snd_soc_component_update_bits(component,
RT5682_I2S_M_CLK_CTRL_1, RT5682_I2S2_SRC_MASK,
src << RT5682_I2S2_SRC_SFT);
}
rt5682->sysclk = freq;
rt5682->sysclk_src = clk_id;
dev_dbg(component->dev, "Sysclk is %dHz and clock id is %d\n",
freq, clk_id);
return 0;
}
static int rt5682_set_component_pll(struct snd_soc_component *component,
int pll_id, int source, unsigned int freq_in,
unsigned int freq_out)
{
struct rt5682_priv *rt5682 = snd_soc_component_get_drvdata(component);
struct rl6231_pll_code pll_code, pll2f_code, pll2b_code;
unsigned int pll2_fout1, pll2_ps_val;
int ret;
if (source == rt5682->pll_src[pll_id] &&
freq_in == rt5682->pll_in[pll_id] &&
freq_out == rt5682->pll_out[pll_id])
return 0;
if (!freq_in || !freq_out) {
dev_dbg(component->dev, "PLL disabled\n");
rt5682->pll_in[pll_id] = 0;
rt5682->pll_out[pll_id] = 0;
snd_soc_component_update_bits(component, RT5682_GLB_CLK,
RT5682_SCLK_SRC_MASK, RT5682_SCLK_SRC_MCLK);
return 0;
}
if (pll_id == RT5682_PLL2) {
switch (source) {
case RT5682_PLL2_S_MCLK:
snd_soc_component_update_bits(component,
RT5682_GLB_CLK, RT5682_PLL2_SRC_MASK,
RT5682_PLL2_SRC_MCLK);
break;
default:
dev_err(component->dev, "Unknown PLL2 Source %d\n",
source);
return -EINVAL;
}
/**
* PLL2 concatenates 2 PLL units.
* We suggest the Fout of the front PLL is 3.84MHz.
*/
pll2_fout1 = 3840000;
ret = rl6231_pll_calc(freq_in, pll2_fout1, &pll2f_code);
if (ret < 0) {
dev_err(component->dev, "Unsupport input clock %d\n",
freq_in);
return ret;
}
dev_dbg(component->dev, "PLL2F: fin=%d fout=%d bypass=%d m=%d n=%d k=%d\n",
freq_in, pll2_fout1,
pll2f_code.m_bp,
(pll2f_code.m_bp ? 0 : pll2f_code.m_code),
pll2f_code.n_code, pll2f_code.k_code);
ret = rl6231_pll_calc(pll2_fout1, freq_out, &pll2b_code);
if (ret < 0) {
dev_err(component->dev, "Unsupport input clock %d\n",
pll2_fout1);
return ret;
}
dev_dbg(component->dev, "PLL2B: fin=%d fout=%d bypass=%d m=%d n=%d k=%d\n",
pll2_fout1, freq_out,
pll2b_code.m_bp,
(pll2b_code.m_bp ? 0 : pll2b_code.m_code),
pll2b_code.n_code, pll2b_code.k_code);
snd_soc_component_write(component, RT5682_PLL2_CTRL_1,
pll2f_code.k_code << RT5682_PLL2F_K_SFT |
pll2b_code.k_code << RT5682_PLL2B_K_SFT |
pll2b_code.m_code);
snd_soc_component_write(component, RT5682_PLL2_CTRL_2,
pll2f_code.m_code << RT5682_PLL2F_M_SFT |
pll2b_code.n_code);
snd_soc_component_write(component, RT5682_PLL2_CTRL_3,
pll2f_code.n_code << RT5682_PLL2F_N_SFT);
if (freq_out == 22579200)
pll2_ps_val = 1 << RT5682_PLL2B_SEL_PS_SFT;
else
pll2_ps_val = 1 << RT5682_PLL2B_PS_BYP_SFT;
snd_soc_component_update_bits(component, RT5682_PLL2_CTRL_4,
RT5682_PLL2B_SEL_PS_MASK | RT5682_PLL2B_PS_BYP_MASK |
RT5682_PLL2B_M_BP_MASK | RT5682_PLL2F_M_BP_MASK | 0xf,
pll2_ps_val |
(pll2b_code.m_bp ? 1 : 0) << RT5682_PLL2B_M_BP_SFT |
(pll2f_code.m_bp ? 1 : 0) << RT5682_PLL2F_M_BP_SFT |
0xf);
} else {
switch (source) {
case RT5682_PLL1_S_MCLK:
snd_soc_component_update_bits(component,
RT5682_GLB_CLK, RT5682_PLL1_SRC_MASK,
RT5682_PLL1_SRC_MCLK);
break;
case RT5682_PLL1_S_BCLK1:
snd_soc_component_update_bits(component,
RT5682_GLB_CLK, RT5682_PLL1_SRC_MASK,
RT5682_PLL1_SRC_BCLK1);
break;
default:
dev_err(component->dev, "Unknown PLL1 Source %d\n",
source);
return -EINVAL;
}
ret = rl6231_pll_calc(freq_in, freq_out, &pll_code);
if (ret < 0) {
dev_err(component->dev, "Unsupport input clock %d\n",
freq_in);
return ret;
}
dev_dbg(component->dev, "bypass=%d m=%d n=%d k=%d\n",
pll_code.m_bp, (pll_code.m_bp ? 0 : pll_code.m_code),
pll_code.n_code, pll_code.k_code);
snd_soc_component_write(component, RT5682_PLL_CTRL_1,
pll_code.n_code << RT5682_PLL_N_SFT | pll_code.k_code);
snd_soc_component_write(component, RT5682_PLL_CTRL_2,
(pll_code.m_bp ? 0 : pll_code.m_code) << RT5682_PLL_M_SFT |
pll_code.m_bp << RT5682_PLL_M_BP_SFT | RT5682_PLL_RST);
}
rt5682->pll_in[pll_id] = freq_in;
rt5682->pll_out[pll_id] = freq_out;
rt5682->pll_src[pll_id] = source;
return 0;
}
static int rt5682_set_bclk1_ratio(struct snd_soc_dai *dai, unsigned int ratio)
{
struct snd_soc_component *component = dai->component;
struct rt5682_priv *rt5682 = snd_soc_component_get_drvdata(component);
rt5682->bclk[dai->id] = ratio;
switch (ratio) {
case 256:
snd_soc_component_update_bits(component, RT5682_TDM_TCON_CTRL,
RT5682_TDM_BCLK_MS1_MASK, RT5682_TDM_BCLK_MS1_256);
break;
case 128:
snd_soc_component_update_bits(component, RT5682_TDM_TCON_CTRL,
RT5682_TDM_BCLK_MS1_MASK, RT5682_TDM_BCLK_MS1_128);
break;
case 64:
snd_soc_component_update_bits(component, RT5682_TDM_TCON_CTRL,
RT5682_TDM_BCLK_MS1_MASK, RT5682_TDM_BCLK_MS1_64);
break;
case 32:
snd_soc_component_update_bits(component, RT5682_TDM_TCON_CTRL,
RT5682_TDM_BCLK_MS1_MASK, RT5682_TDM_BCLK_MS1_32);
break;
default:
dev_err(dai->dev, "Invalid bclk1 ratio %d\n", ratio);
return -EINVAL;
}
return 0;
}
static int rt5682_set_bclk2_ratio(struct snd_soc_dai *dai, unsigned int ratio)
{
struct snd_soc_component *component = dai->component;
struct rt5682_priv *rt5682 = snd_soc_component_get_drvdata(component);
rt5682->bclk[dai->id] = ratio;
switch (ratio) {
case 64:
snd_soc_component_update_bits(component, RT5682_ADDA_CLK_2,
RT5682_I2S2_BCLK_MS2_MASK,
RT5682_I2S2_BCLK_MS2_64);
break;
case 32:
snd_soc_component_update_bits(component, RT5682_ADDA_CLK_2,
RT5682_I2S2_BCLK_MS2_MASK,
RT5682_I2S2_BCLK_MS2_32);
break;
default:
dev_err(dai->dev, "Invalid bclk2 ratio %d\n", ratio);
return -EINVAL;
}
return 0;
}
static int rt5682_set_bias_level(struct snd_soc_component *component,
enum snd_soc_bias_level level)
{
struct rt5682_priv *rt5682 = snd_soc_component_get_drvdata(component);
switch (level) {
case SND_SOC_BIAS_PREPARE:
regmap_update_bits(rt5682->regmap, RT5682_PWR_ANLG_1,
RT5682_PWR_BG, RT5682_PWR_BG);
regmap_update_bits(rt5682->regmap, RT5682_PWR_DIG_1,
RT5682_DIG_GATE_CTRL | RT5682_PWR_LDO,
RT5682_DIG_GATE_CTRL | RT5682_PWR_LDO);
break;
case SND_SOC_BIAS_STANDBY:
regmap_update_bits(rt5682->regmap, RT5682_PWR_DIG_1,
RT5682_DIG_GATE_CTRL, RT5682_DIG_GATE_CTRL);
break;
case SND_SOC_BIAS_OFF:
regmap_update_bits(rt5682->regmap, RT5682_PWR_DIG_1,
RT5682_DIG_GATE_CTRL | RT5682_PWR_LDO, 0);
regmap_update_bits(rt5682->regmap, RT5682_PWR_ANLG_1,
RT5682_PWR_BG, 0);
break;
case SND_SOC_BIAS_ON:
break;
}
return 0;
}
#ifdef CONFIG_COMMON_CLK
#define CLK_PLL2_FIN 48000000
#define CLK_48 48000
#define CLK_44 44100
static bool rt5682_clk_check(struct rt5682_priv *rt5682)
{
if (!rt5682->master[RT5682_AIF1]) {
dev_err(rt5682->component->dev, "sysclk/dai not set correctly\n");
return false;
}
return true;
}
static int rt5682_wclk_prepare(struct clk_hw *hw)
{
struct rt5682_priv *rt5682 =
container_of(hw, struct rt5682_priv,
dai_clks_hw[RT5682_DAI_WCLK_IDX]);
struct snd_soc_component *component = rt5682->component;
struct snd_soc_dapm_context *dapm =
snd_soc_component_get_dapm(component);
if (!rt5682_clk_check(rt5682))
return -EINVAL;
snd_soc_dapm_mutex_lock(dapm);
snd_soc_dapm_force_enable_pin_unlocked(dapm, "MICBIAS");
snd_soc_component_update_bits(component, RT5682_PWR_ANLG_1,
RT5682_PWR_MB, RT5682_PWR_MB);
snd_soc_dapm_force_enable_pin_unlocked(dapm, "Vref2");
snd_soc_component_update_bits(component, RT5682_PWR_ANLG_1,
RT5682_PWR_VREF2 | RT5682_PWR_FV2,
RT5682_PWR_VREF2);
usleep_range(55000, 60000);
snd_soc_component_update_bits(component, RT5682_PWR_ANLG_1,
RT5682_PWR_FV2, RT5682_PWR_FV2);
snd_soc_dapm_force_enable_pin_unlocked(dapm, "I2S1");
snd_soc_dapm_force_enable_pin_unlocked(dapm, "PLL2F");
snd_soc_dapm_force_enable_pin_unlocked(dapm, "PLL2B");
snd_soc_dapm_sync_unlocked(dapm);
snd_soc_dapm_mutex_unlock(dapm);
return 0;
}
static void rt5682_wclk_unprepare(struct clk_hw *hw)
{
struct rt5682_priv *rt5682 =
container_of(hw, struct rt5682_priv,
dai_clks_hw[RT5682_DAI_WCLK_IDX]);
struct snd_soc_component *component = rt5682->component;
struct snd_soc_dapm_context *dapm =
snd_soc_component_get_dapm(component);
if (!rt5682_clk_check(rt5682))
return;
snd_soc_dapm_mutex_lock(dapm);
snd_soc_dapm_disable_pin_unlocked(dapm, "MICBIAS");
snd_soc_dapm_disable_pin_unlocked(dapm, "Vref2");
if (!rt5682->jack_type)
snd_soc_component_update_bits(component, RT5682_PWR_ANLG_1,
RT5682_PWR_VREF2 | RT5682_PWR_FV2 |
RT5682_PWR_MB, 0);
snd_soc_dapm_disable_pin_unlocked(dapm, "I2S1");
snd_soc_dapm_disable_pin_unlocked(dapm, "PLL2F");
snd_soc_dapm_disable_pin_unlocked(dapm, "PLL2B");
snd_soc_dapm_sync_unlocked(dapm);
snd_soc_dapm_mutex_unlock(dapm);
}
static unsigned long rt5682_wclk_recalc_rate(struct clk_hw *hw,
unsigned long parent_rate)
{
struct rt5682_priv *rt5682 =
container_of(hw, struct rt5682_priv,
dai_clks_hw[RT5682_DAI_WCLK_IDX]);
struct snd_soc_component *component = rt5682->component;
const char * const clk_name = __clk_get_name(hw->clk);
if (!rt5682_clk_check(rt5682))
return 0;
/*
* Only accept to set wclk rate to 44.1k or 48kHz.
*/
if (rt5682->lrck[RT5682_AIF1] != CLK_48 &&
rt5682->lrck[RT5682_AIF1] != CLK_44) {
dev_warn(component->dev, "%s: clk %s only support %d or %d Hz output\n",
__func__, clk_name, CLK_44, CLK_48);
return 0;
}
return rt5682->lrck[RT5682_AIF1];
}
static long rt5682_wclk_round_rate(struct clk_hw *hw, unsigned long rate,
unsigned long *parent_rate)
{
struct rt5682_priv *rt5682 =
container_of(hw, struct rt5682_priv,
dai_clks_hw[RT5682_DAI_WCLK_IDX]);
struct snd_soc_component *component = rt5682->component;
const char * const clk_name = __clk_get_name(hw->clk);
if (!rt5682_clk_check(rt5682))
return -EINVAL;
/*
* Only accept to set wclk rate to 44.1k or 48kHz.
* It will force to 48kHz if not both.
*/
if (rate != CLK_48 && rate != CLK_44) {
dev_warn(component->dev, "%s: clk %s only support %d or %d Hz output\n",
__func__, clk_name, CLK_44, CLK_48);
rate = CLK_48;
}
return rate;
}
static int rt5682_wclk_set_rate(struct clk_hw *hw, unsigned long rate,
unsigned long parent_rate)
{
struct rt5682_priv *rt5682 =
container_of(hw, struct rt5682_priv,
dai_clks_hw[RT5682_DAI_WCLK_IDX]);
struct snd_soc_component *component = rt5682->component;
struct clk *parent_clk;
const char * const clk_name = __clk_get_name(hw->clk);
int pre_div;
unsigned int clk_pll2_out;
if (!rt5682_clk_check(rt5682))
return -EINVAL;
/*
* Whether the wclk's parent clk (mclk) exists or not, please ensure
* it is fixed or set to 48MHz before setting wclk rate. It's a
* temporary limitation. Only accept 48MHz clk as the clk provider.
*
* It will set the codec anyway by assuming mclk is 48MHz.
*/
parent_clk = clk_get_parent(hw->clk);
if (!parent_clk)
dev_warn(component->dev,
"Parent mclk of wclk not acquired in driver. Please ensure mclk was provided as %d Hz.\n",
CLK_PLL2_FIN);
if (parent_rate != CLK_PLL2_FIN)
dev_warn(component->dev, "clk %s only support %d Hz input\n",
clk_name, CLK_PLL2_FIN);
/*
* To achieve the rate conversion from 48MHz to 44.1k or 48kHz,
* PLL2 is needed.
*/
clk_pll2_out = rate * 512;
rt5682_set_component_pll(component, RT5682_PLL2, RT5682_PLL2_S_MCLK,
CLK_PLL2_FIN, clk_pll2_out);
rt5682_set_component_sysclk(component, RT5682_SCLK_S_PLL2, 0,
clk_pll2_out, SND_SOC_CLOCK_IN);
rt5682->lrck[RT5682_AIF1] = rate;
pre_div = rl6231_get_clk_info(rt5682->sysclk, rate);
snd_soc_component_update_bits(component, RT5682_ADDA_CLK_1,
RT5682_I2S_M_DIV_MASK | RT5682_I2S_CLK_SRC_MASK,
pre_div << RT5682_I2S_M_DIV_SFT |
(rt5682->sysclk_src) << RT5682_I2S_CLK_SRC_SFT);
return 0;
}
static unsigned long rt5682_bclk_recalc_rate(struct clk_hw *hw,
unsigned long parent_rate)
{
struct rt5682_priv *rt5682 =
container_of(hw, struct rt5682_priv,
dai_clks_hw[RT5682_DAI_BCLK_IDX]);
struct snd_soc_component *component = rt5682->component;
unsigned int bclks_per_wclk;
bclks_per_wclk = snd_soc_component_read(component, RT5682_TDM_TCON_CTRL);
switch (bclks_per_wclk & RT5682_TDM_BCLK_MS1_MASK) {
case RT5682_TDM_BCLK_MS1_256:
return parent_rate * 256;
case RT5682_TDM_BCLK_MS1_128:
return parent_rate * 128;
case RT5682_TDM_BCLK_MS1_64:
return parent_rate * 64;
case RT5682_TDM_BCLK_MS1_32:
return parent_rate * 32;
default:
return 0;
}
}
static unsigned long rt5682_bclk_get_factor(unsigned long rate,
unsigned long parent_rate)
{
unsigned long factor;
factor = rate / parent_rate;
if (factor < 64)
return 32;
else if (factor < 128)
return 64;
else if (factor < 256)
return 128;
else
return 256;
}
static long rt5682_bclk_round_rate(struct clk_hw *hw, unsigned long rate,
unsigned long *parent_rate)
{
struct rt5682_priv *rt5682 =
container_of(hw, struct rt5682_priv,
dai_clks_hw[RT5682_DAI_BCLK_IDX]);
unsigned long factor;
if (!*parent_rate || !rt5682_clk_check(rt5682))
return -EINVAL;
/*
* BCLK rates are set as a multiplier of WCLK in HW.
* We don't allow changing the parent WCLK. We just do
* some rounding down based on the parent WCLK rate
* and find the appropriate multiplier of BCLK to
* get the rounded down BCLK value.
*/
factor = rt5682_bclk_get_factor(rate, *parent_rate);
return *parent_rate * factor;
}
static int rt5682_bclk_set_rate(struct clk_hw *hw, unsigned long rate,
unsigned long parent_rate)
{
struct rt5682_priv *rt5682 =
container_of(hw, struct rt5682_priv,
dai_clks_hw[RT5682_DAI_BCLK_IDX]);
struct snd_soc_component *component = rt5682->component;
struct snd_soc_dai *dai = NULL;
unsigned long factor;
if (!rt5682_clk_check(rt5682))
return -EINVAL;
factor = rt5682_bclk_get_factor(rate, parent_rate);
for_each_component_dais(component, dai)
if (dai->id == RT5682_AIF1)
break;
if (!dai) {
dev_err(component->dev, "dai %d not found in component\n",
RT5682_AIF1);
return -ENODEV;
}
return rt5682_set_bclk1_ratio(dai, factor);
}
static const struct clk_ops rt5682_dai_clk_ops[RT5682_DAI_NUM_CLKS] = {
[RT5682_DAI_WCLK_IDX] = {
.prepare = rt5682_wclk_prepare,
.unprepare = rt5682_wclk_unprepare,
.recalc_rate = rt5682_wclk_recalc_rate,
.round_rate = rt5682_wclk_round_rate,
.set_rate = rt5682_wclk_set_rate,
},
[RT5682_DAI_BCLK_IDX] = {
.recalc_rate = rt5682_bclk_recalc_rate,
.round_rate = rt5682_bclk_round_rate,
.set_rate = rt5682_bclk_set_rate,
},
};
static int rt5682_register_dai_clks(struct snd_soc_component *component)
{
struct device *dev = component->dev;
struct rt5682_priv *rt5682 = snd_soc_component_get_drvdata(component);
struct rt5682_platform_data *pdata = &rt5682->pdata;
struct clk_init_data init;
struct clk *dai_clk;
struct clk_lookup *dai_clk_lookup;
struct clk_hw *dai_clk_hw;
const char *parent_name;
int i, ret;
for (i = 0; i < RT5682_DAI_NUM_CLKS; ++i) {
dai_clk_hw = &rt5682->dai_clks_hw[i];
switch (i) {
case RT5682_DAI_WCLK_IDX:
/* Make MCLK the parent of WCLK */
if (rt5682->mclk) {
parent_name = __clk_get_name(rt5682->mclk);
init.parent_names = &parent_name;
init.num_parents = 1;
} else {
init.parent_names = NULL;
init.num_parents = 0;
}
break;
case RT5682_DAI_BCLK_IDX:
/* Make WCLK the parent of BCLK */
parent_name = __clk_get_name(
rt5682->dai_clks[RT5682_DAI_WCLK_IDX]);
init.parent_names = &parent_name;
init.num_parents = 1;
break;
default:
dev_err(dev, "Invalid clock index\n");
ret = -EINVAL;
goto err;
}
init.name = pdata->dai_clk_names[i];
init.ops = &rt5682_dai_clk_ops[i];
init.flags = CLK_GET_RATE_NOCACHE | CLK_SET_RATE_GATE;
dai_clk_hw->init = &init;
dai_clk = devm_clk_register(dev, dai_clk_hw);
if (IS_ERR(dai_clk)) {
dev_warn(dev, "Failed to register %s: %ld\n",
init.name, PTR_ERR(dai_clk));
ret = PTR_ERR(dai_clk);
goto err;
}
rt5682->dai_clks[i] = dai_clk;
if (dev->of_node) {
devm_of_clk_add_hw_provider(dev, of_clk_hw_simple_get,
dai_clk_hw);
} else {
dai_clk_lookup = clkdev_create(dai_clk, init.name,
"%s", dev_name(dev));
if (!dai_clk_lookup) {
ret = -ENOMEM;
goto err;
} else {
rt5682->dai_clks_lookup[i] = dai_clk_lookup;
}
}
}
return 0;
err:
do {
if (rt5682->dai_clks_lookup[i])
clkdev_drop(rt5682->dai_clks_lookup[i]);
} while (i-- > 0);
return ret;
}
#endif /* CONFIG_COMMON_CLK */
static int rt5682_probe(struct snd_soc_component *component)
{
struct rt5682_priv *rt5682 = snd_soc_component_get_drvdata(component);
struct sdw_slave *slave;
unsigned long time;
struct snd_soc_dapm_context *dapm = &component->dapm;
#ifdef CONFIG_COMMON_CLK
int ret;
#endif
rt5682->component = component;
if (rt5682->is_sdw) {
slave = rt5682->slave;
time = wait_for_completion_timeout(
&slave->initialization_complete,
msecs_to_jiffies(RT5682_PROBE_TIMEOUT));
if (!time) {
dev_err(&slave->dev, "Initialization not complete, timed out\n");
return -ETIMEDOUT;
}
} else {
#ifdef CONFIG_COMMON_CLK
/* Check if MCLK provided */
rt5682->mclk = devm_clk_get(component->dev, "mclk");
if (IS_ERR(rt5682->mclk)) {
if (PTR_ERR(rt5682->mclk) != -ENOENT) {
ret = PTR_ERR(rt5682->mclk);
return ret;
}
rt5682->mclk = NULL;
}
/* Register CCF DAI clock control */
ret = rt5682_register_dai_clks(component);
if (ret)
return ret;
/* Initial setup for CCF */
rt5682->lrck[RT5682_AIF1] = CLK_48;
#endif
}
snd_soc_dapm_disable_pin(dapm, "MICBIAS");
snd_soc_dapm_disable_pin(dapm, "Vref2");
snd_soc_dapm_sync(dapm);
return 0;
}
static void rt5682_remove(struct snd_soc_component *component)
{
struct rt5682_priv *rt5682 = snd_soc_component_get_drvdata(component);
#ifdef CONFIG_COMMON_CLK
int i;
for (i = RT5682_DAI_NUM_CLKS - 1; i >= 0; --i) {
if (rt5682->dai_clks_lookup[i])
clkdev_drop(rt5682->dai_clks_lookup[i]);
}
#endif
rt5682_reset(rt5682);
}
#ifdef CONFIG_PM
static int rt5682_suspend(struct snd_soc_component *component)
{
struct rt5682_priv *rt5682 = snd_soc_component_get_drvdata(component);
regcache_cache_only(rt5682->regmap, true);
regcache_mark_dirty(rt5682->regmap);
return 0;
}
static int rt5682_resume(struct snd_soc_component *component)
{
struct rt5682_priv *rt5682 = snd_soc_component_get_drvdata(component);
regcache_cache_only(rt5682->regmap, false);
regcache_sync(rt5682->regmap);
mod_delayed_work(system_power_efficient_wq,
&rt5682->jack_detect_work, msecs_to_jiffies(250));
return 0;
}
#else
#define rt5682_suspend NULL
#define rt5682_resume NULL
#endif
const struct snd_soc_dai_ops rt5682_aif1_dai_ops = {
.hw_params = rt5682_hw_params,
.set_fmt = rt5682_set_dai_fmt,
.set_tdm_slot = rt5682_set_tdm_slot,
.set_bclk_ratio = rt5682_set_bclk1_ratio,
};
EXPORT_SYMBOL_GPL(rt5682_aif1_dai_ops);
const struct snd_soc_dai_ops rt5682_aif2_dai_ops = {
.hw_params = rt5682_hw_params,
.set_fmt = rt5682_set_dai_fmt,
.set_bclk_ratio = rt5682_set_bclk2_ratio,
};
EXPORT_SYMBOL_GPL(rt5682_aif2_dai_ops);
const struct snd_soc_component_driver rt5682_soc_component_dev = {
.probe = rt5682_probe,
.remove = rt5682_remove,
.suspend = rt5682_suspend,
.resume = rt5682_resume,
.set_bias_level = rt5682_set_bias_level,
.controls = rt5682_snd_controls,
.num_controls = ARRAY_SIZE(rt5682_snd_controls),
.dapm_widgets = rt5682_dapm_widgets,
.num_dapm_widgets = ARRAY_SIZE(rt5682_dapm_widgets),
.dapm_routes = rt5682_dapm_routes,
.num_dapm_routes = ARRAY_SIZE(rt5682_dapm_routes),
.set_sysclk = rt5682_set_component_sysclk,
.set_pll = rt5682_set_component_pll,
.set_jack = rt5682_set_jack_detect,
.use_pmdown_time = 1,
.endianness = 1,
.non_legacy_dai_naming = 1,
};
EXPORT_SYMBOL_GPL(rt5682_soc_component_dev);
int rt5682_parse_dt(struct rt5682_priv *rt5682, struct device *dev)
{
device_property_read_u32(dev, "realtek,dmic1-data-pin",
&rt5682->pdata.dmic1_data_pin);
device_property_read_u32(dev, "realtek,dmic1-clk-pin",
&rt5682->pdata.dmic1_clk_pin);
device_property_read_u32(dev, "realtek,jd-src",
&rt5682->pdata.jd_src);
device_property_read_u32(dev, "realtek,btndet-delay",
&rt5682->pdata.btndet_delay);
device_property_read_u32(dev, "realtek,dmic-clk-rate-hz",
&rt5682->pdata.dmic_clk_rate);
device_property_read_u32(dev, "realtek,dmic-delay-ms",
&rt5682->pdata.dmic_delay);
rt5682->pdata.ldo1_en = of_get_named_gpio(dev->of_node,
"realtek,ldo1-en-gpios", 0);
if (device_property_read_string_array(dev, "clock-output-names",
rt5682->pdata.dai_clk_names,
RT5682_DAI_NUM_CLKS) < 0)
dev_warn(dev, "Using default DAI clk names: %s, %s\n",
rt5682->pdata.dai_clk_names[RT5682_DAI_WCLK_IDX],
rt5682->pdata.dai_clk_names[RT5682_DAI_BCLK_IDX]);
return 0;
}
EXPORT_SYMBOL_GPL(rt5682_parse_dt);
void rt5682_calibrate(struct rt5682_priv *rt5682)
{
int value, count;
mutex_lock(&rt5682->calibrate_mutex);
rt5682_reset(rt5682);
regmap_write(rt5682->regmap, RT5682_I2C_CTRL, 0x000f);
regmap_write(rt5682->regmap, RT5682_PWR_ANLG_1, 0xa2af);
usleep_range(15000, 20000);
regmap_write(rt5682->regmap, RT5682_PWR_ANLG_1, 0xf2af);
regmap_write(rt5682->regmap, RT5682_MICBIAS_2, 0x0300);
regmap_write(rt5682->regmap, RT5682_GLB_CLK, 0x8000);
regmap_write(rt5682->regmap, RT5682_PWR_DIG_1, 0x0100);
regmap_write(rt5682->regmap, RT5682_HP_IMP_SENS_CTRL_19, 0x3800);
regmap_write(rt5682->regmap, RT5682_CHOP_DAC, 0x3000);
regmap_write(rt5682->regmap, RT5682_CALIB_ADC_CTRL, 0x7005);
regmap_write(rt5682->regmap, RT5682_STO1_ADC_MIXER, 0x686c);
regmap_write(rt5682->regmap, RT5682_CAL_REC, 0x0d0d);
regmap_write(rt5682->regmap, RT5682_HP_CALIB_CTRL_2, 0x0321);
regmap_write(rt5682->regmap, RT5682_HP_LOGIC_CTRL_2, 0x0004);
regmap_write(rt5682->regmap, RT5682_HP_CALIB_CTRL_1, 0x7c00);
regmap_write(rt5682->regmap, RT5682_HP_CALIB_CTRL_3, 0x06a1);
regmap_write(rt5682->regmap, RT5682_A_DAC1_MUX, 0x0311);
regmap_write(rt5682->regmap, RT5682_HP_CALIB_CTRL_1, 0x7c00);
regmap_write(rt5682->regmap, RT5682_HP_CALIB_CTRL_1, 0xfc00);
for (count = 0; count < 60; count++) {
regmap_read(rt5682->regmap, RT5682_HP_CALIB_STA_1, &value);
if (!(value & 0x8000))
break;
usleep_range(10000, 10005);
}
if (count >= 60)
dev_err(rt5682->component->dev, "HP Calibration Failure\n");
/* restore settings */
regmap_write(rt5682->regmap, RT5682_PWR_ANLG_1, 0x002f);
regmap_write(rt5682->regmap, RT5682_MICBIAS_2, 0x0080);
regmap_write(rt5682->regmap, RT5682_GLB_CLK, 0x0000);
regmap_write(rt5682->regmap, RT5682_PWR_DIG_1, 0x0000);
regmap_write(rt5682->regmap, RT5682_CHOP_DAC, 0x2000);
regmap_write(rt5682->regmap, RT5682_CALIB_ADC_CTRL, 0x2005);
regmap_write(rt5682->regmap, RT5682_STO1_ADC_MIXER, 0xc0c4);
regmap_write(rt5682->regmap, RT5682_CAL_REC, 0x0c0c);
mutex_unlock(&rt5682->calibrate_mutex);
}
EXPORT_SYMBOL_GPL(rt5682_calibrate);
MODULE_DESCRIPTION("ASoC RT5682 driver");
MODULE_AUTHOR("Bard Liao <[email protected]>");
MODULE_LICENSE("GPL v2");
|
214,451 | Github | [
605,
6394,
7716,
64,
32568,
8112,
1400,
7142,
1410,
599,
187,
605,
9664,
37305,
17203,
4561,
2486,
1873,
15,
187,
605,
26713,
407,
3330,
371,
640,
15,
3373,
187,
605,
187,
4,
3182,
5417,
52,
64,
24458,
18,
50257,
18,
187,
4,
3182,
5417,
42,
64,
1864,
1139,
18,
50255,
18,
187,
4,
3182,
5417,
35,
64,
14609,
13820,
18,
50257,
18,
187,
4,
3182,
5417,
35,
64,
14609,
13820,
19,
50257,
8196,
187,
4,
3182,
5417,
36,
64,
26336,
52,
1372,
18,
50257,
13482,
187,
187,
605,
10209,
4284,
2193,
323,
747,
5113,
187,
605,
209,
187,
4,
16238,
4097,
1267,
7273,
6527,
64,
1042,
55,
10249,
1703,
187,
4,
17331,
4097,
1267,
7273,
6527,
64,
13587,
41889,
64,
47788,
52,
187,
4,
3182,
795,
37681,
64,
7716,
64,
46,
6739,
50257,
18,
187,
4,
3182,
795,
37681,
64,
30425,
64,
13045,
22656,
64,
22355,
50270,
11246,
187,
4,
3182,
795,
37681,
64,
30425,
64,
31264,
5543,
64,
22355,
50269,
21,
5831,
187,
4,
3182,
795,
37681,
64,
30425,
64,
37423,
64,
22355,
50269,
38723,
187,
4,
3182,
795,
37681,
64,
30425,
64,
14305,
19047,
64,
22355,
50267,
6903,
187,
4,
7287,
187,
4,
7287,
187
] | //{{NO_DEPENDENCIES}}
// Microsoft Developer Studio generated include file.
// Used by winquake.rc
//
#define IDS_STRING1 1
#define IDI_ICON1 1
#define IDB_BITMAP1 1
#define IDB_BITMAP2 128
#define IDC_CURSOR1 129
// Next default values for new objects
//
#ifdef APSTUDIO_INVOKED
#ifndef APSTUDIO_READONLY_SYMBOLS
#define _APS_NO_MFC 1
#define _APS_NEXT_RESOURCE_VALUE 130
#define _APS_NEXT_COMMAND_VALUE 40001
#define _APS_NEXT_CONTROL_VALUE 1005
#define _APS_NEXT_SYMED_VALUE 101
#endif
#endif
|
214,452 | Github | [
22902,
22902,
11890,
187,
4,
411,
15875,
323,
4567,
2372,
10679,
50254,
50254,
50276,
4,
187,
22902,
22902,
11890,
187,
187,
283,
6756,
2486,
16,
9802,
64,
1237,
2713,
15,
1763,
187,
283,
6756,
18880,
16,
10404,
64,
25802,
16,
1763,
16,
4805,
2808,
64,
39894,
64,
12985,
64,
3281,
64,
21705,
15,
1763,
535
] | ################################################################################
# Wrapper for 32 bit machines #
################################################################################
--source include/have_32bit.inc
--source suite/sys_vars/inc/binlog_stmt_cache_size_basic.inc
|
214,453 | Github | [
15684,
2073,
4598,
14825,
16,
265,
23,
15,
2703,
15,
4064,
14,
3211,
14,
3659,
5137,
187,
15684,
2073,
4598,
14825,
16,
265,
23,
15,
2703,
15,
2040,
5137,
187,
15684,
2073,
4598,
14825,
16,
265,
23,
15,
2703,
15,
24716,
5137,
187,
15684,
2073,
4598,
14825,
16,
265,
23,
15,
2703,
15,
17828,
5137,
187,
15684,
2073,
4598,
14825,
16,
265,
23,
15,
2703,
15,
3211,
14,
3659,
14,
255,
5137,
187,
15684,
2073,
4598,
14825,
16,
265,
23,
15,
2703,
15,
1727,
14,
3113,
5137,
187,
15684,
2073,
4598,
14825,
16,
265,
23,
15,
2703,
15,
30076,
5137,
187,
15684,
2073,
4598,
14825,
16,
265,
23,
15,
2703,
15,
24712,
5137,
187,
15684,
2073,
4598,
14825,
16,
265,
23,
15,
2703,
15,
5478,
84,
14,
3113,
5137,
187,
15684,
2073,
4598,
14825,
16,
265,
23,
15,
28847,
81,
15,
8992,
5137,
187,
15684,
2073,
4598,
14825,
16,
265,
23,
15,
28847,
81,
15,
13481,
5137,
187,
15684,
2073,
4598,
14825,
16,
265,
23,
15,
28847,
81,
15,
8716,
5137,
187,
15684,
2073,
4598,
14825,
16,
265,
23,
15,
28847,
81,
15,
9148,
5137,
187,
15684,
2073,
4598,
14825,
16,
265,
23,
15,
2703,
15,
29016,
5137,
187,
15684,
2073,
4598,
14825,
16,
265,
23,
15,
2703,
15,
2760,
5137,
187,
15684,
2073,
4598,
14825,
16,
265,
23,
15,
2703,
15,
1559,
750,
5137,
187,
15684,
2073,
4598,
14825,
16,
265,
23,
15,
2703,
15,
12509,
5137,
187,
15684,
2073,
4598,
14825,
16,
265,
23,
15,
2703,
15,
20188,
5137,
187,
15684,
2073,
4598,
14825,
16,
265,
23,
15,
2703,
15,
4909,
4897,
5137,
187,
15684,
2073,
4598,
14825,
16,
265,
23,
15,
2703,
15,
4909,
3281,
5137,
187,
15684,
2073,
4598,
14825,
16,
265,
23,
15,
2703,
15,
1562,
982,
5137,
187,
15684,
2073,
4598,
14825,
16,
265,
23,
15,
2703,
15,
4492,
5137,
187,
15684,
2073,
4598,
14825,
16,
265,
23,
15,
2703,
15,
6795,
5137,
187,
15684,
2073,
4598,
14825,
16,
265,
23,
15,
2703,
15,
296,
24087,
5137,
187,
15684,
2073,
4598,
14825,
16,
265,
23,
15,
2703,
15,
2377,
5137,
187,
15684,
2073,
4598,
14825,
16,
265,
23,
15,
2703,
15,
8403,
5137,
187,
15684,
2073,
4598,
14825,
16,
265,
24,
15,
2703,
15,
255,
5137,
187,
15684,
2073,
4598,
14825,
16,
265,
24,
15,
2703,
15,
11022,
14,
5478,
5137,
187,
15684,
2073,
4598,
14825,
16,
265,
24,
15,
2703,
15,
11022,
14,
423,
5137,
187,
15684,
2073,
4598,
14825,
16,
265,
24,
15,
2703,
15,
24716,
14,
1274,
5137,
187,
15684,
2073,
4598,
14825,
16,
265,
24,
15,
2703,
15,
24716,
14,
918,
5137,
187,
15684,
2073,
4598,
14825,
16,
265,
24,
15,
2703,
15,
8992,
14,
455,
5137,
187,
15684,
2073,
4598,
14825,
16,
6443,
15,
2703,
15,
34189,
14,
2974,
5137,
187,
15684,
2073,
4598,
14825,
16,
6443,
15,
2703,
15,
14124,
68,
2259,
14,
2974,
5137,
187,
8640,
15,
23756,
426,
2430,
2073,
4598,
14825,
29987,
6443,
8539,
2776,
28,
187
] | require('../../modules/es6.string.from-code-point');
require('../../modules/es6.string.raw');
require('../../modules/es6.string.trim');
require('../../modules/es6.string.iterator');
require('../../modules/es6.string.code-point-at');
require('../../modules/es6.string.ends-with');
require('../../modules/es6.string.includes');
require('../../modules/es6.string.repeat');
require('../../modules/es6.string.starts-with');
require('../../modules/es6.regexp.match');
require('../../modules/es6.regexp.replace');
require('../../modules/es6.regexp.search');
require('../../modules/es6.regexp.split');
require('../../modules/es6.string.anchor');
require('../../modules/es6.string.big');
require('../../modules/es6.string.blink');
require('../../modules/es6.string.bold');
require('../../modules/es6.string.fixed');
require('../../modules/es6.string.fontcolor');
require('../../modules/es6.string.fontsize');
require('../../modules/es6.string.italics');
require('../../modules/es6.string.link');
require('../../modules/es6.string.small');
require('../../modules/es6.string.strike');
require('../../modules/es6.string.sub');
require('../../modules/es6.string.sup');
require('../../modules/es7.string.at');
require('../../modules/es7.string.pad-start');
require('../../modules/es7.string.pad-end');
require('../../modules/es7.string.trim-left');
require('../../modules/es7.string.trim-right');
require('../../modules/es7.string.match-all');
require('../../modules/core.string.escape-html');
require('../../modules/core.string.unescape-html');
module.exports = require('../../modules/_core').String;
|
214,454 | Github | [
10708,
389,
15,
965,
4611,
15,
17703,
69,
2631,
15,
17703,
272,
15,
49069,
28,
187,
187,
2948,
389,
15,
965,
4611,
15,
17703,
69,
2631,
15,
9494,
5726,
28,
187,
2948,
389,
15,
965,
4611,
15,
17703,
69,
2631,
15,
17703,
272,
15,
18091,
28,
187,
2948,
389,
15,
965,
4611,
15,
17703,
69,
2631,
15,
17703,
272,
15,
16822,
28,
187,
2948,
389,
15,
965,
4611,
15,
17703,
69,
2631,
15,
17703,
272,
15,
911,
14233,
15,
16822,
48279,
5330,
28,
187,
2948,
389,
15,
965,
4611,
15,
17703,
69,
2631,
15,
17703,
272,
15,
911,
14233,
15,
16822,
5330,
28,
187,
2948,
389,
15,
965,
4611,
15,
17703,
69,
2631,
15,
17703,
272,
15,
911,
14233,
15,
27689,
5330,
28,
187,
2948,
389,
15,
965,
4611,
15,
17703,
69,
2631,
15,
1851,
1974,
15,
51,
28,
187,
2948,
389,
15,
965,
4611,
15,
17703,
69,
2631,
15,
33008,
15,
5472,
1164,
15668,
28,
187,
187,
2948,
4955,
15,
8418,
15,
2413,
15,
2402,
3902,
31826,
28,
187,
2948,
4955,
15,
8418,
15,
2413,
15,
8559,
15,
23088,
2402,
3902,
31826,
28,
187,
187,
2948,
4959,
15,
6071,
15,
5856,
28,
187,
2948,
4959,
15,
1156,
15,
26592,
28,
187,
2948,
4959,
15,
1156,
15,
8982,
2548,
28,
187,
187,
2948,
7626,
15,
900,
15,
38487,
28,
187,
2948,
7626,
15,
8906,
15,
43797,
28,
187,
2948,
7626,
15,
8906,
15,
2765,
28,
187,
2948,
7626,
15,
8906,
15,
28847,
15,
48725,
28,
187,
2948,
7626,
15,
8906,
15,
28847,
15,
24975,
28,
187,
187,
2948,
21187,
15,
8629,
8833,
15,
9152,
15,
321,
620,
487,
15,
29796,
620,
487,
28,
187,
187,
4387,
966,
775,
27507,
1120,
8725,
6022,
551,
535,
50274,
9486,
4228,
2457,
4605,
34487,
426,
346,
1779,
27507,
1120,
3664,
535,
50274,
9486,
4228,
2457,
540,
378,
19871,
10560,
64,
1838,
426,
309,
16822,
15668,
15,
2775,
1556,
46,
46489,
28,
535,
50274,
9486,
29484,
294,
3145,
5443,
426,
29484,
15,
26032,
1587,
876,
31305,
19247,
10632,
3353,
84,
12,
2877,
21655,
8850,
2850,
9686,
12,
1572,
3,
3287,
187,
50274,
9486,
29484,
294,
5949,
31780,
426,
29484,
15,
26032,
1587,
876,
30212,
46330,
6570,
10632,
3353,
84,
12,
2877,
21655,
8850,
2850,
9686,
12,
1572,
3,
3287,
535,
50274,
9486,
29484,
294,
18091,
426,
29484,
187,
50266,
15,
26032,
43467,
2551,
2654,
21655,
10134,
5736,
7722,
472,
2402,
61,
1138,
9,
5929,
14677,
870,
2551,
43856,
187,
50258,
24975,
15,
42495,
64,
11965,
18041,
1433,
11477,
1040,
29484,
15,
38299,
3077,
7570,
1040,
29484,
15,
37,
2415,
5626,
558,
535,
50274,
9486,
29484,
294,
24774,
593,
426,
29484,
15,
26032,
9,
187,
50266,
3,
29,
2551,
2654,
21655,
10134,
5736,
7722,
472,
3902,
61,
1138,
9,
5929,
14677,
870,
2551,
43856,
187,
50266,
24975,
15,
42495,
64,
11965,
18041,
1433,
11477,
1040,
29484,
15,
38299,
3077,
7570,
1040,
29484,
15,
37,
2415,
5626,
558,
535,
50274,
9486,
4605,
2380,
426,
3635,
28,
535,
50274,
4387,
775,
27507,
1120,
9,
5856,
3634,
10,
551,
187,
50270,
12185,
9,
8882,
13,
416,
15,
31607,
15,
29402,
64,
348,
27507,
1120,
558,
187,
50270,
12185,
15,
5423,
13408,
1156,
45212,
426,
416,
15,
2703,
15,
9290,
64,
9133,
28,
187,
50270,
12185,
15,
5423,
34737,
45212,
426,
346,
25240,
25240,
25240,
25240,
3664,
187,
50270,
12185,
15,
5423,
2548,
45212,
426,
19832,
2548,
15,
10560,
64,
25734,
64,
40804,
28,
187,
50270,
12185,
15,
5423,
37828,
22147,
426,
2032,
28,
187,
50274,
94,
535,
50274,
33,
9677,
187,
50274,
4387,
540,
755,
16822,
881,
2618,
1082,
551,
187,
50270,
2309,
378,
19871,
10560,
64,
1838,
28,
187,
50274,
94,
535,
50274,
33,
9677,
187,
50274,
4387,
4605,
755,
2402,
1082,
551,
187,
50270,
2309,
34487,
28,
187,
50274,
94,
535,
50274,
4387,
775,
27507,
1120,
9,
2776,
22440,
13,
4605,
9868,
13,
25161,
3634,
10,
12326,
6022,
5330,
13,
187,
50266,
27689,
5330,
13,
6022,
48279,
5330,
13,
33638,
551,
187,
50270,
2520,
9,
8882,
558,
187,
50270,
2520,
15,
11183,
9,
19721,
13,
9868,
558,
187,
50274,
94,
535,
50274,
33,
9677,
187,
50274,
18641,
41977,
22113,
638,
27689,
1082,
12326,
6022,
5330,
13,
33638,
551,
187,
50270,
6434,
5758,
426,
747,
15520,
620,
487,
9,
8882,
558,
187,
50270,
10927,
426,
9688,
5758,
15,
5758,
1587,
2413,
1358,
76,
430,
77,
1911,
920,
20,
15,
39158,
16451,
32937,
22498,
84,
15,
339,
16,
9671,
15,
31024,
3287,
535,
50270,
48725,
1111,
5316,
3145,
426,
294,
3145,
5443,
15,
2056,
5316,
9,
10927,
558,
187,
50270,
338,
6522,
2056,
5316,
3145,
15,
8606,
6649,
551,
187,
50266,
22408,
747,
6022,
5330,
9,
187,
50258,
373,
15,
45461,
9,
51,
15,
2703,
15,
328,
494,
64,
936,
64,
8606,
481,
18264,
1082,
559,
346,
9182,
5443,
23715,
187,
50270,
94,
187,
50270,
2776,
1213,
3145,
5443,
426,
1111,
5316,
3145,
15,
4399,
9,
18,
558,
535,
50270,
48725,
1111,
5316,
5949,
426,
294,
5949,
31780,
15,
2056,
5316,
9,
10927,
558,
187,
50270,
338,
6522,
2056,
5316,
5949,
15,
8606,
6649,
551,
187,
50266,
22408,
747,
6022,
5330,
9,
187,
50258,
373,
15,
45461,
9,
51,
15,
2703,
15,
328,
494,
64,
936,
64,
8606,
481,
18264,
1082,
559,
346,
11846,
31780,
23715,
187,
50270,
94,
187,
50270,
2776,
1213,
5949,
426,
1111,
5316,
5949,
15,
4399,
9,
18,
558,
535,
50270,
2765,
29,
2402,
3902,
31826,
31,
1501,
3233,
426,
747,
26267,
29,
2402,
3902,
31826,
18257,
187,
50270,
5996,
3233,
15,
1911,
9,
1826,
20233,
2402,
3902,
31826,
1587,
876,
31305,
19247,
995,
1213,
3145,
5443,
4027,
187,
50270,
5996,
3233,
15,
1911,
9,
1826,
20233,
2402,
3902,
31826,
1587,
876,
30212,
46330,
6570,
995,
1213,
5949,
4027,
187,
50270,
5996,
3233,
15,
1911,
9,
1826,
20233,
2402,
3902,
31826,
1587,
10134,
18497,
8447,
995,
755,
45212,
30652,
187,
50270,
5996,
3233,
15,
1911,
9,
1826,
20233,
2402,
3902,
31826,
1587,
15581,
9301,
995,
346,
47,
1392,
18233,
17378,
187,
50270,
5996,
3233,
15,
1911,
9,
1826,
20233,
2402,
3902,
31826,
1587,
19057,
2513,
29279,
995,
346,
33710,
17378,
535,
50270,
2309,
747,
41977,
22113,
9,
6434,
5758,
13,
1501,
3233,
13,
2380,
13,
187,
50262,
3,
2413,
1358,
76,
430,
77,
1911,
920,
20,
15,
39158,
16451,
32937,
22498,
84,
15,
339,
16,
9671,
15,
31024,
3287,
187,
50274,
94,
535,
50274,
33,
9677,
187,
50274,
4387,
15520,
620,
487,
16164,
1082,
12326,
41977,
5330,
13,
6022,
5330,
13,
33638,
551,
187,
50270,
27689,
22113,
39322,
426,
638,
27689,
1874,
187,
50270,
10927,
426,
9688,
5758,
15,
5758,
9,
24343,
15,
788,
27689,
12168,
5715,
39322,
15,
788,
8983,
3233,
6020,
187,
50270,
338,
6522,
10927,
15,
24634,
1587,
6800,
2485,
2780,
14708,
551,
187,
50266,
22408,
747,
41977,
5330,
9,
373,
15,
45461,
9,
51,
15,
2703,
15,
25359,
64,
19721,
64,
15760,
481,
18264,
6020,
187,
50270,
94,
187,
50270,
2309,
9688,
5758,
28,
187,
50274,
94,
535,
50274,
33,
9677,
187,
50274,
4387,
2991,
5731,
1082,
12326,
6022,
5330,
13,
41977,
5330,
13,
6022,
48279,
5330,
13,
33638,
551,
187,
50270,
12185,
15,
11183,
1874,
187,
50270,
338,
313,
788,
45212,
5023,
41703,
6649,
551,
187,
50266,
22408,
747,
41977,
5330,
9,
373,
15,
45461,
9,
51,
15,
2703,
15,
25359,
64,
19721,
64,
15760,
481,
18264,
6020,
187,
50270,
94,
187,
50270,
6434,
5758,
426,
16164,
1874,
187,
50270,
10927,
426,
9688,
5758,
15,
5758,
1587,
2413,
1358,
76,
430,
77,
1911,
920,
20,
15,
39158,
16451,
32937,
22498,
84,
15,
339,
16,
18497,
9624,
64,
13921,
15,
31024,
3287,
187,
50270,
48725,
2395,
48725,
28,
187,
50270,
48725,
6654,
48725,
28,
535,
50270,
15793,
48725,
426,
294,
18091,
15,
2056,
5316,
9,
10927,
558,
187,
50270,
338,
313,
15793,
48725,
15,
8606,
6649,
551,
187,
50266,
3122,
187,
50265,
11,
9426,
459,
2390,
27,
187,
50265,
11,
42370,
50262,
4237,
40419,
27809,
187,
50265,
11,
337,
27,
9424,
50264,
44,
4781,
21138,
20897,
187,
50265,
8480,
535,
50266,
20203,
48725,
426,
294,
24774,
593,
15,
2056,
5316,
9,
10927,
558,
187,
50266,
338,
313,
20203,
48725,
15,
8606,
6649,
551,
187,
50262,
3122,
187,
50261,
11,
9426,
459,
2390,
27,
187,
50261,
11,
42370,
50262,
4237,
40419,
27809,
187,
50261,
11,
337,
27,
46378,
50264,
14711,
36407,
187,
50261,
8480,
535,
50262,
2776,
6654,
2776,
426,
6654,
48725,
15,
4399,
9,
18,
481,
13481,
3074,
1587,
3353,
29,
66,
5180,
31,
23741,
43856,
41956,
187,
50254,
15,
13481,
3074,
1587,
3353,
29,
5180,
31,
23741,
43856,
4890,
481,
24716,
1874,
535,
50262,
15793,
84,
15,
1911,
9,
1826,
16480,
9,
26592,
15,
4064,
26592,
9,
15793,
48725,
15,
4399,
9,
18,
5029,
18264,
5023,
24716,
5715,
187,
50254,
9494,
5726,
15,
12083,
24774,
593,
9,
20203,
2776,
582,
2395,
48725,
15,
4399,
9,
18,
23090,
187,
50262,
20203,
426,
6654,
15,
1911,
9,
9494,
5726,
15,
12083,
24774,
593,
9,
20203,
2776,
4027,
187,
50266,
94,
187,
50270,
94,
535,
50270,
338,
313,
15793,
84,
15,
41703,
6649,
551,
187,
50266,
22408,
747,
6022,
5330,
9,
373,
15,
45461,
9,
51,
15,
2703,
15,
2369,
64,
15793,
84,
64,
14541,
481,
18264,
6020,
187,
50270,
94,
535,
50270,
12185,
15,
11183,
26626,
1874,
187,
50274,
94,
187,
94,
187
] | package com.liato.bankdroid.banking.banks;
import com.liato.bankdroid.Helpers;
import com.liato.bankdroid.banking.Account;
import com.liato.bankdroid.banking.Bank;
import com.liato.bankdroid.banking.exceptions.BankChoiceException;
import com.liato.bankdroid.banking.exceptions.BankException;
import com.liato.bankdroid.banking.exceptions.LoginException;
import com.liato.bankdroid.legacy.R;
import com.liato.bankdroid.provider.IBankTypes;
import org.apache.http.NameValuePair;
import org.apache.http.message.BasicNameValuePair;
import android.content.Context;
import android.text.Html;
import android.text.InputType;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import eu.nullbyte.android.urllib.Urllib;
public class Chalmrest extends Bank {
private static final String NAME = "Chalmrest";
private static final int BANKTYPE_ID = IBankTypes.CHALMREST;
private Pattern reViewState = Pattern.compile("__VIEWSTATE\"\\s+value=\"([^\"]+)\"");
private Pattern reEventValidation = Pattern.compile("__EVENTVALIDATION\"\\s+value=\"([^\"]+)\"");
private Pattern reAccount = Pattern
.compile("<span id=\"txtPTMCardName\">(.*?)</span>",
Pattern.CASE_INSENSITIVE | Pattern.MULTILINE | Pattern.DOTALL);
private Pattern reBalance = Pattern.compile(
"<span id=\"txtPTMCardValue\">(.*?)</span>",
Pattern.CASE_INSENSITIVE | Pattern.MULTILINE | Pattern.DOTALL);
private String response = null;
public Chalmrest(Context context) {
super(context, R.drawable.logo_chalmrest);
super.inputTitletextUsername = R.string.card_number;
super.inputHintUsername = "XXXXXXXXXXXXXXXX";
super.inputTypeUsername = InputType.TYPE_CLASS_NUMBER;
super.inputHiddenPassword = true;
}
@Override
public int getBanktypeId() {
return BANKTYPE_ID;
}
@Override
public String getName() {
return NAME;
}
public Chalmrest(String username, String password, Context context) throws BankException,
LoginException, BankChoiceException, IOException {
this(context);
this.update(username, password);
}
@Override
protected LoginPackage preLogin() throws BankException, IOException {
urlopen = new Urllib(context);
response = urlopen.open("http://kortladdning3.chalmerskonferens.se/Default.aspx");
Matcher matcherView = reViewState.matcher(response);
if (!matcherView.find()) {
throw new BankException(
res.getText(R.string.unable_to_find).toString() + " ViewState.");
}
String strViewState = matcherView.group(1);
Matcher matcherEvent = reEventValidation.matcher(response);
if (!matcherEvent.find()) {
throw new BankException(
res.getText(R.string.unable_to_find).toString() + " EventValidation.");
}
String strEvent = matcherEvent.group(1);
List<NameValuePair> postData = new ArrayList<NameValuePair>();
postData.add(new BasicNameValuePair("__VIEWSTATE", strViewState));
postData.add(new BasicNameValuePair("__EVENTVALIDATION", strEvent));
postData.add(new BasicNameValuePair("txtCardNumber", getUsername()));
postData.add(new BasicNameValuePair("btnNext", "Nästa"));
postData.add(new BasicNameValuePair("hiddenIsMobile", "desktop"));
return new LoginPackage(urlopen, postData, response,
"http://kortladdning3.chalmerskonferens.se/Default.aspx");
}
@Override
public Urllib login() throws LoginException, BankException, IOException {
LoginPackage lp = preLogin();
response = urlopen.open(lp.getLoginTarget(), lp.getPostData());
if (!response.contains("Logga ut")) {
throw new LoginException(res.getText(R.string.invalid_username_password).toString());
}
return urlopen;
}
@Override
public void update() throws BankException, LoginException, BankChoiceException, IOException {
super.update();
if (getUsername().isEmpty()) {
throw new LoginException(res.getText(R.string.invalid_username_password).toString());
}
urlopen = login();
response = urlopen.open("http://kortladdning3.chalmerskonferens.se/CardLoad_Order.aspx");
Matcher accountMatcher;
Matcher balanceMatcher;
accountMatcher = reAccount.matcher(response);
if (accountMatcher.find()) {
/*
* Capture groups:
* GROUP EXAMPLE DATA
* 1: Name Kalle Karlsson
*/
balanceMatcher = reBalance.matcher(response);
if (balanceMatcher.find()) {
/*
* Capture groups:
* GROUP EXAMPLE DATA
* 1: Balance 118 kr
*/
String balanceString = balanceMatcher.group(1).replaceAll("\\<a[^>]*>", "")
.replaceAll("\\<[^>]*>", "").trim();
accounts.add(new Account(Html.fromHtml(accountMatcher.group(1)).toString().trim(),
Helpers.parseBalance(balanceString), accountMatcher.group(1)));
balance = balance.add(Helpers.parseBalance(balanceString));
}
}
if (accounts.isEmpty()) {
throw new BankException(res.getText(R.string.no_accounts_found).toString());
}
super.updateComplete();
}
}
|
214,455 | Github | [
1591,
254,
28146,
246,
2874,
1591,
254,
28,
187,
10121,
551,
187,
50276,
12982,
426,
13814,
20,
28,
187,
94,
187,
187,
59,
34675,
27,
686,
17,
5618,
187
] | lexer grammar t001lexer;
options {
language = Python3;
}
ZERO: '0';
|
214,456 | Github | [
4,
401,
44599,
187,
1552,
11534,
4428,
253,
6880,
7092,
323,
253,
187,
60,
39,
44599,
880,
3614,
1358,
2700,
15,
71,
44599,
15,
681,
10,
2579,
15,
187,
187,
510,
7092,
310,
1754,
745,
273,
544,
39,
44599,
21,
19469,
880,
3614,
1358,
7280,
15,
681,
16,
4006,
336,
90,
16,
39,
44599,
21,
19469,
481,
187,
187,
817,
5128,
6023,
7551,
535,
428,
544,
46570,
880,
7614,
16,
7265,
16,
5594,
16,
2061,
16,
8608,
255,
16147,
1592,
10408,
16,
8608,
255,
16147,
1592,
16,
71,
44599,
16,
47377,
10,
16912,
708,
44858,
187,
187,
817,
11604,
2418,
187,
2302,
1929,
3374,
13,
2299,
751,
1199,
273,
399,
12261,
1335,
3198,
690,
275,
6864,
5175,
281,
5416,
7145,
187,
12866,
403,
2444,
15,
187,
187,
817,
38793,
708,
21326,
187,
187,
42102,
323,
247,
2234,
387,
544,
2700,
15,
71,
44599,
15,
681,
16,
21922,
16,
28047,
16,
6953,
16,
18788,
880,
3614,
1358,
2700,
15,
71,
44599,
15,
681,
16,
21922,
16,
28047,
16,
6953,
16,
18788,
10,
187,
187,
39,
44599,
4648,
473,
15714,
337,
15,
17,
323,
26239,
15,
187,
187,
817,
353,
1143,
1243,
2896,
187,
187,
510,
401,
44599,
6880,
369,
3562,
407,
253,
187,
60,
37,
12261,
6558,
398,
880,
5719,
936,
27,
631,
1430,
14,
41322,
39982,
33,
9906,
12896,
15,
681,
10,
187,
395,
310,
417,
271,
3565,
1885,
273,
401,
44599,
15,
187
] | # Flickr
This folder contains the extension implementation for the
[Flickr](https://www.flickr.com) service.
The implementation is based off of [Flickr4Java](https://github.com/boncey/Flickr4Java).
## Data Supported
- [Photos](src/main/java/org/datatransferproject/datatransfer/flickr/photos) Import & Export
## Current State
No known issues, however like much of DTP still needs some in depth testing to ensure corner
cases are working.
## Keys & Auth
Apply for a key at [www.flickr.com/services/apps/create/apply](https://www.flickr.com/services/apps/create/apply)
Flickr uses OAuth 1.0 for authorization.
## Maintained By
The Flickr extension was created by the
[DTP maintainers](mailto:[email protected])
and is not an official product of Flickr.
|
214,457 | Github | [
72,
7083,
15,
900,
16,
9906,
64,
1987,
39982,
16,
76,
4338,
14,
31062,
14398,
14,
377,
68,
1540,
282,
27,
87,
18,
15,
740,
15,
17,
14,
2461,
15,
17,
187
] | gcr.io/google_containers/kube-scheduler-ppc64le:v1.10.0-beta.0
|
214,458 | Github | [
187,
29,
1913,
14,
21934,
31,
535,
186,
29,
1590,
31,
8547,
18,
15,
89,
1913,
870,
1590,
31,
187,
186,
29,
4149,
31,
18,
870,
4149,
31,
187,
186,
29,
5564,
31,
5089,
273,
7646,
4445,
870,
5564,
31,
187,
186,
29,
36193,
14,
5251,
31,
13125,
870,
36193,
14,
5251,
31,
187,
186,
29,
37442,
31,
996,
186,
29,
7582,
31,
18448,
39736,
870,
7582,
31,
996,
186,
29,
10008,
3073,
10008,
31,
996,
186,
29,
13070,
3073,
13070,
31,
187,
186,
870,
37442,
31,
535,
186,
29,
43824,
31,
996,
186,
29,
34590,
1511,
568,
2703,
1138,
988,
50276,
29,
6986,
14,
2877,
31,
11336,
870,
6986,
14,
2877,
31,
988,
186,
29,
33491,
31,
2657,
186,
29,
9629,
31,
34590,
870,
9629,
31,
209,
988,
186,
870,
33491,
31,
996,
186,
870,
34590,
31,
988,
186,
29,
17187,
1511,
568,
2703,
1138,
988,
50276,
186,
186,
29,
6986,
14,
2877,
31,
15491,
870,
6986,
14,
2877,
31,
988,
50276,
186,
870,
17187,
31,
988,
50276,
186,
29,
8547,
1511,
568,
2703,
1138,
988,
50276,
186,
186,
29,
6986,
14,
2877,
31,
30298,
39846,
34590,
15996,
310,
275,
2919,
551,
17187,
28379,
6986,
14,
2877,
31,
988,
50276,
186,
870,
8547,
31,
187,
186,
870,
43824,
31,
535,
186,
29,
44902,
31,
996,
186,
29,
9252,
1511,
568,
2703,
5647,
187,
186,
870,
44902,
31,
187,
50276,
29,
21830,
4357,
187,
50276,
187,
50276,
29,
3518,
31,
187,
50272,
29,
1913,
14,
28692,
31,
187,
50272,
186,
29,
1913,
14,
43824,
31,
988,
186,
29,
34590,
1511,
568,
2703,
5647,
988,
186,
29,
17187,
1511,
568,
2703,
5647,
988,
186,
29,
8547,
1511,
568,
2703,
5647,
187,
50272,
186,
870,
1913,
14,
43824,
31,
187,
50270,
29,
1913,
14,
44902,
31,
187,
50268,
186,
29,
9252,
1511,
568,
2703,
5647,
187,
50270,
870,
1913,
14,
44902,
31,
187,
50270,
187,
50270,
29,
15658,
14,
1590,
31,
14968,
12118,
870,
15658,
14,
1590,
31,
187,
50270,
29,
1913,
14,
881,
31,
15093,
870,
1913,
14,
881,
31,
187,
50272,
186,
29,
15658,
14,
28692,
31,
187,
50270,
870,
15658,
14,
28692,
31,
187,
50272,
870,
1913,
14,
28692,
31,
187,
50276,
870,
3518,
31,
187,
870,
1913,
14,
21934,
31,
187
] |
<action-sequence>
<name>template1.xaction</name>
<version>1</version>
<title>Test of template component</title>
<logging-level>debug</logging-level>
<documentation>
<author>James Dixon</author>
<description></description>
<help></help>
</documentation>
<inputs>
<customer type="string">
<default-value>None</default-value>
<sources>
<request>customer</request>
</sources>
</customer>
<region type="string">
<default-value>West</default-value>
</region>
<template type="string">
<default-value>Customer '{customer}' is in region {region}</default-value>
</template>
</inputs>
<outputs>
<output type="string"/>
</outputs>
<resources/>
<actions>
<action-definition>
<action-inputs>
<customer type="string"/>
<region type="string"/>
<template type="string"/>
</action-inputs>
<action-outputs>
<output type="string"/>
</action-outputs>
<component-name>TemplateComponent</component-name>
<action-type>rule</action-type>
<component-definition>
</component-definition>
</action-definition>
</actions>
</action-sequence>
|
214,459 | Github | [
3122,
7567,
1788,
285,
30680,
14,
20053,
3987,
1738,
187,
3122,
33246,
353,
5479,
21589,
1738,
187,
187,
4064,
2969,
15,
13125,
3390,
15,
4756,
40245,
187,
4064,
2969,
15,
8906,
15,
35184,
187,
187,
1000,
21611,
426,
747,
11759,
40245,
187,
1000,
21611,
27547,
84,
426,
4772,
6082,
64,
26059,
9,
1000,
21611,
10,
187,
1542,
2228,
275,
1486,
21611,
27547,
84,
551,
187,
186,
3775,
3902,
426,
4772,
788,
64,
15810,
64,
2877,
9,
1000,
21611,
13,
3775,
10,
187,
186,
35856,
15,
17148,
12964,
9,
35184,
6573,
15,
37,
18004,
34803,
13,
3775,
559,
346,
426,
346,
559,
2228,
3902,
559,
8894,
79,
2807,
187,
94
] | /* Reflection and Meta-Programming */
/* ERROR MESSAGES */
from simple.debugging.ErrorMessages
from simple.util.Console
errMsg = new ErrorMessages
errMsgAttrs = __object_attributes(errMsg)
for error in errMsgAttrs {
errorValue = __get_attribute_value(errMsg,error)
stderr.Printfc(ConsoleColor.DARKRED,error + " = " + errorValue + "\n")
} |
214,460 | Github | [
2327,
369,
78,
64,
13245,
1541,
1450,
81,
1661,
2496,
1450,
25350,
187,
187,
4,
60,
4238,
78,
64,
13245,
1541,
9,
10706,
1687,
64,
13994,
64,
4674,
9102,
187,
3474,
22465,
64,
19118,
36502,
64,
30216,
27,
708,
8,
4659,
1213,
426,
391,
3,
187,
50276,
15049,
36506,
551,
4898,
27,
1180,
28,
748,
187,
3664,
187,
187,
4,
60,
4238,
78,
64,
13245,
1541,
62,
187,
16712,
1577,
15694,
551,
187,
50274,
16712,
4898,
27,
1484,
1237,
13,
187,
94,
187
] | use wasm_bindgen::prelude::*;
#[wasm_bindgen(typescript_custom_section)]
const TS_INTERFACE_EXPORT: &'static str = r"
interface Height { height: number; }
";
#[wasm_bindgen]
pub struct Person {
pub height: u32,
}
|
214,461 | Github | [
2948,
23782,
432,
686,
22312,
5618,
187,
2948,
14957,
432,
686,
22127,
16,
28541,
2009,
16,
28541,
2009,
15,
1026,
859,
5618,
187,
187,
15035,
4284,
35236,
1416,
13,
39144,
13985,
3001,
313,
187,
50276,
29,
2154,
32181,
11787,
17817,
15,
6259,
2946,
94,
39144,
11787,
251,
7146,
20499,
187,
50274,
92,
1590,
94,
187,
50276,
870,
2154,
31,
187,
558,
187
] | import React from 'react';
import styles from 'components/Sidebar/Sidebar.scss';
export default ({ name, onClick }) => (
<div className={styles.currentApp} onClick={onClick}>
{name}
</div>
);
|
214,462 | Github | [
4,
3182,
427,
2300,
32718,
9566,
12953,
329,
187,
28997,
32718,
9566,
551,
187,
565,
31814,
28,
50268,
3122,
6004,
337,
1738,
50270,
605,
18342,
27,
540,
4033,
28,
187,
94,
187,
565,
31814,
28,
50254,
50272,
605,
18342,
27,
540,
31814,
28,
187,
565,
1165,
2310,
426,
31814,
28,
50254,
605,
18342,
27,
540,
1165,
2310,
426,
31814,
28,
187,
565,
378,
1370,
426,
329,
1450,
34296,
28,
3476,
6004,
374,
1738,
50270,
605,
18342,
27,
378,
1370,
426,
329,
1450,
7912,
28,
187,
4353,
794,
1082,
551,
187,
50276,
2855,
551,
187,
50274,
565,
31814,
28,
50254,
50276,
605,
18342,
27,
540,
31814,
28,
187,
50276,
94,
270,
426,
551,
2313,
4718,
187,
50276,
565,
31814,
426,
2233,
28,
50256,
605,
18342,
27,
540,
31814,
426,
2233,
28,
187,
50276,
35,
1370,
426,
31814,
28,
50254,
50276,
605,
18342,
27,
378,
1370,
426,
31814,
28,
187,
50276,
92,
187,
50274,
19560,
540,
31814,
28,
50259,
605,
18342,
27,
23489,
540,
31814,
28,
187,
50274,
35,
1370,
426,
31814,
28,
50254,
605,
18342,
27,
378,
1370,
426,
31814,
28,
187,
50274,
34296,
426,
329,
1450,
34296,
3476,
6004,
495,
1738,
559,
378,
1370,
28,
50276,
605,
18342,
27,
31814,
426,
329,
1450,
7912,
3476,
6004,
495,
1738,
559,
378,
1370,
28,
187,
50274,
34,
1450,
34296,
3476,
6004,
577,
1738,
426,
270,
15,
34296,
28,
50272,
605,
18342,
27,
329,
1450,
7912,
3476,
6004,
577,
1738,
426,
270,
15,
34296,
28,
187,
50276,
94,
187,
50276,
34296,
426,
270,
15,
34296,
28,
50254,
605,
31814,
426,
270,
15,
34296,
28,
187,
94,
187,
187,
605,
6004,
337,
15,
187,
605,
34540,
27,
502,
606,
14,
445,
482,
428,
10946,
30,
2950,
428,
1826,
14,
1590,
30,
7912,
2462,
84,
1969,
1040,
9043,
686,
84,
13,
605,
20011,
4117,
1040,
8490,
9063,
2462,
84,
187,
605,
6004,
374,
15,
187,
605,
34540,
27,
502,
606,
14,
445,
482,
428,
10946,
30,
20210,
428,
1826,
14,
1590,
30,
7912,
2462,
84,
1969,
1040,
9043,
686,
84,
13,
605,
20011,
4117,
1040,
8490,
9063,
2462,
84,
187,
605,
6004,
495,
15,
187,
605,
34540,
27,
502,
606,
14,
445,
482,
428,
10946,
30,
33976,
428,
1826,
14,
1590,
30,
7912,
2462,
84,
1969,
1040,
9043,
686,
84,
13,
605,
20011,
4117,
1040,
8490,
9063,
2462,
84,
187,
605,
6004,
577,
15,
187,
605,
34540,
27,
502,
606,
14,
445,
482,
428,
10946,
30,
48379,
428,
1826,
14,
1590,
30,
7912,
2462,
84,
1969,
1040,
9043,
686,
84,
13,
605,
20011,
4117,
1040,
8490,
9063,
2462,
84,
187,
187,
605,
1916,
1089,
41669,
846,
26264,
253,
1873,
13,
897,
27,
187,
605,
50275,
72,
4762,
428,
54,
2399,
686,
34296,
5929,
8,
654,
3140,
31,
187
] | #define NAMESPACE namespace A
NAMESPACE {
int Foo; /* Test 1 */ // CHECK: int Bar;
}
int Foo; // CHECK: int Foo;
int Qux = Foo; // CHECK: int Qux = Foo;
int Baz = A::Foo; /* Test 2 */ // CHECK: Baz = A::Bar;
void fun() {
struct {
int Foo; // CHECK: int Foo;
} b = {100};
int Foo = 100; // CHECK: int Foo = 100;
Baz = Foo; // CHECK: Baz = Foo;
{
extern int Foo; // CHECK: extern int Foo;
Baz = Foo; // CHECK: Baz = Foo;
Foo = A::Foo /* Test 3 */ + Baz; // CHECK: Foo = A::Bar /* Test 3 */ + Baz;
A::Foo /* Test 4 */ = b.Foo; // CHECK: A::Bar /* Test 4 */ = b.Foo;
}
Foo = b.Foo; // Foo = b.Foo;
}
// Test 1.
// RUN: clang-rename -offset=46 -new-name=Bar %s -- | sed 's,//.*,,' | FileCheck %s
// Test 2.
// RUN: clang-rename -offset=234 -new-name=Bar %s -- | sed 's,//.*,,' | FileCheck %s
// Test 3.
// RUN: clang-rename -offset=641 -new-name=Bar %s -- | sed 's,//.*,,' | FileCheck %s
// Test 4.
// RUN: clang-rename -offset=716 -new-name=Bar %s -- | sed 's,//.*,,' | FileCheck %s
// To find offsets after modifying the file, use:
// grep -Ubo 'Foo.*' <file>
|
214,463 | Github | [
61,
1590,
92,
27716,
257,
14,
2437,
94,
187,
61,
7152,
2548,
92,
2437,
94,
187,
61,
5564,
92,
4947,
393,
3211,
9819,
27716,
257,
986,
285,
15345,
1080,
323,
15790,
14736,
49874,
6081,
6550,
94,
187,
61,
29913,
92,
27716,
257,
14,
2437,
94,
187,
61,
29913,
92,
27716,
257,
94,
187,
61,
10008,
92,
187,
50276,
61,
3211,
9819,
27716,
257,
986,
310,
247,
3806,
966,
323,
247,
14072,
3186,
13434,
5556,
6081,
13,
187,
50276,
1542,
247,
4764,
1561,
271,
7726,
15,
535,
50276,
61,
3211,
92,
27716,
257,
1082,
94,
310,
253,
14156,
323,
253,
393,
3211,
9819,
27716,
257,
986,
187,
50276,
2437,
15,
50276,
510,
5556,
6081,
4648,
8107,
10924,
15,
187,
94,
187,
61,
24483,
92,
187,
27716,
257,
9,
19552,
187,
94,
187,
61,
31126,
92,
187,
50276,
61,
4835,
464,
6768,
18424,
2003,
314,
15266,
10,
7125,
4817,
281,
187,
50274,
61,
3211,
464,
4492,
92,
1826,
94,
1082,
94,
1364,
320,
4907,
7125,
15,
50276,
61,
3211,
92,
12973,
94,
285,
187,
50274,
61,
3211,
92,
23725,
94,
403,
253,
14493,
323,
253,
13434,
4764,
28,
597,
1364,
320,
187,
50274,
35161,
35918,
187,
94,
187,
61,
4674,
92,
7992,
1727,
1217,
187,
50276,
3074,
3806,
5971,
9017,
285,
30686,
3082,
432,
187,
50276,
61,
3211,
9819,
61,
4492,
52,
21,
2437,
92,
12540,
7676,
4947,
94,
7129,
187,
94,
187,
61,
32045,
92,
187,
9029,
4947,
1587,
27716,
257,
2807,
187,
187,
27716,
257,
9,
12973,
30,
428,
2313,
13,
5170,
30,
337,
70,
2313,
10,
187,
94,
187,
61,
23295,
92,
19770,
94,
535
] | \name{golden-class}
\docType{class}
\title{Class \code{"golden"} and Generator for Golden Search Optimizer Class}
\alias{golden-class}
\alias{golden}
\description{
\code{"golden"} is a reference class for a golden search scalar optimizer,
for a parameter within an interval.
\code{golden()} is the generator for the \code{"golden"}
class. The optimizer uses reverse communications.
}
\usage{
golden(...)
}
\arguments{
\item{\dots}{(partly optional) arguments passed to
\code{\link{new}()} must be named arguments. \code{lower} and
\code{upper} are the bounds for the scalar parameter; they must be
finite.}
}
\section{Extends}{
All reference classes extend and inherit methods from
\code{"\linkS4class{envRefClass}"}.
}
\examples{
showClass("golden")
golden(lower= -100, upper= 1e100)
}
\keyword{classes}
|
214,464 | Github | [
3122,
187,
475,
13492,
6254,
323,
5865,
5579,
4095,
13496,
342,
378,
19,
36,
19,
34340,
21592,
2267,
9,
67,
1933,
8296,
187,
475,
6520,
21592,
14,
1747,
15,
73,
428,
8749,
38562,
323,
34340,
49964,
2267,
13,
34340,
49964,
2267,
67,
285,
34340,
49964,
8296,
187,
475,
923,
6520,
21592,
15,
68,
323,
9451,
1491,
187,
1738,
187,
4,
17331,
4772,
39,
40680,
27004,
64,
11991,
64,
41,
876,
187,
4,
3182,
4772,
39,
40680,
27004,
64,
11991,
64,
41,
876,
187,
187,
17743,
15972,
551,
187,
186,
39,
40680,
27004,
64,
4037,
44,
426,
470,
13,
187,
186,
39,
40680,
27004,
64,
2267,
13,
187,
186,
39,
40680,
27004,
64,
2267,
35,
13,
187,
186,
39,
40680,
27004,
64,
8296,
13,
187,
94,
6520,
21592,
64,
250,
4694,
64,
85,
28,
187,
187,
17743,
15972,
551,
187,
186,
6739,
64,
4037,
44,
426,
470,
13,
187,
186,
6739,
64,
36,
8908,
13,
187,
186,
6739,
64,
34,
3027,
64,
26807,
11584,
13,
187,
186,
6739,
64,
34,
3027,
64,
1194,
4061,
18,
13,
187,
186,
6739,
64,
34,
3027,
64,
1194,
4061,
19,
13,
187,
186,
6739,
64,
34,
3027,
64,
1194,
4061,
20,
13,
187,
186,
6739,
64,
16582,
58,
64,
1848,
55,
1508,
13,
187,
186,
6739,
64,
16582,
58,
64,
1848,
55,
1731,
13,
187,
186,
6739,
64,
16582,
58,
64,
1848,
55,
1630,
13,
187,
186,
6739,
64,
16582,
58,
64,
1848,
55,
1619,
13,
187,
94,
6520,
21592,
64,
10933,
64,
881,
64,
85,
28,
187,
187,
17743,
15972,
551,
187,
186,
6739,
64,
26346,
426,
470,
13,
187,
186,
6739,
64,
38941,
13,
187,
94,
6520,
21592,
64,
13097,
64,
85,
28,
187,
187,
3122,
34340,
49964,
309,
6159,
3667,
8328,
1738,
187,
4,
338,
2931,
18583,
45,
27823,
1843,
64,
8112,
26081,
10,
187,
4,
3709,
346,
23210,
21592,
64,
29294,
64,
2877,
64,
282,
15,
73,
3,
187,
4,
7271,
187,
4,
338,
2931,
18583,
35,
2431,
64,
8112,
26081,
10,
187,
4,
3709,
346,
23210,
21592,
64,
29294,
64,
2877,
64,
1257,
15,
73,
3,
187,
4,
7271,
187,
4,
3775,
642,
990,
757,
2931,
187,
4,
7287,
187,
4,
7287,
187,
187,
4,
3182,
269,
68,
64,
2203,
64,
12547,
64,
1838,
64,
26807,
35,
50276,
17,
89,
20,
70,
187,
4,
3182,
269,
68,
64,
2203,
64,
12547,
64,
1838,
64,
1194,
4061,
470,
89,
20,
71,
187,
4,
3182,
269,
68,
64,
2203,
64,
12547,
64,
1838,
64,
15782,
35,
470,
89,
25,
67,
187,
187,
4,
3182,
269,
68,
64,
2364,
64,
3211,
64,
6986,
470,
89,
18,
187,
4,
3182,
269,
68,
64,
2364,
64,
3211,
64,
9154,
50274,
17,
89,
19,
187,
4,
3182,
269,
68,
64,
2364,
64,
3211,
64,
13323,
50273,
17,
89,
20,
187,
187,
19560,
6520,
21592,
64,
29294,
64,
2877,
18890,
74,
64,
10528,
28,
187,
187,
17743,
15972,
551,
187,
186,
6739,
64,
42,
19,
36,
64,
13766,
64,
2573,
26980,
50276,
30,
337,
13,
187,
186,
6739,
64,
42,
19,
36,
64,
13766,
64,
5607,
35672,
426,
374,
13,
187,
186,
6739,
64,
42,
19,
36,
64,
13766,
64,
53,
4037,
947,
50276,
30,
495,
13,
187,
94,
6520,
21592,
64,
74,
19,
68,
64,
631,
64,
85,
28,
187,
187,
17743,
15972,
551,
187,
186,
6739,
64,
25444,
426,
470,
13,
187,
186,
6739,
64,
13587,
50276,
30,
337,
13,
187,
94,
6520,
21592,
64,
10773,
64,
412,
64,
85,
28,
187,
187,
17743,
15972,
551,
187,
186,
6739,
64,
7611,
2300,
64,
2573,
1267,
64,
11502,
50275,
30,
337,
13,
187,
186,
6739,
64,
7611,
2300,
64,
2573,
1267,
64,
4280,
42,
50275,
30,
374,
13,
187,
186,
6739,
64,
7611,
2300,
64,
2573,
1267,
64,
4280,
48,
50275,
30,
577,
13,
187,
186,
6739,
64,
7611,
2300,
64,
2573,
1267,
64,
19047,
5236,
426,
854,
187,
94,
6520,
21592,
64,
84,
3358,
64,
10812,
64,
85,
28,
187,
187,
17743,
15972,
551,
187,
186,
6739,
64,
7611,
2300,
64,
2573,
1267,
64,
31613,
64,
56,
1539,
64,
26346,
426,
470,
13,
187,
186,
6739,
64,
7611,
2300,
64,
2573,
1267,
64,
31613,
64,
32843,
18,
50274,
30,
337,
13,
187,
186,
6739,
64,
7611,
2300,
64,
2573,
1267,
64,
31613,
64,
32843,
19,
50274,
30,
374,
13,
187,
186,
6739,
64,
7611,
2300,
64,
2573,
1267,
64,
31613,
64,
6739,
20,
64,
4280,
50276,
30,
495,
187,
94,
6520,
21592,
64,
84,
3358,
64,
10812,
64,
7831,
64,
85,
28,
187,
187,
17743,
15972,
551,
187,
186,
6739,
64,
7611,
2300,
64,
19,
64,
1237,
26498,
50276,
30,
470,
13,
3476,
50276,
1540,
26498,
1738,
187,
186,
6739,
64,
7611,
2300,
64,
18,
64,
1237,
26498,
50276,
30,
337,
13,
3476,
50276,
1237,
26498,
428,
4284,
269,
319,
16004,
2267,
1738,
187,
186,
6739,
64,
7611,
2300,
64,
18,
64,
8196,
26498,
426,
374,
13,
3476,
12842,
26498,
1738,
187,
186,
6739,
64,
7611,
2300,
64,
18,
64,
2385,
26498,
50276,
30,
495,
13,
3476,
50276,
2385,
26498,
428,
4284,
323,
16004,
8296,
1738,
187,
94,
6520,
21592,
64,
84,
3358,
64,
881,
64,
85,
28,
187,
187,
17743,
15972,
551,
187,
186,
6739,
64,
56,
1539,
64,
22395,
1703,
64,
21,
9180,
24265,
50276,
30,
470,
13,
187,
186,
6739,
64,
56,
1539,
64,
22395,
1703,
64,
25,
9180,
24265,
50276,
30,
337,
13,
187,
186,
6739,
64,
56,
1539,
64,
22395,
1703,
64,
805,
9180,
24265,
426,
374,
13,
187,
186,
6739,
64,
56,
1539,
64,
22395,
1703,
64,
1036,
9180,
24265,
426,
495,
13,
187,
94,
6520,
21592,
64,
10320,
64,
15507,
64,
85,
28,
187,
187,
17743,
15972,
551,
187,
186,
6739,
64,
32843,
64,
18,
426,
337,
13,
187,
186,
6739,
64,
32843,
64,
19,
426,
374,
13,
187,
94,
6520,
21592,
64,
28278,
64,
4663,
64,
85,
28,
187,
187,
17743,
15972,
551,
187,
186,
6739,
64,
32843,
64,
32769,
20144,
64,
17,
426,
337,
13,
187,
186,
6739,
64,
32843,
64,
32769,
20144,
64,
18,
426,
374,
13,
187,
94,
6520,
21592,
64,
28278,
64,
9834,
64,
4663,
64,
85,
28,
187,
187,
3122,
4454,
273,
253,
1798,
25611,
1738,
187,
17743,
15972,
551,
187,
186,
28278,
18,
64,
933,
50266,
30,
470,
89,
933,
13,
187,
186,
28278,
18,
64,
5525,
50266,
30,
470,
89,
5525,
13,
187,
186,
28278,
18,
64,
8897,
50266,
30,
470,
89,
8897,
13,
187,
186,
28278,
18,
64,
361,
68,
50266,
30,
470,
89,
361,
68,
13,
187,
186,
28278,
19,
64,
9104,
50266,
30,
470,
89,
9104,
13,
187,
186,
28278,
19,
64,
11494,
50266,
30,
470,
89,
11494,
13,
187,
186,
28278,
19,
64,
12058,
50266,
30,
470,
89,
12058,
13,
187,
186,
28278,
19,
64,
520,
68,
50266,
30,
470,
89,
520,
68,
13,
535,
186,
7553,
64,
3610,
64,
68,
64,
2313,
50269,
30,
470,
89,
2313,
13,
187,
186,
7553,
64,
3610,
64,
68,
64,
11238,
50269,
30,
470,
89,
11238,
13,
187,
186,
7553,
64,
3610,
64,
68,
64,
12347,
50269,
30,
470,
89,
12347,
13,
187,
186,
7553,
64,
3610,
64,
68,
64,
740,
68,
50269,
30,
470,
89,
740,
68,
13,
187,
186,
7553,
64,
3610,
64,
68,
64,
7749,
50269,
30,
470,
89,
7749,
13,
535,
186,
77,
5668,
64,
16065,
64,
41122,
64,
1518,
426,
470,
89,
1518,
13,
187,
186,
43671,
64,
15781,
50266,
30,
470,
89,
15781,
13,
187,
186,
24845,
64,
17391,
50266,
30,
470,
89,
17391,
13,
187,
186,
20331,
64,
938,
68,
50265,
30,
470,
89,
938,
68,
13,
187,
186,
2140,
64,
19511,
64,
16899,
50270,
30,
470,
89,
16899,
13,
187,
186,
43671,
64,
21866,
50266,
30,
470,
89,
21866,
13,
187,
186,
6190,
64,
87,
25,
64,
936,
64,
5465,
64,
22981,
426,
470,
89,
22981,
13,
187,
186,
6190,
64,
5465,
64,
936,
64,
87,
25,
64,
1797,
68,
426,
470,
89,
1797,
68,
13,
535,
186,
4239,
64,
10978,
64,
7554,
50272,
30,
470,
89,
7554,
13,
187,
186,
4239,
64,
10978,
64,
19321,
50272,
30,
470,
89,
19321,
13,
187,
186,
4239,
64,
10978,
64,
20777,
50272,
30,
470,
89,
20777,
13,
187,
186,
4239,
64,
10978,
64,
1229,
68,
50272,
30,
470,
89,
1229,
68,
13,
187,
186,
4663,
64,
1747,
64,
19569,
50271,
30,
470,
89,
19569,
13,
187,
186,
4239,
64,
79,
64,
1747,
64,
18486,
50271,
30,
470,
89,
18486,
13,
187,
186,
12432,
64,
676,
64,
1747,
64,
28560,
50273,
30,
470,
89,
28560,
13,
187,
186,
12432,
64,
8656,
64,
1747,
64,
2405,
68,
50274,
30,
470,
89,
2405,
68,
13,
535,
186,
2203,
64,
7784,
64,
8320,
50270,
30,
470,
89,
8320,
13,
187,
186,
9290,
64,
301,
64,
22488,
50269,
30,
470,
89,
22488,
13,
187,
186,
9290,
64,
301,
64,
1449,
68,
50269,
30,
470,
89,
1449,
68,
13,
187,
186,
12432,
64,
12025,
64,
35833,
50273,
30,
470,
89,
35833,
13,
187,
186,
12432,
64,
12025,
64,
3156,
68,
50273,
30,
470,
89,
3156,
68,
13,
535,
186,
5297,
64,
10487,
50264,
30,
470,
89,
10487,
13,
187,
186,
2059,
64,
26890,
50264,
30,
470,
89,
26890,
13,
187,
186,
2059,
64,
25805,
50264,
30,
470,
89,
25805,
13,
187,
186,
27088,
67,
64,
1747,
64,
1549,
68,
50269,
30,
470,
89,
1549,
68,
13,
535,
186,
84,
3358,
64,
24845,
64,
1747,
64,
14744,
50275,
30,
470,
89,
14744,
13,
187,
186,
3024,
64,
8340,
64,
1747,
64,
26942,
50273,
30,
470,
89,
26942,
13,
187,
186,
68,
2284,
64,
8340,
64,
1747,
64,
27158,
50273,
30,
470,
89,
27158,
13,
187,
186,
6357,
80,
64,
8340,
64,
1747,
64,
1967,
68,
50273,
30,
470,
89,
1967,
68,
13,
187,
186,
8236,
64,
8340,
64,
1747,
64,
41680,
50275,
30,
470,
89,
41680,
13,
187,
186,
84,
3358,
64,
10812,
64,
1747,
64,
44034,
50275,
30,
470,
89,
44034,
13,
187,
186,
3024,
64,
8340,
64,
1747,
64,
49909,
50273,
30,
470,
89,
49909,
13,
187,
186,
10320,
64,
24845,
64,
1747,
64,
3677,
68,
50274,
30,
470,
89,
3677,
68,
13,
187,
94,
6520,
21592,
64,
29294,
64,
15905,
28,
187,
187,
4,
3182,
6520,
21592,
64,
1178,
64,
29294,
64,
2877,
9,
1747,
13,
9573,
13,
1208,
10,
551,
393,
187,
186,
23210,
21592,
64,
29294,
64,
2877,
362,
426,
269,
68,
1168,
1088,
64,
29294,
64,
1747,
9,
12964,
13,
1747,
558,
393,
187,
186,
87,
15,
1747,
15,
9573,
426,
821,
28,
393,
187,
186,
12964,
1168,
6343,
64,
29294,
64,
1747,
9,
12964,
13,
1747,
13,
87,
558,
393,
187,
94,
187,
187,
4,
7287,
187
] | /*
* Linux driver for digital TV devices equipped with B2C2 FlexcopII(b)/III
* flexcop-reg.h - register abstraction for FlexCopII, FlexCopIIb and FlexCopIII
* see flexcop.c for copyright information
*/
#ifndef __FLEXCOP_REG_H__
#define __FLEXCOP_REG_H__
typedef enum {
FLEXCOP_UNK = 0,
FLEXCOP_II,
FLEXCOP_IIB,
FLEXCOP_III,
} flexcop_revision_t;
typedef enum {
FC_UNK = 0,
FC_CABLE,
FC_AIR_DVBT,
FC_AIR_ATSC1,
FC_AIR_ATSC2,
FC_AIR_ATSC3,
FC_SKY_REV23,
FC_SKY_REV26,
FC_SKY_REV27,
FC_SKY_REV28,
} flexcop_device_type_t;
typedef enum {
FC_USB = 0,
FC_PCI,
} flexcop_bus_t;
/* FlexCop IBI Registers */
#if defined(__LITTLE_ENDIAN)
#include "flexcop_ibi_value_le.h"
#else
#if defined(__BIG_ENDIAN)
#include "flexcop_ibi_value_be.h"
#else
#error no endian defined
#endif
#endif
#define fc_data_Tag_ID_DVB 0x3e
#define fc_data_Tag_ID_ATSC 0x3f
#define fc_data_Tag_ID_IDSB 0x8b
#define fc_key_code_default 0x1
#define fc_key_code_even 0x2
#define fc_key_code_odd 0x3
extern flexcop_ibi_value ibi_zero;
typedef enum {
FC_I2C_PORT_DEMOD = 1,
FC_I2C_PORT_EEPROM = 2,
FC_I2C_PORT_TUNER = 3,
} flexcop_i2c_port_t;
typedef enum {
FC_WRITE = 0,
FC_READ = 1,
} flexcop_access_op_t;
typedef enum {
FC_SRAM_DEST_NET = 1,
FC_SRAM_DEST_CAI = 2,
FC_SRAM_DEST_CAO = 4,
FC_SRAM_DEST_MEDIA = 8
} flexcop_sram_dest_t;
typedef enum {
FC_SRAM_DEST_TARGET_WAN_USB = 0,
FC_SRAM_DEST_TARGET_DMA1 = 1,
FC_SRAM_DEST_TARGET_DMA2 = 2,
FC_SRAM_DEST_TARGET_FC3_CA = 3
} flexcop_sram_dest_target_t;
typedef enum {
FC_SRAM_2_32KB = 0, /* 64KB */
FC_SRAM_1_32KB = 1, /* 32KB - default fow FCII */
FC_SRAM_1_128KB = 2, /* 128KB */
FC_SRAM_1_48KB = 3, /* 48KB - default for FCIII */
} flexcop_sram_type_t;
typedef enum {
FC_WAN_SPEED_4MBITS = 0,
FC_WAN_SPEED_8MBITS = 1,
FC_WAN_SPEED_12MBITS = 2,
FC_WAN_SPEED_16MBITS = 3,
} flexcop_wan_speed_t;
typedef enum {
FC_DMA_1 = 1,
FC_DMA_2 = 2,
} flexcop_dma_index_t;
typedef enum {
FC_DMA_SUBADDR_0 = 1,
FC_DMA_SUBADDR_1 = 2,
} flexcop_dma_addr_index_t;
/* names of the particular registers */
typedef enum {
dma1_000 = 0x000,
dma1_004 = 0x004,
dma1_008 = 0x008,
dma1_00c = 0x00c,
dma2_010 = 0x010,
dma2_014 = 0x014,
dma2_018 = 0x018,
dma2_01c = 0x01c,
tw_sm_c_100 = 0x100,
tw_sm_c_104 = 0x104,
tw_sm_c_108 = 0x108,
tw_sm_c_10c = 0x10c,
tw_sm_c_110 = 0x110,
lnb_switch_freq_200 = 0x200,
misc_204 = 0x204,
ctrl_208 = 0x208,
irq_20c = 0x20c,
sw_reset_210 = 0x210,
misc_214 = 0x214,
mbox_v8_to_host_218 = 0x218,
mbox_host_to_v8_21c = 0x21c,
pid_filter_300 = 0x300,
pid_filter_304 = 0x304,
pid_filter_308 = 0x308,
pid_filter_30c = 0x30c,
index_reg_310 = 0x310,
pid_n_reg_314 = 0x314,
mac_low_reg_318 = 0x318,
mac_high_reg_31c = 0x31c,
data_tag_400 = 0x400,
card_id_408 = 0x408,
card_id_40c = 0x40c,
mac_address_418 = 0x418,
mac_address_41c = 0x41c,
ci_600 = 0x600,
pi_604 = 0x604,
pi_608 = 0x608,
dvb_reg_60c = 0x60c,
sram_ctrl_reg_700 = 0x700,
net_buf_reg_704 = 0x704,
cai_buf_reg_708 = 0x708,
cao_buf_reg_70c = 0x70c,
media_buf_reg_710 = 0x710,
sram_dest_reg_714 = 0x714,
net_buf_reg_718 = 0x718,
wan_ctrl_reg_71c = 0x71c,
} flexcop_ibi_register;
#define flexcop_set_ibi_value(reg,attr,val) { \
flexcop_ibi_value v = fc->read_ibi_reg(fc,reg); \
v.reg.attr = val; \
fc->write_ibi_reg(fc,reg,v); \
}
#endif
|
214,465 | Github | [
605,
831,
1873,
310,
629,
273,
43310,
13,
247,
28441,
330,
3424,
7646,
6335,
187,
605,
323,
4872,
8697,
15,
187,
605,
187,
605,
8283,
313,
36,
10,
4695,
6029,
27521,
14737,
654,
47941,
706,
15,
7564,
27521,
15,
18,
33,
23655,
15,
681,
31,
187,
605,
187,
605,
831,
12269,
6307,
7191,
310,
2256,
281,
253,
2426,
273,
253,
44502,
187,
605,
5259,
4637,
362,
15,
374,
15,
17,
15,
1310,
247,
3491,
273,
253,
353,
3859,
369,
417,
5939,
187,
605,
342,
436,
1873,
13,
1422,
476,
4044,
581,
387,
3944,
1358,
45189,
15,
2061,
16,
45590,
16,
19,
15,
17,
14206,
187,
187,
4,
17331,
49266,
64,
35468,
947,
17258,
5656,
64,
41,
187,
4,
3182,
49266,
64,
35468,
947,
17258,
5656,
64,
41,
187,
187,
12361,
43310,
551,
2490,
187,
12361,
4812,
551,
187,
187,
8547,
29,
15295,
12658,
1567,
31,
187,
17243,
1030,
7919,
12658,
1567,
1450,
29094,
16325,
832,
48040,
64,
5992,
20,
64,
28316,
187,
9,
3474,
23650,
8932,
29,
48300,
12399,
4315,
13,
540,
247,
13,
540,
270,
13,
540,
260,
10,
187,
92,
187,
50276,
2309,
4315,
15,
1940,
11801,
9,
17,
13,
66,
10,
187,
50269,
11,
313,
6674,
15,
1940,
11801,
9,
18,
13,
67,
10,
475,
4315,
15,
1940,
11801,
9,
19,
13,
68,
10,
428,
4315,
15,
1940,
11801,
9,
18,
13,
68,
10,
475,
4315,
15,
1940,
11801,
9,
19,
13,
67,
4027,
187,
94,
187,
187,
8547,
29,
15295,
12658,
1567,
31,
187,
3474,
7919,
12658,
1567,
1450,
29094,
16325,
832,
48040,
64,
5992,
21,
64,
28316,
187,
9,
3474,
23650,
8932,
29,
48300,
12399,
4315,
13,
540,
480,
13,
540,
465,
13,
540,
278,
13,
540,
295,
10,
187,
92,
187,
50276,
2309,
313,
6674,
15,
1940,
11801,
9,
75,
13,
17,
10,
475,
4315,
15,
1940,
11801,
9,
76,
13,
18,
10,
428,
4315,
15,
1940,
11801,
9,
76,
13,
17,
10,
475,
4315,
15,
1940,
11801,
9,
75,
13,
18,
1228,
187,
50271,
11,
313,
6674,
15,
1940,
11801,
9,
78,
13,
19,
10,
475,
4315,
15,
1940,
11801,
9,
79,
13,
20,
10,
428,
4315,
15,
1940,
11801,
9,
79,
13,
19,
10,
475,
4315,
15,
1940,
11801,
9,
78,
13,
20,
4027,
187,
94,
187,
187,
8547,
29,
15295,
12658,
1567,
13,
187,
50269,
565,
29739,
249,
386,
2548,
426,
12658,
1567,
1450,
27500,
3404,
20329,
4769,
187,
31,
1577,
27152,
64,
15680,
187,
92,
187,
50276,
4659,
13866,
7919,
13795,
29,
48300,
14157,
29094,
1408,
9,
3474,
12658,
1567,
7,
278,
10,
187,
50276,
92,
187,
50274,
338,
9,
48300,
1450,
2973,
84,
3404,
20329,
4769,
381,
31535,
3857,
278,
15,
8111,
1082,
381,
17,
10,
187,
50272,
2309,
7919,
13795,
29,
48300,
14157,
29094,
9,
18,
558,
187,
50274,
2309,
278,
15,
3214,
49,
400,
22653,
5023,
18916,
249,
386,
1874,
187,
50276,
94,
187,
4718,
187,
187,
8547,
29,
15295,
12658,
1567,
31,
1577,
27152,
64,
15680,
29,
48300,
13,
337,
31,
187,
92,
187,
50276,
4659,
13866,
7919,
13795,
29,
48300,
14157,
29094,
1408,
9,
3474,
12658,
1567,
7,
278,
10,
187,
50276,
92,
187,
50274,
2309,
278,
15,
1940,
11801,
9,
17,
13,
17,
558,
187,
50276,
94,
187,
4718,
187,
187,
8547,
29,
15295,
12658,
1567,
31,
1577,
27152,
64,
15680,
29,
48300,
13,
374,
31,
187,
92,
187,
50276,
4659,
13866,
7919,
13795,
29,
48300,
14157,
29094,
1408,
9,
3474,
12658,
1567,
7,
278,
10,
187,
50276,
92,
187,
50274,
2309,
278,
15,
1940,
11801,
9,
17,
13,
17,
10,
475,
278,
15,
1940,
11801,
9,
18,
13,
18,
10,
428,
278,
15,
1940,
11801,
9,
18,
13,
17,
10,
475,
278,
15,
1940,
11801,
9,
17,
13,
18,
558,
187,
50276,
94,
187,
4718,
187,
187,
8547,
29,
15295,
12658,
1567,
31,
1577,
27152,
64,
15680,
29,
48300,
13,
495,
31,
187,
92,
187,
50276,
4659,
13866,
7919,
13795,
29,
48300,
14157,
29094,
1408,
9,
3474,
12658,
1567,
7,
278,
10,
187,
50276,
92,
187,
50274,
2309,
16325,
832,
48040,
64,
5992,
20,
64,
28316,
9,
78,
13,
17,
13,
18,
13,
19,
10,
187,
50268,
14,
16325,
832,
48040,
64,
5992,
20,
64,
28316,
9,
78,
13,
18,
13,
17,
13,
19,
10,
187,
50268,
12,
16325,
832,
48040,
64,
5992,
20,
64,
28316,
9,
78,
13,
19,
13,
17,
13,
18,
558,
187,
50276,
94,
187,
4718,
187,
187,
8547,
29,
15295,
12658,
1567,
31,
1577,
27152,
64,
15680,
29,
48300,
13,
577,
31,
187,
92,
187,
50276,
4659,
7919,
13795,
29,
48300,
14157,
29094,
1408,
9,
3474,
12658,
1567,
7,
278,
10,
187,
50276,
92,
187,
50274,
605,
10480,
407,
8698,
12805,
1492,
281,
11897,
577,
89,
21,
843,
342,
760,
1884,
278,
7228,
187,
50274,
2309,
16325,
832,
48040,
64,
5992,
21,
64,
28316,
9,
78,
13,
17,
13,
18,
13,
19,
13,
20,
10,
187,
50268,
14,
16325,
832,
48040,
64,
5992,
21,
64,
28316,
9,
78,
13,
17,
13,
19,
13,
18,
13,
20,
10,
187,
50268,
12,
16325,
832,
48040,
64,
5992,
21,
64,
28316,
9,
78,
13,
17,
13,
20,
13,
18,
13,
19,
10,
187,
50268,
12,
16325,
832,
48040,
64,
5992,
21,
64,
28316,
9,
78,
13,
18,
13,
19,
13,
17,
13,
20,
10,
187,
50268,
14,
16325,
832,
48040,
64,
5992,
21,
64,
28316,
9,
78,
13,
18,
13,
20,
13,
17,
13,
19,
10,
187,
50268,
12,
16325,
832,
48040,
64,
5992,
21,
64,
28316,
9,
78,
13,
19,
13,
20,
13,
17,
13,
18,
558,
187,
50276,
94,
187,
4718,
187,
187,
94,
1380,
990,
12953,
4812,
187,
187,
6930,
393,
7675,
64,
8640,
187,
50276,
11,
187,
50276,
11,
393,
20974,
253,
27152,
273,
436,
4315,
187,
50276,
8480,
187,
8547,
29,
15295,
12658,
1567,
31,
187,
17243,
7919,
4812,
1450,
32172,
29,
48300,
14157,
29094,
23650,
8932,
29,
48300,
14157,
18916,
249,
386,
1082,
1030,
187,
92,
187,
50276,
70,
3855,
64,
8271,
9,
8111,
1082,
2295,
847,
84,
6020,
187,
50276,
17743,
7919,
4812,
1450,
47628,
64,
15419,
29,
48300,
13,
8932,
1450,
27500,
3404,
20329,
4769,
14157,
881,
427,
7250,
28,
187,
50276,
2309,
4812,
1450,
18916,
249,
386,
64,
15680,
29,
15295,
4812,
1450,
12163,
64,
455,
29,
47,
7250,
14157,
881,
14157,
6321,
9,
13472,
6020,
187,
94,
187,
187,
94,
1380,
990,
12953,
43310,
187,
187,
4,
7287,
1380,
49266,
64,
35468,
947,
17258,
5656,
64,
41,
187
] | // This file is part of Eigen, a lightweight C++ template library
// for linear algebra.
//
// Copyright (C) 2008 Benoit Jacob <[email protected]>
//
// This Source Code Form is subject to the terms of the Mozilla
// Public License v. 2.0. If a copy of the MPL was not distributed
// with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
#ifndef EIGEN_DETERMINANT_H
#define EIGEN_DETERMINANT_H
namespace Eigen {
namespace internal {
template<typename Derived>
inline const typename Derived::Scalar bruteforce_det3_helper
(const MatrixBase<Derived>& matrix, int a, int b, int c)
{
return matrix.coeff(0,a)
* (matrix.coeff(1,b) * matrix.coeff(2,c) - matrix.coeff(1,c) * matrix.coeff(2,b));
}
template<typename Derived>
const typename Derived::Scalar bruteforce_det4_helper
(const MatrixBase<Derived>& matrix, int j, int k, int m, int n)
{
return (matrix.coeff(j,0) * matrix.coeff(k,1) - matrix.coeff(k,0) * matrix.coeff(j,1))
* (matrix.coeff(m,2) * matrix.coeff(n,3) - matrix.coeff(n,2) * matrix.coeff(m,3));
}
template<typename Derived,
int DeterminantType = Derived::RowsAtCompileTime
> struct determinant_impl
{
static inline typename traits<Derived>::Scalar run(const Derived& m)
{
if(Derived::ColsAtCompileTime==Dynamic && m.rows()==0)
return typename traits<Derived>::Scalar(1);
return m.partialPivLu().determinant();
}
};
template<typename Derived> struct determinant_impl<Derived, 1>
{
static inline typename traits<Derived>::Scalar run(const Derived& m)
{
return m.coeff(0,0);
}
};
template<typename Derived> struct determinant_impl<Derived, 2>
{
static inline typename traits<Derived>::Scalar run(const Derived& m)
{
return m.coeff(0,0) * m.coeff(1,1) - m.coeff(1,0) * m.coeff(0,1);
}
};
template<typename Derived> struct determinant_impl<Derived, 3>
{
static inline typename traits<Derived>::Scalar run(const Derived& m)
{
return bruteforce_det3_helper(m,0,1,2)
- bruteforce_det3_helper(m,1,0,2)
+ bruteforce_det3_helper(m,2,0,1);
}
};
template<typename Derived> struct determinant_impl<Derived, 4>
{
static typename traits<Derived>::Scalar run(const Derived& m)
{
// trick by Martin Costabel to compute 4x4 det with only 30 muls
return bruteforce_det4_helper(m,0,1,2,3)
- bruteforce_det4_helper(m,0,2,1,3)
+ bruteforce_det4_helper(m,0,3,1,2)
+ bruteforce_det4_helper(m,1,2,0,3)
- bruteforce_det4_helper(m,1,3,0,2)
+ bruteforce_det4_helper(m,2,3,0,1);
}
};
} // end namespace internal
/** \lu_module
*
* \returns the determinant of this matrix
*/
template<typename Derived>
inline typename internal::traits<Derived>::Scalar MatrixBase<Derived>::determinant() const
{
eigen_assert(rows() == cols());
typedef typename internal::nested_eval<Derived,Base::RowsAtCompileTime>::type Nested;
return internal::determinant_impl<typename internal::remove_all<Nested>::type>::run(derived());
}
} // end namespace Eigen
#endif // EIGEN_DETERMINANT_H
|
214,466 | Github | [
33,
3701,
4772,
49844,
14,
48532,
70,
3914,
2877,
13,
370,
4663,
13,
370,
25318,
10,
551,
187,
50274,
5,
12787,
9038,
27,
4772,
2520,
2073,
12787,
9038,
5137,
187,
50274,
5,
2566,
27,
4772,
9993,
3914,
12787,
9038,
13,
370,
2877,
13,
370,
4663,
13,
370,
25318,
558,
187,
50274,
5,
6870,
27,
4772,
261,
14,
7750,
90,
18583,
9993,
3914,
12787,
9038,
13,
370,
2877,
13,
370,
4663,
13,
370,
25318,
4027,
535,
50274,
33,
2309,
370,
6870,
28,
187,
94,
535,
187,
33,
3701,
4772,
49844,
3914,
25318,
13,
370,
12787,
9038,
27,
686,
876,
32965,
1383,
370,
2520,
14,
1662,
27,
3635,
10,
551,
187,
50274,
5,
3701,
27,
604,
18583,
261,
14,
3550,
3914,
25318,
582,
686,
876,
3550,
14,
10978,
1383,
686,
876,
4793,
14,
10978,
5137,
187,
50274,
5,
12787,
9038,
27,
4772,
788,
14,
20104,
3914,
12787,
9038,
13,
370,
2520,
14,
1662,
13,
495,
558,
187,
50274,
10001,
27,
4772,
14329,
4464,
187,
50270,
8,
12787,
9038,
5295,
370,
12787,
9038,
187,
50274,
4027,
187,
50274,
5,
49844,
14,
48532,
70,
27,
4772,
13245,
2073,
876,
49844,
14,
48532,
70,
5137,
187,
50274,
5,
6870,
27,
4772,
9993,
3914,
3701,
13,
370,
25318,
13,
370,
49844,
14,
48532,
70,
558,
187,
50274,
10001,
27,
4772,
14329,
9,
7750,
558,
535,
50274,
33,
2309,
370,
6870,
28,
187,
94,
187,
187,
10638,
187,
10638,
380,
7285,
273,
2634,
64,
10978,
65,
28,
436,
1332,
6548,
253,
3603,
273,
2634,
5,
25318,
65,
187,
10638,
326,
2634,
5,
12787,
9038,
65,
1057,
1401,
1439,
424,
1091,
492,
307,
1994,
323,
15,
187,
10638,
209,
187,
10638,
1310,
247,
2867,
1416,
310,
2530,
323,
2634,
5,
12787,
9038,
65,
253,
3562,
2634,
64,
9134,
65,
187,
10638,
3740,
15259,
6548,
253,
2867,
1318,
273,
253,
1677,
3284,
15,
187,
10638,
209,
187,
10638,
1310,
247,
1318,
310,
671,
2530,
323,
2634,
5,
2520,
14,
1662,
65,
253,
3562,
2634,
64,
36531,
14,
9134,
65,
187,
10638,
3740,
15259,
6548,
2634,
5672,
65,
323,
3603,
326,
452,
247,
11038,
2867,
187,
10638,
1318,
13,
2010,
2634,
7750,
16433,
187,
10638,
209,
187,
10638,
1310,
247,
3711,
310,
2530,
323,
2634,
5,
12787,
9038,
65,
253,
3562,
2634,
64,
36531,
65,
3740,
187,
10638,
15259,
6548,
2634,
5672,
65,
323,
3603,
326,
452,
253,
3607,
273,
253,
1677,
187,
10638,
1789,
13,
2010,
2634,
7750,
16433,
187,
10638,
187,
10638,
187,
10638,
1214,
10773,
1345,
187,
10638,
1214,
4399,
17078,
187,
10638,
1214,
3575,
551,
2765,
93,
6648,
93,
2703,
94,
370,
25318,
380,
4849,
281,
35388,
689,
15,
187,
10638,
1214,
3575,
551,
11594,
93,
6648,
93,
2703,
94,
370,
12787,
9038,
42989,
32965,
62,
428,
380,
1159,
25605,
187,
10638,
50276,
468,
19502,
15,
187,
10638,
1214,
3575,
551,
33029,
370,
2520,
14,
1662,
544,
8629,
62,
428,
380,
2634,
64,
2520,
65,
4865,
273,
2634,
5,
12787,
9038,
16433,
187,
10638,
1214,
20974,
551,
2765,
94,
16548,
253,
747,
18748,
1618,
15,
187,
10638,
1214,
11667,
660,
859,
187,
10638,
370,
12110,
27,
795,
49844,
4464,
18,
13,
374,
13,
495,
13,
577,
582,
310,
14,
9154,
558,
187,
10638,
1380,
3001,
313,
18,
13,
495,
10,
187,
10638,
209,
187,
10638,
370,
15987,
27,
313,
187,
10638,
50275,
9,
686,
4537,
5295,
686,
2009,
2191,
1383,
686,
486,
5295,
5540,
13,
686,
4507,
5295,
3221,
12062,
187,
10638,
50275,
9,
686,
4537,
5295,
686,
17408,
1383,
50275,
8,
486,
5295,
3387,
13,
686,
4507,
5295,
2032,
2387,
187,
10638,
5349,
187,
10638,
1380,
970,
253,
2634,
64,
36531,
65,
15259,
46719,
395,
187,
10638,
370,
12110,
27,
795,
446,
1807,
10107,
49844,
3914,
15987,
13,
313,
686,
486,
5295,
3387,
13,
686,
4507,
5295,
2032,
2387,
582,
686,
4537,
5137,
187,
10638,
1380,
3001,
12196,
2009,
2191,
3401,
187,
10638,
209,
187,
10638,
1380,
970,
253,
2634,
64,
36531,
14,
9134,
65,
15259,
46719,
395,
187,
10638,
370,
12110,
27,
795,
446,
1807,
10107,
49844,
3914,
15987,
13,
686,
4507,
1383,
3221,
582,
686,
4537,
5137,
187,
10638,
1380,
3001,
12196,
17408,
3401,
187,
10638,
209,
187,
10638,
1380,
970,
253,
2634,
64,
9134,
65,
15259,
46719,
395,
187,
10638,
370,
12110,
27,
795,
446,
1807,
10107,
49844,
3914,
15987,
13,
686,
4507,
11470,
686,
4537,
5137,
187,
10638,
1380,
3001,
12196,
2009,
2191,
3401,
187,
187,
33,
3701,
795,
49844,
3914,
8854,
19552,
551,
187,
50274,
33,
2309,
1067,
9,
788,
14,
3701,
2073,
876,
49844,
11470,
370,
8854,
1051,
558,
187,
94,
187
] | @function __reject-iteratee($value, $index, $collection) {
$predicate: __this('predicate');
$test: __exec($predicate, $value, $index, $collection);
$result: __is-falsey(__exec($predicate, $value, $index, $collection));
@return $result;
}
@function __reject($collection, $predicate: '__identity', $this-arg: null) {
$function: if(__is-list($collection), '__list-filter', '__base-filter');
$predicate: __get-callback($predicate, $this-arg, 3);
$_: __scope((
'predicate': $predicate
));
$reject-iteratee: __bind('__reject-iteratee');
$result: __exec($function, $collection, $reject-iteratee);
$_: __scope(false);
@return $result;
}
///
/// The opposite of `_filter`; this method returns the elements of `$collection`
/// that `$predicate` does **not** return truthy for.
///
/// If a property name is provided for `$predicate` the created `_property`
/// style callback returns the property value of the given element.
///
/// If a value is also provided for `$this-arg` the created `_matches-property`
/// style callback returns `true` for elements that have a matching property
/// value, else `false`.
///
/// If a map is provided for `$predicate` the created `_matches` style
/// callback returns `true` for elements that have the properties of the given
/// object, else `false`.
///
///
/// @access public
/// @group Collection
/// @param {List|Map|string} $collection The collection to iterate over.
/// @param {Function|Map|string} $predicate [_identity] - The function invoked
/// per iteration.
/// @param {*} $this-arg [null] - The `_this` binding of `$predicate`.
/// @returns {List} Returns the new filtered list.
/// @example scss
/// $foo: _reject((1, 2, 3, 4), is-even);
/// // => (1, 3)
///
/// $users: (
/// ( 'user': 'barney', 'age': 36, 'active': false ),
/// ( 'user': 'fred', 'age': 40, 'active': true )
/// );
/// // using the `_matches` callback shorthand
/// $foo: _pluck(_reject($users, ( 'age': 40, 'active': true )), 'user');
/// // => ('barney')
///
/// // using the `_matches-property` callback shorthand
/// $foo: _pluck(_reject($users, 'active', false), 'user');
/// // => ('fred')
///
/// // using the `_property` callback shorthand
/// $foo: _pluck(_reject($users, 'active'), 'user');
/// // => ('barney')
@function _reject($args...) {
@return call(get-function('__reject'), $args...);
}
|
214,467 | Github | [
30952,
3088,
46510,
14271,
31,
187,
29,
2974,
19457,
568,
257,
1138,
187,
29,
2522,
31,
187,
50274,
29,
13518,
29308,
568,
18441,
14,
25,
1138,
187,
50274,
29,
5564,
31,
6765,
99,
8587,
244,
25588,
870,
5564,
31,
187,
870,
2522,
31,
187,
29,
2915,
31,
187,
50274,
29,
3866,
31,
187,
2044,
530,
34,
426,
3497,
15,
8002,
22853,
15,
4537,
28172,
28,
187,
2044,
1484,
66,
426,
530,
34,
15,
936,
25216,
11247,
1874,
187,
2044,
9882,
5785,
5892,
426,
551,
187,
50274,
466,
21610,
983,
466,
61,
84,
11,
1035,
69,
18958,
32,
8048,
4880,
69,
12,
6177,
8744,
40391,
187,
50274,
23079,
21610,
23079,
15591,
1035,
69,
18958,
32,
8048,
4880,
69,
12,
6177,
8744,
40391,
187,
50274,
11342,
15736,
21610,
11342,
15736,
15591,
1035,
69,
18958,
32,
8048,
4880,
69,
12,
6177,
8744,
40391,
187,
50274,
84,
2320,
1792,
21610,
4149,
15591,
1035,
69,
18958,
32,
8048,
4880,
69,
12,
6177,
1572,
84,
11,
84,
2320,
1792,
40391,
187,
50274,
2211,
66,
21610,
2211,
66,
60,
14766,
16,
30537,
69,
18958,
32,
8048,
4880,
69,
12,
6177,
1933,
187,
4718,
187,
5,
426,
25425,
187,
1352,
28197,
426,
686,
3938,
2666,
5618,
187,
1352,
28197,
8893,
426,
470,
28,
187,
187,
3701,
2451,
25588,
9,
5738,
13,
28197,
13,
4149,
910,
187,
50274,
5738,
426,
1484,
66,
15,
936,
25216,
11247,
1874,
187,
50274,
1542,
9,
2044,
891,
275,
9882,
5785,
5892,
910,
187,
50270,
2044,
3761,
426,
9882,
5785,
5892,
60,
74,
1570,
9993,
9,
5738,
558,
187,
50270,
338,
9,
8992,
910,
187,
50266,
1352,
28197,
426,
891,
28,
187,
50266,
338,
9,
28197,
16536,
74,
3857,
2715,
381,
8992,
60,
18,
62,
910,
187,
50266,
94,
7271,
92,
187,
50262,
22452,
15,
2808,
9,
28197,
12,
8,
93,
30636,
4149,
12,
8,
93,
30636,
8992,
60,
18,
20871,
5295,
30636,
5738,
558,
187,
50266,
94,
535,
50266,
7054,
28,
187,
50270,
94,
7271,
92,
187,
50266,
605,
9667,
15,
2808,
9,
5738,
558,
187,
50270,
94,
187,
50274,
94,
187,
94,
187,
2044,
4077,
426,
544,
187,
50274,
5013,
23079,
1383,
746,
15,
17,
4117,
46,
6002,
6077,
16,
22,
15,
17,
313,
14877,
20483,
721,
15,
18,
28,
411,
4290,
1540,
10,
8217,
9770,
18938,
16,
42082,
15,
20,
313,
44,
15597,
13,
751,
3096,
49993,
10,
21722,
16,
746,
15,
17,
15,
740,
3832,
15,
18,
37180,
16,
42082,
15,
20,
16445,
187,
50274,
5013,
23079,
1383,
1348,
15,
17,
4117,
46,
6002,
6077,
16,
22,
15,
17,
313,
14877,
20483,
721,
15,
19,
28,
411,
4290,
1540,
10,
8217,
9770,
18938,
16,
42215,
15,
1047,
313,
44,
15597,
13,
751,
3096,
49993,
10,
21722,
16,
1348,
15,
17,
15,
805,
4529,
15,
17,
37180,
16,
42215,
15,
1047,
16445,
187,
50274,
5013,
23079,
1383,
1010,
15,
17,
4117,
46,
6002,
6077,
16,
22,
15,
17,
313,
13815,
565,
6934,
28,
17545,
5602,
9485,
1594,
884,
64,
24,
64,
17,
10,
8217,
9770,
18938,
16,
42980,
15,
19,
313,
44,
15597,
13,
751,
3096,
49993,
10,
21722,
16,
1010,
15,
17,
15,
38978,
15,
17,
37180,
16,
42980,
15,
19,
16445,
187,
50274,
5013,
23079,
1383,
21,
15,
17,
4117,
46,
6002,
6077,
16,
22,
15,
17,
313,
57,
883,
28,
530,
28,
13492,
1269,
2691,
64,
1540,
28,
546,
14,
3016,
10,
8217,
9770,
18938,
16,
43618,
15,
17,
313,
44,
15597,
13,
751,
3096,
49993,
10,
21722,
16,
21,
15,
17,
15,
17605,
15,
19,
37180,
16,
43618,
15,
17,
16445,
187,
50274,
5013,
23079,
1383,
17,
15,
19,
4117,
46,
6002,
6077,
16,
22,
15,
17,
313,
14877,
28,
530,
28,
7464,
20483,
608,
15,
18,
28,
546,
14,
3016,
10,
8217,
9770,
18938,
16,
37219,
15,
1012,
9,
44,
15597,
13,
751,
3096,
49993,
10,
21722,
16,
17,
15,
19,
15,
16717,
15,
1630,
37180,
16,
37219,
15,
1012,
16445,
2756,
50274,
5013,
84,
2320,
1792,
1383,
23,
15,
17,
4117,
46,
6002,
6077,
16,
22,
15,
17,
313,
74,
14550,
28,
12874,
9485,
721,
64,
17,
751,
5602,
9485,
1594,
10,
8217,
9770,
18938,
16,
42082,
15,
1731,
313,
44,
15597,
13,
751,
3096,
49993,
10,
11099,
16,
23,
15,
17,
18805,
16,
740,
34,
22,
22341,
69,
37180,
16,
2227,
1812,
15,
1099,
16445,
187,
50274,
5013,
84,
2320,
1792,
1383,
22,
15,
17,
4117,
46,
6002,
6077,
16,
22,
15,
17,
313,
13815,
565,
6934,
28,
530,
28,
17545,
5602,
9485,
1594,
884,
64,
23,
64,
24,
28,
4204,
14,
17261,
10,
8217,
9770,
18938,
16,
45153,
15,
1797,
15,
18,
313,
44,
15597,
13,
751,
3096,
49993,
10,
11099,
16,
22,
15,
17,
15,
22,
37180,
16,
45153,
15,
1797,
15,
18,
16445,
187,
50274,
5013,
84,
2320,
1792,
1383,
22,
15,
18,
4117,
46,
6002,
6077,
16,
22,
15,
17,
313,
74,
14550,
28,
12874,
9485,
608,
64,
18,
751,
5602,
9485,
1594,
10,
8217,
9770,
18938,
16,
45225,
15,
2950,
313,
44,
15597,
13,
751,
3096,
49993,
2387,
11099,
16,
22,
15,
18,
18805,
16,
26,
35,
17184,
37180,
16,
1976,
1706,
15,
2385,
15,
20,
16445,
187,
50274,
5013,
84,
2320,
1792,
1383,
22,
15,
17,
4117,
46,
6002,
6077,
16,
22,
15,
17,
313,
13815,
565,
6934,
28,
530,
28,
17545,
5602,
9485,
1594,
884,
64,
23,
64,
21,
28,
289,
14,
394,
10,
8217,
9770,
18938,
16,
45153,
15,
1166,
15,
25,
313,
44,
15597,
13,
751,
3096,
49993,
10,
11099,
16,
22,
15,
17,
15,
18,
37180,
16,
45153,
15,
1166,
15,
25,
16445,
187,
50274,
5013,
84,
2320,
1792,
1383,
21,
15,
17,
4117,
46,
6002,
6077,
16,
22,
15,
17,
313,
13815,
565,
6934,
28,
530,
28,
17545,
5602,
9485,
1594,
884,
64,
22,
64,
21,
28,
546,
14,
20773,
10,
8217,
9770,
18938,
16,
42949,
15,
21,
12,
313,
44,
15597,
13,
751,
3096,
49993,
10,
11099,
16,
21,
15,
17,
12132,
18,
37180,
16,
46514,
15,
883,
15,
19,
16445,
187,
50274,
5013,
84,
2320,
1792,
1383,
21,
15,
17,
4117,
46,
6002,
6077,
16,
22,
15,
17,
313,
40887,
28,
530,
28,
12874,
13971,
9485,
577,
64,
18,
751,
5602,
9485,
1594,
28,
546,
14,
316,
10,
8217,
9770,
18938,
16,
43618,
15,
26,
313,
44,
15597,
13,
751,
3096,
49993,
10,
11099,
16,
21,
15,
17,
15,
22,
18805,
16,
25,
35,
12231,
37180,
16,
2082,
2405,
15,
1423,
15,
24,
16445,
187,
50274,
5013,
84,
2320,
1792,
1383,
21,
15,
17,
4117,
46,
6002,
6077,
16,
22,
15,
17,
9,
74,
14550,
28,
530,
28,
12874,
13971,
9485,
495,
64,
19,
751,
5602,
9485,
1594,
28,
546,
14,
316,
10,
8217,
9770,
18938,
16,
22,
2405,
15,
1797,
15,
740,
313,
44,
15597,
13,
751,
3096,
49993,
10,
11099,
16,
21,
15,
17,
15,
21,
18805,
16,
24,
35,
18486,
37180,
16,
22,
2405,
15,
1797,
15,
740,
6058,
64,
4658,
15,
550,
16445,
187,
50274,
5013,
84,
2320,
1792,
1383,
21,
15,
17,
4117,
46,
6002,
6077,
16,
22,
15,
17,
313,
14877,
28,
530,
28,
7464,
20483,
608,
15,
18,
28,
12684,
14,
6766,
10,
8217,
9770,
18938,
16,
42949,
15,
1036,
313,
44,
15597,
13,
751,
3096,
49993,
10,
11099,
16,
21,
15,
17,
37180,
16,
42949,
15,
1036,
16445,
187,
50274,
5013,
84,
2320,
1792,
1383,
20,
15,
19,
4117,
46,
6002,
6077,
16,
22,
15,
17,
313,
13815,
565,
6934,
28,
530,
28,
17545,
5602,
9485,
1594,
884,
64,
22,
64,
24,
28,
372,
14,
615,
10,
8217,
9770,
18938,
16,
37219,
15,
1619,
15,
20,
313,
44,
15597,
13,
751,
3096,
49993,
10,
11099,
16,
20,
15,
19,
15,
20,
37180,
16,
37219,
15,
1619,
15,
20,
16445,
187,
50274,
5013,
84,
2320,
1792,
1383,
20,
15,
19,
4117,
46,
6002,
6077,
16,
22,
15,
17,
313,
13815,
565,
6934,
28,
530,
28,
17545,
5602,
9485,
1594,
884,
64,
22,
64,
23,
28,
1315,
14,
925,
10,
8217,
9770,
18938,
16,
37219,
15,
1630,
15,
18,
313,
44,
15597,
13,
751,
3096,
49993,
10,
11099,
16,
20,
15,
19,
15,
18,
37180,
16,
37219,
15,
1630,
15,
18,
16445,
187,
50274,
5013,
84,
2320,
1792,
1383,
20,
15,
17,
4117,
46,
6002,
6077,
16,
22,
15,
17,
313,
14877,
28,
530,
28,
7464,
20483,
721,
15,
17,
28,
546,
10,
8217,
9770,
18938,
16,
37219,
12,
313,
44,
15597,
13,
751,
3096,
49993,
10,
11099,
16,
20,
15,
17,
15,
21,
37180,
16,
44219,
15,
883,
16445,
187,
50274,
5013,
84,
2320,
1792,
1383,
19,
15,
17,
4117,
46,
6002,
6077,
16,
22,
15,
17,
313,
13815,
565,
6934,
28,
530,
28,
367,
5077,
5602,
9485,
1594,
28,
546,
10,
8217,
9770,
18938,
16,
35833,
313,
44,
15597,
13,
751,
3096,
49993,
10,
37180,
16,
39069,
15,
26,
15,
19,
16445,
187,
50274,
5013,
84,
2320,
1792,
1383,
18,
15,
20,
4117,
46,
6002,
6077,
16,
22,
15,
17,
313,
13815,
565,
6934,
28,
530,
28,
367,
5077,
5602,
9485,
1594,
28,
372,
14,
615,
10,
8217,
9770,
18938,
16,
20207,
15,
25,
313,
44,
15597,
13,
751,
3096,
49993,
10,
37180,
16,
20207,
15,
22,
64,
3837,
8594,
16445,
187,
50274,
5013,
84,
2320,
1792,
1383,
18,
15,
17,
4117,
46,
6002,
6077,
16,
22,
15,
17,
313,
13815,
565,
6934,
28,
530,
28,
367,
5077,
5602,
9485,
1594,
28,
372,
14,
615,
10,
8217,
9770,
18938,
16,
2227,
15,
24,
313,
44,
15597,
13,
751,
3096,
49993,
10,
37180,
16,
2227,
15,
22,
16445,
187,
50274,
5013,
11342,
15736,
1383,
1508,
15,
17,
4117,
46,
6002,
6077,
16,
22,
15,
17,
313,
14877,
20483,
721,
15,
18,
28,
411,
4290,
1540,
28,
48192,
27,
1508,
15,
17,
10,
3096,
49993,
16,
1252,
1229,
24854,
26040,
16,
1508,
15,
17,
16445,
187,
50274,
5013,
11342,
15736,
1383,
1036,
15,
17,
4117,
46,
6002,
6077,
16,
22,
15,
17,
313,
14877,
20483,
721,
15,
19,
28,
12932,
1540,
28,
1269,
1540,
28,
48192,
27,
1036,
15,
17,
15,
18,
10,
3096,
49993,
16,
1252,
1797,
13925,
26040,
16,
1036,
15,
17,
15,
18,
16445,
187,
50274,
5013,
11342,
15736,
1383,
23,
15,
17,
4117,
46,
6002,
6077,
16,
22,
15,
17,
313,
14877,
20483,
608,
15,
17,
28,
411,
4290,
1540,
28,
48192,
27,
23,
15,
17,
10,
3096,
49993,
16,
1252,
2874,
520,
26040,
16,
23,
15,
17,
16445,
187,
50274,
5013,
11342,
15736,
1383,
23,
15,
17,
4117,
46,
6002,
6077,
16,
22,
15,
17,
313,
14877,
20483,
608,
15,
18,
28,
48192,
27,
23,
15,
17,
10,
3096,
49993,
16,
1252,
2874,
520,
26040,
16,
23,
15,
17,
8726,
26631,
16,
17,
15,
23,
16445,
187,
50274,
5013,
11342,
15736,
1383,
22,
15,
17,
4117,
46,
6002,
6077,
16,
22,
15,
17,
313,
57,
883,
28,
13492,
891,
28057,
327,
1269,
2691,
64,
1540,
28,
48192,
27,
22,
15,
17,
66,
19,
10,
3096,
49993,
16,
1252,
10655,
1348,
26040,
16,
22,
15,
17,
66,
19,
16445,
187,
50274,
5013,
11342,
15736,
1383,
21,
15,
17,
4117,
46,
6002,
6077,
16,
22,
15,
17,
313,
14877,
28,
530,
28,
7464,
20483,
721,
15,
18,
28,
8864,
28,
48192,
27,
18,
15,
26,
15,
19,
15,
20,
10,
3096,
49993,
16,
1252,
5525,
520,
26040,
16,
21,
15,
17,
25323,
11502,
330,
8720,
495,
15,
22,
15,
21645,
1717,
10,
16445,
187,
50274,
5013,
11342,
15736,
1383,
21,
15,
17,
4117,
46,
6002,
6077,
16,
22,
15,
17,
313,
14877,
20483,
721,
15,
18,
28,
48192,
27,
18,
15,
26,
10,
3096,
49993,
16,
1252,
2874,
520,
26040,
16,
21,
15,
17,
16445,
187,
50274,
5013,
11342,
15736,
1383,
20,
15,
22,
4117,
46,
6002,
6077,
16,
22,
15,
17,
313,
14877,
28,
530,
28,
7464,
20483,
721,
15,
17,
28,
372,
28,
48192,
27,
18,
15,
26,
15,
18,
15,
26,
10,
3096,
49993,
16,
1252,
4838,
1010,
26040,
16,
20,
15,
22,
15,
26,
443,
18269,
24,
15,
17,
25323,
11502,
330,
8720,
495,
15,
17,
15,
18950,
1093,
10,
16445,
187,
50274,
5013,
11342,
15736,
1383,
19,
15,
18,
4117,
46,
6002,
6077,
16,
22,
15,
17,
313,
14877,
28,
530,
28,
7464,
20483,
721,
15,
17,
28,
372,
28,
48192,
27,
18,
15,
26,
15,
17,
15,
1010,
10,
3096,
49993,
16,
1518,
4739,
11718,
520,
26040,
374,
15,
18,
25323,
11502,
330,
8720,
495,
15,
22,
15,
21645,
1717,
10,
16445,
187,
50274,
5013,
11342,
15736,
1383,
19,
15,
17,
4117,
46,
6002,
6077,
16,
22,
15,
17,
313,
57,
883,
28,
530,
28,
4146,
2697,
5101,
21,
87,
28,
546,
14,
3016,
28,
48192,
27,
18,
15,
25,
15,
18,
15,
20,
10,
3096,
49993,
16,
1518,
1967,
22693,
26040,
16,
19,
15,
17,
15,
17,
15,
20,
16445,
187,
50274,
5013,
11342,
15736,
1383,
18,
15,
23,
4117,
46,
6002,
6077,
16,
22,
15,
17,
313,
57,
883,
28,
530,
28,
13492,
1269,
2691,
64,
1540,
28,
546,
14,
3016,
28,
48192,
27,
18,
15,
26,
66,
18,
10,
3096,
49993,
16,
8603,
520,
805,
26040,
16,
18,
15,
23,
66,
18,
16445,
187,
50274,
5013,
11342,
15736,
1383,
18,
15,
17,
4117,
46,
6002,
6077,
16,
22,
15,
17,
313,
14877,
28,
530,
28,
12932,
4185,
28,
546,
14,
3016,
28,
48192,
27,
18,
15,
24,
15,
23,
10,
3096,
49993,
16,
1518,
26906,
1166,
26040,
16,
18,
15,
17,
15,
19,
313,
991,
10,
16445,
187,
50274,
5013,
11342,
15736,
1383,
17,
15,
18,
4117,
46,
6002,
6077,
16,
22,
15,
17,
313,
13815,
565,
6934,
28,
530,
28,
367,
5077,
5602,
9485,
1594,
20310,
14,
48,
28,
48192,
27,
18,
15,
24,
15,
20,
10,
3096,
49993,
16,
1518,
24264,
1012,
26040,
16,
17,
15,
740,
16445,
187,
50274,
5013,
466,
1383,
740,
15,
23,
4117,
46,
6002,
6077,
16,
22,
15,
17,
313,
34118,
28,
353,
5824,
38,
884,
15,
23,
28,
7464,
20483,
721,
15,
18,
28,
1535,
888,
16,
22,
15,
17,
28,
28730,
5455,
15,
19,
28,
14532,
2648,
18,
28,
964,
11502,
330,
8720,
495,
15,
17,
15,
15645,
23,
15,
19,
17472,
28,
964,
11502,
330,
8720,
495,
15,
22,
15,
21645,
1717,
28,
964,
11502,
330,
8720,
374,
15,
17,
15,
27133,
1630,
10,
495,
72,
377,
14,
72,
5830,
7379,
3125,
11533,
1703,
16,
18,
15,
17,
16445,
187,
50274,
5013,
466,
1383,
740,
15,
17,
4117,
46,
6002,
6077,
16,
22,
15,
17,
313,
34118,
28,
353,
5824,
38,
884,
15,
17,
28,
7464,
20483,
721,
15,
18,
28,
411,
4290,
1540,
28,
1535,
888,
16,
23,
15,
17,
10,
16445,
187,
50274,
5013,
466,
1383,
26,
15,
17,
4117,
46,
6002,
6077,
16,
22,
15,
17,
313,
14877,
28,
530,
28,
353,
5824,
38,
898,
15,
17,
28,
411,
8207,
5811,
20483,
898,
15,
17,
28,
546,
14,
3016,
1228,
16445,
187,
50274,
5013,
466,
1383,
26,
15,
17,
4117,
46,
6002,
6077,
16,
22,
15,
17,
313,
34118,
28,
353,
5824,
38,
898,
15,
17,
28,
7464,
20483,
721,
15,
18,
28,
411,
4290,
1540,
28,
1535,
888,
16,
22,
15,
17,
28,
14532,
2648,
19,
28,
964,
11502,
330,
8720,
374,
15,
17,
15,
27133,
1630,
28,
964,
11502,
330,
8720,
495,
15,
22,
15,
21645,
1717,
28,
964,
11502,
330,
8720,
495,
15,
17,
15,
21645,
1717,
28,
11263,
5197,
5578,
721,
15,
17,
28,
1503,
2517,
577,
15,
17,
28,
28730,
5455,
15,
20,
28,
7852,
14,
46490,
25840,
854,
28,
964,
11502,
21,
15,
17,
36,
28,
964,
11502,
21,
15,
17,
38,
10,
16445,
187,
50274,
5013,
466,
1383,
25,
15,
17,
4117,
46,
6002,
6077,
16,
21,
15,
17,
313,
34118,
28,
353,
5824,
38,
854,
15,
17,
28,
7464,
20483,
721,
15,
18,
28,
411,
4290,
1540,
28,
1535,
888,
16,
21,
15,
17,
28,
14532,
2648,
19,
28,
964,
11502,
330,
8720,
374,
15,
17,
15,
27133,
1630,
28,
964,
11502,
330,
8720,
495,
15,
22,
15,
21645,
1717,
28,
964,
11502,
330,
8720,
495,
15,
17,
15,
21645,
1717,
28,
11263,
5197,
5578,
721,
15,
17,
28,
7852,
14,
46490,
25840,
854,
28,
28730,
5455,
15,
20,
28,
964,
11502,
21,
15,
17,
36,
28,
964,
11502,
21,
15,
17,
38,
10,
5937,
832,
30873,
16,
25,
15,
17,
15,
39338,
15,
17537,
16445,
187,
50274,
5013,
466,
1383,
24,
15,
17,
4117,
46,
6002,
6077,
16,
21,
15,
17,
9,
34118,
28,
353,
5824,
38,
818,
15,
17,
67,
28,
7464,
20483,
721,
15,
17,
10,
16445,
187,
50274,
5013,
466,
1383,
24,
15,
17,
4117,
46,
6002,
6077,
16,
21,
15,
17,
313,
34118,
28,
353,
5824,
38,
818,
15,
17,
28,
7464,
20483,
721,
15,
18,
28,
14532,
2648,
19,
28,
964,
11502,
330,
8720,
374,
15,
17,
15,
27133,
1630,
28,
964,
11502,
330,
8720,
495,
15,
22,
15,
21645,
1717,
28,
964,
11502,
330,
8720,
495,
15,
17,
15,
21645,
1717,
28,
11263,
5197,
5578,
721,
15,
17,
28,
964,
11502,
21,
15,
17,
36,
28,
964,
11502,
21,
15,
17,
38,
10,
16445,
187,
50274,
5013,
466,
1383,
23,
15,
17,
4117,
46,
6002,
6077,
16,
22,
15,
17,
313,
14877,
28,
530,
28,
353,
5824,
38,
721,
15,
17,
28,
7464,
20483,
608,
15,
18,
28,
17370,
18,
28,
964,
11502,
330,
8720,
374,
15,
17,
15,
27133,
1630,
10,
16445,
187,
50274,
5013,
466,
1383,
23,
15,
18,
4117,
46,
6002,
6077,
16,
21,
15,
17,
313,
34118,
28,
353,
5824,
38,
721,
15,
18,
28,
7464,
31302,
28,
964,
11502,
330,
8720,
337,
15,
18,
15,
21,
23625,
28,
964,
11502,
330,
8720,
374,
15,
17,
15,
27133,
1630,
10,
16445,
187,
50274,
5013,
2211,
66,
1383,
805,
15,
1047,
4117,
10996,
66,
16,
26,
15,
1438,
313,
14877,
20483,
721,
15,
17,
10,
31291,
80,
16,
19,
15,
805,
15,
25085,
11099,
16,
805,
15,
1047,
16445,
187,
50274,
5013,
2211,
66,
1383,
805,
15,
2640,
4117,
10996,
66,
16,
805,
15,
1438,
313,
14877,
20483,
608,
15,
18,
28,
530,
28,
546,
10,
31291,
80,
16,
19,
15,
740,
15,
24208,
11099,
16,
805,
15,
2640,
16445,
187,
50274,
5013,
2211,
66,
1383,
805,
15,
17,
4117,
46,
6002,
6077,
16,
22,
15,
17,
313,
14877,
20483,
608,
15,
18,
10,
3096,
49993,
16,
1252,
2874,
520,
26040,
16,
1047,
15,
17,
30383,
16,
805,
15,
17,
16445,
187,
50274,
5013,
2211,
66,
1383,
805,
15,
361,
4117,
10996,
66,
16,
805,
15,
17,
9,
14877,
20483,
608,
15,
18,
28,
54,
28,
257,
10,
49,
1120,
80,
16,
1423,
15,
26,
15,
13851,
11099,
16,
805,
15,
361,
16445,
187,
50274,
5013,
2211,
66,
1383,
883,
15,
3763,
4117,
10996,
66,
16,
26,
15,
1438,
313,
14877,
20483,
721,
15,
17,
28,
530,
28,
499,
10,
31291,
80,
16,
19,
15,
740,
15,
17107,
11099,
16,
883,
15,
3763,
16445,
187,
50274,
5013,
2211,
66,
1383,
883,
15,
1235,
4117,
10996,
66,
16,
26,
15,
1438,
313,
57,
883,
28,
13492,
1269,
2691,
64,
1540,
28,
530,
28,
1315,
10,
31291,
80,
16,
19,
15,
26,
15,
13851,
11099,
16,
883,
15,
1235,
16445,
187,
50274,
5013,
2211,
66,
1383,
883,
15,
883,
4117,
46,
6002,
6077,
16,
22,
15,
17,
313,
14877,
20483,
608,
15,
18,
28,
530,
28,
546,
28,
48192,
27,
18,
15,
25,
15,
18,
10,
3096,
49993,
16,
8603,
805,
2904,
26040,
16,
22,
15,
17,
30383,
1903,
15,
883,
16445,
187,
50274,
5013,
2211,
66,
1383,
883,
15,
883,
4117,
10996,
66,
16,
26,
15,
1438,
313,
57,
883,
28,
13492,
891,
28057,
28,
530,
28,
1578,
14,
1410,
10,
31291,
80,
16,
19,
15,
25,
15,
17015,
11099,
16,
883,
15,
883,
16445,
187,
50274,
5013,
2211,
66,
1383,
883,
15,
740,
4117,
10996,
66,
16,
26,
15,
1438,
313,
14877,
20483,
721,
15,
18,
28,
530,
28,
1182,
73,
14,
7553,
10,
31291,
80,
16,
19,
15,
24,
15,
3763,
11099,
16,
883,
15,
520,
16445,
187,
50274,
5013,
2211,
66,
1383,
883,
15,
361,
4117,
10996,
66,
16,
26,
15,
1438,
313,
57,
883,
28,
13492,
1269,
2691,
64,
1540,
28,
530,
28,
499,
10,
31291,
80,
16,
19,
15,
24,
15,
3763,
11099,
16,
883,
15,
361,
16445,
187,
50274,
5013,
2211,
66,
1383,
883,
15,
361,
4117,
46,
6002,
6077,
16,
21,
15,
17,
313,
34118,
28,
353,
5824,
38,
854,
15,
17,
28,
7464,
20483,
721,
15,
17,
28,
546,
10,
30383,
1903,
15,
361,
16445,
187,
50274,
5013,
2211,
66,
1383,
740,
15,
1967,
4117,
10996,
66,
16,
26,
15,
1438,
313,
14877,
20483,
721,
15,
18,
28,
530,
28,
499,
10,
31291,
80,
16,
19,
15,
23,
15,
2405,
11099,
16,
740,
15,
1967,
16445,
187,
50274,
5013,
2211,
66,
1383,
740,
15,
1967,
4117,
46,
6002,
6077,
16,
22,
15,
17,
313,
14877,
20483,
608,
15,
18,
28,
530,
28,
1182,
73,
14,
14340,
28,
48192,
27,
18,
15,
26,
15,
18,
15,
23,
10,
3096,
49993,
16,
7857,
805,
520,
26040,
16,
20,
15,
22,
15,
23,
30383,
884,
15,
1967,
16445,
187,
50274,
5013,
2211,
66,
1383,
740,
15,
3571,
4117,
10996,
66,
16,
26,
15,
1438,
313,
14877,
20483,
608,
15,
19,
28,
530,
28,
1182,
73,
14,
14340,
10,
31291,
80,
16,
19,
15,
23,
15,
1229,
11099,
16,
740,
15,
3571,
16445,
187,
50274,
5013,
2211,
66,
1383,
26,
15,
1438,
4117,
10996,
66,
16,
26,
15,
1438,
313,
43,
19,
5288,
16,
46,
1838,
49,
28,
30383,
24244,
16,
22,
15,
17,
313,
14877,
28,
530,
28,
7464,
20483,
608,
15,
18,
28,
546,
10,
8217,
9770,
18938,
16,
35265,
28,
530,
28,
546,
10,
31291,
80,
16,
19,
15,
21,
15,
1010,
16445,
187,
2194,
187,
187,
1542,
9,
2044,
891,
30,
17,
13,
5025,
426,
4077,
15,
3985,
28,
74,
29,
5025,
28,
74,
41812,
187,
50274,
5903,
25588,
9,
3298,
60,
74,
7082,
19,
1092,
3298,
60,
74,
7082,
17,
1092,
3298,
60,
74,
7082,
18,
9259,
187,
94,
187,
870,
3866,
31,
187,
870,
2915,
31,
187,
870,
2974,
31
] | <!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>判断UA</title>
</head>
<body>
<script>
var UA = window.navigator.userAgent;
var ua = UA.toLowerCase();
var browserRegExp = {
ie:/msie\s*(\d+(?:\.\d+)?)+/,
chrome:/chrome\/(\d+(?:\.\d+)?)+/,
firefox:/firefox\/(\d+(?:\.\d+)?)+/,
safari:/version\/(\d+(?:\.\d+)?)\s*safari/,
opera:/opera[ |\/](\d+(?:\.\d+)?)/
};
$ = {};
$.browser = 'unknow';
$.browserVersion = 0;
function checkUA(ua,browser,version){
ua = ua.toLowerCase();
for(var i in browserRegExp){
var match = browserRegExp[i].exec(ua);
if(match){
$.browser = i;
if(browser===i && version==match[1]){
}else{
console.log(browser+'|'+version+'|'+match[1]+':'+ua);
}
break;
}else{
// console.log(ua);
}
}
}
var arr = [
['chrome',19.0,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/536.3 (KHTML, like Gecko) Chrome/19.0.1061.1 Safari/536.3'],
['chrome',24.0,'Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.14 (KHTML, like Gecko) Chrome/24.0.1292.0 Safari/537.14'],
['chrome',15.0,'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_0) AppleWebKit/535.2 (KHTML, like Gecko) Chrome/15.0.861.0 Safari/535.2'],
['chrome',4.0,'Mozilla/5.0 (X11; U; Linux x86_64; en-US) AppleWebKit/532.0 (KHTML, like Gecko) Chrome/4.0.211.2 Safari/532.0'],
['chrome',0.2,'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/525.13(KHTML, like Gecko) Chrome/0.2.149.27 Safari/525.13'],
['safari',6.0,'Mozilla/5.0 (iPad; CPU OS 6_0 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Version/6.0 Mobile/10A5355d Safari/8536.25'],
['safari',5.0,'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_7; da-dk) AppleWebKit/533.21.1 (KHTML, like Gecko) Version/5.0.5 Safari/533.21.1'],
['safari',5.1,'Mozilla/5.0 (iPad; CPU OS 5_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko ) Version/5.1 Mobile/9B176 Safari/7534.48.3'],
['safari',5.0,'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_4; th-th) AppleWebKit/533.17.8 (KHTML, like Gecko) Version/5.0.1 Safari/533.17.8'],
['safari',4.0,'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_5_4; en-gb) AppleWebKit/528.4+ (KHTML, like Gecko) Version/4.0dp1 Safari/526.11.2'],
['safari',4.0,'Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_1 like Mac OS X; en-us) AppleWebKit/532.9 (KHTML, like Gecko) Version/4.0.5 Mobile/8B117 Safari/6531.22.7'],
['safari',4.0,'Mozilla/5.0(iPad; U; CPU iPhone OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B314 Safari/531.21.10gin_lib.cc'],
['safari',4.0,'Mozilla/5.0 (Windows; U; Windows NT 5.1; fi-FI) AppleWebKit/528.16 (KHTML, like Gecko) Version/4.0 Safari/528.16'],
['safari',3.2,'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_5_7; de-de) AppleWebKit/525.28.3 (KHTML, like Gecko) Version/3.2.3 Safari/525.28.3'],
['safari',3.2,'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_5_6; fr-fr) AppleWebKit/525.27.1 (KHTML, like Gecko) Version/3.2.1 Safari/525.27.1'],
['safari',3.0,'Mozilla/5.0 (Windows; U; Windows NT 6.0; en) AppleWebKit/525+ (KHTML, like Gecko) Version/3.0.4 Safari/523.11'],
['safari',2.0,'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en) AppleWebKit/418 (KHTML, like Gecko) Safari/417.9.2'],
['safari',1.3,'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; de-de) AppleWebKit/312.8 (KHTML, like Gecko) Safari/312.5_Adobe'],
['safari',1.0,'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; de-de) AppleWebKit/85.7 (KHTML, like Gecko) Safari/85.5'],
['firefox',23.0,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:23.0) Gecko/20130406 Firefox/23.0'],
['firefox',16.0,'Mozilla/5.0 (Windows NT 6.2; Win64; x64; rv:16.0.1) Gecko/20121011 Firefox/16.0.1'],
['firefox',6.0,'Mozilla/5.0 (Windows NT 5.0; WOW64; rv:6.0) Gecko/20100101 Firefox/6.0'],
['firefox',6.0,'Mozilla/5.0 (Windows NT 5.1; rv:6.0) Gecko/20100101 Firefox/6.0 FirePHP/0.6'],
['firefox',5.0,'Mozilla/5.0 (X11; Linux i686 on x86_64; rv:5.0a2) Gecko/20110524 Firefox/5.0a2'],
['firefox',4.0,'Mozilla/5.0 (Windows; U; Windows NT 6.1; ru; rv:1.9.2.3) Gecko/20100401 Firefox/4.0 (.NET CLR 3.5.30729)'],
['firefox',4.0,'Mozilla/5.0 (Windows NT 6.1; rv:1.9) Gecko/20100101 Firefox/4.0'],
['firefox',3.5,'Mozilla/5.0 (Windows; U; Windows NT 6.0; de; rv:1.9.1.9) Gecko/20100315 Firefox/3.5.9 GTB7.0 (.NET CLR 3.0.30618)'],
['firefox',2.1,'Mozilla/5.0 (Windows; U; Windows NT 6.0; de; rv:1.9.0.15) Gecko/2009101601 Firefox 2.1 (.NET CLR 3.5.30729)'],
['firefox',2.0,'Mozilla/5.0 (X11; U; SunOS sun4v; en-US; rv:1.8.1.3) Gecko/20070321 Firefox/2.0.0.3'],
['firefox',1.6,'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9a1) Gecko/20060112 Firefox/1.6a1'],
['firefox',1.0,'Mozilla/5.0 (Windows; U; Win98; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2 (ax)'],
['firefox',0.1,'Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; rv:1.7.3) Gecko/20040913 Firefox/0.10'],
['ie',10.6,'Mozilla/5.0 (compatible; MSIE 10.6; Windows NT 6.1; Trident/5.0; InfoPath.2; SLCC1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 2.0.50727) 3gpp-gba UNTRUSTED/1.0'],
['ie',10.0,'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0)'],
['ie',9.0,'Mozilla/5.0 (Windows; U; MSIE 9.0; WIndows NT 9.0; en-US))'],
['ie',9.0,'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; Zune 4.0; InfoPath.3; MS-RTC LM 8; .NET4.0C; .NET4.0E)'],
['ie',8.0,'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; MS-RTC LM 8; InfoPath.3; .NET4.0C; .NET4.0E) chromeframe/8.0.552.224'],
['ie',7.0,'Mozilla/4.0(compatible; MSIE 7.0b; Windows NT 6.0)'],
['ie',7.0,'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E)'],
['ie',6.0,'Mozilla/5.0 (Windows; U; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727)'],
['ie',6.1,'Mozilla/4.0 (compatible; MSIE 6.1; Windows XP; .NET CLR 1.1.4322; .NET CLR 2.0.50727)'],
['opera',12.14,'Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14'],
['opera',12.02,'Opera/12.80 (Windows NT 5.1; U; en) Presto/2.10.289 Version/12.02'],
['opera',12.0,'Mozilla/5.0 (Windows NT 5.1) Gecko/20100101 Firefox/14.0 Opera/12.0'],
['opera',12.00,'Opera/12.0(Windows NT 5.1;U;en)Presto/22.9.168 Version/12.00'],
['opera',11.62,'Opera/9.80 (Windows NT 6.0; U; pl) Presto/2.10.229 Version/11.62'],
['opera',11.50,'Opera/9.80 (X11; Linux x86_64; U; fr) Presto/2.9.168 Version/11.50'],
['opera',11.11,'Mozilla/5.0 (Windows NT 5.1; U; en; rv:1.8.1) Gecko/20061208 Firefox/5.0 Opera 11.11'],
['opera',11.11,'Opera/9.80 (X11; Linux i686; U; es-ES) Presto/2.8.131 Version/11.11'],
['opera',11.10,'Opera/9.80 (Windows NT 6.1; U; zh-tw) Presto/2.7.62 Version/11.01'],
['opera',11.00,'Opera/9.80 (X11; Linux x86_64; U; pl) Presto/2.7.62 Version/11.00'],
['opera',11.00,'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; en) Opera 11.00'],
['opera',10.70,'Opera/9.80 (Windows NT 6.1; U; pl) Presto/2.6.31 Version/10.70'],
['opera',10.70,'Mozilla/5.0 (Windows NT 5.1; U; zh-cn; rv:1.9.1.6) Gecko/20091201 Firefox/3.5.6 Opera 10.70'],
['opera',10.63,'Opera/9.80 (Windows NT 5.2; U; zh-cn) Presto/2.6.30 Version/10.63'],
['opera',9.80,'Opera/9.80 (J2ME/MIDP; Opera Mini/5.0 (Windows; U; Windows NT 5.1; en) AppleWebKit/886; U; en) Presto/2.4.15'],
];
for(var i=0,len = arr.length;i<len;i++){
checkUA(arr[i][2],arr[i][0],arr[i][1]);
}
</script>
</body>
</html> |
214,468 | Github | [
10708,
17908,
15,
46310,
316,
15,
615,
27378,
15,
7973,
4835,
28,
187,
187,
2948,
17908,
15,
46310,
316,
15,
27136,
15,
4835,
15,
22495,
10987,
5475,
28,
187,
2948,
17908,
15,
46310,
316,
15,
615,
27378,
15,
2845,
1573,
15,
4241,
22568,
28,
187,
187,
6930,
187,
1738,
187,
4387,
2457,
966,
24128,
3211,
6116,
2621,
4241,
22568,
10987,
5475,
8725,
22449,
10987,
5475,
551,
187,
50274,
9486,
2457,
9206,
22568,
1789,
22568,
28,
535,
50274,
4387,
24128,
3211,
6116,
2621,
4241,
22568,
10987,
5475,
9,
13017,
9206,
22568,
1789,
22568,
10,
551,
187,
50270,
2520,
15,
6082,
22568,
426,
1789,
22568,
28,
187,
50274,
94,
535,
50274,
4387,
9206,
22568,
755,
4241,
22568,
1082,
551,
187,
50270,
2309,
1789,
22568,
28,
187,
50274,
94,
187,
94,
187
] | package io.quarkus.deployment.builditem;
import io.quarkus.builder.item.MultiBuildItem;
import io.quarkus.deployment.recording.ObjectLoader;
/**
*/
public final class BytecodeRecorderObjectLoaderBuildItem extends MultiBuildItem {
private final ObjectLoader objectLoader;
public BytecodeRecorderObjectLoaderBuildItem(final ObjectLoader objectLoader) {
this.objectLoader = objectLoader;
}
public ObjectLoader getObjectLoader() {
return objectLoader;
}
}
|
214,469 | Github | [
605,
8283,
4695,
14,
15068,
3267,
42505,
281,
253,
7489,
6586,
6527,
2199,
15,
187,
605,
35588,
57,
14,
17736,
14,
18483,
27,
32327,
14,
20,
14,
2019,
766,
187,
605,
5987,
1358,
7280,
15,
681,
16,
9807,
6586,
6527,
16,
10986,
900,
16,
23723,
16,
11717,
16,
17821,
15,
6535,
535,
187,
37446,
5071,
16,
187,
10638,
393,
3140,
187,
10638,
187,
10638,
7518,
468,
33255,
323,
14419,
20243,
14,
2799,
494,
346,
24111,
995,
9009,
187,
10638,
2710,
314,
347,
399,
8683,
434,
313,
46052,
44971,
16,
32490,
582,
7870,
13747,
313,
13815,
187,
10638,
9485,
1594,
582,
40343,
434,
313,
14877,
481,
187,
37446,
5071,
16,
535,
187,
4,
26579,
2378,
187,
187,
4,
3709,
654,
2703,
31,
187,
187,
4,
3709,
654,
9807,
6586,
6527,
16,
15035,
15,
73,
31,
187,
4,
3709,
654,
9807,
6586,
6527,
16,
10986,
900,
4149,
15,
73,
31,
535,
187,
48,
2267,
48,
64,
28997,
32718,
9566,
64,
32077,
187,
187,
12361,
49366,
551,
187,
187,
17743,
2991,
11,
34107,
28,
187,
187,
10638,
16140,
253,
5147,
14,
6820,
34078,
323,
10358,
14,
968,
5550,
25360,
3,
327,
187,
10638,
7464,
13,
346,
601,
3,
327,
13492,
285,
5602,
9485,
1594,
15,
187,
48,
2267,
48,
64,
11252,
1030,
1018,
11,
187,
16895,
64,
24210,
9,
4353,
558,
187,
187,
10638,
7489,
253,
4907,
15191,
13,
1091,
697,
6016,
15,
50276,
2042,
352,
812,
417,
320,
187,
10638,
5485,
13,
1091,
470,
285,
253,
1735,
1067,
281,
755,
3775,
1082,
588,
3831,
187,
10638,
271,
41355,
3935,
15,
50276,
2042,
253,
686,
14456,
8,
4764,
310,
2032,
13,
512,
187,
10638,
14217,
432,
253,
15191,
588,
320,
2130,
281,
253,
622,
313,
251,
44971,
14,
3022,
187,
10638,
13498,
28,
436,
556,
642,
1055,
327,
7464,
481,
187,
48,
2267,
48,
64,
11252,
34107,
187,
5758,
9,
3474,
1018,
11,
15191,
64,
17479,
13,
7301,
4156,
426,
2032,
558,
187,
187,
17243,
34107,
187,
5758,
9,
3474,
6268,
1450,
2703,
7,
15191,
64,
17479,
13,
7301,
4156,
426,
2032,
10,
187,
92,
187,
50274,
2309,
1527,
9,
16895,
64,
17479,
15,
68,
64,
1344,
5715,
4156,
558,
187,
94,
187,
187,
10638,
24445,
253,
1527,
15191,
342,
253,
1677,
6016,
285,
1091,
2032,
2220,
187,
10638,
2323,
15,
50276,
2042,
690,
2228,
5866,
13,
1091,
3221,
285,
253,
1735,
1067,
281,
187,
10638,
755,
3775,
1082,
588,
3831,
271,
41355,
3935,
15,
187,
48,
2267,
48,
64,
11252,
7301,
187,
10483,
9,
16722,
15191,
64,
13393,
558,
187,
187,
10638,
5057,
253,
2953,
273,
253,
4907,
9484,
432,
253,
1527,
15191,
6016,
15,
50276,
2042,
187,
10638,
690,
2228,
5866,
13,
1091,
28471,
285,
253,
1735,
1067,
281,
187,
10638,
755,
3775,
1082,
588,
3831,
271,
41355,
3935,
313,
28558,
1304,
64,
3775,
187,
10638,
310,
3221,
13,
275,
534,
1083,
253,
2228,
3935,
588,
320,
16013,
481,
187,
48,
2267,
48,
64,
11252,
2991,
11,
187,
788,
14774,
9,
16722,
15191,
64,
13393,
13,
1030,
1018,
11,
9484,
64,
1590,
13,
7301,
1304,
64,
3775,
426,
2032,
558,
187,
187,
17243,
2991,
11,
187,
788,
14774,
9,
16722,
15191,
64,
13393,
13,
1030,
6268,
1450,
2703,
7,
9484,
64,
1590,
13,
187,
50271,
10975,
1304,
64,
3775,
426,
2032,
10,
187,
92,
187,
50274,
2309,
4850,
1105,
9,
16895,
64,
13393,
13,
9484,
64,
1590,
15,
68,
64,
1344,
5715,
1304,
64,
3775,
558,
187,
94,
187,
187,
10638,
16140,
667,
2228,
8169,
2330,
342,
253,
1390,
1067,
281,
667,
273,
187,
10638,
1527,
13,
2810,
13,
390,
4850,
1105,
15,
50276,
8497,
326,
275,
247,
1554,
334,
1088,
264,
3126,
13,
187,
10638,
352,
434,
598,
281,
253,
27333,
281,
6283,
2873,
911,
281,
5416,
326,
642,
643,
187,
10638,
6293,
556,
1925,
1527,
13,
2810,
13,
390,
4850,
1105,
313,
455,
273,
534,
2590,
390,
187,
10638,
50029,
253,
2228,
3935,
10,
875,
253,
2228,
14,
8719,
839,
1067,
285,
187,
10638,
755,
3775,
15,
187,
48,
2267,
48,
64,
11252,
6268,
1450,
2703,
187,
788,
3775,
9,
4353,
558,
2756,
187,
94,
50276,
605,
12953,
49366,
187,
187,
48,
2267,
48,
64,
28997,
32718,
9566,
64,
8112,
187
] | // Copyright 2008-present Contributors to the OpenImageIO project.
// SPDX-License-Identifier: BSD-3-Clause
// https://github.com/OpenImageIO/oiio/blob/master/LICENSE.md
/////////////////////////////////////////////////////////////////////////
/// \file
///
/// Helper routines for managing runtime-loadable "plugins", implemented
/// variously as DSO's (traditional Unix/Linux), dynamic libraries (Mac
/// OS X), DLL's (Windows).
/////////////////////////////////////////////////////////////////////////
#pragma once
#include <string>
#include <OpenImageIO/export.h>
#include <OpenImageIO/oiioversion.h>
OIIO_NAMESPACE_BEGIN
namespace Plugin {
typedef void* Handle;
/// Return the platform-dependent suffix for plug-ins ("dll" on
/// Windows, "so" on Linux and Mac OS X.
OIIO_API const char*
plugin_extension(void);
/// Open the named plugin, return its handle. If it could not be
/// opened, return 0 and the next call to geterror() will contain
/// an explanatory message. If the 'global' parameter is true, all
/// symbols from the plugin will be available to the app (on Unix-like
/// platforms; this has no effect on Windows).
OIIO_API Handle
open(const char* plugin_filename, bool global = true);
inline Handle
open(const std::string& plugin_filename, bool global = true)
{
return open(plugin_filename.c_str(), global);
}
/// Close the open plugin with the given handle and return true upon
/// success. If some error occurred, return false and the next call to
/// geterror() will contain an explanatory message.
OIIO_API bool
close(Handle plugin_handle);
/// Get the address of the named symbol from the open plugin handle. If
/// some error occurred, return nullptr and the next call to
/// geterror() will contain an explanatory message (unless report_error
/// is false, in which case the error message will be suppressed).
OIIO_API void*
getsym(Handle plugin_handle, const char* symbol_name, bool report_error = true);
inline void*
getsym(Handle plugin_handle, const std::string& symbol_name,
bool report_error = true)
{
return getsym(plugin_handle, symbol_name.c_str(), report_error);
}
/// Return any error messages associated with the last call to any of
/// open, close, or getsym. Note that in a multithreaded environment,
/// it's up to the caller to properly mutex to ensure that no other
/// thread has called open, close, or getsym (all of which clear or
/// overwrite the error message) between the error-generating call and
/// geterror.
OIIO_API std::string
geterror(void);
} // namespace Plugin
OIIO_NAMESPACE_END
|
214,470 | Github | [
14277,
7229,
2715,
568,
18,
15,
17,
3,
9706,
568,
17880,
14,
25,
28739,
187,
29,
6825,
1269,
9245,
27,
18982,
11930,
568,
662,
27,
80,
4914,
27,
7886,
27,
18038,
27,
89,
317,
1686,
27,
20,
15,
17,
27,
6443,
27,
18982,
27,
14066,
14,
1166,
3944,
1358,
13880,
15,
80,
4914,
14,
5758,
15,
2061,
16,
89,
317,
1686,
16,
20,
15,
17,
16,
89,
317,
1686,
14,
6443,
14,
87,
20,
14,
18982,
14,
14066,
14,
1166,
15,
18728,
3,
16140,
20439,
2618,
2765,
568,
7750,
3,
37395,
9150,
1297,
568,
7750,
3,
15664,
568,
662,
27,
80,
4914,
27,
7886,
27,
18038,
27,
89,
317,
1686,
27,
20,
15,
17,
27,
6443,
27,
18982,
27,
14066,
14,
1166,
3,
15664,
27,
89,
9245,
568,
2413,
1358,
2700,
15,
88,
20,
15,
2061,
16,
8971,
16,
17733,
20838,
14,
14966,
1138,
187,
50276,
29,
23372,
26891,
568,
662,
27,
80,
4914,
27,
7886,
27,
18038,
27,
89,
317,
1686,
27,
18,
15,
17,
27,
19091,
14,
14267,
27,
10773,
14,
19091,
1138,
187,
50274,
29,
11756,
17105,
688,
9179,
568,
7750,
3,
42090,
2618,
568,
662,
27,
80,
4914,
27,
7886,
27,
18038,
27,
89,
317,
1686,
27,
18,
15,
17,
27,
19091,
27,
19091,
14,
301,
1138,
187,
50272,
29,
11756,
3902,
5128,
2548,
568,
2413,
1358,
2700,
15,
88,
20,
15,
2061,
16,
8971,
16,
17733,
20838,
4,
2703,
1138,
24221,
3750,
388,
487,
6291,
870,
11756,
3902,
31,
187,
50274,
870,
11756,
31,
187,
50274,
29,
11756,
17105,
688,
9179,
568,
7750,
3,
42090,
2618,
568,
662,
27,
80,
4914,
27,
7886,
27,
18038,
27,
89,
317,
1686,
27,
19,
15,
17,
27,
585,
12301,
14,
2566,
27,
2566,
14,
9573,
1138,
187,
50272,
29,
11756,
3902,
5128,
2548,
568,
2413,
1358,
2700,
15,
88,
20,
15,
2061,
16,
8971,
16,
17733,
20838,
4,
15741,
32849,
1138,
17,
16380,
24,
34,
26,
35432,
36,
2573,
870,
11756,
3902,
31,
187,
50274,
870,
11756,
31,
187,
50274,
29,
11756,
17105,
688,
9179,
568,
7750,
3,
42090,
2618,
568,
662,
27,
80,
4914,
27,
7886,
27,
18038,
27,
89,
317,
1686,
27,
19,
15,
17,
27,
585,
12301,
14,
2566,
27,
2566,
14,
9573,
1138,
187,
50272,
29,
11756,
3902,
5128,
2548,
568,
2413,
1358,
2700,
15,
88,
20,
15,
2061,
16,
8971,
16,
17733,
20838,
4,
15741,
32849,
1138,
17,
16380,
24,
34,
26,
35432,
36,
2925,
870,
11756,
3902,
31,
187,
50274,
870,
11756,
31,
187,
50276,
870,
23372,
31,
187,
50276,
29,
23372,
26891,
568,
662,
27,
80,
4914,
27,
7886,
27,
18038,
27,
89,
317,
1686,
27,
20,
15,
17,
27,
15810,
14,
14267,
27,
15024,
1138,
187,
50274,
29,
11756,
17105,
688,
9179,
568,
7750,
3,
42090,
2618,
568,
662,
27,
80,
4914,
27,
7886,
27,
18038,
27,
89,
317,
1686,
27,
18,
15,
17,
27,
15024,
27,
15024,
14,
301,
1138,
187,
50272,
29,
11756,
3902,
5128,
2548,
568,
2413,
1358,
2700,
15,
88,
20,
15,
2061,
16,
8971,
16,
17733,
20838,
4,
1279,
20201,
1138,
2413,
1358,
1314,
4173,
15,
681,
16,
15352,
16,
15325,
16,
35,
435,
4749,
10836,
870,
11756,
3902,
31,
187,
50274,
870,
11756,
31,
187,
50276,
870,
23372,
31,
187,
50276,
29,
23372,
26891,
568,
662,
27,
80,
4914,
27,
7886,
27,
18038,
27,
89,
317,
1686,
27,
20,
15,
17,
27,
15810,
14,
14267,
27,
1913,
1138,
187,
50274,
29,
11756,
17105,
688,
9179,
568,
7750,
3,
42090,
2618,
568,
662,
27,
80,
4914,
27,
7886,
27,
18038,
27,
89,
317,
1686,
27,
18,
15,
17,
27,
1913,
27,
1913,
14,
301,
1138,
187,
50272,
29,
11756,
3902,
5128,
2548,
568,
2413,
1358,
2700,
15,
88,
20,
15,
2061,
16,
8971,
16,
17733,
20838,
4,
2703,
1138,
1088,
870,
11756,
3902,
31,
187,
50274,
870,
11756,
31,
187,
50276,
870,
23372,
31,
187,
50276,
29,
23372,
26891,
568,
662,
27,
80,
4914,
27,
7886,
27,
18038,
27,
89,
317,
1686,
27,
20,
15,
17,
27,
15810,
14,
14267,
27,
20034,
5647,
187,
870,
6825,
31,
187
] | <?xml version="1.0" encoding="utf-8"?>
<Request xsi:schemaLocation="urn:oasis:names:tc:xacml:3.0:core:schema:wd-17 http://docs.oasis-open.org/xacml/3.0/xacml-core-v3-schema-wd-17.xsd" ReturnPolicyIdList="false" CombinedDecision="false" xmlns="urn:oasis:names:tc:xacml:3.0:core:schema:wd-17" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Attributes Category="urn:oasis:names:tc:xacml:1.0:subject-category:access-subject">
<Attribute IncludeInResult="false" AttributeId="urn:oasis:names:tc:xacml:1.0:subject:subject-id">
<AttributeValue DataType="http://www.w3.org/2001/XMLSchema#string">Julius Hibbert</AttributeValue>
</Attribute>
<Attribute IncludeInResult="false" AttributeId="urn:oasis:names:tc:xacml:2.0:conformance-test:test-attr">
<AttributeValue DataType="http://www.w3.org/2001/XMLSchema#hexBinary">0BF7A9876CDE</AttributeValue>
</Attribute>
<Attribute IncludeInResult="false" AttributeId="urn:oasis:names:tc:xacml:2.0:conformance-test:test-attr">
<AttributeValue DataType="http://www.w3.org/2001/XMLSchema#hexBinary">0BF7A9876CAB</AttributeValue>
</Attribute>
</Attributes>
<Attributes Category="urn:oasis:names:tc:xacml:3.0:attribute-category:resource">
<Attribute IncludeInResult="false" AttributeId="urn:oasis:names:tc:xacml:1.0:resource:resource-id">
<AttributeValue DataType="http://www.w3.org/2001/XMLSchema#anyURI">http://medico.com/record/patient/BartSimpson</AttributeValue>
</Attribute>
</Attributes>
<Attributes Category="urn:oasis:names:tc:xacml:3.0:attribute-category:action">
<Attribute IncludeInResult="false" AttributeId="urn:oasis:names:tc:xacml:1.0:action:action-id">
<AttributeValue DataType="http://www.w3.org/2001/XMLSchema#string">read</AttributeValue>
</Attribute>
</Attributes>
<Attributes Category="urn:oasis:names:tc:xacml:3.0:attribute-category:environment"/>
</Request>
|
214,471 | Github | [
4,
831,
310,
247,
629,
273,
253,
9664,
6807,
45227,
330,
3424,
6335,
15,
187,
4,
8283,
313,
68,
10,
9664,
11294,
15,
50276,
3074,
3570,
10827,
15,
187,
4,
187,
4,
831,
2603,
2127,
310,
760,
6034,
347,
247,
8499,
281,
253,
187,
4,
9664,
6807,
45227,
19039,
285,
2905,
187,
4,
7051,
10097,
2530,
342,
253,
6335,
15,
187,
4,
2594,
841,
4973,
323,
7000,
1491,
5001,
253,
187,
4,
9664,
6807,
45227,
1885,
15,
187,
187,
20371,
43,
30,
5883,
47,
20562,
19,
187,
9324,
15253,
30,
3591,
79,
24845,
19,
15,
9344,
417,
338,
14066,
88,
15,
9344,
23995,
24845,
15,
9344,
29060,
384,
15,
9344,
22803,
24845,
15,
9344,
393,
187,
186,
1033,
4291,
8435,
15,
9344,
187,
187,
2,
3709,
654,
32067,
6113,
11441,
15,
45879,
31,
187
] | # This is a part of the Microsoft Foundation Classes C++ library.
# Copyright (c) Microsoft Corporation. All rights reserved.
#
# This source code is only intended as a supplement to the
# Microsoft Foundation Classes Reference and related
# electronic documentation provided with the library.
# See these sources for detailed information regarding the
# Microsoft Foundation Classes product.
PROJ=CMNCTRL2
OBJS=cmnctrl2.obj notifwdw.obj progctrl.obj propsht.obj slidctrl.obj \
spinctrl.obj
!include <mfcsamps.mak>
|
214,472 | Github | [
605,
309,
8344,
436,
327,
253,
1716,
38,
1906,
4384,
2670,
27,
187,
605,
187,
605,
5987,
1358,
21637,
15,
983,
17915,
15,
22730,
15,
681,
16,
2214,
7640,
16,
257,
14,
3016,
16,
1449,
68,
25,
70,
20216,
14,
18442,
26,
14,
1857,
68,
25,
14,
67,
26,
67,
25,
14,
19,
71,
1257,
2251,
3507,
317,
19,
67,
16,
1088,
22452,
9252,
14,
18923,
14,
10773,
14,
6584,
17888,
14,
17695,
14,
12428,
14,
22558,
187,
605,
5987,
1358,
585,
36812,
15,
7280,
15,
900,
16,
257,
16,
16880,
35,
22201,
15,
2974,
187,
605,
187,
605,
496,
7464,
818,
13,
854,
13,
285,
854,
15,
18,
13,
247,
6707,
35184,
11021,
56,
342,
271,
562,
14,
1171,
14,
35800,
1239,
187,
605,
2919,
29212,
253,
2898,
15,
50276,
42,
452,
23775,
253,
1895,
327,
7464,
854,
187,
605,
285,
854,
15,
18,
13,
533,
417,
327,
7464,
818,
15,
187,
605,
187,
187,
4,
3709,
654,
27095,
15,
73,
31,
187,
187,
4,
3709,
346,
5089,
12804,
15,
550,
3,
187,
187,
565,
2022,
1082,
551,
187,
50274,
1178,
12205,
13839,
9,
17,
13,
470,
13,
337,
13,
337,
558,
187,
50274,
1178,
10644,
5496,
9,
1438,
13,
2030,
558,
187,
50274,
1178,
12205,
13839,
9,
17,
13,
470,
13,
5096,
13,
2030,
558,
535,
50274,
3474,
46683,
1843,
345,
483,
426,
1527,
1773,
483,
1874,
187,
50274,
4659,
30752,
64,
16615,
1386,
28829,
60,
1438,
2194,
187,
50274,
6955,
5626,
64,
18541,
1239,
26330,
426,
551,
470,
13,
48778,
13,
11275,
13,
48778,
7734,
187,
50274,
3474,
46013,
851,
426,
6707,
35184,
11021,
56,
9,
585,
483,
13,
1386,
28829,
13,
551,
1438,
13,
337,
2023,
551,
17,
13,
470,
2023,
708,
1088,
26330,
558,
187,
50274,
25202,
20273,
1221,
3857,
346,
5703,
35184,
11021,
56,
943,
452,
4242,
3287,
535,
50274,
2309,
470,
28,
187,
94,
187
] | // I noticed this on the ConEmu web site:
//
// https://social.msdn.microsoft.com/Forums/en-US/40c8e395-cca9-45c8-b9b8-2fbe6782ac2b/readconsoleoutput-cause-access-violation-writing-location-exception
// https://conemu.github.io/en/MicrosoftBugs.html
//
// In Windows 7, 8, and 8.1, a ReadConsoleOutputW with an out-of-bounds read
// region crashes the application. I have reproduced the problem on Windows 8
// and 8.1, but not on Windows 7.
//
#include <windows.h>
#include "TestUtil.cc"
int main() {
setWindowPos(0, 0, 1, 1);
setBufferSize(80, 25);
setWindowPos(0, 0, 80, 25);
const HANDLE conout = openConout();
static CHAR_INFO lineBuf[80];
SMALL_RECT readRegion = { 0, 999, 79, 999 };
const BOOL ret = ReadConsoleOutputW(conout, lineBuf, {80, 1}, {0, 0}, &readRegion);
ASSERT(!ret && "ReadConsoleOutputW should have failed");
return 0;
}
|
214,473 | Github | [
5035,
21826,
1873,
275,
253,
2199,
5230,
323,
2120,
7981,
1491,
15,
187
] | See LICENSE file in the project root for full license information.
|
214,474 | Github | [
6930,
187,
1214,
6377,
18426,
64,
21822,
49,
15748,
10715,
535,
1214,
332,
37438,
187,
475,
1214,
3140,
50274,
14592,
16,
21822,
49,
15748,
10715,
16,
1088,
1405,
15,
10134,
187,
475,
1214,
4149,
657,
18,
15,
361,
187,
475,
1214,
2754,
50274,
6759,
14,
3071,
14,
1229,
187,
475,
1214,
18399,
50275,
11185,
273,
443,
5736,
46,
2014,
10724,
4438,
1650,
15,
187,
1214,
423,
332,
37438,
187,
187,
33,
1148,
18466,
11451,
27,
187,
187,
1552,
1650,
2722,
849,
281,
897,
253,
443,
5736,
46,
10844,
281,
6635,
247,
19757,
367,
15748,
24629,
187,
6438,
247,
11002,
5024,
273,
271,
6024,
2625,
556,
644,
2959,
275,
49703,
19832,
9176,
15,
187,
187,
2042,
253,
443,
5736,
46,
17,
64,
49,
22370,
4294,
310,
873,
281,
8187,
21865,
1227,
9161,
21865,
285,
253,
3327,
1179,
254,
310,
8187,
1227,
9161,
13,
594,
253,
443,
5736,
46,
17,
4828,
187,
13273,
310,
337,
21865,
15,
187,
187,
510,
27891,
9112,
1376,
1318,
310,
608,
1418,
313,
40,
5736,
46,
17,
64,
1311,
51,
582,
594,
253,
4869,
4294,
1318,
281,
9632,
187,
783,
443,
5736,
46,
17,
3280,
310,
337,
21865,
16,
22,
1418,
30,
1384,
14878,
15,
187,
187,
510,
443,
5736,
46,
17,
310,
15378,
347,
3637,
27,
187,
14,
380,
19757,
367,
15748,
4438,
310,
908,
15,
187,
14,
380,
6024,
2625,
310,
4802,
281,
22733,
17,
64,
2025,
42,
9176,
15,
187,
14,
380,
11002,
5024,
310,
908,
347,
3939,
5024,
15,
187,
14,
380,
19757,
367,
15748,
2625,
310,
3453,
327,
22733,
17,
64,
2775,
20,
15,
187,
187,
510,
29036,
1318,
21936,
253,
5778,
1318,
13,
253,
5778,
1318,
310,
4229,
281,
608,
13818,
27,
187,
14,
5778,
426,
5642,
20,
36,
1311,
16,
40,
5736,
46,
17,
4828,
8886,
426,
608,
13818,
15,
187,
9,
27077,
9112,
1376,
428,
29036,
559,
337,
10,
13067,
253,
19757,
367,
15748,
1318,
1223,
253,
10724,
1318,
310,
4229,
281,
5329,
13818,
15,
187,
187,
33,
1148,
36186,
40604,
27,
187,
187,
14,
443,
5736,
46,
16,
21822,
49,
15748,
10715,
16,
7265,
15,
68,
50259,
13030,
2086,
187,
14,
443,
5736,
46,
16,
21822,
49,
15748,
10715,
16,
384,
1237,
71,
18,
16321,
64,
520,
64,
262,
15,
68,
50271,
6504,
3787,
40093,
187,
187,
33,
1148,
11366,
1935,
285,
9107,
13809,
27,
187,
187,
14,
29562,
253,
6024,
2625,
281,
253,
22733,
17,
64,
2025,
42,
9176,
15,
7567,
254,
346,
384,
1237,
64,
4697,
64,
5397,
15,
73,
3,
323,
9176,
12714,
15,
187,
14,
48533,
247,
11002,
5024,
327,
22733,
17,
64,
2025,
42,
281,
9632,
2014,
10724,
3453,
15,
187,
14,
29562,
253,
22733,
17,
64,
2775,
20,
313,
4899,
24,
10,
9176,
281,
271,
9774,
31269,
281,
5724,
253,
34048,
15,
187,
14,
831,
1650,
476,
320,
1408,
327,
9235,
1237,
12234,
2440,
4450,
15,
187,
187,
33,
1148,
38541,
1935,
5201,
34837,
8339,
187,
187,
18,
15,
380,
7731,
20585,
26785,
285,
18726,
326,
253,
2086,
7681,
10097,
13,
1690,
253,
187,
50275,
3211,
13,
534,
310,
12164,
407,
4716,
34968,
13740,
3557,
8543,
3690,
904,
313,
30350,
6289,
281,
347,
346,
41,
3271,
5428,
44,
2807,
310,
253,
187,
50275,
856,
3225,
12745,
285,
18987,
12720,
2867,
273,
388,
3271,
5428,
44,
13,
285,
310,
6885,
407,
9451,
1569,
285,
187,
50275,
977,
12720,
2867,
5323,
15,
187,
187,
19,
15,
380,
7731,
20585,
26785,
285,
18726,
326,
253,
2086,
7681,
10097,
13,
1690,
253,
187,
50275,
3211,
13,
310,
18987,
1491,
15823,
281,
388,
3271,
5428,
44,
13,
285,
1364,
417,
320,
10557,
281,
667,
2626,
4676,
187,
50275,
977,
685,
388,
3271,
5428,
44,
285,
253,
7731,
15,
187,
187,
20,
15,
380,
2086,
7681,
10097,
13,
1690,
253,
2127,
13,
310,
2530,
346,
284,
310,
3,
285,
323,
7731,
3806,
187,
50275,
7483,
15,
2732,
6742,
407,
388,
3271,
5428,
44,
13,
253,
7731,
3091,
897,
253,
2086,
7681,
10097,
13,
1690,
187,
50275,
783,
2127,
13,
387,
616,
1211,
2495,
15,
388,
3271,
5428,
44,
23464,
84,
667,
4469,
13,
10466,
390,
11315,
7501,
447,
13,
1690,
187,
50275,
783,
7501,
447,
273,
24230,
1430,
13,
20297,
3290,
285,
14601,
323,
247,
1798,
4096,
15,
535,
475,
654,
73,
19,
2730,
9229,
31,
20968,
313,
36,
10,
4716,
34968,
13740,
3557,
8543,
3690,
15,
1876,
3570,
10827,
870,
9229,
3073,
73,
19,
31,
187,
1738,
187
] | /**
@page TM_SinglePulseMode
@verbatim
* @file TM/SinglePulseMode/readme.txt
* @version V1.00
* @date 2014-06-30
* @brief Description of GPTM single pulse mode example.
@endverbatim
@par Example Description:
This example shows how to use the GPTM peripheral to generate a Single Pulse Mode
after a rising edge of an external signal has been received in Timer Input pin.
If the GPTM0_PCLK frequency is set to 72 MHz / 96 MHz and the Prescaler is 72 / 96, so the GPTM0 counter
clock is 1 MHz.
The CounterReload value is 50000 (GPTM0_CRR), so the maximum frequency value to trigger
the GPTM0 input is 1 MHz/50000= 20 Hz.
The GPTM0 is configured as follows:
- The Single Pulse mode is used.
- The external signal is connected to GT0_ETI pin.
- The rising edge is used as active edge.
- The Single Pulse signal is output on GT0_CH3.
The Compare value decides the delay value, the delay value is fixed to 5 ms:
- delay = CH3CCR/GPTM0 counter clock = 5 ms.
(CounterReload - Compare + 1) defines the Single Pulse value while the pulse value is fixed to 45 ms.
@par Directory Contents:
- GPTM/SinglePulseMode/main.c Main program
- GPTM/SinglePulseMode/ht32f1xxxx_01_it.c Interrupt handlers
@par Hardware and Software Environment:
- Connect the external signal to the GT0_ETI pin. Refer "ht32_board_config.h" for pin assignment.
- Generate a rising edge on GT0_ETI to trigger single pulse output.
- Connect the GT0_CH3 (PA7) pin to an oscilloscope to monitor the waveform.
- This example can be run on HT32 Series development board.
@par Firmware Disclaimer Information
1. The customer hereby acknowledges and agrees that the program technical documentation, including the
code, which is supplied by Holtek Semiconductor Inc., (hereinafter referred to as "HOLTEK") is the
proprietary and confidential intellectual property of HOLTEK, and is protected by copyright law and
other intellectual property laws.
2. The customer hereby acknowledges and agrees that the program technical documentation, including the
code, is confidential information belonging to HOLTEK, and must not be disclosed to any third parties
other than HOLTEK and the customer.
3. The program technical documentation, including the code, is provided "as is" and for customer reference
only. After delivery by HOLTEK, the customer shall use the program technical documentation, including
the code, at their own risk. HOLTEK disclaims any expressed, implied or statutory warranties, including
the warranties of merchantability, satisfactory quality and fitness for a particular purpose.
* <h2><center>Copyright (C) Holtek Semiconductor Inc. All rights reserved</center></h2>
*/
|
214,475 | Github | [
14277,
7229,
2715,
568,
18,
15,
17,
3,
9706,
568,
17880,
14,
25,
28739,
187,
187,
29,
39269,
15664,
27,
9152,
568,
2413,
1358,
24991,
15,
9152,
15,
681,
16,
37104,
16,
373,
16,
9152,
3,
187,
50274,
9152,
27,
7916,
64,
3429,
568,
8992,
64,
5598,
3,
187,
50274,
9152,
27,
7916,
64,
7436,
568,
2270,
12132,
3,
187,
50274,
9152,
27,
11814,
10817,
22650,
3,
187,
50274,
9152,
27,
31756,
568,
26806,
1138,
187,
50274,
29,
3145,
187,
50270,
9152,
27,
7916,
64,
3429,
568,
9337,
64,
5598,
3,
187,
50270,
9152,
27,
7916,
64,
7436,
568,
19,
12132,
3,
187,
50270,
9152,
27,
11814,
10817,
8897,
1257,
66,
3,
4725,
535,
50274,
29,
30288,
187,
50270,
9152,
27,
7916,
64,
3429,
568,
9337,
64,
5598,
3,
187,
50270,
9152,
27,
7916,
64,
7436,
568,
13585,
64,
6071,
3,
187,
50270,
9152,
27,
28702,
568,
9229,
64,
33464,
3,
187,
50270,
9152,
27,
1156,
568,
48153,
124,
41230,
36361,
12335,
17598,
103,
164,
224,
227,
20720,
27258,
123,
3,
187,
50270,
9152,
27,
1156,
6573,
10817,
933,
3,
187,
50270,
9152,
27,
1156,
5496,
568,
1036,
1033,
3,
4725,
535,
50274,
29,
9270,
9683,
187,
50270,
9152,
27,
7916,
64,
3429,
568,
9337,
64,
5598,
3,
187,
50270,
9152,
27,
7916,
64,
7436,
568,
9337,
64,
5598,
1138,
535,
50270,
29,
39269,
187,
50266,
9152,
27,
301,
26038,
301,
16,
13382,
31387,
64,
6301,
3,
187,
50266,
9152,
27,
7916,
64,
3429,
568,
9337,
64,
5598,
3,
187,
50266,
9152,
27,
7916,
64,
7436,
568,
13585,
64,
6071,
3,
187,
50266,
9152,
27,
28702,
568,
9229,
3,
187,
50266,
9152,
27,
31756,
568,
33464,
3,
187,
50266,
9152,
27,
17333,
11387,
568,
740,
12132,
6750,
39269,
31,
535,
50270,
29,
29030,
9683,
187,
50266,
9152,
27,
301,
26038,
301,
16,
24951,
64,
6301,
3,
187,
50266,
9152,
27,
7916,
64,
3429,
568,
9337,
64,
5598,
3,
187,
50266,
9152,
27,
7916,
64,
7436,
568,
9337,
64,
5598,
3,
187,
50266,
9152,
27,
28702,
568,
9229,
3,
187,
50266,
9152,
27,
11814,
10817,
22650,
1138,
535,
50266,
29,
30288,
187,
50262,
9152,
27,
301,
26038,
301,
16,
8581,
64,
4856,
3,
187,
50262,
9152,
27,
7916,
64,
3429,
568,
9337,
64,
5598,
3,
187,
50262,
9152,
27,
7916,
64,
7436,
568,
9337,
64,
5598,
3,
187,
50262,
9152,
27,
28702,
568,
9229,
3,
187,
50262,
9152,
27,
1156,
6573,
10817,
933,
3,
187,
50262,
9152,
27,
1156,
5496,
568,
1093,
1033,
5647,
535,
50266,
29,
25155,
7912,
187,
50262,
9152,
27,
301,
26038,
301,
16,
23333,
3,
187,
50262,
9152,
27,
7916,
64,
3429,
568,
1671,
12132,
3,
187,
50262,
9152,
27,
7916,
64,
7436,
568,
1671,
12132,
3,
187,
50262,
9152,
27,
7916,
64,
9229,
688,
15852,
568,
5672,
5647,
187,
50270,
870,
29030,
9683,
31,
187,
50274,
870,
9270,
9683,
31,
535,
187,
870,
39269,
31
] | <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="90dp"
android:background="#fff"
android:orientation="vertical">
<View
android:layout_width="fill_parent"
android:layout_height="2dp"
android:background="#008bea" />
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center_horizontal"
android:text="精品应用推荐下载"
android:textColor="#000"
android:textSize="16sp" />
<FrameLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout
android:id="@+id/promoter_frame"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:orientation="horizontal"
android:paddingTop="10dp"></LinearLayout>
<RelativeLayout
android:id="@+id/progress_frame"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center"
android:background="#fff">
<TextView
android:id="@+id/status_msg"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center"
android:textColor="#000"
android:textSize="18sp"/>
<ProgressBar
android:id="@+id/loading"
android:layout_width="35dp"
android:layout_height="35dp"
android:layout_centerInParent="true"/>
</RelativeLayout>
</FrameLayout>
</LinearLayout> |
214,476 | Github | [
2948,
40825,
12354,
187,
187,
2437,
17234,
14968,
10772,
3145,
27,
427,
1267,
494,
10772,
3145,
551,
535,
50274,
4659,
1339,
21674,
426,
6640,
6989,
14418,
5475,
18483,
1587,
18030,
14968,
10772,
3145,
2807,
187,
50274,
33,
5472,
5677,
1059,
5075,
945,
4060,
47379,
27,
427,
1267,
2068,
6180,
2,
187,
187,
94,
535
] | import Cocoa
class EditorTemplateCellView: NSTableCellView {
static let identifier = NSUserInterfaceItemIdentifier("EditorTemplateCellView")
@IBOutlet weak var titleTextField: NSTextField!
}
|
214,477 | Github | [
22,
24677,
1012,
3011,
4989,
17,
29941,
66,
22,
67,
24,
1525,
69,
317,
2941,
66,
25,
69,
1438,
66,
2759,
1099,
30920,
2275,
68,
22,
67,
22,
66,
357,
1731,
23829,
1796,
18,
67,
24,
4482,
25,
567,
67,
27385,
71,
1717,
1867,
12964,
1839,
41325,
69,
567,
1610,
67,
5781,
32168,
28873,
2275,
67,
20,
68,
21,
71,
3046,
324,
21,
5470,
2537,
69,
48828,
1619,
17599,
1671,
68,
3357,
2428,
29790,
70,
187
] | 53851357df0689a5b799dac03a8d80a8425906ebc5b5aab26337ee1b7bb8ffb331f2939fc38881dff33baa859502ebb3c4f59ad4db49d6392818835c53cd697e
|
214,478 | Github | [
41497,
5302,
4155,
15,
26433,
82,
28,
187,
5302,
27737,
316,
15,
31489,
28,
187,
5302,
21106,
290,
21659,
621,
28,
187,
5302,
1594,
8522,
28,
187,
187,
12361,
27737,
316,
15,
26943,
15,
43612,
20062,
31674,
955,
187,
92,
187,
50275,
4387,
966,
30810,
20070,
1163,
1023,
16533,
5089,
187,
50275,
92,
187,
50272,
60,
34182,
62,
187,
50272,
4387,
2991,
17375,
64,
8629,
64,
5903,
1082,
187,
50272,
92,
187,
50269,
2044,
269,
426,
747,
401,
4584,
1874,
187,
50269,
2044,
6571,
13141,
426,
3035,
25552,
15,
12519,
9,
18,
13,
2233,
10,
187,
50266,
15,
10004,
9,
79,
3001,
313,
565,
14677,
79,
15,
3980,
13141,
9,
71,
13,
470,
15,
26,
71,
1228,
187,
50266,
15,
6878,
9,
295,
3001,
2195,
79,
15,
15413,
3902,
558,
535,
50269,
39025,
13141,
15,
18837,
5023,
4678,
15611,
254,
45175,
9,
1438,
558,
535,
50269,
2044,
6571,
41419,
426,
3035,
25552,
15,
12519,
9,
18,
13,
2233,
10,
187,
50266,
15,
10004,
9,
79,
3001,
313,
565,
14677,
79,
15,
3980,
13141,
9,
71,
13,
470,
15,
18,
71,
1228,
187,
50266,
15,
6878,
9,
79,
3001,
2195,
79,
15,
15413,
3902,
558,
535,
50269,
39025,
41419,
15,
18837,
5023,
4678,
28274,
45175,
9,
938,
558,
187,
50272,
94,
535,
50272,
60,
34182,
62,
187,
50272,
4387,
2991,
17375,
64,
6986,
64,
5903,
1082,
187,
50272,
92,
187,
50269,
2044,
269,
426,
747,
401,
4584,
1874,
187,
50269,
2044,
6571,
9671,
426,
3035,
25552,
15,
12519,
9,
18,
13,
2233,
10,
187,
50266,
15,
10004,
9,
79,
3001,
295,
15,
3980,
9671,
9,
71,
13,
470,
15,
26,
71,
1228,
187,
50266,
15,
6878,
9,
79,
3001,
295,
2295,
4284,
558,
535,
50269,
39025,
9671,
15,
18837,
5023,
4678,
15611,
254,
45175,
9,
1438,
558,
535,
50269,
2044,
6571,
3650,
9671,
426,
3035,
25552,
15,
12519,
9,
18,
13,
2233,
10,
187,
50266,
15,
10004,
9,
79,
3001,
295,
15,
3980,
9671,
9,
71,
13,
470,
15,
18,
71,
1228,
187,
50266,
15,
6878,
9,
79,
3001,
295,
2295,
4284,
558,
535,
50269,
39025,
3650,
9671,
15,
18837,
5023,
4678,
28274,
45175,
9,
938,
558,
535,
50269,
2044,
6571,
3650,
9671,
4241,
426,
3035,
25552,
15,
12519,
9,
18,
13,
2233,
10,
187,
50266,
15,
10004,
9,
295,
3001,
747,
1789,
6649,
187,
50266,
15,
10004,
9,
84,
3001,
256,
15,
3980,
9671,
9,
71,
13,
470,
15,
18,
71,
1228,
187,
50266,
15,
6878,
9,
84,
3001,
256,
2295,
3635,
558,
535,
50269,
39025,
3650,
9671,
4241,
15,
18837,
5023,
4678,
28274,
45175,
9,
938,
558,
187,
50272,
94,
187,
50275,
94,
187,
94
] | using System.Linq;
using Bogus.Extensions;
using FluentAssertions;
using Xunit;
namespace Bogus.Tests.GitHubIssues
{
public class Issue178 : SeededTest
{
[Fact]
public void weighted_null_check()
{
var f = new Faker();
var mostlyNull = Enumerable.Range(1, 100)
.Select(n => (int?)n.OrNull(f, 0.9f))
.Count( n => !n.HasValue);
mostlyNull.Should().BeGreaterThan(80);
var mostlyNotNull = Enumerable.Range(1, 100)
.Select(n => (int?)n.OrNull(f, 0.1f))
.Count(n => !n.HasValue);
mostlyNotNull.Should().BeLessThan(20);
}
[Fact]
public void weighted_default_check()
{
var f = new Faker();
var mostlyDefault = Enumerable.Range(1, 100)
.Select(n => n.OrDefault(f, 0.9f))
.Count(n => n == default);
mostlyDefault.Should().BeGreaterThan(80);
var mostlyNotDefault = Enumerable.Range(1, 100)
.Select(n => n.OrDefault(f, 0.1f))
.Count(n => n == default);
mostlyNotDefault.Should().BeLessThan(20);
var mostlyNotDefaultObject = Enumerable.Range(1, 100)
.Select( n => new object())
.Select(s => s.OrDefault(f, 0.1f))
.Count(s => s == null);
mostlyNotDefaultObject.Should().BeLessThan(20);
}
}
} |
214,479 | Github | [
14277,
7229,
2715,
568,
18,
15,
17,
3,
9706,
568,
18441,
14,
25,
28739,
187,
14219,
535,
50274,
38860,
4637,
535,
50274,
20968,
313,
68,
10,
4267,
14,
14952,
380,
411,
2843,
282,
8049,
3267,
42505,
27,
5987,
1358,
7280,
15,
681,
16,
56,
2843,
282,
16,
88,
2843,
282,
16,
33884,
16,
1987,
42505,
535,
50274,
38247,
310,
20585,
7169,
13,
1959,
273,
4179,
13,
281,
667,
1436,
13546,
247,
3491,
187,
50274,
1171,
436,
3694,
285,
2330,
10097,
4367,
313,
783,
346,
31495,
8375,
281,
2968,
187,
50274,
249,
253,
9107,
1293,
12400,
13,
1690,
1293,
12291,
253,
3570,
187,
50274,
936,
897,
13,
3491,
13,
10007,
13,
17310,
13,
15452,
13,
16969,
13,
749,
21997,
13,
285,
16,
263,
5580,
187,
50274,
21592,
447,
273,
253,
9107,
13,
285,
281,
9659,
7732,
281,
5207,
253,
9107,
310,
187,
50274,
71,
662,
1428,
281,
513,
594,
13,
2256,
281,
253,
1563,
2515,
27,
535,
50274,
510,
1840,
9451,
4366,
285,
436,
9214,
4366,
3091,
320,
2908,
275,
512,
187,
50274,
21592,
447,
390,
6832,
11821,
273,
253,
9107,
15,
535,
50274,
9707,
19295,
4110,
33278,
346,
1719,
4110,
995,
15002,
23181,
3481,
9103,
19329,
13,
31643,
4145,
187,
50274,
2894,
23637,
13,
31877,
17706,
5803,
25666,
5935,
3003,
15466,
3481,
20863,
13,
187,
50274,
39,
1433,
17582,
6651,
329,
20383,
20103,
4889,
36429,
1042,
6764,
2637,
17260,
15,
2949,
7651,
30609,
32221,
3003,
187,
50274,
37482,
16902,
4145,
28827,
43227,
8728,
34745,
6651,
9103,
46533,
13,
32024,
4145,
19359,
187,
50274,
18206,
13845,
13,
33206,
2949,
2933,
37457,
3481,
32833,
13,
34915,
4145,
35497,
13,
34984,
10727,
13,
187,
50274,
7310,
3481,
4145,
2949,
42867,
8286,
9277,
3003,
19295,
4145,
3003,
19226,
4145,
19359,
49731,
19212,
2949,
3003,
187,
50274,
8683,
18530,
15,
187,
187,
22158,
187,
30952,
32735,
31512,
31,
187,
29,
10069,
31,
187,
15104,
399,
14661,
5981,
1873,
6781,
187,
870,
10069,
31,
187
] | <?xml version="1.0" encoding="UTF-8"?>
<!--
MIT License
Copyright (c) 2010-2020 The Waffle Project Contributors: https://github.com/Waffle/waffle/graphs/contributors
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
-->
<!DOCTYPE Format>
<Format>
<!-- Dummy format file -->
</Format>
|
214,480 | Github | [
1532,
187,
7955,
2845,
569,
27,
187,
50276,
14,
380,
657,
25,
20369,
6254,
5673,
310,
30655,
275,
3718,
273,
253,
657,
26,
187,
50274,
28246,
3328,
6254,
5673,
15,
15185,
323,
253,
657,
25,
20369,
6254,
187,
50274,
15049,
310,
9355,
281,
320,
5176,
275,
253,
686,
48,
8,
3727,
273,
7489,
15268,
15,
187
] | ---
deprecations:
- The V8 Federation driver interface is deprecated in favor of the V9
Federation driver interface. Support for the V8 Federation driver
interface is planned to be removed in the 'O' release of OpenStack.
|
214,481 | Github | [
16754,
30000,
15,
15905,
17241,
513,
187,
50276,
468,
2225,
64,
12928,
1163,
1590,
13,
1163,
18480,
187,
423,
187
] | ActiveAdmin.register Country do
permit_params :name, :information
end
|
214,482 | Github | [
2044,
14637,
426,
2430,
2073,
3474,
1103,
3401,
187,
187,
2044,
2062,
36,
14066,
426,
1232,
15,
68,
14066,
187,
2044,
260,
14066,
426,
3635,
187,
187,
2044,
5147,
426,
1232,
15,
12540,
15,
6217,
9566,
39,
4641,
64,
7864,
64,
3859,
1194,
24358,
2785,
1232,
15,
19161,
187,
187,
7404,
15,
68,
14066,
426,
1159,
1082,
551,
187,
50276,
338,
6522,
68,
14066,
10,
187,
50274,
68,
14066,
426,
2062,
36,
14066,
15,
4065,
9,
7404,
10,
187,
50276,
2309,
260,
14066,
187,
94,
187,
14626,
551,
187,
50276,
7404,
15,
68,
14066,
1082,
187,
94,
5834,
313,
254,
10,
12166,
187,
187,
2044,
448,
7341,
426,
1232,
15,
348,
7341,
187,
7404,
15,
348,
7341,
426,
1159,
9,
69,
10,
551,
187,
50276,
68,
14066,
426,
3635,
187,
50276,
348,
7341,
15,
4065,
9,
7404,
13,
277,
10,
187,
94,
187,
187,
8640,
15,
23756,
426,
12097,
187,
187,
3701,
12097,
313,
3671,
10,
551,
187,
50276,
605,
313,
250,
16945,
303,
3018,
690,
1841,
326,
403,
1929,
270,
15172,
390,
5816,
15,
535,
50276,
605,
298,
348,
2307,
13,
7154,
2720,
281,
470,
15,
23,
15,
19,
187,
50276,
605,
896,
14,
631,
253,
4993,
1060,
15,
187,
50276,
338,
313,
3474,
1103,
15,
7110,
22585,
8324,
2073,
48,
64,
14305,
4132,
15130,
3401,
3857,
187,
50272,
7404,
15,
4149,
15,
8992,
33692,
63,
87,
17,
15461,
23,
61,
4681,
17,
14,
19,
62,
10819,
87,
17,
15461,
22,
61,
11379,
1228,
551,
187,
50274,
20559,
45,
348,
2307,
9,
3671,
10,
187,
50276,
94,
535,
50276,
605,
298,
307,
1022,
7092,
13,
390,
642,
14,
412,
187,
50276,
338,
6522,
3671,
15,
40376,
1022,
10,
551,
187,
50274,
20559,
45,
307,
1022,
9,
3671,
10,
187,
50276,
94,
535,
50276,
605,
5987,
1358,
7280,
15,
681,
16,
8901,
18944,
16,
6219,
14,
737,
584,
1020,
14,
3671,
16,
22402,
16,
21,
187,
50276,
605,
775,
628,
943,
417,
1891,
327,
9416,
1208,
390,
299,
33309,
604,
1327,
14,
9723,
15,
187,
50276,
605,
733,
943,
417,
1891,
327,
546,
375,
656,
2455,
13,
347,
436,
816,
6492,
187,
50276,
605,
326,
247,
25290,
2506,
626,
1329,
253,
6034,
4254,
15,
535,
50276,
3671,
15,
348,
628,
426,
448,
628,
27281,
9,
3671,
15,
348,
628,
10,
187,
50276,
3671,
15,
71,
348,
628,
426,
448,
628,
27281,
9,
3671,
15,
71,
348,
628,
10,
187,
50276,
3671,
15,
77,
348,
628,
426,
448,
628,
27281,
9,
3671,
15,
77,
348,
628,
10,
535,
50276,
3671,
15,
348,
2307,
426,
448,
2307,
27281,
9,
3671,
15,
348,
2307,
10,
187,
50276,
3671,
15,
71,
348,
2307,
426,
448,
2307,
27281,
9,
3671,
15,
71,
348,
2307,
10,
187,
50276,
3671,
15,
77,
348,
2307,
426,
448,
2307,
27281,
9,
3671,
15,
77,
348,
2307,
10,
535,
50276,
3671,
15,
348,
628,
27902,
426,
448,
628,
27281,
27902,
9,
3671,
15,
348,
628,
27902,
10,
187,
50276,
3671,
15,
71,
348,
628,
27902,
426,
448,
628,
27281,
27902,
9,
3671,
15,
71,
348,
628,
27902,
10,
187,
50276,
3671,
15,
77,
348,
628,
27902,
426,
448,
628,
27281,
27902,
9,
3671,
15,
77,
348,
628,
27902,
10,
535,
50276,
3671,
15,
348,
2307,
27902,
426,
448,
2307,
27281,
27902,
9,
3671,
15,
348,
2307,
27902,
10,
187,
50276,
3671,
15,
71,
348,
2307,
27902,
426,
448,
2307,
27281,
27902,
9,
3671,
15,
71,
348,
2307,
27902,
10,
187,
50276,
3671,
15,
77,
348,
2307,
27902,
426,
448,
2307,
27281,
27902,
9,
3671,
15,
77,
348,
2307,
27902,
10,
535,
50276,
3671,
15,
8766,
426,
1098,
27281,
9,
3671,
15,
8766,
10,
187,
50276,
3671,
15,
71,
8766,
426,
1098,
27281,
9,
3671,
15,
71,
8766,
10,
187,
50276,
3671,
15,
77,
8766,
426,
1098,
27281,
9,
3671,
15,
77,
8766,
10,
535,
50276,
3671,
15,
8766,
27902,
426,
1098,
27281,
27902,
9,
3671,
15,
8766,
27902,
10,
187,
50276,
3671,
15,
71,
8766,
27902,
426,
1098,
27281,
27902,
9,
3671,
15,
71,
8766,
27902,
10,
187,
50276,
3671,
15,
77,
8766,
27902,
426,
1098,
27281,
27902,
9,
3671,
15,
77,
8766,
27902,
10,
535,
50276,
605,
604,
298,
348,
2307,
16,
77,
348,
628,
513,
417,
2226,
13,
840,
1056,
731,
642,
14,
2695,
187,
50276,
338,
6522,
3671,
15,
77,
348,
2307,
10,
551,
187,
50274,
3671,
15,
77,
348,
2307,
426,
1159,
313,
3967,
13,
4438,
13,
34795,
10,
551,
187,
50272,
338,
313,
11316,
10,
1232,
15,
8384,
44249,
9,
11316,
10,
187,
50274,
94,
187,
50274,
3671,
15,
77,
348,
2307,
27902,
426,
1159,
6734,
12166,
187,
50276,
94,
187,
50276,
338,
6522,
3671,
15,
77,
348,
628,
10,
551,
187,
50274,
3671,
15,
77,
348,
628,
426,
1159,
313,
3967,
13,
43323,
13,
305,
301,
13,
34795,
10,
551,
187,
50272,
338,
313,
11316,
10,
1232,
15,
8384,
44249,
9,
11316,
10,
187,
50274,
94,
187,
50274,
3671,
15,
77,
348,
628,
27902,
426,
1159,
6734,
12166,
187,
50276,
94,
535,
50276,
605,
327,
7464,
13,
329,
16,
55,
3694,
476,
5569,
253,
9617,
13,
8479,
436,
187,
50276,
605,
281,
1891,
342,
271,
444,
15804,
1410,
390,
444,
10810,
46,
604,
253,
9617,
4428,
9841,
187,
50276,
605,
3562,
4367,
15,
50276,
17222,
969,
327,
4433,
13,
323,
598,
281,
3925,
7253,
15,
535,
50276,
605,
6618,
253,
22639,
436,
1048,
984,
690,
7464,
18567,
14,
55,
9622,
13,
824,
347,
2956,
414,
187,
50276,
605,
2372,
26,
13,
778,
5569,
4367,
323,
598,
281,
247,
7017,
13,
8479,
44258,
5522,
3334,
187,
50276,
605,
20101,
15,
5220,
13,
1379,
1557,
281,
4917,
253,
8194,
14398,
15,
7464,
27387,
4245,
187,
50276,
605,
12874,
281,
247,
10000,
6287,
272,
1232,
13,
534,
476,
2847,
253,
2086,
8479,
253,
5569,
187,
50276,
605,
16422,
281,
320,
4177,
1272,
273,
12874,
407,
4666,
13,
594,
253,
16422,
2506,
626,
11322,
15,
187,
50276,
338,
313,
19161,
11013,
346,
6481,
1237,
2807,
551,
187,
50274,
3671,
15,
445,
482,
426,
313,
3701,
313,
3671,
5,
445,
482,
10,
551,
1091,
1159,
313,
4064,
13,
281,
13,
34795,
10,
551,
187,
50272,
2044,
1265,
426,
10421,
15,
2666,
1082,
187,
50272,
2044,
896,
2727,
426,
470,
28,
187,
50272,
3671,
5,
445,
482,
9,
4064,
13,
281,
13,
1159,
17933,
313,
254,
10,
551,
187,
50270,
338,
313,
254,
187,
50266,
10494,
313,
254,
15,
3211,
11013,
346,
38,
15804,
1410,
3,
2785,
2827,
15,
3211,
11013,
346,
38,
10810,
46,
2807,
187,
50266,
10494,
10421,
15,
2666,
1082,
428,
1265,
654,
721,
1418,
10,
551,
187,
50268,
1178,
20780,
9,
3701,
1082,
551,
187,
50266,
3671,
15,
8766,
9,
936,
13,
1159,
313,
296,
727,
13,
331,
10,
551,
187,
50264,
338,
313,
296,
727,
3857,
331,
727,
15,
3211,
11013,
346,
41188,
3489,
2807,
187,
50262,
3671,
5,
445,
482,
9,
4064,
13,
281,
13,
17933,
558,
187,
50264,
7271,
187,
50262,
11316,
9,
254,
10,
187,
50266,
2311,
187,
50268,
2023,
896,
2727,
10,
187,
50268,
338,
313,
2135,
2727,
654,
2233,
10,
187,
50266,
2135,
2727,
7079,
884,
28,
187,
50268,
2309,
28,
187,
50270,
94,
187,
50270,
338,
313,
11316,
10,
34795,
9,
254,
10,
187,
50272,
2311,
187,
50274,
599,
2769,
3671,
15,
445,
482,
10,
187,
50276,
94,
535,
50276,
605,
604,
1239,
1082,
6548,
444,
2696,
23098,
13,
840,
816,
1611,
352,
969,
15,
187,
50276,
3671,
15,
1088,
426,
313,
3701,
313,
3671,
5,
1088,
10,
551,
187,
50274,
3701,
1239,
313,
9194,
13,
6391,
13,
8409,
13,
2978,
13,
1899,
13,
15259,
27307,
551,
187,
50272,
2044,
15259,
187,
50272,
338,
313,
20104,
64,
3857,
29144,
15259,
64,
11013,
686,
3701,
3401,
551,
187,
50270,
2044,
299,
356,
27077,
426,
470,
187,
50270,
20104,
426,
1159,
313,
254,
13,
13830,
4772,
10,
551,
187,
50268,
338,
313,
254,
3857,
2827,
15,
3211,
11013,
686,
38,
2696,
23098,
8,
3857,
299,
356,
27077,
654,
884,
10,
551,
187,
50266,
70,
356,
27077,
12996,
187,
50266,
2309,
25290,
5,
1088,
15,
4065,
9,
3671,
13,
29439,
13,
6391,
13,
8409,
13,
2978,
13,
1899,
13,
15259,
10,
187,
50268,
94,
187,
50268,
20104,
4414,
18788,
9,
2520,
13,
7125,
10,
187,
50270,
94,
187,
50272,
94,
187,
50272,
2309,
25290,
5,
1088,
15,
4065,
9,
3671,
13,
29439,
13,
6391,
13,
8409,
13,
2978,
13,
1899,
13,
15259,
10,
187,
50274,
94,
535,
50274,
605,
831,
20096,
2634,
8906,
15,
13382,
261,
1419,
65,
2987,
347,
352,
1057,
323,
7925,
2634,
3671,
15,
1088,
16433,
187,
50274,
1088,
24856,
20894,
876,
426,
25290,
5,
1088,
187,
50274,
2309,
1239,
187,
50276,
34227,
3671,
15,
1088,
10,
535,
50276,
3671,
15,
1088,
27902,
426,
313,
3701,
313,
3671,
5,
1088,
27902,
10,
551,
1091,
1159,
313,
9194,
13,
6391,
13,
8409,
13,
2978,
13,
1899,
10,
551,
187,
50274,
2044,
299,
356,
27077,
426,
470,
187,
50274,
6050,
313,
5672,
10,
551,
187,
50272,
14626,
551,
187,
50270,
2309,
25290,
5,
1088,
27902,
15,
4065,
9,
3671,
13,
29439,
13,
6391,
13,
8409,
13,
2978,
13,
1899,
10,
187,
50272,
94,
5834,
313,
254,
10,
551,
187,
50270,
338,
313,
254,
15,
3211,
11013,
686,
38,
2696,
23098,
8,
3857,
299,
356,
27077,
654,
884,
10,
551,
187,
50268,
70,
356,
27077,
12996,
187,
50268,
25674,
187,
50270,
94,
187,
50270,
22408,
2827,
187,
50272,
94,
187,
50274,
94,
187,
50276,
599,
2769,
3671,
15,
1088,
27902,
10,
535,
50276,
3701,
12097,
45,
348,
2307,
313,
3671,
10,
551,
187,
50274,
3671,
15,
77,
348,
2307,
426,
1159,
313,
3967,
13,
4438,
13,
15259,
10,
551,
187,
50272,
3671,
15,
5758,
9,
1854,
187,
50265,
13,
14637,
15,
48,
64,
10690,
41889,
1040,
14637,
15,
48,
64,
14305,
4132,
15130,
187,
50265,
13,
4438,
187,
50265,
13,
1159,
313,
1000,
13,
29439,
10,
551,
187,
50270,
338,
313,
1000,
10,
551,
187,
50268,
338,
313,
20104,
10,
15259,
9,
1000,
10,
187,
50268,
2309,
187,
50270,
94,
187,
50270,
605,
4510,
281,
1091,
253,
448,
2307,
2228,
13,
604,
581,
6634,
13,
187,
50270,
605,
533,
1335,
1611,
281,
2810,
13,
285,
1304,
11196,
6332,
604,
597,
2826,
15,
187,
50270,
3671,
15,
71,
348,
2307,
9,
9194,
13,
4438,
13,
1159,
313,
1000,
10,
551,
187,
50268,
3671,
15,
10483,
9,
9194,
13,
1159,
9,
1000,
19,
10,
551,
187,
50266,
338,
313,
20104,
10,
15259,
9,
1000,
2785,
1486,
19,
10,
187,
50268,
2311,
187,
50270,
2311,
187,
50272,
2311,
187,
50274,
94,
535,
50274,
3671,
15,
77,
348,
2307,
27902,
426,
1159,
313,
3967,
13,
4438,
10,
551,
187,
50272,
2044,
29439,
426,
25290,
15,
5758,
27902,
9,
3967,
13,
14637,
15,
48,
64,
10690,
41889,
1040,
14637,
15,
48,
64,
14305,
4132,
15130,
13,
4438,
10,
535,
50272,
605,
4510,
281,
1091,
253,
448,
2307,
2228,
13,
604,
581,
6634,
13,
187,
50272,
605,
533,
1335,
1611,
281,
2810,
13,
285,
1304,
11196,
6332,
604,
597,
2826,
15,
187,
50272,
2044,
13222,
426,
2032,
187,
50272,
2044,
851,
187,
50272,
14626,
551,
187,
50270,
1221,
426,
25290,
15,
71,
348,
2307,
27902,
9,
9194,
13,
4438,
10,
187,
50270,
394,
2663,
426,
3221,
187,
50272,
94,
4720,
551,
187,
50270,
338,
313,
394,
2663,
10,
551,
187,
50268,
14626,
551,
187,
50266,
3671,
15,
10483,
27902,
9,
9194,
10,
187,
50268,
94,
5834,
313,
254,
10,
12166,
187,
50270,
94,
2010,
551,
187,
50268,
3671,
15,
10483,
27902,
9,
9194,
10,
187,
50270,
94,
187,
50272,
94,
187,
50272,
2309,
851,
187,
50274,
94,
187,
50276,
94,
535,
50276,
3701,
12097,
45,
307,
1022,
313,
3671,
10,
551,
187,
50274,
338,
313,
3474,
1103,
15,
7110,
22585,
8324,
1587,
48,
64,
14305,
4132,
15130,
14708,
551,
187,
50272,
3671,
15,
40376,
1022,
426,
1159,
313,
3967,
13,
387,
13,
26301,
13,
34795,
10,
551,
187,
50270,
3671,
15,
5758,
9,
3967,
13,
14637,
15,
48,
64,
14305,
4132,
15130,
13,
1159,
313,
254,
13,
29439,
10,
551,
187,
50268,
338,
313,
254,
10,
551,
187,
50266,
338,
313,
11316,
10,
34795,
9,
254,
10,
187,
50266,
2309,
187,
50268,
94,
187,
50268,
3671,
15,
71,
307,
1022,
9,
9194,
13,
387,
13,
26301,
13,
1159,
313,
254,
10,
551,
187,
50266,
3671,
15,
10483,
9,
9194,
13,
1159,
313,
254,
19,
10,
551,
187,
50264,
338,
313,
11316,
10,
34795,
9,
254,
2785,
2827,
19,
10,
187,
50266,
2311,
187,
50268,
2311,
187,
50270,
2311,
187,
50272,
94,
535,
50272,
3671,
15,
40376,
1022,
27902,
426,
1159,
313,
3967,
13,
387,
13,
26301,
10,
551,
187,
50270,
2044,
29439,
426,
25290,
15,
5758,
27902,
9,
3967,
13,
14637,
15,
48,
64,
14305,
4132,
15130,
10,
187,
50270,
2044,
851,
187,
50270,
2044,
13222,
426,
2032,
187,
50270,
14626,
551,
187,
50268,
1221,
426,
25290,
15,
71,
307,
1022,
27902,
9,
9194,
13,
387,
13,
26301,
10,
187,
50268,
394,
2663,
426,
3221,
187,
50270,
94,
4720,
551,
187,
50268,
338,
313,
394,
2663,
10,
551,
187,
50266,
14626,
551,
187,
50264,
3671,
15,
10483,
27902,
9,
9194,
10,
187,
50266,
94,
5834,
313,
254,
10,
12166,
187,
50268,
94,
2010,
551,
187,
50266,
3671,
15,
10483,
27902,
9,
9194,
10,
187,
50268,
94,
187,
50270,
94,
187,
50270,
2309,
851,
187,
50272,
94,
535,
50274,
94,
2010,
551,
187,
50272,
3671,
15,
40376,
1022,
426,
1159,
18339,
66,
13,
795,
67,
13,
795,
68,
13,
34795,
10,
551,
604,
313,
11316,
10,
1232,
15,
8384,
44249,
9,
11316,
10,
748,
187,
50272,
3671,
15,
40376,
1022,
27902,
426,
1159,
6734,
12166,
187,
50274,
94,
187,
50276,
94,
535,
50276,
3701,
448,
2307,
27281,
313,
28474,
10,
551,
187,
50274,
338,
6522,
28474,
10,
1091,
2062,
187,
50274,
2309,
1159,
313,
7831,
13,
4438,
13,
34795,
10,
551,
187,
50272,
2309,
2062,
15,
4065,
9,
3671,
13,
2303,
13,
4438,
13,
1159,
313,
254,
10,
551,
187,
50270,
338,
313,
348,
628,
21419,
20127,
9,
254,
1228,
2827,
426,
3635,
187,
50270,
338,
313,
11316,
10,
34795,
15,
18788,
9,
2520,
13,
7125,
10,
187,
50272,
2311,
187,
50274,
94,
187,
50276,
94,
535,
50276,
3701,
448,
2307,
27281,
27902,
313,
28474,
10,
551,
187,
50274,
338,
6522,
28474,
10,
1091,
2062,
187,
50274,
2309,
1159,
313,
7831,
13,
4438,
10,
551,
187,
50272,
14626,
551,
187,
50270,
2309,
2062,
15,
4065,
9,
3671,
13,
2303,
13,
4438,
10,
187,
50272,
94,
5834,
313,
254,
10,
551,
187,
50270,
338,
6522,
348,
628,
21419,
20127,
9,
254,
1228,
4710,
2827,
187,
50272,
94,
187,
50274,
94,
187,
50276,
94,
2756,
50276,
3701,
448,
628,
27281,
313,
28474,
10,
551,
187,
50274,
338,
6522,
28474,
10,
1091,
2062,
187,
50274,
2309,
1159,
313,
7831,
13,
43323,
13,
305,
301,
13,
34795,
10,
551,
187,
50272,
2309,
2062,
15,
4065,
9,
3671,
13,
2303,
13,
43323,
13,
305,
301,
13,
1159,
313,
254,
10,
551,
187,
50270,
338,
313,
348,
628,
21419,
20127,
9,
254,
1228,
2827,
426,
3635,
187,
50270,
338,
313,
11316,
10,
34795,
15,
18788,
9,
2520,
13,
7125,
10,
187,
50272,
2311,
187,
50274,
94,
187,
50276,
94,
535,
50276,
3701,
448,
628,
27281,
27902,
313,
28474,
10,
551,
187,
50274,
338,
6522,
28474,
10,
1091,
2062,
187,
50274,
2309,
1159,
313,
7831,
13,
43323,
13,
305,
301,
10,
551,
187,
50272,
14626,
551,
187,
50270,
2309,
2062,
15,
4065,
9,
3671,
13,
2303,
13,
43323,
13,
305,
301,
10,
187,
50272,
94,
5834,
313,
254,
10,
551,
187,
50270,
338,
6522,
348,
628,
21419,
20127,
9,
254,
1228,
4710,
2827,
187,
50272,
94,
187,
50274,
94,
187,
50276,
94,
535,
50276,
3701,
1098,
27281,
313,
28474,
10,
551,
187,
50274,
338,
6522,
28474,
10,
1091,
2062,
187,
50274,
605,
8937,
254,
9508,
273,
16459,
41587,
4895,
6704,
20935,
323,
187,
50274,
605,
43323,
559,
305,
301,
15,
187,
50274,
2309,
1159,
313,
7831,
13,
4610,
13,
34795,
10,
551,
187,
50272,
338,
313,
25833,
4610,
11013,
686,
3701,
3401,
551,
187,
50270,
11316,
426,
4610,
187,
50270,
10121,
426,
3635,
187,
50272,
94,
187,
50272,
3701,
15259,
313,
254,
13,
22118,
10,
551,
187,
50270,
338,
313,
22530,
10,
551,
187,
50268,
338,
313,
22530,
15,
11455,
654,
470,
10,
22118,
15,
11455,
7079,
470,
89,
18,
4226,
187,
50268,
338,
313,
22530,
15,
38902,
654,
470,
10,
22118,
15,
38902,
7079,
470,
89,
18,
4226,
187,
50270,
94,
187,
50270,
338,
313,
11316,
10,
34795,
15,
18788,
9,
2520,
13,
7125,
10,
187,
50272,
94,
187,
50272,
2309,
4610,
3736,
2062,
15,
4065,
9,
3671,
13,
2303,
13,
4610,
13,
15259,
10,
187,
50270,
27,
2062,
15,
4065,
9,
3671,
13,
2303,
13,
15259,
10,
187,
50274,
94,
187,
50276,
94,
535,
50276,
3701,
1098,
27281,
27902,
313,
28474,
10,
551,
187,
50274,
338,
6522,
28474,
10,
1091,
2062,
187,
50274,
605,
8937,
254,
9508,
273,
16459,
41587,
4895,
6704,
20935,
323,
187,
50274,
605,
43323,
559,
305,
301,
15,
187,
50274,
2309,
1159,
313,
7831,
13,
4610,
10,
551,
187,
50272,
2044,
22118,
426,
4610,
3736,
2062,
15,
4065,
9,
3671,
13,
2303,
13,
4610,
10,
187,
50270,
27,
2062,
15,
4065,
9,
3671,
13,
2303,
10,
187,
50272,
338,
313,
22530,
15,
11455,
654,
470,
10,
22118,
15,
11455,
7079,
470,
89,
18,
4226,
187,
50272,
338,
313,
22530,
15,
38902,
654,
470,
10,
22118,
15,
38902,
7079,
470,
89,
18,
4226,
187,
50272,
2309,
22118,
28,
187,
50274,
94,
187,
50276,
94,
535,
50276,
605,
16449,
2697,
6328,
2097,
326,
253,
25290,
2506,
626,
1329,
253,
1121,
15,
3771,
11823,
187,
50276,
605,
326,
13,
984,
352,
2506,
626,
2647,
15,
187,
50276,
605,
187,
50276,
605,
604,
627,
434,
642,
755,
11455,
13,
390,
604,
755,
11455,
1082,
310,
1633,
643,
187,
50276,
605,
685,
470,
13,
285,
253,
2228,
310,
444,
22189,
390,
444,
10810,
46,
13,
840,
816,
11823,
187,
50276,
605,
352,
15,
187,
50276,
605,
187,
50276,
605,
831,
2173,
1083,
310,
247,
11561,
4433,
275,
27191,
13,
3334,
13,
13586,
13,
187,
50276,
605,
285,
954,
643,
440,
895,
5657,
326,
8722,
15607,
15,
187,
50276,
605,
187,
50276,
605,
2091,
3515,
347,
5230,
13,
390,
604,
643,
3510,
273,
6332,
403,
187,
50276,
605,
14494,
13,
840,
352,
434,
7654,
15,
187,
50276,
3701,
448,
628,
21419,
20127,
313,
254,
10,
551,
187,
50274,
338,
6522,
254,
10,
187,
50272,
2309,
2032,
535,
50274,
338,
313,
254,
15,
3211,
11013,
346,
1400,
2697,
6328,
2807,
187,
50272,
2309,
2032,
535,
50274,
2044,
1327,
9723,
426,
2195,
7404,
15,
788,
11455,
2785,
1232,
15,
788,
11455,
1082,
20767,
470,
187,
50274,
338,
313,
4160,
9723,
10,
551,
187,
50272,
338,
313,
254,
15,
3211,
11013,
346,
37213,
3,
2785,
2827,
15,
3211,
11013,
346,
38,
10810,
46,
2807,
187,
50270,
2309,
2032,
187,
50274,
94,
535,
50274,
2309,
3221,
187,
50276,
94,
187,
94,
187
] | var constants = require('constants')
var origCwd = process.cwd
var cwd = null
var platform = process.env.GRACEFUL_FS_PLATFORM || process.platform
process.cwd = function() {
if (!cwd)
cwd = origCwd.call(process)
return cwd
}
try {
process.cwd()
} catch (er) {}
var chdir = process.chdir
process.chdir = function(d) {
cwd = null
chdir.call(process, d)
}
module.exports = patch
function patch (fs) {
// (re-)implement some things that are known busted or missing.
// lchmod, broken prior to 0.6.2
// back-port the fix here.
if (constants.hasOwnProperty('O_SYMLINK') &&
process.version.match(/^v0\.6\.[0-2]|^v0\.5\./)) {
patchLchmod(fs)
}
// lutimes implementation, or no-op
if (!fs.lutimes) {
patchLutimes(fs)
}
// https://github.com/isaacs/node-graceful-fs/issues/4
// Chown should not fail on einval or eperm if non-root.
// It should not fail on enosys ever, as this just indicates
// that a fs doesn't support the intended operation.
fs.chown = chownFix(fs.chown)
fs.fchown = chownFix(fs.fchown)
fs.lchown = chownFix(fs.lchown)
fs.chmod = chmodFix(fs.chmod)
fs.fchmod = chmodFix(fs.fchmod)
fs.lchmod = chmodFix(fs.lchmod)
fs.chownSync = chownFixSync(fs.chownSync)
fs.fchownSync = chownFixSync(fs.fchownSync)
fs.lchownSync = chownFixSync(fs.lchownSync)
fs.chmodSync = chmodFixSync(fs.chmodSync)
fs.fchmodSync = chmodFixSync(fs.fchmodSync)
fs.lchmodSync = chmodFixSync(fs.lchmodSync)
fs.stat = statFix(fs.stat)
fs.fstat = statFix(fs.fstat)
fs.lstat = statFix(fs.lstat)
fs.statSync = statFixSync(fs.statSync)
fs.fstatSync = statFixSync(fs.fstatSync)
fs.lstatSync = statFixSync(fs.lstatSync)
// if lchmod/lchown do not exist, then make them no-ops
if (!fs.lchmod) {
fs.lchmod = function (path, mode, cb) {
if (cb) process.nextTick(cb)
}
fs.lchmodSync = function () {}
}
if (!fs.lchown) {
fs.lchown = function (path, uid, gid, cb) {
if (cb) process.nextTick(cb)
}
fs.lchownSync = function () {}
}
// on Windows, A/V software can lock the directory, causing this
// to fail with an EACCES or EPERM if the directory contains newly
// created files. Try again on failure, for up to 60 seconds.
// Set the timeout this long because some Windows Anti-Virus, such as Parity
// bit9, may lock files for up to a minute, causing npm package install
// failures. Also, take care to yield the scheduler. Windows scheduling gives
// CPU to a busy looping process, which can cause the program causing the lock
// contention to be starved of CPU by node, so the contention doesn't resolve.
if (platform === "win32") {
fs.rename = (function (fs$rename) { return function (from, to, cb) {
var start = Date.now()
var backoff = 0;
fs$rename(from, to, function CB (er) {
if (er
&& (er.code === "EACCES" || er.code === "EPERM")
&& Date.now() - start < 60000) {
setTimeout(function() {
fs.stat(to, function (stater, st) {
if (stater && stater.code === "ENOENT")
fs$rename(from, to, CB);
else
cb(er)
})
}, backoff)
if (backoff < 100)
backoff += 10;
return;
}
if (cb) cb(er)
})
}})(fs.rename)
}
// if read() returns EAGAIN, then just try it again.
fs.read = (function (fs$read) {
function read (fd, buffer, offset, length, position, callback_) {
var callback
if (callback_ && typeof callback_ === 'function') {
var eagCounter = 0
callback = function (er, _, __) {
if (er && er.code === 'EAGAIN' && eagCounter < 10) {
eagCounter ++
return fs$read.call(fs, fd, buffer, offset, length, position, callback)
}
callback_.apply(this, arguments)
}
}
return fs$read.call(fs, fd, buffer, offset, length, position, callback)
}
// This ensures `util.promisify` works as it does for native `fs.read`.
read.__proto__ = fs$read
return read
})(fs.read)
fs.readSync = (function (fs$readSync) { return function (fd, buffer, offset, length, position) {
var eagCounter = 0
while (true) {
try {
return fs$readSync.call(fs, fd, buffer, offset, length, position)
} catch (er) {
if (er.code === 'EAGAIN' && eagCounter < 10) {
eagCounter ++
continue
}
throw er
}
}
}})(fs.readSync)
function patchLchmod (fs) {
fs.lchmod = function (path, mode, callback) {
fs.open( path
, constants.O_WRONLY | constants.O_SYMLINK
, mode
, function (err, fd) {
if (err) {
if (callback) callback(err)
return
}
// prefer to return the chmod error, if one occurs,
// but still try to close, and report closing errors if they occur.
fs.fchmod(fd, mode, function (err) {
fs.close(fd, function(err2) {
if (callback) callback(err || err2)
})
})
})
}
fs.lchmodSync = function (path, mode) {
var fd = fs.openSync(path, constants.O_WRONLY | constants.O_SYMLINK, mode)
// prefer to return the chmod error, if one occurs,
// but still try to close, and report closing errors if they occur.
var threw = true
var ret
try {
ret = fs.fchmodSync(fd, mode)
threw = false
} finally {
if (threw) {
try {
fs.closeSync(fd)
} catch (er) {}
} else {
fs.closeSync(fd)
}
}
return ret
}
}
function patchLutimes (fs) {
if (constants.hasOwnProperty("O_SYMLINK")) {
fs.lutimes = function (path, at, mt, cb) {
fs.open(path, constants.O_SYMLINK, function (er, fd) {
if (er) {
if (cb) cb(er)
return
}
fs.futimes(fd, at, mt, function (er) {
fs.close(fd, function (er2) {
if (cb) cb(er || er2)
})
})
})
}
fs.lutimesSync = function (path, at, mt) {
var fd = fs.openSync(path, constants.O_SYMLINK)
var ret
var threw = true
try {
ret = fs.futimesSync(fd, at, mt)
threw = false
} finally {
if (threw) {
try {
fs.closeSync(fd)
} catch (er) {}
} else {
fs.closeSync(fd)
}
}
return ret
}
} else {
fs.lutimes = function (_a, _b, _c, cb) { if (cb) process.nextTick(cb) }
fs.lutimesSync = function () {}
}
}
function chmodFix (orig) {
if (!orig) return orig
return function (target, mode, cb) {
return orig.call(fs, target, mode, function (er) {
if (chownErOk(er)) er = null
if (cb) cb.apply(this, arguments)
})
}
}
function chmodFixSync (orig) {
if (!orig) return orig
return function (target, mode) {
try {
return orig.call(fs, target, mode)
} catch (er) {
if (!chownErOk(er)) throw er
}
}
}
function chownFix (orig) {
if (!orig) return orig
return function (target, uid, gid, cb) {
return orig.call(fs, target, uid, gid, function (er) {
if (chownErOk(er)) er = null
if (cb) cb.apply(this, arguments)
})
}
}
function chownFixSync (orig) {
if (!orig) return orig
return function (target, uid, gid) {
try {
return orig.call(fs, target, uid, gid)
} catch (er) {
if (!chownErOk(er)) throw er
}
}
}
function statFix (orig) {
if (!orig) return orig
// Older versions of Node erroneously returned signed integers for
// uid + gid.
return function (target, options, cb) {
if (typeof options === 'function') {
cb = options
options = null
}
function callback (er, stats) {
if (stats) {
if (stats.uid < 0) stats.uid += 0x100000000
if (stats.gid < 0) stats.gid += 0x100000000
}
if (cb) cb.apply(this, arguments)
}
return options ? orig.call(fs, target, options, callback)
: orig.call(fs, target, callback)
}
}
function statFixSync (orig) {
if (!orig) return orig
// Older versions of Node erroneously returned signed integers for
// uid + gid.
return function (target, options) {
var stats = options ? orig.call(fs, target, options)
: orig.call(fs, target)
if (stats.uid < 0) stats.uid += 0x100000000
if (stats.gid < 0) stats.gid += 0x100000000
return stats;
}
}
// ENOSYS means that the fs doesn't support the op. Just ignore
// that, because it doesn't matter.
//
// if there's no getuid, or if getuid() is something other
// than 0, and the error is EINVAL or EPERM, then just ignore
// it.
//
// This specific case is a silent failure in cp, install, tar,
// and most other unix tools that manage permissions.
//
// When running as root, or if other types of errors are
// encountered, then it's strict.
function chownErOk (er) {
if (!er)
return true
if (er.code === "ENOSYS")
return true
var nonroot = !process.getuid || process.getuid() !== 0
if (nonroot) {
if (er.code === "EINVAL" || er.code === "EPERM")
return true
}
return false
}
}
|
214,483 | Github | [
4,
888,
186,
3,
33,
45818,
10,
427,
4625,
4438,
49895,
89,
15,
73,
337,
15,
20,
5325,
16,
2922,
16,
1762,
2145,
27,
740,
27,
3011,
3,
187,
3122,
3424,
187,
187,
20968,
313,
68,
10,
9748,
50276,
16880,
11294,
187,
187,
13570,
9424,
27,
535,
50274,
10715,
49895,
89,
15,
73,
187,
187,
17441,
27,
535,
50274,
1552,
6333,
4428,
512,
253,
4156,
941,
908,
407,
253,
4082,
14734,
41224,
187,
50275,
3207,
14,
49895,
89,
6254,
15,
187,
187,
27041,
27,
535,
50274,
38561,
4438,
187,
187,
49736,
9541,
27,
187,
187,
283,
8480,
187,
187,
605,
187,
605,
380,
1735,
873,
273,
7180,
403,
323,
253,
8951,
49895,
89,
187,
605,
5838,
27,
512,
30285,
4516,
187,
605,
187,
187,
605,
187,
605,
37174,
89,
21980,
1668,
14,
4897,
4438,
313,
6159,
2697,
4438,
1249,
10,
873,
3923,
2876,
323,
8951,
46190,
89,
15,
187,
605,
187,
187,
27224,
7396,
8951,
49895,
89,
64,
33031,
89,
21980,
5456,
426,
551,
187,
50274,
4290,
46,
13,
50254,
50274,
605,
3135,
873,
9561,
187,
50274,
41107,
64,
49559,
64,
13766,
13,
187,
50274,
19,
13,
50254,
50272,
605,
1385,
187,
50274,
17,
89,
805,
3071,
13,
50254,
1380,
8046,
18149,
187,
50274,
17,
89,
26313,
13,
535,
50274,
4290,
46,
13,
187,
50274,
6217,
42363,
64,
49559,
64,
13766,
13,
187,
50274,
20,
13,
187,
50274,
17,
89,
24133,
13,
470,
89,
933,
66,
13,
470,
89,
933,
67,
13,
50272,
605,
642,
19714,
275,
37174,
89,
21980,
4438,
535,
50274,
38,
3519,
50259,
187,
4718,
187,
187,
605,
187,
605,
14212,
89,
10487,
1668,
14,
4897,
313,
1549,
8161,
22906,
10,
4438,
873,
3923,
2876,
323,
8951,
46190,
89,
15,
187,
605,
187,
187,
27224,
7396,
8951,
49895,
89,
64,
10695,
89,
10487,
5456,
426,
551,
187,
50274,
4290,
46,
13,
50254,
50274,
605,
3135,
873,
9561,
187,
50274,
41107,
64,
49559,
64,
13766,
13,
187,
50274,
19,
13,
50254,
50272,
605,
1385,
187,
50274,
17,
89,
805,
3071,
13,
50254,
1380,
8046,
18149,
187,
50274,
17,
89,
26313,
13,
535,
50274,
4290,
46,
13,
187,
50274,
6217,
42363,
64,
49559,
64,
13766,
13,
187,
50274,
20,
13,
187,
50274,
17,
89,
24133,
13,
470,
89,
933,
66,
13,
470,
89,
933,
67,
13,
50272,
605,
642,
19714,
275,
14212,
89,
10487,
4438,
535,
50274,
38,
3519,
187,
4718,
187,
187,
605,
187,
605,
27277,
89,
41356,
1668,
14,
4897,
313,
1549,
8161,
22906,
10,
4438,
873,
3923,
2876,
323,
8951,
46190,
89,
15,
187,
605,
187,
187,
27224,
7396,
8951,
49895,
89,
64,
31111,
89,
41356,
5456,
426,
551,
187,
50274,
4290,
46,
13,
50254,
50274,
605,
3135,
873,
9561,
187,
50274,
41107,
64,
49559,
64,
13766,
13,
187,
50274,
19,
13,
50254,
50272,
605,
1385,
187,
50274,
17,
89,
805,
3071,
13,
50254,
1380,
8046,
18149,
187,
50274,
17,
89,
26313,
13,
2756,
50274,
4290,
46,
13,
187,
50274,
6217,
42363,
64,
49559,
64,
13766,
13,
187,
50274,
20,
13,
187,
4,
338,
21252,
64,
1540,
44,
64,
35,
19871,
187,
50274,
17,
89,
24133,
13,
470,
89,
933,
66,
13,
470,
89,
933,
67,
13,
187,
4,
7287,
187,
4,
338,
40229,
64,
1237,
44,
64,
35,
1539,
14007,
187,
50274,
17,
89,
24133,
13,
470,
89,
933,
66,
13,
470,
89,
9104,
67,
13,
187,
4,
7287,
535,
50274,
9324,
13,
187,
50274,
48351,
64,
8022,
57,
3887,
64,
18690,
64,
13766,
13,
187,
50274,
17,
30962,
13,
535,
50274,
38,
3519,
187,
4718,
187,
187,
605,
29648,
187,
605,
2629,
657,
7283,
2505,
10006,
1060,
187,
605,
5096,
89,
1099,
387,
37174,
89,
16552,
187,
605,
187,
605,
29648,
187,
187,
605,
187,
605,
5096,
89,
1099,
2505,
4438,
873,
3923,
2876,
323,
8951,
46190,
89,
15,
187,
605,
313,
26813,
89,
8320,
12275,
6064,
28,
898,
89,
1036,
1894,
894,
2698,
187,
605,
187,
187,
27224,
7396,
8951,
49895,
89,
64,
1438,
89,
1099,
4312,
5456,
426,
551,
187,
50274,
4290,
46,
13,
50254,
50274,
605,
3135,
873,
9561,
187,
50274,
41107,
64,
49559,
64,
13766,
13,
187,
50274,
19,
13,
50254,
50272,
605,
1385,
187,
50274,
17,
89,
805,
3071,
13,
50254,
1380,
8046,
18149,
187,
50274,
17,
89,
26313,
13,
535,
50274,
4290,
46,
13,
187,
50274,
6217,
42363,
64,
49559,
64,
13766,
13,
187,
50274,
20,
13,
187,
50274,
17,
89,
24133,
13,
470,
89,
933,
66,
13,
470,
89,
933,
67,
13,
50272,
605,
642,
19714,
275,
2505,
4438,
535,
50274,
38,
3519,
187,
4718,
187,
187,
605,
187,
605,
5096,
89,
1099,
2505,
4438,
873,
3923,
2876,
323,
8951,
46190,
89,
15,
187,
605,
313,
33031,
89,
16552,
12275,
6064,
28,
854,
89,
1047,
1894,
894,
2698,
187,
605,
187,
187,
27224,
7396,
8951,
49895,
89,
64,
1438,
89,
1099,
64,
1047,
64,
4312,
5456,
426,
551,
187,
50274,
4290,
46,
13,
50254,
50274,
605,
3135,
873,
9561,
187,
50274,
41107,
64,
49559,
64,
13766,
13,
187,
50274,
19,
13,
50254,
50272,
605,
1385,
187,
50274,
17,
89,
805,
3071,
13,
50254,
1380,
8046,
18149,
187,
50274,
17,
89,
26313,
13,
535,
50274,
4290,
46,
13,
187,
50274,
6217,
42363,
64,
49559,
64,
13766,
13,
187,
50274,
20,
13,
187,
50274,
17,
89,
24133,
13,
470,
89,
933,
66,
13,
470,
89,
933,
67,
13,
50269,
605,
642,
19714,
275,
2505,
4438,
535,
50274,
38,
3519,
187,
4718,
187,
187,
605,
187,
605,
1249,
1438,
89,
31111,
1668,
14,
4897,
4438,
313,
6159,
2697,
4438,
470,
89,
23,
36,
10,
873,
3923,
2876,
323,
8951,
46190,
89,
15,
187,
605,
187,
187,
27224,
7396,
8951,
49895,
89,
64,
805,
1438,
89,
31111,
5456,
426,
551,
187,
50274,
4290,
46,
13,
50254,
50274,
605,
3135,
873,
9561,
187,
50274,
41107,
64,
49559,
64,
13766,
13,
187,
50274,
19,
13,
50254,
50272,
605,
1385,
187,
50274,
17,
89,
805,
3071,
13,
50254,
1380,
8046,
18149,
187,
50274,
17,
89,
26313,
13,
535,
50274,
4290,
46,
13,
187,
50274,
6217,
42363,
64,
49559,
64,
13766,
13,
187,
50274,
20,
13,
187,
4,
338,
21252,
64,
1540,
44,
64,
35,
19871,
187,
50274,
17,
89,
24133,
13,
470,
89,
933,
66,
13,
470,
89,
933,
67,
13,
187,
4,
7287,
187,
4,
338,
40229,
64,
1237,
44,
64,
35,
1539,
14007,
187,
50274,
17,
89,
24133,
13,
470,
89,
933,
66,
13,
470,
89,
9104,
67,
13,
187,
4,
7287,
535,
50274,
38,
3519,
187,
4718,
187,
187,
605,
187,
605,
37174,
89,
21980,
6705,
76,
14,
4897,
4438,
313,
6159,
2697,
4438,
470,
89,
1540,
10,
873,
3923,
2876,
323,
8951,
46190,
89,
15,
187,
605,
187,
187,
27224,
7396,
8951,
49895,
89,
64,
33031,
89,
21980,
64,
1540,
76,
5456,
426,
551,
187,
50274,
4290,
46,
13,
50254,
50274,
605,
3135,
873,
9561,
187,
50274,
41107,
64,
49559,
64,
13766,
13,
187,
50274,
19,
13,
50254,
50272,
605,
1385,
187,
50274,
17,
89,
805,
3071,
13,
50254,
1380,
8046,
18149,
187,
50274,
17,
89,
26313,
13,
535,
50274,
4290,
46,
13,
187,
50274,
6217,
42363,
64,
49559,
64,
13766,
13,
187,
50274,
21,
13,
187,
50274,
17,
89,
20812,
23,
13,
50254,
1380,
3808,
28885,
2697,
434,
873,
37239,
43871,
8115,
2372,
187,
4,
338,
21252,
64,
1540,
44,
64,
35,
19871,
187,
50274,
17,
89,
24133,
13,
470,
89,
933,
66,
13,
470,
89,
933,
67,
13,
187,
4,
7287,
187,
4,
338,
40229,
64,
1237,
44,
64,
35,
1539,
14007,
187,
50274,
17,
89,
24133,
13,
470,
89,
933,
66,
13,
470,
89,
9104,
67,
13,
187,
4,
7287,
535,
50274,
38,
3519,
50259,
187,
4718,
187,
187,
4,
16238,
795,
57,
2691,
64,
187,
187,
605,
187,
605,
37174,
89,
21980,
17558,
14,
4897,
4438,
313,
6159,
2697,
4438,
470,
89,
22,
39,
10,
873,
3923,
2876,
323,
8951,
46190,
89,
15,
187,
605,
187,
187,
27224,
7396,
8951,
49895,
89,
64,
33031,
89,
21980,
64,
9726,
5456,
426,
551,
187,
50274,
4290,
46,
13,
50254,
50274,
605,
3135,
873,
9561,
187,
50274,
41107,
64,
49559,
64,
13766,
13,
187,
50274,
19,
13,
50254,
50272,
605,
1385,
187,
50274,
17,
89,
805,
3071,
13,
50254,
1380,
8046,
18149,
187,
50274,
17,
89,
26313,
13,
535,
50274,
4290,
46,
13,
187,
50274,
6217,
42363,
64,
49559,
64,
13766,
13,
187,
50274,
20,
13,
187,
4,
338,
21252,
64,
1540,
44,
64,
35,
19871,
187,
50274,
17,
89,
24133,
13,
470,
89,
933,
66,
13,
470,
89,
933,
67,
13,
187,
4,
7287,
187,
4,
338,
40229,
64,
1237,
44,
64,
35,
1539,
14007,
187,
50274,
17,
89,
24133,
13,
470,
89,
933,
66,
13,
470,
89,
9104,
67,
13,
187,
4,
7287,
535,
50274,
38,
3519,
50259,
187,
4718,
187,
187,
605,
187,
605,
14212,
89,
10487,
17558,
14,
4897,
4438,
313,
6159,
2697,
4438,
470,
89,
22,
36,
10,
873,
3923,
2876,
323,
8951,
46190,
89,
15,
187,
605,
187,
187,
27224,
7396,
8951,
49895,
89,
64,
10695,
89,
10487,
64,
9726,
5456,
426,
551,
187,
50274,
4290,
46,
13,
50254,
50274,
605,
3135,
873,
9561,
187,
50274,
41107,
64,
49559,
64,
13766,
13,
187,
50274,
19,
13,
50254,
50272,
605,
1385,
187,
50274,
17,
89,
805,
3071,
13,
50254,
1380,
8046,
18149,
187,
50274,
17,
89,
26313,
13,
535,
50274,
4290,
46,
13,
187,
50274,
6217,
42363,
64,
49559,
64,
13766,
13,
187,
50274,
20,
13,
187,
4,
338,
21252,
64,
1540,
44,
64,
35,
19871,
187,
50274,
17,
89,
24133,
13,
470,
89,
933,
66,
13,
470,
89,
933,
67,
13,
187,
4,
7287,
187,
4,
338,
40229,
64,
1237,
44,
64,
35,
1539,
14007,
187,
50274,
17,
89,
24133,
13,
470,
89,
933,
66,
13,
470,
89,
9104,
67,
13,
187,
4,
7287,
535,
50274,
38,
3519,
50259,
187,
4718,
187,
187,
4,
7271,
187,
187,
605,
187,
605,
50276,
31190,
9,
37,
3979,
52,
10,
1163,
50276,
11241,
11107,
16,
2693,
16,
805,
428,
427,
4625,
11294,
187,
605,
187,
605,
623,
186,
14,
5733,
4438,
873,
3923,
2876,
323,
427,
4625,
353,
24748,
5145,
15,
187,
605,
187,
605,
15540,
186,
14,
37174,
89,
21980,
50276,
9726,
3295,
8187,
8161,
187,
605,
15540,
186,
14,
14212,
89,
10487,
50276,
9726,
3295,
8026,
1227,
3925,
8161,
187,
605,
15540,
186,
14,
27277,
89,
41356,
17558,
3295,
5571,
1227,
5329,
8161,
187,
605,
187,
187,
4,
338,
2931,
9,
37,
3979,
52,
10,
3857,
2931,
10107,
46,
24748,
27307,
187,
187,
605,
187,
605,
1198,
353,
24748,
427,
4625,
5145,
760,
187,
605,
187,
187,
605,
187,
605,
37174,
89,
21980,
17558,
14,
4897,
3925,
8161,
4438,
313,
6159,
2697,
4438,
470,
89,
22,
39,
10,
873,
3923,
2876,
323,
187,
605,
8951,
46190,
89,
15,
187,
605,
187,
187,
27224,
7396,
8951,
49895,
89,
64,
33031,
89,
21980,
64,
9726,
64,
1549,
5456,
426,
551,
187,
50274,
4290,
46,
13,
50254,
50274,
605,
3135,
873,
9561,
187,
50274,
41107,
64,
49559,
64,
13766,
13,
187,
50274,
19,
13,
50254,
50273,
605,
1385,
187,
50274,
17,
89,
805,
3071,
13,
50254,
1380,
8046,
18149,
187,
50274,
17,
89,
26313,
13,
535,
50274,
4290,
46,
13,
50254,
50274,
605,
3135,
873,
9561,
187,
50274,
41107,
64,
49559,
64,
13766,
13,
187,
50274,
1010,
13,
50254,
50273,
605,
1385,
187,
50274,
17,
89,
2313,
13,
50254,
50276,
605,
1265,
20319,
14932,
187,
50274,
17,
89,
26764,
13,
17,
89,
17,
39,
2640,
13,
17,
89,
14602,
13,
17,
89,
17,
38,
2125,
13,
50274,
605,
2086,
598,
2160,
19667,
187,
187,
605,
187,
605,
253,
3689,
532,
430,
32911,
323,
416,
4196,
5145,
310,
418,
7068,
15974,
4438,
15,
187,
605,
831,
873,
3923,
369,
4391,
418,
7068,
15974,
15,
187,
605,
535,
50274,
9,
5696,
64,
18690,
5291,
1249,
1040,
470,
89,
520,
2922,
582,
623,
187,
50274,
17,
89,
19765,
13,
187,
50274,
17,
89,
21,
34,
17,
35,
13,
17,
89,
22,
35,
17,
36,
13,
17,
89,
15645,
37,
13,
17,
89,
24,
38,
17,
38,
13,
187,
50274,
17,
89,
19,
35,
18,
35,
13,
17,
89,
19,
39,
18,
36,
13,
17,
89,
17615,
37,
13,
17,
89,
27385,
38,
13,
535,
50274,
9324,
13,
50254,
50273,
605,
1127,
2160,
19667,
3605,
281,
34082,
187,
50274,
41107,
64,
49559,
64,
13766,
13,
187,
50274,
17,
89,
17,
39,
13,
535,
50274,
28723,
34,
7310,
12,
18690,
7310,
13,
50262,
605,
34741,
562,
15,
187,
50274,
41107,
64,
17020,
64,
13766,
13,
187,
50274,
17,
89,
14803,
13,
17,
89,
938,
13,
50256,
605,
285,
8989,
13,
1269,
263,
8989,
535,
50274,
9324,
13,
50254,
50273,
605,
27722,
15,
8749,
187,
50274,
46,
33771,
64,
38333,
64,
11991,
64,
25444,
64,
13766,
13,
187,
50274,
17,
34100,
20,
13,
535,
50274,
4290,
13,
50254,
50273,
605,
2505,
16,
40718,
2372,
187,
50274,
6217,
42363,
64,
49559,
64,
13766,
13,
187,
50274,
17,
89,
25670,
13,
535,
50274,
4290,
13,
50254,
50273,
605,
990,
20319,
14932,
187,
50274,
41107,
64,
49559,
64,
13766,
13,
187,
50274,
17,
89,
7554,
13,
535,
50274,
4290,
13,
50254,
50273,
605,
440,
33724,
260,
34433,
470,
14,
24,
187,
50274,
1311,
6669,
64,
49559,
64,
13766,
64,
38505,
13,
187,
50274,
17,
89,
7330,
13,
535,
50274,
28723,
34,
7310,
12,
9816,
57,
7310,
13,
50262,
605,
2086,
260,
34433,
25611,
187,
50274,
1311,
6669,
64,
49559,
64,
13766,
64,
38505,
13,
187,
50274,
1619,
13,
17,
13,
50254,
50275,
605,
1385,
13,
1265,
4663,
187,
187,
605,
187,
605,
50276,
31190,
9,
37,
3979,
52,
10,
1163,
50276,
11241,
11107,
16,
740,
16,
1731,
428,
427,
4625,
11294,
187,
605,
187,
605,
623,
186,
14,
6618,
24629,
8078,
310,
657,
1410,
34,
13333,
15,
187,
605,
187,
187,
4,
338,
2931,
9,
37,
3979,
52,
10,
3857,
2931,
10107,
46,
24748,
27307,
535,
50274,
17,
89,
22,
37,
13,
470,
89,
21,
39,
13,
470,
89,
1235,
13,
470,
89,
3507,
13,
470,
89,
3357,
13,
470,
89,
26,
39,
13,
187,
50274,
17,
89,
361,
13,
470,
89,
20,
38,
13,
470,
89,
361,
13,
470,
89,
1449,
13,
470,
89,
361,
13,
470,
89,
361,
13,
187,
50274,
17,
89,
361,
13,
470,
89,
361,
13,
470,
89,
361,
13,
470,
89,
361,
13,
470,
34100,
18,
13,
470,
89,
3245,
13,
187,
50274,
17,
89,
14803,
13,
470,
89,
1235,
13,
470,
89,
361,
13,
470,
34100,
24,
13,
470,
89,
2125,
13,
470,
34100,
20,
13,
187,
50274,
17,
30962,
13,
470,
89,
361,
13,
470,
89,
361,
13,
470,
89,
1423,
13,
187,
187,
4,
7271,
535,
50274,
17,
89,
22,
71,
13,
470,
89,
21,
71,
13,
470,
89,
1235,
13,
470,
89,
3507,
13,
470,
89,
3439,
13,
470,
89,
1438,
13,
187,
50274,
17,
89,
17,
67,
13,
470,
89,
20,
70,
13,
470,
89,
361,
13,
470,
89,
1449,
13,
470,
89,
361,
13,
470,
89,
361,
13,
187,
50274,
17,
89,
361,
13,
470,
89,
361,
13,
470,
89,
361,
13,
470,
89,
361,
13,
470,
7096,
66,
13,
470,
89,
25,
68,
13,
187,
50274,
17,
89,
4989,
13,
470,
89,
1235,
13,
470,
89,
361,
13,
470,
7096,
24,
13,
470,
89,
2125,
13,
470,
7096,
20,
13,
187,
50274,
17,
21671,
13,
470,
89,
361,
13,
470,
89,
361,
13,
470,
89,
1423,
13,
187,
187,
4,
7287,
1380,
2931,
9,
37,
3979,
52,
10,
3857,
2931,
10107,
46,
24748,
27307,
535,
50274,
28723,
34,
7310,
12,
9816,
57,
7310,
13,
50262,
605,
2086,
305,
12352,
25611,
187,
50274,
6217,
42363,
64,
49559,
64,
13766,
13,
187,
50274,
26,
13,
17,
13,
50254,
50274,
605,
1385,
13,
1265,
4663,
187,
50274,
17,
89,
361,
13,
470,
89,
361,
13,
470,
89,
361,
13,
470,
89,
361,
13,
470,
89,
361,
13,
470,
89,
1449,
13,
187,
50274,
17,
89,
1762,
13,
470,
89,
17,
39,
13,
470,
30962,
13,
15267,
50274,
5472,
13,
50254,
50273,
605,
10347,
387,
68,
323,
4028,
187,
50274,
35446,
64,
22574,
64,
18,
64,
38505,
13,
535,
50274,
28723,
34,
7310,
12,
1194,
36,
7310,
13,
50261,
605,
2086,
387,
68,
25611,
187,
50274,
20905,
64,
49559,
64,
13766,
13,
187,
50274,
1797,
13,
17,
13,
50254,
50275,
605,
1385,
13,
1265,
4663,
187,
50274,
17,
89,
361,
13,
470,
89,
520,
13,
470,
89,
2640,
13,
470,
89,
2941,
13,
470,
89,
2125,
13,
470,
89,
1762,
13,
187,
50274,
17,
89,
3071,
13,
470,
89,
2922,
13,
470,
89,
2904,
13,
470,
89,
2693,
13,
470,
89,
17,
34,
13,
470,
89,
17,
35,
13,
187,
50274,
17,
89,
17,
36,
13,
470,
89,
17,
37,
13,
470,
89,
17,
38,
13,
470,
89,
17,
39,
13,
470,
89,
3156,
13,
470,
89,
361,
13,
187,
50274,
17,
89,
17,
39,
13,
470,
89,
361,
13,
470,
89,
361,
13,
535,
50274,
9324,
13,
50254,
50273,
605,
1614,
3492,
327,
15,
187,
50274,
20905,
64,
49559,
64,
13766,
13,
187,
50274,
17,
89,
938,
13,
535,
50274,
9324,
13,
187,
50274,
48351,
64,
8022,
57,
3887,
64,
18690,
64,
13766,
13,
187,
50274,
17,
30962,
13,
535,
50274,
4290,
46,
13,
187,
50274,
6217,
42363,
64,
49559,
64,
13766,
13,
187,
50274,
20,
13,
187,
187,
605,
187,
605,
380,
3689,
532,
430,
32911,
323,
416,
4196,
5145,
310,
418,
7068,
15974,
4438,
15,
187,
605,
831,
873,
3923,
369,
4391,
352,
323,
418,
7068,
15974,
15,
187,
605,
535,
50274,
17,
89,
24133,
13,
470,
89,
933,
66,
13,
470,
89,
933,
67,
13,
186,
535,
50274,
38,
3519,
50259,
187,
4718,
187,
187,
605,
187,
605,
37174,
89,
21980,
17558,
14,
4897,
8187,
8161,
4438,
313,
6159,
2697,
4438,
470,
89,
22,
39,
10,
873,
3923,
2876,
323,
187,
605,
8951,
46190,
89,
15,
187,
605,
187,
187,
27224,
7396,
8951,
49895,
89,
64,
33031,
89,
21980,
64,
9726,
64,
3547,
5456,
426,
551,
187,
50274,
4290,
46,
13,
50254,
50274,
605,
3135,
873,
9561,
187,
50274,
41107,
64,
49559,
64,
13766,
13,
187,
50274,
19,
13,
50254,
50273,
605,
1385,
187,
50274,
17,
89,
805,
3071,
13,
50254,
1380,
8046,
18149,
187,
50274,
17,
89,
26313,
13,
535,
50274,
4290,
46,
13,
50254,
50274,
605,
3135,
873,
9561,
187,
50274,
41107,
64,
49559,
64,
13766,
13,
187,
50274,
1010,
13,
50254,
50273,
605,
1385,
187,
50274,
17,
89,
2313,
13,
50254,
50276,
605,
1265,
20319,
14932,
187,
50274,
17,
89,
26764,
13,
17,
89,
17,
39,
2640,
13,
17,
89,
14602,
13,
17,
89,
17,
38,
2125,
13,
50274,
605,
2086,
598,
2160,
19667,
187,
187,
605,
187,
605,
253,
3689,
532,
430,
32911,
323,
416,
4196,
5145,
310,
418,
7068,
15974,
4438,
15,
187,
605,
831,
873,
3923,
369,
4391,
418,
7068,
15974,
15,
187,
605,
535,
50274,
9,
5696,
64,
18690,
5291,
1249,
1040,
470,
89,
520,
2922,
582,
15540,
187,
50274,
17,
89,
19765,
13,
187,
50274,
17,
89,
21,
34,
17,
35,
13,
17,
89,
22,
35,
17,
36,
13,
17,
89,
15645,
37,
13,
17,
89,
25569,
38,
13,
623,
187,
50274,
17,
89,
19,
35,
18,
35,
13,
17,
89,
19,
39,
18,
36,
13,
17,
89,
17615,
37,
13,
17,
89,
18,
39,
18,
38,
13,
623,
535,
50274,
9324,
13,
50254,
50273,
605,
1127,
2160,
19667,
3605,
281,
34082,
187,
50274,
41107,
64,
49559,
64,
13766,
13,
187,
50274,
17,
89,
17,
39,
13,
535,
50274,
28723,
34,
7310,
12,
18690,
7310,
13,
50262,
605,
34741,
562,
15,
187,
50274,
41107,
64,
17020,
64,
13766,
13,
187,
50274,
17,
89,
14803,
13,
17,
89,
938,
13,
50256,
605,
285,
8989,
13,
1269,
263,
8989,
535,
50274,
9324,
13,
50254,
50273,
605,
27722,
15,
8749,
187,
50274,
46,
33771,
64,
38333,
64,
11991,
64,
25444,
64,
13766,
13,
187,
50274,
17,
89,
16462,
13,
32062,
535,
50274,
4290,
13,
50254,
50273,
605,
2505,
16,
40718,
2372,
187,
50274,
6217,
42363,
64,
49559,
64,
13766,
13,
187,
50274,
17,
89,
25670,
13,
535,
50274,
4290,
13,
50254,
50273,
605,
990,
20319,
14932,
187,
50274,
41107,
64,
49559,
64,
13766,
13,
187,
50274,
17,
89,
7554,
13,
535,
50274,
4290,
13,
50254,
50273,
605,
440,
33724,
260,
34433,
470,
14,
24,
187,
50274,
1311,
6669,
64,
49559,
64,
13766,
64,
38505,
13,
187,
50274,
17,
89,
7330,
13,
535,
50274,
28723,
34,
7310,
12,
9816,
57,
7310,
13,
50262,
605,
2086,
260,
34433,
25611,
187,
50274,
1311,
6669,
64,
49559,
64,
13766,
64,
38505,
13,
187,
50274,
1619,
13,
17,
13,
50254,
50275,
605,
1385,
13,
1265,
4663,
187,
187,
605,
187,
605,
50276,
31190,
9,
37,
3979,
52,
10,
1163,
50276,
11241,
5325,
16,
3071,
16,
1229,
428,
427,
4625,
11294,
313,
18941,
347,
5947,
14734,
61,
9561,
49895,
89,
15,
73,
10,
187,
605,
187,
605,
623,
186,
14,
6618,
24629,
8078,
310,
657,
1410,
34,
13333,
15,
313,
20598,
5767,
3761,
10,
187,
605,
187,
187,
4,
338,
2931,
9,
37,
3979,
52,
10,
3857,
2931,
10107,
46,
24748,
27307,
535,
50274,
17,
89,
3832,
13,
470,
89,
21,
39,
13,
470,
89,
1235,
13,
470,
89,
3507,
13,
470,
89,
3439,
13,
470,
89,
1525,
13,
187,
50274,
17,
33392,
23,
13,
470,
89,
18,
39,
13,
470,
89,
361,
13,
470,
89,
1449,
13,
470,
89,
361,
13,
470,
89,
361,
13,
187,
50274,
17,
89,
361,
13,
470,
89,
361,
13,
470,
89,
361,
13,
470,
89,
361,
13,
470,
34100,
17,
13,
470,
89,
2941,
13,
187,
50274,
17,
89,
14803,
13,
470,
89,
1235,
13,
470,
89,
361,
13,
470,
34100,
24,
13,
470,
89,
2125,
13,
470,
34100,
20,
13,
187,
50274,
17,
30962,
13,
470,
89,
361,
13,
470,
89,
361,
13,
470,
89,
1423,
13,
187,
187,
605,
187,
605,
50276,
31190,
9,
37,
3979,
52,
10,
1163,
50276,
11241,
11107,
16,
740,
16,
1731,
428,
427,
4625,
11294,
187,
605,
187,
605,
623,
186,
14,
6618,
24629,
8078,
310,
657,
1410,
34,
13333,
15,
187,
605,
535,
187,
605,
50276,
17,
89,
3571,
13,
470,
89,
21,
39,
13,
470,
89,
1235,
13,
470,
89,
3507,
13,
470,
89,
2417,
13,
470,
89,
26,
34,
13,
50270,
394,
511,
4764,
417,
3761,
187,
605,
50276,
17,
89,
3071,
13,
470,
89,
20,
38,
13,
470,
89,
361,
13,
470,
89,
1449,
13,
470,
89,
361,
13,
470,
89,
361,
13,
50270,
55,
1410,
34,
24629,
15,
187,
605,
50276,
17,
89,
361,
13,
470,
89,
361,
13,
470,
89,
361,
13,
470,
89,
361,
13,
470,
34100,
25,
13,
470,
89,
25,
35,
13,
187,
605,
50276,
17,
89,
14803,
13,
470,
89,
1235,
13,
470,
89,
361,
13,
470,
34100,
24,
13,
470,
89,
2125,
13,
470,
34100,
20,
13,
187,
605,
50276,
17,
30962,
13,
470,
89,
361,
13,
470,
89,
361,
13,
470,
89,
1423,
13,
187,
187,
4,
7271,
535,
50274,
17,
89,
22,
71,
13,
470,
89,
21,
71,
13,
470,
89,
1235,
13,
470,
89,
3507,
13,
470,
89,
3439,
13,
470,
89,
1438,
13,
187,
50274,
17,
89,
17,
67,
13,
470,
89,
20,
70,
13,
470,
89,
361,
13,
470,
89,
1449,
13,
470,
89,
361,
13,
470,
89,
361,
13,
187,
50274,
17,
89,
361,
13,
470,
89,
361,
13,
470,
89,
361,
13,
470,
89,
361,
13,
470,
7096,
66,
13,
470,
89,
25,
68,
13,
187,
50274,
17,
89,
4989,
13,
470,
89,
1235,
13,
470,
89,
361,
13,
470,
7096,
24,
13,
470,
89,
2125,
13,
470,
7096,
20,
13,
187,
50274,
17,
21671,
13,
470,
89,
361,
13,
470,
89,
361,
13,
470,
89,
1423,
13,
187,
187,
4,
7287,
1380,
2931,
9,
37,
3979,
52,
10,
3857,
2931,
10107,
46,
24748,
27307,
535,
50274,
28723,
34,
7310,
12,
9816,
57,
7310,
13,
50262,
605,
2086,
305,
12352,
25611,
187,
50274,
6217,
42363,
64,
49559,
64,
13766,
13,
187,
50274,
26,
13,
17,
13,
50254,
50274,
605,
1385,
13,
1265,
4663,
187,
50274,
17,
89,
361,
13,
470,
89,
361,
13,
470,
89,
361,
13,
470,
89,
361,
13,
470,
89,
361,
13,
470,
89,
1449,
13,
187,
50274,
17,
89,
1762,
13,
470,
89,
17,
39,
13,
470,
30962,
13,
15267,
50274,
5472,
13,
50254,
50273,
605,
10347,
387,
68,
323,
4028,
187,
50274,
35446,
64,
22574,
64,
18,
64,
38505,
13,
535,
50274,
28723,
34,
7310,
12,
1194,
36,
7310,
13,
50261,
605,
2086,
387,
68,
25611,
187,
50274,
20905,
64,
49559,
64,
13766,
13,
187,
50274,
1797,
13,
17,
13,
50254,
50275,
605,
1385,
13,
1265,
4663,
187,
50274,
17,
89,
361,
13,
470,
89,
520,
13,
470,
89,
2640,
13,
470,
89,
2941,
13,
470,
89,
2125,
13,
470,
89,
1762,
13,
187,
50274,
17,
89,
3071,
13,
470,
89,
2922,
13,
470,
89,
2904,
13,
470,
89,
2693,
13,
470,
89,
17,
34,
13,
470,
89,
17,
35,
13,
187,
50274,
17,
89,
17,
36,
13,
470,
89,
17,
37,
13,
470,
89,
17,
38,
13,
470,
89,
17,
39,
13,
470,
89,
3156,
13,
470,
89,
361,
13,
187,
50274,
17,
89,
17,
39,
13,
470,
89,
361,
13,
470,
89,
361,
13,
535,
50274,
9324,
13,
50254,
50273,
605,
1614,
3492,
327,
15,
187,
50274,
20905,
64,
49559,
64,
13766,
13,
187,
50274,
17,
89,
938,
13,
535,
50274,
9324,
13,
187,
50274,
48351,
64,
8022,
57,
3887,
64,
18690,
64,
13766,
13,
187,
50274,
17,
30962,
13,
535,
50274,
4290,
46,
13,
187,
50274,
6217,
42363,
64,
49559,
64,
13766,
13,
187,
50274,
20,
13,
187,
187,
605,
187,
605,
380,
3689,
532,
430,
32911,
323,
416,
4196,
5145,
310,
418,
7068,
15974,
4438,
15,
187,
605,
831,
873,
3923,
369,
4391,
352,
323,
418,
7068,
15974,
15,
187,
605,
535,
50274,
17,
89,
24133,
13,
470,
89,
933,
66,
13,
470,
89,
933,
67,
13,
535,
50274,
38,
3519,
50259,
187,
4718,
187,
187,
605,
187,
605,
14212,
89,
10487,
17558,
14,
4897,
8026,
8161,
4438,
313,
6159,
2697,
4438,
470,
89,
22,
36,
10,
873,
3923,
2876,
323,
187,
605,
8951,
46190,
89,
15,
187,
605,
187,
187,
27224,
7396,
8951,
49895,
89,
64,
10695,
89,
10487,
64,
9726,
64,
3208,
5456,
426,
551,
187,
50274,
4290,
46,
13,
50254,
50274,
605,
3135,
873,
9561,
187,
50274,
41107,
64,
49559,
64,
13766,
13,
187,
50274,
19,
13,
50254,
50273,
605,
1385,
187,
50274,
17,
89,
805,
3071,
13,
50254,
1380,
8046,
18149,
187,
50274,
17,
89,
26313,
13,
535,
50274,
4290,
46,
13,
50254,
50274,
605,
3135,
873,
9561,
187,
50274,
41107,
64,
49559,
64,
13766,
13,
187,
50274,
1010,
13,
50254,
50273,
605,
1385,
187,
50274,
17,
89,
2313,
13,
50254,
50276,
605,
1265,
20319,
14932,
187,
50274,
17,
89,
26764,
13,
17,
89,
17,
39,
2640,
13,
17,
89,
14602,
13,
17,
89,
17,
38,
2125,
13,
50274,
605,
2086,
598,
2160,
19667,
187,
187,
605,
187,
605,
380,
3689,
532,
430,
32911,
323,
416,
4196,
5145,
310,
418,
7068,
15974,
4438,
15,
187,
605,
831,
873,
3923,
369,
4391,
418,
7068,
15974,
15,
187,
605,
535,
50274,
9,
5696,
64,
18690,
5291,
1249,
1040,
470,
89,
520,
2922,
582,
623,
187,
50274,
17,
89,
19765,
13,
187,
50274,
17,
89,
21,
34,
17,
35,
13,
17,
89,
22,
35,
17,
36,
13,
17,
89,
15645,
37,
13,
17,
89,
24,
38,
17,
38,
13,
186,
187,
50274,
17,
89,
19,
35,
18,
35,
13,
17,
89,
19,
39,
18,
36,
13,
17,
89,
17615,
37,
13,
17,
89,
27385,
38,
13,
186,
535,
50274,
9324,
13,
50254,
50273,
605,
1127,
2160,
19667,
3605,
281,
34082,
187,
50274,
41107,
64,
49559,
64,
13766,
13,
187,
50274,
17,
89,
17,
39,
13,
535,
50274,
28723,
34,
7310,
12,
18690,
7310,
13,
50262,
605,
34741,
562,
15,
187,
50274,
41107,
64,
17020,
64,
13766,
13,
187,
50274,
17,
89,
14803,
13,
17,
89,
938,
13,
50256,
605,
285,
8989,
13,
1269,
263,
8989,
535,
50274,
9324,
13,
50254,
50273,
605,
27722,
15,
8749,
187,
50274,
46,
33771,
64,
38333,
64,
11991,
64,
25444,
64,
13766,
13,
187,
50274,
17,
89,
16462,
13,
15540,
535,
50274,
4290,
13,
50254,
50273,
605,
2505,
16,
40718,
2372,
187,
50274,
6217,
42363,
64,
49559,
64,
13766,
13,
187,
50274,
17,
89,
25670,
13,
535,
50274,
4290,
13,
50254,
50273,
605,
990,
20319,
14932,
187,
50274,
41107,
64,
49559,
64,
13766,
13,
187,
50274,
17,
89,
7554,
13,
535,
50274,
4290,
13,
50254,
50273,
605,
440,
33724,
260,
34433,
470,
14,
24,
187,
50274,
1311,
6669,
64,
49559,
64,
13766,
64,
38505,
13,
187,
50274,
17,
89,
7330,
13,
535,
50274,
28723,
34,
7310,
12,
9816,
57,
7310,
13,
50262,
605,
2086,
260,
34433,
25611,
187,
50274,
1311,
6669,
64,
49559,
64,
13766,
64,
38505,
13,
187,
50274,
1619,
13,
17,
13,
50254,
50275,
605,
1385,
13,
1265,
4663,
187,
187,
605,
187,
605,
50276,
31190,
9,
37,
3979,
52,
10,
1163,
50276,
11241,
11107,
16,
740,
16,
1731,
428,
427,
4625,
11294,
187,
605,
187,
605,
623,
186,
14,
6618,
24629,
8078,
310,
657,
1410,
34,
13333,
15,
187,
605,
187,
187,
4,
338,
2931,
9,
37,
3979,
52,
10,
3857,
2931,
10107,
46,
24748,
27307,
535,
50274,
17,
89,
24,
35,
13,
470,
89,
3571,
13,
470,
89,
1540,
13,
470,
89,
1438,
13,
470,
89,
2090,
13,
470,
89,
805,
13,
187,
50274,
17,
89,
23,
39,
13,
470,
33392,
17,
13,
470,
89,
361,
13,
470,
89,
1549,
13,
470,
89,
361,
13,
470,
89,
361,
13,
187,
50274,
17,
89,
361,
13,
470,
89,
361,
13,
470,
89,
361,
13,
470,
89,
361,
13,
470,
89,
3680,
13,
470,
89,
25,
34,
13,
187,
50274,
17,
89,
3011,
13,
470,
89,
1540,
13,
470,
89,
361,
13,
470,
89,
22,
39,
13,
470,
89,
4739,
13,
470,
34100,
20,
13,
187,
50274,
17,
30962,
13,
470,
89,
361,
13,
470,
89,
361,
13,
470,
89,
1423,
13,
187,
187,
4,
7271,
535,
50274,
17,
89,
24,
37,
13,
470,
89,
3571,
13,
470,
89,
1540,
13,
470,
89,
1438,
13,
470,
89,
23,
37,
13,
470,
89,
18,
36,
13,
187,
50274,
17,
89,
4185,
13,
470,
33392,
17,
13,
470,
89,
361,
13,
470,
89,
1549,
13,
470,
89,
361,
13,
470,
89,
361,
13,
187,
50274,
17,
89,
361,
13,
470,
89,
361,
13,
470,
89,
361,
13,
470,
89,
361,
13,
470,
89,
24,
35,
13,
470,
89,
1438,
13,
187,
50274,
17,
89,
3011,
13,
470,
89,
1540,
13,
470,
89,
361,
13,
470,
89,
22,
39,
13,
470,
89,
4739,
13,
470,
7096,
20,
13,
187,
50274,
17,
21671,
13,
470,
89,
361,
13,
470,
89,
361,
13,
470,
89,
1423,
13,
187,
187,
4,
7287,
1380,
2931,
9,
37,
3979,
52,
10,
3857,
2931,
10107,
46,
24748,
27307,
535,
50274,
28723,
34,
7310,
12,
9816,
57,
7310,
13,
50262,
605,
2086,
305,
12352,
25611,
187,
50274,
6217,
42363,
64,
49559,
64,
13766,
13,
187,
50274,
26,
13,
17,
13,
50254,
50274,
605,
1385,
13,
1265,
4663,
187,
50274,
17,
89,
361,
13,
470,
89,
361,
13,
470,
89,
361,
13,
470,
89,
361,
13,
470,
89,
361,
13,
470,
89,
1449,
13,
187,
50274,
17,
89,
1762,
13,
470,
89,
17,
39,
13,
470,
30962,
13,
15267,
50274,
5472,
13,
50254,
50273,
605,
10347,
387,
68,
323,
4028,
187,
50274,
35446,
64,
22574,
64,
18,
64,
38505,
13,
535,
50274,
28723,
34,
7310,
12,
1194,
36,
7310,
13,
50261,
605,
2086,
387,
68,
25611,
187,
50274,
20905,
64,
49559,
64,
13766,
13,
187,
50274,
1797,
13,
17,
13,
50254,
50275,
605,
1385,
13,
1265,
4663,
187,
50274,
17,
89,
361,
13,
470,
89,
520,
13,
470,
89,
2640,
13,
470,
89,
2941,
13,
470,
89,
2125,
13,
470,
89,
1762,
13,
187,
50274,
17,
89,
3071,
13,
470,
89,
2922,
13,
470,
89,
2904,
13,
470,
89,
2693,
13,
470,
89,
17,
34,
13,
470,
89,
17,
35,
13,
187,
50274,
17,
89,
17,
36,
13,
470,
89,
17,
37,
13,
470,
89,
17,
38,
13,
470,
89,
17,
39,
13,
470,
89,
3156,
13,
470,
89,
361,
13,
187,
50274,
17,
89,
17,
39,
13,
470,
89,
361,
13,
470,
89,
361,
13,
535,
50274,
9324,
13,
50254,
50273,
605,
1614,
3492,
327,
15,
187,
50274,
20905,
64,
49559,
64,
13766,
13,
187,
50274,
17,
89,
938,
13,
535,
50274,
9324,
13,
187,
50274,
48351,
64,
8022,
57,
3887,
64,
18690,
64,
13766,
13,
187,
50274,
17,
30962,
13,
535,
50274,
4290,
46,
13,
187,
50274,
6217,
42363,
64,
49559,
64,
13766,
13,
187,
50274,
20,
13,
187,
187,
605,
187,
605,
380,
3689,
532,
430,
32911,
323,
416,
4196,
5145,
310,
418,
7068,
15974,
4438,
15,
187,
605,
831,
873,
3923,
369,
4391,
352,
323,
418,
7068,
15974,
15,
187,
605,
535,
50274,
17,
89,
24133,
13,
470,
89,
933,
66,
13,
470,
89,
933,
67,
13,
186,
535,
50274,
38,
3519,
50259,
187,
4718,
187,
187,
605,
187,
605,
14212,
89,
10487,
17558,
14,
4897,
3925,
8161,
4438,
313,
6159,
2697,
4438,
470,
89,
22,
36,
10,
873,
3923,
2876,
323,
187,
605,
8951,
46190,
89,
15,
187,
605,
187,
187,
27224,
7396,
8951,
49895,
89,
64,
10695,
89,
10487,
64,
9726,
64,
1549,
5456,
426,
551,
187,
50274,
4290,
46,
13,
50254,
50274,
605,
3135,
873,
9561,
187,
50274,
41107,
64,
49559,
64,
13766,
13,
187,
50274,
19,
13,
50254,
50273,
605,
1385,
187,
50274,
17,
89,
805,
3071,
13,
50254,
1380,
8046,
18149,
187,
50274,
17,
89,
26313,
13,
535,
50274,
4290,
46,
13,
50254,
50274,
605,
3135,
873,
9561,
187,
50274,
41107,
64,
49559,
64,
13766,
13,
187,
50274,
1010,
13,
50254,
50273,
605,
1385,
187,
50274,
17,
89,
2313,
13,
50254,
50276,
605,
1265,
20319,
14932,
187,
50274,
17,
89,
26764,
13,
17,
89,
17,
39,
2640,
13,
17,
89,
14602,
13,
17,
89,
17,
38,
2125,
13,
50274,
605,
2086,
598,
2160,
19667,
187,
187,
605,
187,
605,
380,
3689,
532,
430,
32911,
323,
416,
4196,
5145,
310,
418,
7068,
15974,
4438,
15,
187,
605,
831,
873,
3923,
369,
4391,
418,
7068,
15974,
15,
187,
605,
535,
50274,
9,
5696,
64,
18690,
5291,
1249,
1040,
470,
89,
520,
2922,
582,
186,
187,
50274,
17,
89,
19765,
13,
187,
50274,
17,
89,
21,
34,
17,
35,
13,
17,
89,
22,
35,
17,
36,
13,
17,
89,
15645,
37,
13,
17,
89,
35191,
38,
13,
187,
50274,
17,
89,
19,
35,
18,
35,
13,
17,
89,
19,
39,
18,
36,
13,
17,
89,
17615,
37,
13,
17,
89,
20,
34,
18,
38,
13,
535,
50274,
9324,
13,
50254,
50273,
605,
1127,
2160,
19667,
3605,
281,
34082,
187,
50274,
41107,
64,
49559,
64,
13766,
13,
187,
50274,
17,
89,
17,
39,
13,
535,
50274,
28723,
34,
7310,
12,
18690,
7310,
13,
50262,
605,
34741,
562,
15,
187,
50274,
41107,
64,
17020,
64,
13766,
13,
187,
50274,
17,
89,
14803,
13,
17,
89,
938,
13,
50256,
605,
285,
8989,
13,
1269,
263,
8989,
535,
50274,
9324,
13,
50254,
50273,
605,
27722,
15,
8749,
187,
50274,
46,
33771,
64,
38333,
64,
11991,
64,
25444,
64,
13766,
13,
187,
187,
605,
187,
605,
50276,
31190,
9,
37,
3979,
52,
10,
1163,
50276,
11241,
11107,
16,
740,
16,
1731,
428,
427,
4625,
11294,
187,
605,
187,
605,
50256,
14,
6618,
24629,
8078,
310,
657,
1410,
34,
13333,
15,
187,
605,
187,
187,
4,
338,
2931,
9,
37,
3979,
52,
10,
3857,
2931,
10107,
46,
24748,
27307,
535,
50274,
17,
89,
16462,
13,
187,
187,
4,
7271,
535,
50274,
17,
89,
19,
39,
13,
187,
187,
4,
7287,
1380,
2931,
9,
37,
3979,
52,
10,
3857,
2931,
10107,
46,
24748,
27307,
535,
50274,
4290,
13,
50254,
50273,
605,
2505,
16,
40718,
2372,
187,
50274,
6217,
42363,
64,
49559,
64,
13766,
13,
187,
50274,
17,
89,
25670,
13,
535,
50274,
4290,
13,
50254,
50273,
605,
990,
20319,
14932,
187,
50274,
41107,
64,
49559,
64,
13766,
13,
187,
50274,
17,
89,
7554,
13,
535,
50274,
4290,
13,
50254,
50273,
605,
440,
33724,
260,
34433,
470,
14,
24,
187,
50274,
1311,
6669,
64,
49559,
64,
13766,
64,
38505,
13,
187,
50274,
17,
89,
7330,
13,
535,
50274,
28723,
34,
7310,
12,
9816,
57,
7310,
13,
50262,
605,
2086,
260,
34433,
25611,
187,
50274,
1311,
6669,
64,
49559,
64,
13766,
64,
38505,
13,
187,
50274,
1619,
13,
17,
13,
50254,
50275,
605,
1385,
13,
1265,
4663,
187,
187,
605,
187,
605,
50276,
31190,
9,
37,
3979,
52,
10,
1163,
50276,
11241,
11107,
16,
740,
16,
1731,
428,
427,
4625,
11294,
187,
605,
187,
605,
623,
186,
14,
6618,
24629,
8078,
310,
657,
1410,
34,
13333,
15,
187,
605,
187,
187,
4,
338,
2931,
9,
37,
3979,
52,
10,
3857,
2931,
10107,
46,
24748,
27307,
535,
50274,
17,
89,
24,
39,
13,
470,
89,
3571,
13,
470,
89,
1540,
13,
470,
89,
1438,
13,
470,
89,
23,
35,
13,
470,
89,
18,
35,
13,
187,
50274,
17,
89,
3547,
13,
470,
33392,
17,
13,
470,
89,
361,
13,
470,
89,
1549,
13,
470,
89,
361,
13,
470,
89,
361,
13,
187,
50274,
17,
89,
361,
13,
470,
89,
361,
13,
470,
89,
361,
13,
470,
89,
361,
13,
470,
89,
3680,
13,
470,
89,
25,
36,
13,
187,
50274,
17,
89,
3011,
13,
470,
89,
1540,
13,
470,
89,
361,
13,
470,
89,
22,
39,
13,
470,
89,
4739,
13,
470,
34100,
20,
13,
187,
50274,
17,
30962,
13,
470,
89,
361,
13,
470,
89,
361,
13,
470,
89,
1423,
13,
187,
187,
4,
7271,
535,
50274,
17,
89,
24,
37,
13,
470,
89,
3571,
13,
470,
89,
1540,
13,
470,
89,
1438,
13,
470,
89,
23,
37,
13,
470,
89,
18,
36,
13,
187,
50274,
17,
89,
4185,
13,
470,
33392,
17,
13,
470,
89,
361,
13,
470,
89,
1549,
13,
470,
89,
361,
13,
470,
89,
361,
13,
187,
50274,
17,
89,
361,
13,
470,
89,
361,
13,
470,
89,
361,
13,
470,
89,
361,
13,
470,
89,
24,
35,
13,
470,
89,
1438,
13,
187,
50274,
17,
89,
3011,
13,
470,
89,
1540,
13,
470,
89,
361,
13,
470,
89,
22,
39,
13,
470,
89,
4739,
13,
470,
7096,
20,
13,
187,
50274,
17,
21671,
13,
470,
89,
361,
13,
470,
89,
361,
13,
470,
89,
1423,
13,
187,
187,
4,
7287,
186,
605,
2931,
9,
37,
3979,
52,
10,
3857,
2931,
10107,
46,
24748,
27307,
535,
50274,
28723,
34,
7310,
12,
9816,
57,
7310,
13,
50262,
605,
2086,
305,
12352,
25611,
187,
50274,
6217,
42363,
64,
49559,
64,
13766,
13,
187,
50274,
26,
13,
17,
13,
50254,
50274,
605,
1385,
13,
1265,
4663,
187,
50274,
17,
89,
361,
13,
470,
89,
361,
13,
470,
89,
361,
13,
470,
89,
361,
13,
470,
89,
361,
13,
470,
89,
1449,
13,
187,
50274,
17,
89,
1762,
13,
470,
89,
17,
39,
13,
470,
30962,
13,
15267,
50274,
5472,
13,
50254,
50273,
605,
10347,
387,
68,
323,
4028,
187,
50274,
35446,
64,
22574,
64,
18,
64,
38505,
13,
535,
50274,
28723,
34,
7310,
12,
1194,
36,
7310,
13,
50261,
605,
2086,
387,
68,
25611,
187,
50274,
20905,
64,
49559,
64,
13766,
13,
187,
50274,
1797,
13,
17,
13,
50254,
50275,
605,
1385,
13,
1265,
4663,
187,
50274,
17,
89,
361,
13,
470,
89,
520,
13,
470,
89,
2640,
13,
470,
89,
2941,
13,
470,
89,
2125,
13,
470,
89,
1762,
13,
187,
50274,
17,
89,
3071,
13,
470,
89,
2922,
13,
470,
89,
2904,
13,
470,
89,
2693,
13,
470,
89,
17,
34,
13,
470,
89,
17,
35,
13,
187,
50274,
17,
89,
17,
36,
13,
470,
89,
17,
37,
13,
470,
89,
17,
38,
13,
470,
89,
17,
39,
13,
470,
89,
3156,
13,
470,
89,
361,
13,
187,
50274,
17,
89,
17,
39,
13,
470,
89,
361,
13,
470,
89,
361,
13,
535,
50274,
9324,
13,
50254,
50273,
605,
1614,
3492,
327,
15,
187,
50274,
20905,
64,
49559,
64,
13766,
13,
187,
50274,
17,
89,
938,
13,
535,
50274,
9324,
13,
187,
50274,
48351,
64,
8022,
57,
3887,
64,
18690,
64,
13766,
13,
187,
50274,
17,
30962,
13,
535,
50274,
4290,
46,
13,
187,
50274,
6217,
42363,
64,
49559,
64,
13766,
13,
187,
50274,
20,
13,
187,
187,
605,
187,
605,
380,
3689,
532,
430,
32911,
323,
416,
4196,
5145,
310,
418,
7068,
15974,
4438,
15,
187,
605,
831,
873,
3923,
369,
4391,
352,
323,
418,
7068,
15974,
15,
187,
605,
535,
50274,
17,
89,
24133,
13,
470,
89,
933,
66,
13,
470,
89,
933,
67,
13,
535,
50274,
38,
3519,
50259,
187,
4718,
187,
187,
605,
187,
605,
14212,
89,
10487,
17558,
14,
4897,
8187,
8161,
4438,
313,
6159,
2697,
4438,
470,
89,
22,
36,
10,
873,
3923,
2876,
323,
187,
605,
8951,
46190,
89,
15,
187,
605,
187,
187,
27224,
7396,
8951,
49895,
89,
64,
10695,
89,
10487,
64,
9726,
64,
3547,
5456,
426,
551,
187,
50274,
4290,
46,
13,
50254,
50274,
605,
3135,
873,
9561,
187,
50274,
41107,
64,
49559,
64,
13766,
13,
187,
50274,
19,
13,
50254,
50273,
605,
1385,
187,
50274,
17,
89,
805,
3071,
13,
50254,
1380,
8046,
18149,
187,
50274,
17,
89,
26313,
13,
535,
50274,
4290,
46,
13,
50254,
50274,
605,
3135,
873,
9561,
187,
50274,
41107,
64,
49559,
64,
13766,
13,
187,
50274,
1010,
13,
50254,
50273,
605,
1385,
187,
50274,
17,
89,
2313,
13,
50254,
50276,
605,
1265,
20319,
14932,
187,
50274,
17,
89,
26764,
13,
17,
89,
17,
39,
2640,
13,
17,
89,
14602,
13,
17,
89,
17,
38,
2125,
13,
50274,
605,
2086,
598,
2160,
19667,
187,
187,
605,
187,
605,
380,
3689,
532,
430,
32911,
323,
416,
4196,
5145,
310,
418,
7068,
15974,
4438,
15,
187,
605,
831,
873,
3923,
369,
4391,
418,
7068,
15974,
15,
187,
605,
535,
50274,
9,
5696,
64,
18690,
5291,
1249,
1040,
470,
89,
520,
2922,
582,
623,
187,
50274,
17,
89,
19765,
13,
187,
187,
605,
187,
605,
50276,
31190,
9,
37,
3979,
52,
10,
1163,
50276,
11241,
11107,
16,
740,
16,
1731,
428,
427,
4625,
11294,
187,
605,
187,
605,
623,
186,
14,
6618,
24629,
8078,
310,
657,
1410,
34,
13333,
15,
187,
605,
187,
187,
4,
338,
2931,
9,
37,
3979,
52,
10,
3857,
2931,
10107,
46,
24748,
27307,
535,
50274,
17,
89,
21,
34,
17,
35,
13,
17,
89,
22,
35,
17,
36,
13,
17,
89,
15645,
37,
13,
17,
89,
31036,
38,
13,
187,
187,
4,
7271,
535,
50274,
17,
89,
21,
34,
17,
35,
13,
17,
89,
22,
35,
17,
36,
13,
17,
89,
15645,
37,
13,
17,
89,
33031,
38,
13,
187,
187,
4,
7287,
1380,
2931,
9,
37,
3979,
52,
10,
3857,
2931,
10107,
46,
24748,
27307,
535,
50274,
17,
89,
19,
35,
18,
35,
13,
17,
89,
19,
39,
18,
36,
13,
17,
89,
17615,
37,
13,
17,
89,
20,
34,
18,
38,
13,
535,
50274,
9324,
13,
50254,
50273,
605,
1127,
2160,
19667,
3605,
281,
34082,
187,
50274,
41107,
64,
49559,
64,
13766,
13,
187,
50274,
17,
89,
17,
39,
13,
535,
50274,
28723,
34,
7310,
12,
18690,
7310,
13,
50262,
605,
34741,
562,
15,
187,
50274,
41107,
64,
17020,
64,
13766,
13,
187,
50274,
17,
89,
14803,
13,
17,
89,
938,
13,
50256,
605,
285,
8989,
13,
1269,
263,
8989,
535,
50274,
9324,
13,
50254,
50273,
605,
27722,
15,
8749,
187,
50274,
46,
33771,
64,
38333,
64,
11991,
64,
25444,
64,
13766,
13,
187,
187,
605,
187,
605,
50276,
31190,
9,
37,
3979,
52,
10,
1163,
50276,
11241,
11107,
16,
740,
16,
1731,
428,
427,
4625,
11294,
187,
605,
187,
605,
50256,
14,
6618,
24629,
8078,
310,
657,
1410,
34,
13333,
15,
187,
605,
187,
187,
4,
338,
2931,
9,
37,
3979,
52,
10,
3857,
2931,
10107,
46,
24748,
27307,
535,
50274,
17,
89,
16462,
13,
187,
187,
4,
7271,
535,
50274,
17,
89,
19,
39,
13,
187,
187,
4,
7287,
1380,
2931,
9,
37,
3979,
52,
10,
3857,
2931,
10107,
46,
24748,
27307,
535,
50274,
4290,
13,
50254,
50273,
605,
2505,
16,
40718,
2372,
187,
50274,
6217,
42363,
64,
49559,
64,
13766,
13,
187,
50274,
17,
89,
25670,
13,
535,
50274,
4290,
13,
50254,
50273,
605,
990,
20319,
14932,
187,
50274,
41107,
64,
49559,
64,
13766,
13,
187,
50274,
17,
89,
7554,
13,
535,
50274,
4290,
13,
50254,
50273,
605,
440,
33724,
260,
34433,
470,
14,
24,
187,
50274,
1311,
6669,
64,
49559,
64,
13766,
64,
38505,
13,
187,
50274,
17,
89,
7330,
13,
535,
50274,
28723,
34,
7310,
12,
9816,
57,
7310,
13,
50262,
605,
2086,
260,
34433,
25611,
187,
50274,
1311,
6669,
64,
49559,
64,
13766,
64,
38505,
13,
187,
50274,
1619,
13,
17,
13,
50254,
50275,
605,
1385,
13,
1265,
4663,
187,
187,
605,
187,
605,
50276,
31190,
9,
37,
3979,
52,
10,
1163,
50276,
11241,
11107,
16,
740,
16,
1731,
428,
427,
4625,
11294,
187,
605,
187,
605,
623,
186,
14,
6618,
24629,
8078,
310,
657,
1410,
34,
13333,
15,
187,
605,
187,
187,
4,
338,
2931,
9,
37,
3979,
52,
10,
3857,
2931,
10107,
46,
24748,
27307,
535,
50274,
17,
89,
24,
37,
13,
470,
89,
3571,
13,
470,
89,
1540,
13,
470,
89,
1438,
13,
470,
89,
23,
37,
13,
470,
89,
18,
36,
13,
187,
50274,
17,
89,
4196,
13,
470,
33392,
17,
13,
470,
89,
361,
13,
470,
89,
1549,
13,
470,
89,
361,
13,
470,
89,
361,
13,
187,
50274,
17,
89,
361,
13,
470,
89,
361,
13,
470,
89,
361,
13,
470,
89,
361,
13,
470,
89,
24,
35,
13,
470,
89,
3593,
13,
187,
50274,
17,
89,
3011,
13,
470,
89,
1540,
13,
470,
89,
361,
13,
470,
89,
22,
39,
13,
470,
89,
4739,
13,
470,
34100,
20,
13,
187,
50274,
17,
30962,
13,
470,
89,
361,
13,
470,
89,
361,
13,
470,
89,
1423,
13,
187,
187,
4,
7271,
535,
50274,
17,
89,
24,
37,
13,
470,
89,
3571,
13,
470,
89,
1540,
13,
470,
89,
1438,
13,
470,
89,
23,
37,
13,
470,
89,
18,
36,
13,
187,
50274,
17,
89,
4185,
13,
470,
33392,
17,
13,
470,
89,
361,
13,
470,
89,
1549,
13,
470,
89,
361,
13,
470,
89,
361,
13,
187,
50274,
17,
89,
361,
13,
470,
89,
361,
13,
470,
89,
361,
13,
470,
89,
361,
13,
470,
89,
24,
35,
13,
470,
89,
1438,
13,
187,
50274,
17,
89,
3011,
13,
470,
89,
1540,
13,
470,
89,
361,
13,
470,
89,
22,
39,
13,
470,
89,
4739,
13,
470,
7096,
20,
13,
187,
50274,
17,
21671,
13,
470,
89,
361,
13,
470,
89,
361,
13,
470,
89,
1423,
13,
187,
187,
4,
7287,
186,
605,
2931,
9,
37,
3979,
52,
10,
3857,
2931,
10107,
46,
24748,
27307,
535,
50274,
28723,
34,
7310,
12,
9816,
57,
7310,
13,
50262,
605,
2086,
305,
12352,
25611,
187,
50274,
6217,
42363,
64,
49559,
64,
13766,
13,
187,
50274,
26,
13,
17,
13,
50254,
50274,
605,
1385,
13,
1265,
4663,
187,
50274,
17,
89,
361,
13,
470,
89,
361,
13,
470,
89,
361,
13,
470,
89,
361,
13,
470,
89,
361,
13,
470,
89,
1449,
13,
187,
50274,
17,
89,
1762,
13,
470,
89,
17,
39,
13,
470,
30962,
13,
15267,
50274,
5472,
13,
50254,
50273,
605,
10347,
387,
68,
323,
4028,
187,
50274,
35446,
64,
22574,
64,
18,
64,
38505,
13,
535,
50274,
28723,
34,
7310,
12,
1194,
36,
7310,
13,
50261,
605,
2086,
387,
68,
25611,
187,
50274,
20905,
64,
49559,
64,
13766,
13,
187,
50274,
1797,
13,
17,
13,
50254,
50275,
605,
1385,
13,
1265,
4663,
187,
50274,
17,
89,
361,
13,
470,
89,
520,
13,
470,
89,
2640,
13,
470,
89,
2941,
13,
470,
89,
2125,
13,
470,
89,
1762,
13,
187,
50274,
17,
89,
3071,
13,
470,
89,
2922,
13,
470,
89,
2904,
13,
470,
89,
2693,
13,
470,
89,
17,
34,
13,
470,
89,
17,
35,
13,
187,
50274,
17,
89,
17,
36,
13,
470,
89,
17,
37,
13,
470,
89,
17,
38,
13,
470,
89,
17,
39,
13,
470,
89,
3156,
13,
470,
89,
361,
13,
187,
50274,
17,
89,
17,
39,
13,
470,
89,
361,
13,
470,
89,
361,
13,
535,
50274,
9324,
13,
50254,
50273,
605,
1614,
3492,
327,
15,
187,
50274,
20905,
64,
49559,
64,
13766,
13,
187,
50274,
17,
89,
938,
13,
535,
50274,
9324,
13,
187,
50274,
48351,
64,
8022,
57,
3887,
64,
18690,
64,
13766,
13,
187,
50274,
17,
30962,
13,
535,
50274,
4290,
46,
13,
187,
50274,
6217,
42363,
64,
49559,
64,
13766,
13,
187,
50274,
20,
13,
187,
187,
605,
187,
605,
380,
3689,
532,
430,
32911,
323,
416,
4196,
5145,
310,
418,
7068,
15974,
4438,
15,
187,
605,
831,
873,
3923,
369,
4391,
352,
323,
418,
7068,
15974,
15,
187,
605,
535,
50274,
17,
89,
24133,
13,
470,
89,
933,
66,
13,
470,
89,
933,
67,
13,
535,
50274,
38,
3519,
50259,
187,
4718,
187,
187,
605,
187,
605,
27277,
89,
41356,
17558,
14,
4897,
3925,
8161,
4438,
313,
6159,
2697,
4438,
470,
89,
1549,
10,
873,
3923,
2876,
323,
209,
187,
605,
8951,
46190,
89,
15,
187,
605,
187,
187,
27224,
7396,
8951,
49895,
89,
64,
31111,
89,
41356,
64,
9726,
64,
1549,
5456,
426,
551,
187,
50274,
4290,
46,
13,
50254,
50274,
605,
3135,
873,
9561,
187,
50274,
41107,
64,
49559,
64,
13766,
13,
187,
50274,
19,
13,
50254,
50273,
605,
1385,
187,
50274,
17,
89,
805,
3071,
13,
50254,
1380,
8046,
18149,
187,
50274,
17,
89,
26313,
13,
535,
50274,
4290,
46,
13,
50254,
50274,
605,
3135,
873,
9561,
187,
50274,
41107,
64,
49559,
64,
13766,
13,
187,
50274,
1010,
13,
50254,
50273,
605,
1385,
187,
50274,
17,
89,
2313,
13,
50254,
50276,
605,
1265,
20319,
14932,
187,
50274,
17,
89,
26764,
13,
17,
89,
17,
39,
2640,
13,
17,
89,
14602,
13,
17,
89,
17,
38,
2125,
13,
50274,
605,
2086,
598,
2160,
19667,
187,
187,
605,
187,
605,
380,
3689,
532,
430,
32911,
323,
416,
4196,
5145,
310,
418,
7068,
15974,
4438,
15,
187,
605,
831,
873,
3923,
369,
4391,
418,
7068,
15974,
15,
187,
605,
535,
50274,
9,
5696,
64,
18690,
5291,
1249,
1040,
470,
89,
520,
2922,
582,
623,
187,
50274,
17,
89,
19765,
13,
187,
187,
605,
187,
605,
50276,
31190,
9,
37,
3979,
52,
10,
1163,
50276,
11241,
11107,
16,
740,
16,
1731,
428,
427,
4625,
11294,
187,
605,
187,
605,
623,
186,
14,
6618,
24629,
8078,
310,
657,
1410,
34,
13333,
15,
187,
605,
187,
187,
4,
338,
2931,
9,
37,
3979,
52,
10,
3857,
2931,
10107,
46,
24748,
27307,
535,
50274,
17,
89,
21,
34,
17,
35,
13,
470,
89,
22,
35,
17,
36,
13,
470,
89,
15645,
37,
13,
470,
89,
42047,
38,
13,
187,
50274,
17,
89,
19,
35,
18,
35,
13,
470,
89,
19,
39,
18,
36,
13,
470,
89,
17615,
37,
13,
470,
89,
28459,
38,
13,
187,
187,
4,
7271,
535,
50274,
17,
89,
21,
34,
17,
35,
13,
470,
89,
22,
35,
17,
36,
13,
470,
89,
15645,
37,
13,
470,
89,
20,
35,
17,
38,
13,
187,
50274,
17,
89,
19,
35,
18,
35,
13,
470,
89,
19,
39,
18,
36,
13,
470,
89,
17615,
37,
13,
470,
89,
18,
34,
18,
38,
13,
187,
187,
4,
7287,
1380,
2931,
9,
37,
3979,
52,
10,
3857,
2931,
10107,
46,
24748,
27307,
535,
50274,
9324,
13,
50254,
50273,
605,
1127,
2160,
19667,
3605,
281,
34082,
187,
50274,
41107,
64,
49559,
64,
13766,
13,
187,
50274,
17,
89,
17,
39,
13,
535,
50274,
28723,
34,
7310,
12,
18690,
7310,
13,
50262,
605,
34741,
562,
15,
187,
50274,
41107,
64,
17020,
64,
13766,
13,
187,
50274,
17,
89,
14803,
13,
17,
89,
938,
13,
50256,
605,
285,
8989,
13,
1269,
263,
8989,
535,
50274,
9324,
13,
50254,
50273,
605,
27722,
15,
8749,
187,
50274,
46,
33771,
64,
38333,
64,
11991,
64,
25444,
64,
13766,
13,
187,
50274,
17,
89,
16462,
13,
535,
50274,
4290,
13,
50254,
50273,
605,
2505,
16,
40718,
2372,
187,
50274,
6217,
42363,
64,
49559,
64,
13766,
13,
187,
50274,
17,
89,
25670,
13,
535,
50274,
4290,
13,
50254,
50273,
605,
990,
20319,
14932,
187,
50274,
41107,
64,
49559,
64,
13766,
13,
187,
50274,
17,
89,
7554,
13,
535,
50274,
4290,
13,
50254,
50273,
605,
440,
33724,
260,
34433,
470,
14,
24,
187,
50274,
1311,
6669,
64,
49559,
64,
13766,
64,
38505,
13,
187,
50274,
17,
89,
7330,
13,
535,
50274,
28723,
34,
7310,
12,
9816,
57,
7310,
13,
50262,
605,
2086,
260,
34433,
25611,
187,
50274,
1311,
6669,
64,
49559,
64,
13766,
64,
38505,
13,
187,
50274,
1619,
13,
17,
13,
50254,
50275,
605,
1385,
13,
1265,
4663,
187,
187,
605,
187,
605,
50276,
31190,
9,
37,
3979,
52,
10,
1163,
50276,
11241,
11107,
16,
740,
16,
1731,
428,
427,
4625,
11294,
187,
605,
187,
605,
623,
186,
14,
6618,
24629,
8078,
310,
657,
1410,
34,
13333,
15,
187,
605,
187,
187,
4,
338,
2931,
9,
37,
3979,
52,
10,
3857,
2931,
10107,
46,
24748,
27307,
535,
50274,
17,
37582,
20,
13,
470,
89,
24,
39,
13,
470,
89,
1438,
13,
470,
89,
2691,
13,
470,
89,
2227,
13,
470,
89,
4196,
13,
187,
50274,
17,
89,
1348,
13,
470,
89,
10914,
13,
470,
89,
361,
13,
470,
89,
1549,
13,
470,
89,
361,
13,
470,
89,
361,
13,
187,
50274,
17,
89,
361,
13,
470,
89,
361,
13,
470,
89,
361,
13,
470,
89,
361,
13,
470,
89,
2640,
13,
470,
89,
2055,
13,
187,
50274,
17,
30962,
13,
470,
89,
1438,
13,
470,
89,
361,
13,
470,
89,
361,
13,
470,
89,
1348,
13,
470,
34100,
20,
13,
187,
50274,
17,
30962,
13,
470,
89,
21,
34,
13,
470,
89,
361,
13,
470,
89,
1423,
13,
187,
187,
4,
7271,
535,
50274,
17,
37582,
20,
13,
470,
89,
24,
39,
13,
470,
89,
1438,
13,
470,
89,
2691,
13,
470,
89,
2227,
13,
470,
89,
4196,
13,
187,
50274,
17,
89,
1348,
13,
470,
89,
10914,
13,
470,
89,
361,
13,
470,
89,
1549,
13,
470,
89,
361,
13,
470,
89,
361,
13,
187,
50274,
17,
89,
361,
13,
470,
89,
361,
13,
470,
89,
361,
13,
470,
89,
361,
13,
470,
89,
2640,
13,
470,
89,
2055,
13,
187,
50274,
17,
30962,
13,
470,
89,
1438,
13,
470,
89,
361,
13,
470,
89,
361,
13,
470,
89,
1348,
13,
470,
7096,
20,
13,
187,
50274,
17,
21671,
13,
470,
89,
21,
34,
13,
470,
89,
361,
13,
470,
89,
1423,
13,
187,
187,
4,
7287,
186,
605,
2931,
9,
37,
3979,
52,
10,
3857,
2931,
10107,
46,
24748,
27307,
186,
535,
50274,
28723,
34,
7310,
12,
9816,
57,
7310,
13,
50262,
605,
2086,
305,
12352,
25611,
187,
50274,
6217,
42363,
64,
49559,
64,
13766,
13,
187,
50274,
26,
13,
17,
13,
50254,
50274,
605,
1385,
13,
1265,
4663,
187,
50274,
17,
89,
361,
13,
470,
89,
361,
13,
470,
89,
361,
13,
470,
89,
361,
13,
470,
89,
361,
13,
470,
89,
1449,
13,
187,
50274,
17,
89,
1762,
13,
470,
89,
17,
39,
13,
470,
30962,
13,
15267,
50274,
5472,
13,
50254,
50273,
605,
10347,
387,
68,
323,
4028,
187,
50274,
35446,
64,
22574,
64,
18,
64,
38505,
13,
535,
50274,
28723,
34,
7310,
12,
1194,
36,
7310,
13,
50261,
605,
2086,
387,
68,
25611,
187,
50274,
20905,
64,
49559,
64,
13766,
13,
187,
50274,
1797,
13,
17,
13,
50254,
50275,
605,
1385,
13,
1265,
4663,
187,
50274,
17,
89,
361,
13,
470,
89,
520,
13,
470,
89,
2640,
13,
470,
89,
2941,
13,
470,
89,
2125,
13,
470,
89,
1762,
13,
187,
50274,
17,
89,
3071,
13,
470,
89,
2922,
13,
470,
89,
2904,
13,
470,
89,
2693,
13,
470,
89,
17,
34,
13,
470,
89,
17,
35,
13,
187,
50274,
17,
89,
17,
36,
13,
470,
89,
17,
37,
13,
470,
89,
17,
38,
13,
470,
89,
17,
39,
13,
470,
89,
3156,
13,
470,
89,
361,
13,
187,
50274,
17,
89,
17,
39,
13,
470,
89,
361,
13,
470,
89,
361,
13,
535,
50274,
9324,
13,
50254,
50273,
605,
1614,
3492,
327,
15,
187,
50274,
20905,
64,
49559,
64,
13766,
13,
187,
50274,
17,
89,
938,
13,
535,
50274,
9324,
13,
187,
50274,
48351,
64,
8022,
57,
3887,
64,
18690,
64,
13766,
13,
187,
50274,
17,
30962,
13,
535,
50274,
4290,
46,
13,
187,
50274,
6217,
42363,
64,
49559,
64,
13766,
13,
187,
50274,
20,
13,
187,
187,
605,
187,
605,
380,
3689,
532,
430,
32911,
323,
416,
4196,
5145,
310,
418,
7068,
15974,
4438,
15,
187,
605,
831,
873,
3923,
369,
4391,
352,
323,
418,
7068,
15974,
15,
187,
605,
535,
50274,
17,
89,
24133,
13,
470,
89,
933,
66,
13,
470,
89,
933,
67,
13,
535,
50274,
38,
3519,
50259,
187,
4718,
187,
187,
605,
187,
605,
27277,
89,
41356,
17558,
14,
4897,
5571,
8161,
4438,
313,
6159,
2697,
4438,
470,
89,
1549,
10,
873,
3923,
2876,
323,
209,
187,
605,
8951,
46190,
89,
15,
187,
605,
187,
187,
27224,
7396,
8951,
49895,
89,
64,
31111,
89,
41356,
64,
9726,
64,
1967,
5456,
426,
551,
187,
50274,
4290,
46,
13,
50254,
50274,
605,
3135,
873,
9561,
187,
50274,
41107,
64,
49559,
64,
13766,
13,
187,
50274,
19,
13,
50254,
50273,
605,
1385,
187,
50274,
17,
89,
805,
3071,
13,
50254,
1380,
8046,
18149,
187,
50274,
17,
89,
26313,
13,
535,
50274,
4290,
46,
13,
50254,
50274,
605,
3135,
873,
9561,
187,
50274,
41107,
64,
49559,
64,
13766,
13,
187,
50274,
1010,
13,
50254,
50273,
605,
1385,
187,
50274,
17,
89,
2313,
13,
50254,
50276,
605,
1265,
20319,
14932,
187,
50274,
17,
89,
26764,
13,
17,
89,
17,
39,
2640,
13,
17,
89,
14602,
13,
17,
89,
17,
38,
2125,
13,
50274,
605,
2086,
598,
2160,
19667,
187,
187,
605,
187,
605,
380,
3689,
532,
430,
32911,
323,
416,
4196,
5145,
310,
418,
7068,
15974,
4438,
15,
187,
605,
831,
873,
3923,
369,
4391,
418,
7068,
15974,
15,
187,
605,
535,
50274,
9,
5696,
64,
18690,
5291,
1249,
1040,
470,
89,
520,
2922,
582,
15540,
187,
50274,
17,
89,
19765,
13,
187,
50274,
17,
89,
21,
34,
17,
35,
13,
470,
89,
22,
35,
17,
36,
13,
470,
89,
15645,
37,
13,
470,
89,
23,
38,
17,
38,
13,
623,
187,
50274,
17,
89,
19,
35,
18,
35,
13,
470,
89,
19,
39,
18,
36,
13,
470,
89,
17615,
37,
13,
470,
89,
19,
34,
18,
38,
13,
623,
535,
50274,
9324,
13,
50254,
50273,
605,
1127,
2160,
19667,
3605,
281,
34082,
187,
50274,
41107,
64,
49559,
64,
13766,
13,
187,
50274,
17,
89,
17,
39,
13,
535,
50274,
28723,
34,
7310,
12,
18690,
7310,
13,
50262,
605,
34741,
562,
15,
187,
50274,
41107,
64,
17020,
64,
13766,
13,
187,
50274,
17,
89,
14803,
13,
17,
89,
938,
13,
50256,
605,
285,
8989,
13,
1269,
263,
8989,
535,
50274,
9324,
13,
50254,
50273,
605,
27722,
15,
8749,
187,
50274,
46,
33771,
64,
38333,
64,
11991,
64,
25444,
64,
13766,
13,
187,
50274,
17,
89,
16462,
13,
535,
50274,
4290,
13,
50254,
50273,
605,
2505,
16,
40718,
2372,
187,
50274,
6217,
42363,
64,
49559,
64,
13766,
13,
187,
50274,
17,
89,
25670,
13,
535,
50274,
4290,
13,
50254,
50273,
605,
990,
20319,
14932,
187,
50274,
41107,
64,
49559,
64,
13766,
13,
187,
50274,
17,
89,
7554,
13,
535,
50274,
4290,
13,
50254,
50273,
605,
440,
33724,
260,
34433,
470,
14,
24,
187,
50274,
1311,
6669,
64,
49559,
64,
13766,
64,
38505,
13,
187,
50274,
17,
89,
7330,
13,
535,
50274,
28723,
34,
7310,
12,
9816,
57,
7310,
13,
50262,
605,
2086,
260,
34433,
25611,
187,
50274,
1311,
6669,
64,
49559,
64,
13766,
64,
38505,
13,
187,
50274,
1619,
13,
17,
13,
50254,
50275,
605,
1385,
13,
1265,
4663,
187,
187,
605,
187,
605,
50276,
31190,
9,
37,
3979,
52,
10,
1163,
50276,
11241,
11107,
16,
740,
16,
1731,
428,
427,
4625,
11294,
187,
605,
187,
605,
623,
186,
14,
6618,
24629,
8078,
310,
657,
1410,
34,
13333,
15,
187,
605,
187,
187,
4,
338,
2931,
9,
37,
3979,
52,
10,
3857,
2931,
10107,
46,
24748,
27307,
535,
50274,
17,
37582,
18,
13,
470,
89,
24,
39,
13,
470,
89,
1438,
13,
470,
89,
2691,
13,
470,
89,
2227,
13,
470,
89,
4196,
13,
187,
50274,
17,
89,
1348,
13,
470,
89,
10914,
13,
470,
89,
361,
13,
470,
89,
1549,
13,
470,
89,
361,
13,
470,
89,
361,
13,
187,
50274,
17,
89,
361,
13,
470,
89,
361,
13,
470,
89,
361,
13,
470,
89,
361,
13,
470,
89,
2640,
13,
470,
89,
2055,
13,
187,
50274,
17,
30962,
13,
470,
89,
1438,
13,
470,
89,
361,
13,
470,
89,
361,
13,
470,
89,
1348,
13,
470,
34100,
20,
13,
187,
50274,
17,
30962,
13,
470,
89,
21,
34,
13,
470,
89,
361,
13,
470,
89,
1423,
13,
187,
187,
4,
7271,
535,
50274,
17,
37582,
20,
13,
470,
89,
24,
39,
13,
470,
89,
1438,
13,
470,
89,
2691,
13,
470,
89,
2227,
13,
470,
89,
4196,
13,
187,
50274,
17,
89,
1348,
13,
470,
89,
10914,
13,
470,
89,
361,
13,
470,
89,
1549,
13,
470,
89,
361,
13,
470,
89,
361,
13,
187,
50274,
17,
89,
361,
13,
470,
89,
361,
13,
470,
89,
361,
13,
470,
89,
361,
13,
470,
89,
2640,
13,
470,
89,
2055,
13,
187,
50274,
17,
30962,
13,
470,
89,
1438,
13,
470,
89,
361,
13,
470,
89,
361,
13,
470,
89,
1348,
13,
470,
7096,
20,
13,
187,
50274,
17,
21671,
13,
470,
89,
21,
34,
13,
470,
89,
361,
13,
470,
89,
1423,
13,
187,
187,
4,
7287,
186,
605,
2931,
9,
37,
3979,
52,
10,
3857,
2931,
10107,
46,
24748,
27307,
535,
50274,
28723,
34,
7310,
12,
9816,
57,
7310,
13,
50262,
605,
2086,
305,
12352,
25611,
187,
50274,
6217,
42363,
64,
49559,
64,
13766,
13,
187,
50274,
26,
13,
17,
13,
50254,
50274,
605,
1385,
13,
1265,
4663,
187,
50274,
17,
89,
361,
13,
470,
89,
361,
13,
470,
89,
361,
13,
470,
89,
361,
13,
470,
89,
361,
13,
470,
89,
1449,
13,
187,
50274,
17,
89,
1762,
13,
470,
89,
17,
39,
13,
470,
30962,
13,
15267,
50274,
5472,
13,
50254,
50273,
605,
10347,
387,
68,
323,
4028,
187,
50274,
35446,
64,
22574,
64,
18,
64,
38505,
13,
535,
50274,
28723,
34,
7310,
12,
1194,
36,
7310,
13,
50261,
605,
2086,
387,
68,
25611,
187,
50274,
20905,
64,
49559,
64,
13766,
13,
187,
50274,
1797,
13,
17,
13,
50254,
50275,
605,
1385,
13,
1265,
4663,
187,
50274,
17,
89,
361,
13,
470,
89,
520,
13,
470,
89,
2640,
13,
470,
89,
2941,
13,
470,
89,
2125,
13,
470,
89,
1762,
13,
187,
50274,
17,
89,
3071,
13,
470,
89,
2922,
13,
470,
89,
2904,
13,
470,
89,
2693,
13,
470,
89,
17,
34,
13,
470,
89,
17,
35,
13,
187,
50274,
17,
89,
17,
36,
13,
470,
89,
17,
37,
13,
470,
89,
17,
38,
13,
470,
89,
17,
39,
13,
470,
89,
3156,
13,
470,
89,
361,
13,
187,
50274,
17,
89,
17,
39,
13,
470,
89,
361,
13,
470,
89,
361,
13,
535,
50274,
9324,
13,
50254,
50273,
605,
1614,
3492,
327,
15,
187,
50274,
20905,
64,
49559,
64,
13766,
13,
187,
50274,
17,
89,
938,
13,
535,
50274,
9324,
13,
187,
50274,
48351,
64,
8022,
57,
3887,
64,
18690,
64,
13766,
13,
187,
50274,
17,
30962,
13,
535,
50274,
4290,
46,
13,
187,
50274,
6217,
42363,
64,
49559,
64,
13766,
13,
187,
50274,
20,
13,
187,
187,
605,
187,
605,
380,
3689,
532,
430,
32911,
323,
416,
4196,
5145,
310,
418,
7068,
15974,
4438,
15,
187,
605,
831,
873,
3923,
369,
4391,
352,
323,
418,
7068,
15974,
15,
187,
605,
535,
50274,
17,
89,
24133,
13,
470,
89,
933,
66,
13,
470,
89,
933,
67,
13,
535,
50274,
38,
3519,
50259,
187,
4718,
187,
187,
605,
187,
605,
27277,
89,
41356,
17558,
14,
4897,
11422,
8161,
4438,
313,
6159,
2697,
4438,
470,
89,
1549,
10,
873,
3923,
2876,
323,
209,
187,
605,
8951,
46190,
89,
15,
313,
6504,
77,
2575,
10,
187,
605,
187,
187,
27224,
7396,
8951,
49895,
89,
64,
31111,
89,
41356,
64,
9726,
64,
2597,
5456,
426,
551,
187,
50274,
4290,
46,
13,
50254,
50274,
605,
3135,
873,
9561,
187,
50274,
41107,
64,
49559,
64,
13766,
13,
187,
50274,
19,
13,
50254,
50273,
605,
1385,
187,
50274,
17,
89,
805,
3071,
13,
50254,
1380,
8046,
18149,
187,
50274,
17,
89,
26313,
13,
535,
50274,
4290,
46,
13,
50254,
50274,
605,
3135,
873,
9561,
187,
50274,
41107,
64,
49559,
64,
13766,
13,
187,
50274,
1010,
13,
50254,
50273,
605,
1385,
187,
50274,
17,
89,
2313,
13,
50254,
50276,
605,
1265,
20319,
14932,
187,
50274,
17,
89,
26764,
13,
17,
89,
17,
39,
2640,
13,
17,
89,
14602,
13,
17,
89,
17,
38,
2125,
13,
50274,
605,
2086,
598,
2160,
19667,
187,
187,
605,
187,
605,
380,
3689,
532,
430,
32911,
323,
416,
4196,
5145,
310,
418,
7068,
15974,
4438,
15,
187,
605,
831,
873,
3923,
369,
4391,
418,
7068,
15974,
15,
187,
605,
535,
50274,
9,
5696,
64,
18690,
5291,
1249,
1040,
470,
89,
520,
2922,
582,
5879,
187,
50274,
17,
89,
19765,
13,
187,
50274,
17,
89,
21,
34,
17,
35,
13,
470,
89,
22,
35,
17,
36,
13,
470,
89,
15645,
37,
13,
470,
89,
28321,
38,
13,
15540,
187,
50274,
17,
89,
19,
35,
18,
35,
13,
470,
89,
19,
39,
18,
36,
13,
470,
89,
17615,
37,
13,
470,
89,
29917,
38,
13,
15540,
535,
50274,
9324,
13,
50254,
50273,
605,
1127,
2160,
19667,
3605,
281,
34082,
187,
50274,
41107,
64,
49559,
64,
13766,
13,
187,
50274,
17,
89,
17,
39,
13,
535,
50274,
28723,
34,
7310,
12,
18690,
7310,
13,
50262,
605,
34741,
562,
15,
187,
50274,
41107,
64,
17020,
64,
13766,
13,
187,
50274,
17,
89,
14803,
13,
17,
89,
938,
13,
50256,
605,
285,
8989,
13,
1269,
263,
8989,
535,
50274,
9324,
13,
50254,
50273,
605,
27722,
15,
8749,
187,
50274,
46,
33771,
64,
38333,
64,
11991,
64,
25444,
64,
13766,
13,
187,
187,
605,
187,
605,
50276,
31190,
9,
37,
3979,
52,
10,
1163,
50276,
11241,
11107,
16,
740,
16,
1731,
428,
427,
4625,
11294,
187,
605,
187,
605,
623,
186,
14,
6618,
24629,
8078,
310,
657,
1410,
34,
13333,
15,
187,
605,
187,
187,
4,
338,
2931,
9,
37,
3979,
52,
10,
3857,
2931,
10107,
46,
24748,
27307,
535,
50274,
17,
89,
16462,
13,
15540,
187,
187,
4,
7271,
535,
50274,
17,
89,
19,
39,
13,
15540,
187,
187,
4,
7287,
186,
605,
2931,
9,
37,
3979,
52,
10,
3857,
2931,
10107,
46,
24748,
27307,
535,
50274,
4290,
13,
50254,
50273,
605,
2505,
16,
40718,
2372,
187,
50274,
6217,
42363,
64,
49559,
64,
13766,
13,
187,
50274,
17,
89,
25670,
13,
535,
50274,
4290,
13,
50254,
50273,
605,
990,
20319,
14932,
187,
50274,
41107,
64,
49559,
64,
13766,
13,
187,
50274,
17,
89,
7554,
13,
535,
50274,
4290,
13,
50254,
50273,
605,
440,
33724,
260,
34433,
470,
14,
24,
187,
50274,
1311,
6669,
64,
49559,
64,
13766,
64,
38505,
13,
187,
50274,
17,
89,
7330,
13,
535,
50274,
28723,
34,
7310,
12,
9816,
57,
7310,
13,
50262,
605,
2086,
260,
34433,
25611,
187,
50274,
1311,
6669,
64,
49559,
64,
13766,
64,
38505,
13,
187,
50274,
1619,
13,
17,
13,
50254,
50275,
605,
1385,
13,
1265,
4663,
187,
187,
605,
187,
605,
50276,
31190,
9,
37,
3979,
52,
10,
1163,
50276,
11241,
11107,
16,
740,
16,
1731,
428,
427,
4625,
11294,
187,
605,
187,
605,
623,
186,
14,
6618,
24629,
8078,
310,
657,
1410,
34,
13333,
15,
187,
605,
187,
187,
4,
338,
2931,
9,
37,
3979,
52,
10,
3857,
2931,
10107,
46,
24748,
27307,
535,
50274,
17,
89,
1525,
13,
470,
89,
24,
39,
13,
470,
89,
1438,
13,
470,
89,
2691,
13,
470,
89,
3245,
13,
470,
89,
1525,
13,
187,
50274,
17,
89,
4196,
13,
470,
89,
18,
39,
13,
470,
89,
361,
13,
470,
89,
1449,
13,
470,
89,
361,
13,
470,
89,
361,
13,
28910,
187,
50274,
17,
89,
361,
13,
470,
89,
361,
13,
470,
89,
361,
13,
470,
89,
361,
13,
470,
89,
24,
39,
13,
470,
89,
3245,
13,
28910,
187,
50274,
17,
89,
24,
39,
13,
470,
89,
1438,
13,
470,
89,
361,
13,
470,
89,
24,
39,
13,
470,
89,
805,
13,
470,
34100,
20,
13,
28910,
187,
50274,
17,
21671,
13,
470,
89,
21,
34,
13,
470,
89,
520,
13,
470,
89,
1423,
13,
32062,
33213,
187,
4,
7271,
535,
50274,
17,
37582,
20,
13,
470,
89,
24,
39,
13,
470,
89,
1438,
13,
470,
89,
2691,
13,
470,
89,
2227,
13,
470,
89,
4196,
13,
187,
50274,
17,
89,
8998,
13,
470,
89,
18,
39,
13,
470,
89,
361,
13,
470,
89,
1449,
13,
470,
89,
361,
13,
470,
89,
361,
13,
28910,
187,
50274,
17,
89,
361,
13,
470,
89,
361,
13,
470,
89,
361,
13,
470,
89,
361,
13,
470,
89,
3593,
13,
470,
89,
2759,
13,
28910,
187,
50274,
17,
89,
24,
39,
13,
470,
89,
1438,
13,
470,
89,
361,
13,
470,
89,
1438,
13,
470,
89,
805,
13,
470,
34100,
20,
13,
28910,
187,
50274,
17,
21671,
13,
470,
89,
21,
34,
13,
470,
89,
520,
13,
470,
89,
1423,
13,
32062,
187,
187,
4,
7287,
186,
605,
2931,
9,
37,
3979,
52,
10,
3857,
2931,
10107,
46,
24748,
27307,
535,
50274,
28723,
34,
7310,
12,
9816,
57,
7310,
13,
50262,
605,
2086,
305,
12352,
25611,
187,
50274,
6217,
42363,
64,
49559,
64,
13766,
13,
187,
50274,
26,
13,
17,
13,
50254,
50274,
605,
1385,
13,
1265,
4663,
187,
50274,
17,
89,
361,
13,
470,
89,
361,
13,
470,
89,
361,
13,
470,
89,
361,
13,
470,
89,
361,
13,
470,
89,
1449,
13,
187,
50274,
17,
89,
1762,
13,
470,
89,
17,
39,
13,
470,
30962,
13,
15267,
50274,
5472,
13,
50254,
50273,
605,
10347,
387,
68,
323,
4028,
187,
50274,
35446,
64,
22574,
64,
18,
64,
38505,
13,
535,
50274,
28723,
34,
7310,
12,
1194,
36,
7310,
13,
50261,
605,
2086,
387,
68,
25611,
187,
50274,
20905,
64,
49559,
64,
13766,
13,
187,
50274,
1797,
13,
17,
13,
50254,
50275,
605,
1385,
13,
1265,
4663,
187,
50274,
17,
89,
361,
13,
470,
89,
520,
13,
470,
89,
2640,
13,
470,
89,
2941,
13,
470,
89,
2125,
13,
470,
89,
1762,
13,
187,
50274,
17,
89,
3071,
13,
470,
89,
2922,
13,
470,
89,
2904,
13,
470,
89,
2693,
13,
470,
89,
17,
34,
13,
470,
89,
17,
35,
13,
187,
50274,
17,
89,
17,
36,
13,
470,
89,
17,
37,
13,
470,
89,
17,
38,
13,
470,
89,
17,
39,
13,
470,
89,
3156,
13,
470,
89,
361,
13,
187,
50274,
17,
89,
17,
39,
13,
470,
89,
361,
13,
470,
89,
361,
13,
535,
50274,
9324,
13,
50254,
50273,
605,
1614,
3492,
327,
15,
187,
50274,
20905,
64,
49559,
64,
13766,
13,
187,
50274,
17,
89,
938,
13,
535,
50274,
9324,
13,
187,
50274,
48351,
64,
8022,
57,
3887,
64,
18690,
64,
13766,
13,
187,
50274,
17,
30962,
13,
535,
50274,
4290,
46,
13,
187,
50274,
6217,
42363,
64,
49559,
64,
13766,
13,
187,
50274,
20,
13,
187,
187,
605,
187,
605,
380,
3689,
532,
430,
32911,
323,
416,
4196,
5145,
310,
418,
7068,
15974,
4438,
15,
187,
605,
831,
873,
3923,
369,
4391,
352,
323,
418,
7068,
15974,
15,
187,
605,
535,
50274,
17,
89,
24133,
13,
470,
89,
933,
66,
13,
470,
89,
933,
67,
13,
535,
50274,
38,
3519,
50259,
187,
4718,
187,
187,
4,
7287,
1380,
2931,
9,
37,
3979,
52,
10,
3857,
2931,
10107,
46,
24748,
27307,
187,
187,
4,
7287,
187
] | #ident "@(#) NEC mode542x.h 1.3 95/07/05 13:10:57"
/*++
Copyright (c) 1992 Microsoft Corporation
Module Name:
Mode542x.h
Abstract:
This module contains all the global data used by the Cirrus Logic
CL-542x driver.
Environment:
Kernel mode
Revision History:
--*/
//
// The next set of tables are for the CL542x
// Note: all resolutions supported
//
//
// 640x480 16-color mode (BIOS mode 12) set command string for CL 542x.
//
USHORT CL542x_640x480[] = {
OWM, // begin setmode
SEQ_ADDRESS_PORT,
2, // count
0x1206, // enable extensions
0x0012,
OWM,
GRAPH_ADDRESS_PORT,
3,
0x0009, 0x000a, 0x000b, // no banking in 640x480 mode
EOD
};
//
// 800x600 16-color (60Hz refresh) mode set command string for CL 542x.
//
USHORT CL542x_800x600[] = {
OWM, // begin setmode
SEQ_ADDRESS_PORT,
2, // count
0x1206, // enable extensions
0x0012,
OWM,
GRAPH_ADDRESS_PORT,
3,
0x0009, 0x000a, 0x000b, // no banking in 800x600 mode
EOD
};
//
// 1024x768 16-color (60Hz refresh) mode set command string for CL 542x.
//
USHORT CL542x_1024x768[] = {
OWM, // begin setmode
SEQ_ADDRESS_PORT,
2, // count
0x1206, // enable extensions
0x0012,
OWM,
GRAPH_ADDRESS_PORT,
3,
#if ONE_64K_BANK
0x0009, 0x000a, 0x000b,
#endif
#if TWO_32K_BANKS
0x0009, 0x000a, 0x010b,
#endif
OB,
DAC_PIXEL_MASK_PORT,
0xFF,
EOD
};
//-----------------------------
// standard VGA text modes here
// 80x25 at 640x350
//
//-----------------------------
//
// 80x25 text mode set command string for CL 542x.
// (720x400 pixel resolution; 9x16 character cell.)
//
USHORT CL542x_80x25Text[] = {
OWM, // begin setmode
SEQ_ADDRESS_PORT,
2, // count
0x1206, // enable extensions
0x0012,
OWM,
GRAPH_ADDRESS_PORT,
3,
0x0009, 0x000a, 0x000b, // no banking in text mode
EOD
};
//
// 80x25 text mode set command string for CL 542x.
// (640x350 pixel resolution; 8x14 character cell.)
//
USHORT CL542x_80x25_14_Text[] = {
OWM, // begin setmode
SEQ_ADDRESS_PORT,
2, // count
0x1206, // enable extensions
0x0012,
OWM,
GRAPH_ADDRESS_PORT,
3,
0x0009, 0x000a, 0x000b, // no banking in text mode
EOD
};
//
// 1280x1024 16-color mode (BIOS mode 0x6C) set command string for CL 542x.
//
USHORT CL542x_1280x1024[] = {
OWM, // begin setmode
SEQ_ADDRESS_PORT,
2, // count
0x1206, // enable extensions
0x0012,
OWM,
GRAPH_ADDRESS_PORT,
3,
#if ONE_64K_BANK
0x0009, 0x000a, 0x000b,
#endif
#if TWO_32K_BANKS
0x0009, 0x000a, 0x010b,
#endif
EOD
};
//
// 640x480 64k-color mode (BIOS mode 0x64) set command string for CL 542x.
//
USHORT CL542x_640x480_64k[] = {
OWM, // begin setmode
SEQ_ADDRESS_PORT,
2, // count
0x1206, // enable extensions
0x0012,
OWM,
GRAPH_ADDRESS_PORT,
4,
0x0506, // Some BIOS's set Chain Odd maps bit
#if ONE_64K_BANK
0x0009, 0x000a, 0x000b,
#endif
#if TWO_32K_BANKS
0x0009, 0x000a, 0x010b,
#endif
EOD
};
#ifdef _X86_
//
// 640x480 256-color mode (BIOS mode 0x5F) set command string for CL 542x.
//
USHORT CL542x_640x480_256[] = {
OWM, // begin setmode
SEQ_ADDRESS_PORT,
2, // count
0x1206, // enable extensions
0x0012,
OWM,
GRAPH_ADDRESS_PORT,
3,
#if ONE_64K_BANK
0x0009, 0x000a, 0x000b,
#endif
#if TWO_32K_BANKS
0x0009, 0x000a, 0x010b,
#endif
EOD
};
//
// 800x600 256-color mode (BIOS mode 0x5C) set command string for CL 542x.
//
USHORT CL542x_800x600_256[] = {
OWM, // begin setmode
SEQ_ADDRESS_PORT,
2, // count
0x1206, // enable extensions
0x0012,
OWM,
GRAPH_ADDRESS_PORT,
3,
#if ONE_64K_BANK
0x0009, 0x000a, 0x000b,
#endif
#if TWO_32K_BANKS
0x0009, 0x000a, 0x010b,
#endif
EOD
};
#else
//
// NOTE(DBCS) : Update 94/09/12 - NEC Corporation
//
// - Add mode set command string for NEC MIPS machine.
//
// - 640x480 256 color 72Hz
// - 800x600 256 color 56 / 60Hz
// - 1024x768 256 color 70 / 45Hz
//
#if defined(DBCS) && defined(_MIPS_)
//
// For MIPS NEC machine only
//
//
// 640x480 256-color 60Hz mode (BIOS mode 0x5F) set command string for
// CL 542x.
//
USHORT CL542x_640x480_256_60[] = {
OWM, // begin setmode
SEQ_ADDRESS_PORT,
2, // count
0x1206, // enable extensions
0x0012,
OWM, // begin setmode
SEQ_ADDRESS_PORT,
15, // count
0x100, // start sync reset
0x0101,0x0F02,0x0003,0x0E04, // program up sequencer
//
// the Miniport Driver for R96 machine is Liner addressing mode.
// This set command was changed Liner addressing.
//
(LA_MASK << 12 | 0x0107),
0x0008,
0x4A0B,0x5B0C,0x450D,0x7E0E,
0x2B1B,0x2F1C,0x301D,0x331E,
OB, // point sequencer index to ff
SEQ_ADDRESS_PORT,
0x0F,
METAOUT+MASKOUT, // masked out.
SEQ_DATA_PORT,
0xDF,0x20, // and mask, xor mask
OB, // misc. register
MISC_OUTPUT_REG_WRITE_PORT,
0xE3,
OW, // text/graphics bit
GRAPH_ADDRESS_PORT,
0x506,
OW, // end sync reset
SEQ_ADDRESS_PORT,
0x300,
OW, // unprotect crtc 0-7
CRTC_ADDRESS_PORT_COLOR,
0x2011,
METAOUT+INDXOUT, // program crtc registers
CRTC_ADDRESS_PORT_COLOR,
28,0, // count, startindex
//
// NOTE(DBCS) : Update 94/10/26 - NEC Corporation
//
// - Set Mode Type is VESA compatible.
//
#if defined(DBCS) && defined(_MIPS_)
0x5D, 0x4F, 0x50, 0x82, 0x53, 0x9F,
0x00, 0x3E, 0x00, 0x40, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0xE1, 0x83,
0xDF, 0x50, 0x00, 0xE7, 0x04, 0xE3,
0xFF, 0x00, 0x00, 0x22,
#else
0x5f, 0x4f, 0x50, 0x82, 0x54, 0x80,
0x0b, 0x3e, 0x00, 0x40, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0xea, 0x8c,
0xdf, 0x50, 0x00, 0xe7, 0x04, 0xe3,
0xff, 0x00, 0x00, 0x22,
#endif // defined(DBCS) && defined(_MIPS_)
METAOUT+INDXOUT, // program gdc registers
GRAPH_ADDRESS_PORT,
9,0, // count, startindex
0x00, 0x00, 0x00, 0x00, 0x00, 0x40,
0x05, 0x0F, 0xFF,
IB, // prepare atc for writing
INPUT_STATUS_1_COLOR,
METAOUT+ATCOUT, // program atc registers
ATT_ADDRESS_PORT,
21,0, // count, startindex
0x00, 0x01, 0x02, 0x03, 0x04, 0x05,
0x06, 0x07, 0x08, 0x09, 0x0A, 0x0B,
0x0C, 0x0D, 0x0E, 0x0F, 0x41, 0x00,
0x0F, 0x00, 0x00,
OB, // turn video on.
ATT_ADDRESS_PORT,
0x20,
OB,
DAC_PIXEL_MASK_PORT,
0xFF,
OWM,
GRAPH_ADDRESS_PORT,
3,
//
// The Miniport Driver for R96 machine is Liner addressing mode.
// This set command was changed it for Liner addressing.
//
0x0009, 0x000a, 0x000b,
EOD
};
//
// 640x480 256-color 72Hz mode (BIOS mode 0x5F) set command string for
// CL 542x.
//
USHORT CL542x_640x480_256_72[] = {
OWM, // begin setmode
SEQ_ADDRESS_PORT,
2, // count
0x1206, // enable extensions
0x0012,
OWM, // begin setmode
SEQ_ADDRESS_PORT,
15, // count
0x100, // start sync reset
0x0101,0x0F02,0x0003,0x0E04, // program up sequencer
//
// the Miniport Driver for R96 machine is Liner addressing mode.
// This set command was changed Liner addressing.
//
(LA_MASK << 12 | 0x0107),
0x0008,
0x4A0B,0x5B0C,0x450D,0x420E,
0x2B1B,0x2F1C,0x301D,0x1F1E,
OB, // point sequencer index to ff
SEQ_ADDRESS_PORT,
0x0F,
METAOUT+MASKOUT, // masked out.
SEQ_DATA_PORT,
0xDF,0x20, // and mask, xor mask
OB, // misc. register
MISC_OUTPUT_REG_WRITE_PORT,
0xEF,
OW, // text/graphics bit
GRAPH_ADDRESS_PORT,
0x506,
OW, // end sync reset
SEQ_ADDRESS_PORT,
0x300,
OW, // unprotect crtc 0-7
CRTC_ADDRESS_PORT_COLOR,
0x2011,
METAOUT+INDXOUT, // program crtc registers
CRTC_ADDRESS_PORT_COLOR,
28,0, // count, startindex
//
// NOTE(DBCS) : Update 95/06/30 - NEC Corporation (same as cirrus\mode542x.h)
//
// - Set Mode Type is VESA compatible. (Old Miss match)
//
#if defined(DBCS) && defined(_MIPS_)
0x61, 0x4F, 0x50, 0x82, 0x54, 0x99,
0xF6, 0x1F, 0x00, 0x40, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0xE0, 0x03,
0xDF, 0x50, 0x00, 0xE7, 0x04, 0xE3,
0xFF, 0x00, 0x00, 0x22,
//
// NOTE(DBCS) : Update 94/10/26 - NEC Corporation
//
// - Set Mode Type is VESA compatible.
//
// 0x63, 0x4F, 0x50, 0x82, 0x55, 0x9A, thase parameter not match
// 0x06, 0x3E, 0x00, 0x40, 0x00, 0x00, VESA Mode.
// 0x00, 0x00, 0x00, 0x00, 0xE8, 0x8B,
// 0xDF, 0x50, 0x00, 0xE7, 0x04, 0xE3,
// 0xFF, 0x00, 0x00, 0x22,
#else
0x5f, 0x4f, 0x50, 0x82, 0x54, 0x80,
0x0b, 0x3e, 0x00, 0x40, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0xea, 0x8c,
0xdf, 0x50, 0x00, 0xe7, 0x04, 0xe3,
0xff, 0x00, 0x00, 0x22,
#endif // defined(DBCS) && defined(_MIPS_)
METAOUT+INDXOUT, // program gdc registers
GRAPH_ADDRESS_PORT,
9,0, // count, startindex
0x00, 0x00, 0x00, 0x00, 0x00, 0x40,
0x05, 0x0F, 0xFF,
IB, // prepare atc for writing
INPUT_STATUS_1_COLOR,
METAOUT+ATCOUT, // program atc registers
ATT_ADDRESS_PORT,
21,0, // count, startindex
0x00, 0x01, 0x02, 0x03, 0x04, 0x05,
0x06, 0x07, 0x08, 0x09, 0x0A, 0x0B,
0x0C, 0x0D, 0x0E, 0x0F, 0x41, 0x00,
0x0F, 0x00, 0x00,
OB, // turn video on.
ATT_ADDRESS_PORT,
0x20,
OB,
DAC_PIXEL_MASK_PORT,
0xFF,
OWM,
GRAPH_ADDRESS_PORT,
3,
//
// The Miniport Driver for R96 machine is Liner addressing mode.
// This set command was changed it for Liner addressing.
//
0x0009, 0x000a, 0x000b,
EOD
};
//
// 800x600 256-color 56Hz mode (BIOS mode 0x5C) set command string for
// CL 542x.
//
USHORT CL542x_800x600_256_56[] = {
OWM, // begin setmode
SEQ_ADDRESS_PORT,
2, // count
0x1206, // enable extensions
0x0012,
OWM, // begin setmode
SEQ_ADDRESS_PORT,
15, // count
0x100, // start sync reset
0x0101,0x0F02,0x0003,0x0E04, // program up sequencer
//
// The Miniport Driver for R96 machine is Liner addressing mode.
// This set command was changed Liner addressing.
//
(LA_MASK << 12 | 0x0107),
0x0008,
0x4A0B,0x5B0C,0x450D,0x7E0E,
0x2B1B,0x2F1C,0x301D,0x331E,
OB, // point sequencer index to ff
SEQ_ADDRESS_PORT,
0x0F,
METAOUT+MASKOUT, // masked out.
SEQ_DATA_PORT,
0xDF,0x20, // and mask, xor mask
OB, // misc. register
MISC_OUTPUT_REG_WRITE_PORT,
0xEF,
OW, // text/graphics bit
GRAPH_ADDRESS_PORT,
0x506,
OW, // end sync reset
SEQ_ADDRESS_PORT,
0x300,
OW, // unprotect crtc 0-7
CRTC_ADDRESS_PORT_COLOR,
0x2011,
METAOUT+INDXOUT, // program crtc registers
CRTC_ADDRESS_PORT_COLOR,
28,0, // count, startindex
//
// NOTE(DBCS) : Update 94/10/26 - NEC Corporation
//
// - Set Mode Type is VESA compatible.
//
#if defined(DBCS) && defined(_MIPS_)
0x7B, 0x63, 0x64, 0x80, 0x69, 0x12,
0x6F, 0xF0, 0x00, 0x60, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x58, 0x8A,
0x57, 0x64, 0x00, 0x5F, 0x91, 0xE3,
0xFF, 0x00, 0x00, 0x22,
#else
0x7D, 0x63, 0x64, 0x80, 0x6D, 0x1C,
0x98, 0xF0, 0x00, 0x60, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x7B, 0x80,
0x57, 0x64, 0x00, 0x5F, 0x91, 0xe3,
0xff, 0x00, 0x00, 0x22,
#endif // defined(DBCS) && defined(_MIPS_)
METAOUT+INDXOUT, // program gdc registers
GRAPH_ADDRESS_PORT,
9,0, // count, startindex
0x00, 0x00, 0x00, 0x00, 0x00, 0x40,
0x05, 0x0F, 0xFF,
IB, // prepare atc for writing
INPUT_STATUS_1_COLOR,
METAOUT+ATCOUT, // program atc registers
ATT_ADDRESS_PORT,
21,0, // count, startindex
0x00, 0x01, 0x02, 0x03, 0x04, 0x05,
0x06, 0x07, 0x08, 0x09, 0x0A, 0x0B,
0x0C, 0x0D, 0x0E, 0x0F, 0x41, 0x00,
0x0F, 0x00, 0x00,
OB, // turn video on.
ATT_ADDRESS_PORT,
0x20,
OB,
DAC_PIXEL_MASK_PORT,
0xFF,
OWM,
GRAPH_ADDRESS_PORT,
3,
//
// The Miniport Driver for R96 machine is Liner addressing mode.
// This set command was changed it for Liner addressing.
//
0x0009, 0x000a, 0x000b,
EOD
};
//
// 800x600 256-color 60Hz mode (BIOS mode 0x5C) set command string for
// CL 542x.
//
USHORT CL542x_800x600_256_60[] = {
OWM, // begin setmode
SEQ_ADDRESS_PORT,
2, // count
0x1206, // enable extensions
0x0012,
OWM, // begin setmode
SEQ_ADDRESS_PORT,
15, // count
0x100, // start sync reset
0x0101,0x0F02,0x0003,0x0E04, // program up sequencer
//
// The Miniport Driver for R96 machine is Liner addressing mode.
// This set command was changed Liner addressing.
//
(LA_MASK << 12 | 0x0107),
0x0008,
0x4A0B,0x5B0C,0x450D,0x510E,
0x2B1B,0x2F1C,0x301D,0x3A1E,
OB, // point sequencer index to ff
SEQ_ADDRESS_PORT,
0x0F,
METAOUT+MASKOUT, // masked out.
SEQ_DATA_PORT,
0xDF,0x20, // and mask, xor mask
OB, // misc. register
MISC_OUTPUT_REG_WRITE_PORT,
//
// NOTE(DBCS) : Update 94/10/26 - NEC Corporation
//
// - Set Mode Type is VESA compatible.
//
#if defined(DBCS) && defined(_MIPS_)
0xEF,
#else
0x2F,
#endif // defined(DBCS) && defined(_MIPS_)
OW, // text/graphics bit
GRAPH_ADDRESS_PORT,
0x506,
OW, // end sync reset
SEQ_ADDRESS_PORT,
0x300,
OW, // unprotect crtc 0-7
CRTC_ADDRESS_PORT_COLOR,
0x2011,
METAOUT+INDXOUT, // program crtc registers
CRTC_ADDRESS_PORT_COLOR,
28,0, // count, startindex
//
// NOTE(DBCS) : Update 94/10/26 - NEC Corporation
//
// - Set Mode Type is VESA compatible.
//
#if defined(DBCS) && defined(_MIPS_)
0x7F, 0x63, 0x64, 0x80, 0x6B, 0x1B,
0x72, 0xF0, 0x00, 0x60, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x58, 0x8C,
0x57, 0x64, 0x00, 0x5F, 0x91, 0xE3,
0xFF, 0x00, 0x00, 0x22,
#else
0x7D, 0x63, 0x64, 0x80, 0x6D, 0x1C,
0x98, 0xF0, 0x00, 0x60, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x7B, 0x80,
0x57, 0x64, 0x00, 0x5F, 0x91, 0xe3,
0xff, 0x00, 0x00, 0x22,
#endif // defined(DBCS) && defined(_MIPS_)
METAOUT+INDXOUT, // program gdc registers
GRAPH_ADDRESS_PORT,
9,0, // count, startindex
0x00, 0x00, 0x00, 0x00, 0x00, 0x40,
0x05, 0x0F, 0xFF,
IB, // prepare atc for writing
INPUT_STATUS_1_COLOR,
METAOUT+ATCOUT, // program atc registers
ATT_ADDRESS_PORT,
21,0, // count, startindex
0x00, 0x01, 0x02, 0x03, 0x04, 0x05,
0x06, 0x07, 0x08, 0x09, 0x0A, 0x0B,
0x0C, 0x0D, 0x0E, 0x0F, 0x41, 0x00,
0x0F, 0x00, 0x00,
OB, // turn video on.
ATT_ADDRESS_PORT,
0x20,
OB,
DAC_PIXEL_MASK_PORT,
0xFF,
OWM,
GRAPH_ADDRESS_PORT,
3,
//
// The Miniport Driver for R96 machine is Liner addressing mode.
// This set command was changed it for Liner addressing.
//
0x0009, 0x000a, 0x000b,
EOD
};
//
// 800x600 256-color 72Hz mode (BIOS mode 0x5C) set command string for
// CL 542x.
//
USHORT CL542x_800x600_256_72[] = {
OWM, // begin setmode
SEQ_ADDRESS_PORT,
2, // count
0x1206, // enable extensions
0x0012,
OWM, // begin setmode
SEQ_ADDRESS_PORT,
15, // count
0x100, // start sync reset
0x0101,0x0F02,0x0003,0x0E04, // program up sequencer
//
// The Miniport Driver for R96 machine is Liner addressing mode.
// This set command was changed Liner addressing.
//
(LA_MASK << 12 | 0x0107),
0x0008,
//
// NOTE(DBCS) : Update 94/10/26 - NEC Corporation
//
// - Set Mode Type is VESA compatible.
//
#if defined(DBCS) && defined(_MIPS_)
0x4A0B,0x5B0C,0x450D,0x650E,
#else
0x4A0B,0x5B0C,0x450D,0x640E,
#endif // defined(DBCS) && defined(_MIPS_)
0x2B1B,0x2F1C,0x301D,0x3A1E,
OB, // point sequencer index to ff
SEQ_ADDRESS_PORT,
0x0F,
METAOUT+MASKOUT, // masked out.
SEQ_DATA_PORT,
0xDF,0x20, // and mask, xor mask
OB, // misc. register
MISC_OUTPUT_REG_WRITE_PORT,
//
// NOTE(DBCS) : Update 94/10/26 - NEC Corporation
//
// - Set Mode Type is VESA compatible.
//
#if defined(DBCS) && defined(_MIPS_)
0xEF,
#else
0x2F,
#endif // defined(DBCS) && defined(_MIPS_)
OW, // text/graphics bit
GRAPH_ADDRESS_PORT,
0x506,
OW, // end sync reset
SEQ_ADDRESS_PORT,
0x300,
OW, // unprotect crtc 0-7
CRTC_ADDRESS_PORT_COLOR,
0x2011,
METAOUT+INDXOUT, // program crtc registers
CRTC_ADDRESS_PORT_COLOR,
28,0, // count, startindex
//
// NOTE(DBCS) : Update 94/10/26 - NEC Corporation
//
// - Set Mode Type is VESA compatible.
//
#if defined(DBCS) && defined(_MIPS_)
0x7D, 0x63, 0x64, 0x80, 0x6D, 0x1C,
0x96, 0xF0, 0x00, 0x60, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x7B, 0x81,
0x57, 0x64, 0x00, 0x5F, 0x91, 0xE3,
0xFF, 0x00, 0x00, 0x22,
#else
0x7D, 0x63, 0x64, 0x80, 0x6D, 0x1C,
0x98, 0xF0, 0x00, 0x60, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x7B, 0x80,
0x57, 0x64, 0x00, 0x5F, 0x91, 0xe3,
0xff, 0x00, 0x00, 0x22,
#endif // defined(DBCS) && defined(_MIPS_)
METAOUT+INDXOUT, // program gdc registers
GRAPH_ADDRESS_PORT,
9,0, // count, startindex
0x00, 0x00, 0x00, 0x00, 0x00, 0x40,
0x05, 0x0F, 0xFF,
IB, // prepare atc for writing
INPUT_STATUS_1_COLOR,
METAOUT+ATCOUT, // program atc registers
ATT_ADDRESS_PORT,
21,0, // count, startindex
0x00, 0x01, 0x02, 0x03, 0x04, 0x05,
0x06, 0x07, 0x08, 0x09, 0x0A, 0x0B,
0x0C, 0x0D, 0x0E, 0x0F, 0x41, 0x00,
0x0F, 0x00, 0x00,
OB, // turn video on.
ATT_ADDRESS_PORT,
0x20,
OB,
DAC_PIXEL_MASK_PORT,
0xFF,
OWM,
GRAPH_ADDRESS_PORT,
3,
//
// The Miniport Driver for R96 machine is Liner addressing mode.
// This set command was changed it for Liner addressing.
//
0x0009, 0x000a, 0x000b,
EOD
};
//
// 1024x768 256-color 60Hz mode (BIOS mode 0x60) set command string for
// CL 542x.
//
USHORT CL542x_1024x768_256_60[] = {
OWM, // begin setmode
SEQ_ADDRESS_PORT,
2, // count
0x1206, // enable extensions
0x0012,
OWM, // begin setmode
SEQ_ADDRESS_PORT,
15, // count
0x100, // start sync reset
0x0101,0x0F02,0x0003,0x0E04, // program up sequencer
//
// The Miniport Driver for R96 machine is Liner addressing mode.
// This set command was changed Liner addressing.
//
(LA_MASK << 12 | 0x0107),
0x0008,
//
// NOTE(DBCS) : Update 94/10/26 - NEC Corporation
//
// - Set Mode Type is VESA compatible.
//
#if defined(DBCS) && defined(_MIPS_)
0x4A0B, 0x5B0C, 0x450D, 0x760E,
0x2B1B, 0x2F1C, 0x301D, 0x341E,
#else
0x4A0B, 0x5B0C, 0x450D, 0x3B0E,
0x2B1B, 0x2F1C, 0x301D, 0x1A1E,
#endif // defined(DBCS) && defined(_MIPS_)
OB, // point sequencer index to ff
SEQ_ADDRESS_PORT,
0x0F,
METAOUT+MASKOUT, // masked out.
SEQ_DATA_PORT,
0xDF,0x20, // and mask, xor mask
OB, // misc. register
MISC_OUTPUT_REG_WRITE_PORT,
0xEF,
OW, // text/graphics bit
GRAPH_ADDRESS_PORT,
0x506,
OW, // end sync reset
SEQ_ADDRESS_PORT,
0x300,
OW, // unprotect crtc 0-7
CRTC_ADDRESS_PORT_COLOR,
0x2011,
METAOUT+INDXOUT, // program crtc registers
CRTC_ADDRESS_PORT_COLOR,
28,0, // count, startindex
//
// NOTE(DBCS) : Update 94/10/26 - NEC Corporation
//
// - Set Mode Type is VESA compatible.
//
#if defined(DBCS) && defined(_MIPS_)
0xA3, 0x7F, 0x80, 0x86, 0x85, 0x96,
0x24, 0xFD, 0x00, 0x60, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x02, 0x88,
0xFF, 0x80, 0x00, 0x00, 0x24, 0xE3,
0xFF, 0x4A, 0x00, 0x22,
#else
0xA3, 0x7F, 0x80, 0x86, 0x85, 0x96,
0x24, 0xFD, 0x00, 0x60, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x02, 0x88,
0xFF, 0x80, 0x00, 0x00, 0x24, 0xe3,
0xff, 0x4A, 0x00, 0x22,
#endif // defined(DBCS) && defined(_MIPS_)
METAOUT+INDXOUT, // program gdc registers
GRAPH_ADDRESS_PORT,
9,0, // count, startindex
0x00, 0x00, 0x00, 0x00, 0x00, 0x40,
0x05, 0x0F, 0xFF,
IB, // prepare atc for writing
INPUT_STATUS_1_COLOR,
METAOUT+ATCOUT, // program atc registers
ATT_ADDRESS_PORT,
21,0, // count, startindex
0x00, 0x01, 0x02, 0x03, 0x04, 0x05,
0x06, 0x07, 0x08, 0x09, 0x0A, 0x0B,
0x0C, 0x0D, 0x0E, 0x0F, 0x41, 0x00,
0x0F, 0x00, 0x00,
OB, // turn video on.
ATT_ADDRESS_PORT,
0x20,
OB,
DAC_PIXEL_MASK_PORT,
0xFF,
OWM,
GRAPH_ADDRESS_PORT,
3,
//
// The Miniport Driver for R96 machine is Liner addressing mode.
// This set command was changed it for Liner addressing.
//
0x0009, 0x000a, 0x000b,
EOD
};
//
// 1024x768 256-color 70Hz mode (BIOS mode 0x60) set command string for
// CL 542x.
//
USHORT CL542x_1024x768_256_70[] = {
OWM, // begin setmode
SEQ_ADDRESS_PORT,
2, // count
0x1206, // enable extensions
0x0012,
OWM, // begin setmode
SEQ_ADDRESS_PORT,
15, // count
0x100, // start sync reset
0x0101,0x0F02,0x0003,0x0E04, // program up sequencer
//
// The Miniport Driver for R96 machine is Liner addressing mode.
// This set command was changed Liner addressing.
//
(LA_MASK << 12 | 0x0107),
0x0008,
0x4A0B, 0x5B0C, 0x450D, 0x6E0E,
0x2B1B, 0x2F1C, 0x301D, 0x2A1E,
OB, // point sequencer index to ff
SEQ_ADDRESS_PORT,
0x0F,
METAOUT+MASKOUT, // masked out.
SEQ_DATA_PORT,
0xDF,0x20, // and mask, xor mask
OB, // misc. register
MISC_OUTPUT_REG_WRITE_PORT,
0xEF,
OW, // text/graphics bit
GRAPH_ADDRESS_PORT,
0x506,
OW, // end sync reset
SEQ_ADDRESS_PORT,
0x300,
OW, // unprotect crtc 0-7
CRTC_ADDRESS_PORT_COLOR,
0x2011,
METAOUT+INDXOUT, // program crtc registers
CRTC_ADDRESS_PORT_COLOR,
28,0, // count, startindex
//
// NOTE(DBCS) : Update 94/10/26 - NEC Corporation
//
// - Set Mode Type is VESA compatible.
//
#if defined(DBCS) && defined(_MIPS_)
0xA1, 0x7F, 0x80, 0x86, 0x85, 0x96,
0x24, 0xFD, 0x00, 0x60, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x02, 0x88,
0xFF, 0x80, 0x00, 0x00, 0x24, 0xE3,
0xFF, 0x4A, 0x00, 0x22,
#else
0xA3, 0x7F, 0x80, 0x86, 0x85, 0x96,
0x24, 0xFD, 0x00, 0x60, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x02, 0x88,
0xFF, 0x80, 0x00, 0x00, 0x24, 0xe3,
0xff, 0x4A, 0x00, 0x22,
#endif // defined(DBCS) && defined(_MIPS_)
METAOUT+INDXOUT, // program gdc registers
GRAPH_ADDRESS_PORT,
9,0, // count, startindex
0x00, 0x00, 0x00, 0x00, 0x00, 0x40,
0x05, 0x0F, 0xFF,
IB, // prepare atc for writing
INPUT_STATUS_1_COLOR,
METAOUT+ATCOUT, // program atc registers
ATT_ADDRESS_PORT,
21,0, // count, startindex
0x00, 0x01, 0x02, 0x03, 0x04, 0x05,
0x06, 0x07, 0x08, 0x09, 0x0A, 0x0B,
0x0C, 0x0D, 0x0E, 0x0F, 0x41, 0x00,
0x0F, 0x00, 0x00,
OB, // turn video on.
ATT_ADDRESS_PORT,
0x20,
OB,
DAC_PIXEL_MASK_PORT,
0xFF,
OWM,
GRAPH_ADDRESS_PORT,
3,
//
// The Miniport Driver for R96 machine is Liner addressing mode.
// This set command was changed it for Liner addressing.
//
0x0009, 0x000a, 0x000b,
EOD
};
//
// 1024x768 256-color 87Hz mode (BIOS mode 0x60) set command string for
// CL 542x. (Interlaced)
//
USHORT CL542x_1024x768_256_87[] = {
OWM, // begin setmode
SEQ_ADDRESS_PORT,
2, // count
0x1206, // enable extensions
0x0012,
OWM, // begin setmode
SEQ_ADDRESS_PORT,
15, // count
0x100, // start sync reset
0x0101,0x0F02,0x0003,0x0E04, // program up sequencer
//
// The Miniport Driver for R96 machine is Liner addressing mode.
// This set command was changed Liner addressing.
//
(LA_MASK << 12 | 0x0107),
0x0008,
0x4A0B, 0x5B0C, 0x450D, 0x550E,
0x2B1B, 0x2F1C, 0x301D, 0x361E,
OB, // point sequencer index to ff
SEQ_ADDRESS_PORT,
0x0F,
METAOUT+MASKOUT, // masked out.
SEQ_DATA_PORT,
0xDF,0x20, // and mask, xor mask
OB, // misc. register
MISC_OUTPUT_REG_WRITE_PORT,
//
// NOTE(DBCS) : Update 94/10/26 - NEC Corporation
//
// - Set Mode Type is VESA compatible.
//
#if defined(DBCS) && defined(_MIPS_)
0xEF,
#else
0x2F,
#endif // defined(DBCS) && defined(_MIPS_)
OW, // text/graphics bit
GRAPH_ADDRESS_PORT,
0x506,
OW, // end sync reset
SEQ_ADDRESS_PORT,
0x300,
OW, // unprotect crtc 0-7
CRTC_ADDRESS_PORT_COLOR,
0x2011,
METAOUT+INDXOUT, // program crtc registers
CRTC_ADDRESS_PORT_COLOR,
28,0, // count, startindex
//
// NOTE(DBCS) : Update 94/10/26 - NEC Corporation
//
// - Set Mode Type is VESA compatible.
//
#if defined(DBCS) && defined(_MIPS_)
0x99, 0x7F, 0x80, 0x86, 0x83, 0x99,
0x96, 0x1F, 0x00, 0x40, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x7F, 0x83,
0x7F, 0x80, 0x00, 0x7F, 0x12, 0xE3,
0xff, 0x4A, 0x01, 0x22,
#else
0xA3, 0x7F, 0x80, 0x86, 0x85, 0x96,
0xBE, 0x1F, 0x00, 0x40, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x81, 0x84,
0x7F, 0x80, 0x00, 0x80, 0x12, 0xE3,
0xff, 0x4A, 0x01, 0x22,
#endif // defined(DBCS) && defined(_MIPS_)
METAOUT+INDXOUT, // program gdc registers
GRAPH_ADDRESS_PORT,
9,0, // count, startindex
0x00, 0x00, 0x00, 0x00, 0x00, 0x40,
0x05, 0x0F, 0xFF,
IB, // prepare atc for writing
INPUT_STATUS_1_COLOR,
METAOUT+ATCOUT, // program atc registers
ATT_ADDRESS_PORT,
21,0, // count, startindex
0x00, 0x01, 0x02, 0x03, 0x04, 0x05,
0x06, 0x07, 0x08, 0x09, 0x0A, 0x0B,
0x0C, 0x0D, 0x0E, 0x0F, 0x41, 0x00,
0x0F, 0x00, 0x00,
OB, // turn video on.
ATT_ADDRESS_PORT,
0x20,
OB,
DAC_PIXEL_MASK_PORT,
0xFF,
OWM,
GRAPH_ADDRESS_PORT,
3,
//
// The Miniport Driver for R96 machine is Liner addressing mode.
// This set command was changed it for Liner addressing.
//
0x0009, 0x000a, 0x000b,
EOD
};
#endif // defined(DBCS) && defined(_MIPS_)
#endif
|
214,484 | Github | [
41497,
5302,
4155,
15,
44125,
28,
187,
5302,
4155,
15,
17577,
15,
42711,
25174,
28,
187,
5302,
4155,
15,
17577,
15,
6504,
412,
25174,
28,
187,
187,
605,
4214,
8339,
670,
271,
7796,
310,
6537,
949,
253,
1563,
187,
605,
873,
273,
12474,
15,
15836,
841,
11104,
2193,
281,
10007,
253,
1491,
187,
605,
2330,
342,
271,
7796,
15,
187,
60,
26164,
27,
14184,
13408,
1587,
41032,
589,
49452,
3803,
28532,
187,
60,
26164,
27,
14184,
11185,
1587,
28532,
187,
60,
26164,
27,
14184,
11909,
1587,
28532,
187,
60,
26164,
27,
14184,
32088,
1587,
1552,
310,
417,
416,
5156,
6875,
28532,
187,
60,
26164,
27,
14184,
13443,
1587,
3207,
3123,
28532,
187,
60,
26164,
27,
14184,
20968,
1587,
20968,
20919,
50276,
7132,
28532,
187,
60,
26164,
27,
14184,
2290,
4788,
782,
1587,
28532,
187,
60,
26164,
27,
14184,
38687,
1587,
28532,
187,
187,
605,
32424,
1176,
26998,
281,
3221,
2789,
253,
3510,
275,
436,
7796,
417,
7985,
187,
605,
281,
8610,
4295,
15,
50276,
2042,
368,
878,
281,
2289,
247,
1511,
275,
436,
7796,
432,
187,
605,
8610,
13,
873,
253,
1176,
26998,
11104,
281,
2032,
327,
326,
1511,
15,
187,
60,
26164,
27,
1176,
26998,
9,
7750,
9102,
187,
187,
605,
380,
1563,
443,
18244,
310,
323,
253,
5417,
273,
253,
1745,
293,
487,
604,
436,
2199,
310,
7329,
281,
8610,
187,
60,
26164,
27,
36661,
1587,
21,
71,
18,
886,
24117,
14,
26,
43847,
14,
21,
66,
18,
66,
14,
4482,
19,
70,
14,
23,
26274,
67,
22,
20991,
66,
4739,
28532,
187,
187,
605,
11099,
1491,
323,
271,
7796,
8414,
273,
253,
1563,
1740,
2193,
27,
187,
605,
187,
605,
50272,
25052,
11099,
187,
605,
50272,
10292,
263,
11099,
187,
605,
50272,
10987,
11057,
187,
605,
50272,
49736,
187,
605,
187,
605,
1422,
476,
13199,
512,
253,
2193,
390,
368,
476,
4284,
253,
11103,
285,
3555,
1297,
35306,
187,
605,
407,
970,
253,
42371,
8,
347,
2011,
2708,
27,
187,
605,
544,
26164,
27,
14184,
8893,
1587,
18,
15,
17,
5929,
28532,
187,
60,
26164,
27,
14184,
8893,
1587,
18,
15,
17,
15,
17,
15,
17,
28532,
187,
60,
26164,
27,
14184,
4505,
8893,
1587,
18,
15,
17,
15,
17,
15,
17,
28532,
187
] | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("GerberClipper")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("This is not Rocket Science")]
[assembly: AssemblyProduct("CLIP")]
[assembly: AssemblyCopyright("Copyright © 2017")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]
// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("4f1ec287-9873-4a1a-bb2e-6343b5237a91")]
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
|
214,485 | Github | [
6930,
187,
50276,
21723,
27591,
187,
50276,
11,
1214,
3140,
50274,
296,
78,
1237,
71,
21,
5260,
64,
13362,
15,
73,
187,
50276,
11,
1214,
7582,
50276,
46,
3717,
11683,
10589,
187,
50276,
11,
1214,
4149,
657,
18,
15,
17,
15,
17,
187,
50276,
11,
1214,
2754,
50274,
1229,
14,
21859,
14,
7330,
187,
50276,
11,
1214,
18399,
50275,
1552,
1873,
4428,
512,
253,
3470,
3861,
9117,
323,
253,
388,
14194,
2490,
50276,
11,
50268,
49053,
1935,
6335,
15,
187,
50276,
21723,
27591,
187,
50276,
11,
1214,
42959,
187,
50276,
11,
187,
50276,
11,
3003,
44468,
3489,
48288,
46,
17028,
7245,
23959,
4110,
6651,
443,
18244,
19320,
35310,
329,
2894,
52,
4915,
30677,
2637,
330,
11533,
2277,
6117,
187,
50276,
11,
9277,
330,
47242,
2949,
43155,
24068,
10449,
2637,
3003,
3027,
4653,
14647,
33949,
2949,
19140,
6651,
46632,
5935,
322,
13754,
187,
50276,
11,
25329,
15,
7412,
329,
21180,
10147,
13,
3915,
6402,
1311,
32658,
9656,
27182,
25261,
32221,
5803,
8728,
388,
21901,
34745,
6651,
9103,
187,
50276,
11,
35739,
13,
47823,
4145,
48128,
32024,
9277,
21180,
16370,
5935,
9103,
46533,
52,
34984,
187,
50276,
11,
10727,
3003,
34523,
3489,
3481,
43399,
48288,
46,
17028,
4889,
16,
1372,
3003,
19226,
353,
24259,
9149,
330,
11533,
2277,
6117,
3481,
3003,
187,
50276,
11,
330,
47242,
2949,
43155,
5836,
41603,
1703,
23531,
1042,
2949,
42867,
8286,
9277,
3003,
3027,
4653,
14647,
33949,
15,
187,
50276,
11,
187,
50276,
11,
654,
73,
19,
2730,
9229,
12399,
12557,
28,
28827,
4332,
3915,
25810,
30083,
982,
870,
9229,
3073,
73,
19,
31,
187,
50276,
21723,
27591,
187,
50276,
8480,
187,
187,
3122,
25388,
281,
3657,
33037,
11250,
9625,
7040,
8480,
187,
4,
17331,
4772,
27127,
1237,
39,
21,
5260,
64,
41,
14194,
64,
41,
187,
4,
3182,
4772,
27127,
1237,
39,
21,
5260,
64,
41,
14194,
64,
41,
187,
187,
4,
16238,
4772,
68,
11095,
11095,
187,
23489,
346,
36,
3,
551,
187,
4,
7287,
187,
187,
3122,
496,
10811,
12383,
283,
8480,
187,
4,
3709,
346,
296,
78,
1237,
71,
21,
5260,
15,
73,
3,
187,
187,
6930,
1214,
1911,
85,
31481,
1011,
46273,
1237,
39,
21,
5260,
64,
38821,
6052,
16372,
64,
25603,
187,
50276,
11,
1214,
92,
187,
50276,
8480,
187,
187,
6930,
1214,
1911,
85,
31481,
1011,
388,
14194,
187,
50276,
11,
1214,
92,
187,
50276,
8480,
2490,
187,
3122,
1889,
10750,
3510,
14927,
2912,
8480,
187,
187,
6930,
2490,
50276,
11,
1214,
18399,
50275,
41,
14194,
10813,
2605,
5426,
187,
50276,
8480,
209,
187,
17743,
1577,
187,
92,
187,
50276,
8531,
1237,
64,
85,
388,
14194,
64,
2422,
2184,
23474,
28,
44740,
38670,
14,
18,
390,
10399,
22,
15,
831,
4764,
476,
320,
247,
1318,
2490,
50254,
50266,
1171,
1214,
709,
388,
14194,
64,
2422,
2184,
64,
23474,
1738,
187,
50276,
8531,
1237,
64,
85,
388,
14194,
64,
2422,
2184,
10715,
28,
50272,
46170,
29,
388,
14194,
390,
20307,
1934,
15,
831,
4764,
476,
320,
247,
1318,
2490,
50254,
50266,
1171,
1214,
709,
388,
14194,
64,
23171,
64,
39973,
64,
10715,
1738,
187,
50276,
8531,
1237,
64,
85,
388,
14194,
64,
3233,
2548,
28,
50272,
46170,
29,
4567,
14,
2713,
941,
13,
1668,
14,
2713,
941,
13,
854,
14,
2713,
941,
390,
2490,
50254,
50266,
2713,
14,
2703,
15,
831,
4764,
476,
320,
247,
1318,
273,
187,
50254,
50266,
33,
709,
388,
14194,
64,
3233,
64,
2548,
1738,
187,
50276,
8531,
1237,
64,
85,
388,
14194,
64,
25695,
1934,
4814,
2548,
28,
50275,
46170,
29,
20307,
1934,
14196,
2234,
390,
20307,
1934,
8057,
10030,
15,
831,
4764,
187,
50254,
50266,
5092,
320,
247,
1318,
273,
1214,
709,
388,
14194,
64,
25695,
1934,
64,
12486,
64,
2364,
64,
7483,
64,
1542,
64,
25695,
1934,
64,
9561,
1738,
187,
94,
41,
14194,
64,
10828,
49696,
28,
187,
187,
6930,
2490,
50276,
11,
1214,
18399,
50276,
41,
14194,
3935,
19818,
906,
2605,
5426,
50276,
187,
50276,
8480,
209,
187,
17743,
1577,
187,
92,
187,
50276,
8531,
1237,
64,
85,
5128,
60,
22,
2194,
50272,
46170,
29,
17775,
19818,
906,
1163,
608,
89,
4567,
2713,
3000,
323,
38670,
18,
390,
2490,
50254,
50254,
50272,
21,
89,
4567,
2713,
3000,
323,
10399,
22,
50276,
8480,
187,
94,
388,
14194,
64,
21611,
19224,
383,
28,
2490,
187,
6930,
2490,
50276,
11,
1214,
18399,
50276,
41,
14194,
3634,
1863,
5436,
2605,
5426,
50276,
187,
50276,
8480,
209,
187,
17743,
1577,
187,
92,
187,
50276,
8531,
1237,
64,
85,
388,
14194,
64,
2894,
51,
28,
2490,
50276,
8531,
1237,
64,
85,
388,
14194,
64,
9639,
28,
50272,
187,
50276,
8531,
1237,
64,
85,
388,
14194,
64,
1311,
28,
50273,
187,
50276,
8531,
1237,
64,
85,
388,
14194,
64,
5166,
51,
60,
3712,
2194,
50271,
187,
94,
41,
14194,
64,
5856,
28,
187,
187,
3122,
1889,
10750,
14637,
14927,
397,
8480,
187,
187,
6930,
1214,
1545,
4399,
388,
14194,
64,
1672,
10750,
64,
31171,
187,
50276,
11,
1214,
92,
187,
50276,
8480,
2490,
187,
6930,
1214,
1545,
4399,
388,
14194,
64,
2422,
2184,
64,
23474,
2490,
50276,
11,
1214,
92,
187,
50276,
8480,
209,
187,
4,
3182,
388,
14194,
64,
2422,
2184,
23474,
64,
23855,
18,
50274,
4464,
8531,
1036,
64,
85,
10,
17,
89,
1418,
10,
44740,
388,
14194,
1159,
310,
38670,
18,
1738,
187,
4,
3182,
388,
14194,
64,
2422,
2184,
23474,
64,
7414,
22,
50273,
4464,
8531,
1036,
64,
85,
10,
17,
89,
44135,
10,
44740,
388,
14194,
1159,
310,
10399,
22,
1738,
187,
187,
4,
3182,
4110,
64,
41,
14194,
64,
1556,
10993,
2354,
1843,
8286,
9,
1556,
10993,
2354,
1843,
8286,
10,
24317,
1556,
10993,
2354,
1843,
8286,
10,
2295,
388,
14194,
64,
2422,
2184,
23474,
64,
23855,
18,
10,
2785,
393,
187,
50254,
50256,
4464,
1556,
10993,
2354,
1843,
8286,
10,
2295,
388,
14194,
64,
2422,
2184,
23474,
64,
7414,
22,
1228,
187,
6930,
187,
50276,
11,
1214,
94,
187,
50276,
8480,
187,
187,
6930,
1214,
1545,
4399,
388,
14194,
64,
23171,
64,
39973,
64,
10715,
2490,
50276,
11,
1214,
92,
187,
50276,
8480,
209,
187,
4,
3182,
388,
14194,
64,
2422,
2184,
10715,
64,
41,
14194,
50269,
4464,
8531,
1036,
64,
85,
10,
17,
89,
1418,
10,
44740,
29088,
310,
388,
14194,
1738,
209,
187,
4,
3182,
388,
14194,
64,
2422,
2184,
10715,
64,
25695,
1934,
50269,
4464,
8531,
1036,
64,
85,
10,
17,
89,
31119,
10,
44740,
29088,
310,
20307,
1934,
1738,
187,
187,
4,
3182,
4110,
64,
41,
14194,
64,
1556,
40,
2277,
48,
2573,
9,
1556,
40,
2277,
48,
2573,
10,
24317,
1556,
40,
2277,
48,
2573,
10,
2295,
388,
14194,
64,
2422,
2184,
10715,
64,
41,
14194,
10,
2785,
393,
187,
50254,
50266,
4464,
1556,
40,
2277,
48,
2573,
10,
2295,
388,
14194,
64,
2422,
2184,
10715,
64,
25695,
1934,
1228,
187,
6930,
187,
50276,
11,
1214,
94,
187,
50276,
8480,
187,
187,
6930,
1214,
1545,
4399,
388,
14194,
64,
3233,
64,
2548,
50276,
187,
50276,
11,
1214,
92,
187,
50276,
8480,
50276,
187,
4,
3182,
388,
14194,
64,
3233,
2548,
64,
1237,
67,
50268,
4464,
8531,
1036,
64,
85,
10,
17,
89,
1418,
10,
187,
4,
3182,
388,
14194,
64,
3233,
2548,
64,
1036,
67,
50268,
4464,
8531,
1036,
64,
85,
10,
17,
89,
17553,
10,
187,
4,
3182,
388,
14194,
64,
3233,
2548,
64,
25,
67,
50267,
4464,
8531,
1036,
64,
85,
10,
17,
89,
20515,
10,
187,
4,
3182,
388,
14194,
64,
3233,
2548,
64,
18,
67,
50267,
4464,
8531,
1036,
64,
85,
10,
17,
89,
29728,
10,
187,
187,
4,
3182,
4110,
64,
41,
14194,
64,
36602,
1194,
7711,
9,
36602,
1194,
7711,
10,
24317,
36602,
1194,
7711,
10,
2295,
388,
14194,
64,
3233,
2548,
64,
1237,
67,
8579,
93,
393,
187,
50254,
50266,
4464,
36602,
1194,
7711,
10,
2295,
388,
14194,
64,
3233,
2548,
64,
1036,
67,
8579,
93,
393,
187,
50254,
50266,
4464,
36602,
1194,
7711,
10,
2295,
388,
14194,
64,
3233,
2548,
64,
25,
67,
8579,
93,
393,
187,
50254,
50266,
4464,
36602,
1194,
7711,
10,
2295,
388,
14194,
64,
3233,
2548,
64,
18,
67,
1228,
187,
6930,
187,
50276,
11,
1214,
94,
187,
50276,
8480,
187,
187,
6930,
1214,
1545,
4399,
388,
14194,
64,
25695,
1934,
64,
12486,
64,
2364,
64,
7483,
64,
1542,
64,
25695,
1934,
64,
9561,
50276,
187,
50276,
11,
1214,
92,
187,
50276,
8480,
209,
187,
4,
3182,
388,
14194,
64,
25695,
1934,
4814,
2548,
64,
17624,
4814,
50272,
4464,
8531,
1237,
64,
85,
10,
17,
89,
4226,
10,
44740,
20307,
1934,
10030,
310,
11049,
6705,
11061,
1738,
187,
4,
3182,
388,
14194,
64,
25695,
1934,
4814,
2548,
64,
12486,
4814,
50271,
4464,
8531,
1237,
64,
85,
10,
17,
89,
5831,
1418,
10,
44740,
20307,
1934,
10030,
310,
2239,
6705,
11061,
1738,
187,
187,
4,
3182,
4110,
64,
41,
14194,
64,
25695,
1934,
64,
13888,
10560,
9,
13888,
10560,
10,
24317,
13888,
10560,
10,
2295,
388,
14194,
64,
25695,
1934,
4814,
2548,
64,
17624,
4814,
10,
2785,
393,
187,
50254,
50268,
4464,
13888,
10560,
10,
2295,
388,
14194,
64,
25695,
1934,
4814,
2548,
64,
12486,
4814,
1228,
187,
6930,
187,
50276,
11,
1214,
94,
187,
50276,
8480,
187,
187,
6930,
1214,
1545,
4399,
11057,
64,
1171,
64,
7210,
64,
11209,
64,
249,
64,
6275,
64,
3418,
64,
1171,
64,
783,
64,
8559,
50275,
187,
50276,
11,
1214,
92,
187,
50276,
8480,
50276,
187,
4,
3182,
4110,
64,
41,
14194,
64,
46330,
14609,
18243,
5529,
15051,
9,
46330,
39076,
10,
6048,
46330,
39076,
10,
11049,
470,
89,
18,
39,
10,
187,
187,
6930,
187,
50276,
11,
1214,
94,
187,
50276,
8480,
187,
187,
6930,
1214,
1545,
4399,
388,
14194,
64,
30933,
84,
64,
28692,
50275,
187,
50276,
11,
1214,
92,
187,
50276,
8480,
50276,
187,
4,
3182,
388,
14194,
64,
1433,
64,
37,
1042,
42,
50263,
4464,
8531,
25,
64,
85,
10,
17,
89,
520,
10,
50276,
46170,
29,
329,
747,
2972,
476,
320,
5966,
715,
253,
3280,
6391,
313,
37,
1042,
2888,
16,
187,
4,
3182,
388,
14194,
64,
1433,
64,
37,
7142,
50262,
4464,
8531,
25,
64,
85,
10,
17,
89,
2640,
10,
50276,
46170,
29,
11568,
383,
10272,
3426,
1738,
187,
187,
4,
3182,
4110,
64,
41,
14194,
64,
1433,
9,
1433,
10,
24317,
9,
1433,
10,
708,
313,
8531,
25,
64,
85,
10,
17,
89,
6739,
10,
2295,
470,
89,
361,
10,
3857,
6048,
1433,
10,
3613,
470,
89,
361,
1228,
187,
4,
3182,
4110,
64,
41,
14194,
64,
9278,
64,
1433,
9,
1433,
10,
24317,
1433,
10,
2295,
388,
14194,
64,
1433,
64,
37,
1042,
42,
10,
2785,
6048,
1433,
10,
2295,
388,
14194,
64,
1433,
64,
37,
7142,
1228,
2664,
50275,
187,
6930,
187,
50276,
11,
1214,
94,
187,
50276,
8480,
187,
187,
6930,
1214,
1545,
4399,
388,
14194,
64,
12790,
64,
28692,
50275,
187,
50276,
11,
1214,
92,
187,
50276,
8480,
50276,
187,
4,
3182,
388,
14194,
64,
12900,
64,
37,
1042,
1830,
50266,
4464,
8531,
1036,
64,
85,
10,
17,
89,
5831,
10,
50276,
46170,
29,
1668,
8593,
403,
1959,
275,
253,
399,
1042,
1163,
329,
747,
2972,
476,
320,
5966,
715,
253,
3280,
6391,
5929,
16,
187,
4,
3182,
388,
14194,
64,
12900,
64,
9151,
1830,
50265,
4464,
8531,
1036,
64,
85,
10,
17,
89,
12603,
10,
50276,
46170,
29,
11568,
383,
10272,
3426,
1738,
187,
4,
3182,
388,
14194,
64,
12900,
64,
9042,
1719,
50265,
4464,
8531,
1036,
64,
85,
10,
17,
89,
15017,
10,
50276,
46170,
29,
30143,
5673,
310,
11410,
313,
32843,
38,
30,
18,
10,
390,
247,
3700,
310,
10800,
1738,
187,
4,
3182,
388,
14194,
64,
12900,
64,
35,
34608,
50265,
4464,
8531,
1036,
64,
85,
10,
17,
89,
19765,
10,
50276,
46170,
29,
380,
13283,
5161,
310,
19523,
90,
1163,
5162,
247,
2972,
273,
941,
1738,
187,
4,
3182,
388,
14194,
64,
12900,
64,
37,
1042,
6603,
50266,
4464,
8531,
1036,
64,
85,
10,
17,
89,
9138,
10,
50276,
46170,
29,
399,
1042,
417,
6325,
1163,
380,
3280,
6391,
4428,
387,
1878,
581,
3159,
273,
941,
1738,
187,
187,
4,
3182,
4110,
64,
41,
14194,
64,
9278,
64,
12900,
9,
12900,
10,
24317,
12900,
10,
2295,
388,
14194,
64,
12900,
64,
37,
1042,
1830,
10,
2785,
393,
187,
50254,
50270,
4464,
12900,
10,
2295,
388,
14194,
64,
12900,
64,
9151,
1830,
10,
50276,
9473,
393,
187,
50254,
50270,
4464,
12900,
10,
2295,
388,
14194,
64,
12900,
64,
9042,
1719,
10,
50276,
9473,
393,
187,
50254,
50270,
4464,
12900,
10,
2295,
388,
14194,
64,
12900,
64,
35,
34608,
10,
50276,
9473,
393,
187,
50254,
50270,
4464,
12900,
10,
2295,
388,
14194,
64,
12900,
64,
37,
1042,
6603,
1228,
2490,
187,
4,
3182,
4110,
64,
41,
14194,
64,
28040,
1277,
64,
12900,
9,
12900,
2769,
4464,
12900,
10,
2295,
388,
14194,
64,
12900,
64,
37,
1042,
1830,
10,
2785,
393,
187,
50254,
50269,
4464,
12900,
10,
2295,
388,
14194,
64,
12900,
64,
9151,
1830,
1228,
50254,
50269,
187,
187,
6930,
187,
50276,
11,
1214,
94,
187,
50276,
8480,
2490,
187,
6930,
187,
50276,
11,
1214,
94,
187,
50276,
8480,
2490,
187,
3122,
1889,
10750,
14823,
14927,
2912,
8480,
187,
3122,
1889,
10750,
3470,
14927,
397,
8480,
2490,
50276,
187,
3122,
50276,
11594,
908,
281,
873,
253,
388,
14194,
6661,
281,
253,
4284,
14932,
1375,
33684,
16,
187,
4353,
388,
14194,
64,
3848,
10828,
9,
4353,
558,
187,
187,
3122,
388,
14194,
31843,
1159,
209,
7631,
3704,
16,
187,
4353,
388,
14194,
64,
10828,
9,
41,
14194,
64,
10828,
49696,
11,
388,
14194,
64,
10828,
21772,
558,
187,
4353,
388,
14194,
64,
21772,
10828,
9,
41,
14194,
64,
10828,
49696,
11,
388,
14194,
64,
10828,
21772,
558,
187,
4353,
388,
14194,
64,
36001,
9,
4353,
558,
187,
187,
3122,
388,
14194,
17775,
11568,
383,
5978,
3470,
209,
7631,
424,
8480,
187,
4353,
388,
14194,
64,
3233,
688,
9,
8531,
1237,
64,
85,
5128,
558,
187,
8531,
25,
64,
85,
388,
14194,
64,
3633,
688,
45306,
4290,
6565,
47,
1288,
9,
4353,
558,
187,
4353,
388,
14194,
64,
4531,
8693,
22093,
13159,
31736,
47,
1288,
9,
8531,
1036,
64,
85,
33937,
8447,
558,
187,
4353,
388,
14194,
64,
8252,
19224,
383,
9,
4353,
558,
187,
4353,
388,
14194,
64,
3633,
19224,
383,
9,
41,
14194,
64,
21611,
19224,
383,
11,
388,
14194,
64,
7474,
19224,
383,
558,
187,
187,
3122,
388,
14194,
25161,
1863,
5436,
3470,
209,
7631,
2015,
1134,
16,
187,
4353,
388,
14194,
64,
17964,
5856,
9,
41,
14194,
64,
5856,
11,
388,
14194,
64,
5856,
17964,
558,
187,
4353,
388,
14194,
64,
17613,
410,
5856,
9,
41,
14194,
64,
5856,
11,
388,
14194,
64,
5856,
17613,
410,
558,
187,
187,
3122,
388,
14194,
434,
30143,
5673,
1159,
209,
7631,
2015,
27591,
16,
187,
4353,
388,
14194,
64,
9042,
1934,
6535,
9,
11594,
267,
5443,
1457,
5443,
558,
187,
187,
3122,
388,
14194,
46403,
84,
285,
12201,
4323,
3470,
209,
49691,
1134,
8480,
187,
4353,
388,
14194,
64,
1433,
6155,
9,
8531,
25,
64,
85,
388,
14194,
64,
1433,
13,
33185,
5443,
1457,
5443,
558,
187,
22532,
9505,
388,
14194,
64,
3633,
22532,
9505,
9,
8531,
1036,
64,
85,
388,
14194,
64,
12900,
558,
187,
4353,
388,
14194,
64,
25376,
22532,
9,
8531,
1036,
64,
85,
388,
14194,
64,
12900,
558,
187,
1433,
9505,
388,
14194,
64,
3633,
1433,
9505,
9,
8531,
25,
64,
85,
388,
14194,
64,
1433,
558,
187,
4353,
388,
14194,
64,
25376,
1433,
49,
1946,
12871,
9,
8531,
25,
64,
85,
388,
14194,
64,
1433,
558,
187,
187,
3122,
4855,
15557,
38670,
18,
3470,
209,
7631,
3704,
424,
16,
187,
4756,
9505,
388,
14194,
64,
23855,
18,
9,
8531,
25,
64,
85,
475,
8982,
13,
4770,
1237,
64,
85,
309,
5025,
13,
4770,
25,
64,
85,
24882,
60,
938,
9259,
187,
4756,
9505,
20307,
1934,
64,
23855,
18,
9,
8531,
25,
64,
85,
475,
4814,
13,
4770,
1237,
64,
85,
6018,
1190,
257,
13,
187,
50256,
8531,
25,
64,
85,
475,
8982,
13,
4770,
1237,
64,
85,
309,
5025,
13,
187,
50256,
8531,
25,
64,
85,
24882,
60,
938,
9259,
187,
187,
3122,
4855,
15557,
10399,
22,
3470,
209,
7631,
3704,
424,
8480,
187,
4756,
9505,
388,
14194,
64,
7414,
22,
9,
8531,
25,
64,
85,
475,
8982,
13,
4770,
1237,
64,
85,
309,
5025,
13,
4770,
25,
64,
85,
24882,
60,
1036,
9259,
187,
4756,
9505,
20307,
1934,
64,
7414,
22,
9,
8531,
25,
64,
85,
475,
4814,
13,
4770,
1237,
64,
85,
6018,
1190,
257,
13,
187,
50257,
8531,
25,
64,
85,
475,
8982,
13,
4770,
1237,
64,
85,
309,
5025,
13,
187,
50257,
8531,
25,
64,
85,
24882,
60,
1036,
9259,
187,
187,
4,
16238,
4772,
68,
11095,
11095,
187,
94,
187,
4,
7287,
187,
187,
4,
7287,
3476,
876,
27127,
1237,
39,
21,
5260,
64,
41,
14194,
64,
41,
1738,
187,
187,
6930,
187,
50276,
11,
1214,
94,
187,
50276,
8480,
2490,
187,
6930,
187,
50276,
11,
1214,
94,
187,
50276,
8480,
2490,
187,
16,
3704,
9264,
313,
36,
10,
28827,
4332,
3915,
25810,
30083,
982,
33684,
11,
8112,
3481,
15691,
1134,
16,
187
] | /**
******************************************************************************
* @file stm32f4xx_hash.h
* @author MCD Application Team
* @version V1.0.0
* @date 30-September-2011
* @brief This file contains all the functions prototypes for the HASH
* firmware library.
******************************************************************************
* @attention
*
* THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
* WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE
* TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY
* DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING
* FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE
* CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
*
* <h2><center>© COPYRIGHT 2011 STMicroelectronics</center></h2>
******************************************************************************
*/
/* Define to prevent recursive inclusion -------------------------------------*/
#ifndef __STM32F4xx_HASH_H
#define __STM32F4xx_HASH_H
#ifdef __cplusplus
extern "C" {
#endif
/* Includes ------------------------------------------------------------------*/
#include "stm32f4xx.h"
/** @addtogroup STM32F4xx_StdPeriph_Driver
* @{
*/
/** @addtogroup HASH
* @{
*/
/* Exported types ------------------------------------------------------------*/
/**
* @brief HASH Init structure definition
*/
typedef struct
{
uint32_t HASH_AlgoSelection; /*!< SHA-1 or MD5. This parameter can be a value
of @ref HASH_Algo_Selection */
uint32_t HASH_AlgoMode; /*!< HASH or HMAC. This parameter can be a value
of @ref HASH_processor_Algorithm_Mode */
uint32_t HASH_DataType; /*!< 32-bit data, 16-bit data, 8-bit data or
bit-string. This parameter can be a value of
@ref HASH_Data_Type */
uint32_t HASH_HMACKeyType; /*!< HMAC Short key or HMAC Long Key. This parameter
can be a value of @ref HASH_HMAC_Long_key_only_for_HMAC_mode */
}HASH_InitTypeDef;
/**
* @brief HASH message digest result structure definition
*/
typedef struct
{
uint32_t Data[5]; /*!< Message digest result : 5x 32bit words for SHA1 or
4x 32bit words for MD5 */
} HASH_MsgDigest;
/**
* @brief HASH context swapping structure definition
*/
typedef struct
{
uint32_t HASH_IMR;
uint32_t HASH_STR;
uint32_t HASH_CR;
uint32_t HASH_CSR[51];
}HASH_Context;
/* Exported constants --------------------------------------------------------*/
/** @defgroup HASH_Exported_Constants
* @{
*/
/** @defgroup HASH_Algo_Selection
* @{
*/
#define HASH_AlgoSelection_SHA1 ((uint16_t)0x0000) /*!< HASH function is SHA1 */
#define HASH_AlgoSelection_MD5 ((uint16_t)0x0080) /*!< HASH function is MD5 */
#define IS_HASH_ALGOSELECTION(ALGOSELECTION) (((ALGOSELECTION) == HASH_AlgoSelection_SHA1) || \
((ALGOSELECTION) == HASH_AlgoSelection_MD5))
/**
* @}
*/
/** @defgroup HASH_processor_Algorithm_Mode
* @{
*/
#define HASH_AlgoMode_HASH ((uint16_t)0x0000) /*!< Algorithm is HASH */
#define HASH_AlgoMode_HMAC ((uint16_t)0x0040) /*!< Algorithm is HMAC */
#define IS_HASH_ALGOMODE(ALGOMODE) (((ALGOMODE) == HASH_AlgoMode_HASH) || \
((ALGOMODE) == HASH_AlgoMode_HMAC))
/**
* @}
*/
/** @defgroup HASH_Data_Type
* @{
*/
#define HASH_DataType_32b ((uint16_t)0x0000)
#define HASH_DataType_16b ((uint16_t)0x0010)
#define HASH_DataType_8b ((uint16_t)0x0020)
#define HASH_DataType_1b ((uint16_t)0x0030)
#define IS_HASH_DATATYPE(DATATYPE) (((DATATYPE) == HASH_DataType_32b)|| \
((DATATYPE) == HASH_DataType_16b)|| \
((DATATYPE) == HASH_DataType_8b)|| \
((DATATYPE) == HASH_DataType_1b))
/**
* @}
*/
/** @defgroup HASH_HMAC_Long_key_only_for_HMAC_mode
* @{
*/
#define HASH_HMACKeyType_ShortKey ((uint32_t)0x00000000) /*!< HMAC Key is <= 64 bytes */
#define HASH_HMACKeyType_LongKey ((uint32_t)0x00010000) /*!< HMAC Key is > 64 bytes */
#define IS_HASH_HMAC_KEYTYPE(KEYTYPE) (((KEYTYPE) == HASH_HMACKeyType_ShortKey) || \
((KEYTYPE) == HASH_HMACKeyType_LongKey))
/**
* @}
*/
/** @defgroup Number_of_valid_bits_in_last_word_of_the_message
* @{
*/
#define IS_HASH_VALIDBITSNUMBER(VALIDBITS) ((VALIDBITS) <= 0x1F)
/**
* @}
*/
/** @defgroup HASH_interrupts_definition
* @{
*/
#define HASH_IT_DINI ((uint8_t)0x01) /*!< A new block can be entered into the input buffer (DIN)*/
#define HASH_IT_DCI ((uint8_t)0x02) /*!< Digest calculation complete */
#define IS_HASH_IT(IT) ((((IT) & (uint8_t)0xFC) == 0x00) && ((IT) != 0x00))
#define IS_HASH_GET_IT(IT) (((IT) == HASH_IT_DINI) || ((IT) == HASH_IT_DCI))
/**
* @}
*/
/** @defgroup HASH_flags_definition
* @{
*/
#define HASH_FLAG_DINIS ((uint16_t)0x0001) /*!< 16 locations are free in the DIN : A new block can be entered into the input buffer.*/
#define HASH_FLAG_DCIS ((uint16_t)0x0002) /*!< Digest calculation complete */
#define HASH_FLAG_DMAS ((uint16_t)0x0004) /*!< DMA interface is enabled (DMAE=1) or a transfer is ongoing */
#define HASH_FLAG_BUSY ((uint16_t)0x0008) /*!< The hash core is Busy : processing a block of data */
#define HASH_FLAG_DINNE ((uint16_t)0x1000) /*!< DIN not empty : The input buffer contains at least one word of data */
#define IS_HASH_GET_FLAG(FLAG) (((FLAG) == HASH_FLAG_DINIS) || \
((FLAG) == HASH_FLAG_DCIS) || \
((FLAG) == HASH_FLAG_DMAS) || \
((FLAG) == HASH_FLAG_BUSY) || \
((FLAG) == HASH_FLAG_DINNE))
#define IS_HASH_CLEAR_FLAG(FLAG)(((FLAG) == HASH_FLAG_DINIS) || \
((FLAG) == HASH_FLAG_DCIS))
/**
* @}
*/
/**
* @}
*/
/* Exported macro ------------------------------------------------------------*/
/* Exported functions --------------------------------------------------------*/
/* Function used to set the HASH configuration to the default reset state ****/
void HASH_DeInit(void);
/* HASH Configuration function ************************************************/
void HASH_Init(HASH_InitTypeDef* HASH_InitStruct);
void HASH_StructInit(HASH_InitTypeDef* HASH_InitStruct);
void HASH_Reset(void);
/* HASH Message Digest generation functions ***********************************/
void HASH_DataIn(uint32_t Data);
uint8_t HASH_GetInFIFOWordsNbr(void);
void HASH_SetLastWordValidBitsNbr(uint16_t ValidNumber);
void HASH_StartDigest(void);
void HASH_GetDigest(HASH_MsgDigest* HASH_MessageDigest);
/* HASH Context swapping functions ********************************************/
void HASH_SaveContext(HASH_Context* HASH_ContextSave);
void HASH_RestoreContext(HASH_Context* HASH_ContextRestore);
/* HASH's DMA interface function **********************************************/
void HASH_DMACmd(FunctionalState NewState);
/* HASH Interrupts and flags management functions *****************************/
void HASH_ITConfig(uint8_t HASH_IT, FunctionalState NewState);
FlagStatus HASH_GetFlagStatus(uint16_t HASH_FLAG);
void HASH_ClearFlag(uint16_t HASH_FLAG);
ITStatus HASH_GetITStatus(uint8_t HASH_IT);
void HASH_ClearITPendingBit(uint8_t HASH_IT);
/* High Level SHA1 functions **************************************************/
ErrorStatus HASH_SHA1(uint8_t *Input, uint32_t Ilen, uint8_t Output[20]);
ErrorStatus HMAC_SHA1(uint8_t *Key, uint32_t Keylen,
uint8_t *Input, uint32_t Ilen,
uint8_t Output[20]);
/* High Level MD5 functions ***************************************************/
ErrorStatus HASH_MD5(uint8_t *Input, uint32_t Ilen, uint8_t Output[16]);
ErrorStatus HMAC_MD5(uint8_t *Key, uint32_t Keylen,
uint8_t *Input, uint32_t Ilen,
uint8_t Output[16]);
#ifdef __cplusplus
}
#endif
#endif /*__STM32F4xx_HASH_H */
/**
* @}
*/
/**
* @}
*/
/******************* (C) COPYRIGHT 2011 STMicroelectronics *****END OF FILE****/
|
214,486 | Github | [
3122,
187,
475,
8283,
43178,
43,
5990,
15,
1876,
3570,
10827,
15,
187,
475,
4637,
2426,
27,
5987,
1358,
2700,
15,
77,
88,
75,
3129,
15,
2061,
16,
21997,
187,
475,
353,
16319,
7570,
20396,
15691,
13,
7953,
5803,
17675,
187,
1738,
187,
10708,
4955,
15,
77,
88,
75,
3129,
15,
412,
1205,
868,
28,
187,
187,
2948,
4955,
15,
77,
88,
75,
3129,
15,
10394,
40129,
187,
187,
2948,
4228,
4955,
15,
77,
88,
75,
3129,
15,
10394,
15,
42927,
4065,
15,
37,
1362,
18229,
40129,
187,
187,
6930,
187,
475,
496,
4777,
273,
436,
5673,
778,
320,
4817,
281,
253,
18073,
4492,
9653,
1410,
1237,
4,
3129,
14154,
7474,
18229,
26073,
7474,
18229,
94,
1332,
15,
187,
475,
2490,
475,
654,
73,
20,
31,
2548,
870,
73,
20,
31,
187,
475,
2490,
475,
654,
3456,
2730,
3211,
31,
187,
475,
2991,
2796,
10,
313,
187,
475,
50273,
5990,
14379,
2603,
13,
187,
475,
50273,
5990,
14379,
1511,
13,
187,
475,
50273,
5990,
8531,
2654,
13,
187,
475,
50273,
5990,
14379,
12147,
13,
187,
475,
50273,
5990,
3281,
74,
2978,
13,
187,
475,
50273,
5990,
3615,
1030,
475,
8559,
13,
187,
475,
50273,
4353,
1030,
475,
4537,
11030,
187,
475,
2387,
870,
3211,
3073,
3456,
31,
187,
1738,
187,
33,
11594,
267,
14418,
187,
33,
21408,
2548,
1587,
5990,
18828,
28389,
2807,
187,
4387,
5673,
9653,
14154,
7474,
18229,
42,
8725,
9368,
2135,
42,
15,
55,
551,
535,
50274,
2776,
322,
13003,
40668,
426,
9368,
2135,
24856,
8400,
4065,
1587,
9,
2886,
2886,
5265,
10,
87,
3287,
535,
50274,
33,
9677,
187,
50274,
6986,
4605,
755,
34222,
1082,
551,
1091,
322,
13003,
40668,
28,
748,
535,
50274,
33,
9677,
187,
50274,
6986,
2991,
15259,
9,
5056,
13059,
10,
551,
187,
50270,
24416,
9,
187,
50266,
69,
11316,
11141,
4807,
9,
8854,
582,
187,
50266,
69,
11316,
11141,
4807,
9,
8854,
582,
187,
50266,
69,
11316,
11141,
4807,
9,
8854,
582,
187,
50266,
69,
11316,
11141,
4807,
9,
8854,
582,
187,
50266,
69,
11316,
11141,
4807,
9,
8854,
582,
187,
50266,
69,
11316,
11141,
11732,
9,
8854,
582,
187,
50266,
69,
11316,
11141,
11732,
9,
8854,
10,
187,
50270,
558,
187,
50274,
94,
535,
50274,
6930,
187,
50273,
11,
7395,
320,
1925,
672,
247,
13844,
3935,
310,
4561,
15,
187,
50273,
11,
187,
50273,
11,
1214,
3575,
2603,
50274,
783,
3935,
2603,
187,
50273,
11,
1214,
3575,
1511,
50272,
783,
3935,
1511,
187,
50273,
11,
1214,
3575,
2654,
50270,
783,
3935,
5417,
187,
50273,
11,
1214,
3575,
12147,
50276,
783,
3935,
12147,
187,
50273,
11,
1214,
3575,
2978,
50274,
783,
3935,
2978,
13,
22914,
253,
3635,
14,
20792,
1080,
187,
50273,
11,
1214,
3575,
3935,
50275,
66,
12219,
281,
253,
3935,
2876,
6779,
187,
50273,
11,
1214,
3575,
2608,
11030,
253,
2608,
14,
30878,
1318,
326,
369,
4817,
672,
6789,
18073,
4492,
9653,
1410,
1237,
4,
3129,
14154,
7474,
18229,
26073,
7474,
18229,
94,
187,
50273,
8480,
187,
50274,
4353,
22073,
22256,
21408,
2548,
1587,
5990,
14379,
2807,
540,
2603,
13,
1214,
21408,
2548,
1587,
5990,
14379,
2807,
540,
1511,
13,
1214,
21408,
2548,
1587,
5990,
8531,
2807,
540,
2654,
13,
1214,
21408,
2548,
1587,
5990,
14379,
2807,
540,
12147,
13,
1214,
21408,
2548,
1587,
5990,
3281,
74,
2807,
540,
2978,
13,
1214,
21408,
2548,
1587,
5990,
3615,
1030,
475,
2807,
1048,
3935,
13,
1214,
21408,
2548,
1587,
4353,
1030,
475,
2807,
1048,
2608,
11030,
558,
187,
187,
94
] | /*
* Copyright LWJGL. All rights reserved.
* License terms: https://www.lwjgl.org/license
* MACHINE GENERATED FILE, DO NOT EDIT
*/
package org.lwjgl.opengles;
import org.lwjgl.system.*;
import static org.lwjgl.system.dyncall.DynCallback.*;
/**
* Instances of this interface may be passed to the {@link GLES32#glDebugMessageCallback DebugMessageCallback} method.
*
* <h3>Type</h3>
*
* <pre><code>
* void (*) (
* GLenum source,
* GLenum type,
* GLuint id,
* GLenum severity,
* GLsizei length,
* GLchar const *message,
* void const *userParam
* )</code></pre>
*/
@FunctionalInterface
@NativeType("GLDEBUGPROC")
public interface GLDebugMessageCallbackI extends CallbackI.V {
String SIGNATURE = Callback.__stdcall("(iiiiipp)v");
@Override
default String getSignature() { return SIGNATURE; }
@Override
default void callback(long args) {
invoke(
dcbArgInt(args),
dcbArgInt(args),
dcbArgInt(args),
dcbArgInt(args),
dcbArgInt(args),
dcbArgPointer(args),
dcbArgPointer(args)
);
}
/**
* Will be called when a debug message is generated.
*
* @param source the message source
* @param type the message type
* @param id the message ID
* @param severity the message severity
* @param length the message length, excluding the null-terminator
* @param message a pointer to the message string representation
* @param userParam the user-specified value that was passed when calling {@link GLES32#glDebugMessageCallback DebugMessageCallback}
*/
void invoke(@NativeType("GLenum") int source, @NativeType("GLenum") int type, @NativeType("GLuint") int id, @NativeType("GLenum") int severity, @NativeType("GLsizei") int length, @NativeType("GLchar const *") long message, @NativeType("void const *") long userParam);
} |
214,487 | Github | [
3122,
187,
475,
831,
1873,
310,
629,
273,
253,
12280,
66,
12770,
2697,
8049,
15,
2594,
31501,
16902,
1873,
323,
8283,
1491,
187,
475,
187,
475,
831,
2086,
310,
1959,
3694,
28,
368,
476,
25529,
352,
285,
16,
263,
10007,
187,
475,
352,
762,
253,
2426,
273,
253,
11963,
4214,
5259,
4637,
347,
3863,
407,
187,
475,
253,
7648,
9107,
6807,
28,
2057,
2715,
374,
273,
253,
4637,
13,
390,
187,
475,
313,
255,
634,
4500,
10,
667,
1996,
2715,
15,
187,
475,
187,
475,
831,
2086,
310,
5939,
275,
253,
3524,
326,
352,
588,
320,
4217,
13,
187,
475,
533,
15002,
9103,
23181,
28,
1293,
1014,
253,
10466,
17529,
273,
187,
475,
20863,
390,
20524,
6651,
329,
20383,
20103,
15,
2594,
253,
187,
475,
11963,
4214,
5259,
4637,
323,
625,
4278,
15,
187,
475,
187,
475,
1422,
943,
452,
2959,
247,
3491,
273,
253,
11963,
4214,
5259,
4637,
187,
475,
2112,
342,
436,
2086,
28,
604,
417,
13,
3630,
281,
253,
7648,
9107,
187,
475,
6807,
13,
3690,
904,
8978,
17658,
13470,
13,
32261,
24792,
13,
9693,
13,
6908,
16261,
10768,
14,
1012,
2922,
5106,
187,
1738,
187,
187,
4,
17331,
26393,
9803,
64,
10201,
49,
64,
13801,
187,
4,
3182,
26393,
9803,
64,
10201,
49,
64,
13801,
187,
187,
4,
3709,
346,
18170,
15,
73,
3,
187,
4,
3709,
346,
5677,
11806,
49,
87,
49,
15,
73,
3,
187,
4,
3709,
346,
32953,
16,
26170,
15,
73,
3,
187,
187,
4,
3709,
346,
14947,
16,
14947,
5443,
4612,
1100,
15,
73,
3,
187,
187,
14379,
187,
92,
187,
50274,
53,
27306,
64,
1838,
64,
38035,
3886,
25692,
50254,
50272,
30,
470,
13,
187,
50274,
53,
27306,
64,
1838,
64,
1311,
4290,
12770,
54,
10449,
50254,
50273,
30,
337,
13,
187,
50274,
53,
27306,
64,
1838,
64,
38,
17643,
56,
5626,
50254,
50271,
30,
374,
13,
187,
50274,
53,
27306,
64,
1838,
64,
3859,
2696,
6028,
20293,
3519,
50254,
50273,
30,
495,
13,
187,
50274,
11779,
64,
13801,
64,
53,
4290,
6117,
50254,
50267,
30,
577,
13,
535,
50274,
605,
30712,
187,
50274,
22395,
2293,
64,
38,
28510,
1410,
64,
10327,
64,
45,
1372,
4877,
947,
1139,
64,
5626,
42,
19320,
64,
18,
50266,
30,
11601,
1012,
13,
187,
50274,
22395,
2293,
64,
38,
28510,
1410,
64,
10327,
64,
45,
1372,
4877,
947,
1139,
64,
5626,
42,
19320,
64,
19,
50266,
30,
11601,
1047,
13,
187,
50274,
22395,
2293,
64,
38,
28510,
1410,
64,
10327,
64,
45,
1372,
4877,
947,
1139,
64,
5626,
42,
19320,
64,
20,
50266,
30,
11601,
1010,
13,
187,
50274,
22395,
2293,
64,
38,
28510,
1410,
64,
10327,
64,
45,
1372,
4877,
947,
1139,
64,
5626,
42,
19320,
64,
21,
50266,
30,
15410,
23,
13,
535,
50274,
22395,
2293,
64,
38,
28510,
1410,
64,
10327,
64,
45,
1372,
4877,
947,
1139,
64,
41,
1372,
2573,
64,
18,
50263,
30,
31499,
1438,
13,
187,
50274,
22395,
2293,
64,
38,
28510,
1410,
64,
10327,
64,
45,
1372,
4877,
947,
1139,
64,
41,
1372,
2573,
64,
19,
50263,
30,
1884,
38518,
13,
187,
50274,
22395,
2293,
64,
38,
28510,
1410,
64,
10327,
64,
45,
1372,
4877,
947,
1139,
64,
41,
1372,
2573,
64,
20,
50263,
30,
1884,
35488,
13,
187,
50274,
22395,
2293,
64,
38,
28510,
1410,
64,
10327,
64,
45,
1372,
4877,
947,
1139,
64,
41,
1372,
2573,
64,
21,
50263,
30,
28195,
938,
13,
535,
50274,
605,
7098,
3942,
2196,
187,
50274,
40,
5214,
12695,
58,
10449,
64,
59,
11147,
64,
38,
17643,
18174,
64,
3859,
2696,
6028,
50259,
30,
15470,
13,
187,
50274,
40,
5214,
12695,
58,
10449,
64,
1838,
64,
38,
17643,
18174,
64,
3859,
2696,
6028,
50257,
30,
898,
1630,
13,
535,
50274,
605,
27722,
187,
50274,
41,
1139,
1372,
64,
1848,
48941,
64,
3859,
2696,
54,
3887,
5543,
52,
50254,
30,
1283,
13,
535,
50274,
605,
295,
5902,
84,
187,
50274,
47,
5077,
64,
52,
16370,
51,
1556,
64,
4639,
9981,
64,
3788,
30883,
50256,
30,
1722,
14009,
13,
535,
50274,
605,
8630,
6303,
41850,
187,
50274,
5377,
8286,
64,
4639,
9981,
64,
3788,
30883,
64,
5626,
42,
19320,
50260,
30,
818,
3566,
13,
187,
50274,
5377,
8286,
64,
4639,
9981,
64,
3788,
30883,
64,
41,
1372,
2573,
50257,
30,
818,
1976,
13,
535,
50274,
22395,
2293,
64,
4350,
3027,
1433,
64,
26765,
1864,
23710,
64,
5993,
6028,
50257,
30,
1722,
20298,
13,
187,
50274,
22395,
2293,
64,
4350,
3027,
1433,
64,
26765,
1864,
23710,
64,
34803,
50256,
30,
31389,
2693,
13,
535,
50274,
605,
1437,
187,
50274,
47,
5077,
64,
1311,
4290,
12770,
54,
10449,
64,
53,
27306,
64,
26310,
64,
13220,
3519,
2350,
50263,
30,
1722,
29941,
13,
187,
50274,
47,
5077,
64,
38,
17643,
56,
5626,
64,
53,
27306,
64,
26310,
64,
13220,
3519,
2350,
50261,
30,
1722,
31055,
13,
187,
50274,
47,
5077,
64,
38035,
3886,
25692,
64,
53,
27306,
64,
26310,
64,
13220,
3519,
2350,
50262,
30,
1722,
30651,
13,
187,
50274,
47,
5077,
64,
3859,
2696,
6028,
20293,
3519,
64,
53,
27306,
64,
26310,
64,
13220,
3519,
2350,
50263,
30,
1722,
31671,
13,
535,
50274,
605,
23158,
187,
50274,
47,
5077,
64,
45,
1372,
4877,
947,
1139,
64,
31264,
5543,
947,
50254,
426,
23670,
1671,
13,
187,
50274,
47,
5077,
64,
45,
1372,
4877,
947,
1139,
64,
45136,
11364,
947,
50254,
50275,
30,
1722,
25953,
13,
535,
50274,
605,
3499,
615,
187,
50274,
47,
5077,
64,
45,
1372,
4877,
947,
1139,
64,
55,
2025,
947,
1539,
50254,
50275,
30,
1722,
28202,
13,
187,
50274,
47,
5077,
64,
45,
1372,
4877,
947,
1139,
64,
8209,
41,
4827,
50254,
50275,
30,
1722,
28053,
13,
535,
50274,
605,
2165,
25964,
187,
50274,
10993,
64,
45,
1372,
4877,
947,
1139,
64,
5648,
51,
7570,
64,
5626,
42,
19320,
50258,
30,
1283,
1036,
3507,
13,
187,
50274,
10993,
64,
45,
1372,
4877,
947,
1139,
64,
5648,
51,
7570,
64,
41,
1372,
2573,
50255,
30,
1283,
38460,
13,
187,
50274,
10993,
64,
53,
27306,
64,
12900,
50254,
50267,
30,
25985,
12971,
13,
535,
50274,
605,
1896,
45342,
247,
27356,
428,
417,
908,
187,
50274,
605,
10993,
64,
5626,
42,
19320,
64,
35,
1539,
21598,
64,
34,
3322,
34,
50255,
30,
1283,
28949,
13,
187,
50274,
605,
10993,
64,
41,
1372,
2573,
64,
35,
1539,
21598,
64,
34,
3322,
34,
50254,
50276,
30,
1283,
26764,
13,
535,
50274,
605,
9232,
2792,
187,
50274,
10993,
64,
53,
27306,
64,
35,
1539,
21598,
64,
38035,
3886,
25692,
50255,
30,
1283,
1093,
1525,
13,
187,
50274,
10993,
64,
53,
27306,
64,
35,
1539,
21598,
64,
1311,
4290,
12770,
54,
10449,
50256,
30,
1283,
938,
4196,
13,
187,
50274,
10993,
64,
53,
27306,
64,
35,
1539,
21598,
64,
38,
17643,
56,
5626,
50254,
30,
1283,
938,
4148,
13,
187,
50274,
10993,
64,
53,
27306,
64,
35,
1539,
21598,
64,
3859,
2696,
6028,
20293,
3519,
50256,
30,
1283,
938,
4185,
13,
535,
50274,
10993,
64,
53,
27306,
64,
35,
1539,
21598,
50254,
50269,
30,
25985,
12971,
13,
50275,
605,
15469,
270,
23217,
1475,
535,
50274,
605,
3394,
187,
50274,
605,
30212,
64,
38035,
3886,
25692,
64,
25079,
64,
5626,
42,
19320,
50260,
30,
12446,
2358,
13,
187,
50274,
605,
30212,
64,
38035,
3886,
25692,
64,
25079,
64,
41,
1372,
2573,
50257,
30,
884,
35466,
13,
187,
50274,
605,
30212,
64,
38035,
3886,
25692,
64,
5707,
14524,
64,
5626,
42,
19320,
50264,
30,
884,
29790,
13,
187,
50274,
605,
30212,
64,
38035,
3886,
25692,
64,
5707,
14524,
64,
41,
1372,
2573,
50261,
30,
884,
30651,
13,
187,
50274,
30212,
64,
38035,
3886,
25692,
64,
20371,
6217,
5479,
64,
5626,
42,
19320,
50263,
30,
12708,
1525,
13,
187,
50274,
30212,
64,
38035,
3886,
25692,
64,
20371,
6217,
5479,
64,
41,
1372,
2573,
50260,
30,
884,
31671,
13,
187,
50274,
30212,
64,
38035,
3886,
25692,
64,
6603,
33660,
1556,
64,
5626,
42,
19320,
50262,
30,
11334,
3712,
13,
187,
50274,
30212,
64,
38035,
3886,
25692,
64,
6603,
33660,
1556,
64,
41,
1372,
2573,
50259,
30,
11334,
1235,
13,
535,
50274,
605,
30212,
64,
1311,
4290,
12770,
54,
10449,
64,
25079,
64,
5626,
42,
19320,
50261,
30,
12446,
1967,
13,
187,
50274,
605,
30212,
64,
1311,
4290,
12770,
54,
10449,
64,
25079,
64,
41,
1372,
2573,
50258,
30,
12446,
2526,
13,
187,
50274,
605,
30212,
64,
1311,
4290,
12770,
54,
10449,
64,
5707,
14524,
64,
5626,
42,
19320,
50265,
30,
884,
30349,
13,
187,
50274,
605,
30212,
64,
1311,
4290,
12770,
54,
10449,
64,
5707,
14524,
64,
41,
1372,
2573,
50262,
30,
884,
30967,
13,
187,
50274,
30212,
64,
1311,
4290,
12770,
54,
10449,
64,
20371,
6217,
5479,
64,
5626,
42,
19320,
50264,
30,
14034,
1762,
13,
187,
50274,
30212,
64,
1311,
4290,
12770,
54,
10449,
64,
20371,
6217,
5479,
64,
41,
1372,
2573,
50261,
30,
884,
26942,
13,
187,
50274,
30212,
64,
1311,
4290,
12770,
54,
10449,
64,
6603,
33660,
1556,
64,
5626,
42,
19320,
50263,
30,
11334,
2417,
13,
187,
50274,
30212,
64,
1311,
4290,
12770,
54,
10449,
64,
6603,
33660,
1556,
64,
41,
1372,
2573,
50260,
30,
11334,
3439,
13,
535,
50274,
605,
30212,
64,
38,
17643,
56,
5626,
64,
25079,
64,
5626,
42,
19320,
50259,
30,
12446,
2090,
13,
187,
50274,
605,
30212,
64,
38,
17643,
56,
5626,
64,
25079,
64,
41,
1372,
2573,
50256,
30,
12446,
2082,
13,
187,
50274,
605,
30212,
64,
38,
17643,
56,
5626,
64,
5707,
14524,
64,
5626,
42,
19320,
50263,
30,
884,
29941,
13,
187,
50274,
605,
30212,
64,
38,
17643,
56,
5626,
64,
5707,
14524,
64,
41,
1372,
2573,
50260,
30,
884,
31055,
13,
187,
50274,
30212,
64,
38,
17643,
56,
5626,
64,
20371,
6217,
5479,
64,
5626,
42,
19320,
50262,
30,
884,
35356,
13,
187,
50274,
30212,
64,
38,
17643,
56,
5626,
64,
20371,
6217,
5479,
64,
41,
1372,
2573,
50259,
30,
884,
34769,
13,
187,
50274,
30212,
64,
38,
17643,
56,
5626,
64,
6603,
33660,
1556,
64,
5626,
42,
19320,
50261,
30,
11334,
2537,
13,
187,
50274,
30212,
64,
38,
17643,
56,
5626,
64,
6603,
33660,
1556,
64,
41,
1372,
2573,
50258,
30,
11334,
2385,
13,
535,
50274,
605,
30212,
64,
3859,
2696,
6028,
20293,
3519,
64,
25079,
64,
5626,
42,
19320,
50261,
30,
12446,
2251,
13,
187,
50274,
605,
30212,
64,
3859,
2696,
6028,
20293,
3519,
64,
25079,
64,
41,
1372,
2573,
50258,
30,
12446,
1540,
13,
187,
50274,
605,
30212,
64,
3859,
2696,
6028,
20293,
3519,
64,
5707,
14524,
64,
5626,
42,
19320,
50265,
30,
884,
29868,
13,
187,
50274,
605,
30212,
64,
3859,
2696,
6028,
20293,
3519,
64,
5707,
14524,
64,
41,
1372,
2573,
50262,
30,
12708,
2055,
13,
187,
50274,
30212,
64,
3859,
2696,
6028,
20293,
3519,
64,
20371,
6217,
5479,
64,
5626,
42,
19320,
50264,
30,
14034,
520,
13,
187,
50274,
30212,
64,
3859,
2696,
6028,
20293,
3519,
64,
20371,
6217,
5479,
64,
41,
1372,
2573,
50261,
30,
14034,
361,
13,
187,
50274,
30212,
64,
3859,
2696,
6028,
20293,
3519,
64,
6603,
33660,
1556,
64,
5626,
42,
19320,
50263,
30,
11334,
3357,
13,
187,
50274,
30212,
64,
3859,
2696,
6028,
20293,
3519,
64,
6603,
33660,
1556,
64,
41,
1372,
2573,
50260,
30,
11334,
3583,
13,
535,
50274,
7941,
48,
2350,
37744,
64,
19093,
64,
2795,
18355,
64,
13801,
64,
20027,
53,
10860,
64,
47,
5736,
64,
41,
50266,
30,
14821,
1671,
13,
187,
50274,
7941,
48,
2350,
37744,
64,
19093,
64,
2795,
18355,
64,
13801,
64,
20027,
53,
10860,
64,
47,
5736,
64,
34,
50266,
30,
14821,
1229,
13,
187,
50274,
7941,
48,
2350,
37744,
64,
19093,
64,
2795,
18355,
64,
13801,
64,
20027,
53,
10860,
64,
36,
9334,
64,
41,
50266,
30,
14821,
1610,
13,
187,
50274,
7941,
48,
2350,
37744,
64,
19093,
64,
2795,
18355,
64,
13801,
64,
20027,
53,
10860,
64,
36,
9334,
64,
34,
50266,
30,
14821,
1237,
13,
187,
50274,
7941,
48,
2350,
37744,
64,
19093,
64,
2795,
18355,
64,
13801,
64,
20027,
53,
10860,
64,
38,
16594,
64,
41,
50266,
30,
14821,
1812,
13,
187,
50274,
7941,
48,
2350,
37744,
64,
19093,
64,
2795,
18355,
64,
13801,
64,
20027,
53,
10860,
64,
38,
16594,
64,
34,
50266,
30,
14821,
2405,
13,
187,
50274,
7941,
48,
2350,
37744,
64,
19093,
64,
2795,
18355,
64,
13801,
64,
20027,
53,
10860,
64,
49,
16594,
64,
41,
50266,
30,
14821,
1706,
13,
187,
50274,
7941,
48,
2350,
37744,
64,
19093,
64,
2795,
18355,
64,
13801,
64,
20027,
53,
10860,
64,
49,
16594,
64,
34,
50266,
30,
14821,
1717,
13,
187,
50274,
7941,
48,
2350,
37744,
64,
19093,
64,
2795,
18355,
64,
13801,
64,
5626,
64,
53,
4290,
6117,
64,
41,
50265,
30,
14821,
1787,
13,
1380,
10310,
42,
187,
50274,
7941,
48,
2350,
37744,
64,
19093,
64,
2795,
18355,
64,
13801,
64,
5626,
64,
53,
4290,
6117,
64,
34,
50265,
30,
14821,
1839,
13,
1380,
10310,
42,
187,
4718,
187,
187,
2855,
1847,
356,
3814,
2287,
53,
1017,
40331,
187,
92,
187,
50274,
8531,
1237,
15368,
2618,
3074,
5155,
13,
15368,
2618,
24474,
615,
28,
187,
4718,
187,
187,
4659,
1030,
1847,
356,
3814,
2287,
53,
1017,
40331,
32929,
3814,
2287,
53,
1017,
35,
25428,
60,
11779,
64,
13801,
64,
53,
4290,
6117,
62,
426,
187,
92,
187,
50274,
92,
22395,
2293,
64,
38,
28510,
1410,
64,
10327,
64,
45,
1372,
4877,
947,
1139,
64,
5626,
42,
19320,
64,
18,
13,
23012,
2293,
64,
38,
28510,
1410,
64,
10327,
64,
45,
1372,
4877,
947,
1139,
64,
41,
1372,
2573,
64,
18,
2023,
187,
50274,
92,
22395,
2293,
64,
38,
28510,
1410,
64,
10327,
64,
45,
1372,
4877,
947,
1139,
64,
5626,
42,
19320,
64,
19,
13,
23012,
2293,
64,
38,
28510,
1410,
64,
10327,
64,
45,
1372,
4877,
947,
1139,
64,
41,
1372,
2573,
64,
19,
2023,
187,
50274,
92,
22395,
2293,
64,
38,
28510,
1410,
64,
10327,
64,
45,
1372,
4877,
947,
1139,
64,
5626,
42,
19320,
64,
20,
13,
23012,
2293,
64,
38,
28510,
1410,
64,
10327,
64,
45,
1372,
4877,
947,
1139,
64,
41,
1372,
2573,
64,
20,
2023,
187,
50274,
92,
22395,
2293,
64,
38,
28510,
1410,
64,
10327,
64,
45,
1372,
4877,
947,
1139,
64,
5626,
42,
19320,
64,
21,
13,
23012,
2293,
64,
38,
28510,
1410,
64,
10327,
64,
45,
1372,
4877,
947,
1139,
64,
41,
1372,
2573,
64,
21,
94,
187,
4718,
187,
187,
605,
9232,
2792,
11627,
281,
3686,
253,
270,
23217,
187,
4659,
1030,
8253,
32929,
3814,
2287,
53,
1017,
16395,
569,
60,
11779,
64,
13801,
64,
53,
4290,
6117,
7082,
19,
62,
426,
187,
92,
187,
50274,
92,
20,
20895,
15,
2904,
71,
13,
428,
21,
24880,
15,
1812,
71,
2023,
50271,
605,
3729,
5858,
187,
50274,
92,
1093,
1549,
15,
2227,
71,
13,
428,
1787,
2405,
15,
1508,
71,
2023,
50271,
605,
22211,
1251,
86,
472,
187,
50274,
92,
1099,
3566,
15,
3712,
71,
13,
428,
2504,
3953,
15,
2511,
71,
2023,
50271,
605,
5791,
12081,
187,
50274,
92,
1717,
3763,
15,
3677,
71,
13,
428,
1229,
2945,
15,
2405,
71,
94,
50270,
605,
1847,
3611,
5308,
187,
4718,
187,
187,
2855,
1847,
356,
3814,
2287,
53,
1017,
5949,
187,
92,
187,
50274,
8531,
1237,
50276,
8045,
14085,
28,
187,
50274,
25804,
50274,
22035,
28,
187,
50274,
8531,
1237,
50276,
29337,
7474,
28,
187,
50274,
8531,
1237,
50276,
10186,
5443,
28,
187,
4718,
187,
187,
4659,
1030,
1847,
356,
3814,
2287,
53,
1017,
5949,
32929,
3814,
2287,
53,
1017,
24121,
60,
11779,
64,
13801,
64,
53,
4290,
6117,
7082,
21,
62,
426,
187,
92,
187,
50274,
92,
187,
50270,
92,
30212,
64,
38035,
3886,
25692,
64,
20371,
6217,
5479,
64,
5626,
42,
19320,
13,
50273,
5626,
42,
19320,
13,
50275,
7941,
48,
2350,
37744,
64,
19093,
64,
2795,
18355,
64,
13801,
64,
20027,
53,
10860,
64,
47,
5736,
64,
34,
13,
50275,
43046,
9803,
64,
19247,
64,
13801,
64,
38035,
3886,
25692,
64,
5626,
42,
19320,
2023,
187,
50270,
92,
30212,
64,
38035,
3886,
25692,
64,
20371,
6217,
5479,
64,
41,
1372,
2573,
13,
50270,
41,
1372,
2573,
13,
50272,
7941,
48,
2350,
37744,
64,
19093,
64,
2795,
18355,
64,
13801,
64,
20027,
53,
10860,
64,
47,
5736,
64,
41,
13,
50275,
43046,
9803,
64,
19247,
64,
13801,
64,
38035,
3886,
25692,
64,
41,
1372,
2573,
2023,
187,
50270,
92,
30212,
64,
38035,
3886,
25692,
64,
6603,
33660,
1556,
64,
41,
1372,
2573,
13,
50269,
5428,
2300,
64,
32623,
13,
50276,
17,
13,
50254,
50264,
43046,
9803,
64,
19247,
64,
13801,
64,
38035,
3886,
25692,
64,
6603,
33660,
1556,
2023,
187,
50270,
92,
30212,
64,
38035,
3886,
25692,
64,
6603,
33660,
1556,
64,
5626,
42,
19320,
13,
50272,
5428,
2300,
64,
32623,
13,
50276,
17,
13,
50254,
50264,
43046,
9803,
64,
19247,
64,
13801,
64,
38035,
3886,
25692,
64,
6603,
33660,
1556,
2023,
187,
50274,
2023,
187,
50274,
92,
187,
50270,
92,
30212,
64,
1311,
4290,
12770,
54,
10449,
64,
20371,
6217,
5479,
64,
5626,
42,
19320,
13,
50274,
5626,
42,
19320,
13,
50275,
7941,
48,
2350,
37744,
64,
19093,
64,
2795,
18355,
64,
13801,
64,
20027,
53,
10860,
64,
36,
9334,
64,
34,
13,
50275,
43046,
9803,
64,
19247,
64,
13801,
64,
1311,
4290,
12770,
54,
10449,
64,
5626,
42,
19320,
2023,
187,
50270,
92,
30212,
64,
1311,
4290,
12770,
54,
10449,
64,
20371,
6217,
5479,
64,
41,
1372,
2573,
13,
50271,
41,
1372,
2573,
13,
50272,
7941,
48,
2350,
37744,
64,
19093,
64,
2795,
18355,
64,
13801,
64,
20027,
53,
10860,
64,
36,
9334,
64,
41,
13,
50275,
43046,
9803,
64,
19247,
64,
13801,
64,
1311,
4290,
12770,
54,
10449,
64,
41,
1372,
2573,
2023,
187,
50270,
92,
30212,
64,
1311,
4290,
12770,
54,
10449,
64,
6603,
33660,
1556,
64,
41,
1372,
2573,
13,
50270,
5428,
2300,
64,
32623,
13,
50276,
17,
13,
50254,
50264,
43046,
9803,
64,
19247,
64,
13801,
64,
1311,
4290,
12770,
54,
10449,
64,
6603,
33660,
1556,
2023,
187,
50270,
92,
30212,
64,
1311,
4290,
12770,
54,
10449,
64,
6603,
33660,
1556,
64,
5626,
42,
19320,
13,
50273,
5428,
2300,
64,
32623,
13,
50276,
17,
13,
50254,
50264,
43046,
9803,
64,
19247,
64,
13801,
64,
1311,
4290,
12770,
54,
10449,
64,
6603,
33660,
1556,
2023,
187,
50274,
2023,
187,
50274,
92,
187,
50270,
92,
30212,
64,
38,
17643,
56,
5626,
64,
20371,
6217,
5479,
64,
5626,
42,
19320,
13,
50272,
5626,
42,
19320,
13,
50275,
7941,
48,
2350,
37744,
64,
19093,
64,
2795,
18355,
64,
13801,
64,
20027,
53,
10860,
64,
38,
16594,
64,
34,
13,
50275,
43046,
9803,
64,
19247,
64,
13801,
64,
38,
17643,
56,
5626,
64,
5626,
42,
19320,
2023,
187,
50270,
92,
30212,
64,
38,
17643,
56,
5626,
64,
20371,
6217,
5479,
64,
41,
1372,
2573,
13,
50269,
41,
1372,
2573,
13,
50272,
7941,
48,
2350,
37744,
64,
19093,
64,
2795,
18355,
64,
13801,
64,
20027,
53,
10860,
64,
38,
16594,
64,
41,
13,
50275,
43046,
9803,
64,
19247,
64,
13801,
64,
38,
17643,
56,
5626,
64,
41,
1372,
2573,
2023,
187,
50270,
92,
30212,
64,
38,
17643,
56,
5626,
64,
6603,
33660,
1556,
64,
41,
1372,
2573,
13,
50268,
5428,
2300,
64,
32623,
13,
50276,
17,
13,
50254,
50264,
43046,
9803,
64,
19247,
64,
13801,
64,
38,
17643,
56,
5626,
64,
6603,
33660,
1556,
2023,
187,
50270,
92,
30212,
64,
38,
17643,
56,
5626,
64,
6603,
33660,
1556,
64,
5626,
42,
19320,
13,
50271,
5428,
2300,
64,
32623,
13,
50276,
17,
13,
50254,
50264,
43046,
9803,
64,
19247,
64,
13801,
64,
38,
17643,
56,
5626,
64,
6603,
33660,
1556,
2023,
187,
50274,
2023,
187,
50274,
92,
187,
50270,
92,
30212,
64,
3859,
2696,
6028,
20293,
3519,
64,
20371,
6217,
5479,
64,
5626,
42,
19320,
13,
50274,
5626,
42,
19320,
13,
50275,
7941,
48,
2350,
37744,
64,
19093,
64,
2795,
18355,
64,
13801,
64,
20027,
53,
10860,
64,
49,
16594,
64,
34,
13,
50275,
43046,
9803,
64,
19247,
64,
13801,
64,
3859,
2696,
6028,
20293,
3519,
64,
5626,
42,
19320,
2023,
187,
50270,
92,
30212,
64,
3859,
2696,
6028,
20293,
3519,
64,
20371,
6217,
5479,
64,
41,
1372,
2573,
13,
50271,
41,
1372,
2573,
13,
50272,
7941,
48,
2350,
37744,
64,
19093,
64,
2795,
18355,
64,
13801,
64,
20027,
53,
10860,
64,
49,
16594,
64,
41,
13,
50275,
43046,
9803,
64,
19247,
64,
13801,
64,
3859,
2696,
6028,
20293,
3519,
64,
41,
1372,
2573,
2023,
187,
50270,
92,
30212,
64,
3859,
2696,
6028,
20293,
3519,
64,
6603,
33660,
1556,
64,
41,
1372,
2573,
13,
50270,
5428,
2300,
64,
32623,
13,
50276,
17,
13,
50254,
50264,
43046,
9803,
64,
19247,
64,
13801,
64,
3859,
2696,
6028,
20293,
3519,
64,
6603,
33660,
1556,
2023,
187,
50270,
92,
30212,
64,
3859,
2696,
6028,
20293,
3519,
64,
6603,
33660,
1556,
64,
5626,
42,
19320,
13,
50273,
5428,
2300,
64,
32623,
13,
50276,
17,
13,
50254,
50264,
43046,
9803,
64,
19247,
64,
13801,
64,
3859,
2696,
6028,
20293,
3519,
64,
6603,
33660,
1556,
2023,
187,
50274,
2023,
187,
4718,
187,
187,
4659,
1030,
4770,
1237,
32929,
3814,
2287,
35,
23217,
60,
11779,
64,
13801,
64,
53,
4290,
6117,
62,
426,
551,
10993,
64,
53,
27306,
64,
35,
1539,
21598,
64,
38035,
3886,
25692,
13,
11488,
64,
53,
27306,
64,
35,
1539,
21598,
64,
1311,
4290,
12770,
54,
10449,
13,
11488,
64,
53,
27306,
64,
35,
1539,
21598,
64,
38,
17643,
56,
5626,
13,
11488,
64,
53,
27306,
64,
35,
1539,
21598,
64,
3859,
2696,
6028,
20293,
3519,
4718,
187,
187,
2437,
6282,
11806,
49,
87,
3246,
49,
1163,
1345,
6282,
11806,
49,
87,
49,
187,
92,
187,
50274,
4387,
27,
187,
50270,
5677,
11806,
49,
87,
3246,
49,
1874,
535,
50270,
4353,
34107,
19998,
15886,
30989,
9,
19998,
11,
4760,
13,
7301,
310,
13030,
30989,
10,
12970,
28,
187,
50270,
4353,
34107,
19998,
30359,
30989,
9,
19998,
11,
4760,
13,
7301,
310,
13030,
30989,
10,
12970,
28,
187,
50270,
4353,
36529,
23527,
14947,
27121,
9,
14947,
33812,
7,
941,
13,
4770,
1237,
7,
1385,
10,
12970,
28,
187,
50270,
4353,
23934,
21605,
14947,
27121,
9,
19998,
11,
4760,
10,
12970,
28,
535,
50270,
10975,
34107,
5949,
9,
8531,
1237,
2362,
2618,
13,
10850,
4241,
11,
564,
13,
16062,
11,
828,
14065,
10,
12970,
28,
187,
50270,
4353,
34107,
4241,
422,
26626,
9,
8531,
1237,
2362,
2618,
13,
1030,
20929,
2765,
7,
3773,
13,
10589,
2285,
10,
12970,
28,
535,
50270,
4353,
34107,
21164,
459,
9395,
9,
21164,
459,
11,
15906,
10,
12970,
28,
187,
50270,
4353,
34107,
18237,
4241,
9395,
9,
18237,
4241,
11,
564,
10,
12970,
28,
187,
50270,
10975,
34107,
18237,
4241,
11244,
9,
19998,
11,
4760,
13,
10850,
4241,
11,
564,
10,
12970,
28,
535,
50274,
9486,
27,
187,
50270,
605,
1232,
9232,
3394,
187,
50270,
10975,
12639,
41891,
5949,
9,
18237,
4241,
11,
564,
13,
4770,
1237,
15469,
2618,
13,
10589,
2285,
13,
4770,
1237,
747,
14947,
5443,
558,
535,
50270,
4353,
10813,
35,
9582,
9,
18237,
4241,
11,
564,
13,
4770,
1237,
15469,
2618,
558,
535,
50270,
605,
1847,
3611,
5308,
17301,
428,
8630,
6303,
187,
50270,
4353,
914,
2204,
2163,
39,
3243,
20133,
9,
3474,
3645,
4241,
11,
10928,
7676,
558,
187,
50270,
605,
5791,
12081,
17301,
428,
9647,
187,
50270,
4353,
914,
2204,
2163,
52,
744,
4670,
9,
3474,
3645,
4241,
11,
10928,
7676,
558,
535,
50270,
25804,
278,
64,
85,
1017,
36762,
60,
11779,
64,
13801,
64,
53,
4290,
6117,
2194,
187,
50270,
8531,
1237,
278,
64,
85,
1017,
14947,
5443,
60,
11779,
64,
13801,
64,
53,
4290,
6117,
2194,
187,
50270,
8531,
25,
278,
64,
32289,
398,
3074,
5155,
28,
187,
50270,
8531,
25,
278,
64,
32289,
398,
24474,
615,
28,
535,
50270,
4241,
38895,
278,
64,
31045,
20133,
28,
187,
50270,
4241,
38895,
278,
64,
20305,
66,
16259,
2809,
7920,
3074,
5155,
28,
187,
50270,
4241,
38895,
278,
64,
20305,
66,
16259,
2809,
7920,
24474,
615,
28,
535,
50270,
38895,
2765,
278,
64,
42022,
4670,
28,
535,
50270,
38895,
2765,
278,
64,
85,
1017,
35,
23217,
60,
11779,
64,
13801,
64,
53,
4290,
6117,
2194,
187,
4718,
187,
187,
4,
7287,
187
] | /*
* This file is part of the CMaNGOS Project. See AUTHORS file for Copyright information
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef WORLD_PVP_EP
#define WORLD_PVP_EP
#include "Common.h"
#include "OutdoorPvP.h"
#include "Tools/Language.h"
#include "World/WorldStateDefines.h"
enum
{
TOWER_ID_NORTHPASS = 0,
TOWER_ID_CROWNGUARD = 1,
TOWER_ID_EASTWALL = 2,
TOWER_ID_PLAGUEWOOD = 3,
MAX_EP_TOWERS = 4,
// spells
SPELL_ECHOES_OF_LORDAERON_ALLIANCE_1 = 11413,
SPELL_ECHOES_OF_LORDAERON_ALLIANCE_2 = 11414,
SPELL_ECHOES_OF_LORDAERON_ALLIANCE_3 = 11415,
SPELL_ECHOES_OF_LORDAERON_ALLIANCE_4 = 1386,
SPELL_ECHOES_OF_LORDAERON_HORDE_1 = 30880,
SPELL_ECHOES_OF_LORDAERON_HORDE_2 = 30683,
SPELL_ECHOES_OF_LORDAERON_HORDE_3 = 30682,
SPELL_ECHOES_OF_LORDAERON_HORDE_4 = 29520,
// graveyards
GRAVEYARD_ZONE_EASTERN_PLAGUE = 139,
GRAVEYARD_ID_EASTERN_PLAGUE = 927,
// misc
HONOR_REWARD_PLAGUELANDS = 18,
// npcs
NPC_SPECTRAL_FLIGHT_MASTER = 17209,
// flight master factions
FACTION_FLIGHT_MASTER_ALLIANCE = 774,
FACTION_FLIGHT_MASTER_HORDE = 775,
SPELL_SPIRIT_PARTICLES_BLUE = 17327,
SPELL_SPIRIT_PARTICLES_RED = 31309,
// quest
NPC_CROWNGUARD_TOWER_QUEST_DOODAD = 17689,
NPC_EASTWALL_TOWER_QUEST_DOODAD = 17690,
NPC_NORTHPASS_TOWER_QUEST_DOODAD = 17696,
NPC_PLAGUEWOOD_TOWER_QUEST_DOODAD = 17698,
// alliance
NPC_LORDAERON_COMMANDER = 17635,
NPC_LORDAERON_SOLDIER = 17647,
// horde
NPC_LORDAERON_VETERAN = 17995,
NPC_LORDAERON_FIGHTER = 17996,
// gameobjects
GO_LORDAERON_SHRINE_ALLIANCE = 181682,
GO_LORDAERON_SHRINE_HORDE = 181955,
GO_TOWER_FLAG = 182106,
// possible shrine auras - not used
//GO_ALLIANCE_BANNER_AURA = 180100,
//GO_HORDE_BANNER_AURA = 180101,
// capture points
GO_TOWER_BANNER_NORTHPASS = 181899,
GO_TOWER_BANNER_CROWNGUARD = 182096,
GO_TOWER_BANNER_EASTWALL = 182097,
GO_TOWER_BANNER_PLAGUEWOOD = 182098,
GO_TOWER_BANNER = 182106, // tower banners around
// events
//EVENT_NORTHPASS_WIN_ALLIANCE = 10568,
//EVENT_NORTHPASS_WIN_HORDE = 10556,
//EVENT_NORTHPASS_CONTEST_ALLIANCE = 10697,
//EVENT_NORTHPASS_CONTEST_HORDE = 10696,
EVENT_NORTHPASS_PROGRESS_ALLIANCE = 10699,
EVENT_NORTHPASS_PROGRESS_HORDE = 10698,
EVENT_NORTHPASS_NEUTRAL_ALLIANCE = 11151,
EVENT_NORTHPASS_NEUTRAL_HORDE = 11150,
//EVENT_CROWNGUARD_WIN_ALLIANCE = 10570,
//EVENT_CROWNGUARD_WIN_HORDE = 10566,
//EVENT_CROWNGUARD_CONTEST_ALLIANCE = 10703,
//EVENT_CROWNGUARD_CONTEST_HORDE = 10702,
EVENT_CROWNGUARD_PROGRESS_ALLIANCE = 10705,
EVENT_CROWNGUARD_PROGRESS_HORDE = 10704,
EVENT_CROWNGUARD_NEUTRAL_ALLIANCE = 11155,
EVENT_CROWNGUARD_NEUTRAL_HORDE = 11154,
//EVENT_EASTWALL_WIN_ALLIANCE = 10569,
//EVENT_EASTWALL_WIN_HORDE = 10565,
//EVENT_EASTWALL_CONTEST_ALLIANCE = 10689,
//EVENT_EASTWALL_CONTEST_HORDE = 10690,
EVENT_EASTWALL_PROGRESS_ALLIANCE = 10691,
EVENT_EASTWALL_PROGRESS_HORDE = 10692,
EVENT_EASTWALL_NEUTRAL_ALLIANCE = 11149,
EVENT_EASTWALL_NEUTRAL_HORDE = 11148,
//EVENT_PLAGUEWOOD_WIN_ALLIANCE = 10567,
//EVENT_PLAGUEWOOD_WIN_HORDE = 10564,
//EVENT_PLAGUEWOOD_CONTEST_ALLIANCE = 10687,
//EVENT_PLAGUEWOOD_CONTEST_HORDE = 10688,
EVENT_PLAGUEWOOD_PROGRESS_ALLIANCE = 10701,
EVENT_PLAGUEWOOD_PROGRESS_HORDE = 10700,
EVENT_PLAGUEWOOD_NEUTRAL_ALLIANCE = 11153,
EVENT_PLAGUEWOOD_NEUTRAL_HORDE = 11152,
BROADCAST_TEXT_OPVP_EP_CAPTURE_NPT_H = 13635,
BROADCAST_TEXT_OPVP_EP_CAPTURE_NPT_A = 13630,
BROADCAST_TEXT_OPVP_EP_CAPTURE_CGT_H = 13633,
BROADCAST_TEXT_OPVP_EP_CAPTURE_CGT_A = 13632,
BROADCAST_TEXT_OPVP_EP_CAPTURE_EWT_H = 13636,
BROADCAST_TEXT_OPVP_EP_CAPTURE_EWT_A = 13631,
BROADCAST_TEXT_OPVP_EP_CAPTURE_PWT_H = 13634,
BROADCAST_TEXT_OPVP_EP_CAPTURE_PWT_A = 13629,
BROADCAST_TEXT_OPVP_EP_ALL_TOWERS_H = 13637, // NYI
BROADCAST_TEXT_OPVP_EP_ALL_TOWERS_A = 13638, // NYI
};
struct PlaguelandsTowerBuff
{
uint32 spellIdAlliance, spellIdHorde;
};
static const PlaguelandsTowerBuff plaguelandsTowerBuffs[MAX_EP_TOWERS] =
{
{SPELL_ECHOES_OF_LORDAERON_ALLIANCE_1, SPELL_ECHOES_OF_LORDAERON_HORDE_1},
{SPELL_ECHOES_OF_LORDAERON_ALLIANCE_2, SPELL_ECHOES_OF_LORDAERON_HORDE_2},
{SPELL_ECHOES_OF_LORDAERON_ALLIANCE_3, SPELL_ECHOES_OF_LORDAERON_HORDE_3},
{SPELL_ECHOES_OF_LORDAERON_ALLIANCE_4, SPELL_ECHOES_OF_LORDAERON_HORDE_4}
};
// capture points coordinates to sort the banners
static const float plaguelandsTowerLocations[MAX_EP_TOWERS][2] =
{
{3181.08f, -4379.36f}, // Northpass
{1860.85f, -3731.23f}, // Crownguard
{2574.51f, -4794.89f}, // Eastwall
{2962.71f, -3042.31f} // Plaguewood
};
struct PlaguelandsTowerEvent
{
uint32 eventEntry;
Team team;
uint32 defenseMessage;
uint32 worldState;
};
static const PlaguelandsTowerEvent plaguelandsTowerEvents[MAX_EP_TOWERS][4] =
{
{
{EVENT_NORTHPASS_PROGRESS_ALLIANCE, ALLIANCE, BROADCAST_TEXT_OPVP_EP_CAPTURE_NPT_A, WORLD_STATE_EP_NORTHPASS_ALLIANCE},
{EVENT_NORTHPASS_PROGRESS_HORDE, HORDE, BROADCAST_TEXT_OPVP_EP_CAPTURE_NPT_H, WORLD_STATE_EP_NORTHPASS_HORDE},
{EVENT_NORTHPASS_NEUTRAL_HORDE, TEAM_NONE, 0, WORLD_STATE_EP_NORTHPASS_NEUTRAL},
{EVENT_NORTHPASS_NEUTRAL_ALLIANCE, TEAM_NONE, 0, WORLD_STATE_EP_NORTHPASS_NEUTRAL},
},
{
{EVENT_CROWNGUARD_PROGRESS_ALLIANCE, ALLIANCE, BROADCAST_TEXT_OPVP_EP_CAPTURE_CGT_A, WORLD_STATE_EP_CROWNGUARD_ALLIANCE},
{EVENT_CROWNGUARD_PROGRESS_HORDE, HORDE, BROADCAST_TEXT_OPVP_EP_CAPTURE_CGT_H, WORLD_STATE_EP_CROWNGUARD_HORDE},
{EVENT_CROWNGUARD_NEUTRAL_HORDE, TEAM_NONE, 0, WORLD_STATE_EP_CROWNGUARD_NEUTRAL},
{EVENT_CROWNGUARD_NEUTRAL_ALLIANCE, TEAM_NONE, 0, WORLD_STATE_EP_CROWNGUARD_NEUTRAL},
},
{
{EVENT_EASTWALL_PROGRESS_ALLIANCE, ALLIANCE, BROADCAST_TEXT_OPVP_EP_CAPTURE_EWT_A, WORLD_STATE_EP_EASTWALL_ALLIANCE},
{EVENT_EASTWALL_PROGRESS_HORDE, HORDE, BROADCAST_TEXT_OPVP_EP_CAPTURE_EWT_H, WORLD_STATE_EP_EASTWALL_HORDE},
{EVENT_EASTWALL_NEUTRAL_HORDE, TEAM_NONE, 0, WORLD_STATE_EP_EASTWALL_NEUTRAL},
{EVENT_EASTWALL_NEUTRAL_ALLIANCE, TEAM_NONE, 0, WORLD_STATE_EP_EASTWALL_NEUTRAL},
},
{
{EVENT_PLAGUEWOOD_PROGRESS_ALLIANCE, ALLIANCE, BROADCAST_TEXT_OPVP_EP_CAPTURE_PWT_A, WORLD_STATE_EP_PLAGUEWOOD_ALLIANCE},
{EVENT_PLAGUEWOOD_PROGRESS_HORDE, HORDE, BROADCAST_TEXT_OPVP_EP_CAPTURE_PWT_H, WORLD_STATE_EP_PLAGUEWOOD_HORDE},
{EVENT_PLAGUEWOOD_NEUTRAL_HORDE, TEAM_NONE, 0, WORLD_STATE_EP_PLAGUEWOOD_NEUTRAL},
{EVENT_PLAGUEWOOD_NEUTRAL_ALLIANCE, TEAM_NONE, 0, WORLD_STATE_EP_PLAGUEWOOD_NEUTRAL},
},
};
static const uint32 plaguelandsBanners[MAX_EP_TOWERS] = {GO_TOWER_BANNER_NORTHPASS, GO_TOWER_BANNER_CROWNGUARD, GO_TOWER_BANNER_EASTWALL, GO_TOWER_BANNER_PLAGUEWOOD};
class OutdoorPvPEP : public OutdoorPvP
{
public:
OutdoorPvPEP();
void HandlePlayerEnterZone(Player* player, bool isMainZone) override;
void HandlePlayerLeaveZone(Player* player, bool isMainZone) override;
void FillInitialWorldStates(WorldPacket& data, uint32& count) override;
void SendRemoveWorldStates(Player* player) override;
bool HandleEvent(uint32 eventId, GameObject* go, Unit* invoker) override;
void HandleObjectiveComplete(uint32 eventId, const PlayerList& players, Team team) override;
void HandleCreatureCreate(Creature* creature) override;
void HandleGameObjectCreate(GameObject* go) override;
bool HandleGameObjectUse(Player* player, GameObject* go) override;
private:
// process capture events
bool ProcessCaptureEvent(GameObject* go, uint32 towerId, Team team, uint32 newWorldState);
void InitBanner(GameObject* go, uint32 towerId);
// Plaguewood bonus - flight master
void UnsummonFlightMaster(const WorldObject* objRef);
// Eastwall bonus - soldiers
void UnsummonSoldiers(const WorldObject* objRef);
Team m_towerOwner[MAX_EP_TOWERS];
uint32 m_towerWorldState[MAX_EP_TOWERS];
uint8 m_towersAlliance;
uint8 m_towersHorde;
ObjectGuid m_flightMaster;
ObjectGuid m_lordaeronShrineAlliance;
ObjectGuid m_lordaeronShrineHorde;
GuidList m_soldiers;
GuidList m_towerBanners[MAX_EP_TOWERS];
};
#endif
|
214,488 | Github | [
30952,
32735,
11685,
35283,
19479,
605,
56,
20,
36,
605,
41375,
11685,
577,
15,
520,
4480,
16097,
605,
1400,
3,
346,
2413,
1358,
2700,
15,
88,
20,
15,
2061,
16,
3125,
16,
2974,
21,
16,
4213,
583,
15,
48328,
1138,
187,
14219,
4257,
10099,
22158,
187,
29,
15597,
31,
187,
29,
22225,
31,
187,
14219,
41415,
407,
19199,
44180,
313,
7973,
337,
15,
23,
15,
17,
64,
2405,
10,
327,
4200,
2552,
1638,
1283,
27,
1857,
27,
2537,
46502,
4050,
6781,
187,
29,
28723,
34,
3944,
14,
8275,
568,
8590,
14,
2548,
3,
2600,
568,
1156,
16,
2974,
28,
29308,
30,
18441,
14,
25,
1138,
187,
29,
53,
43561,
31,
187,
19117,
6542,
12038,
313,
36340,
14,
6443,
374,
15,
17,
15,
19,
8990,
10,
187,
870,
53,
43561,
31,
187,
187,
29,
28723,
34,
34487,
568,
2754,
3,
34523,
3489,
568,
6755,
14,
1762,
14,
1047,
1138,
187,
187,
29,
26679,
37954,
426,
3,
23745,
3,
39024,
568,
1156,
16,
9016,
3,
29321,
31779,
23745,
15,
9016,
3,
308,
43561,
568,
11446,
1138,
187,
187,
29,
52,
22068,
1511,
568,
1156,
16,
14606,
1138,
187,
3701,
3497,
13408,
1082,
187,
92,
187,
50274,
338,
313,
12428,
15,
27616,
15,
33966,
2073,
261,
14,
22108,
30,
5672,
3401,
2295,
428,
18,
10,
551,
187,
50270,
5598,
15,
3306,
15,
5564,
568,
19117,
6542,
12038,
313,
36340,
14,
6443,
374,
15,
17,
15,
19,
8990,
10,
3664,
187,
50274,
94,
187,
94,
187,
870,
52,
22068,
31,
187,
29,
22398,
22068,
31,
187,
870,
22398,
22068,
31,
187,
187,
870,
22225,
31,
187,
187,
29,
35,
35867,
49249,
568,
11300,
3,
327,
2799,
568,
13686,
13408,
1874,
1138,
187,
29,
9914,
31,
535,
187,
14219,
209,
33197,
36694,
3481,
16087,
49412,
31762,
209,
6877,
6781,
187,
29,
34,
34487,
568,
22789,
64,
3956,
5264,
8145,
1969,
3073,
34,
31,
187,
29,
34,
29321,
10817,
19259,
14,
22789,
64,
3956,
3,
4060,
568,
38241,
15034,
4859,
6750,
34,
31,
187,
29,
24608,
378,
24066,
568,
17,
3,
411,
24282,
568,
2313,
28764,
7956,
2293,
49,
19873,
2637,
568,
18,
3,
7956,
2293,
4350,
1934,
2637,
568,
17,
3,
44926,
37387,
187,
29,
3125,
31,
187,
29,
10989,
21849,
4350,
1539,
30,
19,
49249,
10817,
48919,
3269,
3,
28085,
568,
47296,
10772,
18,
1138,
187,
29,
34,
34487,
568,
22789,
64,
3956,
64,
7053,
736,
5264,
8145,
1969,
3073,
34,
31,
187,
29,
24608,
378,
24066,
568,
17,
3,
7956,
2293,
49,
19873,
2637,
568,
17,
3,
7956,
2293,
4350,
1934,
2637,
568,
20,
3,
44926,
37387,
187,
50276,
29,
3125,
6589,
13003,
568,
9229,
3,
15527,
13003,
568,
3956,
1138,
187,
50276,
29,
10989,
49249,
10817,
48919,
3269,
3,
28085,
568,
47296,
10772,
18,
1138,
50274,
29,
34,
29321,
31779,
39930,
14,
8774,
15,
2974,
5264,
23758,
28085,
568,
47296,
16976,
18,
5264,
35,
31,
35067,
870,
35,
3073,
23758,
3073,
34,
12399,
6732,
13143,
10989,
31,
187,
50276,
29,
10989,
49249,
10817,
48919,
3269,
3,
28085,
568,
47296,
10772,
18,
1138,
50274,
29,
34,
29321,
568,
10708,
14,
8774,
15,
2974,
5264,
23758,
28085,
568,
47296,
16976,
18,
5264,
35,
31,
22113,
870,
35,
3073,
23758,
3073,
34,
12399,
6732,
13143,
10989,
31,
187,
50276,
29,
10989,
49249,
10817,
15651,
3269,
3,
28085,
568,
47296,
10772,
18,
7498,
1138,
708,
6732,
26077,
23758,
28085,
568,
47296,
16976,
18,
7498,
5264,
35,
31,
4947,
870,
35,
3073,
23758,
12399,
6732,
13143,
10989,
31,
187,
50276,
29,
10989,
49249,
10817,
48919,
3269,
3,
28085,
568,
47296,
10772,
18,
1138,
50274,
29,
34,
29321,
568,
2437,
14,
2327,
16,
19117,
6542,
12038,
15,
2974,
5264,
23758,
28085,
568,
47296,
16976,
18,
5264,
35,
31,
11244,
870,
35,
3073,
23758,
3073,
34,
12399,
6732,
13143,
10989,
31,
187,
50276,
29,
10989,
49249,
10817,
48919,
3269,
3,
28085,
568,
47296,
10772,
18,
1138,
50274,
29,
34,
29321,
568,
10708,
14,
12588,
15,
2974,
5264,
23758,
28085,
568,
47296,
16976,
18,
5264,
35,
31,
14444,
870,
35,
3073,
23758,
3073,
34,
12399,
6732,
13143,
10989,
31,
187,
50276,
29,
10989,
49249,
10817,
48919,
3269,
3,
28085,
568,
47296,
10772,
18,
1138,
50274,
29,
34,
29321,
31779,
7955,
18115,
14,
3550,
15,
2974,
5264,
23758,
28085,
568,
47296,
16976,
18,
5264,
35,
31,
39473,
870,
35,
3073,
23758,
3073,
34,
12399,
6732,
13143,
10989,
31,
187,
50276,
29,
10989,
49249,
10817,
48919,
3269,
3,
28085,
568,
47296,
10772,
18,
1138,
50274,
29,
34,
29321,
31779,
4663,
14,
455,
15,
2974,
5264,
23758,
28085,
568,
47296,
16976,
18,
5264,
35,
31,
6060,
870,
35,
3073,
23758,
3073,
34,
12399,
6732,
13143,
10989,
31,
187,
50276,
29,
10989,
49249,
10817,
48919,
3269,
3,
28085,
568,
47296,
10772,
18,
1138,
50274,
29,
34,
29321,
31779,
13070,
14,
7152,
15,
2974,
5264,
23758,
28085,
568,
47296,
16976,
18,
5264,
35,
31,
19576,
870,
35,
3073,
23758,
3073,
34,
12399,
6732,
13143,
10989,
31,
187,
50276,
870,
3125,
31,
187,
870,
24608,
31,
187,
870,
10989,
31,
187,
29,
10989,
6589,
13003,
568,
918,
3,
15527,
13003,
568,
3956,
3,
416,
4290,
4350,
1539,
30,
20,
2730,
3866,
1511,
568,
1156,
16,
14606,
5264,
8145,
187,
9906,
64,
324,
64,
8780,
426,
346,
16712,
14,
1047,
2251,
2357,
1812,
4148,
36176,
32381,
3664,
187,
3122,
9857,
14,
324,
14,
6795,
1738,
187,
9906,
64,
324,
64,
31873,
426,
346,
2526,
1525,
2385,
2787,
2950,
3664,
187,
9906,
64,
324,
64,
3429,
426,
27812,
28,
187,
9906,
64,
324,
64,
7436,
426,
3925,
28,
187,
605,
22158,
187,
870,
3866,
31,
187,
29,
3866,
1511,
568,
1156,
16,
14606,
3,
187,
7614,
568,
2413,
1358,
6377,
324,
19,
15,
48031,
868,
1362,
69,
8518,
15,
681,
16,
6377,
324,
16,
9029,
64,
6594,
15,
4305,
1138,
187,
870,
3866,
31,
187,
870,
10989,
31,
187,
870,
3125,
31,
187,
187,
29,
3125,
31,
187,
29,
10989,
49249,
568,
11300,
3,
28085,
568,
47296,
10772,
19,
5264,
23758,
36124,
24539,
19,
1138,
187,
7,
6732,
26077,
34,
29321,
31779,
681,
16,
29762,
16,
26318,
16,
6443,
16,
8906,
16,
10644,
6116,
42447,
15,
8662,
10644,
2548,
15,
2974,
3,
4060,
568,
14379,
275,
389,
15,
29762,
15,
26318,
15,
6443,
15,
8906,
5264,
35,
31,
14364,
55,
28085,
870,
35,
3073,
34,
12399,
6732,
28,
187,
7,
6732,
26077,
34,
29321,
31779,
681,
16,
29762,
16,
26318,
16,
6443,
16,
8906,
16,
9671,
41774,
6140,
2388,
15,
2974,
3,
4060,
568,
2437,
275,
389,
15,
29762,
15,
26318,
15,
6443,
15,
8906,
5264,
35,
31,
30425,
28085,
870,
35,
3073,
34,
3073,
23758,
3073,
10989,
31,
187,
29,
10989,
49249,
568,
11300,
3,
28085,
568,
47296,
10772,
19,
5264,
23758,
36124,
24539,
19,
1138,
187,
50276,
29,
34,
29321,
31779,
4663,
15,
2974,
32,
681,
16,
29762,
16,
26318,
16,
6443,
16,
8906,
16,
19117,
6542,
12038,
15,
2974,
3,
2303,
23604,
3956,
5264,
35,
31,
6764,
37743,
870,
35,
3073,
34,
31,
50276,
7,
6732,
28,
187,
7,
6732,
26077,
34,
29321,
568,
19117,
6542,
12038,
15,
2974,
3,
2303,
23604,
3956,
5264,
35,
31,
7716,
7499,
37743,
870,
35,
3073,
34,
31,
50276,
7,
6732,
28,
187,
7,
6732,
26077,
52,
22068,
1511,
568,
1156,
16,
14606,
1138,
187,
50276,
14219,
187,
50276,
338,
9,
13686,
381,
3956,
10,
551,
187,
50274,
3306,
15,
8510,
33332,
45635,
34,
29321,
31779,
455,
19770,
14,
2369,
6301,
15,
2974,
5264,
35,
31,
3074,
45227,
870,
35,
3073,
34,
31,
5137,
187,
50276,
94,
187,
50276,
605,
22158,
187,
870,
52,
22068,
31,
187,
29,
22398,
22068,
31,
187,
50276,
29,
34,
29321,
31779,
455,
19770,
14,
2369,
6301,
15,
2974,
5264,
35,
31,
3074,
45227,
870,
35,
3073,
34,
31,
187,
870,
22398,
22068,
31,
535,
187,
870,
23758,
3073,
10989,
31,
187,
870,
3125,
31,
187,
29,
3125,
31,
187,
29,
10989,
15527,
13003,
568,
3956,
3,
28085,
568,
47296,
10772,
20,
5264,
23758,
36124,
24539,
19,
1138,
187,
50276,
35111,
32944,
44662,
6732,
28,
6603,
1267,
1703,
7,
6732,
45599,
7,
6732,
28,
32704,
7,
6732,
45599,
7,
6732,
26077,
34,
29321,
10817,
36073,
64,
8774,
1138,
5707,
9639,
870,
34,
12399,
6732,
45599,
7,
6732,
26077,
34,
29321,
10817,
9349,
64,
8774,
1138,
32781,
870,
34,
3073,
23758,
3073,
10989,
31,
187,
29,
10989,
15527,
13003,
568,
3956,
3,
28085,
568,
47296,
10772,
20,
5264,
23758,
36124,
24539,
19,
1138,
187,
35468,
22823,
44662,
6732,
28,
32704,
7,
6732,
45599,
7,
6732,
26077,
34,
29321,
10817,
36073,
64,
20119,
1138,
5707,
9639,
870,
34,
12399,
6732,
45599,
7,
6732,
26077,
34,
29321,
10817,
9349,
64,
20119,
1138,
32781,
870,
34,
3073,
23758,
3073,
10989,
31,
187,
870,
3125,
31,
187,
870,
24608,
31,
187,
29,
34,
34487,
568,
19259,
14,
22789,
64,
3956,
6750,
34,
31,
187,
14219,
209,
33197,
19691,
3481,
16087,
49412,
31762,
209,
33197,
6781,
187,
187,
29,
9914,
31,
187,
14219,
209,
822,
36694,
3481,
28085,
27809,
209,
822,
6781,
187,
29,
41,
19,
31,
187,
29,
23758,
36124,
24539,
18,
1138,
187,
681,
15,
29762,
15,
26318,
15,
6443,
15,
8906,
870,
23758,
31,
187,
29,
7941,
31,
187,
4947,
24128,
6542,
12038,
870,
41,
19,
31,
187,
29,
14364,
31,
187,
29,
34,
29321,
568,
2413,
1358,
13880,
15,
32532,
15,
681,
16,
50024,
16,
23,
16,
13880,
16,
6682,
16,
5594,
16,
8700,
16,
4241,
15,
2974,
32,
261,
14,
22108,
30,
5672,
3,
4060,
568,
2437,
390,
5673,
275,
7626,
15,
8700,
1138,
5594,
15,
8700,
15,
4241,
870,
34,
31,
187,
50276,
29,
2894,
40,
12938,
36,
31779,
21830,
16,
45990,
15,
23200,
3,
39346,
568,
43315,
407,
346,
2730,
34,
29321,
568,
2413,
1358,
13880,
15,
32532,
15,
681,
16,
50024,
16,
23,
16,
13880,
16,
6682,
16,
5594,
16,
900,
16,
35722,
15,
2974,
32,
261,
14,
22108,
30,
5672,
3,
4060,
568,
2437,
390,
5673,
275,
7626,
15,
900,
1138,
5594,
15,
900,
15,
35722,
870,
34,
31,
187,
50272,
29,
2894,
40,
12938,
36,
31779,
21830,
16,
45990,
15,
23200,
3,
39346,
568,
43315,
407,
346,
2730,
35,
31,
681,
15,
29762,
15,
26318,
15,
6443,
15,
8906,
15,
19117,
6542,
12038,
870,
35,
31,
187,
870,
14364,
31,
187,
29,
6721,
31,
187,
29,
15580,
2730,
35,
31,
3074,
3173,
38758,
5383,
6511,
19282,
35,
31,
654,
11927,
2730,
34,
29321,
568,
2413,
1358,
13880,
15,
32532,
15,
681,
16,
50024,
16,
23,
16,
13880,
16,
6682,
16,
5594,
16,
900,
16,
17667,
494,
15,
2974,
32,
261,
14,
22108,
30,
5672,
3,
4060,
568,
2437,
390,
5673,
275,
7626,
15,
900,
1138,
17667,
494,
870,
34,
9983,
654,
34,
29321,
568,
2413,
1358,
13880,
15,
32532,
15,
681,
16,
50024,
16,
23,
16,
13880,
16,
6682,
16,
5594,
16,
900,
16,
6623,
2345,
494,
15,
2974,
32,
261,
14,
22108,
30,
5672,
3,
4060,
568,
2437,
390,
5673,
275,
7626,
15,
900,
1138,
6623,
2345,
494,
870,
34,
3073,
11927,
31,
187,
870,
6721,
31,
187,
29,
9914,
31,
187,
29,
6721,
31,
187,
29,
15580,
2730,
14364,
31,
4387,
2457,
966,
654,
35,
31,
19117,
6542,
12038,
870,
35,
2730,
15580,
31,
2068,
1727,
654,
34,
29321,
568,
2413,
1358,
13880,
15,
32532,
15,
681,
16,
50024,
16,
23,
16,
13880,
16,
6682,
16,
5594,
16,
900,
16,
35722,
15,
2974,
32,
261,
14,
22108,
30,
5672,
3,
4060,
568,
2437,
390,
5673,
275,
7626,
15,
900,
1138,
35722,
870,
34,
3073,
6721,
31,
187,
870,
14364,
31,
187,
187,
29,
49,
31,
187,
19570,
966,
326,
310,
2074,
281,
654,
34,
29321,
568,
2413,
1358,
13880,
15,
32532,
15,
681,
16,
50024,
16,
23,
16,
13880,
16,
6682,
16,
5594,
16,
900,
16,
19117,
6542,
35722,
15,
2974,
32,
261,
14,
22108,
30,
5672,
3,
4060,
568,
2437,
390,
5673,
275,
7626,
15,
900,
5264,
16699,
31,
19117,
6542,
35722,
870,
16699,
3073,
34,
31,
187,
275,
10393,
13,
533,
625,
48526,
281,
9857,
897,
2219,
26506,
15,
187,
26602,
2544,
2486,
8223,
5718,
313,
2369,
878,
281,
452,
4872,
187,
19673,
6391,
13,
476,
3693,
294,
10835,
84,
13,
24699,
582,
347,
973,
8990,
187,
417,
1754,
327,
654,
34,
29321,
568,
2413,
1358,
13880,
15,
32532,
15,
681,
16,
50024,
16,
23,
16,
13880,
16,
6682,
16,
5594,
16,
900,
16,
35722,
15,
2974,
32,
261,
14,
22108,
30,
5672,
3,
4060,
568,
2437,
390,
5673,
275,
7626,
15,
900,
5264,
16699,
31,
35722,
870,
16699,
3073,
34,
13208,
496,
2159,
13,
247,
1077,
1199,
187,
18052,
22074,
1789,
15,
187,
29,
81,
31,
187,
3932,
2715,
337,
15,
22,
13,
671,
17930,
654,
34,
29321,
568,
2413,
1358,
13880,
15,
32532,
15,
681,
16,
50024,
16,
23,
16,
13880,
16,
6682,
16,
5594,
16,
900,
16,
35722,
15,
2974,
32,
261,
14,
22108,
30,
5672,
3,
4060,
568,
2437,
390,
5673,
275,
7626,
15,
900,
5264,
16699,
31,
35722,
870,
16699,
3073,
34,
31,
281,
1581,
187,
5919,
20828,
273,
3453,
2600,
347,
247,
12243,
3781,
13,
2074,
187,
281,
849,
654,
34,
29321,
568,
2413,
1358,
13880,
15,
32532,
15,
681,
16,
50024,
16,
23,
16,
13880,
16,
6682,
16,
5594,
16,
900,
16,
19117,
6542,
35722,
15,
2974,
32,
261,
14,
22108,
30,
5672,
3,
4060,
568,
2437,
390,
5673,
275,
7626,
15,
900,
5264,
16699,
31,
19117,
6542,
35722,
870,
16699,
3073,
34,
31,
2987,
13,
533,
8489,
625,
187,
14556,
323,
1142,
897,
2219,
15,
187,
29,
49,
31,
187,
187,
29,
49,
31,
187,
29,
9914,
31,
187,
187,
29,
49,
31,
187,
187,
14219,
209,
822,
5836,
33284,
39321,
44926,
209,
822,
6781,
187,
187,
29,
34,
34487,
568,
36073,
64,
8774,
5264,
8145,
1969,
3073,
34,
31,
187,
29,
24608,
378,
24066,
568,
18,
3,
411,
24282,
568,
2313,
28764,
7956,
2293,
49,
19873,
2637,
568,
20,
3,
7956,
2293,
4350,
1934,
2637,
568,
17,
3,
44926,
37387,
187,
29,
3125,
49249,
10817,
41110,
3269,
3,
28085,
568,
3235,
1328,
6748,
6573,
1138,
187,
29,
3886,
6589,
13003,
568,
1274,
3,
21849,
4350,
1539,
568,
19,
5264,
23758,
36124,
568,
12,
19,
1138,
187,
29,
35,
31,
38168,
18435,
870,
35,
3073,
23758,
3073,
3886,
31,
187,
870,
3125,
31,
187,
29,
3125,
49249,
568,
11300,
3,
28085,
568,
3235,
10990,
6573,
1138,
187,
29,
10989,
2730,
16699,
2730,
35,
2730,
34,
29321,
31779,
681,
16,
29762,
16,
26318,
16,
6443,
16,
8906,
16,
19117,
6542,
12038,
15,
2974,
4,
19117,
6542,
12038,
49384,
19117,
6542,
12038,
870,
34,
3073,
35,
31759,
870,
16699,
31,
187,
187,
29,
7941,
31,
187,
7,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13143,
10989,
31,
187,
870,
3125,
31,
187,
29,
3125,
49249,
568,
11300,
3,
28085,
568,
3235,
10990,
6573,
1138,
187,
29,
10989,
2730,
16699,
2730,
35,
2730,
34,
29321,
31779,
681,
16,
29762,
16,
26318,
16,
6443,
16,
8906,
16,
19117,
6542,
12038,
15,
2974,
4,
19117,
6542,
12038,
9,
681,
15,
29762,
15,
26318,
15,
6443,
15,
8906,
15,
10644,
6116,
42447,
37916,
19117,
6542,
12038,
870,
34,
3073,
35,
8743,
29,
34,
29321,
31779,
681,
16,
29762,
16,
26318,
16,
6443,
16,
8906,
16,
10644,
6116,
42447,
15,
2974,
3,
4060,
568,
2437,
275,
389,
15,
29762,
15,
26318,
15,
6443,
15,
8906,
1138,
10644,
6116,
42447,
870,
34,
12399,
6732,
28,
1288,
17266,
16699,
31,
187,
187,
29,
7941,
31,
187,
7,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13143,
10989,
31,
187,
870,
3125,
31,
187,
29,
3125,
49249,
568,
11300,
3,
28085,
568,
3235,
10990,
6573,
1138,
187,
29,
10989,
2730,
16699,
2730,
35,
2730,
34,
29321,
31779,
681,
16,
29762,
16,
26318,
16,
6443,
16,
8906,
16,
19117,
6542,
12038,
15,
2974,
4,
19117,
6542,
12038,
9,
681,
15,
29762,
15,
26318,
15,
6443,
15,
8906,
15,
10644,
6116,
42447,
13,
540,
37916,
19117,
6542,
12038,
870,
34,
3073,
35,
8743,
29,
34,
29321,
31779,
681,
16,
29762,
16,
26318,
16,
6443,
16,
8906,
16,
10644,
6116,
42447,
15,
2974,
3,
4060,
568,
2437,
275,
389,
15,
29762,
15,
26318,
15,
6443,
15,
8906,
1138,
10644,
6116,
42447,
870,
34,
12399,
6732,
28,
1288,
13,
187,
50261,
565,
7,
6732,
28,
7053,
11144,
5496,
17266,
16699,
31,
187,
187,
29,
7941,
31,
187,
7,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13143,
10989,
31,
187,
870,
3125,
31,
187,
29,
3125,
49249,
568,
11300,
3,
28085,
568,
3235,
10990,
6573,
1138,
187,
29,
10989,
2730,
16699,
2730,
35,
2730,
34,
29321,
31779,
681,
16,
29762,
16,
26318,
16,
6443,
16,
8906,
16,
19117,
6542,
12038,
15,
2974,
4,
19117,
6542,
12038,
9,
565,
37916,
19117,
6542,
12038,
870,
34,
3073,
35,
8743,
565,
7,
6732,
28,
7053,
11144,
5496,
17266,
16699,
31,
187,
187,
29,
7941,
31,
187,
7,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13143,
10989,
31,
187,
870,
3125,
31,
187,
870,
24608,
31,
187,
7,
6732,
28,
187,
14219,
209,
6428,
37939,
44926,
209,
15765,
6781,
187,
187,
29,
34,
34487,
568,
9349,
64,
8774,
5264,
8145,
1969,
3073,
34,
31,
187,
29,
24608,
378,
24066,
568,
18,
3,
411,
24282,
568,
2313,
28764,
7956,
2293,
49,
19873,
2637,
568,
20,
3,
7956,
2293,
4350,
1934,
2637,
568,
17,
3,
44926,
37387,
187,
29,
3125,
49249,
10817,
41110,
3269,
3,
28085,
568,
3235,
1328,
6748,
6573,
1138,
187,
29,
3886,
6589,
13003,
568,
1274,
3,
21849,
4350,
1539,
568,
19,
5264,
23758,
36124,
568,
12,
19,
1138,
187,
29,
35,
31,
6942,
18435,
870,
35,
3073,
23758,
3073,
3886,
31,
187,
870,
3125,
31,
187,
29,
3125,
49249,
568,
11300,
3,
28085,
568,
3235,
10990,
6573,
1138,
187,
29,
10989,
6589,
13003,
568,
918,
3,
15527,
13003,
568,
3956,
3,
411,
24282,
568,
18,
6,
5264,
23758,
36124,
24539,
18,
1138,
187,
29,
16699,
12399,
6732,
28,
4353,
870,
16699,
3073,
23758,
3073,
10989,
31,
187,
29,
10989,
2730,
16699,
2730,
35,
2730,
34,
29321,
31779,
681,
16,
29762,
16,
26318,
16,
6443,
16,
8906,
16,
19117,
6542,
12038,
15,
2974,
4,
9691,
9,
565,
37916,
9691,
870,
34,
3073,
35,
8743,
565,
7,
6732,
28,
74,
17266,
16699,
31,
187,
187,
29,
7941,
31,
187,
7,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13143,
10989,
31,
187,
870,
3125,
31,
187,
29,
3125,
49249,
568,
11300,
3,
28085,
568,
3235,
10990,
6573,
1138,
187,
29,
10989,
6589,
13003,
568,
918,
3,
15527,
13003,
568,
3956,
3,
411,
24282,
568,
18,
6,
5264,
23758,
36124,
24539,
18,
1138,
187,
29,
16699,
12399,
6732,
28,
4353,
870,
16699,
3073,
23758,
3073,
10989,
31,
187,
29,
10989,
2730,
16699,
2730,
35,
2730,
34,
29321,
31779,
681,
16,
29762,
16,
26318,
16,
6443,
16,
8906,
16,
19117,
6542,
12038,
15,
2974,
4,
9691,
11831,
16721,
9,
565,
37916,
9691,
11831,
16721,
870,
34,
3073,
35,
8743,
565,
7,
6732,
28,
67,
1348,
17266,
16699,
31,
187,
187,
29,
7941,
31,
187,
7,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13143,
10989,
31,
187,
870,
3125,
31,
187,
29,
3125,
49249,
568,
11300,
3,
28085,
568,
3235,
10990,
6573,
1138,
187,
29,
10989,
6589,
13003,
568,
918,
3,
15527,
13003,
568,
3956,
3,
411,
24282,
568,
18,
6,
5264,
23758,
36124,
24539,
18,
1138,
187,
29,
16699,
12399,
6732,
28,
4353,
870,
16699,
3073,
23758,
3073,
10989,
31,
187,
29,
10989,
2730,
16699,
2730,
35,
2730,
34,
29321,
31779,
681,
16,
29762,
16,
26318,
16,
6443,
16,
8906,
16,
19117,
6542,
12038,
15,
2974,
4,
9691,
7910,
16721,
9,
565,
37916,
9691,
7910,
16721,
870,
34,
3073,
35,
8743,
565,
7,
6732,
28,
67,
1036,
17266,
16699,
31,
187,
187,
29,
7941,
31,
187,
7,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13143,
10989,
31,
187,
870,
3125,
31,
187,
29,
3125,
49249,
568,
11300,
3,
28085,
568,
3235,
10990,
6573,
1138,
187,
29,
10989,
6589,
13003,
568,
918,
3,
15527,
13003,
568,
3956,
3,
411,
24282,
568,
18,
6,
5264,
23758,
36124,
24539,
18,
1138,
187,
29,
16699,
12399,
6732,
28,
4353,
870,
16699,
3073,
23758,
3073,
10989,
31,
187,
29,
10989,
2730,
16699,
2730,
35,
2730,
34,
29321,
31779,
681,
16,
29762,
16,
26318,
16,
6443,
16,
8906,
16,
19117,
6542,
12038,
15,
2974,
4,
10483,
49384,
10483,
870,
34,
3073,
35,
31759,
870,
16699,
31,
187,
187,
29,
7941,
31,
187,
7,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13143,
10989,
31,
187,
870,
3125,
31,
187,
29,
3125,
49249,
568,
11300,
3,
28085,
568,
3235,
10990,
6573,
1138,
187,
29,
10989,
6589,
13003,
568,
918,
3,
15527,
13003,
568,
3956,
3,
411,
24282,
568,
18,
6,
5264,
23758,
36124,
24539,
18,
1138,
187,
29,
16699,
12399,
6732,
28,
8833,
5456,
870,
16699,
3073,
23758,
3073,
10989,
31,
187,
29,
10989,
2730,
16699,
2730,
35,
2730,
34,
29321,
31779,
681,
16,
29762,
16,
26318,
16,
6443,
16,
8906,
16,
19117,
6542,
12038,
15,
2974,
4,
11984,
1898,
6869,
2339,
336,
9,
565,
37916,
11984,
1898,
6869,
2339,
336,
870,
34,
3073,
35,
8743,
565,
7,
6732,
28,
6275,
11144,
10830,
17266,
16699,
31,
187,
187,
29,
7941,
31,
187,
7,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
28,
6942,
326,
588,
3426,
346,
39842,
3,
3453,
1232,
13,
40405,
336,
187,
2600,
313,
338,
3309,
10,
285,
1091,
1543,
347,
247,
41248,
6391,
8239,
10989,
31,
187,
870,
3125,
31,
187,
29,
3125,
49249,
568,
11300,
3,
28085,
568,
3235,
10990,
6573,
1138,
187,
29,
10989,
6589,
13003,
568,
918,
3,
15527,
13003,
568,
3956,
3,
411,
24282,
568,
18,
6,
5264,
23758,
36124,
24539,
18,
1138,
187,
29,
16699,
12399,
6732,
28,
8833,
5456,
870,
16699,
3073,
23758,
3073,
10989,
31,
187,
29,
10989,
2730,
16699,
2730,
35,
2730,
34,
29321,
31779,
681,
16,
29762,
16,
26318,
16,
6443,
16,
8906,
16,
19117,
6542,
12038,
15,
2974,
4,
43020,
10605,
44808,
49384,
43020,
10605,
44808,
870,
34,
3073,
35,
31759,
870,
16699,
31,
187,
187,
29,
7941,
31,
187,
7,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
28,
6942,
1925,
672,
253,
1655,
8223,
6391,
310,
2120,
28,
588,
187,
14801,
281,
1655,
9410,
13,
29211,
247,
747,
8223,
6391,
187,
285,
1091,
352,
870,
10989,
31,
187,
870,
3125,
31,
187,
29,
3125,
49249,
568,
11300,
3,
28085,
568,
3235,
10990,
6573,
1138,
187,
29,
10989,
6589,
13003,
568,
918,
3,
15527,
13003,
568,
3956,
3,
411,
24282,
568,
18,
6,
5264,
23758,
36124,
24539,
18,
1138,
187,
29,
16699,
12399,
6732,
28,
4353,
870,
16699,
3073,
23758,
3073,
10989,
31,
187,
29,
10989,
2730,
16699,
2730,
35,
2730,
34,
29321,
31779,
681,
16,
29762,
16,
26318,
16,
6443,
16,
8906,
16,
19117,
6542,
12038,
15,
2974,
4,
34459,
49384,
34459,
870,
34,
3073,
35,
31759,
870,
16699,
31,
187,
187,
29,
7941,
31,
187,
7,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13143,
10989,
31,
187,
870,
3125,
31,
187,
29,
3125,
49249,
568,
11300,
3,
28085,
568,
3235,
10990,
6573,
1138,
187,
29,
10989,
6589,
13003,
568,
918,
3,
15527,
13003,
568,
3956,
3,
411,
24282,
568,
18,
6,
5264,
23758,
36124,
24539,
18,
1138,
187,
29,
16699,
12399,
6732,
28,
8833,
5456,
870,
16699,
3073,
23758,
3073,
10989,
31,
187,
29,
10989,
2730,
16699,
2730,
35,
2730,
34,
29321,
31779,
681,
16,
29762,
16,
26318,
16,
6443,
16,
8906,
16,
19117,
6542,
12038,
15,
2974,
4,
788,
10605,
44808,
49384,
788,
10605,
44808,
870,
34,
3073,
35,
31759,
870,
16699,
31,
187,
187,
29,
7941,
31,
187,
7,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13143,
10989,
31,
187,
870,
3125,
31,
187,
29,
3125,
49249,
568,
11300,
3,
28085,
568,
3235,
10990,
6573,
1138,
187,
29,
10989,
6589,
13003,
568,
918,
3,
15527,
13003,
568,
3956,
3,
411,
24282,
568,
18,
6,
5264,
23758,
36124,
24539,
18,
1138,
187,
29,
16699,
12399,
6732,
28,
565,
870,
16699,
3073,
23758,
3073,
10989,
31,
187,
29,
10989,
2730,
16699,
2730,
35,
2730,
34,
29321,
31779,
681,
16,
29762,
16,
26318,
16,
6443,
16,
8906,
16,
19117,
6542,
12038,
15,
2974,
4,
788,
10605,
44808,
10830,
49384,
788,
10605,
44808,
10830,
870,
34,
3073,
35,
31759,
870,
16699,
31,
187,
187,
29,
7941,
31,
187,
7,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13143,
10989,
31,
187,
870,
3125,
31,
187,
29,
3125,
49249,
568,
11300,
3,
28085,
568,
3235,
10990,
6573,
1138,
187,
29,
10989,
6589,
13003,
568,
918,
3,
15527,
13003,
568,
3956,
3,
411,
24282,
568,
18,
6,
5264,
23758,
36124,
24539,
18,
1138,
187,
29,
16699,
12399,
6732,
28,
4353,
870,
16699,
3073,
23758,
3073,
10989,
31,
187,
29,
10989,
2730,
16699,
2730,
35,
2730,
34,
29321,
31779,
681,
16,
29762,
16,
26318,
16,
6443,
16,
8906,
16,
19117,
6542,
12038,
15,
2974,
4,
16690,
49384,
16690,
870,
34,
3073,
35,
31759,
870,
16699,
31,
187,
187,
29,
7941,
31,
187,
7,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
28,
36272,
598,
1332,
281,
1067,
281,
3727,
512,
32743,
436,
1789,
778,
320,
187,
970,
8239,
10989,
31,
187,
870,
3125,
31,
187,
29,
3125,
49249,
568,
11300,
3,
28085,
568,
3235,
10990,
6573,
1138,
187,
29,
10989,
6589,
13003,
568,
918,
3,
15527,
13003,
568,
3956,
3,
411,
24282,
568,
18,
6,
5264,
23758,
36124,
24539,
18,
1138,
187,
29,
16699,
12399,
6732,
28,
4353,
870,
16699,
3073,
23758,
3073,
10989,
31,
187,
29,
10989,
2730,
16699,
2730,
35,
2730,
34,
29321,
31779,
681,
16,
29762,
16,
26318,
16,
6443,
16,
8906,
16,
19117,
6542,
12038,
15,
2974,
4,
19511,
49384,
19511,
870,
34,
3073,
35,
31759,
870,
16699,
31,
187,
187,
29,
7941,
31,
187,
7,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13143,
10989,
31,
187,
870,
3125,
31,
187,
29,
3125,
49249,
568,
11300,
3,
28085,
568,
3235,
10990,
6573,
1138,
187,
29,
10989,
6589,
13003,
568,
918,
3,
15527,
13003,
568,
3956,
3,
411,
24282,
568,
18,
6,
5264,
23758,
36124,
24539,
18,
1138,
187,
29,
16699,
12399,
6732,
28,
8833,
5456,
870,
16699,
3073,
23758,
3073,
10989,
31,
187,
29,
10989,
2730,
16699,
2730,
35,
2730,
34,
29321,
31779,
681,
16,
29762,
16,
26318,
16,
6443,
16,
8906,
16,
19117,
6542,
12038,
15,
2974,
4,
19511,
1898,
3633,
6407,
44808,
49384,
19511,
1898,
3633,
6407,
44808,
870,
34,
3073,
35,
31759,
870,
16699,
31,
187,
187,
29,
7941,
31,
187,
7,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
28,
6942,
1925,
672,
4983,
346,
39842,
3,
3453,
27,
588,
2590,
562,
187,
1655,
1375,
285,
1091,
253,
806,
8223,
6391,
281,
7522,
870,
10989,
31,
187,
870,
3125,
31,
187,
29,
3125,
49249,
568,
11300,
3,
28085,
568,
3235,
10990,
6573,
1138,
187,
29,
10989,
6589,
13003,
568,
918,
3,
15527,
13003,
568,
3956,
3,
411,
24282,
568,
18,
6,
5264,
23758,
36124,
24539,
18,
1138,
187,
29,
16699,
12399,
6732,
28,
4353,
870,
16699,
3073,
23758,
3073,
10989,
31,
187,
29,
10989,
2730,
16699,
2730,
35,
2730,
34,
29321,
31779,
681,
16,
29762,
16,
26318,
16,
6443,
16,
8906,
16,
19117,
6542,
12038,
15,
2974,
4,
1178,
10605,
44808,
10830,
9,
565,
37916,
1178,
10605,
44808,
10830,
870,
34,
3073,
35,
8743,
565,
7,
6732,
28,
5025,
17266,
16699,
31,
187,
187,
29,
7941,
31,
187,
7,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13143,
10989,
31,
187,
870,
3125,
31,
187,
29,
3125,
49249,
568,
11300,
3,
28085,
568,
3235,
10990,
6573,
1138,
187,
29,
10989,
6589,
13003,
568,
918,
3,
15527,
13003,
568,
3956,
3,
411,
24282,
568,
18,
6,
5264,
23758,
36124,
24539,
18,
1138,
187,
29,
16699,
12399,
6732,
28,
8833,
5456,
870,
16699,
3073,
23758,
3073,
10989,
31,
187,
29,
10989,
2730,
16699,
2730,
35,
2730,
34,
29321,
31779,
681,
16,
29762,
16,
26318,
16,
6443,
16,
8906,
16,
19117,
6542,
12038,
15,
2974,
4,
936,
19117,
6542,
49384,
936,
19117,
6542,
870,
34,
3073,
35,
31759,
870,
16699,
31,
187,
187,
29,
7941,
31,
187,
7,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
28,
6942,
1925,
672,
1543,
403,
2457,
1025,
285,
359,
476,
755,
253,
187,
2120,
40006,
906,
6391,
281,
1091,
281,
253,
27333,
870,
10989,
31,
187,
870,
3125,
31,
187,
29,
3125,
49249,
568,
11300,
3,
28085,
568,
3235,
10990,
6573,
1138,
187,
29,
10989,
6589,
13003,
568,
918,
3,
15527,
13003,
568,
3956,
3,
411,
24282,
568,
18,
6,
5264,
23758,
36124,
24539,
18,
1138,
187,
29,
16699,
12399,
6732,
28,
4353,
870,
16699,
3073,
23758,
3073,
10989,
31,
187,
29,
10989,
2730,
16699,
2730,
35,
2730,
34,
29321,
31779,
681,
16,
29762,
16,
26318,
16,
6443,
16,
8906,
16,
19117,
6542,
12038,
15,
2974,
4,
6343,
9,
8833,
47093,
1138,
6343,
870,
34,
3073,
35,
8743,
8833,
5456,
7,
6732,
28,
67,
17266,
16699,
31,
187,
187,
29,
7941,
31,
187,
7,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13143,
10989,
31,
187,
870,
3125,
31,
187,
29,
3125,
49249,
568,
11300,
3,
28085,
568,
3235,
10990,
6573,
1138,
187,
29,
10989,
6589,
13003,
568,
918,
3,
15527,
13003,
568,
3956,
3,
411,
24282,
568,
18,
6,
5264,
23758,
36124,
24539,
18,
1138,
187,
29,
16699,
12399,
6732,
28,
4353,
870,
16699,
3073,
23758,
3073,
10989,
31,
187,
29,
10989,
2730,
16699,
2730,
35,
2730,
34,
29321,
31779,
681,
16,
29762,
16,
26318,
16,
6443,
16,
8906,
16,
19117,
6542,
12038,
15,
2974,
4,
6343,
9,
8833,
60,
1092,
540,
13,
540,
37916,
6343,
870,
34,
3073,
35,
8743,
8833,
5456,
7,
6732,
28,
67,
13,
187,
50272,
565,
7,
6732,
28,
2727,
13,
187,
50272,
565,
7,
6732,
28,
5025,
17266,
16699,
31,
187,
187,
29,
7941,
31,
187,
7,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13143,
10989,
31,
187,
870,
3125,
31,
187,
29,
3125,
49249,
568,
11300,
3,
28085,
568,
3235,
10990,
6573,
1138,
187,
29,
10989,
6589,
13003,
568,
918,
3,
15527,
13003,
568,
3956,
3,
411,
24282,
568,
18,
6,
5264,
23758,
36124,
24539,
18,
1138,
187,
29,
16699,
12399,
6732,
28,
4353,
870,
16699,
3073,
23758,
3073,
10989,
31,
187,
29,
10989,
2730,
16699,
2730,
35,
2730,
34,
29321,
31779,
681,
16,
29762,
16,
26318,
16,
6443,
16,
8906,
16,
19117,
6542,
12038,
15,
2974,
4,
6343,
9,
565,
37916,
6343,
870,
34,
3073,
35,
8743,
565,
7,
6732,
28,
67,
17266,
16699,
31,
187,
187,
29,
7941,
31,
187,
7,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13309,
6732,
13143,
10989,
31,
187,
870,
3125,
31,
187,
870,
24608,
31,
187,
7,
6732,
26077,
34,
34487,
568,
30172,
64,
27040,
959,
64,
4064,
64,
2437,
64,
5594,
15,
8700,
15,
4241,
5264,
8145,
1969,
3073,
34,
31,
187,
29,
24608,
378,
24066,
568,
18,
3,
411,
24282,
568,
2313,
28764,
7956,
2293,
49,
19873,
2637,
568,
20,
3,
7956,
2293,
4350,
1934,
2637,
568,
17,
3,
44926,
37387,
187,
29,
3125,
49249,
10817,
48919,
3269,
3,
28085,
568,
3235,
5623,
1328,
6748,
6573,
1138,
187,
29,
3886,
6589,
13003,
568,
1274,
5264,
35,
31,
15568,
20265,
432,
966,
7626,
15,
8700,
17778,
34,
29321,
568,
2413,
1358,
13880,
15,
32532,
15,
681,
16,
50024,
16,
23,
16,
13880,
16,
6682,
16,
5594,
16,
8700,
16,
4241,
15,
2974,
32,
261,
14,
22108,
30,
5672,
3,
4060,
568,
2437,
390,
5673,
275,
7626,
15,
8700,
1138,
4241,
870,
34,
3073,
35,
3073,
3886,
31,
187,
870,
3125,
31,
187,
29,
3125,
49249,
568,
11300,
3,
28085,
568,
3235,
10990,
6573,
1138,
187,
29,
10989,
2730,
16699,
2730,
34,
29321,
568,
2413,
1358,
13880,
15,
32532,
15,
681,
16,
50024,
16,
23,
16,
13880,
16,
6682,
16,
5594,
16,
8700,
16,
4241,
15,
2974,
32,
261,
14,
22108,
30,
5672,
4,
27803,
46221,
4060,
568,
2437,
390,
5673,
275,
7626,
15,
8700,
1138,
27803,
870,
34,
9983,
654,
34,
29321,
568,
2413,
1358,
13880,
15,
32532,
15,
681,
16,
50024,
16,
23,
16,
13880,
16,
6682,
16,
5594,
16,
8700,
16,
4241,
15,
2974,
32,
261,
14,
22108,
30,
5672,
4,
22297,
9,
5594,
15,
8700,
15,
4241,
6844,
4060,
568,
2437,
390,
5673,
275,
7626,
15,
8700,
1138,
22297,
870,
34,
9983,
654,
34,
29321,
568,
2413,
1358,
13880,
15,
32532,
15,
681,
16,
50024,
16,
23,
16,
13880,
16,
6682,
16,
5594,
16,
8700,
16,
4241,
15,
2974,
32,
261,
14,
22108,
30,
5672,
4,
13017,
907,
46221,
4060,
568,
2437,
390,
5673,
275,
7626,
15,
8700,
1138,
13017,
907,
870,
34,
9983,
654,
34,
29321,
568,
2413,
1358,
13880,
15,
32532,
15,
681,
16,
50024,
16,
23,
16,
13880,
16,
6682,
16,
5594,
16,
8700,
16,
4241,
15,
2974,
32,
261,
14,
22108,
30,
5672,
4,
788,
4947,
46221,
4060,
568,
2437,
390,
5673,
275,
7626,
15,
8700,
1138,
788,
4947,
870,
34,
9983,
654,
34,
29321,
568,
2413,
1358,
13880,
15,
32532,
15,
681,
16,
50024,
16,
23,
16,
13880,
16,
6682,
16,
5594,
16,
8700,
16,
4241,
15,
2974,
32,
261,
14,
22108,
30,
5672,
4,
13362,
6124,
46221,
4060,
568,
2437,
390,
5673,
275,
7626,
15,
8700,
1138,
13362,
6124,
870,
34,
9983,
654,
34,
29321,
568,
2413,
1358,
13880,
15,
32532,
15,
681,
16,
50024,
16,
23,
16,
13880,
16,
6682,
16,
5594,
16,
8700,
16,
4241,
15,
2974,
32,
261,
14,
22108,
30,
5672,
4,
34457,
46221,
4060,
568,
2437,
390,
5673,
275,
7626,
15,
8700,
1138,
34457,
870,
34,
9983,
654,
34,
29321,
568,
2413,
1358,
13880,
15,
32532,
15,
681,
16,
50024,
16,
23,
16,
13880,
16,
6682,
16,
5594,
16,
8700,
16,
4241,
15,
2974,
32,
261,
14,
22108,
30,
5672,
4,
34457,
3074,
46221,
4060,
568,
2437,
390,
5673,
275,
7626,
15,
8700,
1138,
34457,
3074,
870,
34,
9983,
654,
34,
29321,
568,
2413,
1358,
13880,
15,
32532,
15,
681,
16,
50024,
16,
23,
16,
13880,
16,
6682,
16,
5594,
16,
8700,
16,
4241,
15,
2974,
32,
261,
14,
22108,
30,
5672,
4,
18264,
46221,
4060,
568,
2437,
390,
5673,
275,
7626,
15,
8700,
1138,
18264,
870,
34,
9983,
654,
34,
29321,
568,
2413,
1358,
13880,
15,
32532,
15,
681,
16,
50024,
16,
23,
16,
13880,
16,
6682,
16,
5594,
16,
8700,
16,
4241,
15,
2974,
32,
261,
14,
22108,
30,
5672,
4,
14061,
46221,
4060,
568,
2437,
390,
5673,
275,
7626,
15,
8700,
1138,
14061,
870,
34,
9983,
654,
34,
29321,
568,
2413,
1358,
13880,
15,
32532,
15,
681,
16,
50024,
16,
23,
16,
13880,
16,
6682,
16,
5594,
16,
8700,
16,
4241,
15,
2974,
32,
261,
14,
22108,
30,
5672,
4,
14061,
9,
5056,
6844,
4060,
568,
2437,
390,
5673,
275,
7626,
15,
8700,
1138,
14061,
870,
34,
9983,
654,
34,
29321,
568,
2413,
1358,
13880,
15,
32532,
15,
681,
16,
50024,
16,
23,
16,
13880,
16,
6682,
16,
5594,
16,
8700,
16,
4241,
15,
2974,
32,
261,
14,
22108,
30,
5672,
4,
14061,
9,
5056,
13,
540,
6844,
4060,
568,
2437,
390,
5673,
275,
7626,
15,
8700,
1138,
14061,
870,
34,
3073,
16699,
3073,
10989,
31,
187,
870,
3125,
31,
187,
870,
24608,
31,
187,
7,
6732,
28,
187,
29,
49,
31,
187,
187,
14219,
209,
33197,
5836,
33284,
39321,
43190,
22823,
209,
822,
6781,
187,
187,
29,
34,
34487,
568,
36073,
64,
20119,
5264,
8145,
1969,
3073,
34,
31,
187,
29,
24608,
378,
24066,
568,
18,
3,
411,
24282,
568,
2313,
28764,
7956,
2293,
49,
19873,
2637,
568,
20,
3,
7956,
2293,
4350,
1934,
2637,
568,
17,
3,
44926,
37387,
187,
29,
3125,
49249,
10817,
41110,
3269,
3,
28085,
568,
3235,
1328,
6748,
6573,
1138,
187,
29,
3886,
6589,
13003,
568,
1274,
3,
21849,
4350,
1539,
568,
18,
5264,
23758,
36124,
568,
12,
19,
1138,
187,
29,
35,
31,
38168,
4597,
647,
870,
35,
3073,
23758,
3073,
3886,
31,
187,
870,
3125,
31,
187,
870,
24608,
31,
187,
187,
29,
34,
34487,
568,
19117,
6542,
12038,
1082,
5264,
8145,
1969,
3073,
34,
2730,
41,
20,
31,
187,
19117,
6542,
12038,
870,
41,
20,
31,
187,
29,
14364,
31,
187,
4387,
654,
35,
31,
19117,
6542,
12038,
870,
35,
31759,
870,
14364,
31,
187,
29,
6721,
31,
187,
870,
6721,
31,
187,
29,
9914,
31,
187,
187,
29,
34,
34487,
568,
19117,
6542,
12038,
9,
681,
15,
29762,
15,
26318,
15,
6443,
15,
8906,
15,
10644,
6116,
42447,
10,
5264,
8145,
1969,
3073,
34,
2730,
41,
20,
31,
187,
19117,
6542,
12038,
870,
41,
20,
31,
187,
29,
14364,
31,
187,
4387,
654,
35,
31,
19117,
6542,
12038,
870,
35,
8743,
29,
34,
29321,
31779,
681,
16,
29762,
16,
26318,
16,
6443,
16,
8906,
16,
10644,
6116,
42447,
15,
2974,
3,
4060,
568,
2437,
275,
389,
15,
29762,
15,
26318,
15,
6443,
15,
8906,
1138,
10644,
6116,
42447,
870,
34,
12399,
6732,
28,
1288,
17266,
14364,
31,
187,
29,
6721,
31,
187,
870,
6721,
31,
187,
29,
9914,
31,
187,
187,
29,
34,
34487,
568,
19117,
6542,
12038,
9,
565,
10,
5264,
8145,
1969,
3073,
34,
2730,
41,
20,
31,
187,
19117,
6542,
12038,
870,
41,
20,
31,
187,
29,
14364,
31,
187,
4387,
654,
35,
31,
19117,
6542,
12038,
870,
35,
8743,
565,
7,
6732,
28,
7053,
11144,
5496,
17266,
14364,
31,
187,
29,
6721,
31,
187,
870,
6721,
31,
187,
29,
9914,
31,
187,
187,
29,
34,
34487,
568,
19117,
6542,
12038,
9,
681,
15,
29762,
15,
26318,
15,
6443,
15,
8906,
15,
10644,
6116,
42447,
13,
540,
10,
5264,
8145,
1969,
3073,
34,
2730,
41,
20,
31,
187,
19117,
6542,
12038,
870,
41,
20,
31,
187,
29,
14364,
31,
187,
4387,
654,
35,
31,
19117,
6542,
12038,
870,
35,
8743,
29,
34,
29321,
31779,
681,
16,
29762,
16,
26318,
16,
6443,
16,
8906,
16,
10644,
6116,
42447,
15,
2974,
3,
4060,
568,
2437,
275,
389,
15,
29762,
15,
26318,
15,
6443,
15,
8906,
1138,
10644,
6116,
42447,
870,
34,
12399,
6732,
28,
1288,
13,
187,
50254,
565,
7,
6732,
28,
7053,
11144,
5496,
17266,
14364,
31,
187,
29,
6721,
31,
187,
870,
6721,
31,
187,
187,
14219,
209,
7770,
37939,
43190,
22823,
209,
6428,
6781,
187,
187,
29,
34,
34487,
568,
9349,
64,
20119,
5264,
8145,
1969,
3073,
34,
31,
187,
29,
24608,
378,
24066,
568,
18,
3,
411,
24282,
568,
2313,
28764,
7956,
2293,
49,
19873,
2637,
568,
20,
3,
7956,
2293,
4350,
1934,
2637,
568,
17,
3,
44926,
37387,
187,
29,
3125,
49249,
10817,
41110,
3269,
3,
28085,
568,
3235,
1328,
6748,
6573,
1138,
187,
29,
3886,
6589,
13003,
568,
1274,
3,
21849,
4350,
1539,
568,
18,
5264,
23758,
36124,
568,
12,
19,
1138,
187,
29,
35,
31,
6942,
4597,
647,
870,
35,
3073,
23758,
3073,
3886,
31,
187,
870,
3125,
31,
187,
870,
24608,
31,
187,
187,
29,
34,
34487,
568,
19511,
1082,
5264,
8145,
1969,
3073,
34,
2730,
41,
20,
31,
187,
19511,
870,
41,
20,
31,
187,
29,
14364,
31,
187,
4387,
2991,
654,
35,
31,
19511,
870,
35,
31759,
870,
14364,
31,
187,
29,
6721,
31,
187,
29,
11927,
2730,
6721,
31,
187,
870,
6721,
31,
187,
870,
11927,
31,
187,
870,
6721,
31,
187,
29,
9914,
31,
187,
187,
29,
34,
34487,
568,
16690,
1082,
5264,
8145,
1969,
3073,
34,
2730,
41,
20,
31,
187,
16690,
870,
41,
20,
31,
187,
29,
14364,
31,
187,
4387,
2991,
654,
35,
31,
16690,
870,
35,
31759,
870,
14364,
31,
187,
29,
6721,
31,
187,
29,
11927,
31,
36272,
598,
1332,
281,
1067,
281,
3727,
512,
32743,
436,
1789,
778,
320,
187,
970,
15,
2732,
6789,
253,
1332,
13,
642,
643,
2289,
641,
476,
320,
908,
313,
395,
187,
3177,
281,
513,
594,
778,
906,
275,
271,
6517,
10,
187,
29,
49,
31,
187,
29,
11927,
2730,
6721,
31,
187,
870,
6721,
31,
187,
870,
11927,
31,
187,
870,
6721,
31,
187,
29,
9914,
31,
187,
187,
29,
34,
34487,
568,
9691,
9,
565,
10,
5264,
8145,
1969,
3073,
34,
2730,
41,
20,
31,
187,
9691,
870,
41,
20,
31,
187,
29,
14364,
31,
187,
4387,
2991,
654,
35,
31,
9691,
870,
35,
8743,
565,
7,
6732,
28,
74,
17266,
14364,
31,
187,
29,
6721,
31,
187,
29,
11927,
2730,
6721,
31,
187,
870,
6721,
31,
187,
870,
11927,
31,
187,
870,
6721,
31,
187,
29,
9914,
31,
187,
187,
29,
34,
34487,
568,
9691,
7910,
16721,
9,
565,
10,
5264,
8145,
1969,
3073,
34,
2730,
41,
20,
31,
187,
9691,
7910,
16721,
870,
41,
20,
31,
187,
29,
14364,
31,
187,
4387,
2991,
654,
35,
31,
9691,
7910,
16721,
870,
35,
8743,
565,
7,
6732,
28,
67,
1036,
17266,
14364,
31,
187,
29,
6721,
31,
187,
29,
11927,
2730,
6721,
31,
187,
870,
6721,
31,
187,
870,
11927,
31,
187,
870,
6721,
31,
187,
29,
9914,
31,
187,
187,
29,
34,
34487,
568,
9691,
11831,
16721,
9,
565,
10,
5264,
8145,
1969,
3073,
34,
2730,
41,
20,
31,
187,
9691,
11831,
16721,
870,
41,
20,
31,
187,
29,
14364,
31,
187,
4387,
2991,
654,
35,
31,
9691,
11831,
16721,
870,
35,
8743,
565,
7,
6732,
28,
67,
1348,
17266,
14364,
31,
187,
29,
6721,
31,
187,
29,
11927,
2730,
6721,
31,
187,
870,
6721,
31,
187,
870,
11927,
31,
187,
870,
6721,
31,
187,
29,
9914,
31,
187,
187,
29,
34,
34487,
568,
936,
19117,
6542,
1082,
5264,
8145,
1969,
3073,
34,
2730,
41,
20,
31,
187,
936,
19117,
6542,
870,
41,
20,
31,
187,
29,
14364,
31,
187,
4387,
12243,
5456,
654,
35,
31,
936,
19117,
6542,
870,
35,
31759,
870,
14364,
31,
187,
29,
6721,
31,
187,
29,
11927,
31,
6942,
1925,
672,
1543,
403,
2457,
1025,
285,
359,
476,
755,
253,
187,
2120,
40006,
906,
6391,
281,
1091,
281,
253,
27333,
187,
29,
49,
31,
187,
29,
11927,
2730,
6721,
31,
187,
870,
6721,
31,
187,
870,
11927,
31,
187,
870,
6721,
31,
187,
29,
9914,
31,
187,
187,
29,
34,
34487,
568,
19511,
1898,
3633,
6407,
44808,
1082,
5264,
8145,
1969,
3073,
34,
2730,
41,
20,
31,
187,
19511,
1898,
3633,
6407,
44808,
870,
41,
20,
31,
187,
29,
14364,
31,
187,
4387,
12243,
5456,
654,
35,
31,
19511,
1898,
3633,
6407,
44808,
870,
35,
31759,
870,
14364,
31,
187,
29,
6721,
31,
187,
29,
11927,
31,
6942,
1925,
672,
4983,
346,
39842,
3,
3453,
27,
588,
2590,
562,
187,
1655,
1375,
285,
1091,
253,
806,
8223,
6391,
281,
7522,
187,
29,
49,
31,
187,
29,
11927,
2730,
6721,
31,
187,
870,
6721,
31,
187,
870,
11927,
31,
187,
870,
6721,
31,
187,
29,
9914,
31,
187,
187,
29,
34,
34487,
568,
43020,
10605,
44808,
1082,
5264,
8145,
1969,
3073,
34,
2730,
41,
20,
31,
187,
43020,
10605,
44808,
870,
41,
20,
31,
187,
29,
14364,
31,
187,
4387,
12243,
5456,
654,
35,
31,
43020,
10605,
44808,
870,
35,
31759,
870,
14364,
31,
187,
29,
6721,
31,
187,
29,
11927,
31,
6942,
1925,
672,
253,
1655,
8223,
6391,
310,
2120,
28,
588,
187,
14801,
281,
1655,
9410,
13,
29211,
247,
747,
8223,
6391,
187,
285,
1091,
352,
187,
29,
49,
31,
187,
29,
11927,
2730,
6721,
31,
187,
870,
6721,
31,
187,
870,
11927,
31,
187,
870,
6721,
31,
187,
29,
9914,
31,
187,
187,
29,
34,
34487,
568,
11984,
1898,
6869,
2339,
336,
9,
565,
10,
5264,
8145,
1969,
3073,
34,
2730,
41,
20,
31,
187,
11984,
1898,
6869,
2339,
336,
870,
41,
20,
31,
187,
29,
14364,
31,
187,
4387,
12243,
5456,
654,
35,
31,
11984,
1898,
6869,
2339,
336,
870,
35,
8743,
565,
7,
6732,
28,
6275,
11144,
10830,
17266,
14364,
31,
187,
29,
6721,
31,
187,
29,
11927,
31,
6942,
326,
588,
3426,
346,
39842,
3,
3453,
1232,
13,
40405,
336,
187,
2600,
313,
338,
3309,
10,
285,
1091,
1543,
347,
247,
41248,
6391,
15,
187,
29,
49,
31,
187,
29,
11927,
2730,
6721,
31,
187,
29,
15580,
2730,
35,
31,
17986,
19282,
35,
2730,
11927,
2730,
16699,
31,
6275,
11144,
10830,
870,
16699,
31,
428,
3052,
702,
273,
2600,
275,
253,
1655,
8223,
187,
6391,
15,
187,
29,
15580,
2730,
35,
31,
34551,
19282,
35,
2730,
11927,
31,
6869,
2339,
758,
9410,
870,
6721,
31,
187,
870,
11927,
31,
187,
870,
6721,
31,
187,
29,
9914,
31,
187,
187,
29,
34,
34487,
568,
788,
10605,
44808,
1082,
5264,
8145,
1969,
3073,
34,
2730,
41,
20,
31,
187,
788,
10605,
44808,
870,
41,
20,
31,
187,
29,
14364,
31,
187,
4387,
12243,
5456,
654,
35,
31,
788,
10605,
44808,
870,
35,
31759,
870,
14364,
31,
187,
29,
6721,
31,
187,
29,
11927,
2730,
6721,
31,
187,
870,
6721,
31,
187,
870,
11927,
31,
187,
870,
6721,
31,
187,
29,
9914,
31,
187,
187,
29,
34,
34487,
568,
1178,
10605,
44808,
10830,
9,
565,
10,
5264,
8145,
1969,
3073,
34,
2730,
41,
20,
31,
187,
1178,
10605,
44808,
10830,
870,
41,
20,
31,
187,
29,
14364,
31,
187,
4387,
2991,
654,
35,
31,
1178,
10605,
44808,
10830,
870,
35,
8743,
565,
7,
6732,
28,
5025,
17266,
14364,
31,
187,
29,
6721,
31,
187,
29,
11927,
2730,
6721,
31,
187,
870,
6721,
31,
187,
870,
11927,
31,
187,
870,
6721,
31,
187,
29,
9914,
31,
187,
187,
29,
34,
34487,
568,
788,
10605,
44808,
10830,
1082,
5264,
8145,
1969,
3073,
34,
2730,
41,
20,
31,
187,
788,
10605,
44808,
10830,
870,
41,
20,
31,
187,
29,
14364,
31,
187,
4387,
540,
654,
35,
31,
788,
10605,
44808,
10830,
870,
35,
31759,
870,
14364,
31,
187,
29,
6721,
31,
187,
29,
11927,
2730,
6721,
31,
187,
870,
6721,
31,
187,
870,
11927,
31,
187,
870,
6721,
31,
187,
29,
9914,
31,
187,
187,
29,
34,
34487,
568,
6343,
9,
8833,
47093,
5264,
8145,
1969,
3073,
34,
2730,
41,
20,
31,
187,
6343,
870,
41,
20,
31,
187,
29,
14364,
31,
187,
4387,
2991,
654,
35,
31,
6343,
870,
35,
8743,
8833,
5456,
7,
6732,
28,
67,
17266,
14364,
31,
187,
29,
6721,
31,
187,
29,
11927,
2730,
6721,
31,
187,
29,
15580,
2730,
35,
31,
5279,
83,
1487,
19282,
35,
2730,
11927,
2730,
16699,
2730,
34,
29321,
568,
2413,
1358,
13880,
15,
32532,
15,
681,
16,
50024,
16,
23,
16,
13880,
16,
6682,
16,
5594,
16,
900,
16,
35722,
15,
2974,
32,
261,
14,
22108,
30,
5672,
4,
6343,
9,
8833,
47093,
3,
4060,
568,
2437,
390,
5673,
275,
7626,
15,
900,
1138,
6343,
870,
34,
3073,
16699,
31,
275,
966,
654,
16699,
2730,
34,
29321,
568,
2413,
1358,
13880,
15,
32532,
15,
681,
16,
50024,
16,
23,
16,
13880,
16,
6682,
16,
5594,
16,
900,
16,
35722,
15,
2974,
32,
261,
14,
22108,
30,
5672,
3,
4060,
568,
2437,
390,
5673,
275,
7626,
15,
900,
1138,
35722,
870,
34,
3073,
16699,
3073,
6721,
31,
187,
870,
11927,
31,
187,
29,
11927,
2730,
6721,
31,
187,
870,
6721,
31,
187,
870,
11927,
31,
187,
870,
6721,
31,
187,
29,
9914,
31,
187,
187,
29,
34,
34487,
568,
6343,
9,
8833,
60,
1092,
540,
13,
540,
10,
5264,
8145,
1969,
3073,
34,
2730,
41,
20,
31,
187,
6343,
870,
41,
20,
31,
187,
29,
14364,
31,
187,
4387,
2991,
654,
35,
31,
6343,
870,
35,
8743,
8833,
5456,
7,
6732,
28,
67,
13,
187,
50260,
565,
7,
6732,
28,
2727,
13,
187,
50260,
565,
7,
6732,
28,
5025,
17266,
14364,
31,
187,
29,
6721,
31,
187,
29,
11927,
2730,
6721,
31,
187,
29,
15580,
2730,
35,
31,
5279,
83,
1487,
19282,
35,
2730,
11927,
2730,
16699,
2730,
34,
29321,
568,
2413,
1358,
13880,
15,
32532,
15,
681,
16,
50024,
16,
23,
16,
13880,
16,
6682,
16,
5594,
16,
900,
16,
35722,
15,
2974,
32,
261,
14,
22108,
30,
5672,
4,
6343,
9,
8833,
60,
1092,
540,
13,
540,
6844,
4060,
568,
2437,
390,
5673,
275,
7626,
15,
900,
1138,
6343,
870,
34,
3073,
16699,
31,
275,
966,
654,
16699,
2730,
34,
29321,
568,
2413,
1358,
13880,
15,
32532,
15,
681,
16,
50024,
16,
23,
16,
13880,
16,
6682,
16,
5594,
16,
900,
16,
35722,
15,
2974,
32,
261,
14,
22108,
30,
5672,
3,
4060,
568,
2437,
390,
5673,
275,
7626,
15,
900,
1138,
35722,
870,
34,
3073,
16699,
3073,
6721,
31,
187,
870,
11927,
31,
187,
29,
11927,
2730,
6721,
31,
187,
870,
6721,
31,
187,
870,
11927,
31,
187,
870,
6721,
31,
187,
29,
9914,
31,
187,
187,
29,
34,
34487,
568,
6343,
9,
565,
10,
5264,
8145,
1969,
3073,
34,
2730,
41,
20,
31,
187,
6343,
870,
41,
20,
31,
187,
29,
14364,
31,
187,
4387,
2991,
654,
35,
31,
6343,
870,
35,
8743,
565,
7,
6732,
28,
67,
17266,
14364,
31,
187,
29,
6721,
31,
187,
29,
11927,
2730,
6721,
31,
187,
29,
15580,
2730,
35,
31,
8546,
1245,
407,
19282,
35,
2730,
11927,
2730,
16699,
2730,
34,
29321,
568,
2413,
1358,
13880,
15,
32532,
15,
681,
16,
50024,
16,
23,
16,
13880,
16,
6682,
16,
5594,
16,
900,
16,
35722,
15,
2974,
32,
261,
14,
22108,
30,
5672,
4,
6343,
9,
565,
6844,
4060,
568,
2437,
390,
5673,
275,
7626,
15,
900,
1138,
6343,
870,
34,
3073,
16699,
31,
275,
966,
654,
16699,
2730,
34,
29321,
568,
2413,
1358,
13880,
15,
32532,
15,
681,
16,
50024,
16,
23,
16,
13880,
16,
6682,
16,
5594,
16,
900,
16,
35722,
15,
2974,
32,
261,
14,
22108,
30,
5672,
3,
4060,
568,
2437,
390,
5673,
275,
7626,
15,
900,
1138,
35722,
870,
34,
3073,
16699,
3073,
6721,
31,
187,
870,
11927,
31,
187,
29,
11927,
2730,
6721,
31,
187,
870,
6721,
31,
187,
870,
11927,
31,
187,
870,
6721,
31,
187,
29,
9914,
31,
187,
187,
29,
34,
34487,
568,
10483,
1082,
5264,
8145,
1969,
3073,
34,
2730,
41,
20,
31,
187,
10483,
870,
41,
20,
31,
187,
29,
14364,
31,
187,
4387,
2991,
654,
35,
31,
10483,
870,
35,
31759,
870,
14364,
31,
187,
29,
6721,
31,
187,
29,
11927,
2730,
6721,
31,
187,
29,
15580,
2730,
35,
31,
8546,
1245,
407,
19282,
35,
2730,
11927,
2730,
16699,
2730,
34,
29321,
568,
2413,
1358,
13880,
15,
32532,
15,
681,
16,
50024,
16,
23,
16,
13880,
16,
6682,
16,
5594,
16,
900,
16,
17667,
494,
15,
2974,
32,
261,
14,
22108,
30,
5672,
4,
10483,
46221,
4060,
568,
2437,
390,
5673,
275,
7626,
15,
900,
1138,
10483,
870,
34,
3073,
16699,
31,
275,
5673,
654,
16699,
2730,
34,
29321,
568,
2413,
1358,
13880,
15,
32532,
15,
681,
16,
50024,
16,
23,
16,
13880,
16,
6682,
16,
5594,
16,
900,
16,
17667,
494,
15,
2974,
32,
261,
14,
22108,
30,
5672,
3,
4060,
568,
2437,
390,
5673,
275,
7626,
15,
900,
1138,
17667,
494,
870,
34,
3073,
16699,
2730,
15580,
2730,
35,
31,
5279,
83,
1487,
19282,
35,
2730,
11927,
2730,
16699,
2730,
34,
29321,
568,
2413,
1358,
13880,
15,
32532,
15,
681,
16,
50024,
16,
23,
16,
13880,
16,
6682,
16,
5594,
16,
900,
16,
35722,
15,
2974,
32,
261,
14,
22108,
30,
5672,
4,
10483,
46221,
4060,
568,
2437,
390,
5673,
275,
7626,
15,
900,
1138,
10483,
870,
34,
3073,
16699,
31,
275,
966,
654,
16699,
2730,
34,
29321,
568,
2413,
1358,
13880,
15,
32532,
15,
681,
16,
50024,
16,
23,
16,
13880,
16,
6682,
16,
5594,
16,
900,
16,
35722,
15,
2974,
32,
261,
14,
22108,
30,
5672,
3,
4060,
568,
2437,
390,
5673,
275,
7626,
15,
900,
1138,
35722,
870,
34,
3073,
16699,
3073,
6721,
31,
187,
870,
11927,
31,
187,
29,
11927,
2730,
6721,
31,
187,
870,
6721,
31,
187,
870,
11927,
31,
187,
870,
6721,
31,
187,
29,
9914,
31,
187,
187,
29,
34,
34487,
568,
34459,
1082,
5264,
8145,
1969,
3073,
34,
2730,
41,
20,
31,
187,
34459,
870,
41,
20,
31,
187,
29,
14364,
31,
187,
4387,
2991,
654,
35,
31,
34459,
870,
35,
31759,
870,
14364,
31,
187,
29,
6721,
31,
187,
29,
11927,
2730,
6721,
31,
187,
29,
15580,
2730,
35,
31,
8546,
1245,
407,
19282,
35,
2730,
11927,
2730,
16699,
2730,
34,
29321,
568,
2413,
1358,
13880,
15,
32532,
15,
681,
16,
50024,
16,
23,
16,
13880,
16,
6682,
16,
5594,
16,
900,
16,
6623,
2345,
494,
15,
2974,
32,
261,
14,
22108,
30,
5672,
4,
34459,
46221,
4060,
568,
2437,
390,
5673,
275,
7626,
15,
900,
1138,
34459,
870,
34,
3073,
16699,
31,
275,
5673,
654,
16699,
2730,
34,
29321,
568,
2413,
1358,
13880,
15,
32532,
15,
681,
16,
50024,
16,
23,
16,
13880,
16,
6682,
16,
5594,
16,
900,
16,
6623,
2345,
494,
15,
2974,
32,
261,
14,
22108,
30,
5672,
3,
4060,
568,
2437,
390,
5673,
275,
7626,
15,
900,
1138,
6623,
2345,
494,
870,
34,
3073,
16699,
2730,
15580,
2730,
35,
31,
5279,
83,
1487,
19282,
35,
2730,
11927,
2730,
16699,
2730,
34,
29321,
568,
2413,
1358,
13880,
15,
32532,
15,
681,
16,
50024,
16,
23,
16,
13880,
16,
6682,
16,
5594,
16,
900,
16,
35722,
15,
2974,
32,
261,
14,
22108,
30,
5672,
4,
34459,
46221,
4060,
568,
2437,
390,
5673,
275,
7626,
15,
900,
1138,
34459,
870,
34,
3073,
16699,
31,
275,
966,
654,
16699,
2730,
34,
29321,
568,
2413,
1358,
13880,
15,
32532,
15,
681,
16,
50024,
16,
23,
16,
13880,
16,
6682,
16,
5594,
16,
900,
16,
35722,
15,
2974,
32,
261,
14,
22108,
30,
5672,
3,
4060,
568,
2437,
390,
5673,
275,
7626,
15,
900,
1138,
35722,
870,
34,
3073,
16699,
3073,
6721,
31,
187,
870,
11927,
31,
187,
29,
11927,
2730,
6721,
31,
187,
870,
6721,
31,
187,
870,
11927,
31,
187,
870,
6721,
31,
187,
14219,
209,
33197,
19691,
3481,
28085,
27809,
209,
33197,
6781,
187,
29,
9914,
31,
535,
187,
14219,
209,
6877,
36694,
3481,
378,
31219,
2277,
49412,
31762,
209,
4738,
6781,
187,
29,
34,
34487,
568,
22789,
64,
10492,
5264,
8145,
1969,
3073,
34,
31,
187,
29,
34,
29321,
10817,
19259,
14,
22789,
64,
10492,
3,
4060,
568,
38241,
15034,
4859,
6750,
34,
31,
187,
29,
24608,
378,
24066,
568,
17,
3,
411,
24282,
568,
2313,
28764,
7956,
2293,
49,
19873,
2637,
568,
18,
3,
7956,
2293,
4350,
1934,
2637,
568,
17,
3,
44926,
37387,
187,
29,
3125,
2730,
2851,
4194,
2551,
5473,
20,
8,
2730,
3866,
1511,
568,
1156,
16,
14606,
5264,
8145,
187,
9906,
64,
324,
64,
8780,
426,
346,
16712,
14,
1047,
2251,
2357,
1812,
4148,
36176,
32381,
3664,
187,
3122,
9857,
14,
324,
14,
6795,
1738,
187,
9906,
64,
324,
64,
31873,
426,
346,
2526,
1525,
2385,
2787,
2950,
3664,
187,
9906,
64,
324,
64,
3429,
426,
27812,
28,
187,
9906,
64,
324,
64,
7436,
426,
3925,
28,
187,
605,
22158,
187,
870,
3866,
31,
187,
29,
3866,
1511,
568,
1156,
16,
14606,
3,
187,
7614,
568,
2413,
1358,
6377,
324,
19,
15,
48031,
868,
1362,
69,
8518,
15,
681,
16,
6377,
324,
16,
9029,
64,
6594,
15,
4305,
1138,
187,
870,
3866,
31,
187,
14219,
19483,
6781,
187,
29,
3866,
1511,
568,
1156,
16,
14606,
1138,
187,
2044,
23646,
38156,
15310,
426,
313,
1587,
3614,
5136,
2295,
3389,
15,
12428,
15,
26324,
10,
3736,
346,
3614,
1358,
28908,
449,
1163,
346,
2413,
1358,
2700,
23715,
187,
3306,
15,
6343,
9,
14124,
68,
2259,
22219,
20,
36,
3866,
6740,
5473,
3,
559,
23646,
38156,
15310,
559,
346,
9906,
14,
14983,
27944,
15,
681,
16,
2485,
15,
4305,
8,
1511,
5473,
1156,
16,
14606,
8,
6,
20,
38,
6,
20,
36,
16,
3866,
6,
20,
38,
17378,
187,
870,
3866,
31,
187,
29,
3866,
1511,
568,
1156,
16,
14606,
1138,
187,
14626,
551,
187,
2044,
3239,
43270,
426,
795,
72,
255,
3333,
788,
43270,
1587,
25588,
14,
12434,
24117,
14,
23,
3287,
187,
6377,
43270,
3333,
13712,
10099,
1374,
1874,
187,
94,
5834,
9,
1000,
10,
12166,
187,
870,
3866,
31,
187,
870,
2851,
31,
187,
29,
10989,
21849,
4350,
1539,
30,
19,
49249,
10817,
48919,
3269,
3,
28085,
568,
47296,
10772,
18,
1138,
187,
29,
34,
34487,
568,
22789,
64,
10492,
64,
7053,
736,
5264,
8145,
1969,
3073,
34,
31,
187,
29,
24608,
378,
24066,
568,
17,
3,
7956,
2293,
49,
19873,
2637,
568,
17,
3,
7956,
2293,
4350,
1934,
2637,
568,
20,
3,
44926,
37387,
187,
50276,
29,
3125,
6589,
13003,
568,
9229,
3,
15527,
13003,
568,
3956,
1138,
187,
50276,
29,
10989,
49249,
10817,
48919,
3269,
3,
28085,
568,
47296,
10772,
18,
1138,
50274,
29,
34,
29321,
31779,
39930,
14,
8774,
15,
2974,
5264,
23758,
28085,
568,
47296,
16976,
18,
5264,
35,
31,
35067,
870,
35,
3073,
23758,
3073,
34,
12399,
6732,
13143,
10989,
31,
187,
50276,
29,
10989,
49249,
10817,
48919,
3269,
3,
28085,
568,
47296,
10772,
18,
1138,
50274,
29,
34,
29321,
568,
10708,
14,
8774,
15,
2974,
5264,
23758,
28085,
568,
47296,
16976,
18,
5264,
35,
31,
22113,
870,
35,
3073,
23758,
3073,
34,
12399,
6732,
13143,
10989,
31,
187,
50276,
29,
10989,
49249,
10817,
15651,
3269,
3,
28085,
568,
47296,
10772,
18,
7498,
1138,
708,
6732,
26077,
23758,
28085,
568,
47296,
16976,
18,
7498,
5264,
35,
31,
4947,
870,
35,
3073,
23758,
12399,
6732,
13143,
10989,
31,
187,
50276,
29,
10989,
49249,
10817,
48919,
3269,
3,
28085,
568,
47296,
10772,
18,
1138,
50274,
29,
34,
29321,
568,
2437,
14,
2327,
16,
19117,
6542,
12038,
15,
2974,
5264,
23758,
28085,
568,
47296,
16976,
18,
5264,
35,
31,
11244,
870,
35,
3073,
23758,
3073,
34,
12399,
6732,
13143,
10989,
31,
187,
50276,
29,
10989,
49249,
10817,
48919,
3269,
3,
28085,
568,
47296,
10772,
18,
1138,
50274,
29,
34,
29321,
568,
10708,
14,
12588,
15,
2974,
5264,
23758,
28085,
568,
47296,
16976,
18,
5264,
35,
31,
14444,
870,
35,
3073,
23758,
3073,
34,
12399,
6732,
13143,
10989,
31,
187,
50276,
29,
10989,
49249,
10817,
48919,
3269,
3,
28085,
568,
47296,
10772,
18,
1138,
50274,
29,
34,
29321,
31779,
7955,
18115,
14,
3550,
15,
2974,
5264,
23758,
28085,
568,
47296,
16976,
18,
5264,
35,
31,
39473,
870,
35,
3073,
23758,
3073,
34,
12399,
6732,
13143,
10989,
31,
187,
50276,
29,
10989,
49249,
10817,
48919,
3269,
3,
28085,
568,
47296,
10772,
18,
1138,
50274,
29,
34,
29321,
31779,
4663,
14,
455,
15,
2974,
5264,
23758,
28085,
568,
47296,
16976,
18,
5264,
35,
31,
6060,
870,
35,
3073,
23758,
3073,
34,
12399,
6732,
13143,
10989,
31,
187,
50276,
29,
10989,
49249,
10817,
48919,
3269,
3,
28085,
568,
47296,
10772,
18,
1138,
50274,
29,
34,
29321,
31779,
13070,
14,
7152,
15,
2974,
5264,
23758,
28085,
568,
47296,
16976,
18,
5264,
35,
31,
19576,
870,
35,
3073,
23758,
3073,
34,
12399,
6732,
13143,
10989,
31,
187,
50276,
870,
3125,
31,
187,
870,
24608,
31,
187,
870,
10989,
31,
187,
29,
10989,
6589,
13003,
568,
918,
3,
15527,
13003,
568,
3956,
3,
416,
4290,
4350,
1539,
30,
20,
2730,
3172,
31,
187,
870,
3172,
31,
187,
870,
10989,
31,
187,
870,
3125,
31,
187,
187,
29,
3125,
31,
187,
29,
10989,
49249,
568,
11300,
3,
28085,
568,
47296,
10772,
19,
5264,
23758,
36124,
24539,
19,
1138,
187,
7,
6732,
26077,
34,
29321,
31779,
681,
16,
29762,
16,
26318,
16,
6443,
16,
8906,
16,
10644,
6116,
42447,
15,
8662,
10644,
2548,
15,
2974,
3,
4060,
568,
14379,
275,
389,
15,
29762,
15,
26318,
15,
6443,
15,
8906,
5264,
35,
31,
14364,
55,
28085,
870,
35,
3073,
34,
12399,
6732,
28,
187,
7,
6732,
26077,
34,
29321,
31779,
681,
16,
29762,
16,
26318,
16,
6443,
16,
8906,
16,
9671,
41774,
6140,
2388,
15,
2974,
3,
4060,
568,
2437,
275,
389,
15,
29762,
15,
26318,
15,
6443,
15,
8906,
5264,
35,
31,
30425,
28085,
870,
35,
3073,
34,
3073,
23758,
3073,
10989,
31,
187,
29,
10989,
49249,
568,
11300,
3,
28085,
568,
47296,
10772,
19,
5264,
23758,
36124,
24539,
19,
1138,
187,
50276,
29,
34,
29321,
31779,
4663,
15,
2974,
32,
681,
16,
29762,
16,
26318,
16,
6443,
16,
8906,
16,
19117,
6542,
12038,
15,
2974,
3,
2303,
23604,
3956,
5264,
35,
31,
6764,
37743,
870,
35,
3073,
34,
31,
50276,
7,
6732,
28,
187,
7,
6732,
26077,
34,
29321,
568,
19117,
6542,
12038,
15,
2974,
3,
2303,
23604,
3956,
5264,
35,
31,
7716,
7499,
37743,
870,
35,
3073,
34,
31,
50276,
7,
6732,
28,
187,
7,
6732,
26077,
52,
22068,
1511,
568,
1156,
16,
14606,
1138,
187,
50276,
14219,
187,
50276,
338,
9,
13686,
381,
3956,
10,
551,
187,
50274,
3306,
15,
8510,
33332,
45635,
34,
29321,
31779,
455,
19770,
14,
2369,
6301,
15,
2974,
5264,
35,
31,
3074,
45227,
870,
35,
3073,
34,
31,
5137,
187,
50276,
94,
187,
50276,
605,
22158,
187,
870,
52,
22068,
31,
187,
29,
22398,
22068,
31,
187,
50276,
29,
34,
29321,
31779,
455,
19770,
14,
2369,
6301,
15,
2974,
5264,
35,
31,
3074,
45227,
870,
35,
3073,
34,
31,
187,
870,
22398,
22068,
31,
535,
187,
870,
23758,
3073,
10989,
31,
187,
870,
3125,
31,
187,
29,
3125,
31,
187,
29,
10989,
15527,
13003,
568,
3956,
3,
28085,
568,
47296,
10772,
20,
5264,
23758,
36124,
24539,
19,
1138,
187,
50276,
35111,
32944,
44662,
6732,
28,
6603,
1267,
1703,
7,
6732,
45599,
7,
6732,
28,
32704,
7,
6732,
45599,
7,
6732,
26077,
34,
29321,
10817,
36073,
64,
8774,
1138,
5707,
9639,
870,
34,
12399,
6732,
45599,
7,
6732,
26077,
34,
29321,
10817,
9349,
64,
8774,
1138,
32781,
870,
34,
3073,
23758,
3073,
10989,
31,
187,
29,
10989,
15527,
13003,
568,
3956,
3,
28085,
568,
47296,
10772,
20,
5264,
23758,
36124,
24539,
19,
1138,
187,
35468,
22823,
44662,
6732,
28,
32704,
7,
6732,
45599,
7,
6732,
26077,
34,
29321,
10817,
36073,
64,
20119,
1138,
5707,
9639,
870,
34,
12399,
6732,
45599,
7,
6732,
26077,
34,
29321,
10817,
9349,
64,
20119,
1138,
32781,
870,
34,
3073,
23758,
3073,
10989,
31,
187,
870,
3125,
31,
187,
870,
24608,
31,
187,
29,
34,
34487,
568,
19259,
14,
22789,
64,
10492,
6750,
34,
31,
187,
14219,
209,
822,
19691,
3481,
378,
31219,
2277,
49412,
31762,
209,
6877,
6781,
187,
187,
29,
9914,
31,
187,
20968,
40114,
17809,
28,
4050,
654,
66,
3860,
568,
2413,
1358,
29762,
15,
681,
1138,
29762,
15,
681,
870,
66,
13208,
1876,
12484,
32997,
15,
187,
870,
35,
35867,
31,
187,
870,
15597,
31,
187
] | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.6.0_31) on Mon May 14 18:45:49 PDT 2012 -->
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
<TITLE>
ByteArrayBuilder (Jackson-core 2.0.2 API)
</TITLE>
<META NAME="date" CONTENT="2012-05-14">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="ByteArrayBuilder (Jackson-core 2.0.2 API)";
}
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<HR>
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/ByteArrayBuilder.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><script type="text/javascript"><!--
google_ad_client = "pub-1467773697956887";
/* Jackson-ad-small */
google_ad_slot = "6699487946";
google_ad_width = 234;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../com/fasterxml/jackson/core/util/BufferRecycler.CharBufferType.html" title="enum in com.fasterxml.jackson.core.util"><B>PREV CLASS</B></A>
<A HREF="../../../../../com/fasterxml/jackson/core/util/DefaultPrettyPrinter.html" title="class in com.fasterxml.jackson.core.util"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../index.html?com/fasterxml/jackson/core/util/ByteArrayBuilder.html" target="_top"><B>FRAMES</B></A>
<A HREF="ByteArrayBuilder.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
SUMMARY: NESTED | FIELD | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: FIELD | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<!-- ======== START OF CLASS DATA ======== -->
<H2>
<FONT SIZE="-1">
com.fasterxml.jackson.core.util</FONT>
<BR>
Class ByteArrayBuilder</H2>
<PRE>
<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">java.lang.Object</A>
<IMG SRC="../../../../../resources/inherit.gif" ALT="extended by "><A HREF="http://docs.oracle.com/javase/6/docs/api/java/io/OutputStream.html?is-external=true" title="class or interface in java.io">java.io.OutputStream</A>
<IMG SRC="../../../../../resources/inherit.gif" ALT="extended by "><B>com.fasterxml.jackson.core.util.ByteArrayBuilder</B>
</PRE>
<DL>
<DT><B>All Implemented Interfaces:</B> <DD><A HREF="http://docs.oracle.com/javase/6/docs/api/java/io/Closeable.html?is-external=true" title="class or interface in java.io">Closeable</A>, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/io/Flushable.html?is-external=true" title="class or interface in java.io">Flushable</A></DD>
</DL>
<HR>
<DL>
<DT><PRE>public final class <B>ByteArrayBuilder</B><DT>extends <A HREF="http://docs.oracle.com/javase/6/docs/api/java/io/OutputStream.html?is-external=true" title="class or interface in java.io">OutputStream</A></DL>
</PRE>
<P>
Helper class that is similar to <A HREF="http://docs.oracle.com/javase/6/docs/api/java/io/ByteArrayOutputStream.html?is-external=true" title="class or interface in java.io"><CODE>ByteArrayOutputStream</CODE></A>
in usage, but more geared to Jackson use cases internally.
Specific changes include segment storage (no need to have linear
backing buffer, can avoid reallocs, copying), as well API
not based on <A HREF="http://docs.oracle.com/javase/6/docs/api/java/io/OutputStream.html?is-external=true" title="class or interface in java.io"><CODE>OutputStream</CODE></A>. In short, a very much
specialized builder object.
<p>
Since version 1.5, also implements <A HREF="http://docs.oracle.com/javase/6/docs/api/java/io/OutputStream.html?is-external=true" title="class or interface in java.io"><CODE>OutputStream</CODE></A> to allow
efficient aggregation of output content as a byte array, similar
to how <A HREF="http://docs.oracle.com/javase/6/docs/api/java/io/ByteArrayOutputStream.html?is-external=true" title="class or interface in java.io"><CODE>ByteArrayOutputStream</CODE></A> works, but somewhat more
efficiently for many use cases.
<P>
<P>
<HR>
<P>
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<A NAME="constructor_summary"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Constructor Summary</B></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><B><A HREF="../../../../../com/fasterxml/jackson/core/util/ByteArrayBuilder.html#ByteArrayBuilder()">ByteArrayBuilder</A></B>()</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><B><A HREF="../../../../../com/fasterxml/jackson/core/util/ByteArrayBuilder.html#ByteArrayBuilder(com.fasterxml.jackson.core.util.BufferRecycler)">ByteArrayBuilder</A></B>(<A HREF="../../../../../com/fasterxml/jackson/core/util/BufferRecycler.html" title="class in com.fasterxml.jackson.core.util">BufferRecycler</A> br)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><B><A HREF="../../../../../com/fasterxml/jackson/core/util/ByteArrayBuilder.html#ByteArrayBuilder(com.fasterxml.jackson.core.util.BufferRecycler, int)">ByteArrayBuilder</A></B>(<A HREF="../../../../../com/fasterxml/jackson/core/util/BufferRecycler.html" title="class in com.fasterxml.jackson.core.util">BufferRecycler</A> br,
int firstBlockSize)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><B><A HREF="../../../../../com/fasterxml/jackson/core/util/ByteArrayBuilder.html#ByteArrayBuilder(int)">ByteArrayBuilder</A></B>(int firstBlockSize)</CODE>
<BR>
</TD>
</TR>
</TABLE>
<!-- ========== METHOD SUMMARY =========== -->
<A NAME="method_summary"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Method Summary</B></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/fasterxml/jackson/core/util/ByteArrayBuilder.html#append(int)">append</A></B>(int i)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/fasterxml/jackson/core/util/ByteArrayBuilder.html#appendThreeBytes(int)">appendThreeBytes</A></B>(int b24)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/fasterxml/jackson/core/util/ByteArrayBuilder.html#appendTwoBytes(int)">appendTwoBytes</A></B>(int b16)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/fasterxml/jackson/core/util/ByteArrayBuilder.html#close()">close</A></B>()</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> byte[]</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/fasterxml/jackson/core/util/ByteArrayBuilder.html#completeAndCoalesce(int)">completeAndCoalesce</A></B>(int lastBlockLength)</CODE>
<BR>
Method that will complete "manual" output process, coalesce
content (if necessary) and return results as a contiguous buffer.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> byte[]</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/fasterxml/jackson/core/util/ByteArrayBuilder.html#finishCurrentSegment()">finishCurrentSegment</A></B>()</CODE>
<BR>
Method called when the current segment buffer is full; will
append to current contents, allocate a new segment buffer
and return it</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/fasterxml/jackson/core/util/ByteArrayBuilder.html#flush()">flush</A></B>()</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> byte[]</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/fasterxml/jackson/core/util/ByteArrayBuilder.html#getCurrentSegment()">getCurrentSegment</A></B>()</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/fasterxml/jackson/core/util/ByteArrayBuilder.html#getCurrentSegmentLength()">getCurrentSegmentLength</A></B>()</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/fasterxml/jackson/core/util/ByteArrayBuilder.html#release()">release</A></B>()</CODE>
<BR>
Clean up method to call to release all buffers this object may be
using.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/fasterxml/jackson/core/util/ByteArrayBuilder.html#reset()">reset</A></B>()</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> byte[]</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/fasterxml/jackson/core/util/ByteArrayBuilder.html#resetAndGetFirstSegment()">resetAndGetFirstSegment</A></B>()</CODE>
<BR>
Method called when starting "manual" output: will clear out
current state and return the first segment buffer to fill</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/fasterxml/jackson/core/util/ByteArrayBuilder.html#setCurrentSegmentLength(int)">setCurrentSegmentLength</A></B>(int len)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> byte[]</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/fasterxml/jackson/core/util/ByteArrayBuilder.html#toByteArray()">toByteArray</A></B>()</CODE>
<BR>
Method called when results are finalized and we can get the
full aggregated result buffer to return to the caller</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/fasterxml/jackson/core/util/ByteArrayBuilder.html#write(byte[])">write</A></B>(byte[] b)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/fasterxml/jackson/core/util/ByteArrayBuilder.html#write(byte[], int, int)">write</A></B>(byte[] b,
int off,
int len)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/fasterxml/jackson/core/util/ByteArrayBuilder.html#write(int)">write</A></B>(int b)</CODE>
<BR>
</TD>
</TR>
</TABLE>
<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left"><B>Methods inherited from class java.lang.<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</A></B></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang">clone</A>, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang">equals</A>, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang">finalize</A>, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang">getClass</A>, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang">hashCode</A>, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang">notify</A>, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang">notifyAll</A>, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang">toString</A>, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang">wait</A>, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang">wait</A>, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#wait(long, int)" title="class or interface in java.lang">wait</A></CODE></TD>
</TR>
</TABLE>
<P>
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<A NAME="constructor_detail"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
<B>Constructor Detail</B></FONT></TH>
</TR>
</TABLE>
<A NAME="ByteArrayBuilder()"><!-- --></A><H3>
ByteArrayBuilder</H3>
<PRE>
public <B>ByteArrayBuilder</B>()</PRE>
<DL>
</DL>
<HR>
<A NAME="ByteArrayBuilder(com.fasterxml.jackson.core.util.BufferRecycler)"><!-- --></A><H3>
ByteArrayBuilder</H3>
<PRE>
public <B>ByteArrayBuilder</B>(<A HREF="../../../../../com/fasterxml/jackson/core/util/BufferRecycler.html" title="class in com.fasterxml.jackson.core.util">BufferRecycler</A> br)</PRE>
<DL>
</DL>
<HR>
<A NAME="ByteArrayBuilder(int)"><!-- --></A><H3>
ByteArrayBuilder</H3>
<PRE>
public <B>ByteArrayBuilder</B>(int firstBlockSize)</PRE>
<DL>
</DL>
<HR>
<A NAME="ByteArrayBuilder(com.fasterxml.jackson.core.util.BufferRecycler, int)"><!-- --></A><H3>
ByteArrayBuilder</H3>
<PRE>
public <B>ByteArrayBuilder</B>(<A HREF="../../../../../com/fasterxml/jackson/core/util/BufferRecycler.html" title="class in com.fasterxml.jackson.core.util">BufferRecycler</A> br,
int firstBlockSize)</PRE>
<DL>
</DL>
<!-- ============ METHOD DETAIL ========== -->
<A NAME="method_detail"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
<B>Method Detail</B></FONT></TH>
</TR>
</TABLE>
<A NAME="reset()"><!-- --></A><H3>
reset</H3>
<PRE>
public void <B>reset</B>()</PRE>
<DL>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="release()"><!-- --></A><H3>
release</H3>
<PRE>
public void <B>release</B>()</PRE>
<DL>
<DD>Clean up method to call to release all buffers this object may be
using. After calling the method, no other accessors can be used (and
attempt to do so may result in an exception)
<P>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="append(int)"><!-- --></A><H3>
append</H3>
<PRE>
public void <B>append</B>(int i)</PRE>
<DL>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="appendTwoBytes(int)"><!-- --></A><H3>
appendTwoBytes</H3>
<PRE>
public void <B>appendTwoBytes</B>(int b16)</PRE>
<DL>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="appendThreeBytes(int)"><!-- --></A><H3>
appendThreeBytes</H3>
<PRE>
public void <B>appendThreeBytes</B>(int b24)</PRE>
<DL>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="toByteArray()"><!-- --></A><H3>
toByteArray</H3>
<PRE>
public byte[] <B>toByteArray</B>()</PRE>
<DL>
<DD>Method called when results are finalized and we can get the
full aggregated result buffer to return to the caller
<P>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="resetAndGetFirstSegment()"><!-- --></A><H3>
resetAndGetFirstSegment</H3>
<PRE>
public byte[] <B>resetAndGetFirstSegment</B>()</PRE>
<DL>
<DD>Method called when starting "manual" output: will clear out
current state and return the first segment buffer to fill
<P>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="finishCurrentSegment()"><!-- --></A><H3>
finishCurrentSegment</H3>
<PRE>
public byte[] <B>finishCurrentSegment</B>()</PRE>
<DL>
<DD>Method called when the current segment buffer is full; will
append to current contents, allocate a new segment buffer
and return it
<P>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="completeAndCoalesce(int)"><!-- --></A><H3>
completeAndCoalesce</H3>
<PRE>
public byte[] <B>completeAndCoalesce</B>(int lastBlockLength)</PRE>
<DL>
<DD>Method that will complete "manual" output process, coalesce
content (if necessary) and return results as a contiguous buffer.
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>lastBlockLength</CODE> - Amount of content in the current segment
buffer.
<DT><B>Returns:</B><DD>Coalesced contents</DL>
</DD>
</DL>
<HR>
<A NAME="getCurrentSegment()"><!-- --></A><H3>
getCurrentSegment</H3>
<PRE>
public byte[] <B>getCurrentSegment</B>()</PRE>
<DL>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="setCurrentSegmentLength(int)"><!-- --></A><H3>
setCurrentSegmentLength</H3>
<PRE>
public void <B>setCurrentSegmentLength</B>(int len)</PRE>
<DL>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="getCurrentSegmentLength()"><!-- --></A><H3>
getCurrentSegmentLength</H3>
<PRE>
public int <B>getCurrentSegmentLength</B>()</PRE>
<DL>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="write(byte[])"><!-- --></A><H3>
write</H3>
<PRE>
public void <B>write</B>(byte[] b)</PRE>
<DL>
<DD><DL>
<DT><B>Overrides:</B><DD><CODE><A HREF="http://docs.oracle.com/javase/6/docs/api/java/io/OutputStream.html?is-external=true#write(byte[])" title="class or interface in java.io">write</A></CODE> in class <CODE><A HREF="http://docs.oracle.com/javase/6/docs/api/java/io/OutputStream.html?is-external=true" title="class or interface in java.io">OutputStream</A></CODE></DL>
</DD>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="write(byte[], int, int)"><!-- --></A><H3>
write</H3>
<PRE>
public void <B>write</B>(byte[] b,
int off,
int len)</PRE>
<DL>
<DD><DL>
<DT><B>Overrides:</B><DD><CODE><A HREF="http://docs.oracle.com/javase/6/docs/api/java/io/OutputStream.html?is-external=true#write(byte[], int, int)" title="class or interface in java.io">write</A></CODE> in class <CODE><A HREF="http://docs.oracle.com/javase/6/docs/api/java/io/OutputStream.html?is-external=true" title="class or interface in java.io">OutputStream</A></CODE></DL>
</DD>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="write(int)"><!-- --></A><H3>
write</H3>
<PRE>
public void <B>write</B>(int b)</PRE>
<DL>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="http://docs.oracle.com/javase/6/docs/api/java/io/OutputStream.html?is-external=true#write(int)" title="class or interface in java.io">write</A></CODE> in class <CODE><A HREF="http://docs.oracle.com/javase/6/docs/api/java/io/OutputStream.html?is-external=true" title="class or interface in java.io">OutputStream</A></CODE></DL>
</DD>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="close()"><!-- --></A><H3>
close</H3>
<PRE>
public void <B>close</B>()</PRE>
<DL>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="http://docs.oracle.com/javase/6/docs/api/java/io/Closeable.html?is-external=true#close()" title="class or interface in java.io">close</A></CODE> in interface <CODE><A HREF="http://docs.oracle.com/javase/6/docs/api/java/io/Closeable.html?is-external=true" title="class or interface in java.io">Closeable</A></CODE><DT><B>Overrides:</B><DD><CODE><A HREF="http://docs.oracle.com/javase/6/docs/api/java/io/OutputStream.html?is-external=true#close()" title="class or interface in java.io">close</A></CODE> in class <CODE><A HREF="http://docs.oracle.com/javase/6/docs/api/java/io/OutputStream.html?is-external=true" title="class or interface in java.io">OutputStream</A></CODE></DL>
</DD>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="flush()"><!-- --></A><H3>
flush</H3>
<PRE>
public void <B>flush</B>()</PRE>
<DL>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="http://docs.oracle.com/javase/6/docs/api/java/io/Flushable.html?is-external=true#flush()" title="class or interface in java.io">flush</A></CODE> in interface <CODE><A HREF="http://docs.oracle.com/javase/6/docs/api/java/io/Flushable.html?is-external=true" title="class or interface in java.io">Flushable</A></CODE><DT><B>Overrides:</B><DD><CODE><A HREF="http://docs.oracle.com/javase/6/docs/api/java/io/OutputStream.html?is-external=true#flush()" title="class or interface in java.io">flush</A></CODE> in class <CODE><A HREF="http://docs.oracle.com/javase/6/docs/api/java/io/OutputStream.html?is-external=true" title="class or interface in java.io">OutputStream</A></CODE></DL>
</DD>
<DD><DL>
</DL>
</DD>
</DL>
<!-- ========= END OF CLASS DATA ========= -->
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR><td rowspan='3'><script type="text/javascript"><!--
google_ad_client = "pub-1467773697956887";
/* Jackson-ad-small */
google_ad_slot = "6699487946";
google_ad_width = 234;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
<!-- GA -->
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-140287-6");
pageTracker._trackPageview();
} catch(err) {}
</script>
</td>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/ByteArrayBuilder.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../com/fasterxml/jackson/core/util/BufferRecycler.CharBufferType.html" title="enum in com.fasterxml.jackson.core.util"><B>PREV CLASS</B></A>
<A HREF="../../../../../com/fasterxml/jackson/core/util/DefaultPrettyPrinter.html" title="class in com.fasterxml.jackson.core.util"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../index.html?com/fasterxml/jackson/core/util/ByteArrayBuilder.html" target="_top"><B>FRAMES</B></A>
<A HREF="ByteArrayBuilder.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
SUMMARY: NESTED | FIELD | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: FIELD | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
Copyright © 2012 <a href="http://fasterxml.com">fasterxml.com</a>. All Rights Reserved.
</BODY>
</HTML>
|
214,489 | Github | [
338,
308,
24587,
64,
38925,
42,
187,
187,
5397,
322,
6328,
64,
9989,
10449,
187,
186,
6986,
346,
4066,
74,
3,
187,
187,
5397,
322,
6328,
64,
55,
8112,
1372,
187,
186,
6986,
346,
42180,
3,
187,
187,
5397,
322,
6328,
64,
15365,
64,
9536,
187,
186,
6986,
346,
38925,
42,
3,
187,
187,
7287,
187
] | if TARGET_PATI
config SYS_BOARD
default "pati"
config SYS_VENDOR
default "mpl"
config SYS_CONFIG_NAME
default "PATI"
endif
|
214,490 | Github | [
9,
3182,
313,
11145,
14,
6301,
4903,
2193,
10,
187,
50276,
9,
338,
313,
8629,
32,
4903,
10,
187,
50274,
8,
1082,
187,
50274,
9,
5040,
187,
50272,
9,
5040,
313,
5546,
4903,
10,
313,
5546,
2193,
1228,
187,
50272,
9,
11145,
14,
6301,
313,
2428,
83,
4903,
10,
313,
2428,
83,
2193,
1228,
10689,
187,
187,
9,
3182,
313,
7053,
14,
13018,
3665,
10,
187,
50276,
9,
5546,
3665,
1228,
187,
9,
3182,
313,
1120,
14,
13245,
723,
3665,
10,
187,
50276,
9,
2428,
83,
3665,
1228,
187,
9,
3182,
313,
1911,
14,
13018,
14,
936,
14,
6301,
2,
945,
821,
3665,
10,
187,
50276,
9,
5040,
313,
5040,
945,
821,
10,
3665,
1228,
187,
187,
28,
9017,
14,
20034,
209,
14274,
47905,
16818,
108,
43316,
187,
9,
3182,
313,
31930,
14,
20034,
41665,
821,
84,
2613,
14,
12540,
10,
187,
50276,
9,
338,
34980,
313,
3985,
41665,
10,
313,
3985,
821,
84,
1228,
187,
50274,
9,
5040,
313,
11145,
14,
6301,
41665,
821,
84,
10,
2613,
14,
12540,
10,
187,
50274,
9,
338,
16616,
313,
3985,
41665,
10,
313,
3985,
821,
84,
1228,
187,
50272,
9,
3775,
346,
25643,
1142,
7125,
12164,
3,
41665,
821,
84,
10,
187,
50272,
9,
3775,
346,
25643,
1643,
7125,
12164,
3,
41665,
821,
84,
27483,
187,
187,
9,
3182,
313,
26178,
14,
18645,
14,
2877,
945,
17400,
10,
187,
50276,
9,
3182,
313,
12540,
14,
14075,
17400,
10,
187,
50274,
9,
3182,
313,
22798,
3665,
10,
187,
50272,
9,
1038,
6048,
8629,
32,
3665,
10,
187,
50264,
9,
12540,
14,
14075,
313,
257,
49209,
14,
20034,
17400,
1228,
187,
50266,
4464,
2574,
32,
945,
313,
5546,
313,
7053,
14,
13018,
3665,
10689,
187,
50264,
9,
2428,
83,
313,
7053,
14,
13018,
3665,
10689,
187,
50266,
9,
7271,
313,
22798,
313,
1120,
14,
13245,
723,
3665,
27483,
1228,
187,
50274,
9,
338,
313,
2574,
32,
17400,
253,
14,
11004,
14,
20034,
10,
187,
50272,
9,
3775,
346,
2447,
9458,
4778,
346,
945,
10,
187,
50272,
9,
1059,
6048,
6301,
313,
7053,
14,
6301,
17400,
1228,
187,
50270,
9,
22798,
3665,
1228,
10689,
187,
50276,
9,
12540,
14,
14075,
17400,
1228,
187,
9,
3182,
313,
1178,
14,
18645,
14,
2877,
2,
945,
821,
17400,
10,
187,
50276,
9,
3182,
313,
12540,
14,
14075,
17400,
10,
187,
50274,
9,
3182,
313,
22798,
3665,
10,
187,
50272,
9,
1038,
6048,
8629,
32,
3665,
10,
187,
50264,
9,
12540,
14,
14075,
313,
257,
49209,
14,
20034,
17400,
1228,
187,
50266,
4464,
2574,
32,
945,
313,
5546,
313,
7053,
14,
13018,
3665,
10689,
187,
50264,
9,
1178,
14,
2428,
83,
2,
313,
7053,
14,
13018,
3665,
10,
821,
1228,
187,
50266,
9,
7271,
313,
22798,
313,
1120,
14,
13245,
723,
3665,
27483,
1228,
187,
50274,
9,
338,
313,
2574,
32,
17400,
253,
14,
11004,
14,
20034,
10,
187,
50272,
9,
3775,
346,
2447,
9458,
4778,
346,
945,
10,
187,
50272,
9,
1059,
6048,
6301,
313,
7053,
14,
6301,
17400,
1228,
187,
50270,
9,
22798,
3665,
1228,
10689,
187,
50276,
9,
12540,
14,
14075,
17400,
1228,
187,
9,
3182,
313,
3182,
14,
18645,
2,
945,
821,
17400,
10,
187,
50276,
9,
1059,
6048,
6301,
313,
7053,
14,
6301,
17400,
10689,
187,
50274,
9,
3182,
313,
22798,
3665,
10,
187,
50272,
9,
1038,
6048,
8629,
32,
3665,
10,
187,
50264,
9,
1911,
14,
13018,
14,
936,
14,
6301,
2,
945,
821,
3665,
1228,
187,
50266,
4464,
2574,
32,
945,
313,
5546,
313,
7053,
14,
13018,
3665,
10689,
187,
50264,
9,
1178,
14,
2428,
83,
2,
313,
7053,
14,
13018,
3665,
10,
821,
1228,
187,
50266,
9,
7271,
313,
22798,
313,
1120,
14,
13245,
723,
3665,
1228,
10689,
187,
50274,
9,
22798,
313,
7053,
14,
6301,
17400,
27483,
187
] | (define (make-frame variables values)
(if (null? variables)
'()
(cons
(cons (car variables) (car values))
(make-frame (cdr variables) (cdr values)))))
(define (first-binding frame)
(car frame))
(define (rest-bindings frame)
(cdr frame))
(define (add-binding-to-frame! var val frame)
(cons (cons var val) frame))
; extend-environment 不需要修改
(define (extend-environment vars vals base-env)
(if (= (length vars) (length vals))
(cons (make-frame vars vals) base-env)
(if (< (length vars) (length vals))
(error "Too many arguments supplied" vars vals)
(error "Too few arguments supplied" vars vals))))
(define (lookup-variable-value var env)
(define (env-loop env)
(define (scan frame)
(cond ((null? frame)
(env-loop (enclosing-environment env))
((eq? var (car (first-binding frame)))
(cdr (first-binding frame)))
(else (scan (rest-bindings frame))))))
(if (eq? env the-empty-environment)
(error "Unbound variable " var)
(let ((frame (first-frame env))
(scan frame)))))
(env-loop env))
(define (set-variable-value! var val env)
(define (env-loop env)
(define (scan frame)
(cond ((null? frame)
(env-loop (enclosing-environment env))
((eq? var (car (first-binding frame)))
(set-cdr! (first-binding frame) val))
(else (scan (rest-bindings frame))))))
(if (eq? env the-empty-environment)
(error "Unbound variable " var)
(let ((frame (first-frame env))
(scan frame)))))
(env-loop env))
(define (define-variable! var val env)
(let ((frame (first-frame env)))
(define (scan frame)
(cond ((null? frame)
(add-binding-to-frame! var val frame))
((eq? var (car (first-binding frame)))
(set-cdr! (first-binding frame) val))
(else (scan (rest-bindings frame)))))
(scan (first-frame env))))
|
214,491 | Github | [
3474,
551,
4138,
748,
426,
2430,
2073,
348,
2284,
5137,
187,
3474,
14390,
12094,
7557,
426,
2430,
2073,
4598,
7614,
16,
7265,
14,
7404,
16,
12083,
14,
12467,
14,
1282,
5137,
187,
187,
49027,
2073,
12083,
12094,
7557,
1383,
6734,
3001,
551,
187,
50276,
49027,
2073,
9453,
1969,
11317,
14,
20238,
310,
417,
4817,
1383,
6734,
3001,
551,
187,
50274,
262,
2073,
35422,
265,
7125,
347,
2622,
1383,
6734,
3001,
551,
187,
50272,
3474,
13059,
426,
14390,
12094,
7557,
8850,
187,
50270,
17035,
69,
1383,
187,
50270,
8,
283,
22768,
1383,
187,
50270,
8,
283,
2566,
1383,
187,
50270,
39618,
8826,
16,
3967,
1383,
187,
50270,
8,
14054,
1358,
2566,
16,
6434,
1383,
187,
50270,
8,
14054,
1358,
977,
16,
6434,
8,
187,
50272,
9259,
187,
50272,
8271,
15,
261,
5088,
9,
8854,
15,
3620,
10715,
558,
187,
50272,
8271,
15,
261,
5088,
9,
8854,
15,
22768,
10715,
558,
187,
50272,
8271,
15,
261,
5088,
9,
8854,
15,
2566,
558,
187,
50272,
8271,
15,
22412,
12827,
9,
8854,
15,
321,
5200,
1992,
9807,
13,
544,
187,
50270,
8,
14054,
1358,
2566,
16,
6434,
1383,
187,
50270,
8,
14054,
1358,
977,
16,
6434,
8,
187,
50272,
9259,
187,
50272,
8271,
15,
22412,
12827,
9,
8854,
15,
34605,
1992,
9807,
13,
14412,
16,
8826,
16,
3967,
34419,
187,
50274,
9897,
187,
50276,
9897,
535,
50276,
49027,
2073,
9453,
1969,
11317,
14,
20238,
310,
4817,
1383,
6734,
3001,
551,
187,
50274,
262,
2073,
525,
2324,
643,
7125,
285,
7787,
281,
581,
10611,
1383,
6734,
3001,
551,
187,
50272,
3474,
13059,
426,
14390,
12094,
7557,
8850,
187,
50270,
17035,
69,
1383,
187,
50270,
8,
283,
11317,
14,
20238,
1383,
187,
50270,
8,
283,
22768,
1383,
187,
50270,
8,
283,
2566,
1383,
187,
50270,
39618,
8826,
16,
3967,
1383,
187,
50270,
8,
14054,
1358,
2566,
16,
6434,
1383,
187,
50270,
8,
14054,
1358,
977,
16,
6434,
8,
187,
50272,
9259,
187,
50272,
8271,
15,
261,
2447,
7769,
9,
8854,
15,
3620,
10715,
558,
187,
50272,
8271,
15,
261,
2447,
7769,
9,
8854,
15,
22768,
10715,
558,
187,
50272,
8271,
15,
261,
2447,
7769,
9,
8854,
15,
2566,
558,
187,
50272,
8271,
15,
22412,
12827,
9,
8854,
15,
321,
5200,
1992,
9807,
13,
14412,
14054,
1358,
2566,
16,
6434,
34419,
187,
50272,
8271,
15,
22412,
12827,
9,
8854,
15,
34605,
1992,
9807,
13,
8168,
558,
187,
50274,
9897,
187,
50276,
9897,
187,
9897,
187
] | const { assert } = require('chai');
const parseCommandLine = require('../../src/main-process/parse-command-line');
describe('parseCommandLine', () => {
describe('when --uri-handler is not passed', () => {
it('parses arguments as normal', () => {
const args = parseCommandLine([
'-d',
'--safe',
'--test',
'/some/path',
'atom://test/url',
'atom://other/url'
]);
assert.isTrue(args.devMode);
assert.isTrue(args.safeMode);
assert.isTrue(args.test);
assert.deepEqual(args.urlsToOpen, [
'atom://test/url',
'atom://other/url'
]);
assert.deepEqual(args.pathsToOpen, ['/some/path']);
});
});
describe('when --uri-handler is passed', () => {
it('ignores other arguments and limits to one URL', () => {
const args = parseCommandLine([
'-d',
'--uri-handler',
'--safe',
'--test',
'/some/path',
'atom://test/url',
'atom://other/url'
]);
assert.isUndefined(args.devMode);
assert.isUndefined(args.safeMode);
assert.isUndefined(args.test);
assert.deepEqual(args.urlsToOpen, ['atom://test/url']);
assert.deepEqual(args.pathsToOpen, []);
});
});
});
|
214,492 | Github | [
4,
8283,
313,
68,
10,
6745,
13,
3690,
15,
285,
697,
35751,
15,
187,
4,
187,
4,
831,
2603,
2127,
310,
17236,
762,
253,
20695,
7981,
1119,
275,
253,
187,
4,
21826,
1873,
275,
253,
5230,
9617,
273,
436,
2603,
5202,
15,
187,
187,
4,
2,
1227,
11919,
16,
4805,
16,
12540,
15548,
19,
187,
187,
2948,
7684,
187,
2948,
36950,
347,
15749,
187,
4064,
1111,
14095,
4658,
1395,
7239,
14095,
187,
187,
2948,
294,
187,
187,
4064,
1736,
12083,
1395,
35876,
4511,
535,
187,
4,
253,
9617,
908,
275,
1408,
64,
251,
64,
24670,
15,
31333,
187,
3169,
343,
426,
17882,
78,
2649,
16,
8625,
16,
72,
3671,
2284,
14,
26139,
16,
2284,
14,
4399,
16,
15987,
16,
2056,
394,
1944,
84,
16,
31591,
64,
455,
64,
400,
71,
44670,
187,
2808,
7341,
426,
1754,
343,
559,
686,
43975,
44670,
535,
187,
4,
534,
7484,
281,
3453,
187,
5470,
426,
686,
2760,
1136,
18,
35,
8,
187,
3211,
64,
3281,
426,
854,
2756,
187,
1545,
5085,
907,
9,
4663,
2364,
2262,
187,
50274,
32488,
1979,
273,
581,
4972,
275,
253,
3605,
12251,
187,
50274,
6972,
426,
294,
15,
8992,
2073,
20011,
49392,
1035,
61,
69,
15020,
1383,
3605,
2364,
10,
187,
50274,
338,
5497,
27,
187,
50270,
2309,
540,
9,
6972,
15,
4399,
9,
18,
1228,
187,
50274,
338,
3605,
2364,
15,
1727,
3113,
2073,
50185,
25,
46976,
187,
50270,
11209,
64,
468,
64,
69,
426,
854,
187,
50274,
44779,
3605,
2364,
15,
1727,
3113,
2073,
50185,
21,
46976,
187,
50270,
11209,
64,
468,
64,
69,
426,
577,
187,
50274,
44779,
3605,
2364,
15,
1727,
3113,
2073,
50185,
16983,
1036,
46976,
187,
50270,
11209,
64,
468,
64,
69,
426,
1668,
187,
50274,
7271,
27,
187,
50270,
8271,
16708,
187,
50274,
6972,
426,
294,
15,
8992,
2073,
5077,
1277,
1035,
61,
69,
12,
582,
5929,
1383,
3605,
2364,
10,
187,
50274,
338,
5497,
27,
187,
50270,
2309,
9886,
64,
468,
64,
69,
475,
540,
9,
6972,
15,
4399,
9,
18,
1228,
1227,
854,
187,
50274,
6972,
426,
294,
15,
8992,
2073,
2795,
50,
3353,
69,
12,
64,
1035,
61,
69,
12,
582,
5929,
1383,
3605,
2364,
10,
187,
50274,
338,
5497,
27,
187,
50270,
2309,
9886,
64,
468,
64,
69,
475,
540,
9,
6972,
15,
4399,
9,
18,
1228,
1227,
854,
187,
50274,
6972,
426,
294,
15,
8992,
2073,
14253,
1035,
61,
69,
12,
582,
5929,
1383,
3605,
2364,
10,
187,
50274,
338,
5497,
27,
187,
50270,
2309,
9886,
64,
468,
64,
69,
475,
540,
9,
6972,
15,
4399,
9,
18,
1228,
1227,
854,
187,
50274,
8271,
16708,
535,
187,
1545,
277,
1768,
907,
64,
4064,
64,
1590,
9,
5470,
1590,
2262,
187,
50274,
84,
2375,
84,
426,
551,
187,
50270,
8,
18,
35,
5295,
884,
424,
26,
13,
187,
50270,
8,
2313,
46,
5295,
884,
424,
25,
13,
187,
50270,
8,
740,
46,
5295,
884,
424,
24,
13,
187,
50270,
8,
18,
46,
5295,
884,
424,
23,
13,
187,
50274,
94,
187,
50274,
1542,
256,
275,
402,
3671,
27,
187,
50270,
338,
14073,
1590,
15,
1727,
3113,
9,
84,
2262,
187,
50266,
2309,
402,
3671,
60,
84,
62,
187,
50274,
7271,
27,
187,
50270,
8271,
16708,
535,
187,
1545,
1978,
64,
35261,
64,
43885,
9,
4174,
1443,
2262,
187,
50274,
4174,
1443,
426,
544,
71,
1590,
323,
269,
1590,
275,
269,
7886,
604,
269,
1590,
15,
1727,
3113,
27174,
43885,
3401,
62,
187,
50274,
4174,
1443,
15,
15227,
1082,
187,
50274,
79,
426,
8472,
9,
4174,
1443,
10,
187,
50274,
4174,
1443,
19,
426,
8168,
187,
50274,
1542,
891,
13,
269,
1590,
275,
49860,
9,
4174,
1443,
2262,
187,
50270,
338,
891,
559,
337,
654,
295,
285,
269,
7886,
60,
74,
559,
337,
7082,
22314,
25,
62,
2295,
269,
1590,
18297,
14,
25,
5218,
187,
50266,
25674,
187,
50270,
4174,
1443,
19,
15,
9691,
9,
71,
1590,
10,
187,
50274,
2309,
269,
7886,
19,
535,
187,
1545,
14390,
64,
6870,
64,
3140,
9,
71,
1590,
2262,
187,
50274,
4,
3379,
269,
1590,
187,
50274,
296,
426,
470,
187,
50274,
373,
426,
8168,
187,
50274,
12305,
426,
8168,
187,
50274,
22530,
426,
12166,
187,
50274,
22530,
5013,
6321,
64,
4149,
6038,
426,
269,
1590,
16614,
25,
62,
187,
50274,
1542,
298,
275,
1527,
9,
71,
1590,
2262,
187,
50270,
338,
331,
2295,
470,
27,
187,
50266,
338,
298,
15,
5478,
2140,
334,
2073,
2775,
27182,
2697,
64,
43,
9324,
64,
23486,
19320,
64,
1838,
46976,
187,
50262,
22530,
5013,
2775,
27182,
2697,
64,
43,
9324,
64,
23486,
19320,
64,
1838,
6038,
426,
298,
15,
9148,
1082,
16614,
18,
62,
187,
50266,
338,
298,
15,
5478,
2140,
334,
2073,
4663,
1979,
327,
7592,
22426,
2262,
187,
50262,
22530,
5013,
4663,
64,
3281,
6038,
426,
540,
9,
77,
15,
9148,
1082,
16614,
18,
3291,
187,
50266,
338,
298,
15,
5478,
2140,
334,
2073,
6259,
35452,
22426,
2262,
187,
50262,
22530,
5013,
51,
3528,
6038,
426,
540,
9,
77,
15,
9148,
1082,
16614,
18,
3291,
187,
50266,
338,
298,
15,
5478,
2140,
334,
2073,
3456,
16777,
264,
7180,
1979,
22426,
2262,
187,
50262,
22530,
5013,
38538,
64,
3281,
6038,
426,
540,
9,
77,
15,
9148,
1082,
16614,
18,
3291,
187,
50266,
338,
298,
15,
5478,
2140,
334,
2073,
30985,
295,
67,
273,
17059,
281,
46976,
187,
50262,
22530,
5013,
79,
64,
41042,
6038,
426,
540,
9,
77,
15,
9148,
1082,
16614,
18,
3291,
187,
50266,
338,
298,
15,
5478,
2140,
334,
2073,
50276,
1911,
275,
46976,
187,
50262,
22530,
5013,
1911,
64,
2606,
6038,
426,
8253,
9,
77,
15,
9148,
1082,
16614,
19,
3291,
187,
50266,
338,
298,
15,
5478,
2140,
334,
2073,
8854,
22426,
2262,
187,
50262,
8854,
426,
2777,
9,
77,
60,
77,
15,
8606,
2073,
686,
2262,
3291,
187,
50262,
4663,
2364,
426,
13059,
15,
4663,
2364,
187,
50266,
44779,
686,
51,
33,
18,
50275,
51,
33,
740,
50276,
51,
33,
2313,
8,
275,
298,
27,
187,
50262,
296,
426,
337,
187,
50266,
44779,
686,
4663,
1979,
327,
7592,
22426,
275,
298,
27,
187,
50262,
4663,
64,
3281,
426,
540,
9,
77,
15,
9148,
1082,
16614,
18,
3291,
187,
50270,
44779,
331,
2295,
337,
27,
187,
50266,
296,
426,
374,
187,
50270,
44779,
331,
2295,
374,
27,
187,
50266,
11125,
426,
298,
15,
9148,
1082,
187,
50266,
12305,
15,
9691,
9,
11125,
60,
17,
3291,
187,
50266,
373,
15,
9691,
8850,
9599,
9,
89,
10,
323,
1269,
275,
12684,
60,
18,
34417,
3291,
187,
50274,
2309,
3605,
2364,
13,
15749,
15,
3728,
9,
373,
582,
10149,
13,
22118,
187,
187,
4,
1408,
29072,
187,
455,
373,
426,
12166,
187,
455,
22530,
426,
12166,
187,
79,
1641,
426,
8168,
187,
33722,
426,
8168,
187,
36446,
426,
12166,
187,
187,
4174,
1443,
426,
1978,
64,
35261,
64,
43885,
9,
375,
15,
3550,
7341,
9,
2808,
7341,
1228,
187,
4,
3379,
269,
7886,
187,
4,
1193,
257,
1443,
403,
275,
253,
830,
654,
2364,
13208,
89,
15,
43885,
187,
4,
835,
1269,
310,
247,
2715,
1180,
313,
4064,
247,
281,
1182,
10,
187,
4,
1978,
760,
6323,
2715,
273,
1016,
1416,
187,
187,
1542,
269,
1590,
275,
269,
7886,
27,
187,
50274,
338,
417,
12196,
5470,
8,
559,
14073,
275,
269,
1590,
285,
269,
1590,
15,
1727,
3113,
27174,
43885,
19279,
27,
187,
50270,
25674,
187,
50274,
4663,
2364,
13,
501,
13,
13830,
22118,
426,
14390,
64,
6870,
64,
3140,
9,
2808,
7341,
559,
269,
1590,
10,
187,
50274,
338,
501,
15,
3281,
2295,
470,
27,
187,
50270,
33722,
15,
9691,
9,
71,
1590,
10,
187,
50270,
3775,
1282,
426,
1527,
9,
187,
50266,
2808,
7341,
559,
269,
1590,
15,
13481,
27174,
43885,
1383,
29996,
35856,
3401,
481,
1088,
8737,
1082,
187,
50270,
338,
8472,
9,
3775,
1282,
10,
2239,
470,
27,
187,
50266,
3775,
1282,
426,
2228,
1282,
16614,
18,
62,
187,
50270,
7271,
27,
187,
50266,
3775,
1282,
426,
686,
7716,
3915,
37,
8015,
8,
187,
50270,
3845,
269,
1590,
13,
22118,
5013,
2775,
27182,
2697,
64,
43,
9324,
64,
23486,
19320,
64,
1838,
16445,
2228,
1282,
535,
50274,
7271,
27,
187,
50270,
338,
3605,
2364,
275,
512,
373,
27,
187,
50266,
338,
512,
22530,
60,
4663,
2364,
45443,
6321,
64,
4149,
6038,
2239,
22118,
5013,
6321,
64,
4149,
8,
5218,
187,
50262,
4,
1053,
626,
897,
436,
1408,
187,
50262,
25674,
187,
50270,
79,
64,
41042,
426,
22118,
15,
788,
2073,
79,
64,
41042,
1383,
337,
10,
187,
50270,
79,
1641,
15,
9691,
9,
79,
64,
41042,
10,
187,
50270,
455,
373,
60,
4663,
2364,
62,
426,
501,
187,
50270,
455,
22530,
60,
4663,
2364,
62,
426,
22118,
187,
187,
8271,
8472,
9,
1178,
9,
79,
1641,
1228,
2295,
337,
187,
79,
64,
41042,
426,
295,
1641,
60,
17,
62,
535,
187,
1545,
7484,
64,
37719,
14273,
9,
455,
373,
13,
2127,
64,
3281,
13,
6983,
64,
14714,
2262,
187,
50274,
69,
1768,
907,
426,
277,
1768,
907,
64,
4064,
64,
1590,
9,
5470,
10,
187,
50274,
2845,
455,
64,
16159,
426,
540,
9,
18650,
15,
2808,
740,
9,
2845,
455,
64,
14714,
1228,
535,
50274,
2760,
8476,
426,
8168,
187,
50274,
7886,
426,
8168,
535,
50274,
1542,
465,
13,
87,
275,
20045,
9,
455,
373,
15,
15565,
1082,
2262,
187,
50270,
338,
362,
15,
2109,
303,
3613,
374,
27,
4035,
187,
50270,
316,
426,
5085,
907,
9,
76,
10,
187,
50270,
338,
441,
3613,
2127,
64,
3281,
27,
4035,
187,
50270,
49181,
426,
362,
18297,
13,
6983,
64,
16159,
62,
187,
50270,
3181,
426,
362,
18297,
13,
495,
62,
187,
50270,
2760,
8476,
15,
9691,
9,
187,
50266,
18650,
15,
87,
9742,
4464,
187,
50262,
18650,
15,
2487,
9,
3181,
15,
3281,
13,
47985,
30,
565,
10,
475,
8472,
9,
7886,
582,
187,
50262,
49181,
13,
2069,
187,
50266,
1228,
187,
50270,
10,
187,
50270,
7886,
15,
9691,
9,
76,
10,
535,
50274,
2760,
8476,
426,
15749,
15,
73,
9742,
9,
2760,
8476,
10,
535,
50274,
33309,
426,
15749,
15,
8854,
430,
9,
2760,
8476,
60,
18,
13,
1163,
3291,
187,
50274,
2760,
8476,
426,
1943,
8476,
18297,
13,
8143,
62,
535,
50274,
3181,
426,
15749,
15,
35674,
15,
48925,
4187,
9,
2760,
8476,
60,
19,
13,
12590,
14,
18,
3291,
60,
1450,
14,
18,
62,
187,
50274,
27423,
426,
15749,
15,
2811,
9,
2760,
8476,
60,
19,
13,
1163,
62,
2295,
2069,
10,
535,
50274,
16191,
64,
30172,
426,
544,
7886,
60,
74,
62,
323,
891,
275,
187,
50254,
18650,
15,
22524,
9,
2760,
8476,
60,
17,
13,
5438,
1570,
505,
1692,
9,
565,
1228,
62,
187,
50274,
1439,
64,
16191,
426,
1618,
9,
1178,
9,
7886,
10,
428,
873,
9,
16191,
64,
30172,
1228,
535,
50274,
3845,
346,
30172,
1293,
271,
8654,
13664,
27,
18873,
417,
64,
16191,
535,
50274,
79,
82,
426,
30321,
187,
50274,
4789,
14095,
15,
5564,
2073,
25522,
686,
559,
14073,
559,
686,
2127,
64,
3281,
23869,
69,
8,
2462,
2127,
64,
3281,
10,
535,
50274,
4,
11978,
264,
562,
3104,
535,
50274,
1542,
465,
275,
417,
64,
16191,
27,
187,
50270,
87,
426,
512,
373,
60,
76,
62,
187,
50270,
338,
362,
15,
2109,
303,
3613,
374,
27,
4035,
187,
50270,
316,
426,
5085,
907,
9,
76,
10,
187,
50270,
338,
441,
3613,
2127,
64,
3281,
27,
4035,
535,
50270,
3642,
12463,
426,
313,
47499,
604,
686,
49392,
8,
275,
465,
2010,
187,
50257,
17035,
2464,
604,
686,
50185,
21,
8,
275,
465,
2010,
187,
50257,
8,
283,
8,
604,
686,
50185,
25,
8,
275,
465,
2010,
30225,
3401,
535,
50270,
4789,
14095,
15,
6017,
38665,
9,
87,
18297,
13,
6983,
64,
16159,
1092,
362,
18297,
13,
495,
1092,
5203,
30,
11336,
13,
187,
50254,
3642,
12463,
30,
3642,
12463,
13,
187,
50254,
39754,
5473,
80,
8,
604,
686,
41,
4883,
56,
8,
275,
465,
2010,
47526,
1383,
187,
50254,
4897,
5473,
4,
19533,
550,
1383,
1386,
3429,
30,
17,
15,
19,
10,
535,
50274,
4,
1774,
3082,
187,
50274,
1542,
465,
275,
4236,
64,
30172,
27,
187,
50270,
87,
426,
512,
373,
60,
76,
62,
187,
50270,
338,
362,
15,
2109,
303,
3613,
374,
27,
4035,
187,
50270,
316,
426,
5085,
907,
9,
76,
10,
187,
50270,
338,
441,
3613,
2127,
64,
3281,
27,
4035,
535,
50270,
22530,
426,
512,
22530,
60,
76,
62,
187,
50270,
23877,
64,
3281,
426,
22118,
5013,
4663,
64,
3281,
6038,
559,
22118,
5013,
38538,
64,
3281,
6038,
187,
50270,
301,
64,
3281,
426,
854,
1852,
6705,
2372,
535,
50270,
1911,
85,
426,
15078,
187,
50270,
338,
686,
1911,
64,
2606,
8,
275,
22118,
27,
187,
50266,
1911,
64,
2606,
426,
22118,
5013,
1911,
64,
2606,
6038,
187,
50266,
338,
823,
64,
2606,
2239,
818,
1518,
27,
187,
50262,
1911,
64,
1222,
426,
823,
64,
2606,
1227,
3925,
187,
50262,
1911,
85,
426,
26848,
2462,
20402,
6,
2640,
69,
8,
2462,
313,
1911,
64,
1222,
1227,
3925,
13,
823,
64,
1222,
2462,
3925,
10,
187,
50266,
7271,
27,
187,
50262,
1911,
64,
1704,
426,
540,
9,
1911,
64,
2606,
10,
187,
50262,
1911,
85,
426,
26848,
2462,
17670,
6,
2640,
69,
8,
2462,
313,
1911,
64,
1704,
1227,
3925,
13,
823,
64,
1704,
2462,
3925,
10,
2756,
50270,
1968,
426,
465,
559,
686,
313,
3281,
12,
7739,
18,
71,
7847,
6,
84,
18619,
2462,
313,
187,
50266,
23877,
64,
3281,
1227,
8253,
4464,
3211,
64,
3281,
559,
2654,
64,
3281,
10,
475,
277,
1768,
907,
10,
475,
2233,
428,
2233,
13,
187,
50266,
1911,
85,
10,
535,
50270,
3642,
12463,
426,
313,
47499,
604,
686,
49392,
8,
275,
465,
2010,
187,
50257,
17035,
2464,
604,
686,
50185,
21,
8,
275,
465,
2010,
187,
50257,
8,
283,
8,
604,
686,
50185,
25,
8,
275,
465,
2010,
30225,
3401,
535,
50270,
4789,
14095,
15,
6017,
38665,
9,
87,
18297,
13,
6983,
64,
16159,
1092,
362,
18297,
13,
495,
1092,
5203,
30,
1968,
13,
187,
50254,
3642,
12463,
30,
3642,
12463,
13,
187,
50254,
39754,
5473,
80,
8,
604,
686,
41,
4883,
56,
8,
275,
465,
2010,
47526,
3401,
535,
50274,
338,
8472,
9,
1439,
64,
16191,
10,
2295,
470,
27,
187,
50270,
297,
426,
15078,
187,
50274,
7271,
27,
187,
50270,
297,
426,
18116,
25009,
2166,
22426,
187,
50270,
9068,
426,
8472,
9,
297,
10,
187,
50270,
1542,
278,
275,
417,
64,
16191,
27,
187,
50266,
338,
295,
68,
2239,
5096,
27,
187,
50262,
297,
7079,
18116,
79,
8,
187,
50262,
9068,
426,
470,
187,
50266,
297,
7079,
686,
686,
559,
278,
187,
50266,
9068,
7079,
8472,
9,
78,
10,
559,
337,
535,
50274,
4789,
14095,
15,
89,
1968,
2073,
18,
14,
2845,
455,
387,
2462,
69,
2462,
84,
8,
2462,
313,
2845,
455,
64,
14714,
13,
7005,
10,
2387,
187,
50274,
4789,
14095,
15,
1190,
1492,
2073,
8716,
673,
591,
7316,
313,
983,
13,
2462,
69,
17059,
18619,
2462,
295,
64,
41042,
10,
187,
50274,
4789,
14095,
15,
42262,
1082,
187,
50274,
4789,
14095,
15,
15476,
1082,
187,
50274,
4789,
14095,
15,
15261,
926,
2073,
926,
84,
16,
37719,
14273,
64,
6,
84,
64,
6113,
6,
69,
64,
83,
6,
69,
15,
8567,
8,
2462,
313,
187,
50270,
5470,
13,
2127,
64,
3281,
13,
6983,
64,
14714,
1228,
187,
50274,
2309,
4236,
64,
30172,
13,
417,
64,
16191,
535,
187,
4789,
14095,
15,
72,
7836,
5023,
1178,
64,
3281,
64,
1763,
1041,
9,
1010,
13,
884,
10,
187,
187,
14095,
64,
37719,
14273,
9,
455,
373,
13,
2127,
64,
3281,
30,
3211,
64,
3281,
13,
6983,
64,
14714,
30,
18,
10,
187
] | # Copyright (c) Facebook, Inc. and its affiliates.
#
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.
#! /usr/bin/env python2
import os
import numpy as np
from matplotlib import pyplot
import re
from argparse import Namespace
# the directory used in run_on_cluster.bash
basedir = '/mnt/vol/gfsai-east/ai-group/users/matthijs/bench_all_ivf/'
logdir = basedir + 'logs/'
# which plot to output
db = 'bigann1B'
code_size = 8
def unitsize(indexkey):
""" size of one vector in the index """
mo = re.match('.*,PQ(\\d+)', indexkey)
if mo:
return int(mo.group(1))
if indexkey.endswith('SQ8'):
bits_per_d = 8
elif indexkey.endswith('SQ4'):
bits_per_d = 4
elif indexkey.endswith('SQfp16'):
bits_per_d = 16
else:
assert False
mo = re.match('PCAR(\\d+),.*', indexkey)
if mo:
return bits_per_d * int(mo.group(1)) / 8
mo = re.match('OPQ\\d+_(\\d+),.*', indexkey)
if mo:
return bits_per_d * int(mo.group(1)) / 8
mo = re.match('RR(\\d+),.*', indexkey)
if mo:
return bits_per_d * int(mo.group(1)) / 8
assert False
def dbsize_from_name(dbname):
sufs = {
'1B': 10**9,
'100M': 10**8,
'10M': 10**7,
'1M': 10**6,
}
for s in sufs:
if dbname.endswith(s):
return sufs[s]
else:
assert False
def keep_latest_stdout(fnames):
fnames = [fname for fname in fnames if fname.endswith('.stdout')]
fnames.sort()
n = len(fnames)
fnames2 = []
for i, fname in enumerate(fnames):
if i + 1 < n and fnames[i + 1][:-8] == fname[:-8]:
continue
fnames2.append(fname)
return fnames2
def parse_result_file(fname):
# print fname
st = 0
res = []
keys = []
stats = {}
stats['run_version'] = fname[-8]
for l in open(fname):
if st == 0:
if l.startswith('CHRONOS_JOB_INSTANCE_ID'):
stats['CHRONOS_JOB_INSTANCE_ID'] = l.split()[-1]
if l.startswith('index size on disk:'):
stats['index_size'] = int(l.split()[-1])
if l.startswith('current RSS:'):
stats['RSS'] = int(l.split()[-1])
if l.startswith('precomputed tables size:'):
stats['tables_size'] = int(l.split()[-1])
if l.startswith('Setting nb of threads to'):
stats['n_threads'] = int(l.split()[-1])
if l.startswith(' add in'):
stats['add_time'] = float(l.split()[-2])
if l.startswith('args:'):
args = eval(l[l.find(' '):])
indexkey = args.indexkey
elif 'R@1 R@10 R@100' in l:
st = 1
elif 'index size on disk:' in l:
index_size = int(l.split()[-1])
elif st == 1:
st = 2
elif st == 2:
fi = l.split()
keys.append(fi[0])
res.append([float(x) for x in fi[1:]])
return indexkey, np.array(res), keys, stats
# run parsing
allres = {}
allstats = {}
nts = []
missing = []
versions = {}
fnames = keep_latest_stdout(os.listdir(logdir))
# print fnames
# filenames are in the form <key>.x.stdout
# where x is a version number (from a to z)
# keep only latest version of each name
for fname in fnames:
if not ('db' + db in fname and fname.endswith('.stdout')):
continue
indexkey, res, _, stats = parse_result_file(logdir + fname)
if res.size == 0:
missing.append(fname)
errorline = open(
logdir + fname.replace('.stdout', '.stderr')).readlines()
if len(errorline) > 0:
errorline = errorline[-1]
else:
errorline = 'NO STDERR'
print fname, stats['CHRONOS_JOB_INSTANCE_ID'], errorline
else:
if indexkey in allres:
if allstats[indexkey]['run_version'] > stats['run_version']:
# don't use this run
continue
n_threads = stats.get('n_threads', 1)
nts.append(n_threads)
allres[indexkey] = res
allstats[indexkey] = stats
assert len(set(nts)) == 1
n_threads = nts[0]
def plot_tradeoffs(allres, code_size, recall_rank):
dbsize = dbsize_from_name(db)
recall_idx = int(np.log10(recall_rank))
bigtab = []
names = []
for k,v in sorted(allres.items()):
if v.ndim != 2: continue
us = unitsize(k)
if us != code_size: continue
perf = v[:, recall_idx]
times = v[:, 3]
bigtab.append(
np.vstack((
np.ones(times.size, dtype=int) * len(names),
perf, times
))
)
names.append(k)
bigtab = np.hstack(bigtab)
perm = np.argsort(bigtab[1, :])
bigtab = bigtab[:, perm]
times = np.minimum.accumulate(bigtab[2, ::-1])[::-1]
selection = np.where(bigtab[2, :] == times)
selected_methods = [names[i] for i in
np.unique(bigtab[0, selection].astype(int))]
not_selected = list(set(names) - set(selected_methods))
print "methods without an optimal OP: ", not_selected
nq = 10000
pyplot.title('database ' + db + ' code_size=%d' % code_size)
# grayed out lines
for k in not_selected:
v = allres[k]
if v.ndim != 2: continue
us = unitsize(k)
if us != code_size: continue
linestyle = (':' if 'PQ' in k else
'-.' if 'SQ4' in k else
'--' if 'SQ8' in k else '-')
pyplot.semilogy(v[:, recall_idx], v[:, 3], label=None,
linestyle=linestyle,
marker='o' if 'HNSW' in k else '+',
color='#cccccc', linewidth=0.2)
# important methods
for k in selected_methods:
v = allres[k]
if v.ndim != 2: continue
us = unitsize(k)
if us != code_size: continue
stats = allstats[k]
tot_size = stats['index_size'] + stats['tables_size']
id_size = 8 # 64 bit
addt = ''
if 'add_time' in stats:
add_time = stats['add_time']
if add_time > 7200:
add_min = add_time / 60
addt = ', %dh%02d' % (add_min / 60, add_min % 60)
else:
add_sec = int(add_time)
addt = ', %dm%02d' % (add_sec / 60, add_sec % 60)
label = k + ' (size+%.1f%%%s)' % (
tot_size / float((code_size + id_size) * dbsize) * 100 - 100,
addt)
linestyle = (':' if 'PQ' in k else
'-.' if 'SQ4' in k else
'--' if 'SQ8' in k else '-')
pyplot.semilogy(v[:, recall_idx], v[:, 3], label=label,
linestyle=linestyle,
marker='o' if 'HNSW' in k else '+')
if len(not_selected) == 0:
om = ''
else:
om = '\nomitted:'
nc = len(om)
for m in not_selected:
if nc > 80:
om += '\n'
nc = 0
om += ' ' + m
nc += len(m) + 1
pyplot.xlabel('1-recall at %d %s' % (recall_rank, om) )
pyplot.ylabel('search time per query (ms, %d threads)' % n_threads)
pyplot.legend()
pyplot.grid()
pyplot.savefig('figs/tradeoffs_%s_cs%d_r%d.png' % (
db, code_size, recall_rank))
return selected_methods, not_selected
pyplot.gcf().set_size_inches(15, 10)
plot_tradeoffs(allres, code_size=code_size, recall_rank=1)
|
214,493 | Github | [
92,
331,
3354,
87,
187,
13,
1973,
27363,
22113,
187,
13,
20279,
14819,
2059,
187,
13,
20279,
20559,
187,
13,
310,
14819,
1630,
187,
13,
13997,
12025,
187,
13,
13279,
3433,
187,
13,
10105,
3756,
64,
34383,
187,
13,
13681,
6481,
187,
13,
18420,
187,
13,
2800,
187,
13,
15548,
20598,
254,
187,
13,
310,
14819,
14819,
187,
13,
260,
567,
74,
187,
13,
268,
1767,
383,
187,
13,
22830,
187,
13,
14928,
2691,
520,
187,
13,
268,
1767,
91,
187,
13,
9079,
187,
13,
15972,
1706,
187,
17168,
187,
187,
7973,
27363,
22113,
761,
551,
187,
50276,
81,
1590,
426,
346,
22243,
3756,
3664,
187,
50276,
4149,
426,
346,
19,
15,
26,
15,
19,
3664,
1852,
5220,
5731,
253,
13283,
275,
11390,
15,
47352,
535,
50276,
7614,
426,
20279,
14819,
2059,
551,
187,
50274,
45990,
268,
1590,
2715,
28,
187,
50274,
20409,
9726,
426,
346,
17,
2320,
1099,
88,
22,
18835,
69,
23,
87,
939,
84,
20,
83,
23,
2284,
18,
88,
22,
532,
26,
37755,
17,
983,
26,
84,
26560,
4396,
859,
67,
11022,
91,
5267,
1762,
73,
89,
17,
3664,
187,
50276,
4718,
535,
50276,
44902,
426,
544,
346,
483,
3,
346,
3620,
3,
25896,
535,
50276,
7973,
8982,
84,
426,
544,
13279,
3433,
5032,
187,
50265,
3424,
331,
3354,
87,
15,
4658,
15,
21676,
331,
3354,
87,
15,
261,
28895,
6481,
13681,
6481,
15,
19934,
64,
30872,
15,
6301,
4896,
15,
20356,
28,
187,
50276,
44263,
456,
10987,
8982,
84,
426,
544,
187,
50274,
6896,
2977,
187,
50274,
17182,
187,
50276,
62,
12996,
331,
3354,
87,
15,
4658,
15,
21676,
6522,
261,
14819,
14819,
10,
260,
567,
74,
187,
50276,
3424,
331,
3354,
87,
15,
4658,
15,
7872,
932,
310,
14819,
1630,
544,
13997,
12025,
15972,
1706,
25896,
535,
50276,
5903,
8982,
84,
426,
544,
187,
50274,
22243,
3756,
64,
34383,
187,
50274,
35040,
4521,
261,
187,
50274,
14699,
2691,
520,
187,
50274,
4025,
423,
187,
50274,
81,
1767,
383,
187,
50274,
81,
1767,
91,
187,
50276,
2194,
535,
50276,
5903,
30335,
426,
15078,
187,
50274,
4789,
15,
2566,
1969,
25902,
14,
81,
1767,
383,
14,
30289,
723,
5216,
187,
50276,
8,
5618,
535,
50276,
4,
309,
10249,
262,
434,
21011,
403,
16706,
875,
9485,
57,
9508,
13,
594,
436,
310,
253,
1682,
359,
187,
50276,
4,
476,
513,
1919,
295,
895,
337,
15,
883,
434,
3727,
187,
50276,
876,
11548,
459,
15310,
37,
2265,
426,
544,
13357,
11919,
16,
4658,
3,
25896,
535,
50276,
13518,
426,
342,
331,
3354,
87,
15,
4658,
28,
551,
187,
50274,
10008,
426,
346,
34,
5522,
534,
3400,
10105,
5576,
20247,
285,
2248,
23223,
3664,
187,
50274,
5056,
11185,
426,
15078,
187,
50272,
33862,
3756,
3797,
1097,
1029,
1268,
20247,
285,
1698,
1268,
19069,
281,
187,
50272,
9784,
10105,
5576,
11333,
824,
347,
13123,
260,
532,
3398,
13,
3935,
187,
50272,
11174,
6655,
13,
285,
2234,
28529,
3470,
15,
187,
50272,
6067,
4736,
310,
323,
352,
281,
320,
634,
346,
22243,
5576,
2629,
6335,
3446,
733,
187,
50272,
4032,
8707,
13814,
374,
15,
24,
13,
13814,
495,
15,
22,
24728,
285,
8462,
14819,
608,
15,
21,
39801,
187,
50274,
8,
5618,
187,
50274,
9511,
6377,
426,
346,
3614,
1358,
7280,
15,
681,
16,
4789,
6357,
16,
22243,
3756,
3664,
187,
50274,
348,
13852,
462,
426,
346,
3614,
1358,
22243,
3756,
15,
900,
16,
257,
16,
35261,
16,
348,
13852,
462,
21225,
87,
3,
187,
50272,
12,
8171,
38706,
544,
40923,
5032,
544,
19479,
3,
5032,
2715,
28,
187,
50274,
21997,
426,
342,
23937,
28,
544,
347,
77,
938,
270,
8289,
20,
3714,
1258,
25896,
187,
50274,
41322,
39982,
426,
342,
6558,
398,
28,
544,
4335,
375,
25896,
187,
50276,
4718,
187,
94,
187
] | { stdenv
, buildPythonPackage
, fetchPypi
, fetchpatch
, isPy27
, ipaddress
, openssl
, cryptography_vectors
, darwin
, packaging
, six
, pythonOlder
, isPyPy
, cffi
, pytest
, pretend
, iso8601
, pytz
, hypothesis
, enum34
}:
buildPythonPackage rec {
pname = "cryptography";
version = "2.9.2"; # Also update the hash in vectors.nix
src = fetchPypi {
inherit pname version;
sha256 = "0af25w5mkd6vwns3r6ai1w5ip9xp0ms9s261zzssbpadzdr05hx0";
};
outputs = [ "out" "dev" ];
buildInputs = [ openssl ]
++ stdenv.lib.optional stdenv.isDarwin darwin.apple_sdk.frameworks.Security;
propagatedBuildInputs = [
packaging
six
] ++ stdenv.lib.optional (!isPyPy) cffi
++ stdenv.lib.optionals isPy27 [ ipaddress enum34 ];
checkInputs = [
cryptography_vectors
hypothesis
iso8601
pretend
pytest
pytz
];
checkPhase = ''
py.test --disable-pytest-warnings tests
'';
# IOKit's dependencies are inconsistent between OSX versions, so this is the best we
# can do until nix 1.11's release
__impureHostDeps = [ "/usr/lib" ];
meta = with stdenv.lib; {
description = "A package which provides cryptographic recipes and primitives";
longDescription = ''
Cryptography includes both high level recipes and low level interfaces to
common cryptographic algorithms such as symmetric ciphers, message
digests, and key derivation functions.
Our goal is for it to be your "cryptographic standard library". It
supports Python 2.7, Python 3.5+, and PyPy 5.4+.
'';
homepage = "https://github.com/pyca/cryptography";
changelog = "https://cryptography.io/en/latest/changelog/#v"
+ replaceStrings [ "." ] [ "-" ] version;
license = with licenses; [ asl20 bsd3 psfl ];
maintainers = with maintainers; [ primeos ];
};
}
|
214,494 | Github | [
14277,
7229,
2715,
568,
18,
15,
17,
3,
9706,
568,
17880,
14,
25,
28739,
187,
29,
9270,
9683,
15664,
27,
9152,
568,
2413,
1358,
24991,
15,
9152,
15,
681,
16,
37104,
16,
373,
16,
9152,
3,
187,
50270,
7229,
2224,
27,
1212,
568,
2413,
1358,
24991,
15,
9152,
15,
681,
16,
37104,
16,
373,
14,
15149,
3,
187,
50270,
9152,
27,
7916,
64,
3429,
568,
8992,
64,
5598,
3,
187,
50270,
9152,
27,
7916,
64,
7436,
568,
8992,
64,
5598,
1138,
535,
50274,
29,
39269,
187,
50266,
9152,
27,
7916,
64,
3429,
568,
8992,
64,
5598,
3,
187,
50266,
9152,
27,
7916,
64,
7436,
568,
8992,
64,
5598,
3,
187,
50266,
9152,
27,
31756,
568,
26806,
1138,
535,
50270,
29,
681,
15,
555,
263,
38522,
15,
22619,
2845,
1573,
34309,
6081,
15,
25889,
6081,
3145,
187,
50262,
9152,
27,
301,
26038,
301,
16,
34309,
6081,
3,
187,
50262,
9152,
27,
7916,
64,
3429,
568,
2313,
12132,
3,
187,
50262,
9152,
27,
7916,
64,
7436,
568,
2313,
12132,
3,
187,
50262,
9152,
27,
7916,
64,
28702,
568,
9229,
3,
187,
50262,
9152,
27,
7916,
64,
15456,
11387,
14015,
31592,
16,
35215,
64,
16374,
3,
187,
50262,
9152,
27,
11814,
14015,
9152,
27,
4897,
16,
11958,
3,
187,
50262,
1212,
27,
6370,
32641,
568,
21,
3,
187,
50262,
1212,
27,
12574,
6573,
14015,
4897,
16,
12574,
6573,
3,
187,
50262,
1212,
27,
12574,
12519,
568,
3956,
3,
187,
50262,
1212,
27,
12574,
2548,
568,
2009,
93,
43810,
3,
4725,
535,
50270,
29,
681,
15,
555,
263,
38522,
15,
22619,
2845,
1573,
34309,
6081,
15,
25889,
6081,
3145,
187,
50262,
9152,
27,
301,
26038,
301,
16,
34309,
6081,
19,
3,
187,
50262,
9152,
27,
7916,
64,
3429,
568,
1235,
12132,
3,
187,
50262,
9152,
27,
7916,
64,
7436,
568,
8970,
12132,
3,
187,
50262,
9152,
27,
7916,
64,
28702,
568,
9229,
64,
33464,
93,
3956,
3,
187,
50262,
9152,
27,
7916,
64,
15456,
11387,
14015,
31592,
16,
35215,
64,
16374,
3,
187,
50262,
9152,
27,
11814,
14015,
9152,
27,
4897,
16,
11814,
64,
3243,
3,
187,
50262,
1212,
27,
6370,
32641,
568,
740,
3,
187,
50262,
1212,
27,
12574,
6573,
14015,
4897,
16,
12574,
6573,
19,
3,
187,
50262,
1212,
27,
12574,
12519,
568,
10492,
3,
187,
50262,
1212,
27,
12574,
2548,
568,
29206,
93,
43810,
3,
4725,
535,
50270,
29,
681,
15,
555,
263,
38522,
15,
22619,
2845,
1573,
34309,
6081,
15,
25889,
6081,
3145,
187,
50262,
9152,
27,
301,
26038,
301,
16,
34309,
6081,
20,
3,
187,
50262,
9152,
27,
7916,
64,
3429,
568,
8992,
64,
5598,
3,
187,
50262,
9152,
27,
7916,
64,
7436,
568,
2313,
12132,
3,
187,
50262,
9152,
27,
7916,
64,
28702,
568,
9229,
64,
33464,
93,
10492,
3,
187,
50262,
9152,
27,
7916,
64,
15456,
11387,
14015,
31592,
16,
35215,
64,
16374,
3,
187,
50262,
9152,
27,
11814,
14015,
9152,
27,
4897,
16,
19001,
254,
64,
27250,
3,
187,
50262,
1212,
27,
6370,
32641,
568,
2313,
3,
187,
50262,
1212,
27,
12574,
6573,
14015,
4897,
16,
12574,
6573,
20,
3,
187,
50262,
1212,
27,
12574,
12519,
568,
15617,
3,
187,
50262,
1212,
27,
12574,
2548,
568,
29206,
3,
4725,
535,
50274,
870,
39269,
31,
535,
50274,
29,
9152,
15,
13821,
15,
19417,
15,
14778,
15,
39,
4213,
839,
9019,
8880,
187,
50266,
9152,
27,
301,
26038,
301,
16,
29857,
3,
187,
50266,
9152,
27,
7916,
64,
3429,
568,
13585,
64,
6071,
3,
187,
50266,
9152,
27,
7916,
64,
7436,
568,
13585,
64,
6071,
3,
187,
50266,
9152,
27,
7916,
64,
28702,
568,
10492,
93,
918,
3,
187,
50266,
9152,
27,
7916,
64,
15456,
14015,
31592,
16,
35215,
64,
16374,
3,
187,
50266,
9152,
27,
7614,
14015,
31607,
16,
280,
64,
6185,
3,
187,
50266,
1212,
27,
11814,
53,
565,
14015,
9152,
27,
4897,
16,
11300,
3,
187,
50266,
1212,
27,
14224,
12175,
568,
17,
12132,
3,
187,
50266,
1212,
27,
29857,
5496,
568,
6320,
3,
4725,
187,
870,
9270,
9683,
31
] | <?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<com.tyorikan.voicerecordingvisualizer.VisualizerView
android:id="@+id/visualizer"
android:layout_width="100dp"
android:layout_height="100dp"
android:layout_gravity="center"
android:layout_marginTop="@dimen/spacing_large"
android:background="@android:color/black"
app:numColumns="4"
app:renderColor="@color/renderColor"
app:renderRange="top"
app:renderType="bar|fade" />
<com.tyorikan.voicerecordingvisualizer.VisualizerView
android:id="@+id/visualizer2"
android:layout_width="50dp"
android:layout_height="150dp"
android:layout_gravity="center_horizontal|top"
android:layout_marginTop="@dimen/spacing_large"
android:background="@android:color/background_light"
app:numColumns="10"
app:renderColor="@color/renderColor2"
app:renderRange="bottom"
app:renderType="pixel|fade" />
<com.tyorikan.voicerecordingvisualizer.VisualizerView
android:id="@+id/visualizer3"
android:layout_width="match_parent"
android:layout_height="100dp"
android:layout_gravity="center_horizontal|bottom"
android:layout_marginTop="@dimen/spacing_large"
android:background="@android:color/darker_gray"
app:numColumns="100"
app:renderColor="@color/renderColor3"
app:renderRange="both"
app:renderType="pixel" />
</LinearLayout>
<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|right"
android:layout_margin="@dimen/spacing_large"
android:src="@drawable/ic_mic"
app:backgroundTint="@android:color/white"
app:borderWidth="0dp"
app:fabSize="normal" />
</FrameLayout> |
214,495 | Github | [
41497,
14277,
7229,
2715,
568,
18,
15,
17,
3,
9706,
568,
17880,
14,
25,
28739,
187,
29,
11695,
29806,
8893,
568,
21,
15,
17,
3,
18193,
12168,
84,
568,
10987,
3,
15664,
568,
2413,
1358,
24991,
15,
22730,
15,
681,
16,
35654,
16,
983,
7973,
16,
9755,
1138,
187,
50276,
29,
41410,
31,
187,
50274,
29,
11909,
22057,
568,
686,
6999,
11909,
18619,
2295,
15078,
38329,
14154,
870,
11909,
31,
187,
50274,
29,
17806,
22057,
568,
686,
6999,
17806,
18619,
2295,
15078,
38329,
89,
2691,
870,
17806,
31,
187,
50274,
29,
13443,
8893,
31,
25,
15,
17,
15,
1229,
30349,
870,
13443,
8893,
31,
187,
50274,
29,
20838,
8893,
31,
19,
15,
17,
870,
20838,
8893,
31,
187,
50274,
29,
11695,
38895,
38958,
23,
10172,
22,
36,
45533,
14,
18950,
37,
14,
2385,
740,
14,
25,
35340,
14,
21,
34,
4196,
361,
39,
17,
34,
21,
39,
22,
28379,
11695,
38895,
31,
187,
50274,
29,
11021,
2548,
31,
1672,
70,
870,
11021,
2548,
31,
187,
50274,
29,
2946,
23045,
254,
27903,
31,
18401,
870,
2946,
23045,
254,
27903,
31,
187,
50274,
29,
16560,
28825,
31,
10987,
22032,
870,
16560,
28825,
31,
187,
50274,
29,
27711,
2402,
31,
10987,
22032,
870,
27711,
2402,
31,
187,
50274,
29,
12168,
26819,
8893,
31,
87,
21,
15,
17,
870,
12168,
26819,
8893,
31,
187,
50274,
29,
12168,
26819,
23912,
31,
8975,
870,
12168,
26819,
23912,
31,
187,
50274,
29,
4505,
30365,
31,
19233,
870,
4505,
30365,
31,
187,
50276,
870,
41410,
31,
187,
50276,
29,
41410,
22057,
568,
686,
6999,
11909,
48963,
17806,
18619,
2295,
686,
14154,
93,
89,
2691,
8,
38329,
187,
50274,
29,
17806,
12168,
31,
89,
2691,
870,
17806,
12168,
31,
187,
50274,
29,
14154,
52,
31356,
31,
5672,
870,
14154,
52,
31356,
31,
187,
50274,
29,
14154,
2548,
31,
11546,
870,
14154,
2548,
31,
187,
50274,
29,
13967,
39263,
31,
7750,
870,
13967,
39263,
31,
187,
50274,
29,
11021,
5455,
31,
4805,
61,
14154,
61,
870,
11021,
5455,
31,
187,
50274,
29,
36906,
31171,
31,
18828,
28,
38448,
870,
36906,
31171,
31,
187,
50274,
29,
4756,
20684,
31,
43274,
870,
4756,
20684,
31,
187,
50274,
29,
24979,
13019,
31,
21,
870,
24979,
13019,
31,
187,
50276,
870,
41410,
31,
187,
50276,
29,
41410,
22057,
568,
686,
6999,
11909,
48963,
17806,
18619,
2295,
686,
18992,
93,
89,
2691,
8,
38329,
187,
50274,
29,
17806,
12168,
31,
89,
2691,
870,
17806,
12168,
31,
187,
50274,
29,
14154,
2548,
31,
19875,
4006,
314,
870,
14154,
2548,
31,
187,
50274,
29,
13967,
39263,
31,
5672,
870,
13967,
39263,
31,
187,
50274,
29,
11021,
5455,
31,
4805,
61,
18992,
61,
870,
11021,
5455,
31,
187,
50274,
29,
36906,
31171,
31,
38448,
870,
36906,
31171,
31,
187,
50274,
29,
4756,
20684,
31,
43274,
870,
4756,
20684,
31,
187,
50274,
29,
24979,
13019,
31,
21,
870,
24979,
13019,
31,
187,
50276,
870,
41410,
31,
187,
50276,
29,
41410,
22057,
48201,
11909,
48963,
17806,
18619,
2295,
686,
3848,
1667,
93,
89,
2691,
46768,
187,
50274,
29,
11021,
5455,
31,
16199,
4658,
61,
870,
11021,
5455,
31,
187,
50274,
29,
36906,
31171,
31,
38448,
870,
36906,
31171,
31,
187,
50274,
29,
13967,
39263,
31,
5672,
870,
13967,
39263,
31,
187,
50274,
29,
14154,
2548,
31,
19875,
4006,
314,
870,
14154,
2548,
31,
187,
50274,
29,
17806,
12168,
31,
89,
2691,
870,
17806,
12168,
31,
187,
50274,
29,
6124,
22997,
6800,
4505,
31,
4805,
61,
18992,
61,
10987,
22032,
15,
20963,
15,
6124,
22997,
6800,
15,
7229,
870,
6124,
22997,
6800,
4505,
31,
187,
50274,
29,
6124,
22997,
11244,
2548,
2402,
688,
4727,
1256,
31,
5672,
870,
6124,
22997,
11244,
2548,
2402,
688,
4727,
1256,
31,
187,
50274,
29,
6124,
22997,
13570,
4727,
37761,
4505,
31,
18590,
4727,
37761,
15,
6113,
870,
6124,
22997,
13570,
4727,
37761,
4505,
31,
187,
50274,
29,
4756,
20684,
31,
43274,
870,
4756,
20684,
31,
187,
50274,
29,
6124,
22997,
16295,
4531,
31,
44831,
1785,
34274,
31980,
15,
25553,
292,
870,
6124,
22997,
16295,
4531,
31,
187,
50274,
29,
6124,
22997,
16295,
4531,
29150,
447,
21431,
36,
8048,
20053,
23895,
61,
16880,
17633,
17203,
884,
15,
17,
61,
25804,
29806,
61,
26904,
10330,
29806,
3353,
16295,
34730,
870,
6124,
22997,
16295,
4531,
29150,
447,
31,
187,
50274,
29,
6124,
22997,
36142,
44629,
688,
16295,
46238,
31,
7750,
870,
6124,
22997,
36142,
44629,
688,
16295,
46238,
31,
187,
50274,
29,
6124,
22997,
16295,
29150,
447,
21431,
36,
8048,
20053,
23895,
61,
16880,
17633,
17203,
884,
15,
17,
61,
25804,
29806,
61,
26904,
10330,
29806,
61,
39,
31932,
412,
3353,
31980,
870,
6124,
22997,
16295,
29150,
447,
31,
187,
50274,
29,
6124,
22997,
36142,
44629,
688,
31980,
31,
7750,
870,
6124,
22997,
36142,
44629,
688,
31980,
31,
187,
50274,
29,
6124,
22997,
44416,
2374,
36840,
31980,
31,
7750,
870,
6124,
22997,
44416,
2374,
36840,
31980,
31,
187,
50276,
870,
41410,
31,
187,
50276,
29,
46812,
31,
187,
50274,
29,
12905,
17105,
568,
42,
5120,
15,
42095,
15,
10252,
5504,
13,
11099,
30,
18,
15,
26,
15,
18,
15,
22,
13,
17156,
30,
27912,
13,
5259,
4814,
11200,
30,
264,
1257,
3712,
324,
26,
2945,
66,
20,
71,
22,
68,
13,
13732,
18551,
38413,
30,
3338,
3077,
1138,
187,
50272,
29,
35708,
8893,
31,
5653,
870,
35708,
8893,
31,
187,
50272,
29,
34737,
5455,
31,
16199,
4658,
61,
42,
5120,
15,
42095,
15,
10252,
5504,
15,
25360,
870,
34737,
5455,
31,
187,
50274,
870,
12905,
31,
187,
50274,
29,
12905,
17105,
568,
7761,
3,
4725,
187,
50274,
29,
12905,
17105,
568,
7761,
15,
13745,
3,
4725,
187,
50274,
29,
12905,
17105,
568,
7761,
15,
22848,
15,
26433,
82,
3,
4725,
187,
50274,
29,
12905,
17105,
568,
7761,
15,
3233,
15,
3233,
4531,
31489,
3,
4725,
187,
50274,
29,
12905,
17105,
568,
16880,
15,
36,
33409,
3,
4725,
187,
50274,
29,
12905,
17105,
568,
7761,
15,
3233,
3,
4725,
187,
50274,
29,
12905,
17105,
568,
7761,
15,
22848,
3,
4725,
187,
50276,
870,
46812,
31,
187,
50276,
29,
46812,
31,
187,
50274,
29,
20329,
17105,
568,
25600,
2287,
15,
42095,
20330,
15,
6113,
3,
4725,
187,
50274,
29,
20329,
17105,
568,
20053,
15,
6113,
3,
4725,
187,
50274,
29,
20329,
17105,
568,
18401,
61,
27711,
6074,
15,
6113,
3,
4725,
187,
50276,
870,
46812,
31,
187,
50276,
29,
19206,
8049,
43306,
3338,
10987,
32953,
5455,
1572,
16880,
15,
36,
33409,
15,
48413,
3,
4725,
187,
50276,
14219,
1916,
10007,
634,
1973,
1232,
13,
823,
634,
4836,
3304,
581,
273,
253,
8571,
2708,
285,
440,
13982,
352,
15,
2490,
50271,
8665,
2074,
6880,
2792,
2226,
13,
923,
9664,
15,
18170,
15,
48413,
15,
187,
50276,
29,
12168,
9424,
568,
8639,
10987,
1138,
187,
50276,
870,
12168,
31,
187,
50276,
29,
12168,
9424,
568,
4553,
10987,
1138,
187,
50276,
870,
12168,
31,
187,
50276,
22158,
187,
870,
11695,
31
] | <?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
<ProductVersion>8.0.30703</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{6BB5C546-306D-4810-8482-4A9600F0A4F5}</ProjectGuid>
<OutputType>Exe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>BuildSupport</RootNamespace>
<AssemblyName>BuildSupport</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<TargetFrameworkProfile>Client</TargetFrameworkProfile>
<FileAlignment>512</FileAlignment>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
<PlatformTarget>x86</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
<PlatformTarget>x86</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Deploy|x86'">
<OutputPath>..\lib\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<Optimize>true</Optimize>
<DebugType>pdbonly</DebugType>
<PlatformTarget>x86</PlatformTarget>
<CodeAnalysisLogFile>bin\Release\BuildSupport.exe.CodeAnalysisLog.xml</CodeAnalysisLogFile>
<CodeAnalysisUseTypeNameInSuppression>true</CodeAnalysisUseTypeNameInSuppression>
<CodeAnalysisModuleSuppressionsFile>GlobalSuppressions.cs</CodeAnalysisModuleSuppressionsFile>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
<CodeAnalysisRuleSetDirectories>;C:\Program Files\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\\Rule Sets</CodeAnalysisRuleSetDirectories>
<CodeAnalysisIgnoreBuiltInRuleSets>false</CodeAnalysisIgnoreBuiltInRuleSets>
<CodeAnalysisRuleDirectories>;C:\Program Files\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\FxCop\\Rules</CodeAnalysisRuleDirectories>
<CodeAnalysisIgnoreBuiltInRules>false</CodeAnalysisIgnoreBuiltInRules>
<CodeAnalysisFailOnMissingRules>false</CodeAnalysisFailOnMissingRules>
</PropertyGroup>
<ItemGroup>
<Reference Include="Ionic.Zip.Reduced, Version=1.9.1.5, Culture=neutral, PublicKeyToken=edbe51ad942a3f5c, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\lib\Ionic.Zip.Reduced.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Commands.ZipDirectory.cs" />
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project> |
214,496 | Github | [
14277,
7229,
2715,
568,
18,
15,
17,
3,
9706,
568,
18441,
14,
25,
3,
40468,
568,
9820,
3,
23983,
187,
29,
4826,
30035,
15664,
568,
2413,
1358,
24991,
15,
5758,
7229,
630,
1832,
15,
2061,
16,
42755,
20472,
1686,
16,
8603,
16,
7265,
1138,
187,
50274,
29,
6370,
39,
78,
1641,
1385,
568,
19,
1138,
187,
50270,
29,
6370,
39,
6917,
930,
39,
6917,
2618,
568,
18467,
3,
5981,
6124,
568,
39655,
1556,
3,
4725,
187,
50270,
29,
6370,
39,
6917,
930,
39,
6917,
2618,
568,
15429,
3,
5981,
6124,
568,
8643,
16,
11927,
16,
21226,
21226,
3,
4725,
187,
50274,
870,
6370,
39,
78,
1641,
31,
187,
50274,
29,
8345,
1385,
568,
23,
1138,
187,
50270,
29,
4909,
31,
187,
50266,
29,
20932,
821,
568,
883,
3,
4725,
187,
50266,
29,
4897,
46206,
568,
3269,
8551,
3,
4725,
187,
50266,
29,
1590,
821,
568,
4218,
487,
363,
3,
4725,
187,
50266,
29,
11807,
821,
568,
19,
3,
4725,
187,
50266,
29,
49611,
821,
568,
18,
3,
4725,
187,
50270,
870,
4909,
31,
187,
50270,
29,
4909,
31,
187,
50266,
29,
20932,
821,
568,
740,
3,
4725,
187,
50266,
29,
1590,
821,
568,
34,
3760,
3,
4725,
187,
50266,
29,
11807,
821,
568,
17,
3,
4725,
187,
50270,
870,
4909,
31,
187,
50270,
29,
4909,
31,
187,
50266,
29,
20932,
821,
568,
740,
3,
4725,
187,
50266,
29,
1590,
821,
568,
34,
3760,
3,
4725,
187,
50266,
29,
11807,
821,
568,
17,
3,
4725,
187,
50270,
870,
4909,
31,
187,
50270,
29,
4909,
31,
187,
50266,
29,
20932,
821,
568,
740,
3,
4725,
187,
50266,
29,
1590,
821,
568,
34,
3760,
3,
4725,
187,
50266,
29,
11807,
821,
568,
17,
3,
4725,
187,
50270,
870,
4909,
31,
187,
50270,
29,
4909,
2730,
67,
821,
568,
5672,
3,
4725,
187,
50266,
29,
20932,
821,
568,
805,
3,
4725,
187,
50266,
29,
4897,
46206,
568,
47455,
3,
4725,
187,
50266,
29,
1590,
821,
568,
4218,
487,
363,
3,
4725,
187,
50266,
29,
11807,
821,
568,
19,
3,
4725,
187,
50266,
29,
49611,
821,
568,
18,
3,
4725,
187,
50270,
870,
4909,
31,
187,
50270,
29,
4909,
2730,
67,
821,
568,
5672,
3,
4725,
187,
50266,
29,
20932,
821,
568,
883,
3,
4725,
187,
50266,
29,
4897,
46206,
568,
3269,
8551,
3,
4725,
187,
50266,
29,
1590,
821,
568,
4218,
487,
363,
3,
4725,
187,
50266,
29,
11807,
821,
568,
19,
3,
4725,
187,
50266,
29,
49611,
821,
568,
18,
3,
4725,
187,
50270,
870,
4909,
31,
187,
50274,
870,
8345,
31,
187,
50274,
29,
44849,
1385,
568,
21,
1138,
187,
50270,
29,
9337,
31,
187,
50266,
29,
17523,
30296,
3102,
2548,
568,
15422,
3,
4725,
187,
50270,
870,
9337,
31,
187,
50270,
29,
9337,
31,
187,
50266,
29,
17523,
30296,
3102,
2548,
568,
27250,
9312,
3,
4725,
187,
50270,
870,
9337,
31,
187,
50270,
29,
9337,
31,
187,
50266,
29,
17523,
30296,
3102,
2548,
568,
23706,
1138,
187,
50262,
29,
16054,
6573,
46206,
568,
3269,
17,
28766,
2385,
3,
4725,
187,
50262,
29,
17424,
6573,
46206,
568,
3269,
1418,
1438,
3,
4725,
187,
50266,
870,
17523,
30296,
31,
187,
50270,
870,
9337,
31,
187,
50270,
29,
9337,
31,
187,
50266,
29,
17523,
30296,
3102,
2548,
568,
23706,
1138,
187,
50262,
29,
16054,
6573,
46206,
568,
3269,
37,
4339,
23,
39,
19,
3,
4725,
187,
50262,
29,
17424,
6573,
46206,
568,
3269,
2648,
15651,
3,
4725,
187,
50266,
870,
17523,
30296,
31,
187,
50270,
870,
9337,
31,
187,
50274,
870,
44849,
31,
187,
50274,
29,
67,
6609,
1385,
568,
19,
1138,
187,
50270,
29,
14224,
16421,
5683,
568,
7750,
3,
16421,
10854,
568,
7750,
1138,
187,
50266,
29,
1274,
4357,
187,
50266,
29,
918,
4357,
187,
50266,
29,
3956,
4357,
187,
50266,
29,
10492,
4357,
187,
50266,
29,
41758,
4357,
187,
50270,
870,
14224,
31,
187,
50270,
29,
14224,
16421,
5683,
568,
7750,
3,
16421,
10854,
568,
7750,
1138,
187,
50266,
29,
1274,
3740,
568,
35275,
3,
4725,
187,
50266,
29,
918,
3740,
568,
35275,
3,
4725,
187,
50266,
29,
3956,
3740,
568,
35275,
3,
4725,
187,
50266,
29,
10492,
3740,
568,
35275,
3,
4725,
187,
50266,
29,
41758,
4357,
187,
50270,
870,
14224,
31,
187,
50274,
870,
67,
6609,
31,
187,
50274,
29,
3992,
11446,
57,
3671,
1385,
568,
938,
1138,
187,
50270,
29,
14506,
930,
39,
6917,
2618,
568,
18467,
3,
8266,
2618,
568,
17,
3,
7522,
2618,
568,
17,
3,
5680,
2618,
568,
17,
3,
4647,
16976,
568,
5672,
3,
4647,
29694,
568,
5672,
3,
4647,
30365,
568,
5672,
3,
4647,
19710,
421,
568,
5672,
1138,
187,
50266,
29,
40446,
11593,
568,
16691,
3,
9118,
568,
10492,
3,
2505,
46503,
568,
17,
3,
16384,
4312,
568,
7750,
3,
26234,
568,
17,
3,
23973,
1992,
39805,
568,
7750,
3,
4725,
187,
50266,
29,
39013,
12623,
568,
5672,
3,
8763,
568,
7750,
3,
4725,
187,
50270,
870,
14506,
31,
187,
50270,
29,
14506,
930,
39,
6917,
2618,
568,
17,
3,
8266,
2618,
568,
18,
3,
7522,
2618,
568,
17,
3,
5680,
2618,
568,
17,
3,
4647,
16976,
568,
5672,
3,
4647,
29694,
568,
7750,
3,
4647,
30365,
568,
7750,
3,
4647,
19710,
421,
568,
7750,
6750,
14506,
31,
187,
50270,
29,
14506,
930,
39,
6917,
2618,
568,
17,
3,
8266,
2618,
568,
18,
3,
7522,
2618,
568,
17,
3,
5680,
2618,
568,
17,
3,
4647,
16976,
568,
5672,
3,
4647,
29694,
568,
7750,
3,
4647,
30365,
568,
7750,
3,
4647,
19710,
421,
568,
7750,
6750,
14506,
31,
187,
50270,
29,
14506,
930,
39,
6917,
2618,
568,
17,
3,
8266,
2618,
568,
19,
3,
7522,
2618,
568,
17,
3,
5680,
2618,
568,
17,
3,
4647,
16976,
568,
5672,
3,
4647,
29694,
568,
7750,
3,
4647,
30365,
568,
7750,
3,
4647,
19710,
421,
568,
7750,
6750,
14506,
31,
187,
50270,
29,
14506,
930,
39,
6917,
2618,
568,
17,
3,
8266,
2618,
568,
19,
3,
7522,
2618,
568,
17,
3,
5680,
2618,
568,
17,
3,
4647,
16976,
568,
5672,
3,
4647,
29694,
568,
7750,
3,
4647,
30365,
568,
7750,
3,
4647,
19710,
421,
568,
7750,
6750,
14506,
31,
187,
50270,
29,
14506,
930,
39,
6917,
2618,
568,
17,
3,
8266,
2618,
568,
17,
3,
7522,
2618,
568,
17,
3,
5680,
2618,
568,
17,
3,
4647,
16976,
568,
5672,
3,
4647,
29694,
568,
7750,
3,
4647,
30365,
568,
7750,
3,
4647,
19710,
421,
568,
7750,
6750,
14506,
31,
187,
50270,
29,
14506,
930,
39,
6917,
2618,
568,
17,
3,
8266,
2618,
568,
17,
3,
7522,
2618,
568,
17,
3,
5680,
2618,
568,
17,
3,
4647,
16976,
568,
5672,
3,
4647,
29694,
568,
7750,
3,
4647,
30365,
568,
7750,
3,
4647,
19710,
421,
568,
7750,
6750,
14506,
31,
187,
50270,
29,
14506,
930,
39,
6917,
2618,
568,
17,
3,
8266,
2618,
568,
17,
3,
7522,
2618,
568,
17,
3,
5680,
2618,
568,
17,
3,
4647,
16976,
568,
5672,
3,
4647,
29694,
568,
7750,
3,
4647,
30365,
568,
7750,
3,
4647,
19710,
421,
568,
7750,
6750,
14506,
31,
187,
50270,
29,
14506,
930,
39,
6917,
2618,
568,
17,
3,
8266,
2618,
568,
17,
3,
7522,
2618,
568,
17,
3,
5680,
2618,
568,
17,
3,
4647,
16976,
568,
5672,
3,
4647,
29694,
568,
7750,
3,
4647,
30365,
568,
7750,
3,
4647,
19710,
421,
568,
7750,
6750,
14506,
31,
187,
50270,
29,
14506,
930,
39,
6917,
2618,
568,
17,
3,
8266,
2618,
568,
17,
3,
7522,
2618,
568,
17,
3,
5680,
2618,
568,
17,
3,
4647,
16976,
568,
5672,
3,
4647,
29694,
568,
7750,
3,
4647,
30365,
568,
7750,
3,
4647,
19710,
421,
568,
7750,
6750,
14506,
31,
187,
50270,
29,
14506,
930,
39,
6917,
2618,
568,
17,
3,
8266,
2618,
568,
17,
3,
7522,
2618,
568,
17,
3,
5680,
2618,
568,
17,
3,
4647,
16976,
568,
5672,
3,
4647,
29694,
568,
7750,
3,
4647,
30365,
568,
7750,
3,
4647,
19710,
421,
568,
7750,
6750,
14506,
31,
187,
50270,
29,
14506,
930,
39,
6917,
2618,
568,
17,
3,
8266,
2618,
568,
17,
3,
7522,
2618,
568,
17,
3,
5680,
2618,
568,
17,
3,
4647,
16976,
568,
5672,
3,
4647,
29694,
568,
7750,
3,
4647,
30365,
568,
7750,
3,
4647,
19710,
421,
568,
7750,
6750,
14506,
31,
187,
50270,
29,
14506,
930,
39,
6917,
2618,
568,
17,
3,
8266,
2618,
568,
17,
3,
7522,
2618,
568,
17,
3,
5680,
2618,
568,
17,
3,
4647,
16976,
568,
5672,
3,
4647,
29694,
568,
7750,
3,
4647,
30365,
568,
7750,
3,
4647,
19710,
421,
568,
7750,
6750,
14506,
31,
187,
50270,
29,
14506,
930,
39,
6917,
2618,
568,
17,
3,
8266,
2618,
568,
17,
3,
7522,
2618,
568,
17,
3,
5680,
2618,
568,
17,
3,
4647,
16976,
568,
5672,
3,
4647,
29694,
568,
7750,
3,
4647,
30365,
568,
7750,
3,
4647,
19710,
421,
568,
7750,
6750,
14506,
31,
187,
50270,
29,
14506,
930,
39,
6917,
2618,
568,
17,
3,
8266,
2618,
568,
17,
3,
7522,
2618,
568,
17,
3,
5680,
2618,
568,
17,
3,
4647,
16976,
568,
5672,
3,
4647,
29694,
568,
7750,
3,
4647,
30365,
568,
7750,
3,
4647,
19710,
421,
568,
7750,
6750,
14506,
31,
187,
50270,
29,
14506,
930,
39,
6917,
2618,
568,
3079,
3,
8266,
2618,
568,
18,
3,
7522,
2618,
568,
17,
3,
5680,
2618,
568,
17,
3,
4647,
16976,
568,
5672,
3,
4647,
29694,
568,
7750,
3,
4647,
30365,
568,
7750,
3,
4647,
19710,
421,
568,
7750,
6750,
14506,
31,
187,
50270,
29,
14506,
930,
39,
6917,
2618,
568,
3156,
3,
8266,
2618,
568,
18,
3,
7522,
2618,
568,
17,
3,
5680,
2618,
568,
17,
3,
4647,
16976,
568,
5672,
3,
4647,
29694,
568,
7750,
3,
4647,
30365,
568,
7750,
3,
4647,
19710,
421,
568,
7750,
6750,
14506,
31,
187,
50270,
29,
14506,
930,
39,
6917,
2618,
568,
2031,
3,
8266,
2618,
568,
18,
3,
7522,
2618,
568,
17,
3,
5680,
2618,
568,
17,
3,
4647,
16976,
568,
5672,
3,
4647,
29694,
568,
7750,
3,
4647,
30365,
568,
7750,
3,
4647,
19710,
421,
568,
7750,
6750,
14506,
31,
187,
50270,
29,
14506,
930,
39,
6917,
2618,
568,
2945,
3,
8266,
2618,
568,
18,
3,
7522,
2618,
568,
17,
3,
5680,
2618,
568,
17,
3,
4647,
16976,
568,
5672,
3,
4647,
29694,
568,
7750,
3,
4647,
30365,
568,
7750,
3,
4647,
19710,
421,
568,
7750,
6750,
14506,
31,
187,
50270,
29,
14506,
930,
39,
6917,
2618,
568,
26,
3,
8266,
2618,
568,
18,
3,
7522,
2618,
568,
17,
3,
5680,
2618,
568,
17,
3,
4647,
16976,
568,
5672,
3,
4647,
29694,
568,
7750,
3,
4647,
30365,
568,
7750,
3,
4647,
19710,
421,
568,
7750,
6750,
14506,
31,
187,
50274,
870,
3992,
11446,
57,
3671,
31,
187,
50274,
29,
3992,
57,
3671,
1385,
568,
25,
1138,
187,
50270,
29,
14506,
930,
39,
6917,
2618,
568,
18467,
3,
8266,
2618,
568,
17,
3,
7522,
2618,
568,
17,
3,
5680,
2618,
568,
17,
3,
1269,
71,
2618,
568,
17,
3,
4647,
16976,
568,
7750,
3,
4647,
29694,
568,
7750,
3,
4647,
30365,
568,
7750,
3,
4647,
19710,
421,
568,
7750,
1138,
187,
50266,
29,
40446,
11593,
568,
16691,
3,
9118,
568,
10492,
3,
2505,
46503,
568,
17,
3,
16384,
4312,
568,
7750,
3,
26234,
568,
17,
3,
23973,
1992,
39805,
568,
7750,
3,
4725,
187,
50266,
29,
39013,
12623,
568,
5672,
3,
8763,
568,
7750,
3,
4725,
187,
50270,
870,
14506,
31,
187,
50270,
29,
14506,
930,
39,
6917,
2618,
568,
18467,
3,
8266,
2618,
568,
21,
3,
7522,
2618,
568,
19,
3,
5680,
2618,
568,
18,
3,
1269,
71,
2618,
568,
17,
3,
4647,
16976,
568,
5672,
3,
4647,
29694,
568,
5672,
3,
4647,
30365,
568,
5672,
3,
4647,
19710,
421,
568,
7750,
1138,
187,
50266,
29,
40446,
11593,
568,
9229,
3,
9118,
568,
10492,
3,
2505,
46503,
568,
17,
3,
16384,
4312,
568,
7750,
3,
26234,
568,
17,
3,
23973,
1992,
39805,
568,
7750,
3,
4725,
187,
50266,
29,
39013,
12623,
568,
5672,
3,
8763,
568,
7750,
3,
4725,
187,
50270,
870,
14506,
31,
187,
50270,
29,
14506,
930,
39,
6917,
2618,
568,
18467,
3,
8266,
2618,
568,
21,
3,
7522,
2618,
568,
19,
3,
5680,
2618,
568,
17,
3,
1269,
71,
2618,
568,
17,
3,
4647,
16976,
568,
5672,
3,
4647,
29694,
568,
5672,
3,
4647,
30365,
568,
5672,
3,
4647,
19710,
421,
568,
7750,
1138,
187,
50266,
29,
40446,
11593,
568,
9229,
3,
9118,
568,
10492,
3,
2505,
46503,
568,
17,
3,
16384,
4312,
568,
7750,
3,
26234,
568,
17,
3,
23973,
1992,
39805,
568,
7750,
3,
4725,
187,
50266,
29,
39013,
12623,
568,
5672,
3,
8763,
568,
7750,
3,
4725,
187,
50270,
870,
14506,
31,
187,
50270,
29,
14506,
930,
39,
6917,
2618,
568,
15429,
3,
8266,
2618,
568,
21,
3,
7522,
2618,
568,
19,
3,
5680,
2618,
568,
17,
3,
1269,
71,
2618,
568,
17,
3,
4647,
16976,
568,
5672,
3,
4647,
29694,
568,
5672,
3,
4647,
30365,
568,
5672,
3,
4647,
19710,
421,
568,
7750,
1138,
187,
50266,
29,
40446,
11593,
568,
9229,
3,
9118,
568,
10492,
3,
2505,
46503,
568,
17,
3,
16384,
4312,
568,
7750,
3,
26234,
568,
17,
3,
23973,
1992,
39805,
568,
7750,
3,
4725,
187,
50266,
29,
39013,
12623,
568,
5672,
3,
8763,
568,
7750,
3,
4725,
187,
50270,
870,
14506,
31,
187,
50270,
29,
14506,
930,
39,
6917,
2618,
568,
18467,
3,
8266,
2618,
568,
22,
3,
7522,
2618,
568,
20,
3,
5680,
2618,
568,
17,
3,
1269,
71,
2618,
568,
17,
3,
4647,
16976,
568,
5672,
3,
4647,
29694,
568,
5672,
3,
4647,
30365,
568,
5672,
3,
4647,
19710,
421,
568,
7750,
1138,
187,
50266,
29,
40446,
11593,
568,
16691,
3,
9118,
568,
9229,
3,
2505,
46503,
568,
17,
3,
16384,
4312,
568,
5672,
3,
26234,
568,
17,
3,
23973,
1992,
39805,
568,
7750,
3,
4725,
187,
50266,
29,
39013,
12623,
568,
5672,
3,
8763,
568,
7750,
3,
4725,
187,
50270,
870,
14506,
31,
187,
50270,
29,
14506,
930,
39,
6917,
2618,
568,
18467,
3,
8266,
2618,
568,
17,
3,
7522,
2618,
568,
17,
3,
5680,
2618,
568,
17,
3,
1269,
71,
2618,
568,
17,
3,
4647,
16976,
568,
5672,
3,
4647,
29694,
568,
5672,
3,
4647,
30365,
568,
5672,
3,
4647,
19710,
421,
568,
7750,
1138,
187,
50266,
29,
40446,
11593,
568,
1274,
3,
9118,
568,
9229,
3,
2505,
46503,
568,
17,
3,
16384,
4312,
568,
5672,
3,
26234,
568,
17,
3,
23973,
1992,
39805,
568,
7750,
3,
4725,
187,
50266,
29,
39013,
12623,
568,
5672,
3,
8763,
568,
7750,
3,
4725,
187,
50270,
870,
14506,
31,
187,
50270,
29,
14506,
930,
39,
6917,
2618,
568,
18467,
3,
8266,
2618,
568,
17,
3,
7522,
2618,
568,
17,
3,
5680,
2618,
568,
17,
3,
1269,
71,
2618,
568,
17,
3,
4647,
16976,
568,
5672,
3,
4647,
29694,
568,
7750,
3,
4647,
30365,
568,
7750,
3,
4647,
19710,
421,
568,
7750,
1138,
187,
50266,
29,
40446,
11593,
568,
16691,
3,
9118,
568,
10492,
3,
2505,
46503,
568,
17,
3,
16384,
4312,
568,
7750,
3,
26234,
568,
17,
3,
23973,
1992,
39805,
568,
7750,
3,
4725,
187,
50266,
29,
39013,
12623,
568,
5672,
3,
8763,
568,
7750,
3,
4725,
187,
50270,
870,
14506,
31,
187,
50270,
29,
14506,
930,
39,
6917,
2618,
568,
18467,
3,
8266,
2618,
568,
17,
3,
7522,
2618,
568,
17,
3,
5680,
2618,
568,
17,
3,
1269,
71,
2618,
568,
17,
3,
4647,
16976,
568,
7750,
3,
4647,
29694,
568,
5672,
3,
4647,
30365,
568,
7750,
3,
4647,
19710,
421,
568,
7750,
1138,
187,
50266,
29,
40446,
11593,
568,
16691,
3,
9118,
568,
10492,
3,
2505,
46503,
568,
17,
3,
16384,
4312,
568,
7750,
3,
26234,
568,
17,
3,
23973,
1992,
39805,
568,
7750,
3,
4725,
187,
50266,
29,
39013,
12623,
568,
5672,
3,
8763,
568,
7750,
3,
4725,
187,
50270,
870,
14506,
31,
187,
50274,
870,
3992,
57,
3671,
31,
187,
50274,
29,
3992,
37217,
868,
1385,
568,
23,
1138,
187,
50270,
29,
3992,
11446,
1416,
568,
20167,
3,
1269,
71,
2618,
568,
17,
3,
4270,
249,
2618,
568,
17,
3,
2840,
44629,
249,
568,
7750,
3,
4725,
187,
50270,
29,
3992,
11446,
1416,
568,
2115,
785,
3,
1269,
71,
2618,
568,
1010,
3,
4270,
249,
2618,
568,
20,
3,
2840,
44629,
249,
568,
7750,
3,
4725,
187,
50270,
29,
3992,
11446,
1416,
568,
2115,
785,
544,
17,
9336,
1269,
71,
2618,
568,
1036,
3,
4270,
249,
2618,
568,
23,
3,
2840,
44629,
249,
568,
7750,
3,
4725,
187,
50270,
29,
3992,
11446,
1416,
568,
18191,
7549,
3,
1269,
71,
2618,
568,
1166,
3,
4270,
249,
2618,
568,
21,
3,
2840,
44629,
249,
568,
7750,
3,
4725,
187,
50270,
29,
3992,
11446,
1416,
568,
18191,
7549,
544,
17,
9336,
1269,
71,
2618,
568,
1093,
3,
4270,
249,
2618,
568,
24,
3,
2840,
44629,
249,
568,
7750,
3,
4725,
187,
50270,
29,
3992,
11446,
1416,
568,
34878,
3,
1269,
71,
2618,
568,
746,
3,
4270,
249,
2618,
568,
22,
3,
2840,
44629,
249,
568,
7750,
3,
4725,
187,
50274,
870,
3992,
37217,
868,
31,
187,
50274,
29,
36022,
31,
187,
50270,
29,
4663,
264,
2973,
641,
31,
187,
50266,
29,
31952,
6573,
46206,
568,
3269,
8551,
3,
4725,
187,
50266,
29,
31952,
6573,
46206,
568,
47455,
3,
4725,
187,
50266,
29,
31952,
6573,
46206,
568,
15651,
1418,
3,
4725,
187,
50266,
29,
31952,
6573,
46206,
568,
3269,
361,
3269,
361,
3,
4725,
187,
50266,
29,
31952,
6573,
46206,
568,
3269,
1418,
3269,
3,
4725,
187,
50266,
29,
31952,
6573,
46206,
568,
15651,
3269,
361,
3,
4725,
187,
50266,
29,
31952,
6573,
46206,
568,
15651,
361,
3269,
3,
4725,
187,
50266,
29,
31952,
6573,
46206,
568,
3269,
361,
15651,
3,
4725,
187,
50266,
29,
31952,
6573,
46206,
568,
3269,
25,
9439,
3,
4725,
187,
50266,
29,
31952,
6573,
46206,
568,
3269,
8897,
933,
3,
4725,
187,
50266,
29,
31952,
6573,
46206,
568,
3269,
17,
28766,
2385,
3,
4725,
187,
50266,
29,
31952,
6573,
46206,
568,
3269,
23576,
933,
3,
4725,
187,
50266,
29,
31952,
6573,
46206,
568,
3269,
33038,
1438,
3,
4725,
187,
50266,
29,
31952,
6573,
46206,
568,
3269,
361,
40058,
3,
4725,
187,
50266,
29,
31952,
6573,
46206,
568,
3269,
36,
17,
36,
17,
36,
17,
3,
4725,
187,
50266,
29,
31952,
6573,
46206,
568,
3269,
40058,
1438,
3,
4725,
187,
50266,
29,
31952,
6573,
46206,
568,
3269,
14432,
3269,
3,
4725,
187,
50266,
29,
31952,
6573,
46206,
568,
3269,
1525,
1610,
2526,
3,
4725,
187,
50266,
29,
31952,
6573,
46206,
568,
15651,
3269,
2648,
3,
4725,
187,
50266,
29,
31952,
6573,
46206,
568,
3269,
37,
4339,
23,
39,
19,
3,
4725,
187,
50266,
29,
31952,
6573,
46206,
568,
3269,
2526,
361,
2526,
3,
4725,
187,
50266,
29,
31952,
6573,
46206,
568,
15651,
40058,
3,
4725,
187,
50266,
29,
31952,
6573,
46206,
568,
3269,
361,
2526,
2648,
3,
4725,
187,
50266,
29,
31952,
6573,
46206,
568,
3269,
41110,
3269,
3,
4725,
187,
50266,
29,
31952,
6573,
46206,
568,
3269,
1418,
1438,
3,
4725,
187,
50266,
29,
31952,
6573,
46206,
568,
15651,
361,
3269,
3,
4725,
187,
50266,
29,
31952,
6573,
46206,
568,
15651,
3269,
361,
3,
4725,
187,
50266,
29,
31952,
6573,
46206,
568,
3269,
361,
15651,
3,
4725,
187,
50266,
29,
31952,
6573,
46206,
568,
3269,
33038,
1438,
3,
4725,
187,
50266,
29,
31952,
6573,
46206,
568,
3269,
25,
9439,
3,
4725,
187,
50266,
29,
31952,
6573,
46206,
568,
3269,
361,
40058,
3,
4725,
187,
50266,
29,
31952,
6573,
46206,
568,
3269,
1418,
3269,
3,
4725,
187,
50266,
29,
31952,
6573,
46206,
568,
3269,
361,
2648,
3269,
3,
4725,
187,
50266,
29,
31952,
6573,
46206,
568,
3269,
2648,
15651,
3,
4725,
187,
50266,
29,
31952,
6573,
46206,
568,
3269,
2648,
3269,
2648,
3,
4725,
187,
50266,
29,
31952,
6573,
46206,
568,
15651,
3269,
1525,
3,
4725,
187,
50266,
29,
31952,
6573,
46206,
568,
3269,
1525,
2648,
3269,
3,
4725,
187,
50266,
29,
31952,
6573,
46206,
568,
15651,
1525,
2648,
3,
4725,
187,
50266,
29,
31952,
6573,
46206,
568,
3269,
2648,
1525,
3269,
3,
4725,
187,
50266,
29,
31952,
6573,
46206,
568,
15651,
2648,
1525,
3,
4725,
187,
50266,
29,
31952,
6573,
46206,
568,
3269,
1610,
2526,
3269,
3,
4725,
187,
50266,
29,
31952,
6573,
46206,
568,
3269,
1610,
41110,
3,
4725,
187,
50266,
29,
31952,
6573,
46206,
568,
3269,
1525,
2648,
361,
3,
4725,
187,
50266,
29,
31952,
6573,
46206,
568,
15651,
2648,
361,
3,
4725,
187,
50266,
29,
31952,
6573,
46206,
568,
15651,
1525,
361,
3,
4725,
187,
50266,
29,
31952,
6573,
46206,
568,
15651,
2526,
361,
3,
4725,
187,
50266,
29,
31952,
6573,
46206,
568,
3269,
40263,
1525,
3,
4725,
187,
50266,
29,
31952,
6573,
46206,
568,
3269,
47763,
30651,
3,
4725,
187,
50266,
29,
31952,
6573,
46206,
568,
3269,
40306,
2526,
3,
4725,
187,
50266,
29,
31952,
6573,
46206,
568,
3269,
1610,
1525,
2526,
3,
4725,
187,
50266,
29,
31952,
6573,
46206,
568,
3269,
40306,
361,
3,
4725,
187,
50266,
29,
31952,
6573,
46206,
568,
3269,
26409,
361,
3,
4725,
187,
50266,
29,
31952,
6573,
46206,
568,
3269,
1525,
1610,
361,
3,
4725,
187,
50266,
29,
31952,
6573,
46206,
568,
3269,
1525,
1610,
2526,
3,
4725,
187,
50266,
29,
31952,
6573,
46206,
568,
3269,
26409,
1525,
3,
4725,
187,
50266,
29,
31952,
6573,
46206,
568,
3269,
26409,
1610,
3,
4725,
187,
50270,
870,
4663,
264,
2973,
641,
31,
187,
50274,
870,
36022,
31,
187,
870,
4826,
30035,
31,
187
] | <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<styleSheet xmlns="http://schemas.openxmlformats.org/spreadsheetml/2006/main">
<numFmts count="2">
<numFmt numFmtId="164" formatCode="GENERAL" />
<numFmt numFmtId="165" formatCode="MM/DD/YYYY" />
</numFmts>
<fonts count="6">
<font>
<sz val="11" />
<color rgb="FF000000" />
<name val="Calibri" />
<family val="2" />
<charset val="1" />
</font>
<font>
<sz val="10" />
<name val="Arial" />
<family val="0" />
</font>
<font>
<sz val="10" />
<name val="Arial" />
<family val="0" />
</font>
<font>
<sz val="10" />
<name val="Arial" />
<family val="0" />
</font>
<font><b val="true" />
<sz val="12" />
<color rgb="FFFFFFFF" />
<name val="Calibri" />
<family val="2" />
<charset val="1" />
</font>
<font><b val="true" />
<sz val="11" />
<color rgb="FF000000" />
<name val="Calibri" />
<family val="2" />
<charset val="1" />
</font>
</fonts>
<fills count="4">
<fill>
<patternFill patternType="none" />
</fill>
<fill>
<patternFill patternType="gray125" />
</fill>
<fill>
<patternFill patternType="solid">
<fgColor rgb="FF090948" />
<bgColor rgb="FF000080" />
</patternFill>
</fill>
<fill>
<patternFill patternType="solid">
<fgColor rgb="FFDCE6F2" />
<bgColor rgb="FFCCFFFF" />
</patternFill>
</fill>
</fills>
<borders count="2">
<border diagonalUp="false" diagonalDown="false">
<left/>
<right/>
<top/>
<bottom/>
<diagonal/>
</border>
<border diagonalUp="false" diagonalDown="false">
<left style="thin" />
<right style="thin" />
<top style="thin" />
<bottom style="thin" />
<diagonal/>
</border>
</borders>
<cellStyleXfs count="20">
<xf numFmtId="164" fontId="0" fillId="0" borderId="0" applyFont="true" applyBorder="true" applyAlignment="true" applyProtection="true">
<alignment horizontal="general" vertical="bottom" textRotation="0" wrapText="false" indent="0" shrinkToFit="false" />
<protection locked="true" hidden="false" />
</xf>
<xf numFmtId="0" fontId="1" fillId="0" borderId="0" applyFont="true" applyBorder="false" applyAlignment="false" applyProtection="false"></xf>
<xf numFmtId="0" fontId="1" fillId="0" borderId="0" applyFont="true" applyBorder="false" applyAlignment="false" applyProtection="false"></xf>
<xf numFmtId="0" fontId="2" fillId="0" borderId="0" applyFont="true" applyBorder="false" applyAlignment="false" applyProtection="false"></xf>
<xf numFmtId="0" fontId="2" fillId="0" borderId="0" applyFont="true" applyBorder="false" applyAlignment="false" applyProtection="false"></xf>
<xf numFmtId="0" fontId="0" fillId="0" borderId="0" applyFont="true" applyBorder="false" applyAlignment="false" applyProtection="false"></xf>
<xf numFmtId="0" fontId="0" fillId="0" borderId="0" applyFont="true" applyBorder="false" applyAlignment="false" applyProtection="false"></xf>
<xf numFmtId="0" fontId="0" fillId="0" borderId="0" applyFont="true" applyBorder="false" applyAlignment="false" applyProtection="false"></xf>
<xf numFmtId="0" fontId="0" fillId="0" borderId="0" applyFont="true" applyBorder="false" applyAlignment="false" applyProtection="false"></xf>
<xf numFmtId="0" fontId="0" fillId="0" borderId="0" applyFont="true" applyBorder="false" applyAlignment="false" applyProtection="false"></xf>
<xf numFmtId="0" fontId="0" fillId="0" borderId="0" applyFont="true" applyBorder="false" applyAlignment="false" applyProtection="false"></xf>
<xf numFmtId="0" fontId="0" fillId="0" borderId="0" applyFont="true" applyBorder="false" applyAlignment="false" applyProtection="false"></xf>
<xf numFmtId="0" fontId="0" fillId="0" borderId="0" applyFont="true" applyBorder="false" applyAlignment="false" applyProtection="false"></xf>
<xf numFmtId="0" fontId="0" fillId="0" borderId="0" applyFont="true" applyBorder="false" applyAlignment="false" applyProtection="false"></xf>
<xf numFmtId="0" fontId="0" fillId="0" borderId="0" applyFont="true" applyBorder="false" applyAlignment="false" applyProtection="false"></xf>
<xf numFmtId="43" fontId="1" fillId="0" borderId="0" applyFont="true" applyBorder="false" applyAlignment="false" applyProtection="false"></xf>
<xf numFmtId="41" fontId="1" fillId="0" borderId="0" applyFont="true" applyBorder="false" applyAlignment="false" applyProtection="false"></xf>
<xf numFmtId="44" fontId="1" fillId="0" borderId="0" applyFont="true" applyBorder="false" applyAlignment="false" applyProtection="false"></xf>
<xf numFmtId="42" fontId="1" fillId="0" borderId="0" applyFont="true" applyBorder="false" applyAlignment="false" applyProtection="false"></xf>
<xf numFmtId="9" fontId="1" fillId="0" borderId="0" applyFont="true" applyBorder="false" applyAlignment="false" applyProtection="false"></xf>
</cellStyleXfs>
<cellXfs count="8">
<xf numFmtId="164" fontId="0" fillId="0" borderId="0" xfId="0" applyFont="false" applyBorder="false" applyAlignment="false" applyProtection="false">
<alignment horizontal="general" vertical="bottom" textRotation="0" wrapText="false" indent="0" shrinkToFit="false" />
<protection locked="true" hidden="false" />
</xf>
<xf numFmtId="164" fontId="4" fillId="2" borderId="1" xfId="0" applyFont="true" applyBorder="true" applyAlignment="true" applyProtection="false">
<alignment horizontal="center" vertical="bottom" textRotation="0" wrapText="false" indent="0" shrinkToFit="false" />
<protection locked="true" hidden="false" />
</xf>
<xf numFmtId="164" fontId="4" fillId="2" borderId="0" xfId="0" applyFont="true" applyBorder="true" applyAlignment="true" applyProtection="false">
<alignment horizontal="center" vertical="bottom" textRotation="0" wrapText="false" indent="0" shrinkToFit="false" />
<protection locked="true" hidden="false" />
</xf>
<xf numFmtId="165" fontId="4" fillId="2" borderId="0" xfId="0" applyFont="true" applyBorder="true" applyAlignment="true" applyProtection="false">
<alignment horizontal="center" vertical="bottom" textRotation="0" wrapText="false" indent="0" shrinkToFit="false" />
<protection locked="true" hidden="false" />
</xf>
<xf numFmtId="164" fontId="5" fillId="3" borderId="0" xfId="0" applyFont="true" applyBorder="true" applyAlignment="true" applyProtection="false">
<alignment horizontal="general" vertical="center" textRotation="0" wrapText="true" indent="0" shrinkToFit="false" />
<protection locked="true" hidden="false" />
</xf>
<xf numFmtId="164" fontId="0" fillId="0" borderId="0" xfId="0" applyFont="true" applyBorder="true" applyAlignment="true" applyProtection="false">
<alignment horizontal="left" vertical="center" textRotation="0" wrapText="true" indent="0" shrinkToFit="false" />
<protection locked="true" hidden="false" />
</xf>
<xf numFmtId="164" fontId="0" fillId="0" borderId="0" xfId="0" applyFont="true" applyBorder="false" applyAlignment="false" applyProtection="false">
<alignment horizontal="general" vertical="bottom" textRotation="0" wrapText="false" indent="0" shrinkToFit="false" />
<protection locked="true" hidden="false" />
</xf>
<xf numFmtId="164" fontId="0" fillId="0" borderId="0" xfId="0" applyFont="false" applyBorder="true" applyAlignment="false" applyProtection="false">
<alignment horizontal="general" vertical="bottom" textRotation="0" wrapText="false" indent="0" shrinkToFit="false" />
<protection locked="true" hidden="false" />
</xf>
</cellXfs>
<cellStyles count="6">
<cellStyle name="Normal" xfId="0" builtinId="0" customBuiltin="false" />
<cellStyle name="Comma" xfId="15" builtinId="3" customBuiltin="false" />
<cellStyle name="Comma [0]" xfId="16" builtinId="6" customBuiltin="false" />
<cellStyle name="Currency" xfId="17" builtinId="4" customBuiltin="false" />
<cellStyle name="Currency [0]" xfId="18" builtinId="7" customBuiltin="false" />
<cellStyle name="Percent" xfId="19" builtinId="5" customBuiltin="false" />
</cellStyles>
<colors>
<indexedColors>
<rgbColor rgb="FF000000" />
<rgbColor rgb="FFFFFFFF" />
<rgbColor rgb="FFFF0000" />
<rgbColor rgb="FF00FF00" />
<rgbColor rgb="FF0000FF" />
<rgbColor rgb="FFFFFF00" />
<rgbColor rgb="FFFF00FF" />
<rgbColor rgb="FF00FFFF" />
<rgbColor rgb="FF800000" />
<rgbColor rgb="FF008000" />
<rgbColor rgb="FF090948" />
<rgbColor rgb="FF808000" />
<rgbColor rgb="FF800080" />
<rgbColor rgb="FF008080" />
<rgbColor rgb="FFC0C0C0" />
<rgbColor rgb="FF808080" />
<rgbColor rgb="FF9999FF" />
<rgbColor rgb="FF993366" />
<rgbColor rgb="FFFFFFCC" />
<rgbColor rgb="FFDCE6F2" />
<rgbColor rgb="FF660066" />
<rgbColor rgb="FFFF8080" />
<rgbColor rgb="FF0066CC" />
<rgbColor rgb="FFCCCCFF" />
<rgbColor rgb="FF000080" />
<rgbColor rgb="FFFF00FF" />
<rgbColor rgb="FFFFFF00" />
<rgbColor rgb="FF00FFFF" />
<rgbColor rgb="FF800080" />
<rgbColor rgb="FF800000" />
<rgbColor rgb="FF008080" />
<rgbColor rgb="FF0000FF" />
<rgbColor rgb="FF00CCFF" />
<rgbColor rgb="FFCCFFFF" />
<rgbColor rgb="FFCCFFCC" />
<rgbColor rgb="FFFFFF99" />
<rgbColor rgb="FF99CCFF" />
<rgbColor rgb="FFFF99CC" />
<rgbColor rgb="FFCC99FF" />
<rgbColor rgb="FFFFCC99" />
<rgbColor rgb="FF3366FF" />
<rgbColor rgb="FF33CCCC" />
<rgbColor rgb="FF99CC00" />
<rgbColor rgb="FFFFCC00" />
<rgbColor rgb="FFFF9900" />
<rgbColor rgb="FFFF6600" />
<rgbColor rgb="FF666699" />
<rgbColor rgb="FF969696" />
<rgbColor rgb="FF003366" />
<rgbColor rgb="FF339966" />
<rgbColor rgb="FF003300" />
<rgbColor rgb="FF333300" />
<rgbColor rgb="FF993300" />
<rgbColor rgb="FF993366" />
<rgbColor rgb="FF333399" />
<rgbColor rgb="FF333333" />
</indexedColors>
</colors>
</styleSheet>
|
214,497 | Github | [
4976,
2795,
22454,
8681,
8021,
44237,
246,
18,
28,
187,
25875,
22454,
246,
18,
9,
68,
18,
40302,
5812,
8610,
10634,
686,
1552,
310,
247,
40302,
5084,
5137,
187,
5648,
4290,
48651,
23710,
28,
187,
29153,
64,
249,
64,
2566,
187,
85,
18,
187,
5648,
4290,
27176,
4966,
22454,
246,
18,
28,
187,
3235,
186,
9395,
5270,
187,
85,
18,
186,
25875,
22454,
2634,
85,
18,
65,
313,
187,
50276,
65,
68,
18,
65,
2372,
9,
18,
10,
29339,
5812,
8610,
10634,
686,
1552,
310,
247,
40302,
5084,
8,
187,
10,
47000,
7570,
30,
40861,
7570,
29339,
30752,
10452,
30,
77,
5009,
18,
187,
4976,
2795,
22454,
246,
18,
28,
187,
5648,
4290,
48651,
23710,
28,
187,
29153,
64,
249,
64,
2566,
187,
25875,
22454,
246,
18,
9,
68,
18,
308,
1042,
58,
7999,
5812,
8610,
10634,
686,
1552,
310,
247,
308,
1042,
58,
7999,
5084,
5137,
187,
5648,
4290,
48651,
23710,
28,
187,
29153,
64,
249,
64,
2566,
187,
85,
18,
187,
5648,
4290,
27176,
4966,
22454,
246,
18,
28,
187,
3235,
186,
9395,
5270,
187,
85,
18,
186,
25875,
22454,
2634,
85,
18,
65,
313,
187,
50276,
65,
68,
18,
65,
10058,
565,
9,
21,
10,
29339,
5812,
8610,
10634,
686,
1552,
310,
247,
308,
1042,
58,
7999,
5084,
8,
187,
10,
47000,
7570,
30,
40861,
7570,
29339,
30752,
10452,
30,
77,
5009,
18,
187,
4976,
2795,
22454,
246,
18,
28,
187,
5648,
4290,
48651,
23710,
28,
187,
29153,
64,
249,
64,
2566,
187,
25875,
22454,
246,
18,
9,
68,
18,
26381,
7999,
5812,
8610,
10634,
686,
1552,
310,
247,
26381,
7999,
5084,
5137,
187,
5648,
4290,
48651,
23710,
28,
187,
29153,
64,
249,
64,
2566,
187,
85,
18,
187,
5648,
4290,
27176,
4966,
22454,
246,
18,
28,
187,
3235,
186,
9395,
5270,
187,
85,
18,
186,
25875,
22454,
2634,
85,
18,
65,
313,
187,
50276,
65,
68,
18,
65,
1355,
565,
9,
23,
10,
29339,
5812,
8610,
10634,
686,
1552,
310,
247,
26381,
7999,
5084,
8,
187,
10,
47000,
7570,
30,
40861,
7570,
29339,
30752,
10452,
30,
77,
5009,
18,
187,
4976,
2795,
22454,
246,
18,
28,
187,
5648,
4290,
48651,
23710,
28,
187,
29153,
64,
249,
64,
2566,
187,
25875,
22454,
246,
18,
9,
68,
18,
32036,
42,
5529,
7999,
5812,
8610,
10634,
686,
1552,
310,
247,
32036,
42,
5529,
7999,
5084,
5137,
187,
5648,
4290,
48651,
23710,
28,
187,
29153,
64,
249,
64,
2566,
187,
85,
18,
187,
5648,
4290,
27176,
4966,
22454,
246,
18,
28,
187,
3235,
186,
9395,
5270,
187,
85,
18,
186,
25875,
22454,
2634,
85,
18,
65,
313,
187,
50276,
65,
68,
18,
65,
4646,
565,
9,
26,
10,
29339,
5812,
8610,
10634,
686,
1552,
310,
247,
32036,
42,
5529,
7999,
5084,
8,
187,
10,
47000,
7570,
30,
40861,
7570,
29339,
30752,
10452,
30,
77,
5009,
18,
187,
4976,
2795,
22454,
246,
18,
28,
187,
5648,
4290,
48651,
23710,
28,
187,
29153,
64,
249,
64,
2566,
187,
25875,
22454,
246,
18,
9,
68,
18,
26191,
5812,
8610,
10634,
686,
1552,
310,
247,
26191,
5084,
5137,
187,
5648,
4290,
48651,
23710,
28,
187,
29153,
64,
249,
64,
2566,
187,
85,
18,
187,
5648,
4290,
27176,
4966,
22454,
246,
18,
28,
187,
3235,
186,
9395,
5270,
187,
85,
18,
186,
25875,
22454,
2634,
85,
18,
65,
313,
187,
50276,
65,
68,
18,
65,
540,
9,
883,
10,
29339,
5812,
8610,
10634,
686,
1552,
310,
247,
26191,
5084,
8,
187,
10,
47000,
7570,
30,
40861,
7570,
29339,
30752,
10452,
30,
77,
5009,
18,
187,
4976,
2795,
22454,
246,
18,
28,
187,
5648,
4290,
48651,
23710,
28,
187,
29153,
64,
249,
64,
2566,
187,
25875,
22454,
246,
18,
9,
68,
18,
41847,
5812,
8610,
10634,
686,
1552,
310,
247,
41847,
5084,
5137,
187,
5648,
4290,
48651,
23710,
28,
187,
29153,
64,
249,
64,
2566,
187,
85,
18,
187,
5648,
4290,
27176,
4966,
22454,
246,
18,
28,
187,
3235,
186,
9395,
5270,
187,
85,
18,
186,
25875,
22454,
2634,
85,
18,
65,
313,
187,
50276,
65,
68,
18,
65,
540,
9,
883,
10,
29339,
5812,
8610,
10634,
686,
1552,
310,
247,
41847,
5084,
8,
187,
10,
47000,
7570,
30,
40861,
7570,
29339,
30752,
10452,
30,
77,
5009,
18,
187,
4976,
2795,
22454,
246,
18,
28,
187,
5648,
4290,
48651,
23710,
28,
187,
29153,
64,
249,
64,
2566,
187,
25875,
22454,
246,
18,
9,
68,
18,
39733,
7999,
5812,
8610,
10634,
686,
1552,
310,
247,
39733,
7999,
5084,
5137,
187,
5648,
4290,
48651,
23710,
28,
187,
29153,
64,
249,
64,
2566,
187,
85,
18,
187,
5648,
4290,
27176,
4966,
22454,
246,
18,
28,
187,
3235,
186,
9395,
5270,
187,
85,
18,
186,
25875,
22454,
2634,
85,
18,
65,
313,
187,
50276,
65,
68,
18,
65,
1943,
565,
9,
938,
10,
29339,
5812,
8610,
10634,
686,
1552,
310,
247,
39733,
7999,
5084,
8,
187,
10,
47000,
7570,
30,
40861,
7570,
29339,
30752,
10452,
30,
77,
5009,
18,
187,
4976,
2795,
22454,
246,
18,
28,
187,
5648,
4290,
48651,
23710,
28,
187,
29153,
64,
249,
64,
2566,
187,
25875,
22454,
246,
18,
9,
68,
18,
32823,
2894,
1556,
5812,
8610,
10634,
686,
1552,
310,
247,
32823,
2894,
1556,
5084,
5137,
187,
5648,
4290,
48651,
23710,
28,
187,
29153,
64,
249,
64,
2566,
187,
85,
18,
187,
5648,
4290,
27176,
4966,
22454,
246,
18,
28,
187,
3235,
186,
9395,
5270,
187,
85,
18,
186,
25875,
22454,
2634,
85,
18,
65,
313,
187,
50276,
65,
68,
18,
65,
14492,
9,
740,
13,
17,
10,
29339,
5812,
8610,
10634,
686,
1552,
310,
247,
32823,
2894,
1556,
5084,
8,
187,
10,
47000,
7570,
30,
40861,
7570,
29339,
30752,
10452,
30,
77,
5009,
18,
187,
4976,
2795,
22454,
246,
18,
28,
187,
5648,
4290,
48651,
23710,
28,
187,
29153,
64,
249,
64,
2566,
187,
25875,
22454,
246,
18,
9,
68,
18,
32823,
5812,
8610,
10634,
686,
1552,
310,
247,
32823,
5084,
5137,
187,
5648,
4290,
48651,
23710,
28,
187,
29153,
64,
249,
64,
2566,
187,
85,
18,
187,
5648,
4290,
27176,
4966,
22454,
246,
18,
28,
187,
3235,
186,
9395,
5270,
187,
85,
18,
186,
25875,
22454,
2634,
85,
18,
65,
313,
187,
50276,
65,
68,
18,
65,
14492,
9,
740,
13,
17,
10,
29339,
5812,
8610,
10634,
686,
1552,
310,
247,
32823,
5084,
8,
187,
10,
47000,
7570,
30,
40861,
7570,
29339,
30752,
10452,
30,
77,
5009,
18,
187,
4976,
2795,
22454,
246,
18,
28,
187,
5648,
4290,
48651,
23710,
28,
187,
29153,
64,
249,
64,
2566,
187,
25875,
22454,
246,
18,
9,
68,
18,
38506,
1703,
5812,
8610,
10634,
686,
1552,
310,
247,
38506,
1703,
5084,
5137,
187,
5648,
4290,
48651,
23710,
28,
187,
29153,
64,
249,
64,
2566,
187,
85,
18,
187,
5648,
4290,
27176,
4966,
22454,
246,
18,
28,
187,
3235,
186,
9395,
5270,
187,
85,
18,
186,
25875,
22454,
2634,
85,
18,
65,
313,
187,
50276,
65,
68,
18,
65,
14492,
9,
740,
13,
17,
10,
29339,
5812,
8610,
10634,
686,
1552,
310,
247,
38506,
1703,
5084,
8,
187,
10,
47000,
7570,
30,
40861,
7570,
29339,
30752,
10452,
30,
77,
5009,
18,
187,
4976,
2795,
22454,
246,
18,
28,
187,
5648,
4290,
48651,
23710,
28,
187,
29153,
64,
249,
64,
2566,
187,
25875,
22454,
246,
18,
9,
68,
18,
35286,
947,
1864,
5812,
8610,
10634,
686,
1552,
310,
247,
35286,
947,
1864,
5084,
5137,
187,
5648,
4290,
48651,
23710,
28,
187,
29153,
64,
249,
64,
2566,
187,
85,
18,
187,
5648,
4290,
27176,
4966,
22454,
246,
18,
28,
187,
3235,
186,
9395,
5270,
187,
85,
18,
186,
25875,
22454,
2634,
85,
18,
65,
313,
187,
50276,
65,
68,
18,
65,
14492,
9,
740,
13,
17,
10,
29339,
5812,
8610,
10634,
686,
1552,
310,
247,
35286,
947,
1864,
5084,
8,
187,
10,
47000,
7570,
30,
40861,
7570,
29339,
30752,
10452,
30,
77,
5009,
18,
187,
4976,
2795,
22454,
246,
18,
28,
187,
5648,
4290,
48651,
23710,
28,
187,
29153,
64,
249,
64,
2566,
187,
25875,
22454,
246,
18,
9,
68,
18,
399,
43028,
5812,
8610,
10634,
686,
1552,
310,
247,
399,
43028,
5084,
5137,
187,
5648,
4290,
48651,
23710,
28,
187,
29153,
64,
249,
64,
2566,
187,
85,
18,
187,
5648,
4290,
27176,
4966,
22454,
246,
18,
28,
187,
3235,
186,
9395,
5270,
187,
85,
18,
186,
25875,
22454,
2634,
85,
18,
65,
313,
187,
50276,
65,
68,
18,
65,
4021,
29339,
5812,
8610,
10634,
686,
1552,
310,
247,
399,
43028,
5084,
8,
187,
10,
47000,
7570,
30,
40861,
7570,
29339,
30752,
10452,
30,
77,
5009,
18,
187,
4976,
2795,
22454,
246,
18,
28,
187,
5648,
4290,
48651,
23710,
28,
187,
29153,
64,
249,
64,
2566,
187,
25875,
22454,
246,
18,
9,
68,
18,
40830,
5812,
8610,
10634,
686,
1552,
310,
247,
40830,
5084,
5137,
187,
5648,
4290,
48651,
23710,
28,
187,
29153,
64,
249,
64,
2566,
187,
85,
18,
187,
5648,
4290,
27176,
4966,
22454,
246,
18,
28,
187,
3235,
186,
9395,
5270,
187,
85,
18,
186,
25875,
22454,
2634,
85,
18,
65,
313,
187,
50276,
65,
68,
18,
65,
4021,
29339,
5812,
8610,
10634,
686,
1552,
310,
247,
40830,
5084,
8,
187,
10,
47000,
7570,
30,
40861,
7570,
29339,
30752,
10452,
30,
77,
5009,
18,
187,
4976,
2795,
22454,
246,
18,
28,
187,
5648,
4290,
48651,
23710,
28,
187,
29153,
64,
249,
64,
2566,
187,
25875,
22454,
246,
18,
9,
68,
18,
399,
43028,
26887,
36,
34316,
5812,
8610,
10634,
686,
1552,
310,
247,
399,
43028,
26887,
36,
34316,
5084,
5137,
187,
5648,
4290,
48651,
23710,
28,
187,
29153,
64,
249,
64,
2566,
187,
85,
18,
187,
5648,
4290,
27176,
4966,
22454,
246,
18,
28,
187,
3235,
186,
9395,
5270,
187,
85,
18,
186,
25875,
22454,
2634,
85,
18,
65,
313,
187,
50276,
65,
68,
18,
65,
4021,
29339,
5812,
8610,
10634,
686,
1552,
310,
247,
399,
43028,
26887,
36,
34316,
5084,
8,
187,
10,
47000,
7570,
30,
40861,
7570,
29339,
30752,
10452,
30,
77,
5009,
18,
187,
4976,
2795,
22454,
246,
18,
28,
187,
5648,
4290,
48651,
23710,
28,
187,
29153,
64,
249,
64,
2566,
187,
25875,
22454,
246,
18,
9,
68,
18,
401,
8372,
1194,
5812,
8610,
10634,
686,
1552,
310,
247,
401,
8372,
1194,
5084,
5137,
187,
5648,
4290,
48651,
23710,
28,
187,
29153,
64,
249,
64,
2566,
187,
85,
18,
187,
5648,
4290,
27176,
4966,
22454,
246,
18,
28,
187,
3235,
186,
9395,
5270,
187,
85,
18,
186,
25875,
22454,
2634,
85,
18,
65,
313,
187,
50276,
65,
68,
18,
65,
8253,
29339,
5812,
8610,
10634,
686,
1552,
310,
247,
401,
8372,
1194,
5084,
8,
187,
10,
47000,
7570,
30,
40861,
7570,
29339,
30752,
10452,
30,
77,
5009,
18,
187,
4976,
2795,
22454,
246,
18,
28,
187,
5648,
4290,
48651,
23710,
28,
187,
29153,
64,
249,
64,
2566,
187,
25875,
22454,
246,
18,
9,
68,
18,
46611,
5812,
8610,
10634,
686,
1552,
310,
247,
46611,
5084,
5137,
187,
5648,
4290,
48651,
23710,
28,
187,
29153,
64,
249,
64,
2566,
187,
85,
18,
187,
5648,
4290,
27176,
4966,
22454,
246,
18,
28,
187,
3235,
186,
9395,
5270,
187,
85,
18,
186,
25875,
22454,
2634,
85,
18,
65,
313,
187,
50276,
65,
68,
18,
65,
3522,
29339,
5812,
8610,
10634,
686,
1552,
310,
247,
46611,
5084,
8,
187,
10,
47000,
7570,
30,
40861,
7570,
29339,
30752,
10452,
30,
77,
5009,
18,
187,
4976,
2795,
22454,
246,
18,
28,
187,
5648,
4290,
48651,
23710,
28,
187,
29153,
64,
249,
64,
2566,
187,
25875,
22454,
246,
18,
9,
68,
18,
25329,
5812,
8610,
10634,
686,
1552,
310,
247,
25329,
5084,
5137,
187,
5648,
4290,
48651,
23710,
28,
187,
29153,
64,
249,
64,
2566,
187,
85,
18,
187,
5648,
4290,
27176,
4966,
22454,
246,
18,
28,
187,
3235,
186,
9395,
5270,
187,
85,
18,
186,
25875,
22454,
2634,
85,
18,
65,
313,
187,
50276,
65,
68,
18,
65,
673,
29339,
5812,
8610,
10634,
686,
1552,
310,
247,
25329,
5084,
8,
187,
10,
47000,
7570,
30,
40861,
7570,
29339,
30752,
10452,
30,
77,
5009,
18,
187,
4976,
2795,
22454,
246,
18,
28,
187,
5648,
4290,
48651,
23710,
28,
187,
29153,
64,
249,
64,
2566,
187,
25875,
22454,
246,
18,
9,
68,
18,
25329,
1267,
12437,
5812,
8610,
10634,
686,
1552,
310,
247,
25329,
1267,
12437,
5084,
5137,
187,
5648,
4290,
48651,
23710,
28,
187,
29153,
64,
249,
64,
2566,
187,
85,
18,
187,
5648,
4290,
27176,
4966,
22454,
246,
18,
28,
187,
3235,
186,
9395,
5270,
187,
85,
18,
186,
25875,
22454,
2634,
85,
18,
65,
313,
187,
50276,
65,
68,
18,
65,
28921,
5812,
29339,
5812,
8610,
10634,
686,
1552,
310,
247,
25329,
1267,
12437,
5084,
8,
187,
10,
47000,
7570,
30,
40861,
7570,
29339,
30752,
10452,
30,
77,
5009,
18,
187,
4976,
2795,
22454,
246,
18,
28,
187,
5648,
4290,
48651,
23710,
28,
187,
29153,
64,
249,
64,
2566,
187,
25875,
22454,
246,
18,
9,
68,
18,
41424,
2025,
10650,
5812,
8610,
10634,
686,
1552,
310,
247,
41424,
2025,
10650,
5084,
5137,
187,
5648,
4290,
48651,
23710,
28,
187,
29153,
64,
249,
64,
2566,
187,
85,
18,
187,
5648,
4290,
27176,
4966,
22454,
246,
18,
28,
187,
3235,
186,
9395,
5270,
187,
85,
18,
186,
25875,
22454,
2634,
85,
18,
65,
313,
187,
50276,
65,
68,
18,
65,
36743,
29339,
5812,
8610,
10634,
686,
1552,
310,
247,
41424,
2025,
10650,
5084,
8,
187,
10,
47000,
7570,
30,
40861,
7570,
29339,
30752,
10452,
30,
77,
5009,
18,
187,
4976,
2795,
22454,
246,
18,
28,
187,
5648,
4290,
48651,
23710,
28,
187,
29153,
64,
249,
64,
2566,
187,
25875,
22454,
246,
18,
9,
68,
18,
32342,
1277,
5812,
8610,
10634,
686,
1552,
310,
247,
32342,
1277,
5084,
5137,
187,
5648,
4290,
48651,
23710,
28,
187,
29153,
64,
249,
64,
2566,
187,
85,
18,
187,
5648,
4290,
27176,
4966,
22454,
246,
18,
28,
187,
3235,
186,
9395,
5270,
187,
85,
18,
186,
25875,
22454,
2634,
85,
18,
65,
313,
187,
50276,
65,
68,
18,
65,
807,
9,
21,
10,
29339,
5812,
8610,
10634,
686,
1552,
310,
247,
32342,
1277,
5084,
8,
187,
10,
47000,
7570,
30,
40861,
7570,
29339,
30752,
10452,
30,
77,
5009,
18,
187,
4976,
2795,
22454,
246,
18,
28,
187,
5648,
4290,
48651,
23710,
28,
187,
29153,
64,
249,
64,
2566,
187,
25875,
22454,
246,
18,
9,
68,
18,
308,
1042,
58,
5993,
9324,
5812,
8610,
10634,
686,
1552,
310,
247,
308,
1042,
58,
5993,
9324,
5084,
5137,
187,
5648,
4290,
48651,
23710,
28,
187,
29153,
64,
249,
64,
2566,
187,
85,
18,
187,
5648,
4290,
27176,
4966,
22454,
246,
18,
28,
187,
3235,
186,
9395,
5270,
187,
85,
18,
186,
25875,
22454,
2634,
85,
18,
65,
313,
187,
50276,
65,
68,
18,
65,
10058,
23723,
8610,
10634,
686,
1552,
310,
247,
308,
1042,
58,
5993,
9324,
5084,
8,
187,
10,
47000,
7570,
30,
40861,
7570,
29339,
30752,
10452,
30,
77,
5009,
18,
187,
4976,
2795,
22454,
246,
18,
28,
187,
5648,
4290,
48651,
23710,
28,
187,
29153,
64,
249,
64,
2566,
187,
25875,
22454,
246,
18,
9,
68,
18,
378,
8372,
35,
5812,
8610,
10634,
686,
1552,
310,
247,
378,
8372,
35,
5084,
5137,
187,
5648,
4290,
48651,
23710,
28,
187,
29153,
64,
249,
64,
2566,
187,
85,
18,
187,
5648,
4290,
27176,
4966,
22454,
246,
18,
28,
187,
3235,
186,
9395,
5270,
187,
85,
18,
186,
25875,
22454,
2634,
85,
18,
65,
313,
187,
50276,
65,
68,
18,
65,
37905,
8610,
10634,
686,
1552,
310,
247,
378,
8372,
35,
5084,
8,
187,
10,
47000,
7570,
30,
40861,
7570,
29339,
30752,
10452,
30,
77,
5009,
18,
187,
4976,
2795,
22454,
246,
18,
28,
187,
5648,
4290,
48651,
23710,
28,
187,
29153,
64,
249,
64,
2566,
187,
25875,
22454,
246,
18,
9,
68,
18,
32036,
42,
5529,
5993,
9324,
5812,
8610,
10634,
686,
1552,
310,
247,
32036,
42,
5529,
5993,
9324,
5084,
5137,
187,
5648,
4290,
48651,
23710,
28,
187,
29153,
64,
249,
64,
2566,
187,
85,
18,
187,
5648,
4290,
27176,
4966,
22454,
246,
18,
28,
187,
3235,
186,
9395,
5270,
187,
85,
18,
186,
25875,
22454,
2634,
85,
18,
65,
313,
187,
50276,
65,
68,
18,
65,
4646,
23723,
8610,
10634,
686,
1552,
310,
247,
32036,
42,
5529,
5993,
9324,
5084,
8,
187,
10,
47000,
7570,
30,
40861,
7570,
29339,
30752,
10452,
30,
77,
5009,
18,
187,
4976,
2795,
22454,
246,
18,
28,
187,
5648,
4290,
48651,
23710,
28,
187,
29153,
64,
249,
64,
2566,
187,
25875,
22454,
246,
18,
9,
68,
18,
43078,
5993,
9324,
5812,
8610,
10634,
686,
1552,
310,
247,
43078,
5993,
9324,
5084,
5137,
187,
5648,
4290,
48651,
23710,
28,
187,
29153,
64,
249,
64,
2566,
187,
85,
18,
187,
5648,
4290,
27176,
4966,
22454,
246,
18,
28,
187,
3235,
186,
9395,
5270,
187,
85,
18,
186,
25875,
22454,
2634,
85,
18,
65,
313,
187,
50276,
65,
68,
18,
65,
1048,
23723,
8610,
10634,
686,
1552,
310,
247,
43078,
5993,
9324,
5084,
8,
187,
10,
47000,
7570,
30,
40861,
7570,
29339,
30752,
10452,
30,
77,
5009,
18,
187,
4976,
2795,
22454,
246,
18,
28,
187,
5648,
4290,
48651,
23710,
28,
187,
29153,
64,
249,
64,
2566,
187,
25875,
22454,
246,
18,
9,
68,
18,
308,
1042,
58,
19093,
5812,
8610,
10634,
686,
1552,
310,
247,
308,
1042,
58,
19093,
5084,
5137,
187,
5648,
4290,
48651,
23710,
28,
187,
29153,
64,
249,
64,
2566,
187,
85,
18,
187,
5648,
4290,
27176,
4966,
22454,
246,
18,
28,
187,
3235,
186,
9395,
5270,
187,
85,
18,
186,
25875,
22454,
2634,
85,
18,
65,
313,
187,
50276,
65,
68,
18,
65,
10058,
1156,
8610,
10634,
686,
1552,
310,
247,
308,
1042,
58,
19093,
5084,
8,
187,
10,
47000,
7570,
30,
40861,
7570,
29339,
30752,
10452,
30,
77,
5009,
18,
187,
4976,
2795,
22454,
246,
18,
28,
187,
5648,
4290,
48651,
23710,
28,
187,
29153,
64,
249,
64,
2566,
187,
25875,
22454,
246,
18,
9,
68,
18,
46434,
5812,
8610,
10634,
686,
1552,
310,
247,
46434,
5084,
5137,
187,
5648,
4290,
48651,
23710,
28,
187,
29153,
64,
249,
64,
2566,
187,
85,
18,
187,
5648,
4290,
27176,
4966,
22454,
246,
18,
28,
187,
3235,
186,
9395,
5270,
187,
85,
18,
186,
25875,
22454,
2634,
85,
18,
65,
313,
187,
50276,
65,
68,
18,
65,
2505,
8610,
10634,
686,
1552,
310,
247,
46434,
5084,
8,
187,
10,
47000,
7570,
30,
40861,
7570,
29339,
30752,
10452,
30,
77,
5009,
18,
187,
4976,
2795,
22454,
246,
18,
28,
187,
5648,
4290,
48651,
23710,
28,
187,
29153,
64,
249,
64,
2566,
187,
25875,
22454,
246,
18,
9,
68,
18,
32036,
42,
5529,
19093,
5812,
8610,
10634,
686,
1552,
310,
247,
32036,
42,
5529,
19093,
5084,
5137,
187,
5648,
4290,
48651,
23710,
28,
187,
29153,
64,
249,
64,
2566,
187,
85,
18,
187,
5648,
4290,
27176,
4966,
22454,
246,
18,
28,
187,
3235,
186,
9395,
5270,
187,
85,
18,
186,
25875,
22454,
2634,
85,
18,
65,
313,
187,
50276,
65,
68,
18,
65,
4646,
1156,
8610,
10634,
686,
1552,
310,
247,
32036,
42,
5529,
19093,
5084,
8,
187,
10,
47000,
7570,
30,
40861,
7570,
29339,
30752,
10452,
30,
77,
5009,
18,
187,
4976,
2795,
22454,
246,
18,
28,
187,
5648,
4290,
48651,
23710,
28,
187,
29153,
64,
249,
64,
2566,
187,
25875,
22454,
246,
18,
9,
68,
18,
418,
1139,
9334,
9465,
5812,
8610,
10634,
686,
1552,
310,
247,
418,
1139,
9334,
9465,
5084,
5137,
187,
5648,
4290,
48651,
23710,
28,
187,
29153,
64,
249,
64,
2566,
187,
85,
18,
187,
5648,
4290,
27176,
4966,
22454,
246,
18,
28,
187,
3235,
186,
9395,
5270,
187,
85,
18,
186,
25875,
22454,
2634,
85,
18,
65,
313,
187,
50276,
65,
68,
18,
65,
1048,
1156,
8610,
10634,
686,
1552,
310,
247,
418,
1139,
9334,
9465,
5084,
8,
187,
10,
47000,
7570,
30,
40861,
7570,
29339,
30752,
10452,
30,
77,
5009,
18,
187,
4976,
2795,
22454,
246,
18,
28,
187,
5648,
4290,
48651,
23710,
28,
187,
29153,
64,
249,
64,
2566,
187
] | DROP TABLE IF EXISTS t1;
CREATE TABLE t1(c1 BIT NULL COMMENT 'This is a BIT column');
SHOW TABLES;
Tables_in_test
t1
SHOW CREATE TABLE t1;
Table Create Table
t1 CREATE TABLE `t1` (
`c1` bit(1) DEFAULT NULL COMMENT 'This is a BIT column'
) ENGINE=ENGINE DEFAULT CHARSET=latin1
DROP TABLE t1;
SHOW TABLES;
Tables_in_test
CREATE TABLE t1(c1 TINYINT NULL COMMENT 'This is a TINYINT column');
SHOW TABLES;
Tables_in_test
t1
SHOW CREATE TABLE t1;
Table Create Table
t1 CREATE TABLE `t1` (
`c1` tinyint(4) DEFAULT NULL COMMENT 'This is a TINYINT column'
) ENGINE=ENGINE DEFAULT CHARSET=latin1
DROP TABLE t1;
SHOW TABLES;
Tables_in_test
CREATE TABLE t1(c1 SMALLINT NULL COMMENT 'This is a SMALLINT column');
SHOW TABLES;
Tables_in_test
t1
SHOW CREATE TABLE t1;
Table Create Table
t1 CREATE TABLE `t1` (
`c1` smallint(6) DEFAULT NULL COMMENT 'This is a SMALLINT column'
) ENGINE=ENGINE DEFAULT CHARSET=latin1
DROP TABLE t1;
SHOW TABLES;
Tables_in_test
CREATE TABLE t1(c1 MEDIUMINT NULL COMMENT 'This is a MEDIUMINT column');
SHOW TABLES;
Tables_in_test
t1
SHOW CREATE TABLE t1;
Table Create Table
t1 CREATE TABLE `t1` (
`c1` mediumint(9) DEFAULT NULL COMMENT 'This is a MEDIUMINT column'
) ENGINE=ENGINE DEFAULT CHARSET=latin1
DROP TABLE t1;
SHOW TABLES;
Tables_in_test
CREATE TABLE t1(c1 INT NULL COMMENT 'This is a INT column');
SHOW TABLES;
Tables_in_test
t1
SHOW CREATE TABLE t1;
Table Create Table
t1 CREATE TABLE `t1` (
`c1` int(11) DEFAULT NULL COMMENT 'This is a INT column'
) ENGINE=ENGINE DEFAULT CHARSET=latin1
DROP TABLE t1;
SHOW TABLES;
Tables_in_test
CREATE TABLE t1(c1 INTEGER NULL COMMENT 'This is a INTEGER column');
SHOW TABLES;
Tables_in_test
t1
SHOW CREATE TABLE t1;
Table Create Table
t1 CREATE TABLE `t1` (
`c1` int(11) DEFAULT NULL COMMENT 'This is a INTEGER column'
) ENGINE=ENGINE DEFAULT CHARSET=latin1
DROP TABLE t1;
SHOW TABLES;
Tables_in_test
CREATE TABLE t1(c1 BIGINT NULL COMMENT 'This is a BIGINT column');
SHOW TABLES;
Tables_in_test
t1
SHOW CREATE TABLE t1;
Table Create Table
t1 CREATE TABLE `t1` (
`c1` bigint(20) DEFAULT NULL COMMENT 'This is a BIGINT column'
) ENGINE=ENGINE DEFAULT CHARSET=latin1
DROP TABLE t1;
SHOW TABLES;
Tables_in_test
CREATE TABLE t1(c1 DECIMAL NULL COMMENT 'This is a DECIMAL column');
SHOW TABLES;
Tables_in_test
t1
SHOW CREATE TABLE t1;
Table Create Table
t1 CREATE TABLE `t1` (
`c1` decimal(10,0) DEFAULT NULL COMMENT 'This is a DECIMAL column'
) ENGINE=ENGINE DEFAULT CHARSET=latin1
DROP TABLE t1;
SHOW TABLES;
Tables_in_test
CREATE TABLE t1(c1 DEC NULL COMMENT 'This is a DEC column');
SHOW TABLES;
Tables_in_test
t1
SHOW CREATE TABLE t1;
Table Create Table
t1 CREATE TABLE `t1` (
`c1` decimal(10,0) DEFAULT NULL COMMENT 'This is a DEC column'
) ENGINE=ENGINE DEFAULT CHARSET=latin1
DROP TABLE t1;
SHOW TABLES;
Tables_in_test
CREATE TABLE t1(c1 FIXED NULL COMMENT 'This is a FIXED column');
SHOW TABLES;
Tables_in_test
t1
SHOW CREATE TABLE t1;
Table Create Table
t1 CREATE TABLE `t1` (
`c1` decimal(10,0) DEFAULT NULL COMMENT 'This is a FIXED column'
) ENGINE=ENGINE DEFAULT CHARSET=latin1
DROP TABLE t1;
SHOW TABLES;
Tables_in_test
CREATE TABLE t1(c1 NUMERIC NULL COMMENT 'This is a NUMERIC column');
SHOW TABLES;
Tables_in_test
t1
SHOW CREATE TABLE t1;
Table Create Table
t1 CREATE TABLE `t1` (
`c1` decimal(10,0) DEFAULT NULL COMMENT 'This is a NUMERIC column'
) ENGINE=ENGINE DEFAULT CHARSET=latin1
DROP TABLE t1;
SHOW TABLES;
Tables_in_test
CREATE TABLE t1(c1 DOUBLE NULL COMMENT 'This is a DOUBLE column');
SHOW TABLES;
Tables_in_test
t1
SHOW CREATE TABLE t1;
Table Create Table
t1 CREATE TABLE `t1` (
`c1` double DEFAULT NULL COMMENT 'This is a DOUBLE column'
) ENGINE=ENGINE DEFAULT CHARSET=latin1
DROP TABLE t1;
SHOW TABLES;
Tables_in_test
CREATE TABLE t1(c1 REAL NULL COMMENT 'This is a REAL column');
SHOW TABLES;
Tables_in_test
t1
SHOW CREATE TABLE t1;
Table Create Table
t1 CREATE TABLE `t1` (
`c1` double DEFAULT NULL COMMENT 'This is a REAL column'
) ENGINE=ENGINE DEFAULT CHARSET=latin1
DROP TABLE t1;
SHOW TABLES;
Tables_in_test
CREATE TABLE t1(c1 DOUBLE PRECISION NULL COMMENT 'This is a DOUBLE PRECISION column');
SHOW TABLES;
Tables_in_test
t1
SHOW CREATE TABLE t1;
Table Create Table
t1 CREATE TABLE `t1` (
`c1` double DEFAULT NULL COMMENT 'This is a DOUBLE PRECISION column'
) ENGINE=ENGINE DEFAULT CHARSET=latin1
DROP TABLE t1;
SHOW TABLES;
Tables_in_test
CREATE TABLE t1(c1 FLOAT NULL COMMENT 'This is a FLOAT column');
SHOW TABLES;
Tables_in_test
t1
SHOW CREATE TABLE t1;
Table Create Table
t1 CREATE TABLE `t1` (
`c1` float DEFAULT NULL COMMENT 'This is a FLOAT column'
) ENGINE=ENGINE DEFAULT CHARSET=latin1
DROP TABLE t1;
SHOW TABLES;
Tables_in_test
CREATE TABLE t1(c1 DATE NULL COMMENT 'This is a DATE column');
SHOW TABLES;
Tables_in_test
t1
SHOW CREATE TABLE t1;
Table Create Table
t1 CREATE TABLE `t1` (
`c1` date DEFAULT NULL COMMENT 'This is a DATE column'
) ENGINE=ENGINE DEFAULT CHARSET=latin1
DROP TABLE t1;
SHOW TABLES;
Tables_in_test
CREATE TABLE t1(c1 TIME NULL COMMENT 'This is a TIME column');
SHOW TABLES;
Tables_in_test
t1
SHOW CREATE TABLE t1;
Table Create Table
t1 CREATE TABLE `t1` (
`c1` time DEFAULT NULL COMMENT 'This is a TIME column'
) ENGINE=ENGINE DEFAULT CHARSET=latin1
DROP TABLE t1;
SHOW TABLES;
Tables_in_test
CREATE TABLE t1(c1 TIMESTAMP NULL COMMENT 'This is a TIMESTAMP column');
SHOW TABLES;
Tables_in_test
t1
SHOW CREATE TABLE t1;
Table Create Table
t1 CREATE TABLE `t1` (
`c1` timestamp NULL DEFAULT NULL COMMENT 'This is a TIMESTAMP column'
) ENGINE=ENGINE DEFAULT CHARSET=latin1
DROP TABLE t1;
SHOW TABLES;
Tables_in_test
CREATE TABLE t1(c1 DATETIME NULL COMMENT 'This is a DATETIME column');
SHOW TABLES;
Tables_in_test
t1
SHOW CREATE TABLE t1;
Table Create Table
t1 CREATE TABLE `t1` (
`c1` datetime DEFAULT NULL COMMENT 'This is a DATETIME column'
) ENGINE=ENGINE DEFAULT CHARSET=latin1
DROP TABLE t1;
SHOW TABLES;
Tables_in_test
CREATE TABLE t1(c1 YEAR NULL COMMENT 'This is a YEAR column');
SHOW TABLES;
Tables_in_test
t1
SHOW CREATE TABLE t1;
Table Create Table
t1 CREATE TABLE `t1` (
`c1` year(4) DEFAULT NULL COMMENT 'This is a YEAR column'
) ENGINE=ENGINE DEFAULT CHARSET=latin1
DROP TABLE t1;
SHOW TABLES;
Tables_in_test
CREATE TABLE t1(c1 TINYBLOB NULL COMMENT 'This is a TINYBLOB column');
SHOW TABLES;
Tables_in_test
t1
SHOW CREATE TABLE t1;
Table Create Table
t1 CREATE TABLE `t1` (
`c1` tinyblob COMMENT 'This is a TINYBLOB column'
) ENGINE=ENGINE DEFAULT CHARSET=latin1
DROP TABLE t1;
SHOW TABLES;
Tables_in_test
CREATE TABLE t1(c1 BLOB NULL COMMENT 'This is a BLOB column');
SHOW TABLES;
Tables_in_test
t1
SHOW CREATE TABLE t1;
Table Create Table
t1 CREATE TABLE `t1` (
`c1` blob COMMENT 'This is a BLOB column'
) ENGINE=ENGINE DEFAULT CHARSET=latin1
DROP TABLE t1;
SHOW TABLES;
Tables_in_test
CREATE TABLE t1(c1 MEDIUMBLOB NULL COMMENT 'This is a MEDIUMBLOB column');
SHOW TABLES;
Tables_in_test
t1
SHOW CREATE TABLE t1;
Table Create Table
t1 CREATE TABLE `t1` (
`c1` mediumblob COMMENT 'This is a MEDIUMBLOB column'
) ENGINE=ENGINE DEFAULT CHARSET=latin1
DROP TABLE t1;
SHOW TABLES;
Tables_in_test
CREATE TABLE t1(c1 LONGBLOB NULL COMMENT 'This is a LONGBLOB column');
SHOW TABLES;
Tables_in_test
t1
SHOW CREATE TABLE t1;
Table Create Table
t1 CREATE TABLE `t1` (
`c1` longblob COMMENT 'This is a LONGBLOB column'
) ENGINE=ENGINE DEFAULT CHARSET=latin1
DROP TABLE t1;
SHOW TABLES;
Tables_in_test
CREATE TABLE t1(c1 TINYTEXT NULL COMMENT 'This is a TINYTEXT column');
SHOW TABLES;
Tables_in_test
t1
SHOW CREATE TABLE t1;
Table Create Table
t1 CREATE TABLE `t1` (
`c1` tinytext COMMENT 'This is a TINYTEXT column'
) ENGINE=ENGINE DEFAULT CHARSET=latin1
DROP TABLE t1;
SHOW TABLES;
Tables_in_test
CREATE TABLE t1(c1 TEXT NULL COMMENT 'This is a TEXT column');
SHOW TABLES;
Tables_in_test
t1
SHOW CREATE TABLE t1;
Table Create Table
t1 CREATE TABLE `t1` (
`c1` text COMMENT 'This is a TEXT column'
) ENGINE=ENGINE DEFAULT CHARSET=latin1
DROP TABLE t1;
SHOW TABLES;
Tables_in_test
CREATE TABLE t1(c1 MEDIUMTEXT NULL COMMENT 'This is a MEDIUMTEXT column');
SHOW TABLES;
Tables_in_test
t1
SHOW CREATE TABLE t1;
Table Create Table
t1 CREATE TABLE `t1` (
`c1` mediumtext COMMENT 'This is a MEDIUMTEXT column'
) ENGINE=ENGINE DEFAULT CHARSET=latin1
DROP TABLE t1;
SHOW TABLES;
Tables_in_test
CREATE TABLE t1(c1 LONGTEXT NULL COMMENT 'This is a LONGTEXT column');
SHOW TABLES;
Tables_in_test
t1
SHOW CREATE TABLE t1;
Table Create Table
t1 CREATE TABLE `t1` (
`c1` longtext COMMENT 'This is a LONGTEXT column'
) ENGINE=ENGINE DEFAULT CHARSET=latin1
DROP TABLE t1;
SHOW TABLES;
Tables_in_test
|
214,498 | Github | [
31,
4325,
27,
544,
70,
32490,
15,
2061,
880,
2413,
1358,
70,
32490,
15,
2061,
16,
1311,
2385,
14,
19469,
55,
9431,
346,
2413,
1358,
70,
32490,
15,
2061,
16,
1311,
2385,
14,
19469,
55,
9431,
2807,
535,
187,
4,
6246,
2385,
14,
19469,
55,
9431,
2756,
187,
4,
5376,
11822,
657,
9431,
3145,
254,
187,
187,
4118,
33268,
27,
5402,
2813,
3198,
281,
320,
544,
287,
4225,
880,
2413,
1358,
70,
32490,
15,
2061,
16,
1311,
2385,
14,
287,
5341,
346,
1311,
2385,
14,
287,
5341,
2807,
1078,
368,
476,
4035,
15,
5429,
187,
14,
50275,
9807,
598,
247,
8135,
327,
253,
1531,
14,
2385,
13,
285,
187,
187,
65,
20850,
402,
36904,
7341,
1227,
78,
2649,
16,
3409,
1020,
64,
37717,
16,
2178,
313,
338,
368,
6468,
626,
2168,
10,
22942,
1227,
78,
2649,
16,
3409,
1020,
64,
37717,
16,
2178,
259,
788,
3944,
1358,
2700,
15,
4065,
447,
71,
1513,
15,
681,
16,
23079,
375,
16,
5594,
15,
17447,
15,
20449,
259,
788,
3944,
1358,
2700,
15,
4065,
447,
71,
1513,
15,
681,
16,
23079,
375,
16,
87,
9068,
1374,
254,
15,
17447,
15,
20449,
13586,
428,
91,
89,
39985,
7626,
15,
17447,
15,
20449,
13586,
428,
91,
89,
39985,
362,
9068,
1374,
254,
15,
17447,
15,
20449,
40373,
428,
19232,
7626,
15,
17447,
15,
20449,
362,
9068,
1374,
254,
15,
17447,
15,
20449,
43321,
428,
84,
1227,
11919,
16,
4805,
16,
5594,
480,
250,
18,
15,
23,
15,
17,
64,
1508,
16,
4805,
16,
5594,
278,
87,
362,
9068,
1374,
254,
16,
87,
9068,
1374,
254,
1227,
11919,
16,
4805,
65,
187,
187,
14,
50275,
4553,
352,
434,
8038,
13,
368,
943,
320,
2104,
281,
1408,
187,
187,
65,
362,
9068,
1374,
254,
65,
187,
187,
14,
50275,
6436,
13,
1580,
627,
403,
642,
2810,
3497,
5261,
18145,
13,
627,
434,
767,
4088,
187,
50274,
936,
35738,
537,
2057,
24171,
281,
253,
362,
9068,
4771,
10651,
2378,
187,
50274,
14063,
13,
285,
2028,
352,
281,
35738,
368,
15,
390,
13,
5159,
352,
432,
253,
187,
50274,
14104,
15,
5429,
187,
60,
8116,
281,
6246,
2385,
9067,
880,
2413,
1358,
70,
32490,
15,
2061,
16,
1311,
2385,
346,
1311,
2385,
2807,
535,
187,
60,
1413,
880,
2413,
1358,
70,
32490,
15,
2061,
16,
22166,
27,
49396,
346,
22166,
27,
49396,
3,
2262,
187,
187,
14,
50275,
60,
1311,
2385,
880,
2413,
1358,
70,
32490,
15,
2061,
16,
1413,
27,
1311,
2385,
346,
1413,
27,
1311,
2385,
2807,
535
] | > From: [eLinux.org](http://eLinux.org/CR48-JavaVNC "http://eLinux.org/CR48-JavaVNC")
# CR48-JavaVNC
# Installing VNCViewer
### NOTE: Your device needs to be [rooted](http://eLinux.org/CR48-rooting "CR48-rooting") before you can continue.
- Open up a shell on the cr-48, and
` sudo su mkdir /mnt/stateful_partition/opt (if you haven't already) cd /mnt/stateful_partition/opt wget http://www.calliesfarm.com/chromeos/java.tar.gz wget http://www.calliesfarm.com/chromeos/vncviewer.tar.gz tar -zxvf java.tar.gz tar -zxvf vncviewer.tar.gz rm -rf java.tar.gz vncviewer.tar.gz ln -s /usr/bin/java jre1.6.0_23/bin/java mv vncviewer/vncviewer /usr/bin`
- After it's installed, you should be able to run
` vncviewer`
- However, since there are no close window widgets, there's two ways
to disconnect.. either navigate to the vnc server icon once
connected, and tell it to disconnect you. or, kill it from the
terminal.
[Back to CR48 Home](http://eLinux.org/CR48 "CR48")
[Category](http://eLinux.org/Special:Categories "Special:Categories"):
- [CR48](http://eLinux.org/Category:CR48 "Category:CR48")
|
214,499 | Github | [
3122,
187,
475,
4480,
16148,
4284,
8169,
323,
253,
19386,
12820,
15191,
15,
187,
475,
18771,
1079,
27,
17862,
313,
10612,
13606,
757,
10,
187,
1738,
187,
36955,
15,
31930,
9,
36955,
15,
7210,
1080,
15,
33844,
13,
551,
187,
186,
17354,
27,
346,
1992,
877,
5173,
5139,
691,
29350,
2369,
17295,
187,
186,
28213,
27,
346,
55,
81,
261,
362,
1565,
877,
7589,
13065,
362,
268,
3385,
74,
691,
965,
5985,
17295,
187,
186,
12812,
27,
346,
1845,
3549,
80,
13,
362,
5210,
614,
268,
3385,
74,
4579,
13332,
21412,
17295,
187,
186,
6434,
27,
346,
1845,
3549,
80,
13,
362,
5210,
614,
268,
3385,
74,
10611,
17295,
187,
186,
2754,
27,
346,
1845,
3549,
80,
13,
362,
5210,
614,
268,
3385,
74,
2856,
360,
17295,
187,
186,
2754,
28783,
27,
346,
1845,
3549,
80,
13,
362,
5210,
614,
268,
3385,
74,
2856,
360,
313,
28783,
10,
17295,
187,
186,
9133,
27,
346,
1845,
3549,
80,
13,
362,
5210,
614,
268,
41647,
23933,
442,
33745,
7381,
17295,
187,
186,
11174,
953,
27,
346,
1845,
3549,
80,
13,
362,
5210,
614,
1775,
80,
23933,
442,
33745,
413,
17295,
187,
186,
44689,
9290,
27,
346,
1845,
3549,
80,
13,
362,
5210,
614,
268,
41647,
23933,
442,
33745,
7381,
465,
12289,
570,
465,
435,
547,
17295,
187,
186,
11969,
1992,
27,
346,
1845,
3549,
80,
13,
31284,
729,
2369,
362,
5210,
614,
546,
18956,
362,
36899,
2610,
17295,
187,
186,
14764,
27,
346,
1845,
3549,
80,
13,
362,
5210,
614,
362,
36899,
2610,
1182,
268,
41647,
17022,
7090,
79,
4173,
17295,
187,
186,
4090,
3985,
27,
13355,
7210,
1080,
15,
8124,
1587,
1845,
3549,
80,
13,
4204,
425,
362,
2072,
7326,
366,
1670,
7090,
465,
302,
551,
17,
94,
1182,
79,
28101,
449,
582,
187,
186,
1222,
3985,
27,
13355,
7210,
1080,
15,
8124,
1587,
1845,
3549,
80,
13,
362,
5210,
614,
4632,
1432,
551,
17,
94,
1182,
79,
28101,
449,
582,
187,
186,
83,
13852,
1746,
27,
13355,
7210,
1080,
15,
8124,
1587,
1845,
3549,
80,
13,
362,
5210,
614,
7687,
551,
17,
94,
513,
551,
18,
94,
1182,
79,
28101,
449,
582,
187,
186,
6324,
27,
13355,
7210,
1080,
15,
8124,
1587,
1845,
3549,
80,
13,
362,
5210,
614,
362,
433,
41752,
1129,
551,
17,
94,
275,
551,
18,
94,
449,
582,
187,
186,
4090,
27,
13355,
7210,
1080,
15,
8124,
1587,
1845,
3549,
80,
13,
362,
5210,
614,
362,
433,
41752,
637,
75,
7326,
80,
19541,
546,
18956,
551,
17,
94,
449,
582,
187,
186,
1222,
27,
13355,
7210,
1080,
15,
8124,
1587,
1845,
3549,
80,
13,
362,
5210,
614,
362,
433,
41752,
1670,
7090,
5309,
19541,
546,
18956,
551,
17,
94,
25107,
187,
9897,
187
] | /*
* Translated default messages for the jQuery validation plugin.
* Locale: SI (Slovenian)
*/
jQuery.extend(jQuery.validator.messages, {
required: "To polje je obvezno.",
remote: "Vpis v tem polju ni v pravi obliki.",
email: "Prosimo, vnesite pravi email naslov.",
url: "Prosimo, vnesite pravi URL.",
date: "Prosimo, vnesite pravi datum.",
dateISO: "Prosimo, vnesite pravi datum (ISO).",
number: "Prosimo, vnesite pravo številko.",
digits: "Prosimo, vnesite samo številke.",
creditcard: "Prosimo, vnesite pravo številko kreditne kartice.",
equalTo: "Prosimo, ponovno vnesite enako vsebino.",
accept: "Prosimo, vnesite vsebino z pravo končnico.",
maxlength: $.validator.format("Prosimo, da ne vnašate več kot {0} znakov."),
minlength: $.validator.format("Prosimo, vnesite vsaj {0} znakov."),
rangelength: $.validator.format("Prosimo, vnesite od {0} do {1} znakov."),
range: $.validator.format("Prosimo, vnesite vrednost med {0} in {1}."),
max: $.validator.format("Prosimo, vnesite vrednost manjšo ali enako {0}."),
min: $.validator.format("Prosimo, vnesite vrednost večjo ali enako {0}.")
});
|
Subsets and Splits