KingbaseES V8R6 集群运维案例 -- 磁盘空间问题导致集群故障

某商业银行生产系统KingbaseES读写分离集群主库出现故障,导致集群主备发生切换。客户要求说明具体的原因。

KingbaseES读写分离集群基本信息:

KingbaseES集群信息 
操作系统 Linux7.5
CPU 海光x86
数据库版本 V008R006C006B0021
集群方案 读写分离集群
节点数 2
主节点 10.10.10.11
备节点 10.10.10.12

 

问题现象:

生产环境KingbaseES读写分离集群主库突然发生故障,集群发生切换(主备切换).

数据库主节点日志信息:

2023-01-09 04:15:24 CST [2707066]: [164-1] user=,db=,app=,client=LOG: server process (PID 1761621) was terminated by signal 6: Aborted

操作系统日志信息:

Jan 9 04:15:24 xyfwoadb1 systemd-coredump[1764978]: Process 1761621 (kingbase) of user 1001 dumped core.

#012#012Stack trace of thread 1761621:#012#0 0x00007efe049995ab n/a (n/a)

通过数据库主节点日志、操作系统日志可以确定数据库PID 1761621进程异常中止并发生coredump.

# coredump产生的文件.
core.kingbase.1001.9e5401f0dac843a6b07236782e840f1d.1761621.1673208915000000000000

故障分析:

通过主节点hamgr.log日志可以看出,在2023-01-09 04:12:32至2023-01-09 04:15:26之间,服务器进程发生crash.

# 数据库主节点hamgr.log
[2023-01-09 04:02:29] [INFO] monitoring primary node "node11" (ID: 1) in normal state
[2023-01-09 04:07:31] [INFO] monitoring primary node "node11" (ID: 1) in normal state
[2023-01-09 04:12:32] [INFO] monitoring primary node "node11" (ID: 1) in normal state
WARNING:  terminating connection because of crash of another server process
DETAIL:  The kingbase has commanded this server process to roll back the current transaction and exit, because another server process exited abnormally and possibly corrupted shared memory.
HINT:  In a moment you should be able to reconnect to the database and repeat your command.
[2023-01-09 04:15:26] [WARNING] unable to ping "host=10.10.10.11 user=esrep dbname=esrep port=54321 connect_timeout=10 keepalives=1 keepalives_idle=10 keepalives_interval=1 keepalives_count=3"
[2023-01-09 04:15:26] [DETAIL] PQping() returned "PQPING_REJECT"
[2023-01-09 04:15:26] [WARNING] connection to node "node11" (ID: 1) lost
[2023-01-09 04:15:26] [DETAIL] 
server closed the connection unexpectedly
	This probably means the server terminated abnormally
	before or while processing the request.

[2023-01-09 04:15:26] [INFO] attempting to reconnect to node "node11" (ID: 1)
[2023-01-09 04:15:26] [ERROR] connection to database failed
[2023-01-09 04:15:26] [DETAIL] 
FATAL:  the database system is in recovery mode

[2023-01-09 04:15:26] [DETAIL] attempted to connect using:
  user=esrep connect_timeout=10 dbname=esrep host=10.10.10.11 port=54321 keepalives=1 keepalives_idle=10 keepalives_interval=1 keepalives_count=3 fallback_application_name=repmgr options=-csearch_path=
[2023-01-09 04:15:26] [WARNING] reconnection to node "node11" (ID: 1) failed
[2023-01-09 04:15:26] [WARNING] unable to connect to local node
[2023-01-09 04:15:26] [INFO] sleeping 6 seconds until next reconnection attempt
[2023-01-09 04:15:32] [INFO] checking state of node 1, 1 of 10 attempts
[2023-01-09 04:15:33] [WARNING] unable to ping "user=esrep connect_timeout=10 dbname=esrep host=10.10.10.11 port=54321 keepalives=1 keepalives_idle=10 keepalives_interval=1 keepalives_count=3 fallback_application_name=repmgr"
[2023-01-09 04:15:33] [DETAIL] PQping() returned "PQPING_REJECT"
[2023-01-09 04:15:33] [INFO] sleeping 6 seconds until next reconnection attempt
[2023-01-09 04:15:39] [INFO] checking state of node 1, 2 of 10 attempts
[2023-01-09 04:15:39] [WARNING] unable to ping "user=esrep connect_timeout=10 dbname=esrep host=10.10.10.11 port=54321 keepalives=1 keepalives_idle=10 keepalives_interval=1 keepalives_count=3 fallback_application_name=repmgr"
[2023-01-09 04:15:39] [DETAIL] PQping() returned "PQPING_REJECT"
[2023-01-09 04:15:39] [INFO] sleeping 6 seconds until next reconnection attempt
[2023-01-09 04:15:45] [INFO] checking state of node 1, 3 of 10 attempts
[2023-01-09 04:15:45] [WARNING] unable to ping "user=esrep connect_timeout=10 dbname=esrep host=10.10.10.11 port=54321 keepalives=1 keepalives_idle=10 keepalives_interval=1 keepalives_count=3 fallback_application_name=repmgr"

  

通过数据库主节点kbha.log发现在2023-01-09 04:15:25主节点10.10.10.11不能正常访问

# 数据库主节点kbha.log
[2023-01-09 04:15:25] [NOTICE] PING 10.10.10.1 (10.10.10.1) 56(84) bytes of data.

--- 10.10.10.1 ping statistics ---
2 packets transmitted, 2 received, 0% packet loss, time 1016ms
rtt min/avg/max/mdev = 0.225/0.242/0.259/0.017 ms

[2023-01-09 04:15:25] [WARNING] unable to ping "host=10.10.10.11 user=esrep dbname=esrep port=54321 connect_timeout=10 keepalives=1 keepalives_idle=10 keepalives_interval=1 keepalives_count=3"
[2023-01-09 04:15:25] [DETAIL] PQping() returned "PQPING_REJECT"
[2023-01-09 04:15:28] [NOTICE] PING 10.10.10.1 (10.10.10.1) 56(84) bytes of data.

--- 10.10.10.1 ping statistics ---
2 packets transmitted, 2 received, 0% packet loss, time 1014ms
rtt min/avg/max/mdev = 0.241/0.254/0.267/0.013 ms

[2023-01-09 04:15:33] [WARNING] unable to ping "host=10.10.10.11 user=esrep dbname=esrep port=54321 connect_timeout=10 keepalives=1 keepalives_idle=10 keepalives_interval=1 keepalives_count=3"
[2023-01-09 04:15:33] [DETAIL] PQping() returned "PQPING_REJECT"
[2023-01-09 04:15:36] [NOTICE] PING 10.10.10.1 (10.10.10.1) 56(84) bytes of data.

--- 10.10.10.1 ping statistics ---
2 packets transmitted, 2 received, 0% packet loss, time 1020ms
rtt min/avg/max/mdev = 0.211/0.285/0.360/0.074 ms

[2023-01-09 04:15:36] [WARNING] unable to ping "host=10.10.10.11 user=esrep dbname=esrep port=54321 connect_timeout=10 keepalives=1 keepalives_idle=10 keepalives_interval=1 keepalives_count=3"
[2023-01-09 04:15:36] [DETAIL] PQping() returned "PQPING_REJECT"
[2023-01-09 04:15:39] [NOTICE] PING 10.10.10.1 (10.10.10.1) 56(84) bytes of data.

--- 10.10.10.1 ping statistics ---
2 packets transmitted, 2 received, 0% packet loss, time 1023ms
rtt min/avg/max/mdev = 0.113/0.183/0.254/0.070 ms

[2023-01-09 04:15:39] [WARNING] unable to ping "host=10.10.10.11 user=esrep dbname=esrep port=54321 connect_timeout=10 keepalives=1 keepalives_idle=10 keepalives_interval=1 keepalives_count=3"
[2023-01-09 04:15:39] [DETAIL] PQping() returned "PQPING_REJECT"
[2023-01-09 04:15:42] [NOTICE] PING 10.10.10.1 (10.10.10.1) 56(84) bytes of data.

--- 10.10.10.1 ping statistics ---
2 packets transmitted, 2 received, 0% packet loss, time 1026ms
rtt min/avg/max/mdev = 0.186/0.212/0.238/0.026 ms

[2023-01-09 04:15:42] [WARNING] unable to ping "host=10.10.10.11 user=esrep dbname=esrep port=54321 connect_timeout=10 keepalives=1 keepalives_idle=10 keepalives_interval=1 keepalives_count=3"
[2023-01-09 04:15:42] [DETAIL] PQping() returned "PQPING_REJECT"
[2023-01-09 04:15:45] [NOTICE] PING 10.10.10.1 (10.10.10.1) 56(84) bytes of data.

  

主节点数据库日志:

通过主节点数据库日志发现如下信息:

1.主节点在2023-01-09 04:15:15的时候发生的故障,由1761621进程导致.

2.The failed archive command was.数据库归档失败.

3.unable to write ... No space left on device.服务器磁盘没有空闲空间,不能正常写文件.

4.磁盘没有空闲空间数据库备份一直失败.

5.应用执行sql,写临时文件的时候没有空间.could not write to file "sys_wal/xlogtemp.1761621": No space left on device.由于data空间被撑满.(任何数据修改操作,都会先写wal临时文件)无法写wal/xlogtemp.pid临时文件.

6.没有空闲空间写临时文件.数据库进行关闭操作.kingbase ran into a problem it couldn't handle,it needs to be shutdown to prevent damage to your data.并发生coredump.

 

2023-01-09 04:15:12.283 P00   INFO: archive-push command begin 2.27: [sys_wal/0000000500000084000000FE] --archive-timeout=600 --band-width=0 --cmd-ssh=/home/kingbase/cluster/kdb/ClusterKingbase/kingbase/bin/sys_securecmd --compress-level=3 --compress-type=none --config=/backup/kingbase/rmanbackup/sys_rman.conf --exec-id=1764953-fdb1259f --log-level-console=info --log-level-file=info --log-path=/home/kingbase/cluster/kdb/ClusterKingbase/kingbase/log --log-subprocess --kb1-path=/data/kingbase/data --process-max=4 --repo1-path=/backup/kingbase/rmanbackup --stanza=kingbase
ERROR: [104]: archive-push command encountered error(s):
       repo1: [FileWriteError] unable to write '/backup/kingbase/rmanbackup/archive/kingbase/12-1/0000000500000084/0000000500000084000000FE-11d6224e1202374a42216d778c3207442e2aa1f6.sys_rman.tmp': [28] No space left on device
2023-01-09 04:15:12.367 P00   INFO: archive-push command end: aborted with exception [104]
2023-01-09 04:15:12 CST [2707074]: [201654-1] user=,db=,app=,client=LOG:  archive command failed with exit code 104
2023-01-09 04:15:12 CST [2707074]: [201655-1] user=,db=,app=,client=DETAIL:  The failed archive command was: export TZ=Asia/Shanghai;/home/kingbase/cluster/kdb/ClusterKingbase/kingbase/bin/sys_rman --config /backup/kingbase/rmanbackup/sys_rman.conf --stanza=kingbase archive-push sys_wal/0000000500000084000000FE
2023-01-09 04:15:13.379 P00   INFO: archive-push command begin 2.27: [sys_wal/0000000500000084000000FE] --archive-timeout=600 --band-width=0 --cmd-ssh=/home/kingbase/cluster/kdb/ClusterKingbase/kingbase/bin/sys_securecmd --compress-level=3 --compress-type=none --config=/backup/kingbase/rmanbackup/sys_rman.conf --exec-id=1764959-77b4f66f --log-level-console=info --log-level-file=info --log-path=/home/kingbase/cluster/kdb/ClusterKingbase/kingbase/log --log-subprocess --kb1-path=/data/kingbase/data --process-max=4 --repo1-path=/backup/kingbase/rmanbackup --stanza=kingbase
ERROR: [104]: archive-push command encountered error(s):
       repo1: [FileWriteError] unable to write '/backup/kingbase/rmanbackup/archive/kingbase/12-1/0000000500000084/0000000500000084000000FE-11d6224e1202374a42216d778c3207442e2aa1f6.sys_rman.tmp': [28] No space left on device
2023-01-09 04:15:13.456 P00   INFO: archive-push command end: aborted with exception [104]
2023-01-09 04:15:13 CST [2707074]: [201656-1] user=,db=,app=,client=LOG:  archive command failed with exit code 104
2023-01-09 04:15:13 CST [2707074]: [201657-1] user=,db=,app=,client=DETAIL:  The failed archive command was: export TZ=Asia/Shanghai;/home/kingbase/cluster/kdb/ClusterKingbase/kingbase/bin/sys_rman --config /backup/kingbase/rmanbackup/sys_rman.conf --stanza=kingbase archive-push sys_wal/0000000500000084000000FE
2023-01-09 04:15:14.468 P00   INFO: archive-push command begin 2.27: [sys_wal/0000000500000084000000FE] --archive-timeout=600 --band-width=0 --cmd-ssh=/home/kingbase/cluster/kdb/ClusterKingbase/kingbase/bin/sys_securecmd --compress-level=3 --compress-type=none --config=/backup/kingbase/rmanbackup/sys_rman.conf --exec-id=1764966-1c88baa5 --log-level-console=info --log-level-file=info --log-path=/home/kingbase/cluster/kdb/ClusterKingbase/kingbase/log --log-subprocess --kb1-path=/data/kingbase/data --process-max=4 --repo1-path=/backup/kingbase/rmanbackup --stanza=kingbase
ERROR: [104]: archive-push command encountered error(s):
       repo1: [FileWriteError] unable to write '/backup/kingbase/rmanbackup/archive/kingbase/12-1/0000000500000084/0000000500000084000000FE-11d6224e1202374a42216d778c3207442e2aa1f6.sys_rman.tmp': [28] No space left on device
2023-01-09 04:15:14.557 P00   INFO: archive-push command end: aborted with exception [104]
2023-01-09 04:15:14 CST [2707074]: [201658-1] user=,db=,app=,client=LOG:  archive command failed with exit code 104
2023-01-09 04:15:14 CST [2707074]: [201659-1] user=,db=,app=,client=DETAIL:  The failed archive command was: export TZ=Asia/Shanghai;/home/kingbase/cluster/kdb/ClusterKingbase/kingbase/bin/sys_rman --config /backup/kingbase/rmanbackup/sys_rman.conf --stanza=kingbase archive-push sys_wal/0000000500000084000000FE
2023-01-09 04:15:14 CST [2707074]: [201660-1] user=,db=,app=,client=WARNING:  archiving write-ahead log file "0000000500000084000000FE" failed too many times, will try again later
2023-01-09 04:15:15 CST [1761621]: [1-1] user=user,db=dbname,app=Kingbase8 JDBC Driver,client=10.10.10.13LOG:  duration: 12756.953 ms  execute <unnamed>: update tab set bizstate = $1 , state = $2 ,clientip = $3 where (userid in (4970,4971,3640,2306,3638,4969,2305,3639,2304,2303,2302,2301,2300,3630,4961,3631,4962,3632,4963,3633,4964,4965,3634,4966,2309,3635,2308,4967,3636,2307,3637,4968,4980,3650,4981,3651,4982,2320,2317,3649,2316,2315,2314,2313,2312,2311,2310,4972,3641,4973,3642,4974,3643,4975,3644,4976,3645,3646,4977,3647,4978,2319,4979,3648,2318,4990,3660,4991,3661,4992,4993,3662,1000,2331,2330,2328,2327,2326,2325,2324,2323,2322,2321,3652,4983,3653,4984,3654,4985,3655,4986,3656,4987,3657,4988,4989,3658,3659,2329,3670,3671,3672,3673,2342,1011,2341,1010,2340,1008,2339,2338,1007,2337,1006,1005,2336,2335,1004,1003,2334,2333,1002,1001,2332,4994,3663,4995,3664,3665,4996,4997,3666,3667,4998,3668,4999,3669,1009,3680,3681,3682,3683,3684,2353,1022,1021,2352,2351,1020,2350,1019,1018,2349,2348,1017,1016,2347,2346,1015,2345,1014,1013,2344,1012,2343,3674,3675,3676,3677,3678,3679,3690,3691,3692,3693,3694,3695,2364,1033,2363,1032,2362,1031,1030,2361,2360,1029,2359,1028,1027,2358,1026,2357,2356,1025,2355,1024,1023,2354,3685,3686,3687,3688,3689,2375,1044,2374,1043,1042,2373,1041,2372,1040,2371,2370,1039,1038,2369,2368,1037,2367,1036,1035,2366,2365,1034,3696,3697,3698,3699,1055,2386,1054,2385,2384,1053,2383,1052,1051,2382,2381,1050,2380,1049,2379,1048,1047,2378,2377,1046,1045,2376,13760,2397,1066,2396,1065,1064,2395,2394,1063,1062,2393,1061,2392,1060,2391,2390,11108,11107,13769,12438,11109,12439,1059,1058,2389,2388,1057,1056,2387,12432,13763,11100,13764,12433,13761,11102,12430,13762,12431,11101,12436,11104,13767,12437,13768,11103,12434,11106,13765,13766,12435,11105,13770,13771,12440,1077,1076,1075,1074,1073,1072,1071,1070,11119,11118,12449,1069,1068,2399,1067,2398,12443,11111,13774,11110,13775,12444,11113,12441,13772,11112,13773,12442,11115,12447,13778,12448,13779,11114,11117,13776,12445,12446,13777,11116,1080,1088,1087,1086,1085,1084,1083,1082,1081,12418,13749,12419,12416,13747,12417,13748,1079,1078,12410,13741,13742,12411,13740,13745,12414,12415,13746,12412,13743,12413,13744,1091,1090,1099,1098,1097,1096,1095,1094,1093,1092,12429,13758,12427,13759,12428,1089,13752,12421,12422,13753,13750,12420,13751,12425,13756,13757,12426,12423,13754,12424,13755,13727,13728,13725,13726,13729,13720,13723,13724,13721,13722,12407,13738,12408,13739,12405,13736,13737,12406,12409,13730,13731,12400,12403,13734,13735,12404,12401,13732,12402,13733,13705,13706,13703,13704,13709,13707,13708,13701,13702,13700,13716,13717,13714,13715,13718,13719,13712,13713,13710,13711,12391,12392,11061,11060,12390,12395,11063,12396,11062,12393,11065,11064,12394,12399,11067,11066,12397,11069,12398,11068,11070,11072,11071,11074,11073,11076,11075,11078,11077,11079,12370,11041,12373,11040,12374,11043,12371,12372,11042,11045,12377,12378,11044,11047,12375,11046,12376,11049,12379,12380,12381,11050,12384,11052,11051,12385,11054,12382,11053,12383,11056,12388,11055,12389,11058,12386,12387,11057,11059,12351,13682,12352,13683,13680,11021,11020,12350,13681,13686,11023,12355,11022,13687,12356,12353,13684,11025,12354,13685,11024,12359,11027,11026,11029,12357,13688,13689,12358,11028,13690,13693,12362,11030,12363,13694,13691,11032,12360,13692,12361,11031,11034,12366,13697,12367,13698,11033,12364,11036,13695,12365,11035,13696,11038,11037,12368,13699,12369,11039,14992,13660,13661,12330,14991,14990,11009,11008,12339,11001,13664,12333,14996,13665,14995,12334,11000,11003,12331,13662,14994,14993,11002,12332,13663,11005,13668,12337,11004,13669,14999,12338,14998,11007,12335,13666,12336,13667,11006,14997,12340,13671,13672,12341,11010,13670,11019,12344,11012,13675,13676,11011,12345,12342,13673,11014,12343,13674,11013,11016,13679,12348,12349,11015,11018,12346,13677,11017,13678,12347,3704,3705,3706,3707,3708,3709,3700,3701,3702,3703,3715,3716,3717,3718,3719,3710,3711,3712,3713,3714,3726,3727,3728,3729,3720,3721,3722,3723,3724,3725,11081,11080,11083,11082,11085,11084,11087,11086,2405,3737,2404,3738,3739,2403,2402,2401,2400,11089,11088,3730,3731,3732,2409,3733,3734,2408,3735,2407,3736,2406,11092,11091,11094,11093,11096,11095,11098,3750,11097,11090,3748,2416,3749,2415,2414,2413,2412,2411,2410,3740,11099,3741,3742,3743,3744,3745,2419,3746,2418,2417,3747,3760,3761,2430,13804,3759,2427,2426,13805,2425,13802,2424,13803,13808,2423,13809,2422,2421,13806,13807,2420,3751,3752,3753,3754,13800,3755,13801,3756,3757,2429,3758,2428,3770,3771,3772,1110,2441,2440,13815,1107,2438,1106,2437,13816,2436,1105,13813,13814,1104,2435,2434,13819,1103,2433,1102,13817,2432,1101,13818,2431,1100,3762,3763,3764,3765,13811,3766,13812,3767,3768,1109,3769,1108,2439,13810,3780,3781,3782,3783,2452,1121,1120,2451,2450,2449,1118,1117,2448,2447,1116,2446,1115,2445,1114,2444,1113,2443,1112,2442,1111,3773,3774,3775,3776,3777,3778,3779,1119,3790,3791,3792,3793,3794,1132,2463,2462,1131,2461,1130,2460,1129,1128,2459,2458,1127,2457,1126,2456,1125,1124,2455,2454,1123,1122,2453,3784,3785,3786,3787,3788,3789,2474,1143,2473,1142,2472,1141,1140,2471,2470,1139,2469,1138,2468,1137,1136,2467,1135,2466,1134,2465,1133,2464,3795,3796,3797,3798,3799,2485,1154,1153,2484,2483,1152,2482,1151,2481,1150,2480,1149,2479,1148,1147,2478,1146,2477,2476,1145,2475,1144,1165,2496,1164,2495,2494,1163,1162,2493,2492,1161,1160,2491,2490,1159,1158,2489,1157,2488,2487,1156,1155,2486,1176,1175,1174,1173,1172,1171,1170,1169,2499,1168,2498,1167,2497,1166,13880,13881,12550,1187,1186,1185,1184,1183,1182,1181,1180,11229,11228,12559,1179,1178,1177,11221,12553,13884,12554,13885,11220,12551) OR userid in (11223,13882,13883,11222,12552,13888,11225,12557,12558,11224,13889,12555,13886,11227,13887,12556,11226,1190,13891,12560,13892,12561,11230,13890,1198,1197,1196,1195,1194,1193,1192,1191,11239,1189,1188,11232,13895,12564,12565,13896,11231,13893,11234,12562,13894,12563,11233,13899,12568,11236,12569,11235,12566,13897,11238,13898,11237,12567,12539,11207,11206,12537,11209,13868,11208,12538,13869,1199,13862,12531,13863,12532,13860,11201,11200,13861,12530,12535,13866,11203,12536,11202,13867,13864,12533,11205,13865,12534,11204,13870,11218,11217,12548,13879,12549,11219,13873,11210,12542,12543,13874,13871,12540,11212,11211,12541,13872,11214,12546,13877,11213,12547,13878,12544,13875,11216,13876,11215,12545,13848,12517,13849,12518,13846,12515,12516,13847,12519,13840,12510,13841,13844,12513,12514,13845,13842,12511,12512,13843,12528,13859,12529,13857,12526,13858,12527,13851,12520,12521,13852,13850,13855,12524,12525,13856,12522,13853,12523,13854,13826,13827,13824,13825,13828,13829,13822,13823,13820,13821,13837,12506,13838,12507,13835,12504,12505,13836,12508,13839,12509,13830,12502,13833,12503,13834,12500,13831,12501,13832,11180,11182,11181,11184,11183,11186,11185,11188,11187,11189,11191,11190,11193,11192,11195,11194,11197,11196,11199,11198,22,12490,23,12491,24,11160,25,26,12494,11162,11161,12495,27,12492,28,11164,11163,29,12493,11166,12498,11165,12499,11168,12496,12497,11167,30,11169,31,32,33,34,11171,35,36,11170,37,11173,11172,38,39,11175,11174,11177,11176,11179,11178,40,41,42,43,44,45,46,47,48,12472,11140,12473,49,12470,11142,11141,12471,11144,12476,11143,12477,11146,12474,50,11145,12475,11148,51,11147,52,12478,53,12479,54,11149,55,12480,56,57,58,59,11151,12483,11150,12484,11153,12481,11152,12482,11155,12487,12488,11154,12485,60,11157,12486,61,11156,62,11159,11158,63,12489,64,65,66,67,68,69,13781,12450,12451,13782,11120,13780,11129,13785,12454,11122,12455,13786,11121,70,13783,12452,11124,71,13784,12453,11123,72,12458,11126,73,13789,74,11125,12459,13787,12456,75,11128,11127,76,13788,12457,77,78,79,13792,12461,12462,13793,13790,11131,13791,12460,11130,13796,11133,80,12465,81,11132,12466,13797,82,12463,13794,11135,12464,13795,11134,83,12469,84,11137,85,11136,13798,11139,86,12467,87,12468,13799,11138,88,89,90,91,92,93,94,95,96,97,98,99,3803,3804,3805,3806,3807,3808,3809,3800,3801,3802,3814,3815,3816,3817,3818,3819,3810,3811,3812,3813,3825,3826,3827,3828,3829,3820,3821,3822,3823,3824,2504,3836,2503,3837,3838,2502,3839,2501,2500,3830,3831,2509,3832,2508,3833,2507,3834,2506,3835,2505,3847,2515,3848,2514,3849,2513,2512,2511,2510,3840,3841,3842,2519,3843,3844,2518,2517,3845,2516,3846,3860,3858,2526,2525,3859,2524,2523,2522,2521,2520,3850,3851,3852,3853,3854,3855,2529,3856,2528,2527,3857,3870,3871,2540,3869,2537,1206,2536,1205,2535,1204,2534,1203,2533,1202,2532,1201,2531,1200,2530,3861,3862,3863,3864,3865,3866,1209,3867,1208,2539,3868,1207,2538,3880,3881,3882,2551,1220,2550,13925,2548,1217,2547,1216,13926,13923,1215,2546,2545,13924,1214,1213,13929,2544,1212,2543,13927,1211,2542,13928,1210,2541,3872,3873,3874,3875,3876,13921,13922,3877,3878,1219,3879,1218,2549,13920,3890,3891,3892,3893,2562,1231,2561,1230,2560,2559,12605,1228,13936,2558,1227,13937,12606,12603,2557,1226,13934,2556,13935,1225,12604,2555,12609,1224,2554,1223,12607,1222,2553,13938,1221,12608,13939,2552,3883,3884,3885,3886,12601,3887,13932,3888,13933,12602,13930,3889,13931,12600,1229,1242,2573,1241,2572,2571,1240,2570,1239,13903,2569,1238,13904,13901,1237,2568,2567,1236,13902,1235,13907,2566,13908,2565,1234,1233,13905,2564,2563,13906,1232,3894,3895,3896,3897,3898,3899,13900,2584,1253,1252,2583,2582,13909,1251,2581,1250,2580,13914,13915,1249,2579,13912,1248,1247,13913,2578,2577,1246,13918,1245,2576,13919,2575,13916,1244,1243,13917,2574,13910,13911,2595,1264,1263,2594,2593,1262,1261,2592,1260,2591,2590,1259,1258,2589,2588,1257,2587,1256,2586,1255,1254,2585,1275,1274,1273,1272,1271,1270,1269,1268,2599,2598,1267,2597,1266,1265,2596,1286,1285,1284,1283,1282,1281,1280,1279,1278,1277,1276,1297,1296,1295,1294,1293,1292,1291,1290,1289,1288,1287,12670,12671,11340,10019,11349,10018,1299,1298,10011,12674,11342,10010,12675,11341,11344,10013,12672,11343,12673,10012,12678,10015,11346,11345,10014,12679,10017,11348,12676,12677,10016,11347,12681,12682,10020,11351,12680,11350,10029,11353,12685,10022,12686,11352,10021,11355,12683,10024,10023,12684,11354,10026,11357,12689,11356,10025,10028,12687,11359,12688,10027,11358,13980,11328,11327,12658,13989,12659,11329,13983,12652,11320,13984,12653,13981,11322,12650,13982,11321,12651,12656,13987,11324,12657,13988,11323,13985,11326,12654,11325,13986,12655,13990,12660,13991,10008,11339,11338,10007,12669,10009,12663,10000,13994,11331,12664,11330,13995,12661,10002,11333,13992,12662,13993,10001,11332,11335,10004,12667,13998,12668,11334,10003,13999,12665,13996,10006,11337,12666,10005,13997,11336,13969,11306,12638,12639,11305,11308,12636,13967,12637,13968,11307,11309,12630,13961,13962,12631,11300,13960,13965,11302,12634,11301,13966,12635,12632,13963,11304,11303,13964,12633,11317,12649,11316,12647,11319,13978,13979,11318,12648,12641,13972,12642,13973,11311,13970,12640,13971,11310,12645,11313,13976,13977,12646,11312,13974,11315,12643,11314,13975,12644,12616,13947,12617,13948,12614,13945,13946,12615,13949,12618,12619,13940,13943,12612,13944,12613,13941,12610,12611,13942,13958,12627,13959,12628,13956,12625,13957,12626,12629,13950,12620,13951,12623,13954,12624,13955,12621,13952,12622,13953,11281,11280) OR userid in (11283,11282,11285,11284,11287,11286,11289,11288,11290,11292,11291,11294,11293,11296,11295,11298,11297,11299,12590,12593,11261,12594,11260,11263,12591,11262,12592,12597,11265,11264,12598,11267,12595,11266,12596,11269,11268,12599,11270,11272,11271,11274,11273,11276,11275,11278,11277,11279,12571,12572,11241,11240,12570,11243,12575,12576,11242,11245,12573,12574,11244,12579,11247,11246,11249,12577,11248,12578,12582,11250,12583,11252,12580,12581,11251,3902,3903,3904,3905,3906,3907,3908,3909,12586,11254,12587,11253,12584,11256,12585,11255,11258,11257,12588,3900,11259,3901,12589,3913,3914,3915,3916,3917,3918,3919,3910,3911,3912,3924,3925,3926,3927,3928,3929,3920,3921,3922,3923,3935,2603,3936,2602,3937,2601,2600,3938,3939,2609,3930,2608,3931,2607,3932,2606,2605,3933,3934,2604,3946,2614,2613,3947,2612,3948,3949,2611,2610,3940,3941,2619,2618,3942,2617,3943,2616,3944,2615,3945,3957,2625,3958,2624,2623,3959,2622,2621,2620,3950,3951,3952,2629,3953,3954,2628,2627,3955,3956,2626,3970,2636,1305,3968,2635,1304,3969,1303,2634,1302,2633,2632,1301,2631,1300,2630,3960,3961,3962,3963,1309,3964,1308,3965,2639,3966,1307,2638,2637,3967,1306,3980,3981,2650,2647,3979,1316,1315,2646,2645,1314,1313,2644,1312,2643,2642,1311,1310,2641,2640,3971,3972,3973,3974,3975,1319,3976,2649,1318,3977,3978,2648,1317,3990,3991,3992,1330,2661,2660,2658,1327,2657,1326,1325,2656,2655,1324,1323,2654,2653,1322,1321,2652,2651,1320,3982,3983,3984,3985,3986,3987,1329,3988,1328,3989,2659,1341,2672,1340,2671,2670,12715,2669,1338,2668,12716,1337,2667,12713,1336,1335,12714,2666,2665,1334,12719,2664,1333,1332,2663,12717,1331,2662,12718,3993,3994,3995,3996,3997,12711,3998,12712,3999,1339,12710,1352,2683,2682,1351,1350,2681,2680,12726,1349,2679,1348,12727,1347,12724,2678,1346,12725,2677,1345,2676,2675,1344,2674,12728,1343,2673,1342,12729,12722,12723,12720,12721,2694,1363,1362,2693,2692,1361,2691,1360,2690,1359,2689,1358,1357,2688,2687,1356,2686,1355,1354,2685,1353,2684,1374,1373,1372,1371,1370,12704,12705,1369,12702,12703,1368,2699,2698,1367,12708,1366,2697,12709,12706,1365,2696,2695,1364,12707,12700,12701,1385,1384,1383,1382,1381,1380,1379,1378,1377,1376,1375,1396,1395,1394,1393,1392,1391,1390,1389,1388,1387,1386,1399,1398,1397,12791,12792,10130,11461,12790,11460,10139,10132,11463,12795,10131,11462,12796,12793,10134,11465,10133,11464,12794,11467,12799,10136,10135,11466,10138,11469,12797,12798,11468,10137,11470,10141,11472,11471,10140,10143,11474,11473,10142,10145,11476,11475,10144,10147,11478,10146,11477,10149,11479,10148,12770,10118,11449,11448,10117,12779,10119,11441,12773,10110,12774,11440,10112,12771,11443,12772,10111,11442,12777,10114,11445,12778,10113,11444,10116,11447,12775,12776,11446,10115,12780,12781,11450,10129,11459,10128,12784,11452,10121,12785,11451,10120,12782,10123,11454,10122,11453,12783,11456,10125,12788,10124,11455,12789,12786,11458,10127,12787,10126,11457,12759,11427,11426,11429,12757,11428,12758,12751,12752,11421,12750,11420,12755,11423,11422,12756,11425,12753,11424,12754,11438,10107,11437,10106,10109,12768,12769,11439,10108,12762,11430,12763,10101,11432,12760,12761,10100,11431,11434,10103,12766,10102,12767,11433,10105,11436,12764,11435,12765,10104,12737,11405,11404,12738,12735,11407,12736,11406,11409,11408,12739,12730,12733,11401,11400,12734,12731,11403,12732,11402,11416,12748,12749,11415,12746,11418,12747,11417,11419,12740,12741,11410,11412,12744,12745,11411,12742,11414,11413,12743,10091,10090,10093,10092,10095,10094,10097,10096,10099,10098,10071,10070,10073,10072,10075,10074,10077,10076,10079,10078,10080,10082,10081,10084,10083,10086,10085,10088,10087,10089,11380,10051,11382,11381,10050,11384,10053,10052,11383,10055,11386,11385,10054,11388,10057,10056,11387,10059,11389,10058,11391,10060,11390,10062,11393,11392,10061,10064,11395,11394,10063,11397,10066,10065,11396,10068,11399,11398,10067,10069,11360,12692,12693,12690,10031,11362,10030,11361,12691,11364,12696,10033,12697,10032,11363,12694,10035,11366,10034,11365,12695,10037,11368,11367,10036,12698,10039,12699,11369,10038,11371,10040,11370,10042,11373,11372,10041,10044,11375,10043,11374,11377,10046,11376,10045,11379,10048,11378,10047,10049,2702,2701,2700,2709,2708,2707,2706,2705,2704,2703,2713,2712,2711,2710,2719,2718,2717,2716,2715,2714,2724,2723,2722,2721,2720,2729,2728,2727,2726,2725,2735,1404,1403,2734,2733,1402,1401,2732,2731,1400,2730,1409,2739,1408,2738,1407,1406,2737,1405,2736,2746,1415,1414,2745,1413,2744,1412,2743,2742,1411,1410,2741,2740,1419,2749,1418,1417,2748,1416,2747,2760,2757,1426,2756,1425,2755,1424,1423,2754,2753,1422,2752,1421,2751,1420,2750,1429,2759,1428,1427,2758,2771,1440,2770,1437,2768,2767,1436,1435,2766,1434,2765,2764,1433,1432,2763,1431,2762,2761,1430,1439,1438,2769,2782,1451,2781,1450,2780,1448,2779,2778,1447,1446,2777,1445,2776,2775,1444,1443,2774,2773,1442,1441,2772,1449,2793,1462,2792,1461,1460,2791,2790,1459,12836,11504,1458,2789,12837,11503,1457,11506,2788,12834,1456,11505,2787,12835,2786,11508,1455,11507,1454,2785,2784,12838,1453,12839,2783,1452,11509,12832,11500,12833,12830,11502,12831,11501,1473,1472,1471,1470,12847,11515,12848,11514,1469,2799,11517,12845,1468,12846,1467,2798,11516,2797,11519,1466,1465,2796,11518,2795,1464,12849,2794,1463,12840,11511,12843,12844,11510,12841,11513,11512,12842,1484,1483,1482,12809,1481,1480,12814,12815,12812,1479,12813,1478,1477,12818,1476,12819,1475,12816,1474,12817,12810,12811,1495,1494,1493,1492,1491,1490,12825,12826,12823,12824,1489,1488,12829,1487,1486,12827,1485,12828,12821,12822,12820,1499,1498,1497,1496) OR userid in (12803,12804,12801,12802,12807,12808,12805,12806,12800,11580,11582,10251,11581,10250,11584,10253,10252,11583,11586,10255,10254,11585,10257,11588,11587,10256,10259,10258,11589,11591,10260,11590,10262,11593,11592,10261,10264,11595,11594,10263,10266,11597,11596,10265,11599,10268,10267,11598,10269,12890,12891,11560,10239,11569,10238,12894,11562,10231,12895,10230,11561,11564,12892,10233,12893,10232,11563,11566,10235,12898,11565,12899,10234,12896,11568,10237,11567,12897,10236,11571,10240,11570,10249,11573,10242,10241,11572,10244,11575,10243,11574,11577,10246,11576,10245,11579,10248,10247,11578,11548,10217,10216,11547,10219,12878,11549,10218,12879,11540,12872,12873,12870,11542,10211,10210,12871,11541,11544,12876,10213,12877,10212,11543,11546,10215,12874,11545,10214,12875,12880,11559,10228,10227,11558,12889,10229,12883,10220,11551,12884,11550,12881,10222,11553,11552,12882,10221,11555,10224,12887,11554,10223,12888,12885,11557,10226,11556,10225,12886,12858,11526,12859,11525,11528,12856,12857,11527,11529,12850,12851,11520,11522,12854,12855,11521,12852,11524,12853,11523,12869,10206,11537,11536,10205,10208,12867,11539,12868,10207,11538,10209,12861,12862,10200,11531,11530,12860,11533,10202,12865,10201,12866,11532,12863,11535,10204,11534,12864,10203,10190,10192,10191,10194,10193,10196,10195,10198,10197,10199,10170,10172,10171,10174,10173,10176,10175,10178,10177,10179,10181,10180,10183,10182,10185,10184,10187,10186,10189,10188,11481,10150,11480,11483,10152,11482,10151,2801,2800,11485,10154,2809,10153,2808,11484,2807,11487,10156,10155,11486,2806,10158,2805,11489,10157,11488,2804,2803,2802,10159,11490,11492,10161,10160,11491,10163,11494,11493,10162,2812,2811,2810,11496,10165,2819,10164,11495,11498,2818,10167,2817,10166,11497,2816,10169,10168,11499,2815,2814,2813,2823,2822,2821,2820,2829,2828,2827,2826,2825,2824,1503,2834,2833,1502,2832,1501,2831,1500,2830,1509,2839,1508,2838,1507,1506,2837,1505,2836,2835,1504,2845,1514,2844,1513,2843,1512,1511,2842,1510,2841,2840,1519,2849,1518,1517,2848,1516,2847,2846,1515,1525,2856,1524,2855,2854,1523,1522,2853,1521,2852,1520,2851,2850,1529,2859,1528,2858,1527,1526,2857,2870,1536,2867,2866,1535,2865,1534,2864,1533,2863,1532,2862,1531,2861,1530,2860,1539,2869,1538,2868,1537,2881,1550,2880,1547,2878,2877,1546,2876,1545,1544,2875,1543,2874,1542,2873,1541,2872,2871,1540,1549,2879,1548,2892,1561,2891,1560,2890,1558,2889,2888,1557,2887,1556,2886,1555,2885,1554,1553,2884,1552,2883,2882,1551,1559,1572,1571,1570,1569,1568,2899,1567,2898,1566,2897,2896,1565,2895,1564,1563,2894,1562,2893,1583,1582,1581,1580,12957,11625,12958,1579,11624,12955,1578,11627,11626,12956,1577,11629,1576,1575,11628,1574,12959,1573,12950,11621,12953,11620,12954,12951,11623,11622,12952,1594,1593,1592,1591,1590,10305,11636,12968,11635,12969,10304,10307,11638,12966,1589,12967,11637,1588,10306,10309,1587,11639,1586,10308,1585,1584,12960,12961,11630,12964,11632,10301,11631,10300,12965,10303,11634,12962,12963,11633,10302,12935,11603,11602,12936,11605,12933,12934,1599,11604,1598,11607,12939,1597,11606,12937,1596,11609,12938,11608,1595,12931,12932,11601,11600,12930,11614,12946,12947,11613,12944,11616,11615,12945,11618,11617,12948,12949,11619,11610,12942,12943,11612,12940,12941,11611,12908,12909,12913,12914,12911,12912,12917,12918,12915,12916,12910,12919,12924,12925,12922,12923,12928,12929,12926,12927,12920,12921,12902,12903,12900,12901,12906,12907,12904,12905,10370,10372,10371,10374,10373,10376,10375,10378,10377,10379,10381,10380,10383,10382,10385,10384,10387,10386,10389,10388,10350,11681,11680,10359,11683,10352,10351,11682,10354,11685,11684,10353,10356,11687,10355,11686,10358,11689,11688,10357,11690,10361,11692,11691,10360,11694,10363,10362,11693,10365,11696,10364,11695,10367,11698,10366,11697,10369,10368,11699,12990,11669,10338,11668,10337,12999,10339,12993,10330,11661,11660,12994,12991,10332,11663,10331,12992,11662,11665,12997,10334,10333,11664,12998,11667,10336,12995,10335,12996,11666,11670,10349,10348,11679,10341,11672,11671,10340,10343,11674,11673,10342,11676,10345,10344,11675,10347,11678,11677,10346,11647,10316,12979,10315,11646,11649,12977,10318,10317,12978,11648,10319,12971,12972,10310,11641,11640,12970,12975,11643,10312,11642,10311,12976,11645,12973,10314,10313,11644,12974,10327,11658,10326,11657,10329,12988,12989,11659,10328,11650,12982,12983,10321,12980,11652,12981,10320,11651,12986,11654,10323,10322,11653,12987,10325,12984,11656,12985,11655,10324,10291,10290,10293,10292,10295,2909,10294,2900,10297,2908,2907,10296,2906,10299,2905,10298,2904,2903,2902,2901,2911,2910,2919,2918,2917,2916,2915,2914,2913,2912,10271,10270,10273,10272,2922,2921,2920,10275,10274,2929,2928,10277,2927,10276,2926,10279,10278,2925,2924,2923,10280,10282,10281,10284,10283,2933,1602,2932,1601,1600,2931,2930,10286,10285,1609,2939,10288,1608,2938,10287,1607,1606,2937,10289,1605,2936,2935,1604,1603,2934,2944,1613,2943,1612,2942,1611,1610,2941,2940,1619,1618,2949,1617,2948,2947,1616,1615,2946,1614,2945,1624,2955,2954,1623,2953,1622,1621,2952,2951,1620,2950,1629,2959,1628,2958,1627,1626,2957,1625,2956,1635,2966,2965,1634,1633,2964,2963,1632,2962,1631,1630,2961,2960,1639,2969,1638,2968,1637,1636,2967,2980,2977,1646,1645,2976,2975,1644,2974,1643,1642,2973,1641,2972,1640,2971,2970,1649,1648,2979,1647,2978,2991,1660,2990,1657,2988,1656,2987,1655,2986,1654,2985,1653,2984,2983,1652,1651,2982,2981,1650,1659,1658,2989,1671,1670,1668,2999,2998,1667,1666,2997,2996,1665,1664,2995,2994,1663,1662,2993,1661,2992,1669,1682,1681,1680,1679,1678,1677,1676,1675,1674,1673,1672,1693,1692,1691,1690,1689,1688,1687,1686,1685,1684,1683,10415,11746,10414,11745,1699,11748) OR userid in (10417,1698,10416,11747,10419,1697,1696,10418,11749,1695,1694,11740,10411,11742,11741,10410,10413,11744,11743,10412,10426,11757,10425,11756,10428,11759,11758,10427,10429,11751,10420,11750,10422,11753,11752,10421,11755,10424,11754,10423,11724,11723,11726,11725,11728,11727,11729,11720,11722,11721,11735,10404,10403,11734,10406,11737,11736,10405,10408,11739,11738,10407,10409,11731,10400,11730,11733,10402,11732,10401,11702,11701,11704,11703,11706,11705,11708,11707,11700,11709,11713,11712,11715,11714,11717,11716,11719,11718,11711,11710,10491,10490,10493,10492,10495,10494,10497,10496,10499,10498,10471,10470,10473,10472,10475,10474,10477,10476,10479,10478,10480,10482,10481,10484,10483,10486,10485,10488,10487,10489,11780,10459,11789,10458,11782,10451,11781,10450,11784,10453,10452,11783,10455,11786,11785,10454,11788,10457,10456,11787,10460,11791,11790,10469,11793,10462,10461,11792,11795,10464,11794,10463,11797,10466,11796,10465,10468,11799,10467,11798,11768,10437,11767,10436,10439,11769,10438,11760,11762,10431,11761,10430,10433,11764,10432,11763,10435,11766,11765,10434,11779,10448,11778,10447,10449,11771,10440,11770,11773,10442,10441,11772,11775,10444,11774,10443,11777,10446,10445,11776,1701,1700,1709,1708,1707,1706,1705,1704,1703,1702,10390,10392,10391,10394,10393,1712,1711,1710,10396,10395,1719,10398,1718,10397,1717,1716,10399,1715,1714,1713,1723,1722,1721,1720,1729,1728,1727,1726,1725,1724,1734,1733,1732,1731,1730,1739,1738,1737,1736,1735,1745,1744,1743,1742,1741,1740,1749,1748,1747,1746,1756,1755,1754,1753,1752,1751,1750,1759,1758,1757,1770,1767,1766,1765,1764,1763,1762,1761,1760,1769,1768,1781,1780,1778,1777,1776,1775,1774,1773,1772,1771,1779,1792,1791,1790,1789,1788,1787,1786,1785,1784,1783,1782,1799,1798,1797,1796,1795,1794,1793,11867,10536,10535,11866,10538,11869,10537,11868,10539,11861,10530,11860,10532,11863,11862,10531,10534,11865,11864,10533,11878,10547,11877,10546,10549,11879,10548,11870,11872,10541,11871,10540,11874,10543,11873,10542,11876,10545,10544,11875,10514,11845,10513,11844,11847,10516,11846,10515,10518,11849,11848,10517,10519,10510,11841,11840,10512,11843,10511,11842,11856,10525,11855,10524,10527,11858,11857,10526,10529,10528,11859,11850,11852,10521,10520,11851,11854,10523,11853,10522,11819,11823,11822,11825,11824,11827,11826,11829,11828,11821,11820,11834,10503,10502,11833,11836,10505,11835,10504,10507,11838,11837,10506,10509,11839,10508,11830,10501,11832,11831,10500,11801,11800,11803,11802,11805,11804,11807,11806,11809,11808,11812,11811,11814,11813,11816,11815,11818,11817,11810,10590,10592,10591,10594,10593,10596,10595,10598,10597,10599,10570,10579,10572,10571,10574,10573,10576,10575,10578,10577,10581,10580,10583,10582,10585,10584,10587,10586,10589,10588,10558,11889,10557,11888,10559,11881,10550,11880,10552,11883,10551,11882,11885,10554,11884,10553,10556,11887,10555,11886,11890,10569,10568,11899,11892,10561,11891,10560,10563,11894,11893,10562,11896,10565,11895,10564,11898,10567,11897,10566,1809,1800,1808,1807,1806,1805,1804,1803,1802,1801,1811,1810,1819,1818,1817,1816,1815,1814,1813,1812,1822,1821,1820,1829,1828,1827,1826,1825,1824,1823,1833,1832,1831,1830,1839,1838,1837,1836,1835,1834,1844,1843,1842,1841,1840,1849,1848,1847,1846,1845,1855,1854,1853,1852,1851,1850,1859,1858,1857,1856,1866,1865,1864,1863,1862,1861,1860,1869,1868,1867,1880,1877,1876,1875,1874,1873,1872,1871,1870,1879,1878,1891,1890,1888,1887,1886,1885,1884,1883,1882,1881,1889,1899,1898,1897,1896,1895,1894,1893,1892,11988,10657,10656,11987,10659,11989,10658,11980,11982,10651,10650,11981,11984,10653,10652,11983,11986,10655,11985,10654,10668,11999,11998,10667,10669,10660,11991,11990,10662,11993,11992,10661,11995,10664,10663,11994,11997,10666,10665,11996,10635,11966,10634,11965,11968,10637,11967,10636,10639,11969,10638,11960,11962,10631,11961,10630,11964,10633,11963,10632,10646,11977,10645,11976,10648,11979,10647,11978,10649,10640,11971,11970,10642,11973,10641,11972,10644,11975,10643,11974,10609,11944,10613,11943,10612,10615,11946,10614,11945,10617,11948,11947,10616,10619,10618,11949,11940,11942,10611,10610,11941,11955,10624,11954,10623,10626,11957,10625,11956,10628,11959,10627,11958,10629,11951,10620,11950,11953,10622,11952,10621,11919,11918,11922,11921,11924,11923,11926,11925,11928,11927,11920,11929,10602,11933,11932,10601,11935,10604,10603,11934,10606,11937,11936,10605,10608,11939,10607,11938,11931,10600,11930,10691,10690,10693,10692,10695,10694,10697,10696,10699,10698,10679,10678,10671,10670,10673,10672,10675,10674,10677,10676,10680,10689,10682,10681,10684,10683,10686,10685,10688,10687,1909,1908,1907,1906,1905,1904,1903,1902,1901,1900,1919,1910,1918,1917,1916,1915,1914,1913,1912,1911,1921,1920,1929,1928,1927,1926,1925,1924,1923,1922,1932,1931,1930,1939,1938,1937,1936,1935,1934,1933,1943,1942,1941,1940,1949,1948,1947,1946,1945,1944,1954,1953,1952,1951,1950,1959,1958,1957,1956,1955,1965,1964,1963,1962,1961,1960,1969,1968,1967,1966,11900,1976,1975,11902,1974,11901,1973,1972,11904,1971,11903,11906,1970,11905,1979,1978,1977,11908,1990,11907,11909,1987,11911,11910,1986,11913,1985,11912,1984,1983,11915,11914,1982,11917,1981,1980,11916,1989,1988,9003,9004,9001,9002,9007,9008,9005,9006,9000,1998,1997,1996,1995,1994,1993,1992,1991,1999,9014,9015,9012,9013,9018,9019,9016,9017,9010,9011,9009,9025,9026,9023,9024,9029,9027,9028,9021,9022,9020,9036,9037,9034,9035,9038,9039,9032,9033,9030,9031,9047,9048,9045,9046,9049,9040,9043,9044,9041,9042,9058,9059,9056,9057,9050,9051,9054,9055,9052,9053,9069,9067,9068,9061,9062,9060,9065,9066,9063,9064,10778,10777,10779,10770,10772,10771,10774,10773,10776,10775,9078,9079,9072,9073,9070,9071,9076,9077,9074) OR userid in (9075,10789,10788,10781,10780,10783,10782,10785,10784,10787,10786,9089,9083,9084,9081,9082,9087,9088,9085,9086,10756,10755,10758,10757,9080,10759,10750,10752,10751,10754,10753,9094,9095,9092,9093,9098,9099,9096,9097,10767,10766,10769,10768,9090,9091,10761,10760,10763,10762,10765,10764,10734,10733,10736,10735,10738,10737,10739,10730,10732,10731,10745,10744,10747,10746,10749,10748,10741,10740,10743,10742,10709,10708,10712,10711,10714,10713,10716,10715,10718,10717,10710,10719,10723,10722,10725,10724,10727,10726,10729,10728,10721,10720,10790,10799,10792,10791,10794,10793,10796,10795,10798,10797,9102,9103,9100,9101,9106,9107,9104,9105,9113,9114,9111,9112,9117,9118,9115,9116,9110,10701,10700,10703,10702,10705,10704,10707,10706,9108,9109,9124,9125,9122,9123,9128,9129,9126,9127,9120,9121,9119,9135,9136,9133,9134,9139,9137,9138,9131,9132,9130,9146,9147,9144,9145,9148,9149,9142,9143,9140,9141,9157,9158,9155,9156,9159,9150,9153,9154,9151,9152,9168,9169,9166,9167,9160,9161,9164,9165,9162,9163,9179,9177,9178,9171,9172,9170,9175,9176,9173,9174,9188,9189,9182,9183,9180,9181,9186,9187,9184,9185,10899,10898,10891,10890,10893,10892,10895,10894,10897,10896,9199,9193,9194,9191,9192,9197,9198,9195,9196,9190,10877,10876,10879,10878,10871,10870,10873,10872,10875,10874,10888,10887,10889,10880,10882,10881,10884,10883,10886,10885,10855,10854,10857,10856,10859,10858,10851,10850,10853,10852,10866,10865,10868,10867,10869,10860,10862,10861,10864,10863,10829,10833,10832,10835,10834,10837,10836,10839,10838,10831,10830,10844,10843,10846,10845,10848,10847,10849,10840,10842,10841,9201,9202,9200,9205,9206,9203,9204,9212,9213,9210,9211,9216,9217,9214,9215,9209,9207,9208,9223,9224,9221,9222,9227,9228,9225,9226,10808,10807,10809,9220,10811,10810,10813,10812,10815,10814,10817,10816,9218,9219,9234,9235,9232,9233,9238,9239,9236,9237,10819,10818,9230,9231,10822,10821,10824,10823,10826,10825,10828,10827,9229,10820,9245,9246,9243,9244,9249,9247,9248,9241,9242,9240,9256,9257,9254,9255,9258,9259,9252,9253,9250,9251,10800,10802,10801,10804,10803,10806,10805,9267,9268,9265,9266,9269,9260,9263,9264,9261,9262,9278,9279,9276,9277,9270,9271,9274,9275,9272,9273,9289,9287,9288,9281,9282,9280,9285,9286,9283,9284,9298,9299,9292,9293,9290,9291,9296,9297,9294,9295,10998,10997,10999,10990,10992,10991,10994,10993,10996,10995,10976,10975,10978,10977,10979,10970,10972,10971,10974,10973,10987,10986,10989,10988,10981,10980,10983,10982,10985,10984,10954,10953,10956,10955,10958,10957,10959,10950,10952,10951,10965,10964,10967,10966,10969,10968,10961,10960,10963,10962,9300,9301,9304,9305,9302,9303,9311,9312,9310,9315,9316,9313,9314,9308,9309,9306,9307,9322,9323,9320,9321,9326,9327,9324,9325,9319,9317,9318,8002,9333,8003,9334,8000,9331,8001,9332,8006,9337,8007,9338,8004,9335,9336,8005,9330,9328,9329,9344,8013,8014,9345,9342,8011,8012,9343,8017,9348,9349,8018,8015,9346,8016,9347,10929,10928,9340,9341,8010,10932,10931,10934,10933,10936,10935,10938,10937,9339,8008,8009,10930,9355,8024,8025,9356,8022,9353,8023,9354,8028,9359,8029,8026,9357,8027,9358,10939,8020,9351,9352,8021,9350,10943,10942,10945,10944,10947,10946,10949,10948,8019,10941,10940,9366,8035,9367,8036,8033,9364,9365,8034,8039,9368,8037,8038,9369,10907,10906,10909,10908,8031,9362,8032,9363,9360,9361,8030,10910,10912,10911,10914,10913,10916,10915,9377,8046,8047,9378,9375,8044,9376,8045,8048,9379,8049,10918,9370,10917,10919,8042,9373,9374,8043,9371,8040,9372,8041,10921,10920,10923,10922,10925,10924,10927,10926,9388,8057,9389,8058,9386,8055,9387,8056,8059,9380,9381,8050,9384,8053,8054,9385,8051,9382,9383,8052,9399,8068,8069,9397,8066,8067,9398,9391,8060,9392,8061,9390,8064,9395,8065,9396,9393,8062,9394,8063,10901,10900,10903,10902,10905,10904,8079,8077,8078,8071,8072,8070,8075,8076,8073,8074,8088,8089,8082,8083,8080,8081,8086,8087,8084,8085,8099,8093,8094,8091,8092,8097,8098,8095,8096,8090,9400,9403,9404,9401,9402,9410,9411,9414,9415,9412,9413,9407,9408,9405,9406,9409,9421,9422,9420,9425,9426,9423,9424,9418,9419,9416,9417,9432,8101,9433,8102,9430,8100,9431,9436,8105,9437,8106,9434,8103,9435,8104,9429,9427,9428,9443,8112,9444,8113,8110,9441,9442,8111,8116,9447,8117,9448,8114,9445,8115,9446,9440,8109,9438,8107,9439,8108,9454,8123,8124,9455,8121,9452,8122,9453,8127,9458,8128,9459,8125,9456,8126,9457,9450,8120,9451,9449,8118,8119,9465,8134,8135,9466,9463,8132,9464,8133,9469,8138,8139,9467,8136,8137,9468,9461,8130,8131,9462,9460,8129,8145,9476,9477,8146,9474,8143,8144,9475,8149,8147,9478,8148,9479,8141,9472,9473,8142,9470,8140,9471,8156,9487,8157,9488,9485,8154,9486,8155,8158,9489,8159,9480,8152,9483,8153,9484,8150,9481,9482,8151,9498,8167,9499,8168,9496,8165,8166,9497,8169,9490,9491,8160,9494,8163,8164,9495,8161,9492,9493,8162,8178,8179,8176,8177,8170,8171,8174,8175,8172,8173,8189,8187,8188,8181,8182,8180,8185,8186,8183,8184,8198,8199,8192,8193,8190,8191,8196,8197,8194,8195,9502,9503,9500,9501,9510,9513,9514,9511,9512,9506,9507,9504,9505,9508,9509,9520,9521,9524,9525,9522,9523,9517,9518,9515,9516,9519,9531,8200,9532,8201,9530,9535,8204,8205,9536,9533,8202,9534,8203,9528,9529,9526,9527,9542,8211,8212,9543,9540,9541,8210,9546,8215,8216,9547,9544,8213,8214,9545,8208,9539,8209,8206,9537,8207,9538,9553,8222,8223,9554,8220,9551,8221,9552,8226,9557,8227,9558,8224,9555,8225,9556,9550,8219,8217,9548,8218,9549,8233) OR userid in (9564,8234,9565,9562,8231,9563,8232,8237,9568,8238,9569,9566,8235,8236,9567,9560,9561,8230,9559,8228,8229,8244,9575,8245,9576,8242,9573,9574,8243,8248,9579,8249,8246,9577,8247,9578,9571,8240,8241,9572,9570,8239,8255,9586,9587,8256,9584,8253,9585,8254,8259,8257,9588,9589,8258,8251,9582,8252,9583,9580,9581,8250,9597,8266,8267,9598,8264,9595,8265,9596,9599,8268,8269,9590,8262,9593,9594,8263,8260,9591,8261,9592,8277,8278,8275,8276,8279,8270,8273,8274,8271,8272,8288,8289,8286,8287,8280,8281,8284,8285,8282,8283,8299,8297,8298,8291,8292,8290,8295,8296,8293,8294,17046,17047,17048,17049,17042,17043,17044,17045,17040,17041,17057,17058,17059,17053,17054,17055,17056,17050,17051,17052,17024,17025,17026,17027,17020,17021,17022,17023,17028,17029,17035,17036,17037,17038,17031,17032,17033,17034,17030,17039,17002,17003,17004,17005,17000,17001,17006,17007,17008,17009,17013,17014,17015,17016,17010,17011,17012,17017,17018,17019,17086,17087,17088,17089,17082,17083,17084,17085,17080,17081,17097,17098,17099,17093,17094,17095,17096,17090,17091,17092,17068,17069,17064,9601,9602,17065,17066,17067,9600,17060,17061,17062,17063,17079,9612,17075,9613,17076,9610,17077,9611,17078,17071,17072,17073,17074,17070,9605,9606,9603,9604,9609,9607,9608,9620,9623,9624,9621,9622,9616,9617,9614,9615,9618,9619,9630,9631,8300,8303,9634,8304,9635,9632,8301,9633,8302,9627,9628,9625,9626,9629,8310,9641,9642,8311,9640,9645,8314,8315,9646,9643,8312,9644,8313,8307,9638,9639,8308,9636,8305,8306,9637,8309,8321,9652,8322,9653,9650,9651,8320,9656,8325,8326,9657,9654,8323,9655,8324,9649,8318,8319,8316,8317,9648,7000,8332,9663,8333,9664,9661,8330,7002,7001,8331,9662,9667,8336,7004,8337,7003,9668,9665,8334,7006,7005,9666,8335,9660,8329,8327,9658,8328,9659,7011,8343,9674,7010,9675,8344,7013,9672,8341,7012,8342,9673,9678,7015,8347,8348,9679,7014,7017,8345,9676,8346,9677,7016,9670,8340,9671,7008,7007,8338,9669,7009,8339,8354,7022,9685,9686,8355,7021,9683,8352,7024,8353,7023,9684,7026,8358,9689,7025,8359,9687,8356,7028,8357,9688,7027,9681,8350,9682,8351,7020,9680,7019,7018,8349,7033,9696,8365,9697,7032,8366,9694,8363,7035,7034,8364,9695,7037,8369,7036,9698,7039,8367,9699,7038,8368,8361,9692,9693,8362,9690,7031,9691,7030,8360,7029,7044,8376,8377,7043,8374,7046,7045,8375,7048,7047,8378,7049,8379,8372,7040,8373,7042,8370,7041,8371,7055,8387,8388,7054,7057,8385,7056,8386,7059,7058,8389,8380,8383,7051,7050,8384,8381,7053,7052,8382,8398,7066,7065,8399,7068,8396,8397,7067,7069,8390,8391,7060,8394,7062,7061,8395,7064,8392,7063,8393,7077,7076,7079,7078,7071,7070,7073,7072,7075,7074,7088,7087,7089,7080,7082,7081,7084,7083,7086,7085,7099,7098,7091,7090,7093,7092,7095,7094,7097,7096,17167,17168,17169,17163,17164,17165,17166,17160,17161,17162,17178,17179,17174,17175,17176,17177,17170,17171,17172,17173,17145,17146,17147,17148,17141,17142,17143,17144,17140,17149,17156,17157,17158,17159,17152,17153,17154,17155,17150,17151,17123,17124,17125,17126,17120,17121,17122,17127,17128,17129,17134,17135,17136,17137,17130,17131,17132,17133,17138,17139,17101,17102,17103,17104,17100,17109,17105,17106,17107,17108,17112,17113,17114,17115,17110,17111,17116,17117,17118,17119,9700,9701,9711,9712,9710,9704,9705,9702,9703,9708,9709,9706,9707,17189,17185,9722,17186,9723,17187,9720,9721,17188,17181,17182,17183,17184,17180,9715,9716,9713,9714,9719,9717,9718,9730,9733,17196,8402,9734,8403,17197,8400,17198,9731,9732,17199,8401,17192,17193,17194,17195,17190,17191,100,101,102,103,104,105,106,107,9726,9727,108,109,9724,9725,9728,9729,9740,9741,8410,8413,9744,8414,9745,9742,8411,9743,8412,110,111,112,113,114,115,116,117,8406,9737,118,8407,119,9738,8404,9735,9736,8405,8408,9739,8409,9751,8420,9752,8421,9750,9755,8424,9756,8425,8422,9753,8423,9754,120,121,122,123,124,125,126,127,128,9748,8417,129,8418,9749,9746,8415,9747,8416,8419,9762,8431,8432,9763,7101,9760,9761,7100,8430,7103,8435,9766,7102,9767,8436,8433,7105,9764,9765,7104,8434,130,131,132,133,134,135,136,137,138,139,8428,9759,8429,9757,8426,9758,8427,9773,7110,8442,9774,8443,8440,7112,9771,9772,7111,8441,7114,9777,8446,7113,8447,9778,9775,8444,7116,9776,8445,7115,9770,140,141,142,143,144,145,146,147,148,149,7107,8439,7106,9768,8437,7109,7108,9769,8438,8453,7121,9784,8454,7120,9785,7123,9782,8451,9783,7122,8452,7125,9788,8457,7124,8458,9789,8455,9786,7127,8456,9787,7126,9780,150,151,8450,9781,152,153,154,155,156,157,158,159,7118,7117,9779,8448,7119,8449,7132,8464,9795,8465,9796,7131,7134,9793,8462,9794,8463,7133,8468,7136,9799,8469,7135,9797,7138,8466,8467,7137,9798,160,9791,161,8460,9792,162,8461,163,7130,164,9790,165,166,167,168,169,7129,7128,8459,7143,8475,8476,7142,7145,8473,8474,7144,7147,8479,7146,8477,7149,7148,8478,170,171,8471,172,173,8472,7141,174,175,8470,7140,176,177,178,179,7139,7154,8486,8487,7153,7156,8484,8485,7155,7158,7157,8488,8489,7159,180,181,182,8482,183,7150,8483,184,8480,185,7152,7151,8481,186,187,188,189,7165,8497,7164,8498,8495,7167,7166,8496,7169,7168,8499,190,8490,191,192,193,7161,8493,194,7160,195,8494,196,7163,8491,197,8492,7162,198,199,7176,7175,7178,7177,7179,7170,7172,7171,7174,7173,7187,7186,7189,7188,7181,7180,7183,7182) OR userid in (7185,7184,7198,7197,7199,7190,7192,7191,7194,7193,7196,7195,17288,17289,17284,17285,17286,17287,17280,17281,17282,17283,17299,17295,17296,17297,17298,17291,17292,17293,17294,17290,17266,17267,17268,17269,17262,17263,17264,17265,17260,17261,17277,17278,17279,17273,17274,17275,17276,17270,17271,17272,17244,17245,17246,17247,17240,17241,17242,17243,17248,17249,17255,17256,17257,17258,17251,17252,17253,17254,17250,17259,17222,17223,17224,17225,17220,17221,17226,17227,17228,17229,17233,17234,17235,17236,17230,17231,17232,17237,17238,17239,9800,9810,9811,9809,9803,9804,9801,9802,9807,9808,9805,9806,9821,9822,9820,9814,9815,9812,9813,9818,9819,9816,9817,9832,8501,9833,8502,9830,9831,8500,200,201,202,203,204,205,206,9825,207,9826,208,9823,209,9824,9829,9827,9828,9840,8512,9843,8513,9844,9841,8510,8511,9842,210,211,212,213,214,215,216,8505,9836,217,8506,9837,218,219,8503,9834,9835,8504,8509,9838,8507,9839,8508,9850,8520,9851,8523,9854,9855,8524,8521,9852,9853,8522,220,221,222,223,224,225,226,227,9847,228,8516,9848,8517,229,9845,8514,9846,8515,9849,8518,8519,9861,8530,8531,9862,7200,9860,7202,9865,8534,9866,7201,8535,8532,7204,9863,7203,9864,8533,230,231,232,233,234,235,236,237,238,239,9858,8527,8528,9859,8525,9856,9857,8526,8529,8541,9872,9873,8542,7211,9870,7210,9871,8540,7213,9876,8545,9877,7212,8546,8543,9874,7215,8544,7214,9875,240,241,242,243,244,245,246,247,248,249,8538,7206,9869,7205,8539,7208,9867,8536,7207,8537,9868,7209,7220,8552,9883,8553,9884,9881,7222,8550,8551,9882,7221,7224,9887,8556,8557,7223,9888,8554,7226,9885,9886,8555,7225,250,9880,251,252,253,254,255,256,257,258,259,8549,7217,7216,8547,9878,7219,9879,8548,7218,9894,7231,8563,9895,7230,8564,9892,7233,8561,8562,9893,7232,7235,9898,8567,9899,8568,7234,7237,8565,9896,9897,8566,7236,260,9890,261,9891,8560,262,263,264,265,266,267,268,269,7228,7227,8558,9889,7229,8559,7242,8574,8575,7241,8572,7244,8573,7243,7246,8578,7245,8579,7248,8576,8577,7247,270,271,8570,8571,272,273,7240,274,275,276,277,278,279,7239,7238,8569,7253,8585,7252,8586,7255,8583,8584,7254,7257,8589,7256,7259,8587,7258,8588,280,281,282,8581,283,8582,7251,284,7250,285,8580,286,287,288,289,7249,7264,8596,7263,8597,8594,7266,7265,8595,7268,7267,8598,7269,8599,290,291,292,7260,8592,293,294,8593,7262,295,8590,296,7261,8591,297,298,299,7275,7274,7277,7276,7279,7278,7271,7270,7273,7272,7286,17200,17201,7285,7288,17202,17203,7287,7289,7280,7282,7281,7284,7283,17208,17209,17204,17205,17206,17207,7297,17211,7296,17212,17213,7299,17214,7298,17210,7291,7290,7293,7292,7295,7294,17219,17215,17216,17217,17218,16077,16076,16075,16074,16079,16078,16073,16072,16071,16070,16088,16087,16086,16085,16089,16080,16084,16083,16082,16081,17387,16055,16054,17388,16053,17389,16052,17383,16059,16058,17384,17385,16057,16056,17386,17380,17381,17382,16051,16050,16066,17398,17399,16065,16064,16063,17394,16069,17395,16068,17396,17397,16067,17390,17391,17392,17393,16062,16061,16060,17365,16033,16032,17366,16031,17367,17368,16030,16037,17361,17362,16036,16035,17363,16034,17364,17360,16039,16038,17369,16044,17376,16043,17377,17378,16042,17379,16041,16048,17372,17373,16047,17374,16046,16045,17375,17370,17371,16040,16049,17343,16011,16010,17344,17345,17346,16015,16014,17340,16013,17341,16012,17342,16019,16018,16017,16016,17347,17348,17349,17354,16022,16021,17355,16020,17356,17357,16026,17350,17351,16025,16024,17352,16023,17353,16029,16028,16027,17358,17359,9910,9908,9909,9902,9903,9900,9901,9906,9907,9904,9905,9920,9921,9919,9913,9914,9911,9912,9917,9918,9915,9916,8600,9931,8601,9932,9930,300,301,302,303,304,9924,305,306,9925,307,9922,308,9923,9928,309,9929,9926,9927,9942,8611,9943,8612,9940,8610,9941,310,311,312,313,314,315,8604,316,9935,8605,317,9936,8602,9933,318,9934,319,8603,9939,8608,8609,9937,8606,9938,8607,9950,8622,9953,9954,8623,8620,9951,9952,8621,320,321,322,323,324,325,326,9946,8615,327,8616,9947,328,9944,329,8613,9945,8614,8619,8617,9948,9949,8618,16099,9960,16098,9961,8630,16097,16096,7301,8633,9964,9965,8634,7300,8631,7303,9962,7302,8632,9963,16091,16090,16095,16094,16093,16092,330,331,332,333,334,335,336,337,8626,9957,338,8627,339,9958,9955,8624,9956,8625,8628,9959,8629,8640,9971,8641,9972,7310,9970,7312,9975,8644,9976,7311,8645,7314,9973,8642,9974,8643,7313,340,341,342,343,344,345,346,347,348,9968,349,7305,8637,7304,9969,8638,9966,7307,8635,7306,9967,8636,7309,7308,8639,9982,8651,8652,9983,7321,9980,7320,8650,9981,8655,7323,9986,8656,9987,7322,9984,7325,8653,9985,8654,7324,350,351,352,353,354,355,356,357,358,359,9979,8648,7316,8649,7315,8646,7318,9977,8647,7317,9978,7319,7330,9993,8662,9994,8663,6001,9991,7332,8660,7331,8661,9992,6000,6003,7334,9997,8666,7333,8667,6002,9998,6005,8664,9995,7336,9996,8665,7335,6004,9990,360,361,362,363,364,365,366,367,368,369,8659,7327,7326,9988,7329,8657,7328,9989,8658,6010,8673,7341,8674,7340,6012,8671,7343,7342,6011,8672,6014,8677,7345,8678,7344,6013,8675,6016,7347,7346,8676,6015,370,371,8670,372,373,374,375,376,377,378,379,6007,7338,7337,6006,6009,9999,8668,6008,7339,8669,6021,7352,8684,6020,8685,7351,7354,6023,8682,8683,7353,6022,7356) OR userid in (8688,6025,8689,7355,6024,6027,8686,7358,7357,6026,8687,380,381,8680,382,8681,383,7350,384,385,386,387,388,389,6018,7349,6017,7348,8679,6019,8695,7363,6032,6031,7362,8696,8693,6034,7365,8694,6033,7364,6036,7367,8699,6035,7366,7369,6038,8697,7368,8698,6037,390,391,392,8691,393,8692,6030,394,7361,8690,7360,395,396,397,398,399,6029,7359,6028,7374,6043,6042,7373,6045,7376,6044,7375,7378,6047,7377,6046,6049,7379,6048,7370,7372,6041,7371,6040,6039,7385,6054,7384,6053,6056,7387,6055,7386,6058,7389,7388,6057,6059,7381,6050,7380,6052,7383,7382,6051,6065,7396,7395,6064,6067,7398,6066,7397,6069,6068,7399,7390,7392,6061,6060,7391,6063,7394,6062,7393,17321,6076,6075,17322,6078,17323,17324,6077,6079,17320,6070,6072,6071,6074,6073,17329,17325,17326,17327,17328,17332,16000,6087,17333,6086,6089,17334,6088,17335,16004,16003,17330,16002,16001,17331,6081,6080,6083,6082,6085,6084,16008,16007,16006,16005,17336,17337,17338,17339,16009,6098,6097,17300,17301,6099,17302,6090,6092,6091,6094,6093,6096,6095,17307,17308,17309,17303,17304,17305,17306,17310,17311,17312,17313,17318,17319,17314,17315,17316,17317,16198,16197,16196,16195,16199,16190,16194,16193,16192,16191,16176,16175,16174,16173,16179,16178,16177,16172,16171,16170,16187,16186,16185,16184,16189,16188,16183,16182,16181,16180,16154,17486,16153,17487,17488,16152,16151,17489,17482,16158,16157,17483,16156,17484,16155,17485,17480,17481,16150,16159,17497,16165,16164,17498,16163,17499,16162,17493,16169,16168,17494,16167,17495,16166,17496,17490,17491,17492,16161,16160,16132,17464,17465,16131,17466,16130,17467,17460,16136,17461,16135,17462,16134,16133,17463,16139,16138,16137,17468,17469,17475,16143,17476,16142,16141,17477,17478,16140,16147,17471,17472,16146,16145,17473,16144,17474,17470,16149,16148,17479,8700,400,401,402,403,404,405,406,407,408,409,8710,8711,8709,410,411,412,413,414,8703,415,416,8704,417,8701,8702,418,419,8707,8708,8705,8706,8721,8722,8720,420,421,422,423,424,425,8714,426,427,8715,428,8712,8713,429,8718,8719,8716,8717,8732,7400,8733,8730,7402,7401,8731,430,431,432,433,434,435,436,437,8725,8726,438,439,8723,8724,8729,8727,8728,8740,8743,7411,7410,8744,7413,8741,8742,7412,440,441,442,443,444,445,446,447,8736,448,7404,8737,449,7403,8734,7406,7405,8735,7408,7407,8738,7409,8739,8750,8751,7420,7422,8754,8755,7421,7424,8752,7423,8753,450,451,452,453,454,455,456,457,458,459,8747,7415,8748,7414,7417,8745,7416,8746,7419,7418,8749,8761,8762,6100,7431,7430,8760,6102,7433,8765,6101,8766,7432,8763,6104,7435,7434,6103,8764,460,461,462,463,464,465,466,467,468,469,8758,7426,8759,7425,8756,7428,8757,7427,7429,7440,8772,8773,6111,8770,7442,7441,6110,8771,8776,6113,7444,6112,8777,7443,7446,8774,6115,6114,8775,7445,470,471,472,473,474,475,476,477,478,479,7437,6106,8769,6105,7436,6108,8767,7439,7438,8768,6107,6109,7451,6120,8783,7450,8784,6122,7453,8781,8782,7452,6121,8787,7455,6124,6123,8788,7454,7457,8785,6126,7456,6125,8786,480,481,8780,482,483,484,485,486,487,488,489,7448,6117,7447,6116,6119,8778,8779,6118,7449,7462,8794,6131,8795,7461,6130,7464,6133,8792,8793,6132,7463,7466,6135,8798,6134,8799,7465,8796,6137,7468,8797,6136,7467,490,491,8790,492,8791,493,7460,494,495,496,497,498,499,6128,7459,7458,6127,8789,6129,6142,7473,6141,7472,6144,7475,6143,7474,7477,6146,6145,7476,7479,6148,7478,6147,7471,6140,7470,6139,6138,7469,7484,6153,6152,7483,6155,7486,7485,6154,6157,7488,6156,7487,6159,6158,7489,7480,7482,6151,6150,7481,6149,6164,7495,7494,6163,7497,6166,7496,6165,6168,7499,7498,6167,6169,7491,6160,7490,7493,6162,6161,7492,6175,6174,6177,6176,6179,6178,6171,6170,6173,6172,6186,6185,6188,6187,6189,6180,6182,6181,6184,6183,17442,16110,6197,17443,6196,6199,17444,6198,17445,16114,16113,16112,17440,17441,16111,6191,6190,6193,6192,6195,6194,16118,16117,16116,16115,17446,17447,17448,17449,16119,16121,17453,17454,16120,17455,17456,16125,16124,17450,16123,17451,17452,16122,16129,16128,16127,16126,17457,17458,17459,17420,17421,17422,17423,17428,17429,17424,17425,17426,17427,17431,17432,17433,17434,16103,16102,16101,17430,16100,17439,16107,16106,16105,16104,17435,17436,16109,17437,16108,17438,17400,17401,17406,17407,17408,17409,17402,17403,17404,17405,17410,17411,17412,17417,17418,17419,17413,17414,17415,17416,16297,16296,16295,16294,16299,16298,16293,16292,16291,16290,16275,16274,16273,16272,16279,16278,16277,16276,16271,16270,16286,16285,16284,16283,16289,16288,16287,16282,16281,16280,16253,17585,17586,16252,17587,16251,16250,17588,16257,17581,16256,17582,17583,16255,17584,16254,17580,16259,16258,17589,17596,16264,16263,17597,17598,16262,17599,16261,16268,17592,17593,16267,17594,16266,16265,17595,17590,17591,16260,500,501,502,503,504,505,506,16269,507,508,509,8810,8808,8809,510,511,512,513,514,8802,8803,515,516,8800,517,8801,518,8806,8807,519,8804,8805,8820,8821,8819,520,521,522,523,524,8813,525,526,8814,8811,527,528,8812,8817,529,8818,8815,8816,8831,8832,7501,8830,7500,530,531,532,533,534,535,8824,536,537,8825,8822,538,539,8823,8828,8829,8826,8827,8842,7510,8843,8840,7512,8841,7511,540,541,542,543,544,545,546,547,8835,7503,8836,548,7502,8833,549,7505,7504,8834,7507,8839,7506,7509,8837,8838,7508,8850,8853,7521,7520,8854,8851,7523,7522,8852) OR userid in (550,551,552,553,554,555,556,557,8846,558,7514,7513,8847,559,8844,7516,8845,7515,7518,7517,8848,7519,8849,8860,8861,7530,6201,7532,8864,6200,7531,8865,7534,6203,8862,6202,7533,8863,560,561,562,563,564,565,566,567,568,569,8857,7525,8858,7524,7527,8855,7526,8856,7529,7528,8859,8871,8872,7541,6210,7540,8870,7543,6212,8875,7542,8876,6211,8873,7545,6214,8874,7544,6213,570,571,572,573,574,575,576,577,578,579,6205,8868,7536,8869,7535,6204,7538,6207,8866,6206,8867,7537,6209,7539,6208,7550,8882,8883,7552,8880,6221,7551,8881,6220,7554,8886,6223,7553,6222,8887,7556,8884,6225,8885,7555,6224,580,581,582,583,584,585,586,587,588,589,8879,6216,7547,7546,6215,7549,6218,8877,6217,8878,7548,6219,8893,6230,7561,8894,7560,8891,7563,6232,8892,7562,6231,8897,7565,6234,8898,7564,6233,7567,8895,6236,7566,8896,6235,590,591,8890,592,593,594,595,596,597,598,599,7558,6227,7557,6226,8888,6229,6228,7559,8889,6241,7572,6240,7571,6243,7574,6242,7573,7576,6245,6244,7575,7578,6247,7577,6246,7570,6238,7569,6237,7568,8899,6239,7583,6252,7582,6251,7585,6254,6253,7584,7587,6256,7586,6255,7589,6258,7588,6257,7581,6250,7580,6249,7579,6248,7594,6263,6262,7593,6265,7596,6264,7595,7598,6267,7597,6266,6269,6268,7599,7590,7592,6261,7591,6260,6259,6274,6273,6276,6275,6278,6277,6279,6270,6272,6271,6285,6284,6287,6286,6289,6288,6281,6280,6283,6282,6296,6295,6298,6297,6299,6290,6292,6291,6294,6293,16231,17563,16230,17564,17565,17566,16235,17560,16234,17561,16233,17562,16232,16239,16238,16237,16236,17567,17568,17569,17574,16242,16241,17575,16240,17576,17577,16246,17570,17571,16245,16244,17572,17573,16243,16249,16248,16247,17578,17579,17541,17542,17543,17544,16213,16212,16211,17540,16210,16217,17549,16216,16215,16214,17545,17546,17547,16219,17548,16218,16220,17552,17553,17554,17555,16224,16223,16222,17550,17551,16221,16228,16227,16226,16225,17556,17557,17558,17559,16229,17520,17521,17522,17527,17528,17529,17523,17524,17525,17526,17530,17531,17532,17533,16202,16201,16200,16206,17538,17539,16205,16204,16203,17534,16209,17535,16208,17536,17537,16207,17500,17509,17505,17506,17507,17508,17501,17502,17503,17504,17510,17511,17516,17517,17518,17519,17512,17513,17514,17515,15087,15086,15085,15084,15089,15088,15083,15082,15081,15080,15098,15097,15096,15095,15099,15090,15094,15093,15092,15091,16396,15065,16395,15064,16394,15063,16393,15062,15069,15068,16399,15067,16398,15066,16397,15061,16392,15060,16391,16390,15076,15075,15074,15073,15079,15078,15077,15072,15071,15070,600,601,602,603,604,605,606,607,608,609,16374,15043,15042,16373,16372,15041,16371,15040,15047,16378,16377,15046,15045,16376,16375,15044,16370,8909,8907,8908,610,611,612,613,8901,8902,614,15049,615,8900,616,16379,15048,8905,617,618,8906,619,8903,8904,15054,16385,15053,16384,16383,15052,15051,16382,15058,16389,8920,15057,16388,16387,15056,16386,15055,16381,15050,16380,8918,8919,620,621,622,623,8912,624,8913,625,626,8910,15059,8911,627,8916,628,629,8917,8914,8915,8930,8931,7600,8929,630,631,632,633,634,8923,635,8924,636,637,8921,638,8922,8927,639,8928,8925,8926,8941,8942,7611,7610,8940,7609,640,641,642,643,644,645,646,7602,8934,7601,647,8935,8932,7604,648,7603,649,8933,7606,8938,7605,8939,8936,7608,7607,8937,8952,7620,8953,7622,8950,7621,8951,650,651,652,653,654,655,656,8945,657,7613,8946,658,7612,8943,7615,659,8944,7614,7617,8949,7616,7619,8947,7618,8948,8960,6300,8963,7631,8964,7630,7633,8961,6302,7632,6301,8962,660,661,662,663,664,665,666,667,8956,668,7624,7623,8957,669,8954,7626,7625,8955,7628,7627,8958,7629,8959,8970,8971,7640,8974,6311,7642,6310,7641,8975,6313,8972,7644,6312,7643,8973,670,671,672,673,674,675,676,677,678,7635,6304,679,8967,8968,6303,7634,7637,8965,6306,8966,6305,7636,6308,7639,7638,6307,8969,6309,8981,8982,7651,6320,8980,7650,6322,7653,8985,8986,7652,6321,6324,8983,7655,7654,6323,8984,680,681,682,683,684,685,686,687,688,689,6315,8978,7646,7645,8979,6314,7648,8976,6317,8977,7647,6316,6319,6318,7649,8992,7660,8993,7662,8990,6331,5000,6330,7661,8991,7664,8996,5001,6333,7663,6332,8997,5002,6335,7666,8994,5003,7665,8995,5004,6334,690,691,692,693,694,695,696,697,698,699,7657,6326,8989,6325,7656,6328,7659,8987,6327,7658,8988,6329,6340,7671,7670,7673,5010,6342,7672,6341,5011,7675,6344,5012,6343,5013,7674,5014,7677,6346,6345,5015,7676,6337,7668,5005,6336,5006,7667,5007,6339,8998,5008,8999,7669,6338,5009,6351,7682,6350,5020,7681,6353,7684,5021,6352,7683,5022,6355,5023,7686,7685,5024,6354,7688,5025,6357,5026,6356,7687,7680,17608,17609,5016,6348,7679,17604,7678,17605,6347,5017,17606,5018,17607,5019,6349,17600,17601,17602,17603,7693,5030,6362,7692,6361,5031,7695,5032,6364,5033,7694,6363,17610,7697,6366,5034,7696,6365,5035,5036,7699,6368,7698,5037,6367,6360,7691,7690,17619,6359,5027,17615,5028,6358,7689,17616,17617,5029,17618,17611,17612,17613,17614,5041,6373,6372,5042,6375,5043,6374,5044,6377,5045,6376,5046,5047,6379,5048,6378,6371,6370,5040,5038,5039,6369,6384,5052,6383,5053,5054,6386,6385,5055,5056,6388,6387,5057,5058,6389,5059,6380,5050,6382,6381,5051,5049,5063,6395,5064,6394,6397,5065,5066,6396,6399,5067,5068,6398,5069,6391,6390,5060,5061,6393,5062,6392,5074,5075,5076,5077,5078) OR userid in (5079,5070,5071,5072,5073,5085,5086,5087,5088,5089,5080,5081,5082,5083,5084,5096,5097,5098,5099,5090,5091,5092,5093,5094,5095,17684,15021,16352,17685,16351,15020,16350,17686,17687,15025,17680,16356,15024,16355,17681,15023,16354,17682,16353,15022,17683,15029,16359,15028,15027,16358,16357,15026,17688,17689,17695,15032,16363,15031,16362,17696,17697,16361,15030,16360,17698,16367,17691,15036,16366,17692,15035,16365,15034,17693,15033,17694,16364,17690,15039,16369,15038,15037,16368,17699,17662,16330,17663,17664,17665,16334,15003,16333,15002,17660,16332,15001,16331,15000,17661,15007,16338,15006,16337,15005,16336,16335,15004,17666,17667,15009,17668,17669,16339,15008,16341,15010,17673,17674,16340,17675,17676,15014,16345,17670,15013,16344,15012,16343,17671,17672,15011,16342,15018,16349,16348,15017,16347,15016,15015,16346,17677,17678,17679,15019,17640,17641,17642,17643,16312,16311,16310,17648,16316,17649,16315,16314,16313,17644,16319,17645,17646,16318,16317,17647,17651,17652,17653,17654,16323,16322,16321,16320,17650,16327,17659,16326,16325,16324,17655,17656,17657,16329,16328,17658,17620,17621,17626,17627,17628,17629,17622,17623,17624,17625,17630,17631,17632,16301,16300,17637,16305,16304,17638,17639,16303,16302,17633,16309,17634,16308,17635,16307,17636,16306,700,701,702,703,704,705,706,707,708,15186,709,15185,15184,15183,15189,15188,15187,15182,15181,15180,710,711,712,713,714,715,716,717,718,719,15197,15196,15195,15194,15199,15198,15193,15192,15191,15190,720,721,722,723,724,725,726,727,728,729,16495,15164,15163,16494,16493,15162,16492,15161,16499,15168,16498,15167,15166,16497,16496,15165,15160,16491,16490,730,731,732,733,734,735,736,15169,737,738,739,15175,15174,15173,15172,15179,15178,7710,15177,15176,15171,15170,7709,7708,740,741,742,743,744,745,7701,7700,746,747,7703,748,7702,7705,749,7704,7707,7706,7721,7720,7719,750,751,752,753,754,755,756,7712,7711,757,7714,758,759,7713,7716,7715,7718,7717,7730,6401,7732,6400,7731,760,761,762,763,764,765,766,767,7723,7722,768,7725,769,7724,7727,7726,7729,7728,7741,6410,7740,7743,6412,6411,7742,770,771,772,773,774,775,776,777,778,7734,6403,7733,6402,779,6405,7736,7735,6404,7738,6407,7737,6406,6409,7739,6408,7750,6421,7752,7751,6420,7754,6423,7753,6422,780,781,782,783,784,785,786,787,788,6414,7745,789,6413,7744,6416,7747,6415,7746,6418,7749,6417,7748,6419,6430,7761,7760,6432,5100,7763,7762,5101,6431,5102,6434,7765,6433,7764,5103,790,791,792,793,794,795,796,797,798,799,7756,6425,7755,6424,6427,7758,7757,6426,6429,7759,6428,7770,6441,7772,5110,7771,6440,7774,5111,6443,7773,5112,6442,5113,6445,7776,7775,5114,6444,5104,7767,6436,7766,5105,6435,7769,6438,5106,7768,6437,5107,5108,6439,5109,6450,7781,7780,6452,5120,7783,7782,6451,5121,7785,6454,5122,7784,5123,6453,6456,7787,5124,6455,7786,5125,6447,5115,7778,7777,5116,6446,6449,5117,5118,7779,6448,5119,7792,6461,6460,5130,7791,7794,5131,6463,6462,5132,7793,6465,7796,5133,5134,7795,6464,6467,5135,7798,7797,5136,6466,7790,5126,7789,6458,6457,5127,7788,5128,6459,5129,6472,5140,6471,5141,5142,6474,6473,17720,5143,5144,6476,5145,6475,5146,6478,6477,5147,6470,17729,5137,17725,6469,5138,6468,17726,7799,17727,5139,17728,17721,17722,17723,17724,5151,6483,6482,5152,5153,6485,17730,5154,6484,17731,6487,16400,5155,6486,5156,5157,6489,6488,5158,6481,5150,6480,16409,5148,17736,16404,5149,17737,16403,6479,16402,17738,16401,17739,16408,17732,16407,17733,16406,17734,16405,17735,5162,6494,5163,6493,6496,5164,6495,5165,5166,6498,5167,6497,5168,5169,6499,6490,5160,6492,5161,6491,17707,17708,17709,17703,5159,17704,17705,17706,17700,17701,17702,5173,5174,5175,5176,5177,5178,5179,5170,5171,5172,17718,17719,17714,17715,17716,17717,17710,17711,17712,17713,5184,5185,5186,5187,5188,5189,5180,5181,5182,5183,5195,5196,5197,5198,5199,5190,5191,5192,5193,5194,16473,15142,16472,15141,16471,15140,16470,15146,16477,15145,16476,16475,15144,15143,16474,15149,16479,15148,16478,15147,16484,15153,15152,16483,16482,15151,15150,16481,16488,15157,15156,16487,16486,15155,15154,16485,16480,15159,16489,15158,15120,16451,16450,15124,16455,16454,15123,16453,15122,16452,15121,16459,15128,16458,15127,15126,16457,15125,16456,15129,16462,15131,15130,16461,16460,15135,16466,16465,15134,16464,15133,15132,16463,15139,15138,16469,16468,15137,15136,16467,17761,17762,17763,17764,16433,15102,15101,16432,15100,16431,17760,16430,16437,17769,15106,16436,15105,15104,16435,16434,15103,17765,15109,17766,16439,17767,15108,17768,15107,16438,16440,16444,15113,16443,15112,15111,16442,15110,16441,16448,15117,15116,16447,16446,15115,16445,15114,15119,15118,16449,17740,17741,17742,16411,16410,17747,16415,17748,16414,17749,16413,16412,16419,17743,16418,17744,17745,16417,17746,16416,17750,17751,17752,17753,16422,16421,16420,17758,16426,17759,16425,16424,16423,17754,17755,16429,17756,16428,16427,17757,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,7808,7807,7809,840,841,842,843,844,7800,845,846,7802,847,7801,848,7804,7803,849,7806,7805,15285,15284,15283,15282,15289,15288,7820,15287,15286,15281,15280,7819,7818,850,851,852,853,854,855,7811,856,7810,7813,857,858,7812,7815,859,7814,7817,7816,15296,15295,15294,15293,15299,6500,7831,15298,15297,7830,15292,15291,15290,7829,860,861,862,863,864,865,866,7822,7821) OR userid in (867,868,7824,869,7823,7826,7825,7828,7827,7840,6511,7842,6510,7841,870,6509,871,872,873,874,875,876,7833,877,6502,878,7832,6501,7835,6504,879,6503,7834,6506,7837,7836,6505,7839,6508,6507,7838,6520,7851,7850,6522,7853,6521,7852,880,881,882,883,884,885,886,887,7844,6513,888,7843,6512,889,6515,7846,6514,7845,7848,6517,6516,7847,6519,7849,6518,7860,7862,6531,5200,6530,7861,7864,6533,5201,7863,6532,5202,890,891,892,893,894,895,896,897,898,7855,6524,899,6523,7854,7857,6526,6525,7856,6528,7859,7858,6527,6529,6540,7871,7870,7873,6542,5210,7872,6541,5211,5212,6544,7875,5213,7874,6543,6535,5203,7866,7865,5204,6534,7868,5205,6537,6536,5206,7867,6539,5207,6538,7869,5208,5209,7880,7882,6551,6550,7881,5220,7884,6553,5221,7883,5222,6552,5223,6555,7886,6554,5224,7885,5214,7877,6546,5215,7876,6545,5216,6548,7879,5217,7878,6547,5218,6549,5219,6560,7891,7890,6562,7893,5230,6561,5231,7892,6564,5232,7895,7894,5233,6563,6566,7897,5234,6565,7896,5235,7888,5225,6557,5226,7887,6556,5227,6559,6558,7889,5228,5229,6571,6570,5240,6573,5241,6572,5242,6575,5243,5244,6574,6577,5245,6576,5246,6568,7899,5236,7898,5237,6567,5238,5239,6569,6582,5250,5251,6581,5252,6584,5253,6583,6586,5254,6585,5255,6588,5256,5257,6587,6580,6579,5247,5248,6578,5249,6593,5261,5262,6592,6595,5263,6594,5264,16510,6597,5265,5266,6596,6599,5267,5268,6598,6591,5260,6590,16519,16514,5258,16513,6589,5259,16512,16511,16518,16517,16516,16515,5272,5273,5274,5275,5276,16521,16520,5277,5278,5279,5270,5271,16525,5269,16524,16523,16522,16529,16528,16527,16526,5283,5284,5285,5286,5287,5288,5289,5280,5281,5282,5294,5295,5296,5297,5298,5299,5290,5291,5292,5293,16509,16508,16503,16502,16501,16500,16507,16506,16505,16504,16594,15263,16593,15262,15261,16592,15260,16591,15267,16598,16597,15266,16596,15265,16595,15264,16590,15269,15268,16599,15274,15273,15272,15271,15278,15277,15276,15275,15270,15279,15241,16572,16571,15240,16570,15245,16576,16575,15244,16574,15243,15242,16573,15249,15248,16579,16578,15247,16577,15246,16583,15252,16582,15251,16581,15250,16580,16587,15256,16586,15255,15254,16585,15253,16584,15259,16589,15258,16588,15257,16550,16554,15223,16553,15222,16552,15221,15220,16551,16558,15227,16557,15226,16556,15225,15224,16555,15229,16559,15228,16561,15230,16560,15234,16565,16564,15233,16563,15232,16562,15231,15238,16569,16568,15237,15236,16567,16566,15235,15239,16532,15201,16531,15200,16530,16536,15205,15204,16535,16534,15203,16533,15202,15209,16539,15208,16538,15207,16537,15206,16543,15212,16542,15211,15210,16541,16540,16547,15216,15215,16546,900,16545,901,15214,902,15213,16544,903,904,15219,16549,15218,905,16548,906,15217,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,7907,7906,7909,7908,940,941,942,943,944,7901,945,946,7900,947,7903,948,7902,7905,949,7904,14096,14097,14094,14095,14098,14099,14092,14093,14090,14091,7918,7917,7919,950,951,952,953,954,7910,955,956,7912,957,7911,958,7914,7913,959,7916,7915,7930,7929,7928,960,961,962,963,964,965,7921,7920,966,967,7923,7922,968,7925,969,7924,7927,7926,14074,14075,14072,14073,14078,14079,6610,14076,7941,14077,7940,14070,14071,6609,7939,6608,970,971,972,973,974,975,6601,976,7932,977,7931,6600,6603,7934,978,6602,7933,979,6605,7936,7935,6604,6607,7938,6606,7937,14085,14086,14083,14084,7950,14089,6621,7952,14087,6620,7951,14088,14081,14082,14080,980,6619,981,982,983,984,985,986,7943,987,6612,988,7942,6611,989,6614,7945,6613,7944,7947,6616,6615,7946,6618,7949,7948,6617,7961,6630,7960,6632,7963,5300,7962,5301,6631,990,991,992,993,994,995,996,997,998,6623,7954,6622,999,7953,6625,7956,7955,6624,7958,6627,7957,6626,6629,7959,6628,7970,6641,7972,5310,7971,6640,7974,6643,5311,5312,7973,6642,6634,7965,5302,7964,5303,6633,5304,6636,7967,7966,5305,6635,5306,6638,7969,5307,6637,7968,5308,6639,5309,6650,7981,7980,6652,5320,7983,5321,6651,7982,5322,6654,7985,5323,6653,7984,7976,6645,5313,7975,5314,6644,6647,7978,5315,5316,7977,6646,6649,5317,7979,6648,5318,5319,7990,6661,7992,6660,5330,7991,6663,4000,7994,5331,4001,5332,6662,7993,7996,6665,4002,5333,4003,5334,7995,6664,6656,5324,7987,7986,6655,5325,7989,6658,5326,7988,5327,6657,5328,5329,6659,6670,6672,5340,5341,6671,4010,4011,5342,6674,5343,4012,6673,5344,4013,6676,5345,6675,4014,5335,7998,6667,4004,5336,6666,7997,4005,5337,4006,6669,6668,4007,5338,7999,4008,5339,4009,6681,6680,5350,6683,5351,4020,5352,4021,6682,4022,5353,6685,6684,4023,5354,5355,4024,6687,6686,4025,5356,4015,5346,6678,4016,6677,5347,4017,5348,4018,6679,5349,4019,5360,6692,4030,5361,6691,5362,4031,6694,5363,6693,4032,4033,5364,6696,6695,4034,5365,4035,6698,5366,4036,6697,5367,6690,6689,5357,4026,4027,5358,6688,5359,4028,4029,4040,5371,4041,5372,5373,4042,4043,5374,5375,4044,5376,4045,4046,5377,4047,5378,5370,4037,5368,6699,4038,5369,4039,4051,5382,4052,5383,4053,5384,4054,5385,15300,16631,5386,4055,5387,16630,4056,4057,5388,5389,4058,5380,4050,5381,15309,4048,5379,16635,15304,4049,16634,15303,15302,16633,16632,15301,16639,15308,15307,16638,15306,16637,16636,15305,4062,5393,5394,4063,4064,5395,4065,5396,5397,15311,16642,4066,16641,5398) OR userid in (4067,15310,16640,4068,5399,4069,5390,4060,5391,4061,5392,16646,15315,4059,15314,16645,16644,15313,15312,16643,15319,16649,15318,15317,16648,15316,16647,4073,4074,4075,4076,4077,4078,4079,4070,4071,4072,16619,16618,16613,16612,16611,16610,16617,16616,16615,16614,4084,4085,4086,4087,16620,4088,4089,4080,4081,4082,4083,16629,16624,16623,16622,16621,16628,16627,16626,16625,4095,4096,4097,4098,4099,4090,4091,4092,4093,4094,16609,16608,16607,16602,16601,16600,16606,16605,16604,16603,15384,14052,15383,14053,15382,14050,15381,14051,15388,14056,14057,15387,15386,14054,14055,15385,15380,14058,15389,14059,15395,14063,14064,15394,15393,14061,14062,15392,14067,15399,15398,14068,15397,14065,14066,15396,15391,15390,14060,14069,16693,15362,14030,15361,16692,14031,15360,16691,16690,15366,14034,16697,15365,14035,16696,16695,14032,15364,16694,14033,15363,14038,15369,14039,15368,16699,14036,14037,15367,16698,15373,14041,15372,14042,15371,14040,15370,15377,14045,15376,14046,14043,15375,14044,15374,14049,15379,14047,15378,14048,15340,16671,16670,16675,14012,15344,15343,16674,14013,15342,14010,16673,14011,16672,15341,15348,14016,16679,14017,16678,15347,15346,16677,14014,16676,14015,15345,14018,15349,14019,15351,16682,16681,15350,14020,16680,14023,15355,16686,14024,15354,16685,16684,15353,14021,15352,16683,14022,14027,15359,16689,15358,14028,15357,16688,14025,15356,16687,14026,14029,15322,16653,16652,15321,15320,16651,16650,16657,15326,16656,15325,16655,15324,15323,16654,15329,15328,16659,15327,16658,16660,14001,16664,15333,15332,16663,14002,15331,16662,16661,14000,15330,15337,16668,14005,16667,14006,15336,15335,14003,16666,14004,15334,16665,14009,15339,14007,16669,15338,14008,6708,6707,6709,6700,6702,6701,6704,6703,6706,6705,6720,6719,6718,6711,6710,6713,6712,6715,6714,6717,6716,14195,14196,14193,14194,14199,14197,6731,5400,6730,14198,14191,14192,14190,6729,6722,6721,6724,6723,6726,6725,6728,6727,6740,6742,5410,6741,5411,5409,5401,6733,5402,6732,6735,5403,5404,6734,5405,6737,6736,5406,6739,5407,5408,6738,6751,6750,5420,6753,5421,5422,6752,5412,6744,6743,5413,5414,6746,6745,5415,6748,5416,6747,5417,5418,6749,5419,6760,5430,6762,6761,5431,4100,4101,5432,6764,5433,4102,6763,16808,16807,16806,16805,16809,5423,6755,16800,5424,6754,5425,6757,5426,6756,5427,6759,16804,6758,5428,16803,16802,5429,16801,6771,6770,5440,4110,5441,6773,6772,4111,5442,4112,6775,5443,4113,5444,6774,5434,6766,4103,5435,4104,6765,5436,4105,6768,6767,4106,5437,4107,5438,5439,6769,4108,4109,6780,5450,6782,6781,5451,4120,4121,6784,5452,5453,6783,4122,4123,5454,6786,4124,5455,6785,4114,6777,5445,5446,4115,6776,6779,5447,4116,6778,5448,4117,5449,4118,4119,6791,6790,5460,5461,4130,6793,4131,6792,5462,6795,5463,4132,6794,5464,4133,6797,4134,5465,5466,4135,6796,4125,6788,5456,6787,5457,4126,4127,5458,6789,5459,4128,4129,5470,5471,4140,5472,4141,4142,5473,5474,4143,5475,4144,5476,4145,4146,5477,6799,4136,5467,6798,4137,5468,4138,5469,4139,4150,5481,5482,4151,4152,5483,5484,4153,5485,4154,5486,4155,4156,5487,5488,4157,5480,4147,5478,4148,5479,4149,5492,4161,5493,4162,4163,5494,4164,5495,4165,5496,4166,5497,4167,5498,5499,4168,5490,5491,4160,5489,4158,4159,4172,4173,4174,4175,16752,15421,4176,4177,16751,15420,4178,16750,4179,4170,4171,4169,15425,16756,16755,15424,16754,15423,15422,16753,15429,16759,15428,15427,16758,16757,15426,4183,4184,4185,4186,15432,16763,14100,4187,16762,14101,4188,15431,16761,15430,4189,16760,4180,4181,4182,15436,16767,14104,15435,14105,16766,16765,15434,14102,16764,14103,15433,14108,15439,14109,16769,15438,14106,14107,15437,16768,4194,4195,4196,4197,4198,16730,4199,4190,4191,4192,4193,15409,16739,15408,15403,16734,15402,16733,16732,15401,16731,15400,15407,16738,16737,15406,16736,15405,16735,15404,15410,16741,16740,15419,16745,15414,16744,15413,16743,15412,15411,16742,15418,16749,15417,16748,16747,15416,16746,15415,16719,16718,16717,16712,16711,16710,16716,16715,16714,16713,16729,16728,16723,16722,16721,16720,16727,16726,16725,16724,16709,16708,16707,16706,16701,16700,16705,16704,16703,16702,14173,14174,14171,14172,14177,14178,14175,14176,14170,14179,14184,14185,14182,14183,14188,14189,14186,14187,14180,14181,14151,15483,14152,15482,15481,14150,15480,14155,15487,14156,15486,15485,14153,14154,15484,14159,15489,14157,14158,15488,14162,15494,14163,15493,14160,15492,15491,14161,15498,14166,14167,15497,14164,15496,14165,15495,15490,14168,15499,14169,15461,16792,14130,15460,16791,16790,16796,15465,14133,16795,15464,14134,14131,16794,15463,14132,16793,15462,14137,15469,14138,16799,15468,16798,15467,14135,15466,14136,16797,14139,15472,14140,15471,14141,15470,14144,15476,15475,14145,15474,14142,14143,15473,14148,15479,14149,15478,14146,14147,15477,16770,16774,15443,14111,15442,16773,14112,16772,15441,16771,15440,14110,16778,15447,14115,14116,15446,16777,14113,16776,15445,14114,16775,15444,14119,15449,14117,16779,15448,14118,16781,15450,16780,15454,16785,14122,16784,15453,14123,16783,14120,15452,14121,16782,15451,14126,15458,16789,14127,15457,16788,16787,15456,14124,15455,16786,14125,14128,15459,14129,6807,6806,6809,6808,6801,6800,6803,6802,6805,6804,6818,6817,6819,6810,6812,6811,6814,6813,6816,6815,6830,6829,6828,6821,6820,6823,6822,6825,6824,6827,6826,6841,5510,6840,5508,5509,6839,6832,5500,6831,5501,5502,6834,6833,5503,6836,5504,6835,5505,5506,6838,5507,6837,6850,5520,6852,6851,5521,5519,6843,5511,5512,6842,5513,6845,5514,6844,6847,5515,5516,6846,6849,5517,6848,5518,6861,6860,5530,4200,6863,5531,4201,6862,5532,6854,5522,6853,5523,6856,5524,6855,5525,6858,5526,6857,5527,5528,6859,5529,6870,5540,6872) OR userid in (5541,6871,4210,5542,4211,6874,5543,6873,4212,16918,16917,16916,16915,16919,16910,4202,5533,6865,4203,5534,6864,4204,6867,5535,4205,5536,6866,6869,16914,5537,4206,16913,5538,4207,6868,4208,5539,16912,16911,4209,6881,5550,6880,4220,5551,6883,6882,5552,4221,6885,4222,5553,4223,6884,5554,16929,16928,16927,16926,5544,6876,16921,4213,6875,4214,16920,5545,4215,5546,6878,5547,4216,6877,5548,16925,4217,6879,4218,16924,5549,4219,16923,16922,6890,5560,6892,6891,5561,4230,4231,6894,5562,5563,4232,6893,6896,4233,5564,5565,4234,6895,5555,4224,6887,5556,6886,4225,6889,5557,4226,6888,5558,4227,4228,5559,4229,5570,5571,4240,5572,4241,5573,4242,5574,4243,5575,4244,4245,5576,16907,16906,16905,16904,16909,16908,6898,5566,4235,4236,6897,5567,4237,5568,4238,6899,5569,16903,4239,16902,16901,16900,5580,4250,5581,4251,5582,4252,5583,4253,5584,5585,4254,5586,4255,4256,5587,4246,5577,4247,5578,5579,4248,4249,4260,5591,4261,5592,4262,5593,4263,5594,5595,4264,4265,5596,5597,4266,5598,4267,5590,5588,4257,5589,4258,4259,4271,4272,4273,4274,4275,4276,4277,4278,4270,5599,4268,4269,4282,4283,4284,4285,4286,4287,4288,4289,4280,4281,4279,4293,4294,4295,4296,14210,16873,15542,4297,4298,16872,14211,15541,16871,4299,15540,16870,4290,4291,4292,15546,14214,16877,16876,15545,14215,14212,16875,15544,16874,15543,14213,14218,15549,14219,16879,14216,15548,15547,14217,16878,16880,16884,15553,14221,15552,14222,16883,16882,15551,15550,14220,16881,16888,14225,15557,16887,15556,14226,16886,15555,14223,15554,14224,16885,14229,15559,14227,16889,14228,15558,15520,16851,16850,15529,16855,15524,16854,15523,16853,15522,16852,15521,15528,16859,16858,15527,15526,16857,15525,16856,15531,16862,16861,14200,15530,16860,14209,16866,15535,14203,16865,15534,14204,14201,16864,15533,15532,16863,14202,14207,15539,14208,16869,15538,15537,14205,16868,16867,15536,14206,15509,16839,15508,15507,16838,15502,16833,15501,16832,15500,16831,16830,16837,15506,16836,15505,15504,16835,16834,15503,16840,15519,15518,16849,16844,15513,15512,16843,16842,15511,15510,16841,16848,15517,16847,15516,15515,16846,15514,16845,16819,16818,16817,16816,16811,16810,16815,16814,16813,16812,16829,16828,16827,16822,16821,16820,16826,16825,16824,16823,14295,14293,14298,14299,14296,14297,14272,14273,14270,14271,14276,14277,14274,14275,14278,14279,14283,14284,14281,14282,14287,14285,14280,15582,14250,15581,14251,15580,14254,15586,14255,15585,14252,15584,14253,15583,14258,14259,15589,15588,14256,15587,14257,15593,14261,14262,15592,15591,14260,15590,14265,15597,15596,14266,14263,15595,15594,14264,14269,15599,14267,15598,14268,16891,15560,16890,16895,15564,14232,14233,15563,16894,15562,16893,14230,16892,15561,14231,15568,16899,14236,16898,14237,15567,16897,15566,14234,15565,16896,14235,14238,14239,15569,15571,15570,14240,15575,14243,15574,14244,15573,14241,15572,14242,15579,14247,15578,14248,15577,14245,14246,15576,14249,6906,6905,6908,6907,6909,6900,6902,6901,6904,6903,6917,6916,6919,6918,6911,6910,6913,6912,6915,6914,6928,6927,6929,6920,6922,6921,6924,6923,6926,6925,6940,6939,5607,6938,5608,5609,6931,6930,5600,6933,5601,6932,5602,6935,5603,6934,5604,5605,6937,5606,6936,6951,6950,5620,5618,5619,6949,5610,6942,5611,6941,5612,6944,6943,5613,5614,6946,6945,5615,5616,6948,6947,5617,6960,5630,6962,6961,4300,5631,5629,5621,6953,5622,6952,6955,5623,5624,6954,6957,5625,5626,6956,6959,5627,5628,6958,6971,5640,6970,6973,5641,4310,5642,6972,4311,4309,6964,5632,4301,5633,6963,4302,4303,5634,6966,5635,6965,4304,4305,5636,6968,4306,6967,5637,4307,5638,5639,4308,6969,6980,6982,5650,5651,4320,6981,4321,6984,5652,4322,5653,6983,4312,6975,5643,6974,5644,4313,6977,5645,4314,6976,4315,5646,5647,6979,4316,4317,5648,6978,5649,4318,4319,6991,6990,5660,4330,5661,6993,5662,4331,6992,4332,6995,5663,6994,4333,5664,3002,3001,3000,15708,15707,15706,15705,15709,6986,4323,5654,15700,4324,5655,6985,6988,5656,4325,5657,4326,6987,15704,5658,4327,5659,6989,15703,4328,15702,4329,15701,5670,5671,4340,5672,4341,5673,4342,4343,5674,5675,4344,3013,3012,3011,3010,15719,15718,3009,3008,15717,15716,3007,3006,3005,3004,3003,4334,5665,15711,6997,4335,5666,15710,6996,6999,5667,4336,4337,5668,6998,5669,15715,4338,15714,4339,15713,15712,5680,4350,5681,5682,4351,5683,4352,5684,4353,4354,5685,5686,4355,3024,3023,3022,3021,3020,3019,3018,3017,3016,3015,3014,5676,4345,5677,4346,5678,4347,4348,5679,4349,5690,4360,5691,5692,4361,5693,4362,4363,5694,4364,5695,5696,4365,4366,5697,3035,3034,3033,3032,3031,3030,3029,3028,3027,3026,3025,5687,4356,5688,4357,5689,4358,4359,4370,4371,4372,4373,4374,4375,4376,4377,3046,3045,3044,3043,3042,3041,3040,3039,3038,3037,3036,5698,4367,4368,4369,4381,4382,4383,4384,4385,4386,4387,4388,3057,3056,3055,3054,3053,3052,3051,4380,3050,3049,3048,3047,4378,4379,3060,4392,4393,4394,4395,4396,4397,4398,4399,3068,3067,3066,3065,3064,3063,4390,3062,3061,4391,3059,3058,4389,3071,3070,3079,3078,3077,3076,3075,3074,3073,3072,3069,3082,16990,3081,3080,13000,15663,14331,16994,16993,15662,13001,14332,16992,15661,15660,14330,16991,3089,3088,3087,3086,3085,3084,3083,14335,13004,15667,16998,13005,15666,16997,14336,15665,13002,16996,14333,13003,15664,14334,16995,13008,14339,13009,13006,15669,14337,16999,13007,15668,14338,15670,3093,3092,3091,3090,14342,15674,13011,15673,13012,14343,14340,15672,13010,14341,15671,3099,3098,3097,3096,3095,3094,15678,14346,13015,13016,14347,15677,13013,15676,14344,14345,13014,15675,13019,14348,13017,13018,15679) OR userid in (14349,15641,16972,16971,15640,14310,16970,14319,16976,15645,14313,15644,16975,14314,16974,15643,14311,16973,15642,14312,15649,14317,14318,16979,15648,15647,14315,16978,16977,14316,15646,16983,14320,15652,15651,16982,14321,16981,15650,16980,14324,15656,16987,15655,16986,14325,16985,14322,15654,16984,15653,14323,14328,14329,15659,14326,15658,16989,16988,15657,14327,16950,15629,16959,15628,15623,16954,16953,15622,16952,15621,16951,15620,15627,16958,15626,16957,16956,15625,15624,16955,16961,15630,16960,14308,14309,15639,14302,15634,16965,15633,14303,16964,16963,14300,15632,14301,15631,16962,16969,15638,14306,14307,16968,15637,15636,16967,14304,16966,14305,15635,15609,16939,15608,16938,15607,15606,16937,15601,16932,15600,16931,16930,16936,15605,15604,16935,15603,16934,15602,16933,15619,16949,15618,16948,15617,15612,16943,15611,16942,16941,15610,16940,16947,15616,16946,15615,15614,16945,15613,16944,13084,13085,13082,13083,13088,13089,13086,13087,13080,13081,13095,13096,13093,13094,13099,13097,13098,13091,13092,13090,13062,14393,13063,14394,14391,13060,13061,14392,13066,14397,13067,14398,13064,14395,13065,14396,14390,14399,13068,13069,13073,13074,13071,13072,13077,13078,13075,13076,13070,13079,14371,13040,14372,13041,14370,14375,13044,14376,13045,14373,13042,14374,13043,13048,14379,13049,14377,13046,14378,13047,13051,14382,13052,14383,14380,14381,13050,14386,13055,13056,14387,14384,13053,14385,13054,13059,13057,14388,13058,14389,15681,14350,15680,15685,13022,14353,13023,15684,14354,13020,15683,14351,15682,13021,14352,13026,14357,15689,15688,13027,14358,13024,15687,14355,13025,15686,14356,13028,14359,13029,14360,15692,15691,13030,14361,15690,14364,13033,15696,13034,14365,15695,13031,14362,15694,15693,13032,14363,13037,14368,14369,15699,13038,13035,14366,15698,13036,14367,15697,13039,5706,5707,5708,5709,5700,5701,5702,5703,5704,5705,5717,5718,5719,5710,5711,5712,5713,5714,5715,5716,5730,5728,5729,5720,5721,5722,5723,5724,5725,5726,5727,5740,5741,4410,4408,5739,4409,4400,5731,4401,5732,4402,5733,5734,4403,4404,5735,4405,5736,4406,5737,4407,5738,5750,5751,4420,5752,4421,4419,5742,4411,4412,5743,4413,5744,4414,5745,4415,5746,4416,5747,5748,4417,4418,5749,5760,5761,4430,4431,5762,5763,4432,3101,3100,5753,4422,5754,4423,4424,5755,4425,5756,5757,4426,4427,5758,4428,5759,4429,5770,5771,4440,5772,4441,4442,5773,5774,4443,3112,3111,3110,3109,3108,3107,3106,3105,3104,3103,3102,4433,5764,4434,5765,4435,5766,5767,4436,5768,4437,5769,4438,4439,5780,4450,5781,4451,5782,4452,5783,5784,4453,5785,4454,3123,3122,3121,3120,15829,15828,3119,15827,3118,3117,15826,3116,3115,3114,3113,4444,5775,15821,15820,5776,4445,4446,5777,5778,4447,4448,15825,5779,15824,4449,15823,15822,5790,4460,5791,4461,5792,4462,5793,5794,4463,5795,4464,4465,5796,3134,3133,3132,3131,3130,14508,14509,15839,15838,3129,14506,3128,14507,15837,3127,3126,3125,3124,4455,14500,5786,15832,15831,4456,5787,14501,4457,15830,5788,5789,4458,14504,4459,15836,14505,15835,14502,15834,15833,14503,4470,4471,4472,4473,4474,4475,4476,3145,3144,3143,3142,3141,3140,15807,15806,15805,15804,3139,3138,3137,15809,3136,15808,3135,5797,4466,4467,5798,4468,5799,4469,15803,15802,15801,15800,4480,4481,4482,4483,4484,4485,4486,4487,3156,3155,3154,3153,3152,3151,3150,15818,15817,15816,15815,3149,3148,3147,15819,3146,4477,15810,4478,4479,15814,15813,15812,15811,4491,4492,4493,4494,4495,4496,4497,4498,3167,3166,3165,3164,3163,3162,3161,3160,4490,3159,3158,3157,4488,4489,3170,3178,3177,3176,3175,3174,3173,3172,3171,3169,3168,4499,3181,3180,3189,3188,3187,3186,3185,3184,3183,3182,3179,3192,3191,3190,3199,3198,3197,3196,3195,3194,3193,15780,14452,15784,13121,13122,15783,14453,14450,15782,14451,15781,13120,14456,15788,13125,15787,14457,13126,15786,13123,14454,13124,14455,15785,13129,14458,13127,14459,15789,13128,15791,14460,15790,15795,13132,14463,15794,14464,13133,15793,14461,13130,14462,15792,13131,13136,15799,14467,13137,14468,15798,13134,15797,14465,15796,13135,14466,14469,13138,13139,15762,14430,15761,14431,13100,15760,13109,15766,13103,14434,14435,13104,15765,14432,13101,15764,15763,14433,13102,14438,13107,13108,14439,15769,13105,15768,14436,15767,14437,13106,13110,15773,14441,13111,14442,15772,15771,15770,14440,14445,13114,15777,15776,13115,14446,13112,15775,14443,13113,14444,15774,13118,14449,13119,15779,14447,13116,14448,15778,13117,15740,14418,14419,15749,15744,14412,14413,15743,14410,15742,15741,14411,15748,14416,15747,14417,14414,15746,15745,14415,15751,14420,15750,14429,14423,15755,14424,15754,15753,14421,14422,15752,15759,14427,15758,14428,14425,15757,14426,15756,15729,15728,15727,15722,15721,15720,15726,15725,15724,15723,14409,14407,15739,14408,15738,15733,14401,14402,15732,15731,15730,14400,14405,15737,14406,15736,15735,14403,15734,14404,13183,13184,13181,13182,13187,13188,13185,13186,13180,13189,13194,13195,13192,13193,13198,13199,13196,13197,13190,13191,13161,14492,14493,13162,14490,13160,14491,14496,13165,14497,13166,13163,14494,14495,13164,13169,13167,14498,14499,13168,13172,13173,13170,13171,13176,13177,13174,13175,13178,13179,14470,14471,13140,14474,13143,13144,14475,13141,14472,14473,13142,13147,14478,14479,13148,13145,14476,14477,13146,13149,14481,13150,13151,14482,14480,13154,14485,13155,14486,13152,14483,13153,14484,5805,5806,5807,5808,5809,14489,13158,13159,13156,14487,14488,5800,13157,5801,5802,5803,5804,5816,5817,5818,5819,5810,5811,5812,5813,5814,5815,5827,5828,5829,5820,5821,5822,5823,5824,5825,5826,5840,4507,5838,4508,5839,4509,5830,5831,4500,5832,4501,5833,4502,4503,5834,4504,5835,5836,4505,5837,4506,5850,4520,5851,4518,5849,4519,5841,4510,4511,5842,5843,4512,4513,5844,5845,4514,5846) OR userid in (4515,5847,4516,5848,4517,5860,4530,5861,4531,5862,3200,4529,4521,5852,5853,4522,4523,5854,5855,4524,4525,5856,5857,4526,5858,4527,5859,4528,5870,4540,5871,4541,5872,4542,5873,3211,3210,3208,3207,3206,3205,3204,3203,3202,3201,5863,4532,5864,4533,5865,4534,5866,4535,5867,4536,5868,4537,5869,4538,4539,3209,5880,4550,5881,4551,5882,5883,4552,5884,4553,3222,3221,3220,3219,3218,3217,3216,3215,3214,3213,3212,5874,4543,4544,5875,4545,5876,5877,4546,5878,4547,4548,5879,4549,5890,5891,4560,4561,5892,5893,4562,5894,4563,5895,4564,3233,3232,3231,3230,3229,3228,3227,3226,3225,3224,3223,5885,4554,4555,5886,5887,4556,5888,4557,5889,4558,4559,4570,4571,4572,4573,4574,4575,3244,3243,3242,3241,3240,15949,15948,3239,15947,3238,3237,3236,3235,3234,5896,15942,4565,5897,15941,4566,5898,15940,4567,4568,5899,4569,15946,15945,15944,15943,4580,4581,4582,4583,4584,4585,4586,3255,3254,3253,3252,3251,3250,15959,3249,15958,3248,3247,3246,3245,4576,15953,15952,4577,4578,15951,15950,4579,15957,15956,15955,15954,4590,4591,4592,4593,4594,4595,4596,4597,3266,3265,3264,3263,3262,3261,3260,15928,15927,15926,15925,3259,3258,3257,3256,15929,15920,4587,4588,4589,15924,15923,15922,15921,3277,3276,3275,3274,3273,3272,3271,3270,15939,15938,15937,15936,3269,3268,3267,15931,4598,15930,4599,15935,15934,15933,15932,3280,3288,3287,3286,3285,3284,3283,3282,3281,15906,15905,15904,15903,15909,15908,3279,3278,15907,15902,15901,15900,3291,3290,3299,3298,3297,3296,3295,3294,3293,3292,15917,15916,15915,15914,15919,3289,15918,15913,15912,15911,15910,13242,13243,13240,14572,13241,13246,13247,13244,13245,13248,13249,13250,13253,13254,13251,13252,13257,13258,13255,13256,13259,13220,15883,15882,13221,15881,15880,13224,15887,13225,15886,15885,13222,13223,15884,13228,13229,15889,13226,15888,13227,15890,15894,14562,13231,15893,13232,15892,15891,13230,15898,13235,15897,13236,13233,15896,15895,13234,13239,13237,15899,13238,15861,14530,15860,14539,13208,13209,13202,15865,14533,15864,14534,13203,13200,15863,14531,15862,14532,13201,13206,14537,15869,14538,13207,15868,15867,13204,14535,13205,15866,14536,15872,14540,14541,13210,15871,15870,13219,15876,14544,13213,15875,13214,14545,14542,15874,13211,13212,14543,15873,14548,13217,15879,14549,13218,15878,14546,13215,13216,14547,15877,14519,15849,14517,14518,15848,14511,15843,14512,15842,15841,14510,15840,15847,14515,14516,15846,14513,15845,15844,14514,15850,14528,14529,15859,15854,14522,14523,15853,14520,15852,15851,14521,15858,14526,14527,15857,15856,14524,14525,15855,13282,13283,13280,13281,13286,13287,13284,13285,13288,13289,13293,13294,13291,13292,13297,13298,13295,13296,13290,5904,5905,5906,5907,5908,5909,13299,5900,5901,5902,5903,13260,13261,13264,13265,13262,13263,5915,5916,5917,5918,5919,13268,13269,13266,5910,13267,5911,5912,5913,5914,13271,13272,13270,13275,13276,13273,13274,5926,5927,5928,5929,13279,13277,5920,5921,13278,5922,5923,5924,5925,4606,5937,5938,4607,4608,5939,4609,5930,5931,4600,4601,5932,4602,5933,4603,5934,5935,4604,4605,5936,5950,4617,5948,5949,4618,4619,5940,5941,4610,4611,5942,4612,5943,4613,5944,4614,5945,5946,4615,4616,5947,5960,4630,5961,4628,5959,4629,4620,5951,5952,4621,4622,5953,5954,4623,4624,5955,5956,4625,5957,4626,5958,4627,5970,5971,4640,5972,4641,3310,4639,3307,3306,3305,3304,3303,3302,3301,3300,5962,4631,5963,4632,5964,4633,5965,4634,5966,4635,4636,5967,5968,4637,3309,4638,3308,5969,5980,4650,5981,5982,4651,4652,5983,3321,3320,3318,3317,3316,3315,3314,3313,3312,3311,4642,5973,4643,5974,5975,4644,4645,5976,5977,4646,5978,4647,5979,4648,4649,3319,5990,5991,4660,4661,5992,5993,4662,5994,4663,3332,2001,2000,3331,3330,3329,3328,3327,3326,3325,3324,3323,3322,5984,4653,5985,4654,5986,4655,4656,5987,4657,5988,4658,5989,4659,4670,4671,4672,4673,4674,3343,2012,2011,3342,3341,2010,3340,2009,2008,3339,3338,2007,3337,2006,2005,3336,2004,3335,2003,3334,3333,2002,5995,4664,4665,5996,5997,4666,4667,5998,4668,5999,4669,4680,4681,4682,4683,4684,4685,2023,3354,3353,2022,3352,2021,3351,2020,3350,2019,2018,3349,3348,2017,3347,2016,2015,3346,3345,2014,3344,2013,4675,4676,4677,4678,4679,4690,4691,4692,4693,4694,4695,4696,2034,3365,2033,3364,3363,2032,2031,3362,3361,2030,3360,13408,13409,2029,13406,13407,2028,3359,2027,3358,2026,3357,2025,3356,2024,3355,13400,4686,13401,4687,4688,4689,13404,13405,13402,13403,3376,2045,2044,3375,3374,2043,3373,2042,2041,3372,2040,3371,3370,13419,13417,13418,2039,2038,3369,2037,3368,3367,2036,2035,3366,4697,13411,13412,4698,4699,13410,13415,13416,13413,13414,3387,2056,3386,2055,2054,3385,2053,3384,2052,3383,3382,2051,2050,3381,3380,2049,3379,2048,3378,2047,2046,3377,3390,2067,3398,3397,2066,2065,3396,3395,2064,2063,3394,2062,3393,2061,3392,3391,2060,2059,3389,2058,3388,2057,2070,2078,2077,2076,2075,2074,2073,2072,2071,2069,2068,3399,2081,2080,2089,2088,2087,2086,2085,2084,2083,2082,2079,2092,2091,2090,2099,2098,2097,2096,2095,2094,2093,13360,12031,13363,13364,12030,12033,13361,12032,13362,13367,12035,12034,13368,13365,12037,13366,12036,12039,12038,13369,13370,13371,12040,12042,13374,13375,12041,13372,12044,13373,12043,12046,13378,12045,13379,12048,13376,13377,12047,12049,13341,13342,12011,13340,12010,12013,13345,13346,12012,12015,13343,13344,12014,13349,12017,12016,13347,12019,13348,12018,13352,12020,13353,12022,13350,12021,13351,13356,12024,13357,12023,12026,13354,13355,12025,12028,12027,13358,13359,12029,15982,15981,13320,15980,13329) OR userid in (15986,13323,13324,15985,15984,13321,13322,15983,13327,15989,13328,15988,13325,15987,13326,15993,13330,15992,13331,15991,12000,15990,12009,12002,15997,13334,13335,12001,15996,13332,12004,15995,13333,15994,12003,12006,13338,13339,12005,12008,13336,15999,13337,12007,15998,15960,13309,13307,13308,15969,13301,15964,13302,15963,15962,13300,15961,15968,13305,15967,13306,13303,15966,13304,15965,15971,15970,13318,13319,15975,13312,15974,13313,13310,15973,15972,13311,13316,15979,15978,13317,15977,13314,13315,15976,12093,12092,12095,12094,12097,12096,12099,12098,12091,12090,12071,12070,12073,12072,12075,12074,12077,12076,12079,12078,12082,12081,12084,12083,12086,12085,12088,12087,12080,12089,13381,13382,12051,12050,13380,12053,13385,12052,13386,13383,12055,12054,13384,4705,4706,4707,4708,4709,13389,12057,12056,12059,13387,12058,13388,4700,4701,4702,4703,4704,13392,12060,13393,12062,13390,12061,13391,13396,12064,12063,13397,12066,13394,12065,13395,4716,4717,4718,4719,12068,12067,13398,4710,12069,13399,4711,4712,4713,4714,4715,4727,4728,4729,4720,4721,4722,4723,4724,4725,4726,4740,3406,4738,4739,3405,3404,3403,3402,3401,3400,4730,4731,4732,4733,4734,4735,3409,4736,3408,4737,3407,4750,4751,3420,3417,4749,3416,3415,3414,3413,3412,3411,3410,4741,4742,4743,4744,4745,4746,3419,4747,3418,4748,4760,4761,4762,3431,2100,3430,3428,3427,3426,3425,3424,3423,3422,3421,4752,4753,4754,4755,4756,4757,4758,3429,4759,4770,4771,4772,4773,2111,3442,3441,2110,3440,2108,3439,3438,2107,2106,3437,2105,3436,3435,2104,3434,2103,2102,3433,2101,3432,4763,4764,4765,4766,4767,4768,4769,2109,4780,4781,4782,4783,4784,3453,2122,2121,3452,2120,3451,3450,2119,3449,2118,3448,2117,2116,3447,2115,3446,3445,2114,2113,3444,2112,3443,4774,4775,4776,4777,4778,4779,4790,4791,4792,4793,4794,4795,2133,3464,2132,3463,2131,3462,2130,3461,3460,2129,3459,2128,2127,3458,3457,2126,2125,3456,2124,3455,2123,3454,4785,4786,4787,4788,4789,3475,2144,3474,2143,3473,2142,3472,2141,3471,2140,3470,2139,2138,3469,2137,3468,3467,2136,2135,3466,2134,3465,4796,4797,4798,4799,3486,2155,2154,3485,2153,3484,3483,2152,2151,3482,3481,2150,3480,13529,14858,13527,14859,2149,13528,3479,2148,3478,2147,2146,3477,2145,3476,13521,14852,13522,14853,14850,13520,14851,14856,13525,13526,14857,13523,14854,13524,14855,14860,3497,2166,2165,3496,2164,3495,2163,3494,2162,3493,2161,3492,2160,3491,3490,12208,12207,13538,14869,12209,13539,2159,3489,2158,2157,3488,2156,3487,13532,12200,14863,13533,14864,13530,12202,14861,13531,14862,12201,14867,13536,12204,13537,12203,14868,13534,12206,14865,13535,14866,12205,2177,2176,2175,2174,2173,2172,2171,2170,14838,13507,13508,14839,14836,13505,14837,13506,2169,2168,3499,13509,3498,2167,14830,14831,13500,14834,13503,14835,13504,14832,13501,14833,13502,2180,2188,2187,2186,2185,2184,2183,2182,2181,13518,14849,13519,13516,14847,13517,14848,2179,2178,13510,14841,13511,14842,14840,14845,13514,13515,14846,14843,13512,13513,14844,2191,2190,2199,2198,2197,2196,2195,2194,2193,2192,14816,14817,14814,14815,14818,2189,14819,14812,14813,14810,14811,14827,14828,14825,14826,14829,14820,14823,14824,14821,14822,14805,14806,14803,14804,14809,14807,14808,14801,14802,14800,13480,13481,12150,12152,13484,12151,13485,13482,12154,12153,13483,12156,13488,13489,12155,12158,13486,12157,13487,12159,13491,13492,12161,13490,12160,13495,12163,13496,12162,13493,12165,13494,12164,12167,13499,12166,12169,13497,13498,12168,14790,12130,13462,14793,13463,14794,14791,13460,12132,14792,13461,12131,14797,13466,12134,12133,13467,14798,12136,13464,14795,12135,14796,13465,12138,12137,13468,14799,13469,12139,13470,12141,13473,13474,12140,12143,13471,12142,13472,13477,12145,13478,12144,12147,13475,13476,12146,12149,12148,13479,13440,13441,12110,12119,12112,13444,13445,12111,12114,13442,12113,13443,13448,12116,12115,13449,13446,12118,12117,13447,13451,13452,12121,13450,12120,13455,12123,12122,13456,14787,13453,12125,13454,12124,13459,12127,12126,13457,14788,12129,14789,13458,12128,13428,13429,13422,13423,13420,13421,13426,13427,13424,13425,13430,12109,12108,13439,13433,12101,13434,12100,12103,13431,13432,12102,13437,12105,12104,13438,13435,12107,12106,13436,12192,12191,12194,12193,12196,12195,12198,12197,12190,4804,4805,4806,4807,4808,4809,12199,4800,4801,4802,4803,4815,4816,4817,4818,4819,4810,4811,4812,4813,4814,12170,12172,12171,12174,12173,12176,12175,4826,4827,4828,4829,12178,12177,4820,12179,4821,4822,4823,4824,4825,12181,12180,12183,12182,12185,12184,12187,12186,3505,4837,3504,4838,3503,4839,3502,3501,3500,12189,12188,4830,4831,4832,4833,3509,3508,4834,3507,4835,3506,4836,4850,3516,4848,4849,3515,3514,3513,3512,3511,3510,4840,4841,4842,4843,4844,3519,4845,3518,4846,4847,3517,4860,4861,3530,3527,4859,14904,14905,3526,3525,14902,3524,14903,3523,14908,3522,14909,14906,3521,14907,3520,4851,4852,4853,4854,4855,14900,4856,14901,4857,3529,3528,4858,4870,4871,4872,2210,3541,3540,2207,3538,2206,3537,3536,2205,2204,3535,3534,2203,3533,2202,2201,3532,2200,3531,4862,4863,4864,4865,4866,4867,4868,2209,4869,3539,2208,4880,4881,4882,4883,3552,2221,2220,3551,3550,3549,2218,2217,3548,3547,2216,3546,2215,3545,2214,2213,3544,3543,2212,2211,3542,4873,4874,4875,4876,4877,4878,4879,2219,4890,4891,4892,4893,4894,2232,3563,2231,3562,2230,3561,3560,2229,3559,2228,2227,3558,2226,3557,2225,3556,3555,2224,3554,2223,2222,3553,4884,4885,4886,4887,4888,4889,2243,3574,3573,2242,3572,2241,2240,3571,3570,2239,3569,2238,2237,3568,3567,2236,2235,3566,3565,2234,2233,3564,4895,4896,4897,4898,4899,2254,3585) OR userid in (3584,2253,3583,2252,2251,3582,2250,3581,3580,2249,2248,3579,2247,3578,3577,2246,2245,3576,3575,2244,3596,2265,2264,3595,2263,3594,2262,3593,2261,3592,2260,3591,3590,2259,3589,2258,2257,3588,2256,3587,3586,2255,14970,2276,2275,2274,2273,2272,2271,2270,12318,12317,13648,14979,13649,12319,2269,2268,3599,2267,3598,2266,3597,12310,14973,13642,14974,13643,14971,13640,12312,14972,12311,13641,14977,13646,12314,12313,14978,13647,13644,12316,14975,12315,13645,14976,14980,14981,13650,2287,2286,2285,2284,2283,2282,2281,2280,12329,12328,13659,2279,2278,2277,12321,13653,14984,12320,14985,13654,13651,14982,12323,14983,13652,12322,14988,12325,13657,12324,13658,14989,14986,12327,13655,13656,12326,14987,2290,2298,2297,2296,2295,2294,2293,2292,2291,14959,13628,13629,13626,14957,14958,13627,2289,2288,14951,13620,14952,13621,14950,13624,14955,14956,13625,13622,14953,14954,13623,13639,12307,12306,12309,13637,14968,13638,14969,12308,2299,13631,14962,14963,13632,12301,14960,14961,13630,12300,14966,13635,12303,13636,14967,12302,14964,13633,12305,14965,12304,13634,13606,14937,14938,13607,14935,13604,14936,13605,13608,14939,13609,14930,13602,14933,14934,13603,14931,13600,14932,13601,14948,13617,13618,14949,13615,14946,14947,13616,13619,14940,14941,13610,14944,13613,13614,14945,14942,13611,14943,13612,14915,14916,14913,14914,14919,14917,14918,14911,14912,14910,14926,14927,14924,14925,14928,14929,14922,14923,14920,14921,12271,12270,12273,12272,12275,12274,12277,12276,12279,12278,12280,12282,12281,12284,12283,12286,12285,12288,12287,12289,13580,12251,13583,13584,12250,12253,13581,13582,12252,12255,13587,13588,12254,12257,13585,13586,12256,12259,12258,13589,13590,13591,12260,13594,12262,12261,13595,12264,13592,13593,12263,13598,12266,13599,12265,13596,12268,13597,12267,12269,14892,13561,13562,14893,14890,12231,13560,14891,12230,13565,14896,12233,13566,14897,12232,14894,12235,13563,12234,13564,14895,13569,12237,12236,13567,14898,12239,12238,14899,13568,13572,12240,13573,13570,12242,12241,13571,12244,13576,13577,12243,13574,12246,13575,12245,12248,12247,13578,12249,13579,14870,14871,13540,12219,12218,13549,12211,14874,13543,14875,12210,13544,14872,12213,13541,14873,13542,12212,14878,13547,12215,13548,12214,14879,14876,13545,12217,14877,12216,13546,14881,13550,14882,13551,12220,14880,12229,12222,13554,14885,12221,14886,13555,14883,13552,12224,12223,14884,13553,13558,12226,14889,12225,13559,14887,12228,13556,12227,14888,13557,4903,4904,4905,4906,4907,4908,4909,4900,4901,4902,4914,4915,4916,4917,4918,4919,4910,4911,4912,4913,4925,4926,4927,4928,4929,4920,4921,4922,4923,4924,3604,4936,3603,4937,3602,4938,3601,4939,3600,4930,3609,4931,3608,4932,3607,4933,3606,4934,3605,4935,12291,12290,12293,12292,12295,12294,12297,12296,4947,3615,3614,4948,4949,3613,3612,3611,3610,12299,12298,4940,4941,4942,4943,3619,4944,3618,3617,4945,4946,3616,4960,4958,3626,3625,4959,3624,3623,3622,3621,3620,4950,4951,4952,4953,4954,3629,4955,3628,4956,4957,3627)) and messageid = $4 and timestamp = $5
2023-01-09 04:15:15 CST [1761621]: [2-1] user=user,db=dbname,app=Kingbase8 JDBC Driver,client=50.138.21.13DETAIL:  parameters: $1 = '1', $2 = '2', $3 = '2023-01-09 04:15:02.0', $4 = 'MdaUR88U', $5 = '1672913848115'
2023-01-09 04:15:15.312 P00   INFO: archive-push command begin 2.27: [sys_wal/0000000500000084000000FE] --archive-timeout=600 --band-width=0 --cmd-ssh=/home/kingbase/cluster/kdb/ClusterKingbase/kingbase/bin/sys_securecmd --compress-level=3 --compress-type=none --config=/backup/kingbase/rmanbackup/sys_rman.conf --exec-id=1764972-427dcb0a --log-level-console=info --log-level-file=info --log-path=/home/kingbase/cluster/kdb/ClusterKingbase/kingbase/log --log-subprocess --kb1-path=/data/kingbase/data --process-max=4 --repo1-path=/backup/kingbase/rmanbackup --stanza=kingbase
2023-01-09 04:15:15 CST [1761621]: [3-1] user=user,db=dbname,app=Kingbase8 JDBC Driver,client=10.10.10.13PANIC:  could not write to file "sys_wal/xlogtemp.1761621": No space left on device
2023-01-09 04:15:15 CST [1761621]: [4-1] user=user,db=dbname,app=Kingbase8 JDBC Driver,client=50.138.21.13LOG:  kingbase ran into a problem it couldn't handle,it needs to be shutdown to prevent damage to your data
ERROR: [104]: archive-push command encountered error(s):
       repo1: [FileWriteError] unable to write '/backup/kingbase/rmanbackup/archive/kingbase/12-1/0000000500000084/0000000500000084000000FE-11d6224e1202374a42216d778c3207442e2aa1f6.sys_rman.tmp': [28] No space left on device
2023-01-09 04:15:15.406 P00   INFO: archive-push command end: aborted with exception [104]
2023-01-09 04:15:15 CST [2707074]: [201661-1] user=,db=,app=,client=LOG:  archive command failed with exit code 104
2023-01-09 04:15:15 CST [2707074]: [201662-1] user=,db=,app=,client=DETAIL:  The failed archive command was: export TZ=Asia/Shanghai;/home/kingbase/cluster/kdb/ClusterKingbase/kingbase/bin/sys_rman --config /backup/kingbase/rmanbackup/sys_rman.conf --stanza=kingbase archive-push sys_wal/0000000500000084000000FE
2023-01-09 04:15:15 CST [1761621]: [5-1] user=user,db=dbname,app=Kingbase8 JDBC Driver,client=50.138.21.13WARNING:  
	ERROR:  -----------------------stack error start-----------------------
	ERROR:  TIME: 2023-01-09 04:15:15.375788+08
	ERROR:  1 1761621 0x7efdf50eef8b debug_backtrace (backtrace.so)
	ERROR:  2 1761621 0x7efdf50ef55a <symbol not found> (backtrace.so)
	ERROR:  3 1761621 0x7efe04999630 <symbol not found> (libc.so.6)
	ERROR:  4 1761621 0x7efe049995ab gsignal (libc.so.6)
	ERROR:  5 1761621 0x7efe0499a8d1 abort (libc.so.6)
	ERROR:  6 1761621 0x9283fc errfinish + 0xfbf8dc7c
	ERROR:  7 1761621 0x5433fc XLogFileInit + 0xfbba8c7c
	ERROR:  8 1761621 0x5437dd XLogWrite + 0xfbba905d
	ERROR:  9 1761621 0x5447e8 XLogFlush + 0xfbbaa068
	ERROR:  10 1761621 0x53ae42 CommitTransaction + 0xfbba06c2
	ERROR:  11 1761621 0x53df5a CommitTransactionCommand + 0xfbba37da
	ERROR:  12 1761621 0x7ff037 finish_xact_command + 0xfbe648b7
	ERROR:  13 1761621 0x804b24 PostgresMain + 0xfbe6a3a4
	ERROR:  14 1761621 0x78c25a PostmasterMain + 0xfbdf1ada
	ERROR:  15 1761621 0x6dc26f main + 0xfbd41aef
	ERROR:  16 1761621 0x7efe04985b17 __libc_start_main (libc.so.6)
	ERROR:  17 1761621 0x4a6f09 _start + 0xfbb214d9
	
2023-01-09 04:15:16.420 P00   INFO: archive-push command begin 2.27: [sys_wal/0000000500000084000000FE] --archive-timeout=600 --band-width=0 --cmd-ssh=/home/kingbase/cluster/kdb/ClusterKingbase/kingbase/bin/sys_securecmd --compress-level=3 --compress-type=none --config=/backup/kingbase/rmanbackup/sys_rman.conf --exec-id=1764980-d5fdc66a --log-level-console=info --log-level-file=info --log-path=/home/kingbase/cluster/kdb/ClusterKingbase/kingbase/log --log-subprocess --kb1-path=/data/kingbase/data --process-max=4 --repo1-path=/backup/kingbase/rmanbackup --stanza=kingbase
ERROR: [104]: archive-push command encountered error(s):
       repo1: [FileWriteError] unable to write '/backup/kingbase/rmanbackup/archive/kingbase/12-1/0000000500000084/0000000500000084000000FE-11d6224e1202374a42216d778c3207442e2aa1f6.sys_rman.tmp': [28] No space left on device
2023-01-09 04:15:16.511 P00   INFO: archive-push command end: aborted with exception [104]

  

关于"sys_wal/xlogtemp.1761621"临时文件

 

XlogFileCopy函数调用:调用XLogFilePath函数获取源XLOG文件名,OpenTransientFile打开该文件,创建并打开一个临时XLOG文件pg_wal/xlogtemp.pid,pid为startup进程的ID号。
sizeof(buffer)为一页大小8192字节,从源文件每次read一页数据并将之write到xlogtemp文件,最后一页数据如果不够8192字节,则有多少读取多少并写入文件。当文件拷贝完成后,执行一次sync。最后调用InstallXLogFileSegment将文件重命名。

  

完整的问题分析结果:

1.询问现场同事备份失败原因.专门存放备份的/backup磁盘空间满了,备份任务连续几天都备份失败,没有及时进行处理.

2.由于备份磁盘满了,连续几天备份任务一直失败、不能及时清理wal日志.导致wal日志堆积,并把data空间撑满.

3.应用执行update更新sql,由于data空间没有空闲空间,无法写wal/xlogtemp.pid临时文件(任何数据修改操作,都会先写wal临时文件).could not write to file "sys_wal/xlogtemp.1761621": No space left on device.

4.data磁盘空间满不能写临时wal日志文件.应用更新进程crash数据库自动关闭.kingbase ran into a problem it couldn't handle,it needs to be shutdown to prevent damage to your data.并发生coredump.

5.以上问题导致数据库进程崩溃,并发生切换.server process (PID 1761621) was terminated by signal 6: Aborted.

总结:

1.小问题没有及时处理差点变成一次严重的生产事故(故障如果在备份空间满的时候及时进行处理,就不会出现后面的主库故障导致集群发生切换).同时也警醒我们小问题也可能会导致更加严重的问题.

2.每天按时查看系统运行情况,定时任务执行情况.避免数据库系统发生死锁、定时任务没有执行或者执行失败.

3.同时也提醒我们,必须对重要的系统进行及时有效的监控,出现问题的时候必须及时的进行处理(避免小问题变成大故障).

posted @ 2023-02-28 10:06  KINGBASE研究院  阅读(1734)  评论(0编辑  收藏  举报