-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhttp.log
2584 lines (2584 loc) · 666 KB
/
http.log
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
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
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
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
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2024-09-27 01:35:07 - 200 - {"status":0,"message":"","data":{"tel_id":7491738727,"id":32124262,"fn":"Kiran","ln":"","access_token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlblVzZXIiOnsidGVsX2lkIjo3NDkxNzM4NzI3LCJpZCI6MzIxMjQyNjIsImZuIjoiS2lyYW4iLCJsbiI6IiJ9LCJpYXQiOjE3MjczODExMDksImV4cCI6MTcyOTk3MzEwOX0.lw7VYqROTvonJlfafESy652yqw7agBzxwSZCq1TCMps","photo_url":"","is_kol":0}}
2024-09-27 01:35:08 - 200 - {"status":0,"message":"","data":{"available_balance":0,"play_passes":5,"timestamp":1727381109,"daily":null}}
2024-09-27 01:35:08 - 200 - {"status":0,"message":"","data":{"round_id":"93927530-02e8-4a6e-a3a4-92c94df2a303","user_id":32124262,"start_at":1727352309,"last_check_ts":1727352309,"last_check_ymd":20240926,"next_check_ts":1727366400,"check_counter":1,"today_points":200,"today_game":1}}
2024-09-27 01:35:08 - 200 - {"status":0,"message":"","data":{"available_balance":200,"play_passes":6,"timestamp":1727381110,"daily":{"round_id":"93927530-02e8-4a6e-a3a4-92c94df2a303","user_id":32124262,"start_at":1727352309,"last_check_ts":1727352309,"last_check_ymd":20240926,"next_check_ts":1727366400,"check_counter":1,"today_points":200,"today_game":1}}}
2024-09-27 01:35:09 - 200 - {"status":400,"message":"already_check","data":{"round_id":"93927530-02e8-4a6e-a3a4-92c94df2a303","user_id":32124262,"start_at":1727352309,"last_check_ts":1727352309,"last_check_ymd":20240926,"next_check_ts":1727366400,"check_counter":1,"today_points":200,"today_game":1}}
2024-09-27 01:35:09 - 200 - {"status":0,"message":"","data":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"904a4339-6605-423b-982e-faab1e402cca","user_id":32124262,"start_at":1727381110,"end_at":1727391910,"last_claim":1727381110,"points":0}}
2024-09-27 01:35:09 - 200 - {"status":0,"message":"","data":{"available_balance":200,"play_passes":6,"timestamp":1727381110,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"904a4339-6605-423b-982e-faab1e402cca","user_id":32124262,"start_at":1727381110,"end_at":1727391910,"last_claim":1727381110,"points":0},"daily":{"round_id":"93927530-02e8-4a6e-a3a4-92c94df2a303","user_id":32124262,"start_at":1727352309,"last_check_ts":1727352309,"last_check_ymd":20240926,"next_check_ts":1727366400,"check_counter":1,"today_points":200,"today_game":1}}}
2024-09-27 01:35:10 - 200 - {"status":400,"message":"already_check","data":{"round_id":"93927530-02e8-4a6e-a3a4-92c94df2a303","user_id":32124262,"start_at":1727352309,"last_check_ts":1727352309,"last_check_ymd":20240926,"next_check_ts":1727366400,"check_counter":1,"today_points":200,"today_game":1}}
2024-09-27 01:58:42 - 403 - <!DOCTYPE html><html lang="en-US"><head><title>Just a moment...</title><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><meta http-equiv="X-UA-Compatible" content="IE=Edge"><meta name="robots" content="noindex,nofollow"><meta name="viewport" content="width=device-width,initial-scale=1"><style>*{box-sizing:border-box;margin:0;padding:0}html{line-height:1.15;-webkit-text-size-adjust:100%;color:#313131;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji}body{display:flex;flex-direction:column;height:100vh;min-height:100vh}.main-content{margin:8rem auto;max-width:60rem;padding-left:1.5rem}@media (width <= 720px){.main-content{margin-top:4rem}}.h2{font-size:1.5rem;font-weight:500;line-height:2.25rem}@media (width <= 720px){.h2{font-size:1.25rem;line-height:1.5rem}}#challenge-error-text{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMiIgaGVpZ2h0PSIzMiIgZmlsbD0ibm9uZSI+PHBhdGggZmlsbD0iI0IyMEYwMyIgZD0iTTE2IDNhMTMgMTMgMCAxIDAgMTMgMTNBMTMuMDE1IDEzLjAxNSAwIDAgMCAxNiAzbTAgMjRhMTEgMTEgMCAxIDEgMTEtMTEgMTEuMDEgMTEuMDEgMCAwIDEtMTEgMTEiLz48cGF0aCBmaWxsPSIjQjIwRjAzIiBkPSJNMTcuMDM4IDE4LjYxNUgxNC44N0wxNC41NjMgOS41aDIuNzgzem0tMS4wODQgMS40MjdxLjY2IDAgMS4wNTcuMzg4LjQwNy4zODkuNDA3Ljk5NCAwIC41OTYtLjQwNy45ODQtLjM5Ny4zOS0xLjA1Ny4zODktLjY1IDAtMS4wNTYtLjM4OS0uMzk4LS4zODktLjM5OC0uOTg0IDAtLjU5Ny4zOTgtLjk4NS40MDYtLjM5NyAxLjA1Ni0uMzk3Ii8+PC9zdmc+);background-repeat:no-repeat;background-size:contain;padding-left:34px}@media (prefers-color-scheme:dark){body{background-color:#222;color:#d9d9d9}}</style><meta http-equiv="refresh" content="390"></head><body class="no-js"><div class="main-wrapper" role="main"><div class="main-content"><noscript><div class="h2"><span id="challenge-error-text">Enable JavaScript and cookies to continue</span></div></noscript></div></div><script>(function(){window._cf_chl_opt={cvId: '3',cZone: "api-web.tomarket.ai",cType: 'managed',cNounce: '7357',cRay: '8c9600897edf47d2',cHash: '07c1db60bf58db4',cUPMDTk: "\/tomarket-game\/v1\/user\/balance?__cf_chl_tk=2r.3IILYh9CZqhQrZSl60dvyNOBrKxgw9Iy7XTrIrgA-1727382524-0.0.1.1-5566",cFPWv: 'g',cTTimeMs: '1000',cMTimeMs: '390000',cTplV: 5,cTplB: 'cf',cK: "",fa: "\/tomarket-game\/v1\/user\/balance?__cf_chl_f_tk=2r.3IILYh9CZqhQrZSl60dvyNOBrKxgw9Iy7XTrIrgA-1727382524-0.0.1.1-5566",md: "7Yoqc05FQPyZjrIYV0u9VNF9hyf4yl3KZrJXPixh.88-1727382524-1.1.1.1-F3mK7luxEAMlUxMNdVlZoWXS7grOaUUlSB_eKsyCbtJCaqr2PnpY2LgmPn8totkE__rBNBw5FyQSK8PLAKauwl59MaNzyTgowRG9WdKqrxKeH7MoNJvdGExXwFnLJukBx1nALmnhKyTMIYBf31d8yl_kPZZfxbDqZ2U_midVvHkeCluW8kFr4b_avXAHB_jsH7U7.E0vcdsUkSvlg0yrdEtuwb_XvWhpCIitLEhAs4q4YJgCIExCG9FAFRWFJzKxCrFsYsPROsluBndjMavswsOIzKMM3A7W3aV2HnvwRFow..bsC7wbukbXDyNxhEL72HL8Ivt9zj4cNxr4x2OmySUzJa_xNCpmG9xrs3bQTMn26vcveIidaqi72qW8wn0wdUN39G5GJEXhvmBrqP9Zzg897owYp0LlNkhqmWdqG3Fdxo3p0d.gpIYNSmRfKcl.gZkG6hbrMJ.PlXmA4c2QYhVTWpIaPI76_fzrQ1g4lcbfMIs7AMKOARXkqMlsE312HhNk4JlZvKN8gjDvwSQvc5FRSY8o99QCOk8DBxcLx2v3ifeRQNlx.CoJY0Zpvq8Ln4VoZKx8c4enMXxzCSSUkejLj2P79GYmT16bCgd7wTYAV5ie9ZqoNYEf4hEiQh7_goSMGhuJ.yiqsAjfukyi5AJXoe1I7U8HRT9ckUs40NJBElkvli0ijM1ukgSi2QT.Ldqjwo4zvEwMX6t0keq5JbpyDIFSj5.YM70RppG5.rjw0nboUW3rY.Ds6NR2yBDnp4Dz85kZRejtIggBwdQskspsV8rDK8glLEbfKbCAAI0qjEXZMd3r4WKikD6aGxwZpmSks9jlCRFz7oo3N64N6SV7Oncm5406YNPRsWug59ICeYl_jQKmBpB0sbiOJucv5i0CK31Y9aN9qgBv5xCo.prUh7a.6fuxvs3EtMDrsF2PtI7uVZ.fiFz88ZmAnOk69PC_jH.85.8xZ_5t1UgMrkQZPeXlHK5U_SUxmgebqU02_2kaNopPSd2zFSPOVoX0jLkrp5J1MohO4ZQ6OMtRoPlStEGB_ujE3jZzKRVAu2XT0xsApxi221OvzsCRLkuei.sQC_4_cGTXqxCWt.uUN2KF0xd86Bk4bHIczmI962280N6cedrpBsjpGrZuNpileEMWQYONaXXq38nELuzSZfCDyeZE1nWCIwy_RsUQdIOsqeG7xJw1MMPRO.WC9qB9TDbDX7vuoq471JNef9Cr6uiPOZFl4ew80u_HgK67sv2DcLs7OcZUc3qsDYAeNsI4BdH0OadCFCYY0ty9pxuj3Sn2_.aPrgZMv4n6jACFHPNDu3Rfr3gaV0xCS.SvbQkFzTGTAs_wXf7EJYp4uRH2WCOtpGO6DK60iLSllBdzgwbXdtmLG003aYRpaaXTOPEL6g2ScxO_6cHOSDzl4RTvgQ4abdp4yYB.6c6CZE8UZD1ZxG70ozHNvOD8V_LMobsDFcgx9IMDWWTgOzC9Kn092IRigB.oh5AuUZe.4CYAFFgVWT1bQjaDms5WiGuOQ_IbTGNhdc2HntcHxApr2pEw7rrmD2p5iX1HJpjfgkdDuGHPobo7aMkIh_i8H8IMyDaGp4SQvfCSY4eSy6DNub6dv0b.51teUjLCL2r3w.qzvO9jFlgZI0O0uN47Ls6h.AxwWFd7oFTit7pQVx2kJlM2wFVMxrvQNuCsJ4.ujwYnBJ8EOJbpH06igKEKLnsPlMxCMj_xZCdAv_Ev.s1GsdXNnSpNU57IHloGv2ntqCs4IOqFuhVD1HBWpL0cGejj7IfbKgTW__SM0fdSvpGk2A1SiO2yodJb0hT5yAdiz6cXbmGr3alEmbeIcK4HnYhVJn7OSf.fbcZ8Pr_BBPvugfSd9W93L8DhqzQZSMUlwsLFKskQFzdL3m_H77ogkMBLO9kk4ryVsTvwqy5bN2JHsLdtUgL_5BjCj5BtdcP2AoInNzpyl_US8iTPleTkCqLfNhJZGE9OriyDYCpudWZH..70EvNE1HRaQTPGXT4tecyMa0cOK9e8JPAb6DG8I1WTsang1Jw7Q0.0fGDVSgZqh75.q6SNC.DrO2cO_jE9G5PD7W_Z5xbw9kkyv6sUzXnVSE_Mt65ZfNJX3.A.qeC0kb0I0m.AVrqeVx.GD8Hw4HtEOaUOZyIuCm6rzSiCiPNSRWidDQ6XRr5JiTTYGDnZlszOORnafMlLXUm_eVpchLBVXeeiYjJAZT_UJlQt7uxi0atcENJbWGX8PoxFPXe.zE97JyIxJ0uAp5W7kTMLBxNv2kZfeGo7jjhlJRlAGncgF.J.1U5Ks2UYjVNcDRlutLXOllFRSaBa8pmJQB.gqTnoG8luBFzOR2Yva6YHaH.kOwgFwbkKs1RGNa4ByHJ2cGtEpR1eMGRZINANSuM9_HO5txyhyfYDqf1.8uRKa84_yl6fskzykaLqLtRLd6tswJ0Sg8iGc.c5Jandf4CvlDiURKylucd1j8KYQlIXeh.2KXAEvWwVTpZosWT6ROd_Z1QOKSfipdZLFAAqDcxVBTctxiNPWXSESPdkMu61eaq.9I6B",mdrd: "i17X95yoN_FXej9G9EF3rI3Mja9amU8yEmfwyycGJiQ-1727382524-1.1.1.1-I8rxOZ_5IDgeTEL.WUjfoqSSk_gOlUFE.4cR3Q9BLKLd4fFzmVlGU_Z7mbXpVteePTn7QB.ZW0EAa_H9GYopR1cIL4jtOeFoluTQ_FgW9.gtFT8U.IAoEcGTlwSHTbFwM10o7vVX6qyHYKuYVAjAGNsgdwRDLbBvQBk0G8tXYlyuQDfUcUABWNLXybs2tRTUkh9JA09LvXTUedHD0NadZZvcPfDVtJ_Sn1X9xvBd5Ia5jtoRYhNDg4qmojDQxkhuV4bJq01zdnOiP9EEk_Vlrns_azLDRZwBj_KIZS4LoGJVZP5.Vu5ZLYHsRiHBhG35c8Re624RTjMGMzktaGI2YVN6Tj3sp3mx9Nf9za7bxNxSbsRx2qezwMY9P1.oP7O6UTtQCL_7LK9pfUGlP2135.UHUbbQVp3suKpDBSscElShBdYyKQ9v24VigKhsIJqZeNbVIZLPL1lCRuMbDptUO4hZmcGeFFh5PnRJ6Y_kjC28FiL16_hegOrFSBsjfMonO9.mMba80KDJgGiEAWD1o9fCLTx0Ohxh93hSg8jcQPyTtjiPTmCx4teEWyvG2i0uBjyqCbw9YnQkMoGhJ6TfJfADOuSn_0wEQcfXusEVkGge1CFmuIokG9Mbrt4fefjWsuhzz.NjXnjZEEQyi3eX4rPmR7koyzFQeuWYY7d3hHYeoV2yppDqr3b2auGECHDH4MV2iypVWPGLX.rewodHqpuMg3xBuejGywMtjhiJfX4CMZZQ_jXQgbSu38os1hrp.3g01Qxra529RLrTUqsrByelwhpXGOLELEoy_EdaiCjfPiZHkTkTC9OnoGn2REKfV3rxrupjJQT07XNaa2H8mrQguNULsjotLG2rzOeIPVG_DxObvs8d7JlmpUy8FKpk6N_UMoly.0vIWYbfZva48CbffXKuKdjAAR6uhf1xy6bREJg_kXs5WzGz8t8VAQ1psTj0PtQaORwCRJNh_mUtIQvx3DB39irIqV4fmI13VCnLB05ra7V9a8fiku9MKx0i_zr8KrCh8mzhAjjxFlS3lLlzp3u8wKeEFR9eLCAyd9BFxSXfr_lJb2gLU4.0fra6VCSb_3ihqIN5uX3F8TUuBZuTou_AkmQiDz7g3k16zfsCmShZdVD2D9Lu036kA._wmi.odRNu4MNrkxcFVNKB71WA3WbEpj4t6wwHxaKx8f16wz2O4iDyLXyOij3X2.uK5aFiNeIGSS6edOoda5ZgN._a9nJ9wPmwYJlorZyYyyPq_zsvqcf8.7EEx7YAoJzPJf76NeBStmAmpSXG1dgxIWnaq8lQjRfOavia3UrugnG99QcG.vKai_W5qn1HAR1twydSd6mXyk1_9b5B4ExR5mVhrbdIf_KXnLKr3RfuzCkuCuI8eFoK5OobbvSqGttzg1_6KyViNaBzOwR2kVQ9_1WzLdMji80c._9htqPkByj9FjCRBf89zshOXy9ktXH0mjR.tiowxwy3Fsjv3LYlxtEAxL9RUfqS1PeYcXLbsmw8pr.5yVYCMMuY4Pg0wCtbuQhrn6iNX4cZfeXlp5qowME.xpRgSYq04typtxclFHOU8EGbdzBsJQQyGJ3eeoTB21iJmMkFhGoyRkamfxpq0kgJD5Vd5YKhDYlBROGI0qdH7xohUTJSARX8OXHvKP4jNIknWiVlECM6w_ZxpSVYM_sCnVTGuJTPoayNCWe48GqZe4mlPuaNTlDuEdc58uc1Y84n5WbfpLAUmCiQ5BuVtQAyv_ICeICZOPmqr.Oc1f5goIMaGET9K37BEn8yGlZepMZqxDvMz4Ij2kwkE4DM_aatb1WNcc123_id3kCToZxOyykVyz.acT0pt2QKM1j.wcS2K.IxVve8KgYY2uYN79kZU8CRV0CNthb8G.3t1IQFcWCvPrnyx1g2mVWcZDld_ZRcCJ4hbskd5KA0e3LcK9EItWF38Qc9KsjVHsP0Ypa3SVdV5AjAHIz.LqYMogeTqfH3ll3TCNO_T8nl4F.yhBmspgWPWs2ZOMq1H2uoQCZ4km8kraizqkeqwgB6V_b_e2u2TpB0L.JAycQ_N0hR1193XKc58hfuE6yDFQuMTjJuMX.TYID.0XydFhPcViSlw.HH9xtiIxl3iGLQ2o6bM8oOsS2IUvmNR3tkLkjRNrwTQ4oTLbOGf_lh.OCkYr9HJu0.bMHYcBnJTRl5Rn9SdH2Gf8Xa4BWjZaLeEA14DSiX7NUFQ4n1YrEGLmr8ddf_fNfmjuISnpIlKPVxDIA6DJMVlqIxV3JLyNDqZ4iglIOWALV3SrzRWjvMjbe6OioM2C8B5.TpIj.ZevZE0wFy8vEowF9a3kdWpvZXV.i1dGW2fFJr7ZYICxfUCSr43ntXQFuy0Zl2BC2uHzVDv9Pr4j4d8e1BPGw_QRz_OEghPZZvhe4gEvklgOFVTWG7Ip48wVwjifQgJgk9JRUuvdEk75cWM8WK85tWtYaa8ozYJk4HqQRiO11uVAIEzOhm7hzqLMevaZd9URHbYphmhj1t02mar5KP2WvpFKPPVRfHYuE6SqwVThhlgmmTHwHYeCO3jVhXtv0nnoUj4COXg1Xs4Z__ZxOw1kKkQgRAcvYN38MaOW6QEMdcz2KP1e6IFcKANGNCqfe5EB2BQC0oYNJ7kTEiGCJAGzvlJZ.r2U5EFD8CflK2R..maYqlfZAZGbkUQse3IseTWqLnDzaUuGQs1Gx_g8ddj3qd3.zHwjK.7Q_GLVbx0qmDy7HLy6zkIBoGPVyf5FaFQkoaS23Wcb2MK17w7NoA.kYxDJ3NnJllyhqyhLzgyQY8.h0pVlwx_4.23lPldrlX654RSXUX9MFCSX0m7b.y6xpbl247fAxLEOV3Xp09GZhnMBefDKWvuH3e",cRq: {ru: 'aHR0cHM6Ly9hcGktd2ViLnRvbWFya2V0LmFpL3RvbWFya2V0LWdhbWUvdjEvdXNlci9iYWxhbmNl',ra: 'TW96aWxsYS81LjAgKExpbnV4OyBBbmRyb2lkIDEwOyBSZWRtaSA0QSAvIDVBIEJ1aWxkL1FRM0EuMjAwODA1LjAwMTsgd3YpIEFwcGxlV2ViS2l0LzUzNy4zNiAoS0hUTUwsIGxpa2UgR2Vja28pIFZlcnNpb24vNC4wIENocm9tZS84Ni4wLjQyNDAuMTg1IE1vYmlsZSBTYWZhcmkvNTM3LjM2',d: '2lrQzkzCPIxvFrq9a93YMFYerR7flJcccN+V7WyG4nLoIamTtJTYeR5bmMaG5/8U2TRkhIjwcXi1EA7FQAbpeRT8zpzxw+gsZWRntvTlAw11+62XvuXo92C1rTI43/aIkWlW7VV8B1b1UJTDmHv7V1faYNglfxtqyyu2b/3LCnr1t5kkGJ+rcspUGWxxohsWwdKuZZrjIxuGCghzmkhK82YcNLv5tuprm4LaGdPfz31BTXAwUZC+U0HfmdQV6py9kpldi+/VU0VzGKPJzP4sjjClkstIqwWMAdPsKGo545zqg7vq1IdcyIb/1i8HccUu7BejGFUOZcExV1aWl6wTVdCneCEth4XB06fn3CGAGExuFc8ZcF5U6/Qa35v2LVx2ySGmSU6OuLjKBkRqBxfyxqDAn7xrH3Ham4OtyQLmJ6D9pQTBWowg9WxC4taN5KUIfmx+N6gf/VssI4bfpwdCB07K1fSXeZI6IIl1ne/vH2X1vLk2SMYzRLW2VxSkTjpS8fRCGC6o6OWRV4SpdYBMCw==',t: 'MTcyNzM4MjUyNC4wMDAwMDA=',cT: Math.floor(Date.now() / 1000),m: 'qXmBhJ5TyBWQVELfVZUbyAZ+vO3um4PiNp4zXRbn2/M=',i1: 'VH+2Lr+v7UTJTR09hAfX3A==',i2: 'Z362czoBJOKmmTwdCmfLrA==',zh: '4qAygYvZtX0Pn3TYTP4JAhUupBhjWNEjsyMhjjPUr8k=',uh: 'iQ4OU4lLT517TpWhvBajaoN2/OBv6OrpXxCeL/HIT2w=',hh: '+NxBO+CU+NLvsqbmshPHBSdrgDsx+pMJTKO5e2l0PSE=',}};var cpo = document.createElement('script');cpo.src = '/cdn-cgi/challenge-platform/h/g/orchestrate/chl_page/v1?ray=8c9600897edf47d2';window._cf_chl_opt.cOgUHash = location.hash === '' && location.href.indexOf('#') !== -1 ? '#' : location.hash;window._cf_chl_opt.cOgUQuery = location.search === '' && location.href.slice(0, location.href.length - window._cf_chl_opt.cOgUHash.length).indexOf('?') !== -1 ? '?' : location.search;if (window.history && window.history.replaceState) {var ogU = location.pathname + window._cf_chl_opt.cOgUQuery + window._cf_chl_opt.cOgUHash;history.replaceState(null, null, "\/tomarket-game\/v1\/user\/balance?__cf_chl_rt_tk=2r.3IILYh9CZqhQrZSl60dvyNOBrKxgw9Iy7XTrIrgA-1727382524-0.0.1.1-5566" + window._cf_chl_opt.cOgUHash);cpo.onload = function() {history.replaceState(null, null, ogU);}}document.getElementsByTagName('head')[0].appendChild(cpo);}());</script></body></html>
2024-09-27 01:59:05 - 200 - {"status":0,"message":"","data":{"available_balance":200,"play_passes":6,"timestamp":1727382547,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"904a4339-6605-423b-982e-faab1e402cca","user_id":32124262,"start_at":1727381110,"end_at":1727391910,"last_claim":1727381110,"points":0},"daily":{"round_id":"93927530-02e8-4a6e-a3a4-92c94df2a303","user_id":32124262,"start_at":1727352309,"last_check_ts":1727352309,"last_check_ymd":20240926,"next_check_ts":1727366400,"check_counter":1,"today_points":200,"today_game":1}}}
2024-09-27 01:59:06 - 200 - {"status":400,"message":"already_check","data":{"round_id":"93927530-02e8-4a6e-a3a4-92c94df2a303","user_id":32124262,"start_at":1727352309,"last_check_ts":1727352309,"last_check_ymd":20240926,"next_check_ts":1727366400,"check_counter":1,"today_points":200,"today_game":1}}
2024-09-27 02:00:50 - 200 - {"status":0,"message":"","data":{"available_balance":200,"play_passes":6,"timestamp":1727382651,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"904a4339-6605-423b-982e-faab1e402cca","user_id":32124262,"start_at":1727381110,"end_at":1727391910,"last_claim":1727381110,"points":0},"daily":{"round_id":"93927530-02e8-4a6e-a3a4-92c94df2a303","user_id":32124262,"start_at":1727352309,"last_check_ts":1727352309,"last_check_ymd":20240926,"next_check_ts":1727366400,"check_counter":1,"today_points":200,"today_game":1}}}
2024-09-27 02:00:51 - 200 - {"status":400,"message":"already_check","data":{"round_id":"93927530-02e8-4a6e-a3a4-92c94df2a303","user_id":32124262,"start_at":1727352309,"last_check_ts":1727352309,"last_check_ymd":20240926,"next_check_ts":1727366400,"check_counter":1,"today_points":200,"today_game":1}}
2024-09-27 02:00:54 - 200 - {"status":0,"message":"","data":{"tel_id":"1756351005","id":12936487,"fn":"hastii Ö","ln":"","access_token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlblVzZXIiOnsidGVsX2lkIjoiMTc1NjM1MTAwNSIsImlkIjoxMjkzNjQ4NywiZm4iOiJoYXN0aWkgw5YiLCJsbiI6IiJ9LCJpYXQiOjE3MjczODI2NTUsImV4cCI6MTcyOTk3NDY1NX0.rluibGtof_H_vIOR2qt0DdsvXcjtHGcEnTEBLs7ycR8","photo_url":"","is_kol":0}}
2024-09-27 02:00:54 - 200 - {"status":0,"message":"","data":{"available_balance":3200,"play_passes":6,"timestamp":1727382656,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"b0e93510-57c7-4b73-bb70-710b74171b85","user_id":12936487,"start_at":1727381428,"end_at":1727392228,"last_claim":1727381428,"points":0},"daily":{"round_id":"6e16e753-d0ab-432f-9a4b-513930a35471","user_id":12936487,"start_at":1727352557,"last_check_ts":1727352557,"last_check_ymd":20240926,"next_check_ts":1727366400,"check_counter":1,"today_points":200,"today_game":1}}}
2024-09-27 02:00:55 - 200 - {"status":400,"message":"already_check","data":{"round_id":"6e16e753-d0ab-432f-9a4b-513930a35471","user_id":12936487,"start_at":1727352557,"last_check_ts":1727352557,"last_check_ymd":20240926,"next_check_ts":1727366400,"check_counter":1,"today_points":200,"today_game":1}}
2024-09-27 04:36:09 - 200 - {"status":0,"message":"","data":{"available_balance":"200.00","play_passes":6,"timestamp":1727391970,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"904a4339-6605-423b-982e-faab1e402cca","user_id":32124262,"start_at":1727381110,"end_at":1727391910,"last_claim":1727381110,"points":0},"daily":{"round_id":"93927530-02e8-4a6e-a3a4-92c94df2a303","user_id":32124262,"start_at":1727352309,"last_check_ts":1727352309,"last_check_ymd":20240926,"next_check_ts":1727366400,"check_counter":1,"today_points":200,"today_game":1}}}
2024-09-27 04:36:10 - 200 - {"status":400,"message":"already_check","data":{"round_id":"93927530-02e8-4a6e-a3a4-92c94df2a303","user_id":32124262,"start_at":1727352309,"last_check_ts":1727352309,"last_check_ymd":20240926,"next_check_ts":1727366400,"check_counter":1,"today_points":200,"today_game":1}}
2024-09-27 04:36:10 - 200 - {"status":0,"message":"","data":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"904a4339-6605-423b-982e-faab1e402cca","user_id":32124262,"start_at":1727381110,"end_at":1727391910,"last_claim":1727391971,"points":"1080.00","finished":true,"claim_this_time":"1080.00"}}
2024-09-27 04:36:10 - 200 - {"status":0,"message":"","data":{"available_balance":"1280.00","play_passes":6,"timestamp":1727391971,"daily":{"round_id":"93927530-02e8-4a6e-a3a4-92c94df2a303","user_id":32124262,"start_at":1727352309,"last_check_ts":1727352309,"last_check_ymd":20240926,"next_check_ts":1727366400,"check_counter":1,"today_points":200,"today_game":1}}}
2024-09-27 04:36:10 - 200 - {"status":400,"message":"already_check","data":{"round_id":"93927530-02e8-4a6e-a3a4-92c94df2a303","user_id":32124262,"start_at":1727352309,"last_check_ts":1727352309,"last_check_ymd":20240926,"next_check_ts":1727366400,"check_counter":1,"today_points":200,"today_game":1}}
2024-09-27 04:36:11 - 200 - {"status":0,"message":"","data":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"774ff277-b3dc-442d-8fbb-e838ff883a3e","user_id":32124262,"start_at":1727391972,"end_at":1727402772,"last_claim":1727391972,"points":0}}
2024-09-27 04:36:11 - 200 - {"status":0,"message":"","data":{"available_balance":1280,"play_passes":6,"timestamp":1727391972,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"774ff277-b3dc-442d-8fbb-e838ff883a3e","user_id":32124262,"start_at":1727391972,"end_at":1727402772,"last_claim":1727391972,"points":0},"daily":{"round_id":"93927530-02e8-4a6e-a3a4-92c94df2a303","user_id":32124262,"start_at":1727352309,"last_check_ts":1727352309,"last_check_ymd":20240926,"next_check_ts":1727366400,"check_counter":1,"today_points":200,"today_game":1}}}
2024-09-27 04:36:11 - 200 - {"status":400,"message":"already_check","data":{"round_id":"93927530-02e8-4a6e-a3a4-92c94df2a303","user_id":32124262,"start_at":1727352309,"last_check_ts":1727352309,"last_check_ymd":20240926,"next_check_ts":1727366400,"check_counter":1,"today_points":200,"today_game":1}}
2024-09-27 04:36:14 - 200 - {"status":0,"message":"","data":{"available_balance":"3200.00","play_passes":6,"timestamp":1727391976,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"b0e93510-57c7-4b73-bb70-710b74171b85","user_id":12936487,"start_at":1727381428,"end_at":1727392228,"last_claim":1727381428,"points":0},"daily":{"round_id":"6e16e753-d0ab-432f-9a4b-513930a35471","user_id":12936487,"start_at":1727352557,"last_check_ts":1727352557,"last_check_ymd":20240926,"next_check_ts":1727366400,"check_counter":1,"today_points":200,"today_game":1}}}
2024-09-27 04:36:15 - 200 - {"status":400,"message":"already_check","data":{"round_id":"6e16e753-d0ab-432f-9a4b-513930a35471","user_id":12936487,"start_at":1727352557,"last_check_ts":1727352557,"last_check_ymd":20240926,"next_check_ts":1727366400,"check_counter":1,"today_points":200,"today_game":1}}
2024-09-27 08:15:38 - 200 - {"status":0,"message":"","data":{"available_balance":"1280.00","play_passes":5,"timestamp":1727405140,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"774ff277-b3dc-442d-8fbb-e838ff883a3e","user_id":32124262,"start_at":1727391972,"end_at":1727402772,"last_claim":1727391972,"points":0},"daily":{"round_id":"93927530-02e8-4a6e-a3a4-92c94df2a303","user_id":32124262,"start_at":1727352309,"last_check_ts":1727352309,"last_check_ymd":20240926,"next_check_ts":1727366400,"check_counter":1,"today_points":200,"today_game":1}}}
2024-09-27 08:15:39 - 200 - {"status":0,"message":"","data":{"round_id":"93927530-02e8-4a6e-a3a4-92c94df2a303","user_id":32124262,"start_at":1727352309,"last_check_ts":1727376341,"last_check_ymd":20240927,"next_check_ts":1727452800,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}
2024-09-27 08:15:40 - 200 - {"status":0,"message":"","data":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"774ff277-b3dc-442d-8fbb-e838ff883a3e","user_id":32124262,"start_at":1727391972,"end_at":1727402772,"last_claim":1727405141,"points":"1080.00","finished":true,"claim_this_time":"1080.00"}}
2024-09-27 08:15:40 - 200 - {"status":0,"message":"","data":{"available_balance":"2860.00","play_passes":7,"timestamp":1727405141,"daily":{"round_id":"93927530-02e8-4a6e-a3a4-92c94df2a303","user_id":32124262,"start_at":1727352309,"last_check_ts":1727376341,"last_check_ymd":20240927,"next_check_ts":1727452800,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}}
2024-09-27 08:15:40 - 200 - {"status":0,"message":"","data":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"5ca7291c-7e8a-4ff6-a35d-f833382e674f","user_id":32124262,"start_at":1727405141,"end_at":1727415941,"last_claim":1727405141,"points":0}}
2024-09-27 08:15:41 - 200 - {"status":0,"message":"","data":{"available_balance":2860,"play_passes":7,"timestamp":1727405142,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"5ca7291c-7e8a-4ff6-a35d-f833382e674f","user_id":32124262,"start_at":1727405141,"end_at":1727415941,"last_claim":1727405141,"points":0},"daily":{"round_id":"93927530-02e8-4a6e-a3a4-92c94df2a303","user_id":32124262,"start_at":1727352309,"last_check_ts":1727376341,"last_check_ymd":20240927,"next_check_ts":1727452800,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}}
2024-09-27 08:15:44 - 200 - {"status":0,"message":"","data":{"available_balance":"3200.00","play_passes":5,"timestamp":1727405145,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"b0e93510-57c7-4b73-bb70-710b74171b85","user_id":12936487,"start_at":1727381428,"end_at":1727392228,"last_claim":1727381428,"points":0},"daily":{"round_id":"6e16e753-d0ab-432f-9a4b-513930a35471","user_id":12936487,"start_at":1727352557,"last_check_ts":1727352557,"last_check_ymd":20240926,"next_check_ts":1727366400,"check_counter":1,"today_points":200,"today_game":1}}}
2024-09-27 08:15:44 - 200 - {"status":0,"message":"","data":{"round_id":"6e16e753-d0ab-432f-9a4b-513930a35471","user_id":12936487,"start_at":1727352557,"last_check_ts":1727376346,"last_check_ymd":20240927,"next_check_ts":1727452800,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}
2024-09-27 08:15:45 - 200 - {"status":0,"message":"","data":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"b0e93510-57c7-4b73-bb70-710b74171b85","user_id":12936487,"start_at":1727381428,"end_at":1727392228,"last_claim":1727405146,"points":"1080.00","finished":true,"claim_this_time":"1080.00"}}
2024-09-27 08:15:45 - 200 - {"status":0,"message":"","data":{"available_balance":"4780.00","play_passes":7,"timestamp":1727405146,"daily":{"round_id":"6e16e753-d0ab-432f-9a4b-513930a35471","user_id":12936487,"start_at":1727352557,"last_check_ts":1727376346,"last_check_ymd":20240927,"next_check_ts":1727452800,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}}
2024-09-27 08:15:45 - 200 - {"status":0,"message":"","data":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"19c4f876-d957-40dd-b685-fffd69127f7e","user_id":12936487,"start_at":1727405147,"end_at":1727415947,"last_claim":1727405147,"points":0}}
2024-09-27 08:15:46 - 200 - {"status":0,"message":"","data":{"available_balance":4780,"play_passes":7,"timestamp":1727405147,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"19c4f876-d957-40dd-b685-fffd69127f7e","user_id":12936487,"start_at":1727405147,"end_at":1727415947,"last_claim":1727405147,"points":0},"daily":{"round_id":"6e16e753-d0ab-432f-9a4b-513930a35471","user_id":12936487,"start_at":1727352557,"last_check_ts":1727376346,"last_check_ymd":20240927,"next_check_ts":1727452800,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}}
2024-09-27 14:05:55 - 200 - {"status":0,"message":"","data":{"available_balance":"2860.00","play_passes":7,"timestamp":1727426161,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"5ca7291c-7e8a-4ff6-a35d-f833382e674f","user_id":32124262,"start_at":1727405141,"end_at":1727415941,"last_claim":1727405141,"points":0},"daily":{"round_id":"93927530-02e8-4a6e-a3a4-92c94df2a303","user_id":32124262,"start_at":1727352309,"last_check_ts":1727376341,"last_check_ymd":20240927,"next_check_ts":1727452800,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}}
2024-09-27 14:06:00 - 200 - {"status":0,"message":"","data":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"5ca7291c-7e8a-4ff6-a35d-f833382e674f","user_id":32124262,"start_at":1727405141,"end_at":1727415941,"last_claim":1727426162,"points":"1080.00","finished":true,"claim_this_time":"1080.00"}}
2024-09-27 14:06:01 - 200 - {"status":0,"message":"","data":{"available_balance":"3940.00","play_passes":7,"timestamp":1727426162,"daily":{"round_id":"93927530-02e8-4a6e-a3a4-92c94df2a303","user_id":32124262,"start_at":1727352309,"last_check_ts":1727376341,"last_check_ymd":20240927,"next_check_ts":1727452800,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}}
2024-09-27 14:06:01 - 200 - {"status":0,"message":"","data":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"3544e7ed-0478-4a89-8683-cc7287ac7ed7","user_id":32124262,"start_at":1727426162,"end_at":1727436962,"last_claim":1727426162,"points":0}}
2024-09-27 14:06:01 - 200 - {"status":0,"message":"","data":{"available_balance":3940,"play_passes":7,"timestamp":1727426162,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"3544e7ed-0478-4a89-8683-cc7287ac7ed7","user_id":32124262,"start_at":1727426162,"end_at":1727436962,"last_claim":1727426162,"points":0},"daily":{"round_id":"93927530-02e8-4a6e-a3a4-92c94df2a303","user_id":32124262,"start_at":1727352309,"last_check_ts":1727376341,"last_check_ymd":20240927,"next_check_ts":1727452800,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}}
2024-09-27 14:06:05 - 200 - {"status":0,"message":"","data":{"available_balance":"4780.00","play_passes":7,"timestamp":1727426166,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"19c4f876-d957-40dd-b685-fffd69127f7e","user_id":12936487,"start_at":1727405147,"end_at":1727415947,"last_claim":1727405147,"points":0},"daily":{"round_id":"6e16e753-d0ab-432f-9a4b-513930a35471","user_id":12936487,"start_at":1727352557,"last_check_ts":1727376346,"last_check_ymd":20240927,"next_check_ts":1727452800,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}}
2024-09-27 14:06:05 - 200 - {"status":0,"message":"","data":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"19c4f876-d957-40dd-b685-fffd69127f7e","user_id":12936487,"start_at":1727405147,"end_at":1727415947,"last_claim":1727426166,"points":"1080.00","finished":true,"claim_this_time":"1080.00"}}
2024-09-27 14:06:05 - 200 - {"status":0,"message":"","data":{"available_balance":"5860.00","play_passes":7,"timestamp":1727426167,"daily":{"round_id":"6e16e753-d0ab-432f-9a4b-513930a35471","user_id":12936487,"start_at":1727352557,"last_check_ts":1727376346,"last_check_ymd":20240927,"next_check_ts":1727452800,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}}
2024-09-27 14:06:06 - 200 - {"status":0,"message":"","data":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"79682c21-f11f-4cfc-831c-fad6fd4c004f","user_id":12936487,"start_at":1727426167,"end_at":1727436967,"last_claim":1727426167,"points":0}}
2024-09-27 14:06:06 - 200 - {"status":0,"message":"","data":{"available_balance":5860,"play_passes":7,"timestamp":1727426168,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"79682c21-f11f-4cfc-831c-fad6fd4c004f","user_id":12936487,"start_at":1727426167,"end_at":1727436967,"last_claim":1727426167,"points":0},"daily":{"round_id":"6e16e753-d0ab-432f-9a4b-513930a35471","user_id":12936487,"start_at":1727352557,"last_check_ts":1727376346,"last_check_ymd":20240927,"next_check_ts":1727452800,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}}
2024-09-27 18:50:28 - 200 - {"status":0,"message":"","data":{"available_balance":"3940.00","play_passes":7,"timestamp":1727443230,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"3544e7ed-0478-4a89-8683-cc7287ac7ed7","user_id":32124262,"start_at":1727426162,"end_at":1727436962,"last_claim":1727426162,"points":0},"daily":{"round_id":"93927530-02e8-4a6e-a3a4-92c94df2a303","user_id":32124262,"start_at":1727352309,"last_check_ts":1727376341,"last_check_ymd":20240927,"next_check_ts":1727452800,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}}
2024-09-27 18:50:29 - 200 - {"status":0,"message":"","data":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"3544e7ed-0478-4a89-8683-cc7287ac7ed7","user_id":32124262,"start_at":1727426162,"end_at":1727436962,"last_claim":1727443231,"points":"1080.00","finished":true,"claim_this_time":"1080.00"}}
2024-09-27 18:50:30 - 200 - {"status":0,"message":"","data":{"available_balance":"5020.00","play_passes":7,"timestamp":1727443231,"daily":{"round_id":"93927530-02e8-4a6e-a3a4-92c94df2a303","user_id":32124262,"start_at":1727352309,"last_check_ts":1727376341,"last_check_ymd":20240927,"next_check_ts":1727452800,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}}
2024-09-27 18:50:30 - 200 - {"status":0,"message":"","data":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"32c2b357-f02b-4ba7-bb0f-2550e08940ee","user_id":32124262,"start_at":1727443231,"end_at":1727454031,"last_claim":1727443231,"points":0}}
2024-09-27 18:50:30 - 200 - {"status":0,"message":"","data":{"available_balance":5020,"play_passes":7,"timestamp":1727443232,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"32c2b357-f02b-4ba7-bb0f-2550e08940ee","user_id":32124262,"start_at":1727443231,"end_at":1727454031,"last_claim":1727443231,"points":0},"daily":{"round_id":"93927530-02e8-4a6e-a3a4-92c94df2a303","user_id":32124262,"start_at":1727352309,"last_check_ts":1727376341,"last_check_ymd":20240927,"next_check_ts":1727452800,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}}
2024-09-27 18:50:34 - 200 - {"status":0,"message":"","data":{"available_balance":"5860.00","play_passes":7,"timestamp":1727443242,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"79682c21-f11f-4cfc-831c-fad6fd4c004f","user_id":12936487,"start_at":1727426167,"end_at":1727436967,"last_claim":1727426167,"points":0},"daily":{"round_id":"6e16e753-d0ab-432f-9a4b-513930a35471","user_id":12936487,"start_at":1727352557,"last_check_ts":1727376346,"last_check_ymd":20240927,"next_check_ts":1727452800,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}}
2024-09-27 18:50:41 - 200 - {"status":0,"message":"","data":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"79682c21-f11f-4cfc-831c-fad6fd4c004f","user_id":12936487,"start_at":1727426167,"end_at":1727436967,"last_claim":1727443242,"points":"1080.00","finished":true,"claim_this_time":"1080.00"}}
2024-09-27 18:50:41 - 200 - {"status":0,"message":"","data":{"available_balance":"6940.00","play_passes":7,"timestamp":1727443243,"daily":{"round_id":"6e16e753-d0ab-432f-9a4b-513930a35471","user_id":12936487,"start_at":1727352557,"last_check_ts":1727376346,"last_check_ymd":20240927,"next_check_ts":1727452800,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}}
2024-09-27 18:50:42 - 200 - {"status":0,"message":"","data":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"fcb423d4-4a5d-42a3-9f06-1ea88b30c53f","user_id":12936487,"start_at":1727443243,"end_at":1727454043,"last_claim":1727443243,"points":0}}
2024-09-27 18:50:42 - 200 - {"status":0,"message":"","data":{"available_balance":6940,"play_passes":7,"timestamp":1727443243,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"fcb423d4-4a5d-42a3-9f06-1ea88b30c53f","user_id":12936487,"start_at":1727443243,"end_at":1727454043,"last_claim":1727443243,"points":0},"daily":{"round_id":"6e16e753-d0ab-432f-9a4b-513930a35471","user_id":12936487,"start_at":1727352557,"last_check_ts":1727376346,"last_check_ymd":20240927,"next_check_ts":1727452800,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}}
2024-09-27 23:54:35 - 200 - {"status":0,"message":"","data":{"available_balance":"5020.00","play_passes":7,"timestamp":1727461477,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"32c2b357-f02b-4ba7-bb0f-2550e08940ee","user_id":32124262,"start_at":1727443231,"end_at":1727454031,"last_claim":1727443231,"points":0},"daily":{"round_id":"93927530-02e8-4a6e-a3a4-92c94df2a303","user_id":32124262,"start_at":1727352309,"last_check_ts":1727376341,"last_check_ymd":20240927,"next_check_ts":1727452800,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}}
2024-09-27 23:54:36 - 200 - {"status":400,"message":"already_check","data":{"round_id":"93927530-02e8-4a6e-a3a4-92c94df2a303","user_id":32124262,"start_at":1727352309,"last_check_ts":1727376341,"last_check_ymd":20240927,"next_check_ts":1727452800,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}
2024-09-27 23:54:36 - 200 - {"status":0,"message":"","data":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"32c2b357-f02b-4ba7-bb0f-2550e08940ee","user_id":32124262,"start_at":1727443231,"end_at":1727454031,"last_claim":1727461478,"points":"1080.00","finished":true,"claim_this_time":"1080.00"}}
2024-09-27 23:54:37 - 200 - {"status":0,"message":"","data":{"available_balance":"6100.00","play_passes":7,"timestamp":1727461478,"daily":{"round_id":"93927530-02e8-4a6e-a3a4-92c94df2a303","user_id":32124262,"start_at":1727352309,"last_check_ts":1727376341,"last_check_ymd":20240927,"next_check_ts":1727452800,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}}
2024-09-27 23:54:37 - 200 - {"status":400,"message":"already_check","data":{"round_id":"93927530-02e8-4a6e-a3a4-92c94df2a303","user_id":32124262,"start_at":1727352309,"last_check_ts":1727376341,"last_check_ymd":20240927,"next_check_ts":1727452800,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}
2024-09-27 23:54:37 - 200 - {"status":0,"message":"","data":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"a15690f9-6c50-4d6d-97e4-4dd997846df3","user_id":32124262,"start_at":1727461479,"end_at":1727472279,"last_claim":1727461479,"points":0}}
2024-09-27 23:54:37 - 200 - {"status":0,"message":"","data":{"available_balance":6100,"play_passes":7,"timestamp":1727461479,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"a15690f9-6c50-4d6d-97e4-4dd997846df3","user_id":32124262,"start_at":1727461479,"end_at":1727472279,"last_claim":1727461479,"points":0},"daily":{"round_id":"93927530-02e8-4a6e-a3a4-92c94df2a303","user_id":32124262,"start_at":1727352309,"last_check_ts":1727376341,"last_check_ymd":20240927,"next_check_ts":1727452800,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}}
2024-09-27 23:54:38 - 200 - {"status":400,"message":"already_check","data":{"round_id":"93927530-02e8-4a6e-a3a4-92c94df2a303","user_id":32124262,"start_at":1727352309,"last_check_ts":1727376341,"last_check_ymd":20240927,"next_check_ts":1727452800,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}
2024-09-27 23:54:41 - 200 - {"status":0,"message":"","data":{"available_balance":"6940.00","play_passes":7,"timestamp":1727461483,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"fcb423d4-4a5d-42a3-9f06-1ea88b30c53f","user_id":12936487,"start_at":1727443243,"end_at":1727454043,"last_claim":1727443243,"points":0},"daily":{"round_id":"6e16e753-d0ab-432f-9a4b-513930a35471","user_id":12936487,"start_at":1727352557,"last_check_ts":1727376346,"last_check_ymd":20240927,"next_check_ts":1727452800,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}}
2024-09-27 23:54:42 - 200 - {"status":400,"message":"already_check","data":{"round_id":"6e16e753-d0ab-432f-9a4b-513930a35471","user_id":12936487,"start_at":1727352557,"last_check_ts":1727376346,"last_check_ymd":20240927,"next_check_ts":1727452800,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}
2024-09-27 23:54:42 - 200 - {"status":0,"message":"","data":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"fcb423d4-4a5d-42a3-9f06-1ea88b30c53f","user_id":12936487,"start_at":1727443243,"end_at":1727454043,"last_claim":1727461483,"points":"1080.00","finished":true,"claim_this_time":"1080.00"}}
2024-09-27 23:54:42 - 200 - {"status":0,"message":"","data":{"available_balance":"8020.00","play_passes":7,"timestamp":1727461484,"daily":{"round_id":"6e16e753-d0ab-432f-9a4b-513930a35471","user_id":12936487,"start_at":1727352557,"last_check_ts":1727376346,"last_check_ymd":20240927,"next_check_ts":1727452800,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}}
2024-09-27 23:54:42 - 200 - {"status":400,"message":"already_check","data":{"round_id":"6e16e753-d0ab-432f-9a4b-513930a35471","user_id":12936487,"start_at":1727352557,"last_check_ts":1727376346,"last_check_ymd":20240927,"next_check_ts":1727452800,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}
2024-09-27 23:54:43 - 200 - {"status":0,"message":"","data":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"b666b70f-5b67-48a7-9724-c33e5b1571f8","user_id":12936487,"start_at":1727461484,"end_at":1727472284,"last_claim":1727461484,"points":0}}
2024-09-27 23:54:43 - 200 - {"status":0,"message":"","data":{"available_balance":8020,"play_passes":7,"timestamp":1727461484,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"b666b70f-5b67-48a7-9724-c33e5b1571f8","user_id":12936487,"start_at":1727461484,"end_at":1727472284,"last_claim":1727461484,"points":0},"daily":{"round_id":"6e16e753-d0ab-432f-9a4b-513930a35471","user_id":12936487,"start_at":1727352557,"last_check_ts":1727376346,"last_check_ymd":20240927,"next_check_ts":1727452800,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}}
2024-09-27 23:54:43 - 200 - {"status":400,"message":"already_check","data":{"round_id":"6e16e753-d0ab-432f-9a4b-513930a35471","user_id":12936487,"start_at":1727352557,"last_check_ts":1727376346,"last_check_ymd":20240927,"next_check_ts":1727452800,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}
2024-09-28 00:24:44 - 200 - {"status":0,"message":"","data":{"available_balance":6100,"play_passes":7,"timestamp":1727463286,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"a15690f9-6c50-4d6d-97e4-4dd997846df3","user_id":32124262,"start_at":1727461479,"end_at":1727472279,"last_claim":1727461479,"points":0},"daily":{"round_id":"93927530-02e8-4a6e-a3a4-92c94df2a303","user_id":32124262,"start_at":1727352309,"last_check_ts":1727376341,"last_check_ymd":20240927,"next_check_ts":1727452800,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}}
2024-09-28 00:24:45 - 200 - {"status":400,"message":"already_check","data":{"round_id":"93927530-02e8-4a6e-a3a4-92c94df2a303","user_id":32124262,"start_at":1727352309,"last_check_ts":1727376341,"last_check_ymd":20240927,"next_check_ts":1727452800,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}
2024-09-28 00:24:45 - 200 - {"status":0,"message":"","data":{"round_id":"23540248-0357-4785-8a42-1dfbf93f0e82","user_id":32124262,"start_at":1727463287,"end_at":1727463317}}
2024-09-28 00:25:16 - 200 - {"status":0,"message":"","data":{"round_id":"23540248-0357-4785-8a42-1dfbf93f0e82","user_id":32124262,"start_at":1727463287,"end_at":1727463317,"points":119}}
2024-09-28 00:25:16 - 200 - {"status":0,"message":"","data":{"round_id":"57f6afa8-c430-44dc-a638-4f04c5625459","user_id":32124262,"start_at":1727463317,"end_at":1727463347}}
2024-09-28 00:25:47 - 200 - {"status":0,"message":"","data":{"round_id":"57f6afa8-c430-44dc-a638-4f04c5625459","user_id":32124262,"start_at":1727463317,"end_at":1727463347,"points":122}}
2024-09-28 00:25:47 - 200 - {"status":0,"message":"","data":{"round_id":"c9a5464a-28b5-4828-b8a4-fb1a8ebd3340","user_id":32124262,"start_at":1727463349,"end_at":1727463379}}
2024-09-28 00:26:27 - 200 - {"status":0,"message":"","data":{"round_id":"c9a5464a-28b5-4828-b8a4-fb1a8ebd3340","user_id":32124262,"start_at":1727463349,"end_at":1727463379,"points":146}}
2024-09-28 00:26:27 - 200 - {"status":0,"message":"","data":{"round_id":"47b84874-b115-492d-b315-787d9b392f4d","user_id":32124262,"start_at":1727463389,"end_at":1727463419}}
2024-09-28 00:26:58 - 200 - {"status":0,"message":"","data":{"round_id":"47b84874-b115-492d-b315-787d9b392f4d","user_id":32124262,"start_at":1727463389,"end_at":1727463419,"points":114}}
2024-09-28 00:26:58 - 200 - {"status":0,"message":"","data":{"round_id":"a84066b5-3958-4e17-8d05-bf3ff2c7a618","user_id":32124262,"start_at":1727463420,"end_at":1727463450}}
2024-09-28 00:27:28 - 200 - {"status":0,"message":"","data":{"round_id":"a84066b5-3958-4e17-8d05-bf3ff2c7a618","user_id":32124262,"start_at":1727463420,"end_at":1727463450,"points":123}}
2024-09-28 00:27:29 - 200 - {"status":0,"message":"","data":{"round_id":"d98dfaba-3bd3-48e9-b793-4b506700b2b5","user_id":32124262,"start_at":1727463450,"end_at":1727463480}}
2024-09-28 00:27:59 - 200 - {"status":0,"message":"","data":{"round_id":"d98dfaba-3bd3-48e9-b793-4b506700b2b5","user_id":32124262,"start_at":1727463450,"end_at":1727463480,"points":140}}
2024-09-28 00:28:00 - 200 - {"status":0,"message":"","data":{"round_id":"d733e8d3-275a-473c-b34a-dcb372864b3b","user_id":32124262,"start_at":1727463481,"end_at":1727463511}}
2024-09-28 00:28:30 - 200 - {"status":0,"message":"","data":{"round_id":"d733e8d3-275a-473c-b34a-dcb372864b3b","user_id":32124262,"start_at":1727463481,"end_at":1727463511,"points":107}}
2024-09-28 00:28:30 - 200 - {"status":0,"message":"","data":{"available_balance":"6971.00","play_passes":0,"timestamp":1727463512,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"a15690f9-6c50-4d6d-97e4-4dd997846df3","user_id":32124262,"start_at":1727461479,"end_at":1727472279,"last_claim":1727461479,"points":0},"daily":{"round_id":"93927530-02e8-4a6e-a3a4-92c94df2a303","user_id":32124262,"start_at":1727352309,"last_check_ts":1727376341,"last_check_ymd":20240927,"next_check_ts":1727452800,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}}
2024-09-28 00:28:31 - 200 - {"status":400,"message":"already_check","data":{"round_id":"93927530-02e8-4a6e-a3a4-92c94df2a303","user_id":32124262,"start_at":1727352309,"last_check_ts":1727376341,"last_check_ymd":20240927,"next_check_ts":1727452800,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}
2024-09-28 00:28:34 - 200 - {"status":0,"message":"","data":{"available_balance":8020,"play_passes":7,"timestamp":1727463516,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"b666b70f-5b67-48a7-9724-c33e5b1571f8","user_id":12936487,"start_at":1727461484,"end_at":1727472284,"last_claim":1727461484,"points":0},"daily":{"round_id":"6e16e753-d0ab-432f-9a4b-513930a35471","user_id":12936487,"start_at":1727352557,"last_check_ts":1727376346,"last_check_ymd":20240927,"next_check_ts":1727452800,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}}
2024-09-28 00:28:35 - 200 - {"status":400,"message":"already_check","data":{"round_id":"6e16e753-d0ab-432f-9a4b-513930a35471","user_id":12936487,"start_at":1727352557,"last_check_ts":1727376346,"last_check_ymd":20240927,"next_check_ts":1727452800,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}
2024-09-28 00:28:35 - 200 - {"status":0,"message":"","data":{"round_id":"e491abc1-919e-4a35-ac2b-38ed619012bc","user_id":12936487,"start_at":1727463516,"end_at":1727463546}}
2024-09-28 00:29:05 - 200 - {"status":0,"message":"","data":{"round_id":"e491abc1-919e-4a35-ac2b-38ed619012bc","user_id":12936487,"start_at":1727463516,"end_at":1727463546,"points":117}}
2024-09-28 00:29:06 - 200 - {"status":0,"message":"","data":{"round_id":"0443a667-4e5e-42db-bb05-57782668f62b","user_id":12936487,"start_at":1727463547,"end_at":1727463577}}
2024-09-28 00:29:36 - 200 - {"status":0,"message":"","data":{"round_id":"0443a667-4e5e-42db-bb05-57782668f62b","user_id":12936487,"start_at":1727463547,"end_at":1727463577,"points":125}}
2024-09-28 00:29:36 - 200 - {"status":0,"message":"","data":{"round_id":"2e8a8546-fbe5-4943-9b6c-ee1d77a5e4b4","user_id":12936487,"start_at":1727463578,"end_at":1727463608}}
2024-09-28 00:30:07 - 200 - {"status":0,"message":"","data":{"round_id":"2e8a8546-fbe5-4943-9b6c-ee1d77a5e4b4","user_id":12936487,"start_at":1727463578,"end_at":1727463608,"points":140}}
2024-09-28 00:30:07 - 200 - {"status":0,"message":"","data":{"round_id":"098e6592-975d-46fa-9716-f5bd4991c838","user_id":12936487,"start_at":1727463608,"end_at":1727463638}}
2024-09-28 00:30:38 - 200 - {"status":0,"message":"","data":{"round_id":"098e6592-975d-46fa-9716-f5bd4991c838","user_id":12936487,"start_at":1727463608,"end_at":1727463638,"points":132}}
2024-09-28 00:30:38 - 200 - {"status":0,"message":"","data":{"round_id":"1bae7773-2c5b-40d5-9abe-8fe7f1754215","user_id":12936487,"start_at":1727463639,"end_at":1727463669}}
2024-09-28 00:31:08 - 200 - {"status":0,"message":"","data":{"round_id":"1bae7773-2c5b-40d5-9abe-8fe7f1754215","user_id":12936487,"start_at":1727463639,"end_at":1727463669,"points":145}}
2024-09-28 00:31:09 - 200 - {"status":0,"message":"","data":{"round_id":"40860eab-5684-470f-a9aa-6640c97ca93a","user_id":12936487,"start_at":1727463670,"end_at":1727463700}}
2024-09-28 00:31:39 - 200 - {"status":0,"message":"","data":{"round_id":"40860eab-5684-470f-a9aa-6640c97ca93a","user_id":12936487,"start_at":1727463670,"end_at":1727463700,"points":137}}
2024-09-28 00:31:39 - 200 - {"status":0,"message":"","data":{"round_id":"281b7a32-952d-4c53-bc11-c554594ebeed","user_id":12936487,"start_at":1727463701,"end_at":1727463731}}
2024-09-28 00:32:15 - 200 - {"status":0,"message":"","data":{"round_id":"281b7a32-952d-4c53-bc11-c554594ebeed","user_id":12936487,"start_at":1727463701,"end_at":1727463731,"points":122}}
2024-09-28 00:32:16 - 200 - {"status":0,"message":"","data":{"available_balance":"8938.00","play_passes":0,"timestamp":1727463737,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"b666b70f-5b67-48a7-9724-c33e5b1571f8","user_id":12936487,"start_at":1727461484,"end_at":1727472284,"last_claim":1727461484,"points":0},"daily":{"round_id":"6e16e753-d0ab-432f-9a4b-513930a35471","user_id":12936487,"start_at":1727352557,"last_check_ts":1727376346,"last_check_ymd":20240927,"next_check_ts":1727452800,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}}
2024-09-28 00:32:16 - 200 - {"status":400,"message":"already_check","data":{"round_id":"6e16e753-d0ab-432f-9a4b-513930a35471","user_id":12936487,"start_at":1727352557,"last_check_ts":1727376346,"last_check_ymd":20240927,"next_check_ts":1727452800,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}
2024-09-28 03:22:26 - 200 - {"status":0,"message":"","data":{"available_balance":"11971.00","play_passes":0,"timestamp":1727473948,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"a15690f9-6c50-4d6d-97e4-4dd997846df3","user_id":32124262,"start_at":1727461479,"end_at":1727472279,"last_claim":1727461479,"points":0},"daily":{"round_id":"93927530-02e8-4a6e-a3a4-92c94df2a303","user_id":32124262,"start_at":1727352309,"last_check_ts":1727376341,"last_check_ymd":20240927,"next_check_ts":1727452800,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}}
2024-09-28 03:22:27 - 200 - {"status":400,"message":"already_check","data":{"round_id":"93927530-02e8-4a6e-a3a4-92c94df2a303","user_id":32124262,"start_at":1727352309,"last_check_ts":1727376341,"last_check_ymd":20240927,"next_check_ts":1727452800,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}
2024-09-28 03:22:28 - 200 - {"status":0,"message":"","data":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"a15690f9-6c50-4d6d-97e4-4dd997846df3","user_id":32124262,"start_at":1727461479,"end_at":1727472279,"last_claim":1727473949,"points":"1080.00","finished":true,"claim_this_time":"1080.00"}}
2024-09-28 03:22:28 - 200 - {"status":0,"message":"","data":{"available_balance":"13051.00","play_passes":0,"timestamp":1727473949,"daily":{"round_id":"93927530-02e8-4a6e-a3a4-92c94df2a303","user_id":32124262,"start_at":1727352309,"last_check_ts":1727376341,"last_check_ymd":20240927,"next_check_ts":1727452800,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}}
2024-09-28 03:22:28 - 200 - {"status":400,"message":"already_check","data":{"round_id":"93927530-02e8-4a6e-a3a4-92c94df2a303","user_id":32124262,"start_at":1727352309,"last_check_ts":1727376341,"last_check_ymd":20240927,"next_check_ts":1727452800,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}
2024-09-28 03:22:29 - 200 - {"status":0,"message":"","data":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"578c5c96-3aa4-4a6c-8ce0-d7e091166cd4","user_id":32124262,"start_at":1727473950,"end_at":1727484750,"last_claim":1727473950,"points":0}}
2024-09-28 03:22:29 - 200 - {"status":0,"message":"","data":{"available_balance":13051,"play_passes":0,"timestamp":1727473950,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"578c5c96-3aa4-4a6c-8ce0-d7e091166cd4","user_id":32124262,"start_at":1727473950,"end_at":1727484750,"last_claim":1727473950,"points":0},"daily":{"round_id":"93927530-02e8-4a6e-a3a4-92c94df2a303","user_id":32124262,"start_at":1727352309,"last_check_ts":1727376341,"last_check_ymd":20240927,"next_check_ts":1727452800,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}}
2024-09-28 03:22:29 - 200 - {"status":400,"message":"already_check","data":{"round_id":"93927530-02e8-4a6e-a3a4-92c94df2a303","user_id":32124262,"start_at":1727352309,"last_check_ts":1727376341,"last_check_ymd":20240927,"next_check_ts":1727452800,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}
2024-09-28 03:22:33 - 200 - {"status":0,"message":"","data":{"available_balance":"8938.00","play_passes":0,"timestamp":1727473954,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"b666b70f-5b67-48a7-9724-c33e5b1571f8","user_id":12936487,"start_at":1727461484,"end_at":1727472284,"last_claim":1727461484,"points":0},"daily":{"round_id":"6e16e753-d0ab-432f-9a4b-513930a35471","user_id":12936487,"start_at":1727352557,"last_check_ts":1727376346,"last_check_ymd":20240927,"next_check_ts":1727452800,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}}
2024-09-28 03:22:33 - 200 - {"status":400,"message":"already_check","data":{"round_id":"6e16e753-d0ab-432f-9a4b-513930a35471","user_id":12936487,"start_at":1727352557,"last_check_ts":1727376346,"last_check_ymd":20240927,"next_check_ts":1727452800,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}
2024-09-28 03:22:34 - 200 - {"status":0,"message":"","data":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"b666b70f-5b67-48a7-9724-c33e5b1571f8","user_id":12936487,"start_at":1727461484,"end_at":1727472284,"last_claim":1727473955,"points":"1080.00","finished":true,"claim_this_time":"1080.00"}}
2024-09-28 03:22:34 - 200 - {"status":0,"message":"","data":{"available_balance":"10018.00","play_passes":0,"timestamp":1727473956,"daily":{"round_id":"6e16e753-d0ab-432f-9a4b-513930a35471","user_id":12936487,"start_at":1727352557,"last_check_ts":1727376346,"last_check_ymd":20240927,"next_check_ts":1727452800,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}}
2024-09-28 03:22:34 - 200 - {"status":400,"message":"already_check","data":{"round_id":"6e16e753-d0ab-432f-9a4b-513930a35471","user_id":12936487,"start_at":1727352557,"last_check_ts":1727376346,"last_check_ymd":20240927,"next_check_ts":1727452800,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}
2024-09-28 03:22:35 - 200 - {"status":0,"message":"","data":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"558fef00-6486-4900-98b8-9ff25ca28a4b","user_id":12936487,"start_at":1727473956,"end_at":1727484756,"last_claim":1727473956,"points":0}}
2024-09-28 03:22:35 - 200 - {"status":0,"message":"","data":{"available_balance":10018,"play_passes":0,"timestamp":1727473957,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"558fef00-6486-4900-98b8-9ff25ca28a4b","user_id":12936487,"start_at":1727473956,"end_at":1727484756,"last_claim":1727473956,"points":0},"daily":{"round_id":"6e16e753-d0ab-432f-9a4b-513930a35471","user_id":12936487,"start_at":1727352557,"last_check_ts":1727376346,"last_check_ymd":20240927,"next_check_ts":1727452800,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}}
2024-09-28 03:22:35 - 200 - {"status":400,"message":"already_check","data":{"round_id":"6e16e753-d0ab-432f-9a4b-513930a35471","user_id":12936487,"start_at":1727352557,"last_check_ts":1727376346,"last_check_ymd":20240927,"next_check_ts":1727452800,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}
2024-09-28 09:10:56 - 200 - {"status":0,"message":"","data":{"available_balance":"19103.00","play_passes":0,"timestamp":1727494858,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"1dd7fac6-b107-4ecd-adb1-cb651f4d23b8","user_id":32124262,"start_at":1727486592,"end_at":1727497392,"last_claim":1727486592,"points":0},"daily":{"round_id":"93927530-02e8-4a6e-a3a4-92c94df2a303","user_id":32124262,"start_at":1727352309,"last_check_ts":1727457791,"last_check_ymd":20240928,"next_check_ts":1727539200,"check_counter":3,"today_points":4000,"today_game":3,"diff":1}}}
2024-09-28 09:10:59 - 200 - {"status":0,"message":"","data":{"available_balance":"15936.00","play_passes":0,"timestamp":1727494862,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"07799f46-a710-4318-a720-012ef91b4f97","user_id":12936487,"start_at":1727486841,"end_at":1727497641,"last_claim":1727486841,"points":0},"daily":{"round_id":"6e16e753-d0ab-432f-9a4b-513930a35471","user_id":12936487,"start_at":1727352557,"last_check_ts":1727458040,"last_check_ymd":20240928,"next_check_ts":1727539200,"check_counter":3,"today_points":4000,"today_game":3,"diff":1}}}
2024-09-28 13:37:47 - 200 - {"status":0,"message":"","data":{"available_balance":"19103.00","play_passes":0,"timestamp":1727510869,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"1dd7fac6-b107-4ecd-adb1-cb651f4d23b8","user_id":32124262,"start_at":1727486592,"end_at":1727497392,"last_claim":1727486592,"points":0},"daily":{"round_id":"93927530-02e8-4a6e-a3a4-92c94df2a303","user_id":32124262,"start_at":1727352309,"last_check_ts":1727457791,"last_check_ymd":20240928,"next_check_ts":1727539200,"check_counter":3,"today_points":4000,"today_game":3,"diff":1}}}
2024-09-28 13:37:48 - 200 - {"status":0,"message":"","data":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"1dd7fac6-b107-4ecd-adb1-cb651f4d23b8","user_id":32124262,"start_at":1727486592,"end_at":1727497392,"last_claim":1727510869,"points":"1080.00","finished":true,"claim_this_time":"1080.00"}}
2024-09-28 13:37:48 - 200 - {"status":0,"message":"","data":{"available_balance":"20183.00","play_passes":0,"timestamp":1727510870,"daily":{"round_id":"93927530-02e8-4a6e-a3a4-92c94df2a303","user_id":32124262,"start_at":1727352309,"last_check_ts":1727457791,"last_check_ymd":20240928,"next_check_ts":1727539200,"check_counter":3,"today_points":4000,"today_game":3,"diff":1}}}
2024-09-28 13:37:48 - 200 - {"status":0,"message":"","data":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"ec7c9818-8c1d-4626-9681-2204c8687ee7","user_id":32124262,"start_at":1727510870,"end_at":1727521670,"last_claim":1727510870,"points":0}}
2024-09-28 13:37:48 - 200 - {"status":0,"message":"","data":{"available_balance":20183,"play_passes":0,"timestamp":1727510870,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"ec7c9818-8c1d-4626-9681-2204c8687ee7","user_id":32124262,"start_at":1727510870,"end_at":1727521670,"last_claim":1727510870,"points":0},"daily":{"round_id":"93927530-02e8-4a6e-a3a4-92c94df2a303","user_id":32124262,"start_at":1727352309,"last_check_ts":1727457791,"last_check_ymd":20240928,"next_check_ts":1727539200,"check_counter":3,"today_points":4000,"today_game":3,"diff":1}}}
2024-09-28 13:37:52 - 200 - {"status":0,"message":"","data":{"available_balance":"15936.00","play_passes":0,"timestamp":1727510874,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"07799f46-a710-4318-a720-012ef91b4f97","user_id":12936487,"start_at":1727486841,"end_at":1727497641,"last_claim":1727486841,"points":0},"daily":{"round_id":"6e16e753-d0ab-432f-9a4b-513930a35471","user_id":12936487,"start_at":1727352557,"last_check_ts":1727458040,"last_check_ymd":20240928,"next_check_ts":1727539200,"check_counter":3,"today_points":4000,"today_game":3,"diff":1}}}
2024-09-28 13:37:52 - 200 - {"status":0,"message":"","data":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"07799f46-a710-4318-a720-012ef91b4f97","user_id":12936487,"start_at":1727486841,"end_at":1727497641,"last_claim":1727510874,"points":"1080.00","finished":true,"claim_this_time":"1080.00"}}
2024-09-28 13:37:53 - 200 - {"status":0,"message":"","data":{"available_balance":"17016.00","play_passes":0,"timestamp":1727510875,"daily":{"round_id":"6e16e753-d0ab-432f-9a4b-513930a35471","user_id":12936487,"start_at":1727352557,"last_check_ts":1727458040,"last_check_ymd":20240928,"next_check_ts":1727539200,"check_counter":3,"today_points":4000,"today_game":3,"diff":1}}}
2024-09-28 13:37:53 - 200 - {"status":0,"message":"","data":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"b2c6ba9a-3612-434a-9fbf-077ae1bbb772","user_id":12936487,"start_at":1727510875,"end_at":1727521675,"last_claim":1727510875,"points":0}}
2024-09-28 13:37:54 - 200 - {"status":0,"message":"","data":{"available_balance":17016,"play_passes":0,"timestamp":1727510875,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"b2c6ba9a-3612-434a-9fbf-077ae1bbb772","user_id":12936487,"start_at":1727510875,"end_at":1727521675,"last_claim":1727510875,"points":0},"daily":{"round_id":"6e16e753-d0ab-432f-9a4b-513930a35471","user_id":12936487,"start_at":1727352557,"last_check_ts":1727458040,"last_check_ymd":20240928,"next_check_ts":1727539200,"check_counter":3,"today_points":4000,"today_game":3,"diff":1}}}
2024-09-29 16:14:55 - 200 - {"status":0,"message":"","data":{"available_balance":"33583.00","play_passes":9,"timestamp":1727606697,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"892ff354-730b-4584-981b-99cd1db176a8","user_id":32124262,"start_at":1727601527,"end_at":1727612327,"last_claim":1727601527,"points":0},"daily":{"round_id":"93927530-02e8-4a6e-a3a4-92c94df2a303","user_id":32124262,"start_at":1727352309,"last_check_ts":1727545004,"last_check_ymd":20240929,"next_check_ts":1727625600,"check_counter":4,"today_points":3000,"today_game":4,"diff":1}}}
2024-09-29 16:14:55 - 200 - {"status":0,"message":"","data":{"round_id":"52c2c4c5-a5ee-4ad3-b584-260a826da012","user_id":32124262,"start_at":1727606697,"end_at":1727606727}}
2024-09-29 16:15:26 - 200 - {"status":0,"message":"","data":{"round_id":"52c2c4c5-a5ee-4ad3-b584-260a826da012","user_id":32124262,"start_at":1727606697,"end_at":1727606727,"points":117}}
2024-09-29 16:15:26 - 200 - {"status":0,"message":"","data":{"round_id":"7cd14b1a-d9cc-4f17-945d-23cb7f94ef6e","user_id":32124262,"start_at":1727606728,"end_at":1727606758}}
2024-09-29 16:15:57 - 200 - {"status":0,"message":"","data":{"round_id":"7cd14b1a-d9cc-4f17-945d-23cb7f94ef6e","user_id":32124262,"start_at":1727606728,"end_at":1727606758,"points":118}}
2024-09-29 16:15:58 - 200 - {"status":0,"message":"","data":{"round_id":"c23fd16c-1036-499c-94a5-39972f129103","user_id":32124262,"start_at":1727606760,"end_at":1727606790}}
2024-09-29 16:18:18 - 200 - {"status":0,"message":"","data":{"round_id":"c23fd16c-1036-499c-94a5-39972f129103","user_id":32124262,"start_at":1727606760,"end_at":1727606790,"points":150}}
2024-09-29 16:18:18 - 200 - {"status":0,"message":"","data":{"round_id":"1a431e7e-1607-4408-a6e9-7697b3009eb2","user_id":32124262,"start_at":1727606900,"end_at":1727606930}}
2024-09-29 16:18:49 - 200 - {"status":0,"message":"","data":{"round_id":"1a431e7e-1607-4408-a6e9-7697b3009eb2","user_id":32124262,"start_at":1727606900,"end_at":1727606930,"points":139}}
2024-09-29 16:18:49 - 200 - {"status":0,"message":"","data":{"round_id":"b928f75d-3182-4fe6-a0f4-a1a27f54b82e","user_id":32124262,"start_at":1727606931,"end_at":1727606961}}
2024-09-29 16:19:19 - 200 - {"status":0,"message":"","data":{"round_id":"b928f75d-3182-4fe6-a0f4-a1a27f54b82e","user_id":32124262,"start_at":1727606931,"end_at":1727606961,"points":116}}
2024-09-29 16:19:20 - 200 - {"status":0,"message":"","data":{"round_id":"ff5d3c52-0201-4455-a65b-273ffc2edb27","user_id":32124262,"start_at":1727606962,"end_at":1727606992}}
2024-09-29 16:20:56 - 200 - {"status":0,"message":"","data":{"round_id":"ff5d3c52-0201-4455-a65b-273ffc2edb27","user_id":32124262,"start_at":1727606962,"end_at":1727606992,"points":117}}
2024-09-29 16:20:56 - 200 - {"status":0,"message":"","data":{"round_id":"a5b9e0eb-bb3f-40be-984b-3fd6ea6bef5a","user_id":32124262,"start_at":1727607058,"end_at":1727607088}}
2024-09-29 16:21:26 - 200 - {"status":0,"message":"","data":{"round_id":"a5b9e0eb-bb3f-40be-984b-3fd6ea6bef5a","user_id":32124262,"start_at":1727607058,"end_at":1727607088,"points":138}}
2024-09-29 16:21:27 - 200 - {"status":0,"message":"","data":{"round_id":"0c8bffc8-f9d9-4a07-8c45-956dee535e16","user_id":32124262,"start_at":1727607089,"end_at":1727607119}}
2024-09-29 16:24:37 - 200 - {"status":0,"message":"","data":{"round_id":"0c8bffc8-f9d9-4a07-8c45-956dee535e16","user_id":32124262,"start_at":1727607089,"end_at":1727607119,"points":129}}
2024-09-29 16:24:38 - 200 - {"status":0,"message":"","data":{"round_id":"d560df67-bf4e-48db-8490-bc181fc208c8","user_id":32124262,"start_at":1727607280,"end_at":1727607310}}
2024-09-29 16:25:08 - 200 - {"status":0,"message":"","data":{"round_id":"d560df67-bf4e-48db-8490-bc181fc208c8","user_id":32124262,"start_at":1727607280,"end_at":1727607310,"points":123}}
2024-09-29 16:25:09 - 200 - {"status":0,"message":"","data":{"available_balance":"34730.00","play_passes":0,"timestamp":1727607311,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"892ff354-730b-4584-981b-99cd1db176a8","user_id":32124262,"start_at":1727601527,"end_at":1727612327,"last_claim":1727601527,"points":0},"daily":{"round_id":"93927530-02e8-4a6e-a3a4-92c94df2a303","user_id":32124262,"start_at":1727352309,"last_check_ts":1727545004,"last_check_ymd":20240929,"next_check_ts":1727625600,"check_counter":4,"today_points":3000,"today_game":4,"diff":1}}}
2024-09-29 16:25:12 - 200 - {"status":0,"message":"","data":{"available_balance":"25416.00","play_passes":9,"timestamp":1727607314,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"5ff3c849-489b-441c-8601-dc7dd809fbb6","user_id":12936487,"start_at":1727601531,"end_at":1727612331,"last_claim":1727601531,"points":0},"daily":{"round_id":"6e16e753-d0ab-432f-9a4b-513930a35471","user_id":12936487,"start_at":1727352557,"last_check_ts":1727545008,"last_check_ymd":20240929,"next_check_ts":1727625600,"check_counter":4,"today_points":3000,"today_game":4,"diff":1}}}
2024-09-29 16:25:13 - 200 - {"status":0,"message":"","data":{"round_id":"fa50411c-ae46-407a-8a8c-d7d7d4a4182f","user_id":12936487,"start_at":1727607315,"end_at":1727607345}}
2024-09-29 16:26:36 - 200 - {"status":0,"message":"","data":{"round_id":"fa50411c-ae46-407a-8a8c-d7d7d4a4182f","user_id":12936487,"start_at":1727607315,"end_at":1727607345,"points":110}}
2024-09-29 16:26:36 - 200 - {"status":0,"message":"","data":{"round_id":"32f5c46e-a021-49e2-9db7-8c4088b6a33a","user_id":12936487,"start_at":1727607398,"end_at":1727607428}}
2024-09-29 16:29:02 - 200 - {"status":0,"message":"","data":{"round_id":"32f5c46e-a021-49e2-9db7-8c4088b6a33a","user_id":12936487,"start_at":1727607398,"end_at":1727607428,"points":124}}
2024-09-29 16:29:03 - 200 - {"status":0,"message":"","data":{"round_id":"91afad5f-dd80-41d8-9beb-41a1f814b488","user_id":12936487,"start_at":1727607545,"end_at":1727607575}}
2024-09-29 16:32:17 - 200 - {"status":0,"message":"","data":{"round_id":"91afad5f-dd80-41d8-9beb-41a1f814b488","user_id":12936487,"start_at":1727607545,"end_at":1727607575,"points":132}}
2024-09-29 16:32:17 - 200 - {"status":0,"message":"","data":{"round_id":"06308e4f-0114-4e1a-b366-65f6366bdafc","user_id":12936487,"start_at":1727607739,"end_at":1727607769}}
2024-09-29 16:33:46 - 200 - {"status":0,"message":"","data":{"round_id":"06308e4f-0114-4e1a-b366-65f6366bdafc","user_id":12936487,"start_at":1727607739,"end_at":1727607769,"points":108}}
2024-09-29 16:33:46 - 200 - {"status":0,"message":"","data":{"round_id":"f6924e1c-6268-4967-a75c-2b928f0c9c4f","user_id":12936487,"start_at":1727607828,"end_at":1727607858}}
2024-09-29 16:34:32 - 200 - {"status":0,"message":"","data":{"round_id":"f6924e1c-6268-4967-a75c-2b928f0c9c4f","user_id":12936487,"start_at":1727607828,"end_at":1727607858,"points":122}}
2024-09-29 16:34:32 - 200 - {"status":0,"message":"","data":{"round_id":"435e29bf-f37b-4039-a46b-e68dc49fb4cf","user_id":12936487,"start_at":1727607874,"end_at":1727607904}}
2024-09-29 16:35:03 - 200 - {"status":0,"message":"","data":{"round_id":"435e29bf-f37b-4039-a46b-e68dc49fb4cf","user_id":12936487,"start_at":1727607874,"end_at":1727607904,"points":119}}
2024-09-29 16:35:03 - 200 - {"status":0,"message":"","data":{"round_id":"c8cba01c-3e53-4876-a028-df1f8e644c3a","user_id":12936487,"start_at":1727607905,"end_at":1727607935}}
2024-09-29 16:39:41 - 200 - {"status":0,"message":"","data":{"round_id":"c8cba01c-3e53-4876-a028-df1f8e644c3a","user_id":12936487,"start_at":1727607905,"end_at":1727607935,"points":102}}
2024-09-29 16:39:41 - 200 - {"status":0,"message":"","data":{"round_id":"9051e6d8-522c-45fb-b8c7-baa7d369abac","user_id":12936487,"start_at":1727608183,"end_at":1727608213}}
2024-09-29 16:41:46 - 200 - {"status":0,"message":"","data":{"round_id":"9051e6d8-522c-45fb-b8c7-baa7d369abac","user_id":12936487,"start_at":1727608183,"end_at":1727608213,"points":128}}
2024-09-29 16:41:47 - 200 - {"status":0,"message":"","data":{"round_id":"f939199b-c5cf-4457-96c1-b79607ea7548","user_id":12936487,"start_at":1727608309,"end_at":1727608339}}
2024-09-29 16:42:17 - 200 - {"status":0,"message":"","data":{"round_id":"f939199b-c5cf-4457-96c1-b79607ea7548","user_id":12936487,"start_at":1727608309,"end_at":1727608339,"points":128}}
2024-09-29 16:42:17 - 200 - {"status":0,"message":"","data":{"available_balance":"26489.00","play_passes":0,"timestamp":1727608339,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"5ff3c849-489b-441c-8601-dc7dd809fbb6","user_id":12936487,"start_at":1727601531,"end_at":1727612331,"last_claim":1727601531,"points":0},"daily":{"round_id":"6e16e753-d0ab-432f-9a4b-513930a35471","user_id":12936487,"start_at":1727352557,"last_check_ts":1727545008,"last_check_ymd":20240929,"next_check_ts":1727625600,"check_counter":4,"today_points":3000,"today_game":4,"diff":1}}}
2024-09-29 16:42:21 - 200 - {"status":0,"message":"","data":{"tel_id":"6455223001","id":10535485,"fn":"kinjal","ln":"","access_token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlblVzZXIiOnsidGVsX2lkIjoiNjQ1NTIyMzAwMSIsImlkIjoxMDUzNTQ4NSwiZm4iOiJraW5qYWwiLCJsbiI6IiJ9LCJpYXQiOjE3Mjc2MDgzNDMsImV4cCI6MTczMDIwMDM0M30.BZ00l2FDljKBA97jOVT71DygwBZDFJkxKmXz0GqHbuQ","photo_url":"","is_kol":0,"is_new":false}}
2024-09-29 16:42:21 - 200 - {"status":0,"message":"","data":{"available_balance":"8500.00","play_passes":5,"timestamp":1727608344,"daily":null}}
2024-09-29 16:42:22 - 200 - {"status":0,"message":"","data":{"round_id":"912cb072-760f-4c1b-bd5e-f4025d3c68e4","user_id":10535485,"start_at":1727579544,"last_check_ts":1727579544,"last_check_ymd":20240929,"next_check_ts":1727625600,"check_counter":1,"today_points":200,"today_game":1}}
2024-09-29 16:42:22 - 200 - {"status":0,"message":"","data":{"available_balance":"8700.00","play_passes":6,"timestamp":1727608344,"daily":{"round_id":"912cb072-760f-4c1b-bd5e-f4025d3c68e4","user_id":10535485,"start_at":1727579544,"last_check_ts":1727579544,"last_check_ymd":20240929,"next_check_ts":1727625600,"check_counter":1,"today_points":200,"today_game":1}}}
2024-09-29 16:42:23 - 200 - {"status":0,"message":"","data":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"dc5019e7-1d62-418b-ab3a-834bb564547f","user_id":10535485,"start_at":1727608345,"end_at":1727619145,"last_claim":1727608345,"points":0}}
2024-09-29 16:42:23 - 200 - {"status":0,"message":"","data":{"available_balance":8700,"play_passes":6,"timestamp":1727608345,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"dc5019e7-1d62-418b-ab3a-834bb564547f","user_id":10535485,"start_at":1727608345,"end_at":1727619145,"last_claim":1727608345,"points":0},"daily":{"round_id":"912cb072-760f-4c1b-bd5e-f4025d3c68e4","user_id":10535485,"start_at":1727579544,"last_check_ts":1727579544,"last_check_ymd":20240929,"next_check_ts":1727625600,"check_counter":1,"today_points":200,"today_game":1}}}
2024-09-29 16:42:23 - 200 - {"status":0,"message":"","data":{"round_id":"37e779c8-097c-440f-96d6-66e6f225fcf7","user_id":10535485,"start_at":1727608345,"end_at":1727608375}}
2024-09-29 16:42:53 - 200 - {"status":0,"message":"","data":{"round_id":"37e779c8-097c-440f-96d6-66e6f225fcf7","user_id":10535485,"start_at":1727608345,"end_at":1727608375,"points":127}}
2024-09-29 16:42:54 - 200 - {"status":0,"message":"","data":{"round_id":"f2fbb72f-d681-443d-b589-194832da735c","user_id":10535485,"start_at":1727608376,"end_at":1727608406}}
2024-09-29 16:43:24 - 200 - {"status":0,"message":"","data":{"round_id":"f2fbb72f-d681-443d-b589-194832da735c","user_id":10535485,"start_at":1727608376,"end_at":1727608406,"points":123}}
2024-09-29 16:43:24 - 200 - {"status":0,"message":"","data":{"round_id":"f86db0b8-d97e-4ba0-94b3-0b25634ada80","user_id":10535485,"start_at":1727608406,"end_at":1727608436}}
2024-09-29 16:43:55 - 200 - {"status":0,"message":"","data":{"round_id":"f86db0b8-d97e-4ba0-94b3-0b25634ada80","user_id":10535485,"start_at":1727608406,"end_at":1727608436,"points":103}}
2024-09-29 16:43:55 - 200 - {"status":0,"message":"","data":{"round_id":"52e86447-5bda-48cc-8ade-0956d43ae271","user_id":10535485,"start_at":1727608437,"end_at":1727608467}}
2024-09-29 16:44:28 - 200 - {"status":0,"message":"","data":{"round_id":"52e86447-5bda-48cc-8ade-0956d43ae271","user_id":10535485,"start_at":1727608437,"end_at":1727608467,"points":132}}
2024-09-29 16:44:28 - 200 - {"status":0,"message":"","data":{"round_id":"d768470d-acc3-412c-8d9d-757fff319e67","user_id":10535485,"start_at":1727608470,"end_at":1727608500}}
2024-09-29 16:44:58 - 200 - {"status":0,"message":"","data":{"round_id":"d768470d-acc3-412c-8d9d-757fff319e67","user_id":10535485,"start_at":1727608470,"end_at":1727608500,"points":140}}
2024-09-29 16:44:59 - 200 - {"status":0,"message":"","data":{"round_id":"b1c56348-d95e-41cd-9425-ba000acd29d2","user_id":10535485,"start_at":1727608501,"end_at":1727608531}}
2024-09-29 16:45:41 - 200 - {"status":0,"message":"","data":{"round_id":"b1c56348-d95e-41cd-9425-ba000acd29d2","user_id":10535485,"start_at":1727608501,"end_at":1727608531,"points":109}}
2024-09-29 16:45:41 - 200 - {"status":0,"message":"","data":{"available_balance":"9434.00","play_passes":0,"timestamp":1727608543,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"dc5019e7-1d62-418b-ab3a-834bb564547f","user_id":10535485,"start_at":1727608345,"end_at":1727619145,"last_claim":1727608345,"points":0},"daily":{"round_id":"912cb072-760f-4c1b-bd5e-f4025d3c68e4","user_id":10535485,"start_at":1727579544,"last_check_ts":1727579544,"last_check_ymd":20240929,"next_check_ts":1727625600,"check_counter":1,"today_points":200,"today_game":1}}}
2024-09-29 19:00:30 - 200 - {"status":0,"message":"","data":{"available_balance":35810,"play_passes":0,"timestamp":1727616632,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"3a2208d4-e8dc-4bf5-b1d2-018ace671c45","user_id":32124262,"start_at":1727613230,"end_at":1727624030,"last_claim":1727613230,"points":0},"daily":{"round_id":"93927530-02e8-4a6e-a3a4-92c94df2a303","user_id":32124262,"start_at":1727352309,"last_check_ts":1727545004,"last_check_ymd":20240929,"next_check_ts":1727625600,"check_counter":4,"today_points":3000,"today_game":4,"diff":1}}}
2024-09-29 19:00:34 - 200 - {"status":0,"message":"","data":{"available_balance":27569,"play_passes":0,"timestamp":1727616636,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"c150ef39-6e1e-4d46-91a6-0e58ee21ee86","user_id":12936487,"start_at":1727613234,"end_at":1727624034,"last_claim":1727613234,"points":0},"daily":{"round_id":"6e16e753-d0ab-432f-9a4b-513930a35471","user_id":12936487,"start_at":1727352557,"last_check_ts":1727545008,"last_check_ymd":20240929,"next_check_ts":1727625600,"check_counter":4,"today_points":3000,"today_game":4,"diff":1}}}
2024-09-29 19:00:38 - 200 - {"status":0,"message":"","data":{"available_balance":"9434.00","play_passes":0,"timestamp":1727616640,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"dc5019e7-1d62-418b-ab3a-834bb564547f","user_id":10535485,"start_at":1727608345,"end_at":1727619145,"last_claim":1727608345,"points":0},"daily":{"round_id":"912cb072-760f-4c1b-bd5e-f4025d3c68e4","user_id":10535485,"start_at":1727579544,"last_check_ts":1727579544,"last_check_ymd":20240929,"next_check_ts":1727625600,"check_counter":1,"today_points":200,"today_game":1}}}
2024-09-30 02:40:42 - 200 - {"status":0,"message":"","data":{"available_balance":"36890.00","play_passes":0,"timestamp":1727644244,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"279c403d-243d-488d-867d-4ad31924a55c","user_id":32124262,"start_at":1727634191,"end_at":1727644991,"last_claim":1727634191,"points":0},"daily":{"round_id":"93927530-02e8-4a6e-a3a4-92c94df2a303","user_id":32124262,"start_at":1727352309,"last_check_ts":1727545004,"last_check_ymd":20240929,"next_check_ts":1727625600,"check_counter":4,"today_points":3000,"today_game":4,"diff":1}}}
2024-09-30 02:40:42 - 200 - {"status":400,"message":"already_check","data":{"round_id":"93927530-02e8-4a6e-a3a4-92c94df2a303","user_id":32124262,"start_at":1727352309,"last_check_ts":1727545004,"last_check_ymd":20240929,"next_check_ts":1727625600,"check_counter":4,"today_points":3000,"today_game":4,"diff":1}}
2024-09-30 02:40:46 - 200 - {"status":0,"message":"","data":{"available_balance":"28649.00","play_passes":0,"timestamp":1727644249,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"2a319ab5-d6ad-4b77-8205-7e8f4de1cfd4","user_id":12936487,"start_at":1727634196,"end_at":1727644996,"last_claim":1727634196,"points":0},"daily":{"round_id":"6e16e753-d0ab-432f-9a4b-513930a35471","user_id":12936487,"start_at":1727352557,"last_check_ts":1727545008,"last_check_ymd":20240929,"next_check_ts":1727625600,"check_counter":4,"today_points":3000,"today_game":4,"diff":1}}}
2024-09-30 02:40:47 - 200 - {"status":400,"message":"already_check","data":{"round_id":"6e16e753-d0ab-432f-9a4b-513930a35471","user_id":12936487,"start_at":1727352557,"last_check_ts":1727545008,"last_check_ymd":20240929,"next_check_ts":1727625600,"check_counter":4,"today_points":3000,"today_game":4,"diff":1}}
2024-09-30 02:40:50 - 200 - {"status":0,"message":"","data":{"available_balance":"9434.00","play_passes":0,"timestamp":1727644252,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"dc5019e7-1d62-418b-ab3a-834bb564547f","user_id":10535485,"start_at":1727608345,"end_at":1727619145,"last_claim":1727608345,"points":0},"daily":{"round_id":"912cb072-760f-4c1b-bd5e-f4025d3c68e4","user_id":10535485,"start_at":1727579544,"last_check_ts":1727579544,"last_check_ymd":20240929,"next_check_ts":1727625600,"check_counter":1,"today_points":200,"today_game":1}}}
2024-09-30 02:40:51 - 200 - {"status":400,"message":"already_check","data":{"round_id":"912cb072-760f-4c1b-bd5e-f4025d3c68e4","user_id":10535485,"start_at":1727579544,"last_check_ts":1727579544,"last_check_ymd":20240929,"next_check_ts":1727625600,"check_counter":1,"today_points":200,"today_game":1}}
2024-09-30 02:40:51 - 200 - {"status":0,"message":"","data":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"dc5019e7-1d62-418b-ab3a-834bb564547f","user_id":10535485,"start_at":1727608345,"end_at":1727619145,"last_claim":1727644253,"points":"1080.00","finished":true,"claim_this_time":"1080.00"}}
2024-09-30 02:40:51 - 200 - {"status":0,"message":"","data":{"available_balance":"10514.00","play_passes":0,"timestamp":1727644253,"daily":{"round_id":"912cb072-760f-4c1b-bd5e-f4025d3c68e4","user_id":10535485,"start_at":1727579544,"last_check_ts":1727579544,"last_check_ymd":20240929,"next_check_ts":1727625600,"check_counter":1,"today_points":200,"today_game":1}}}
2024-09-30 02:40:51 - 200 - {"status":400,"message":"already_check","data":{"round_id":"912cb072-760f-4c1b-bd5e-f4025d3c68e4","user_id":10535485,"start_at":1727579544,"last_check_ts":1727579544,"last_check_ymd":20240929,"next_check_ts":1727625600,"check_counter":1,"today_points":200,"today_game":1}}
2024-09-30 02:40:52 - 200 - {"status":0,"message":"","data":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"d1fc1a0a-e081-490a-a924-097294ee7293","user_id":10535485,"start_at":1727644254,"end_at":1727655054,"last_claim":1727644254,"points":0}}
2024-09-30 02:40:52 - 200 - {"status":0,"message":"","data":{"available_balance":10514,"play_passes":0,"timestamp":1727644254,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"d1fc1a0a-e081-490a-a924-097294ee7293","user_id":10535485,"start_at":1727644254,"end_at":1727655054,"last_claim":1727644254,"points":0},"daily":{"round_id":"912cb072-760f-4c1b-bd5e-f4025d3c68e4","user_id":10535485,"start_at":1727579544,"last_check_ts":1727579544,"last_check_ymd":20240929,"next_check_ts":1727625600,"check_counter":1,"today_points":200,"today_game":1}}}
2024-09-30 02:40:52 - 200 - {"status":400,"message":"already_check","data":{"round_id":"912cb072-760f-4c1b-bd5e-f4025d3c68e4","user_id":10535485,"start_at":1727579544,"last_check_ts":1727579544,"last_check_ymd":20240929,"next_check_ts":1727625600,"check_counter":1,"today_points":200,"today_game":1}}
2024-09-30 02:40:56 - 200 - {"status":0,"message":"","data":{"tel_id":"6522875238","id":15231956,"fn":"Vidya","ln":"Krishna","access_token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlblVzZXIiOnsidGVsX2lkIjoiNjUyMjg3NTIzOCIsImlkIjoxNTIzMTk1NiwiZm4iOiJWaWR5YSIsImxuIjoiS3Jpc2huYSJ9LCJpYXQiOjE3Mjc2NDQyNTgsImV4cCI6MTczMDIzNjI1OH0.qLqBbT4nPF_cXZVDCHLjp40uDjPEtj4rYmZjR7y44NM","photo_url":"","is_kol":0,"is_new":false}}
2024-09-30 02:40:56 - 200 - {"status":0,"message":"","data":{"available_balance":"3000.00","play_passes":5,"timestamp":1727644258,"daily":null}}
2024-09-30 02:40:56 - 200 - {"status":0,"message":"","data":{"round_id":"33de41c2-b988-405b-b2d6-dc318db03b20","user_id":15231956,"start_at":1727615459,"last_check_ts":1727615459,"last_check_ymd":20240929,"next_check_ts":1727625600,"check_counter":1,"today_points":200,"today_game":1}}
2024-09-30 02:40:57 - 200 - {"status":0,"message":"","data":{"available_balance":"3200.00","play_passes":6,"timestamp":1727644259,"daily":{"round_id":"33de41c2-b988-405b-b2d6-dc318db03b20","user_id":15231956,"start_at":1727615459,"last_check_ts":1727615459,"last_check_ymd":20240929,"next_check_ts":1727625600,"check_counter":1,"today_points":200,"today_game":1}}}
2024-09-30 02:40:57 - 200 - {"status":400,"message":"already_check","data":{"round_id":"33de41c2-b988-405b-b2d6-dc318db03b20","user_id":15231956,"start_at":1727615459,"last_check_ts":1727615459,"last_check_ymd":20240929,"next_check_ts":1727625600,"check_counter":1,"today_points":200,"today_game":1}}
2024-09-30 02:40:57 - 200 - {"status":0,"message":"","data":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"229d6db0-5d17-4c5a-a27a-a8db6d188b77","user_id":15231956,"start_at":1727644259,"end_at":1727655059,"last_claim":1727644259,"points":0}}
2024-09-30 02:40:58 - 200 - {"status":0,"message":"","data":{"available_balance":3200,"play_passes":6,"timestamp":1727644260,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"229d6db0-5d17-4c5a-a27a-a8db6d188b77","user_id":15231956,"start_at":1727644259,"end_at":1727655059,"last_claim":1727644259,"points":0},"daily":{"round_id":"33de41c2-b988-405b-b2d6-dc318db03b20","user_id":15231956,"start_at":1727615459,"last_check_ts":1727615459,"last_check_ymd":20240929,"next_check_ts":1727625600,"check_counter":1,"today_points":200,"today_game":1}}}
2024-09-30 02:40:58 - 200 - {"status":400,"message":"already_check","data":{"round_id":"33de41c2-b988-405b-b2d6-dc318db03b20","user_id":15231956,"start_at":1727615459,"last_check_ts":1727615459,"last_check_ymd":20240929,"next_check_ts":1727625600,"check_counter":1,"today_points":200,"today_game":1}}
2024-09-30 02:40:58 - 200 - {"status":0,"message":"","data":{"round_id":"27976c6e-68a9-4586-a888-680975da1e56","user_id":15231956,"start_at":1727644260,"end_at":1727644290}}
2024-09-30 02:41:28 - 200 - {"status":0,"message":"","data":{"round_id":"27976c6e-68a9-4586-a888-680975da1e56","user_id":15231956,"start_at":1727644260,"end_at":1727644290,"points":123}}
2024-09-30 02:41:29 - 200 - {"status":0,"message":"","data":{"round_id":"f4338b34-5553-406d-b1d6-5ff720128910","user_id":15231956,"start_at":1727644291,"end_at":1727644321}}
2024-09-30 02:41:59 - 200 - {"status":0,"message":"","data":{"round_id":"f4338b34-5553-406d-b1d6-5ff720128910","user_id":15231956,"start_at":1727644291,"end_at":1727644321,"points":117}}
2024-09-30 02:41:59 - 200 - {"status":0,"message":"","data":{"round_id":"3801fb9f-99fb-4eda-bef7-781e16e37d56","user_id":15231956,"start_at":1727644321,"end_at":1727644351}}
2024-09-30 02:42:30 - 200 - {"status":0,"message":"","data":{"round_id":"3801fb9f-99fb-4eda-bef7-781e16e37d56","user_id":15231956,"start_at":1727644321,"end_at":1727644351,"points":137}}
2024-09-30 02:42:30 - 200 - {"status":0,"message":"","data":{"round_id":"771dcfda-eade-42b7-b792-e5872876342b","user_id":15231956,"start_at":1727644352,"end_at":1727644382}}
2024-09-30 02:43:00 - 200 - {"status":0,"message":"","data":{"round_id":"771dcfda-eade-42b7-b792-e5872876342b","user_id":15231956,"start_at":1727644352,"end_at":1727644382,"points":146}}
2024-09-30 02:43:01 - 200 - {"status":0,"message":"","data":{"round_id":"77371020-f498-4e28-b928-4fdfe33891e0","user_id":15231956,"start_at":1727644383,"end_at":1727644413}}
2024-09-30 02:43:32 - 200 - {"status":0,"message":"","data":{"round_id":"77371020-f498-4e28-b928-4fdfe33891e0","user_id":15231956,"start_at":1727644383,"end_at":1727644413,"points":128}}
2024-09-30 02:43:32 - 200 - {"status":0,"message":"","data":{"round_id":"de775146-dfbe-4f75-8914-bd2785a1adc3","user_id":15231956,"start_at":1727644414,"end_at":1727644444}}
2024-09-30 02:44:02 - 200 - {"status":0,"message":"","data":{"round_id":"de775146-dfbe-4f75-8914-bd2785a1adc3","user_id":15231956,"start_at":1727644414,"end_at":1727644444,"points":101}}
2024-09-30 02:44:03 - 200 - {"status":0,"message":"","data":{"available_balance":"3952.00","play_passes":0,"timestamp":1727644445,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"229d6db0-5d17-4c5a-a27a-a8db6d188b77","user_id":15231956,"start_at":1727644259,"end_at":1727655059,"last_claim":1727644259,"points":0},"daily":{"round_id":"33de41c2-b988-405b-b2d6-dc318db03b20","user_id":15231956,"start_at":1727615459,"last_check_ts":1727615459,"last_check_ymd":20240929,"next_check_ts":1727625600,"check_counter":1,"today_points":200,"today_game":1}}}
2024-09-30 02:44:03 - 200 - {"status":400,"message":"already_check","data":{"round_id":"33de41c2-b988-405b-b2d6-dc318db03b20","user_id":15231956,"start_at":1727615459,"last_check_ts":1727615459,"last_check_ymd":20240929,"next_check_ts":1727625600,"check_counter":1,"today_points":200,"today_game":1}}
2024-09-30 02:44:06 - 200 - {"status":0,"message":"","data":{"tel_id":"7049997332","id":12924209,"fn":"a","ln":"","access_token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlblVzZXIiOnsidGVsX2lkIjoiNzA0OTk5NzMzMiIsImlkIjoxMjkyNDIwOSwiZm4iOiJhIiwibG4iOiIifSwiaWF0IjoxNzI3NjQ0NDQ5LCJleHAiOjE3MzAyMzY0NDl9.6Z1_650wC9RvygnaLWrVwplNn1ubc4vh2tmo3wKcdUY","photo_url":"","is_kol":0,"is_new":false}}
2024-09-30 02:44:07 - 200 - {"status":0,"message":"","data":{"available_balance":"5000.00","play_passes":5,"timestamp":1727644449,"daily":null}}
2024-09-30 02:44:07 - 200 - {"status":0,"message":"","data":{"round_id":"c98bbcc7-75ba-4c06-a531-71d912bee509","user_id":12924209,"start_at":1727615650,"last_check_ts":1727615650,"last_check_ymd":20240929,"next_check_ts":1727625600,"check_counter":1,"today_points":200,"today_game":1}}
2024-09-30 02:44:08 - 200 - {"status":0,"message":"","data":{"available_balance":"5200.00","play_passes":6,"timestamp":1727644450,"daily":{"round_id":"c98bbcc7-75ba-4c06-a531-71d912bee509","user_id":12924209,"start_at":1727615650,"last_check_ts":1727615650,"last_check_ymd":20240929,"next_check_ts":1727625600,"check_counter":1,"today_points":200,"today_game":1}}}
2024-09-30 02:44:08 - 200 - {"status":400,"message":"already_check","data":{"round_id":"c98bbcc7-75ba-4c06-a531-71d912bee509","user_id":12924209,"start_at":1727615650,"last_check_ts":1727615650,"last_check_ymd":20240929,"next_check_ts":1727625600,"check_counter":1,"today_points":200,"today_game":1}}
2024-09-30 02:44:08 - 200 - {"status":0,"message":"","data":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"73734202-78e4-4c5d-8ef1-fbc5a9510bad","user_id":12924209,"start_at":1727644450,"end_at":1727655250,"last_claim":1727644450,"points":0}}
2024-09-30 02:44:09 - 200 - {"status":0,"message":"","data":{"available_balance":5200,"play_passes":6,"timestamp":1727644451,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"73734202-78e4-4c5d-8ef1-fbc5a9510bad","user_id":12924209,"start_at":1727644450,"end_at":1727655250,"last_claim":1727644450,"points":0},"daily":{"round_id":"c98bbcc7-75ba-4c06-a531-71d912bee509","user_id":12924209,"start_at":1727615650,"last_check_ts":1727615650,"last_check_ymd":20240929,"next_check_ts":1727625600,"check_counter":1,"today_points":200,"today_game":1}}}
2024-09-30 02:44:09 - 200 - {"status":400,"message":"already_check","data":{"round_id":"c98bbcc7-75ba-4c06-a531-71d912bee509","user_id":12924209,"start_at":1727615650,"last_check_ts":1727615650,"last_check_ymd":20240929,"next_check_ts":1727625600,"check_counter":1,"today_points":200,"today_game":1}}
2024-09-30 02:44:09 - 200 - {"status":0,"message":"","data":{"round_id":"3e191c98-baf4-4372-9ae3-8e73834c5e84","user_id":12924209,"start_at":1727644452,"end_at":1727644482}}
2024-09-30 02:44:40 - 200 - {"status":0,"message":"","data":{"round_id":"3e191c98-baf4-4372-9ae3-8e73834c5e84","user_id":12924209,"start_at":1727644452,"end_at":1727644482,"points":131}}
2024-09-30 02:44:40 - 200 - {"status":0,"message":"","data":{"round_id":"a3c027f8-e062-4a1d-b4f3-a9b0ef049755","user_id":12924209,"start_at":1727644482,"end_at":1727644512}}
2024-09-30 02:45:11 - 200 - {"status":0,"message":"","data":{"round_id":"a3c027f8-e062-4a1d-b4f3-a9b0ef049755","user_id":12924209,"start_at":1727644482,"end_at":1727644512,"points":138}}
2024-09-30 02:45:11 - 200 - {"status":0,"message":"","data":{"round_id":"39df92aa-a1d5-424b-bfce-850a88aae5ca","user_id":12924209,"start_at":1727644513,"end_at":1727644543}}
2024-09-30 02:45:41 - 200 - {"status":0,"message":"","data":{"round_id":"39df92aa-a1d5-424b-bfce-850a88aae5ca","user_id":12924209,"start_at":1727644513,"end_at":1727644543,"points":116}}
2024-09-30 02:45:42 - 200 - {"status":0,"message":"","data":{"round_id":"026638c8-a74e-4ebb-b930-f028d5cbdc1f","user_id":12924209,"start_at":1727644544,"end_at":1727644574}}
2024-09-30 02:46:12 - 200 - {"status":0,"message":"","data":{"round_id":"026638c8-a74e-4ebb-b930-f028d5cbdc1f","user_id":12924209,"start_at":1727644544,"end_at":1727644574,"points":122}}
2024-09-30 02:46:13 - 200 - {"status":0,"message":"","data":{"round_id":"c733ef74-07ba-449e-afeb-5a973a435092","user_id":12924209,"start_at":1727644575,"end_at":1727644605}}
2024-09-30 02:46:44 - 200 - {"status":0,"message":"","data":{"round_id":"c733ef74-07ba-449e-afeb-5a973a435092","user_id":12924209,"start_at":1727644575,"end_at":1727644605,"points":118}}
2024-09-30 02:46:44 - 200 - {"status":0,"message":"","data":{"round_id":"888b5fee-5986-4d10-a856-09dff3e3a38d","user_id":12924209,"start_at":1727644606,"end_at":1727644636}}
2024-09-30 02:47:15 - 200 - {"status":0,"message":"","data":{"round_id":"888b5fee-5986-4d10-a856-09dff3e3a38d","user_id":12924209,"start_at":1727644606,"end_at":1727644636,"points":104}}
2024-09-30 02:47:15 - 200 - {"status":0,"message":"","data":{"available_balance":"5929.00","play_passes":0,"timestamp":1727644637,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"73734202-78e4-4c5d-8ef1-fbc5a9510bad","user_id":12924209,"start_at":1727644450,"end_at":1727655250,"last_claim":1727644450,"points":0},"daily":{"round_id":"c98bbcc7-75ba-4c06-a531-71d912bee509","user_id":12924209,"start_at":1727615650,"last_check_ts":1727615650,"last_check_ymd":20240929,"next_check_ts":1727625600,"check_counter":1,"today_points":200,"today_game":1}}}
2024-09-30 02:47:15 - 200 - {"status":400,"message":"already_check","data":{"round_id":"c98bbcc7-75ba-4c06-a531-71d912bee509","user_id":12924209,"start_at":1727615650,"last_check_ts":1727615650,"last_check_ymd":20240929,"next_check_ts":1727625600,"check_counter":1,"today_points":200,"today_game":1}}
2024-09-30 02:55:24 - 200 - {"status":0,"message":"","data":{"available_balance":37970,"play_passes":0,"timestamp":1727645126,"daily":{"round_id":"93927530-02e8-4a6e-a3a4-92c94df2a303","user_id":32124262,"start_at":1727352309,"last_check_ts":1727545004,"last_check_ymd":20240929,"next_check_ts":1727625600,"check_counter":4,"today_points":3000,"today_game":4,"diff":1}}}
2024-09-30 02:55:24 - 200 - {"status":400,"message":"already_check","data":{"round_id":"93927530-02e8-4a6e-a3a4-92c94df2a303","user_id":32124262,"start_at":1727352309,"last_check_ts":1727545004,"last_check_ymd":20240929,"next_check_ts":1727625600,"check_counter":4,"today_points":3000,"today_game":4,"diff":1}}
2024-09-30 02:55:24 - 200 - {"status":0,"message":"","data":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"9981cee1-9caf-4d17-b45d-fc61682758f0","user_id":32124262,"start_at":1727645127,"end_at":1727655927,"last_claim":1727645127,"points":0}}
2024-09-30 02:55:25 - 200 - {"status":0,"message":"","data":{"available_balance":37970,"play_passes":0,"timestamp":1727645127,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"9981cee1-9caf-4d17-b45d-fc61682758f0","user_id":32124262,"start_at":1727645127,"end_at":1727655927,"last_claim":1727645127,"points":0},"daily":{"round_id":"93927530-02e8-4a6e-a3a4-92c94df2a303","user_id":32124262,"start_at":1727352309,"last_check_ts":1727545004,"last_check_ymd":20240929,"next_check_ts":1727625600,"check_counter":4,"today_points":3000,"today_game":4,"diff":1}}}
2024-09-30 02:55:25 - 200 - {"status":400,"message":"already_check","data":{"round_id":"93927530-02e8-4a6e-a3a4-92c94df2a303","user_id":32124262,"start_at":1727352309,"last_check_ts":1727545004,"last_check_ymd":20240929,"next_check_ts":1727625600,"check_counter":4,"today_points":3000,"today_game":4,"diff":1}}
2024-09-30 02:55:28 - 200 - {"status":0,"message":"","data":{"available_balance":28649,"play_passes":0,"timestamp":1727645131,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"2a319ab5-d6ad-4b77-8205-7e8f4de1cfd4","user_id":12936487,"start_at":1727634196,"end_at":1727644996,"last_claim":1727634196,"points":0},"daily":{"round_id":"6e16e753-d0ab-432f-9a4b-513930a35471","user_id":12936487,"start_at":1727352557,"last_check_ts":1727545008,"last_check_ymd":20240929,"next_check_ts":1727625600,"check_counter":4,"today_points":3000,"today_game":4,"diff":1}}}
2024-09-30 02:55:29 - 200 - {"status":400,"message":"already_check","data":{"round_id":"6e16e753-d0ab-432f-9a4b-513930a35471","user_id":12936487,"start_at":1727352557,"last_check_ts":1727545008,"last_check_ymd":20240929,"next_check_ts":1727625600,"check_counter":4,"today_points":3000,"today_game":4,"diff":1}}
2024-09-30 02:55:30 - 200 - {"status":0,"message":"","data":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"2a319ab5-d6ad-4b77-8205-7e8f4de1cfd4","user_id":12936487,"start_at":1727634196,"end_at":1727644996,"last_claim":1727645132,"points":"1080.00","finished":true,"claim_this_time":"1080.00"}}
2024-09-30 02:55:30 - 200 - {"status":0,"message":"","data":{"available_balance":"29729.00","play_passes":0,"timestamp":1727645132,"daily":{"round_id":"6e16e753-d0ab-432f-9a4b-513930a35471","user_id":12936487,"start_at":1727352557,"last_check_ts":1727545008,"last_check_ymd":20240929,"next_check_ts":1727625600,"check_counter":4,"today_points":3000,"today_game":4,"diff":1}}}
2024-09-30 02:55:30 - 200 - {"status":400,"message":"already_check","data":{"round_id":"6e16e753-d0ab-432f-9a4b-513930a35471","user_id":12936487,"start_at":1727352557,"last_check_ts":1727545008,"last_check_ymd":20240929,"next_check_ts":1727625600,"check_counter":4,"today_points":3000,"today_game":4,"diff":1}}
2024-09-30 02:55:30 - 200 - {"status":0,"message":"","data":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"0368f9e0-2300-4c13-8062-b90999cd7b65","user_id":12936487,"start_at":1727645132,"end_at":1727655932,"last_claim":1727645132,"points":0}}
2024-09-30 02:55:31 - 200 - {"status":0,"message":"","data":{"available_balance":29729,"play_passes":0,"timestamp":1727645133,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"0368f9e0-2300-4c13-8062-b90999cd7b65","user_id":12936487,"start_at":1727645132,"end_at":1727655932,"last_claim":1727645132,"points":0},"daily":{"round_id":"6e16e753-d0ab-432f-9a4b-513930a35471","user_id":12936487,"start_at":1727352557,"last_check_ts":1727545008,"last_check_ymd":20240929,"next_check_ts":1727625600,"check_counter":4,"today_points":3000,"today_game":4,"diff":1}}}
2024-09-30 02:55:31 - 200 - {"status":400,"message":"already_check","data":{"round_id":"6e16e753-d0ab-432f-9a4b-513930a35471","user_id":12936487,"start_at":1727352557,"last_check_ts":1727545008,"last_check_ymd":20240929,"next_check_ts":1727625600,"check_counter":4,"today_points":3000,"today_game":4,"diff":1}}
2024-09-30 02:55:34 - 200 - {"status":0,"message":"","data":{"available_balance":10514,"play_passes":0,"timestamp":1727645137,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"d1fc1a0a-e081-490a-a924-097294ee7293","user_id":10535485,"start_at":1727644254,"end_at":1727655054,"last_claim":1727644254,"points":0},"daily":{"round_id":"912cb072-760f-4c1b-bd5e-f4025d3c68e4","user_id":10535485,"start_at":1727579544,"last_check_ts":1727579544,"last_check_ymd":20240929,"next_check_ts":1727625600,"check_counter":1,"today_points":200,"today_game":1}}}
2024-09-30 02:55:35 - 200 - {"status":400,"message":"already_check","data":{"round_id":"912cb072-760f-4c1b-bd5e-f4025d3c68e4","user_id":10535485,"start_at":1727579544,"last_check_ts":1727579544,"last_check_ymd":20240929,"next_check_ts":1727625600,"check_counter":1,"today_points":200,"today_game":1}}
2024-09-30 02:55:38 - 200 - {"status":0,"message":"","data":{"available_balance":3952,"play_passes":0,"timestamp":1727645141,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"229d6db0-5d17-4c5a-a27a-a8db6d188b77","user_id":15231956,"start_at":1727644259,"end_at":1727655059,"last_claim":1727644259,"points":0},"daily":{"round_id":"33de41c2-b988-405b-b2d6-dc318db03b20","user_id":15231956,"start_at":1727615459,"last_check_ts":1727615459,"last_check_ymd":20240929,"next_check_ts":1727625600,"check_counter":1,"today_points":200,"today_game":1}}}
2024-09-30 02:55:39 - 200 - {"status":400,"message":"already_check","data":{"round_id":"33de41c2-b988-405b-b2d6-dc318db03b20","user_id":15231956,"start_at":1727615459,"last_check_ts":1727615459,"last_check_ymd":20240929,"next_check_ts":1727625600,"check_counter":1,"today_points":200,"today_game":1}}
2024-09-30 02:55:43 - 200 - {"status":0,"message":"","data":{"available_balance":5929,"play_passes":0,"timestamp":1727645145,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"73734202-78e4-4c5d-8ef1-fbc5a9510bad","user_id":12924209,"start_at":1727644450,"end_at":1727655250,"last_claim":1727644450,"points":0},"daily":{"round_id":"c98bbcc7-75ba-4c06-a531-71d912bee509","user_id":12924209,"start_at":1727615650,"last_check_ts":1727615650,"last_check_ymd":20240929,"next_check_ts":1727625600,"check_counter":1,"today_points":200,"today_game":1}}}
2024-09-30 02:55:43 - 200 - {"status":400,"message":"already_check","data":{"round_id":"c98bbcc7-75ba-4c06-a531-71d912bee509","user_id":12924209,"start_at":1727615650,"last_check_ts":1727615650,"last_check_ymd":20240929,"next_check_ts":1727625600,"check_counter":1,"today_points":200,"today_game":1}}
2024-09-30 19:24:20 - 200 - {"status":0,"message":"","data":{"available_balance":"49210.00","play_passes":10,"timestamp":1727704462,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"70d69106-c093-48ab-ae7d-ed76fdb2ffcb","user_id":32124262,"start_at":1727697127,"end_at":1727707927,"last_claim":1727697127,"points":0},"daily":{"round_id":"93927530-02e8-4a6e-a3a4-92c94df2a303","user_id":32124262,"start_at":1727352309,"last_check_ts":1727630770,"last_check_ymd":20240930,"next_check_ts":1727712000,"check_counter":5,"today_points":8000,"today_game":5,"diff":1}}}
2024-09-30 19:24:21 - 200 - {"status":0,"message":"","data":{"round_id":"42b04409-3316-4c78-9876-64e7beadb0b0","user_id":32124262,"start_at":1727704463,"end_at":1727704493}}
2024-09-30 19:24:51 - 200 - {"status":0,"message":"","data":{"round_id":"42b04409-3316-4c78-9876-64e7beadb0b0","user_id":32124262,"start_at":1727704463,"end_at":1727704493,"points":123}}
2024-09-30 19:24:51 - 200 - {"status":0,"message":"","data":{"round_id":"7dc16037-fa96-461e-9fea-8510c97b156d","user_id":32124262,"start_at":1727704494,"end_at":1727704524}}
2024-09-30 19:25:54 - 200 - {"status":0,"message":"","data":{"round_id":"7dc16037-fa96-461e-9fea-8510c97b156d","user_id":32124262,"start_at":1727704494,"end_at":1727704524,"points":122}}
2024-09-30 19:25:54 - 200 - {"status":0,"message":"","data":{"round_id":"05c9c53d-5746-4828-9c25-c7e09818dd8a","user_id":32124262,"start_at":1727704556,"end_at":1727704586}}
2024-09-30 19:26:25 - 200 - {"status":0,"message":"","data":{"round_id":"05c9c53d-5746-4828-9c25-c7e09818dd8a","user_id":32124262,"start_at":1727704556,"end_at":1727704586,"points":140}}
2024-09-30 19:26:25 - 200 - {"status":0,"message":"","data":{"round_id":"ad03845d-5316-4cbc-908a-fe486bbb982d","user_id":32124262,"start_at":1727704587,"end_at":1727704617}}
2024-09-30 19:26:55 - 200 - {"status":0,"message":"","data":{"round_id":"ad03845d-5316-4cbc-908a-fe486bbb982d","user_id":32124262,"start_at":1727704587,"end_at":1727704617,"points":122}}
2024-09-30 19:26:56 - 200 - {"status":0,"message":"","data":{"round_id":"9eb4f50d-912f-4f1e-9d72-75398f12cda4","user_id":32124262,"start_at":1727704618,"end_at":1727704648}}
2024-09-30 19:27:26 - 200 - {"status":0,"message":"","data":{"round_id":"9eb4f50d-912f-4f1e-9d72-75398f12cda4","user_id":32124262,"start_at":1727704618,"end_at":1727704648,"points":102}}
2024-09-30 19:27:27 - 200 - {"status":0,"message":"","data":{"round_id":"0fb859d9-011b-4f37-89c3-cb69f15ebe13","user_id":32124262,"start_at":1727704649,"end_at":1727704679}}
2024-09-30 19:27:57 - 200 - {"status":0,"message":"","data":{"round_id":"0fb859d9-011b-4f37-89c3-cb69f15ebe13","user_id":32124262,"start_at":1727704649,"end_at":1727704679,"points":131}}
2024-09-30 19:27:58 - 200 - {"status":0,"message":"","data":{"round_id":"20e8de48-91ba-4ab5-b072-fcaa276372f5","user_id":32124262,"start_at":1727704680,"end_at":1727704710}}
2024-09-30 19:28:28 - 200 - {"status":0,"message":"","data":{"round_id":"20e8de48-91ba-4ab5-b072-fcaa276372f5","user_id":32124262,"start_at":1727704680,"end_at":1727704710,"points":140}}
2024-09-30 19:28:28 - 200 - {"status":0,"message":"","data":{"round_id":"210e27fd-0313-41dc-a475-e0a536212947","user_id":32124262,"start_at":1727704710,"end_at":1727704740}}
2024-09-30 19:28:59 - 200 - {"status":0,"message":"","data":{"round_id":"210e27fd-0313-41dc-a475-e0a536212947","user_id":32124262,"start_at":1727704710,"end_at":1727704740,"points":119}}
2024-09-30 19:28:59 - 200 - {"status":0,"message":"","data":{"round_id":"570463a2-af8a-4e27-b5ba-089d3d3149d1","user_id":32124262,"start_at":1727704741,"end_at":1727704771}}
2024-09-30 19:29:29 - 200 - {"status":0,"message":"","data":{"round_id":"570463a2-af8a-4e27-b5ba-089d3d3149d1","user_id":32124262,"start_at":1727704741,"end_at":1727704771,"points":132}}
2024-09-30 19:29:30 - 200 - {"status":0,"message":"","data":{"round_id":"ed9904e9-5587-443a-87c4-e95c4d740106","user_id":32124262,"start_at":1727704772,"end_at":1727704802}}
2024-09-30 19:30:00 - 200 - {"status":0,"message":"","data":{"round_id":"ed9904e9-5587-443a-87c4-e95c4d740106","user_id":32124262,"start_at":1727704772,"end_at":1727704802,"points":101}}
2024-09-30 19:30:00 - 200 - {"status":0,"message":"","data":{"available_balance":"50442.00","play_passes":0,"timestamp":1727704803,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"70d69106-c093-48ab-ae7d-ed76fdb2ffcb","user_id":32124262,"start_at":1727697127,"end_at":1727707927,"last_claim":1727697127,"points":0},"daily":{"round_id":"93927530-02e8-4a6e-a3a4-92c94df2a303","user_id":32124262,"start_at":1727352309,"last_check_ts":1727630770,"last_check_ymd":20240930,"next_check_ts":1727712000,"check_counter":5,"today_points":8000,"today_game":5,"diff":1}}}
2024-09-30 19:30:04 - 200 - {"status":0,"message":"","data":{"available_balance":"40969.00","play_passes":10,"timestamp":1727704806,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"0401f181-f277-45af-8efd-d96f5e2f834d","user_id":12936487,"start_at":1727697131,"end_at":1727707931,"last_claim":1727697131,"points":0},"daily":{"round_id":"6e16e753-d0ab-432f-9a4b-513930a35471","user_id":12936487,"start_at":1727352557,"last_check_ts":1727630775,"last_check_ymd":20240930,"next_check_ts":1727712000,"check_counter":5,"today_points":8000,"today_game":5,"diff":1}}}
2024-09-30 19:30:05 - 200 - {"status":0,"message":"","data":{"round_id":"7c1598e6-103e-4799-ad91-187f4577f3dc","user_id":12936487,"start_at":1727704807,"end_at":1727704837}}
2024-09-30 19:30:35 - 200 - {"status":0,"message":"","data":{"round_id":"7c1598e6-103e-4799-ad91-187f4577f3dc","user_id":12936487,"start_at":1727704807,"end_at":1727704837,"points":115}}
2024-09-30 19:30:35 - 200 - {"status":0,"message":"","data":{"round_id":"292bf713-1204-4120-ba6c-5405f6cc558f","user_id":12936487,"start_at":1727704838,"end_at":1727704868}}
2024-09-30 19:31:06 - 200 - {"status":0,"message":"","data":{"round_id":"292bf713-1204-4120-ba6c-5405f6cc558f","user_id":12936487,"start_at":1727704838,"end_at":1727704868,"points":105}}
2024-09-30 19:31:06 - 200 - {"status":0,"message":"","data":{"round_id":"07b21d2a-7dc3-4fe4-bc67-bc256aef1dd9","user_id":12936487,"start_at":1727704868,"end_at":1727704898}}
2024-09-30 19:31:36 - 200 - {"status":0,"message":"","data":{"round_id":"07b21d2a-7dc3-4fe4-bc67-bc256aef1dd9","user_id":12936487,"start_at":1727704868,"end_at":1727704898,"points":112}}
2024-09-30 19:31:37 - 200 - {"status":0,"message":"","data":{"round_id":"c91d09cb-ac11-45c8-9e10-bf19ac204de4","user_id":12936487,"start_at":1727704899,"end_at":1727704929}}
2024-09-30 19:32:33 - 200 - {"status":0,"message":"","data":{"round_id":"c91d09cb-ac11-45c8-9e10-bf19ac204de4","user_id":12936487,"start_at":1727704899,"end_at":1727704929,"points":113}}
2024-09-30 19:32:33 - 200 - {"status":0,"message":"","data":{"round_id":"d8282977-2841-4631-bfe5-e1bb8a49bb2f","user_id":12936487,"start_at":1727704955,"end_at":1727704985}}
2024-09-30 19:35:14 - 200 - {"status":0,"message":"","data":{"round_id":"d8282977-2841-4631-bfe5-e1bb8a49bb2f","user_id":12936487,"start_at":1727704955,"end_at":1727704985,"points":120}}
2024-09-30 19:35:15 - 200 - {"status":0,"message":"","data":{"round_id":"028f28cb-73d3-47a6-83a4-4fd2e4f9cf8c","user_id":12936487,"start_at":1727705117,"end_at":1727705147}}
2024-09-30 19:37:16 - 200 - {"status":0,"message":"","data":{"round_id":"028f28cb-73d3-47a6-83a4-4fd2e4f9cf8c","user_id":12936487,"start_at":1727705117,"end_at":1727705147,"points":132}}
2024-09-30 19:37:16 - 200 - {"status":0,"message":"","data":{"round_id":"f194e1f9-bb32-4496-9b08-4741f43e6d7f","user_id":12936487,"start_at":1727705238,"end_at":1727705268}}
2024-09-30 19:37:46 - 200 - {"status":0,"message":"","data":{"round_id":"f194e1f9-bb32-4496-9b08-4741f43e6d7f","user_id":12936487,"start_at":1727705238,"end_at":1727705268,"points":149}}
2024-09-30 19:37:47 - 200 - {"status":0,"message":"","data":{"round_id":"6b231dfc-ce9b-4767-bf22-92a0bb2051df","user_id":12936487,"start_at":1727705269,"end_at":1727705299}}
2024-09-30 19:38:17 - 200 - {"status":0,"message":"","data":{"round_id":"6b231dfc-ce9b-4767-bf22-92a0bb2051df","user_id":12936487,"start_at":1727705269,"end_at":1727705299,"points":106}}
2024-09-30 19:38:18 - 200 - {"status":0,"message":"","data":{"round_id":"dc315396-eadc-4ab6-80ba-d3a3c39b0e7b","user_id":12936487,"start_at":1727705300,"end_at":1727705330}}
2024-09-30 19:38:48 - 200 - {"status":0,"message":"","data":{"round_id":"dc315396-eadc-4ab6-80ba-d3a3c39b0e7b","user_id":12936487,"start_at":1727705300,"end_at":1727705330,"points":127}}
2024-09-30 19:38:49 - 200 - {"status":0,"message":"","data":{"round_id":"fb9885ed-8814-4c3e-a259-1fe6312c68c7","user_id":12936487,"start_at":1727705331,"end_at":1727705361}}
2024-09-30 19:39:20 - 200 - {"status":0,"message":"","data":{"round_id":"fb9885ed-8814-4c3e-a259-1fe6312c68c7","user_id":12936487,"start_at":1727705331,"end_at":1727705361,"points":122}}
2024-09-30 19:39:21 - 200 - {"status":0,"message":"","data":{"available_balance":"42170.00","play_passes":0,"timestamp":1727705363,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"0401f181-f277-45af-8efd-d96f5e2f834d","user_id":12936487,"start_at":1727697131,"end_at":1727707931,"last_claim":1727697131,"points":0},"daily":{"round_id":"6e16e753-d0ab-432f-9a4b-513930a35471","user_id":12936487,"start_at":1727352557,"last_check_ts":1727630775,"last_check_ymd":20240930,"next_check_ts":1727712000,"check_counter":5,"today_points":8000,"today_game":5,"diff":1}}}
2024-09-30 19:39:24 - 200 - {"status":0,"message":"","data":{"available_balance":"12094.00","play_passes":7,"timestamp":1727705367,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"2adc8ae0-5315-4026-b110-20b592086327","user_id":10535485,"start_at":1727659581,"end_at":1727670381,"last_claim":1727659581,"points":0},"daily":{"round_id":"912cb072-760f-4c1b-bd5e-f4025d3c68e4","user_id":10535485,"start_at":1727579544,"last_check_ts":1727630780,"last_check_ymd":20240930,"next_check_ts":1727712000,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}}
2024-09-30 19:39:25 - 200 - {"status":0,"message":"","data":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"2adc8ae0-5315-4026-b110-20b592086327","user_id":10535485,"start_at":1727659581,"end_at":1727670381,"last_claim":1727705367,"points":"1080.00","finished":true,"claim_this_time":"1080.00"}}
2024-09-30 19:39:25 - 200 - {"status":0,"message":"","data":{"available_balance":"13174.00","play_passes":7,"timestamp":1727705367,"daily":{"round_id":"912cb072-760f-4c1b-bd5e-f4025d3c68e4","user_id":10535485,"start_at":1727579544,"last_check_ts":1727630780,"last_check_ymd":20240930,"next_check_ts":1727712000,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}}
2024-09-30 19:39:26 - 200 - {"status":0,"message":"","data":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"16817ad3-5d31-4ed2-a601-19ec39abf6f6","user_id":10535485,"start_at":1727705368,"end_at":1727716168,"last_claim":1727705368,"points":0}}
2024-09-30 19:39:26 - 200 - {"status":0,"message":"","data":{"available_balance":13174,"play_passes":7,"timestamp":1727705368,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"16817ad3-5d31-4ed2-a601-19ec39abf6f6","user_id":10535485,"start_at":1727705368,"end_at":1727716168,"last_claim":1727705368,"points":0},"daily":{"round_id":"912cb072-760f-4c1b-bd5e-f4025d3c68e4","user_id":10535485,"start_at":1727579544,"last_check_ts":1727630780,"last_check_ymd":20240930,"next_check_ts":1727712000,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}}
2024-09-30 19:39:26 - 200 - {"status":0,"message":"","data":{"round_id":"0f971e2c-ed1b-4ea3-ad9b-334c08f673d1","user_id":10535485,"start_at":1727705368,"end_at":1727705398}}
2024-09-30 19:40:42 - 200 - {"status":0,"message":"","data":{"round_id":"0f971e2c-ed1b-4ea3-ad9b-334c08f673d1","user_id":10535485,"start_at":1727705368,"end_at":1727705398,"points":113}}
2024-09-30 19:40:42 - 200 - {"status":0,"message":"","data":{"round_id":"819d1ad6-93ea-47c9-9546-9635306284ff","user_id":10535485,"start_at":1727705445,"end_at":1727705475}}
2024-09-30 19:41:13 - 200 - {"status":0,"message":"","data":{"round_id":"819d1ad6-93ea-47c9-9546-9635306284ff","user_id":10535485,"start_at":1727705445,"end_at":1727705475,"points":110}}
2024-09-30 19:41:13 - 200 - {"status":0,"message":"","data":{"round_id":"fcd3a473-69c4-4181-9917-833c9575f0f1","user_id":10535485,"start_at":1727705475,"end_at":1727705505}}
2024-09-30 19:42:30 - 200 - {"status":0,"message":"","data":{"round_id":"fcd3a473-69c4-4181-9917-833c9575f0f1","user_id":10535485,"start_at":1727705475,"end_at":1727705505,"points":147}}
2024-09-30 19:42:31 - 200 - {"status":0,"message":"","data":{"round_id":"ddec5963-b9db-4522-bd9b-582c4699008b","user_id":10535485,"start_at":1727705553,"end_at":1727705583}}
2024-09-30 19:46:43 - 200 - {"status":0,"message":"","data":{"round_id":"ddec5963-b9db-4522-bd9b-582c4699008b","user_id":10535485,"start_at":1727705553,"end_at":1727705583,"points":136}}
2024-09-30 19:46:43 - 200 - {"status":0,"message":"","data":{"round_id":"bdce06b2-ed40-44b0-b310-173d951db316","user_id":10535485,"start_at":1727705806,"end_at":1727705836}}
2024-09-30 19:47:14 - 200 - {"status":0,"message":"","data":{"round_id":"bdce06b2-ed40-44b0-b310-173d951db316","user_id":10535485,"start_at":1727705806,"end_at":1727705836,"points":118}}
2024-09-30 19:47:14 - 200 - {"status":0,"message":"","data":{"round_id":"d88140b1-833a-4d87-9010-7118757861ee","user_id":10535485,"start_at":1727705836,"end_at":1727705866}}
2024-09-30 19:47:45 - 200 - {"status":0,"message":"","data":{"round_id":"d88140b1-833a-4d87-9010-7118757861ee","user_id":10535485,"start_at":1727705836,"end_at":1727705866,"points":140}}
2024-09-30 19:47:46 - 200 - {"status":0,"message":"","data":{"round_id":"3a956485-0315-4c7c-9016-e5edfcd6e482","user_id":10535485,"start_at":1727705868,"end_at":1727705898}}
2024-09-30 19:48:16 - 200 - {"status":0,"message":"","data":{"round_id":"3a956485-0315-4c7c-9016-e5edfcd6e482","user_id":10535485,"start_at":1727705868,"end_at":1727705898,"points":134}}
2024-09-30 19:48:16 - 200 - {"status":0,"message":"","data":{"available_balance":"14072.00","play_passes":0,"timestamp":1727705899,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"16817ad3-5d31-4ed2-a601-19ec39abf6f6","user_id":10535485,"start_at":1727705368,"end_at":1727716168,"last_claim":1727705368,"points":0},"daily":{"round_id":"912cb072-760f-4c1b-bd5e-f4025d3c68e4","user_id":10535485,"start_at":1727579544,"last_check_ts":1727630780,"last_check_ymd":20240930,"next_check_ts":1727712000,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}}
2024-09-30 19:48:20 - 200 - {"status":0,"message":"","data":{"available_balance":"7692.00","play_passes":7,"timestamp":1727705902,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"89297440-fb45-4575-b530-a9c540f67519","user_id":15231956,"start_at":1727697136,"end_at":1727707936,"last_claim":1727697136,"points":0},"daily":{"round_id":"33de41c2-b988-405b-b2d6-dc318db03b20","user_id":15231956,"start_at":1727615459,"last_check_ts":1727630785,"last_check_ymd":20240930,"next_check_ts":1727712000,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}}
2024-09-30 19:48:20 - 200 - {"status":0,"message":"","data":{"round_id":"667f1eb8-23fb-4f48-8479-29df66e857fc","user_id":15231956,"start_at":1727705903,"end_at":1727705933}}
2024-09-30 19:48:51 - 200 - {"status":0,"message":"","data":{"round_id":"667f1eb8-23fb-4f48-8479-29df66e857fc","user_id":15231956,"start_at":1727705903,"end_at":1727705933,"points":115}}
2024-09-30 19:48:51 - 200 - {"status":0,"message":"","data":{"round_id":"f2a4662f-3175-458c-9ac2-331f361d61eb","user_id":15231956,"start_at":1727705933,"end_at":1727705963}}
2024-09-30 19:49:22 - 200 - {"status":0,"message":"","data":{"round_id":"f2a4662f-3175-458c-9ac2-331f361d61eb","user_id":15231956,"start_at":1727705933,"end_at":1727705963,"points":123}}
2024-09-30 19:49:23 - 200 - {"status":0,"message":"","data":{"round_id":"56a7f550-3f33-4ea1-b891-b885fd0fc917","user_id":15231956,"start_at":1727705965,"end_at":1727705995}}
2024-09-30 19:49:53 - 200 - {"status":0,"message":"","data":{"round_id":"56a7f550-3f33-4ea1-b891-b885fd0fc917","user_id":15231956,"start_at":1727705965,"end_at":1727705995,"points":148}}
2024-09-30 19:49:54 - 200 - {"status":0,"message":"","data":{"round_id":"48aca843-c0c7-460e-a179-54a155db837d","user_id":15231956,"start_at":1727705996,"end_at":1727706026}}
2024-09-30 19:50:24 - 200 - {"status":0,"message":"","data":{"round_id":"48aca843-c0c7-460e-a179-54a155db837d","user_id":15231956,"start_at":1727705996,"end_at":1727706026,"points":105}}
2024-09-30 19:50:25 - 200 - {"status":0,"message":"","data":{"round_id":"248032f4-403d-420c-b967-85cb31a2c274","user_id":15231956,"start_at":1727706027,"end_at":1727706057}}
2024-09-30 19:50:56 - 200 - {"status":0,"message":"","data":{"round_id":"248032f4-403d-420c-b967-85cb31a2c274","user_id":15231956,"start_at":1727706027,"end_at":1727706057,"points":111}}
2024-09-30 19:50:56 - 200 - {"status":0,"message":"","data":{"round_id":"44105cac-4e28-4bb8-89f8-3f6efad3560f","user_id":15231956,"start_at":1727706058,"end_at":1727706088}}
2024-09-30 19:52:21 - 200 - {"status":0,"message":"","data":{"round_id":"44105cac-4e28-4bb8-89f8-3f6efad3560f","user_id":15231956,"start_at":1727706058,"end_at":1727706088,"points":106}}
2024-09-30 19:52:22 - 200 - {"status":0,"message":"","data":{"round_id":"b17d77b7-066f-486f-9846-fc71c7ea62bb","user_id":15231956,"start_at":1727706144,"end_at":1727706174}}
2024-09-30 19:52:52 - 200 - {"status":0,"message":"","data":{"round_id":"b17d77b7-066f-486f-9846-fc71c7ea62bb","user_id":15231956,"start_at":1727706144,"end_at":1727706174,"points":138}}
2024-09-30 19:52:52 - 200 - {"status":0,"message":"","data":{"available_balance":"8538.00","play_passes":0,"timestamp":1727706175,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"89297440-fb45-4575-b530-a9c540f67519","user_id":15231956,"start_at":1727697136,"end_at":1727707936,"last_claim":1727697136,"points":0},"daily":{"round_id":"33de41c2-b988-405b-b2d6-dc318db03b20","user_id":15231956,"start_at":1727615459,"last_check_ts":1727630785,"last_check_ymd":20240930,"next_check_ts":1727712000,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}}
2024-09-30 19:52:56 - 200 - {"status":0,"message":"","data":{"available_balance":"9669.00","play_passes":7,"timestamp":1727706179,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"1779b190-db80-4632-afc5-3196e152dc4d","user_id":12924209,"start_at":1727697140,"end_at":1727707940,"last_claim":1727697140,"points":0},"daily":{"round_id":"c98bbcc7-75ba-4c06-a531-71d912bee509","user_id":12924209,"start_at":1727615650,"last_check_ts":1727630789,"last_check_ymd":20240930,"next_check_ts":1727712000,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}}
2024-09-30 19:52:57 - 200 - {"status":0,"message":"","data":{"round_id":"bf1c1fbd-47b9-4c94-b7ab-709573def908","user_id":12924209,"start_at":1727706179,"end_at":1727706209}}
2024-09-30 19:53:27 - 200 - {"status":0,"message":"","data":{"round_id":"bf1c1fbd-47b9-4c94-b7ab-709573def908","user_id":12924209,"start_at":1727706179,"end_at":1727706209,"points":141}}
2024-09-30 19:53:28 - 200 - {"status":0,"message":"","data":{"round_id":"d9c49aca-501c-47c5-8980-27ca7d219bbb","user_id":12924209,"start_at":1727706210,"end_at":1727706240}}
2024-09-30 19:53:58 - 200 - {"status":0,"message":"","data":{"round_id":"d9c49aca-501c-47c5-8980-27ca7d219bbb","user_id":12924209,"start_at":1727706210,"end_at":1727706240,"points":133}}
2024-09-30 19:53:58 - 200 - {"status":0,"message":"","data":{"round_id":"e1ef82cd-4e41-4468-a5d5-c7d4ceea873d","user_id":12924209,"start_at":1727706241,"end_at":1727706271}}
2024-09-30 19:54:29 - 200 - {"status":0,"message":"","data":{"round_id":"e1ef82cd-4e41-4468-a5d5-c7d4ceea873d","user_id":12924209,"start_at":1727706241,"end_at":1727706271,"points":145}}
2024-09-30 19:54:29 - 200 - {"status":0,"message":"","data":{"round_id":"9029bc3e-4b79-485d-897c-049e9d88560d","user_id":12924209,"start_at":1727706272,"end_at":1727706302}}
2024-09-30 19:55:00 - 200 - {"status":0,"message":"","data":{"round_id":"9029bc3e-4b79-485d-897c-049e9d88560d","user_id":12924209,"start_at":1727706272,"end_at":1727706302,"points":125}}
2024-09-30 19:55:00 - 200 - {"status":0,"message":"","data":{"round_id":"28f2c31e-646e-4fdd-b085-233b5573b377","user_id":12924209,"start_at":1727706303,"end_at":1727706333}}
2024-09-30 19:55:31 - 200 - {"status":0,"message":"","data":{"round_id":"28f2c31e-646e-4fdd-b085-233b5573b377","user_id":12924209,"start_at":1727706303,"end_at":1727706333,"points":111}}
2024-09-30 19:55:31 - 200 - {"status":0,"message":"","data":{"round_id":"06d28c01-44b6-4b4c-af74-eafe7c24bf12","user_id":12924209,"start_at":1727706333,"end_at":1727706363}}
2024-09-30 19:56:02 - 200 - {"status":0,"message":"","data":{"round_id":"06d28c01-44b6-4b4c-af74-eafe7c24bf12","user_id":12924209,"start_at":1727706333,"end_at":1727706363,"points":122}}
2024-09-30 19:56:02 - 200 - {"status":0,"message":"","data":{"round_id":"d5b82225-c17f-4bc9-aa70-7dc0b7f89eba","user_id":12924209,"start_at":1727706364,"end_at":1727706394}}
2024-09-30 19:56:32 - 200 - {"status":0,"message":"","data":{"round_id":"d5b82225-c17f-4bc9-aa70-7dc0b7f89eba","user_id":12924209,"start_at":1727706364,"end_at":1727706394,"points":137}}
2024-09-30 19:56:33 - 200 - {"status":0,"message":"","data":{"available_balance":"10583.00","play_passes":0,"timestamp":1727706395,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"1779b190-db80-4632-afc5-3196e152dc4d","user_id":12924209,"start_at":1727697140,"end_at":1727707940,"last_claim":1727697140,"points":0},"daily":{"round_id":"c98bbcc7-75ba-4c06-a531-71d912bee509","user_id":12924209,"start_at":1727615650,"last_check_ts":1727630789,"last_check_ymd":20240930,"next_check_ts":1727712000,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}}
2024-09-30 19:56:36 - 200 - {"status":0,"message":"","data":{"available_balance":50442,"play_passes":0,"timestamp":1727706398,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"70d69106-c093-48ab-ae7d-ed76fdb2ffcb","user_id":32124262,"start_at":1727697127,"end_at":1727707927,"last_claim":1727697127,"points":0},"daily":{"round_id":"93927530-02e8-4a6e-a3a4-92c94df2a303","user_id":32124262,"start_at":1727352309,"last_check_ts":1727630770,"last_check_ymd":20240930,"next_check_ts":1727712000,"check_counter":5,"today_points":8000,"today_game":5,"diff":1}}}
2024-09-30 19:56:40 - 200 - {"status":0,"message":"","data":{"available_balance":42170,"play_passes":0,"timestamp":1727706402,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"0401f181-f277-45af-8efd-d96f5e2f834d","user_id":12936487,"start_at":1727697131,"end_at":1727707931,"last_claim":1727697131,"points":0},"daily":{"round_id":"6e16e753-d0ab-432f-9a4b-513930a35471","user_id":12936487,"start_at":1727352557,"last_check_ts":1727630775,"last_check_ymd":20240930,"next_check_ts":1727712000,"check_counter":5,"today_points":8000,"today_game":5,"diff":1}}}
2024-09-30 19:56:43 - 200 - {"status":0,"message":"","data":{"available_balance":14072,"play_passes":0,"timestamp":1727706406,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"16817ad3-5d31-4ed2-a601-19ec39abf6f6","user_id":10535485,"start_at":1727705368,"end_at":1727716168,"last_claim":1727705368,"points":0},"daily":{"round_id":"912cb072-760f-4c1b-bd5e-f4025d3c68e4","user_id":10535485,"start_at":1727579544,"last_check_ts":1727630780,"last_check_ymd":20240930,"next_check_ts":1727712000,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}}
2024-09-30 19:56:47 - 200 - {"status":0,"message":"","data":{"available_balance":8538,"play_passes":0,"timestamp":1727706410,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"89297440-fb45-4575-b530-a9c540f67519","user_id":15231956,"start_at":1727697136,"end_at":1727707936,"last_claim":1727697136,"points":0},"daily":{"round_id":"33de41c2-b988-405b-b2d6-dc318db03b20","user_id":15231956,"start_at":1727615459,"last_check_ts":1727630785,"last_check_ymd":20240930,"next_check_ts":1727712000,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}}
2024-09-30 19:56:51 - 200 - {"status":0,"message":"","data":{"available_balance":10583,"play_passes":0,"timestamp":1727706416,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"1779b190-db80-4632-afc5-3196e152dc4d","user_id":12924209,"start_at":1727697140,"end_at":1727707940,"last_claim":1727697140,"points":0},"daily":{"round_id":"c98bbcc7-75ba-4c06-a531-71d912bee509","user_id":12924209,"start_at":1727615650,"last_check_ts":1727630789,"last_check_ymd":20240930,"next_check_ts":1727712000,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}}
2024-10-01 01:22:24 - 200 - {"status":0,"message":"","data":{"available_balance":"52602.00","play_passes":0,"timestamp":1727725947,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"bbffba1c-3322-4fae-b268-94d91955da3a","user_id":32124262,"start_at":1727720735,"end_at":1727731535,"last_claim":1727720735,"points":0},"daily":{"round_id":"93927530-02e8-4a6e-a3a4-92c94df2a303","user_id":32124262,"start_at":1727352309,"last_check_ts":1727630770,"last_check_ymd":20240930,"next_check_ts":1727712000,"check_counter":5,"today_points":8000,"today_game":5,"diff":1}}}
2024-10-01 01:22:25 - 200 - {"status":400,"message":"already_check","data":{"round_id":"93927530-02e8-4a6e-a3a4-92c94df2a303","user_id":32124262,"start_at":1727352309,"last_check_ts":1727630770,"last_check_ymd":20240930,"next_check_ts":1727712000,"check_counter":5,"today_points":8000,"today_game":5,"diff":1}}
2024-10-01 01:22:29 - 200 - {"status":0,"message":"","data":{"available_balance":"44330.00","play_passes":0,"timestamp":1727725951,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"1b082e77-1965-48ee-be86-0913830ce20b","user_id":12936487,"start_at":1727720740,"end_at":1727731540,"last_claim":1727720740,"points":0},"daily":{"round_id":"6e16e753-d0ab-432f-9a4b-513930a35471","user_id":12936487,"start_at":1727352557,"last_check_ts":1727630775,"last_check_ymd":20240930,"next_check_ts":1727712000,"check_counter":5,"today_points":8000,"today_game":5,"diff":1}}}
2024-10-01 01:22:29 - 200 - {"status":400,"message":"already_check","data":{"round_id":"6e16e753-d0ab-432f-9a4b-513930a35471","user_id":12936487,"start_at":1727352557,"last_check_ts":1727630775,"last_check_ymd":20240930,"next_check_ts":1727712000,"check_counter":5,"today_points":8000,"today_game":5,"diff":1}}
2024-10-01 01:22:33 - 200 - {"status":0,"message":"","data":{"available_balance":"14072.00","play_passes":0,"timestamp":1727725955,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"16817ad3-5d31-4ed2-a601-19ec39abf6f6","user_id":10535485,"start_at":1727705368,"end_at":1727716168,"last_claim":1727705368,"points":0},"daily":{"round_id":"912cb072-760f-4c1b-bd5e-f4025d3c68e4","user_id":10535485,"start_at":1727579544,"last_check_ts":1727630780,"last_check_ymd":20240930,"next_check_ts":1727712000,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}}
2024-10-01 01:22:33 - 200 - {"status":400,"message":"already_check","data":{"round_id":"912cb072-760f-4c1b-bd5e-f4025d3c68e4","user_id":10535485,"start_at":1727579544,"last_check_ts":1727630780,"last_check_ymd":20240930,"next_check_ts":1727712000,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}
2024-10-01 01:22:33 - 200 - {"status":0,"message":"","data":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"16817ad3-5d31-4ed2-a601-19ec39abf6f6","user_id":10535485,"start_at":1727705368,"end_at":1727716168,"last_claim":1727725956,"points":"1080.00","finished":true,"claim_this_time":"1080.00"}}
2024-10-01 01:22:34 - 200 - {"status":0,"message":"","data":{"available_balance":"15152.00","play_passes":0,"timestamp":1727725956,"daily":{"round_id":"912cb072-760f-4c1b-bd5e-f4025d3c68e4","user_id":10535485,"start_at":1727579544,"last_check_ts":1727630780,"last_check_ymd":20240930,"next_check_ts":1727712000,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}}
2024-10-01 01:22:34 - 200 - {"status":400,"message":"already_check","data":{"round_id":"912cb072-760f-4c1b-bd5e-f4025d3c68e4","user_id":10535485,"start_at":1727579544,"last_check_ts":1727630780,"last_check_ymd":20240930,"next_check_ts":1727712000,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}
2024-10-01 01:22:34 - 200 - {"status":0,"message":"","data":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"2190564b-badc-406f-84ce-fc82a8153a18","user_id":10535485,"start_at":1727725957,"end_at":1727736757,"last_claim":1727725957,"points":0}}
2024-10-01 01:22:35 - 200 - {"status":0,"message":"","data":{"available_balance":15152,"play_passes":0,"timestamp":1727725957,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"2190564b-badc-406f-84ce-fc82a8153a18","user_id":10535485,"start_at":1727725957,"end_at":1727736757,"last_claim":1727725957,"points":0},"daily":{"round_id":"912cb072-760f-4c1b-bd5e-f4025d3c68e4","user_id":10535485,"start_at":1727579544,"last_check_ts":1727630780,"last_check_ymd":20240930,"next_check_ts":1727712000,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}}
2024-10-01 01:22:35 - 200 - {"status":400,"message":"already_check","data":{"round_id":"912cb072-760f-4c1b-bd5e-f4025d3c68e4","user_id":10535485,"start_at":1727579544,"last_check_ts":1727630780,"last_check_ymd":20240930,"next_check_ts":1727712000,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}
2024-10-01 01:22:38 - 200 - {"status":0,"message":"","data":{"available_balance":"10698.00","play_passes":0,"timestamp":1727725961,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"e954b994-432f-4b9e-897f-0468987e0ff5","user_id":15231956,"start_at":1727720745,"end_at":1727731545,"last_claim":1727720745,"points":0},"daily":{"round_id":"33de41c2-b988-405b-b2d6-dc318db03b20","user_id":15231956,"start_at":1727615459,"last_check_ts":1727630785,"last_check_ymd":20240930,"next_check_ts":1727712000,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}}
2024-10-01 01:22:39 - 200 - {"status":400,"message":"already_check","data":{"round_id":"33de41c2-b988-405b-b2d6-dc318db03b20","user_id":15231956,"start_at":1727615459,"last_check_ts":1727630785,"last_check_ymd":20240930,"next_check_ts":1727712000,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}
2024-10-01 01:22:42 - 200 - {"status":0,"message":"","data":{"available_balance":"12743.00","play_passes":0,"timestamp":1727725965,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"9ac60765-faf4-4ae2-ae57-71a700b5a7f6","user_id":12924209,"start_at":1727720751,"end_at":1727731551,"last_claim":1727720751,"points":0},"daily":{"round_id":"c98bbcc7-75ba-4c06-a531-71d912bee509","user_id":12924209,"start_at":1727615650,"last_check_ts":1727630789,"last_check_ymd":20240930,"next_check_ts":1727712000,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}}
2024-10-01 01:22:43 - 200 - {"status":400,"message":"already_check","data":{"round_id":"c98bbcc7-75ba-4c06-a531-71d912bee509","user_id":12924209,"start_at":1727615650,"last_check_ts":1727630789,"last_check_ymd":20240930,"next_check_ts":1727712000,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}
2024-10-01 01:25:10 - 200 - {"status":0,"message":"","data":{"tel_id":"5760224255","id":8565031,"fn":"Krish","ln":"Lalwani 🦴","access_token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlblVzZXIiOnsidGVsX2lkIjoiNTc2MDIyNDI1NSIsImlkIjo4NTY1MDMxLCJmbiI6IktyaXNoIiwibG4iOiJMYWx3YW5pIPCfprQifSwiaWF0IjoxNzI3NzI2MTEyLCJleHAiOjE3MzAzMTgxMTJ9.sLvAVVkI84WaVFOw5gyu8xJKgCJjDQnyPxCR5K1-dJM","photo_url":"","is_kol":0,"is_new":false}}
2024-10-01 01:25:10 - 200 - {"status":0,"message":"","data":{"available_balance":"690330.30","play_passes":6,"timestamp":1727726113,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"ea8ee57d-21a2-447c-9cd4-4e4e7c72f4fe","user_id":8565031,"start_at":1727663980,"end_at":1727674780,"last_claim":1727663980,"points":0},"daily":{"round_id":"3d1adf61-5428-403f-b735-0f55996e8990","user_id":8565031,"start_at":1727635158,"last_check_ts":1727635158,"last_check_ymd":20240930,"next_check_ts":1727712000,"check_counter":1,"today_points":200,"today_game":1}}}
2024-10-01 01:25:11 - 200 - {"status":400,"message":"already_check","data":{"round_id":"3d1adf61-5428-403f-b735-0f55996e8990","user_id":8565031,"start_at":1727635158,"last_check_ts":1727635158,"last_check_ymd":20240930,"next_check_ts":1727712000,"check_counter":1,"today_points":200,"today_game":1}}
2024-10-01 01:25:11 - 200 - {"status":0,"message":"","data":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"ea8ee57d-21a2-447c-9cd4-4e4e7c72f4fe","user_id":8565031,"start_at":1727663980,"end_at":1727674780,"last_claim":1727726113,"points":"1080.00","finished":true,"claim_this_time":"1080.00"}}
2024-10-01 01:25:11 - 200 - {"status":0,"message":"","data":{"available_balance":"691410.30","play_passes":6,"timestamp":1727726114,"daily":{"round_id":"3d1adf61-5428-403f-b735-0f55996e8990","user_id":8565031,"start_at":1727635158,"last_check_ts":1727635158,"last_check_ymd":20240930,"next_check_ts":1727712000,"check_counter":1,"today_points":200,"today_game":1}}}
2024-10-01 01:25:12 - 200 - {"status":400,"message":"already_check","data":{"round_id":"3d1adf61-5428-403f-b735-0f55996e8990","user_id":8565031,"start_at":1727635158,"last_check_ts":1727635158,"last_check_ymd":20240930,"next_check_ts":1727712000,"check_counter":1,"today_points":200,"today_game":1}}
2024-10-01 01:25:12 - 200 - {"status":0,"message":"","data":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"f7b42f67-1c5a-4112-9b13-55d110d6f341","user_id":8565031,"start_at":1727726115,"end_at":1727736915,"last_claim":1727726115,"points":0}}
2024-10-01 01:25:13 - 200 - {"status":0,"message":"","data":{"available_balance":691410.3,"play_passes":6,"timestamp":1727726115,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"f7b42f67-1c5a-4112-9b13-55d110d6f341","user_id":8565031,"start_at":1727726115,"end_at":1727736915,"last_claim":1727726115,"points":0},"daily":{"round_id":"3d1adf61-5428-403f-b735-0f55996e8990","user_id":8565031,"start_at":1727635158,"last_check_ts":1727635158,"last_check_ymd":20240930,"next_check_ts":1727712000,"check_counter":1,"today_points":200,"today_game":1}}}
2024-10-01 01:25:13 - 200 - {"status":400,"message":"already_check","data":{"round_id":"3d1adf61-5428-403f-b735-0f55996e8990","user_id":8565031,"start_at":1727635158,"last_check_ts":1727635158,"last_check_ymd":20240930,"next_check_ts":1727712000,"check_counter":1,"today_points":200,"today_game":1}}
2024-10-01 01:25:14 - 200 - {"status":0,"message":"","data":{"round_id":"b76e1774-9191-4744-b8b1-74e499ae97d7","user_id":8565031,"start_at":1727726116,"end_at":1727726146}}
2024-10-01 01:25:44 - 200 - {"status":0,"message":"","data":{"round_id":"b76e1774-9191-4744-b8b1-74e499ae97d7","user_id":8565031,"start_at":1727726116,"end_at":1727726146,"points":147}}
2024-10-01 01:25:44 - 200 - {"status":0,"message":"","data":{"round_id":"c724f0ae-5bcd-43b6-b3cf-32e2061da572","user_id":8565031,"start_at":1727726147,"end_at":1727726177}}
2024-10-01 01:26:16 - 200 - {"status":0,"message":"","data":{"round_id":"c724f0ae-5bcd-43b6-b3cf-32e2061da572","user_id":8565031,"start_at":1727726147,"end_at":1727726177,"points":134}}
2024-10-01 01:26:16 - 200 - {"status":0,"message":"","data":{"round_id":"bee27081-df0e-4495-b345-1f6ebfc395f2","user_id":8565031,"start_at":1727726179,"end_at":1727726209}}
2024-10-01 01:26:47 - 200 - {"status":0,"message":"","data":{"round_id":"bee27081-df0e-4495-b345-1f6ebfc395f2","user_id":8565031,"start_at":1727726179,"end_at":1727726209,"points":100}}
2024-10-01 01:26:47 - 200 - {"status":0,"message":"","data":{"round_id":"efe215af-d5de-4bc7-9544-4940529be8c7","user_id":8565031,"start_at":1727726209,"end_at":1727726239}}
2024-10-01 01:27:17 - 200 - {"status":0,"message":"","data":{"round_id":"efe215af-d5de-4bc7-9544-4940529be8c7","user_id":8565031,"start_at":1727726209,"end_at":1727726239,"points":140}}
2024-10-01 01:27:18 - 200 - {"status":0,"message":"","data":{"round_id":"1a01d9c8-35b7-4a72-9f5e-6e7a890cd832","user_id":8565031,"start_at":1727726240,"end_at":1727726270}}
2024-10-01 01:27:48 - 200 - {"status":0,"message":"","data":{"round_id":"1a01d9c8-35b7-4a72-9f5e-6e7a890cd832","user_id":8565031,"start_at":1727726240,"end_at":1727726270,"points":103}}
2024-10-01 01:27:49 - 200 - {"status":0,"message":"","data":{"round_id":"646f9552-bd45-43dd-9a45-ed09aab7f6a4","user_id":8565031,"start_at":1727726271,"end_at":1727726301}}
2024-10-01 01:28:19 - 200 - {"status":0,"message":"","data":{"round_id":"646f9552-bd45-43dd-9a45-ed09aab7f6a4","user_id":8565031,"start_at":1727726271,"end_at":1727726301,"points":124}}
2024-10-01 01:28:19 - 200 - {"status":0,"message":"","data":{"available_balance":"692158.30","play_passes":0,"timestamp":1727726301,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"f7b42f67-1c5a-4112-9b13-55d110d6f341","user_id":8565031,"start_at":1727726115,"end_at":1727736915,"last_claim":1727726115,"points":0},"daily":{"round_id":"3d1adf61-5428-403f-b735-0f55996e8990","user_id":8565031,"start_at":1727635158,"last_check_ts":1727635158,"last_check_ymd":20240930,"next_check_ts":1727712000,"check_counter":1,"today_points":200,"today_game":1}}}
2024-10-01 01:28:19 - 200 - {"status":400,"message":"already_check","data":{"round_id":"3d1adf61-5428-403f-b735-0f55996e8990","user_id":8565031,"start_at":1727635158,"last_check_ts":1727635158,"last_check_ymd":20240930,"next_check_ts":1727712000,"check_counter":1,"today_points":200,"today_game":1}}
2024-10-01 01:28:23 - 200 - {"status":0,"message":"","data":{"available_balance":52602,"play_passes":0,"timestamp":1727726306,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"bbffba1c-3322-4fae-b268-94d91955da3a","user_id":32124262,"start_at":1727720735,"end_at":1727731535,"last_claim":1727720735,"points":0},"daily":{"round_id":"93927530-02e8-4a6e-a3a4-92c94df2a303","user_id":32124262,"start_at":1727352309,"last_check_ts":1727630770,"last_check_ymd":20240930,"next_check_ts":1727712000,"check_counter":5,"today_points":8000,"today_game":5,"diff":1}}}
2024-10-01 01:28:24 - 200 - {"status":400,"message":"already_check","data":{"round_id":"93927530-02e8-4a6e-a3a4-92c94df2a303","user_id":32124262,"start_at":1727352309,"last_check_ts":1727630770,"last_check_ymd":20240930,"next_check_ts":1727712000,"check_counter":5,"today_points":8000,"today_game":5,"diff":1}}
2024-10-01 01:28:27 - 200 - {"status":0,"message":"","data":{"available_balance":44330,"play_passes":0,"timestamp":1727726310,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"1b082e77-1965-48ee-be86-0913830ce20b","user_id":12936487,"start_at":1727720740,"end_at":1727731540,"last_claim":1727720740,"points":0},"daily":{"round_id":"6e16e753-d0ab-432f-9a4b-513930a35471","user_id":12936487,"start_at":1727352557,"last_check_ts":1727630775,"last_check_ymd":20240930,"next_check_ts":1727712000,"check_counter":5,"today_points":8000,"today_game":5,"diff":1}}}
2024-10-01 01:28:28 - 200 - {"status":400,"message":"already_check","data":{"round_id":"6e16e753-d0ab-432f-9a4b-513930a35471","user_id":12936487,"start_at":1727352557,"last_check_ts":1727630775,"last_check_ymd":20240930,"next_check_ts":1727712000,"check_counter":5,"today_points":8000,"today_game":5,"diff":1}}
2024-10-01 01:28:31 - 200 - {"status":0,"message":"","data":{"available_balance":15152,"play_passes":0,"timestamp":1727726314,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"2190564b-badc-406f-84ce-fc82a8153a18","user_id":10535485,"start_at":1727725957,"end_at":1727736757,"last_claim":1727725957,"points":0},"daily":{"round_id":"912cb072-760f-4c1b-bd5e-f4025d3c68e4","user_id":10535485,"start_at":1727579544,"last_check_ts":1727630780,"last_check_ymd":20240930,"next_check_ts":1727712000,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}}
2024-10-01 01:28:32 - 200 - {"status":400,"message":"already_check","data":{"round_id":"912cb072-760f-4c1b-bd5e-f4025d3c68e4","user_id":10535485,"start_at":1727579544,"last_check_ts":1727630780,"last_check_ymd":20240930,"next_check_ts":1727712000,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}
2024-10-01 01:28:35 - 200 - {"status":0,"message":"","data":{"available_balance":10698,"play_passes":0,"timestamp":1727726317,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"e954b994-432f-4b9e-897f-0468987e0ff5","user_id":15231956,"start_at":1727720745,"end_at":1727731545,"last_claim":1727720745,"points":0},"daily":{"round_id":"33de41c2-b988-405b-b2d6-dc318db03b20","user_id":15231956,"start_at":1727615459,"last_check_ts":1727630785,"last_check_ymd":20240930,"next_check_ts":1727712000,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}}
2024-10-01 01:28:35 - 200 - {"status":400,"message":"already_check","data":{"round_id":"33de41c2-b988-405b-b2d6-dc318db03b20","user_id":15231956,"start_at":1727615459,"last_check_ts":1727630785,"last_check_ymd":20240930,"next_check_ts":1727712000,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}
2024-10-01 01:28:39 - 200 - {"status":0,"message":"","data":{"available_balance":12743,"play_passes":0,"timestamp":1727726321,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"9ac60765-faf4-4ae2-ae57-71a700b5a7f6","user_id":12924209,"start_at":1727720751,"end_at":1727731551,"last_claim":1727720751,"points":0},"daily":{"round_id":"c98bbcc7-75ba-4c06-a531-71d912bee509","user_id":12924209,"start_at":1727615650,"last_check_ts":1727630789,"last_check_ymd":20240930,"next_check_ts":1727712000,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}}
2024-10-01 01:28:40 - 200 - {"status":400,"message":"already_check","data":{"round_id":"c98bbcc7-75ba-4c06-a531-71d912bee509","user_id":12924209,"start_at":1727615650,"last_check_ts":1727630789,"last_check_ymd":20240930,"next_check_ts":1727712000,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}
2024-10-01 19:04:47 - 200 - {"status":0,"message":"","data":{"available_balance":699378.3,"play_passes":7,"timestamp":1727789687,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"bd2f30eb-b8df-435e-bb0d-22594e8aa634","user_id":8565031,"start_at":1727789596,"end_at":1727800396,"last_claim":1727789596,"points":0},"daily":{"round_id":"3d1adf61-5428-403f-b735-0f55996e8990","user_id":8565031,"start_at":1727635158,"last_check_ts":1727760756,"last_check_ymd":20241001,"next_check_ts":1727798400,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}}
2024-10-01 19:04:47 - 200 - {"status":0,"message":"","data":{"round_id":"9984dcb7-6207-4db1-a6d5-63855fc42258","user_id":8565031,"start_at":1727789688,"end_at":1727789718}}
2024-10-01 19:05:18 - 200 - {"status":0,"message":"","data":{"round_id":"9984dcb7-6207-4db1-a6d5-63855fc42258","user_id":8565031,"start_at":1727789688,"end_at":1727789718,"points":108}}
2024-10-01 19:05:18 - 200 - {"status":0,"message":"","data":{"round_id":"e66c6601-ad4f-49a2-8fc1-6ccc9dceb61c","user_id":8565031,"start_at":1727789719,"end_at":1727789749}}
2024-10-01 19:05:49 - 200 - {"status":0,"message":"","data":{"round_id":"e66c6601-ad4f-49a2-8fc1-6ccc9dceb61c","user_id":8565031,"start_at":1727789719,"end_at":1727789749,"points":129}}
2024-10-01 19:05:49 - 200 - {"status":0,"message":"","data":{"round_id":"e1f31bbc-2440-4a96-abc0-f105e17ce2dc","user_id":8565031,"start_at":1727789749,"end_at":1727789779}}
2024-10-01 19:06:28 - 200 - {"status":0,"message":"","data":{"round_id":"e1f31bbc-2440-4a96-abc0-f105e17ce2dc","user_id":8565031,"start_at":1727789749,"end_at":1727789779,"points":146}}
2024-10-01 19:06:28 - 200 - {"status":0,"message":"","data":{"round_id":"4999cee6-0fa8-489e-9289-1f54eff9004a","user_id":8565031,"start_at":1727789788,"end_at":1727789818}}
2024-10-01 19:07:27 - 200 - {"status":0,"message":"","data":{"round_id":"4999cee6-0fa8-489e-9289-1f54eff9004a","user_id":8565031,"start_at":1727789788,"end_at":1727789818,"points":147}}
2024-10-01 19:07:27 - 200 - {"status":0,"message":"","data":{"round_id":"e0585dd6-7fa3-48d4-b5bb-d19866a3e98d","user_id":8565031,"start_at":1727789848,"end_at":1727789878}}
2024-10-01 19:09:17 - 200 - {"status":0,"message":"","data":{"round_id":"e0585dd6-7fa3-48d4-b5bb-d19866a3e98d","user_id":8565031,"start_at":1727789848,"end_at":1727789878,"points":110}}
2024-10-01 19:09:17 - 200 - {"status":0,"message":"","data":{"round_id":"51b7dffe-de3f-459d-ac1a-ffe1df39909e","user_id":8565031,"start_at":1727789958,"end_at":1727789988}}
2024-10-01 19:09:48 - 200 - {"status":0,"message":"","data":{"round_id":"51b7dffe-de3f-459d-ac1a-ffe1df39909e","user_id":8565031,"start_at":1727789958,"end_at":1727789988,"points":149}}
2024-10-01 19:09:48 - 200 - {"status":0,"message":"","data":{"round_id":"f9080f3e-716d-4ad5-9b42-5ae8877a0324","user_id":8565031,"start_at":1727789989,"end_at":1727790019}}
2024-10-01 19:10:19 - 200 - {"status":0,"message":"","data":{"round_id":"f9080f3e-716d-4ad5-9b42-5ae8877a0324","user_id":8565031,"start_at":1727789989,"end_at":1727790019,"points":127}}
2024-10-01 19:10:19 - 200 - {"status":0,"message":"","data":{"available_balance":"700294.30","play_passes":0,"timestamp":1727790019,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"bd2f30eb-b8df-435e-bb0d-22594e8aa634","user_id":8565031,"start_at":1727789596,"end_at":1727800396,"last_claim":1727789596,"points":0},"daily":{"round_id":"3d1adf61-5428-403f-b735-0f55996e8990","user_id":8565031,"start_at":1727635158,"last_check_ts":1727760756,"last_check_ymd":20241001,"next_check_ts":1727798400,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}}
2024-10-01 19:10:22 - 200 - {"status":0,"message":"","data":{"available_balance":"65842.00","play_passes":11,"timestamp":1727790023,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"c450eb3d-bd71-4223-b50a-70b83caa47f2","user_id":32124262,"start_at":1727786246,"end_at":1727797046,"last_claim":1727786246,"points":0},"daily":{"round_id":"93927530-02e8-4a6e-a3a4-92c94df2a303","user_id":32124262,"start_at":1727352309,"last_check_ts":1727717932,"last_check_ymd":20241001,"next_check_ts":1727798400,"check_counter":6,"today_points":10000,"today_game":6,"diff":1}}}
2024-10-01 19:10:23 - 200 - {"status":0,"message":"","data":{"round_id":"e7306b99-ba2c-497a-a727-b76b2a60fa84","user_id":32124262,"start_at":1727790023,"end_at":1727790053}}
2024-10-01 19:10:53 - 200 - {"status":0,"message":"","data":{"round_id":"e7306b99-ba2c-497a-a727-b76b2a60fa84","user_id":32124262,"start_at":1727790023,"end_at":1727790053,"points":147}}
2024-10-01 19:10:54 - 200 - {"status":0,"message":"","data":{"round_id":"6f012437-2522-4289-a98f-730b8987708d","user_id":32124262,"start_at":1727790054,"end_at":1727790084}}
2024-10-01 19:11:24 - 200 - {"status":0,"message":"","data":{"round_id":"6f012437-2522-4289-a98f-730b8987708d","user_id":32124262,"start_at":1727790054,"end_at":1727790084,"points":113}}
2024-10-01 19:11:25 - 200 - {"status":0,"message":"","data":{"round_id":"7670a5af-9dd1-469b-8f1c-a2f76cb39dca","user_id":32124262,"start_at":1727790085,"end_at":1727790115}}
2024-10-01 19:11:55 - 200 - {"status":0,"message":"","data":{"round_id":"7670a5af-9dd1-469b-8f1c-a2f76cb39dca","user_id":32124262,"start_at":1727790085,"end_at":1727790115,"points":118}}
2024-10-01 19:11:55 - 200 - {"status":0,"message":"","data":{"round_id":"17ff08b7-c37a-4012-8eb5-fb82ce482906","user_id":32124262,"start_at":1727790115,"end_at":1727790145}}
2024-10-01 19:12:25 - 200 - {"status":0,"message":"","data":{"round_id":"17ff08b7-c37a-4012-8eb5-fb82ce482906","user_id":32124262,"start_at":1727790115,"end_at":1727790145,"points":133}}
2024-10-01 19:12:26 - 200 - {"status":0,"message":"","data":{"round_id":"7a36f7fc-d7c0-4288-a324-9bffdc95fd48","user_id":32124262,"start_at":1727790146,"end_at":1727790176}}
2024-10-01 19:12:57 - 200 - {"status":0,"message":"","data":{"round_id":"7a36f7fc-d7c0-4288-a324-9bffdc95fd48","user_id":32124262,"start_at":1727790146,"end_at":1727790176,"points":102}}
2024-10-01 19:12:58 - 200 - {"status":0,"message":"","data":{"round_id":"1184e3b9-c81e-4131-a9f9-c598a300dc49","user_id":32124262,"start_at":1727790178,"end_at":1727790208}}
2024-10-01 19:13:28 - 200 - {"status":0,"message":"","data":{"round_id":"1184e3b9-c81e-4131-a9f9-c598a300dc49","user_id":32124262,"start_at":1727790178,"end_at":1727790208,"points":149}}
2024-10-01 19:13:28 - 200 - {"status":0,"message":"","data":{"round_id":"10f7c13a-2b96-460b-a921-b010302adf29","user_id":32124262,"start_at":1727790209,"end_at":1727790239}}
2024-10-01 19:13:59 - 200 - {"status":0,"message":"","data":{"round_id":"10f7c13a-2b96-460b-a921-b010302adf29","user_id":32124262,"start_at":1727790209,"end_at":1727790239,"points":104}}
2024-10-01 19:13:59 - 200 - {"status":0,"message":"","data":{"round_id":"0498ceb8-c951-4871-974b-fd9b2d10c702","user_id":32124262,"start_at":1727790239,"end_at":1727790269}}
2024-10-01 19:14:29 - 200 - {"status":0,"message":"","data":{"round_id":"0498ceb8-c951-4871-974b-fd9b2d10c702","user_id":32124262,"start_at":1727790239,"end_at":1727790269,"points":126}}
2024-10-01 19:14:30 - 200 - {"status":0,"message":"","data":{"round_id":"532eaafa-5262-4f7d-93ff-cfbee694c099","user_id":32124262,"start_at":1727790270,"end_at":1727790300}}
2024-10-01 19:15:00 - 200 - {"status":0,"message":"","data":{"round_id":"532eaafa-5262-4f7d-93ff-cfbee694c099","user_id":32124262,"start_at":1727790270,"end_at":1727790300,"points":126}}
2024-10-01 19:15:01 - 200 - {"status":0,"message":"","data":{"round_id":"bcc443fa-69c2-4c53-b83a-a801611157e8","user_id":32124262,"start_at":1727790301,"end_at":1727790331}}
2024-10-01 19:15:31 - 200 - {"status":0,"message":"","data":{"round_id":"bcc443fa-69c2-4c53-b83a-a801611157e8","user_id":32124262,"start_at":1727790301,"end_at":1727790331,"points":106}}
2024-10-01 19:15:31 - 200 - {"status":0,"message":"","data":{"round_id":"2f8519ab-6cfb-4e9d-8916-da960f2ff2b9","user_id":32124262,"start_at":1727790331,"end_at":1727790361}}
2024-10-01 19:16:01 - 200 - {"status":0,"message":"","data":{"round_id":"2f8519ab-6cfb-4e9d-8916-da960f2ff2b9","user_id":32124262,"start_at":1727790331,"end_at":1727790361,"points":103}}
2024-10-01 19:16:02 - 200 - {"status":0,"message":"","data":{"available_balance":"67169.00","play_passes":0,"timestamp":1727790362,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"c450eb3d-bd71-4223-b50a-70b83caa47f2","user_id":32124262,"start_at":1727786246,"end_at":1727797046,"last_claim":1727786246,"points":0},"daily":{"round_id":"93927530-02e8-4a6e-a3a4-92c94df2a303","user_id":32124262,"start_at":1727352309,"last_check_ts":1727717932,"last_check_ymd":20241001,"next_check_ts":1727798400,"check_counter":6,"today_points":10000,"today_game":6,"diff":1}}}
2024-10-01 19:16:05 - 200 - {"status":0,"message":"","data":{"available_balance":"57570.00","play_passes":11,"timestamp":1727790366,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"2c53851e-c1aa-4b66-aa98-50bb67cde6c4","user_id":12936487,"start_at":1727786251,"end_at":1727797051,"last_claim":1727786251,"points":0},"daily":{"round_id":"6e16e753-d0ab-432f-9a4b-513930a35471","user_id":12936487,"start_at":1727352557,"last_check_ts":1727717937,"last_check_ymd":20241001,"next_check_ts":1727798400,"check_counter":6,"today_points":10000,"today_game":6,"diff":1}}}
2024-10-01 19:16:06 - 200 - {"status":0,"message":"","data":{"round_id":"dec32eb2-2bd9-4cef-b62c-a38fd0d09fa8","user_id":12936487,"start_at":1727790366,"end_at":1727790396}}
2024-10-01 19:16:36 - 200 - {"status":0,"message":"","data":{"round_id":"dec32eb2-2bd9-4cef-b62c-a38fd0d09fa8","user_id":12936487,"start_at":1727790366,"end_at":1727790396,"points":135}}
2024-10-01 19:16:36 - 200 - {"status":0,"message":"","data":{"round_id":"517e6eed-d459-4d28-9281-6d5dea26d7f1","user_id":12936487,"start_at":1727790397,"end_at":1727790427}}
2024-10-01 19:17:07 - 200 - {"status":0,"message":"","data":{"round_id":"517e6eed-d459-4d28-9281-6d5dea26d7f1","user_id":12936487,"start_at":1727790397,"end_at":1727790427,"points":105}}
2024-10-01 19:17:07 - 200 - {"status":0,"message":"","data":{"round_id":"c96f494d-acea-452a-98e0-9ef255d60db5","user_id":12936487,"start_at":1727790427,"end_at":1727790457}}
2024-10-01 19:17:38 - 200 - {"status":0,"message":"","data":{"round_id":"c96f494d-acea-452a-98e0-9ef255d60db5","user_id":12936487,"start_at":1727790427,"end_at":1727790457,"points":116}}
2024-10-01 19:17:38 - 200 - {"status":0,"message":"","data":{"round_id":"d96a1be1-494e-4af6-b52b-b7217c7a14de","user_id":12936487,"start_at":1727790458,"end_at":1727790488}}
2024-10-01 19:18:08 - 200 - {"status":0,"message":"","data":{"round_id":"d96a1be1-494e-4af6-b52b-b7217c7a14de","user_id":12936487,"start_at":1727790458,"end_at":1727790488,"points":133}}
2024-10-01 19:18:09 - 200 - {"status":0,"message":"","data":{"round_id":"60ec59e0-9057-4752-a9bf-f159684353ab","user_id":12936487,"start_at":1727790489,"end_at":1727790519}}
2024-10-01 19:18:39 - 200 - {"status":0,"message":"","data":{"round_id":"60ec59e0-9057-4752-a9bf-f159684353ab","user_id":12936487,"start_at":1727790489,"end_at":1727790519,"points":138}}
2024-10-01 19:18:39 - 200 - {"status":0,"message":"","data":{"round_id":"21057082-3200-4ae3-83ef-00295bd26d2a","user_id":12936487,"start_at":1727790519,"end_at":1727790549}}
2024-10-01 19:19:09 - 200 - {"status":0,"message":"","data":{"round_id":"21057082-3200-4ae3-83ef-00295bd26d2a","user_id":12936487,"start_at":1727790519,"end_at":1727790549,"points":106}}
2024-10-01 19:19:10 - 200 - {"status":0,"message":"","data":{"round_id":"68f45284-efcc-4524-aae3-4ee13158049f","user_id":12936487,"start_at":1727790550,"end_at":1727790580}}
2024-10-01 19:19:40 - 200 - {"status":0,"message":"","data":{"round_id":"68f45284-efcc-4524-aae3-4ee13158049f","user_id":12936487,"start_at":1727790550,"end_at":1727790580,"points":113}}
2024-10-01 19:19:40 - 200 - {"status":0,"message":"","data":{"round_id":"f29c47a3-5a24-4d82-b0f0-e546b4d1e43f","user_id":12936487,"start_at":1727790581,"end_at":1727790611}}
2024-10-01 19:20:11 - 200 - {"status":0,"message":"","data":{"round_id":"f29c47a3-5a24-4d82-b0f0-e546b4d1e43f","user_id":12936487,"start_at":1727790581,"end_at":1727790611,"points":116}}
2024-10-01 19:20:11 - 200 - {"status":0,"message":"","data":{"round_id":"d98f1f26-1f59-4bb1-ad1f-80b852d66941","user_id":12936487,"start_at":1727790611,"end_at":1727790641}}
2024-10-01 19:20:41 - 200 - {"status":0,"message":"","data":{"round_id":"d98f1f26-1f59-4bb1-ad1f-80b852d66941","user_id":12936487,"start_at":1727790611,"end_at":1727790641,"points":141}}
2024-10-01 19:20:42 - 200 - {"status":0,"message":"","data":{"round_id":"a42cc509-2963-484b-994e-c7b01255f2be","user_id":12936487,"start_at":1727790642,"end_at":1727790672}}
2024-10-01 19:21:12 - 200 - {"status":0,"message":"","data":{"round_id":"a42cc509-2963-484b-994e-c7b01255f2be","user_id":12936487,"start_at":1727790642,"end_at":1727790672,"points":101}}
2024-10-01 19:21:13 - 200 - {"status":0,"message":"","data":{"round_id":"c59603ee-de98-4b02-96cb-1cd928a14964","user_id":12936487,"start_at":1727790673,"end_at":1727790703}}
2024-10-01 19:21:43 - 200 - {"status":0,"message":"","data":{"round_id":"c59603ee-de98-4b02-96cb-1cd928a14964","user_id":12936487,"start_at":1727790673,"end_at":1727790703,"points":129}}
2024-10-01 19:21:43 - 200 - {"status":0,"message":"","data":{"available_balance":"58903.00","play_passes":0,"timestamp":1727790703,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"2c53851e-c1aa-4b66-aa98-50bb67cde6c4","user_id":12936487,"start_at":1727786251,"end_at":1727797051,"last_claim":1727786251,"points":0},"daily":{"round_id":"6e16e753-d0ab-432f-9a4b-513930a35471","user_id":12936487,"start_at":1727352557,"last_check_ts":1727717937,"last_check_ymd":20241001,"next_check_ts":1727798400,"check_counter":6,"today_points":10000,"today_game":6,"diff":1}}}
2024-10-01 19:21:47 - 200 - {"status":0,"message":"","data":{"available_balance":"15152.00","play_passes":5,"timestamp":1727790707,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"2190564b-badc-406f-84ce-fc82a8153a18","user_id":10535485,"start_at":1727725957,"end_at":1727736757,"last_claim":1727725957,"points":0},"daily":{"round_id":"912cb072-760f-4c1b-bd5e-f4025d3c68e4","user_id":10535485,"start_at":1727579544,"last_check_ts":1727630780,"last_check_ymd":20240930,"next_check_ts":1727712000,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}}
2024-10-01 19:21:47 - 200 - {"status":0,"message":"","data":{"round_id":"912cb072-760f-4c1b-bd5e-f4025d3c68e4","user_id":10535485,"start_at":1727579544,"last_check_ts":1727761908,"last_check_ymd":20241001,"next_check_ts":1727798400,"check_counter":3,"today_points":4000,"today_game":3,"diff":1}}
2024-10-01 19:21:48 - 200 - {"status":0,"message":"","data":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"2190564b-badc-406f-84ce-fc82a8153a18","user_id":10535485,"start_at":1727725957,"end_at":1727736757,"last_claim":1727790708,"points":"1080.00","finished":true,"claim_this_time":"1080.00"}}
2024-10-01 19:21:48 - 200 - {"status":0,"message":"","data":{"available_balance":"20232.00","play_passes":8,"timestamp":1727790708,"daily":{"round_id":"912cb072-760f-4c1b-bd5e-f4025d3c68e4","user_id":10535485,"start_at":1727579544,"last_check_ts":1727761908,"last_check_ymd":20241001,"next_check_ts":1727798400,"check_counter":3,"today_points":4000,"today_game":3,"diff":1}}}
2024-10-01 19:21:48 - 200 - {"status":0,"message":"","data":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"fb8c93ac-fadf-4407-a16b-171532821b57","user_id":10535485,"start_at":1727790709,"end_at":1727801509,"last_claim":1727790709,"points":0}}
2024-10-01 19:21:49 - 200 - {"status":0,"message":"","data":{"available_balance":20232,"play_passes":8,"timestamp":1727790709,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"fb8c93ac-fadf-4407-a16b-171532821b57","user_id":10535485,"start_at":1727790709,"end_at":1727801509,"last_claim":1727790709,"points":0},"daily":{"round_id":"912cb072-760f-4c1b-bd5e-f4025d3c68e4","user_id":10535485,"start_at":1727579544,"last_check_ts":1727761908,"last_check_ymd":20241001,"next_check_ts":1727798400,"check_counter":3,"today_points":4000,"today_game":3,"diff":1}}}
2024-10-01 19:21:49 - 200 - {"status":0,"message":"","data":{"round_id":"1ece719c-7b3e-4794-9ceb-c9a7a11f9306","user_id":10535485,"start_at":1727790709,"end_at":1727790739}}
2024-10-01 19:22:20 - 200 - {"status":0,"message":"","data":{"round_id":"1ece719c-7b3e-4794-9ceb-c9a7a11f9306","user_id":10535485,"start_at":1727790709,"end_at":1727790739,"points":101}}
2024-10-01 19:22:20 - 200 - {"status":0,"message":"","data":{"round_id":"3ebcd6f2-c83b-41b4-a681-347fb53d3db5","user_id":10535485,"start_at":1727790741,"end_at":1727790771}}
2024-10-01 19:22:54 - 200 - {"status":0,"message":"","data":{"round_id":"3ebcd6f2-c83b-41b4-a681-347fb53d3db5","user_id":10535485,"start_at":1727790741,"end_at":1727790771,"points":150}}
2024-10-01 19:22:54 - 200 - {"status":0,"message":"","data":{"round_id":"c00a8434-f248-4334-8cad-aeeece4ea4d6","user_id":10535485,"start_at":1727790774,"end_at":1727790804}}
2024-10-01 19:23:24 - 200 - {"status":0,"message":"","data":{"round_id":"c00a8434-f248-4334-8cad-aeeece4ea4d6","user_id":10535485,"start_at":1727790774,"end_at":1727790804,"points":145}}
2024-10-01 19:23:25 - 200 - {"status":0,"message":"","data":{"round_id":"83eb2cf3-4a4d-449a-9ec1-2ce30b867729","user_id":10535485,"start_at":1727790805,"end_at":1727790835}}
2024-10-01 19:23:55 - 200 - {"status":0,"message":"","data":{"round_id":"83eb2cf3-4a4d-449a-9ec1-2ce30b867729","user_id":10535485,"start_at":1727790805,"end_at":1727790835,"points":150}}
2024-10-01 19:23:55 - 200 - {"status":0,"message":"","data":{"round_id":"82f3ac54-c5f3-4b8f-a041-266d6b3bb9fb","user_id":10535485,"start_at":1727790836,"end_at":1727790866}}
2024-10-01 19:24:26 - 200 - {"status":0,"message":"","data":{"round_id":"82f3ac54-c5f3-4b8f-a041-266d6b3bb9fb","user_id":10535485,"start_at":1727790836,"end_at":1727790866,"points":134}}
2024-10-01 19:24:26 - 200 - {"status":0,"message":"","data":{"round_id":"188d0994-106a-4d96-864b-2d69624424a0","user_id":10535485,"start_at":1727790866,"end_at":1727790896}}
2024-10-01 19:24:56 - 200 - {"status":0,"message":"","data":{"round_id":"188d0994-106a-4d96-864b-2d69624424a0","user_id":10535485,"start_at":1727790866,"end_at":1727790896,"points":139}}
2024-10-01 19:24:57 - 200 - {"status":0,"message":"","data":{"round_id":"505b48ae-b7f9-4590-87fc-ab61420196d1","user_id":10535485,"start_at":1727790897,"end_at":1727790927}}
2024-10-01 19:25:27 - 200 - {"status":0,"message":"","data":{"round_id":"505b48ae-b7f9-4590-87fc-ab61420196d1","user_id":10535485,"start_at":1727790897,"end_at":1727790927,"points":113}}
2024-10-01 19:25:27 - 200 - {"status":0,"message":"","data":{"round_id":"6406c97e-e1ce-414d-8edc-64bb28621d26","user_id":10535485,"start_at":1727790928,"end_at":1727790958}}
2024-10-01 19:25:58 - 200 - {"status":0,"message":"","data":{"round_id":"6406c97e-e1ce-414d-8edc-64bb28621d26","user_id":10535485,"start_at":1727790928,"end_at":1727790958,"points":119}}
2024-10-01 19:25:58 - 200 - {"status":0,"message":"","data":{"available_balance":"21283.00","play_passes":0,"timestamp":1727790958,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"fb8c93ac-fadf-4407-a16b-171532821b57","user_id":10535485,"start_at":1727790709,"end_at":1727801509,"last_claim":1727790709,"points":0},"daily":{"round_id":"912cb072-760f-4c1b-bd5e-f4025d3c68e4","user_id":10535485,"start_at":1727579544,"last_check_ts":1727761908,"last_check_ymd":20241001,"next_check_ts":1727798400,"check_counter":3,"today_points":4000,"today_game":3,"diff":1}}}
2024-10-01 19:26:01 - 200 - {"status":0,"message":"","data":{"available_balance":"15778.00","play_passes":8,"timestamp":1727790962,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"ba24528f-bdbd-4465-801c-d774602553f1","user_id":15231956,"start_at":1727746742,"end_at":1727757542,"last_claim":1727746742,"points":0},"daily":{"round_id":"33de41c2-b988-405b-b2d6-dc318db03b20","user_id":15231956,"start_at":1727615459,"last_check_ts":1727717942,"last_check_ymd":20241001,"next_check_ts":1727798400,"check_counter":3,"today_points":4000,"today_game":3,"diff":1}}}
2024-10-01 19:26:02 - 200 - {"status":0,"message":"","data":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"ba24528f-bdbd-4465-801c-d774602553f1","user_id":15231956,"start_at":1727746742,"end_at":1727757542,"last_claim":1727790962,"points":"1080.00","finished":true,"claim_this_time":"1080.00"}}
2024-10-01 19:26:03 - 200 - {"status":0,"message":"","data":{"available_balance":"16858.00","play_passes":8,"timestamp":1727790963,"daily":{"round_id":"33de41c2-b988-405b-b2d6-dc318db03b20","user_id":15231956,"start_at":1727615459,"last_check_ts":1727717942,"last_check_ymd":20241001,"next_check_ts":1727798400,"check_counter":3,"today_points":4000,"today_game":3,"diff":1}}}
2024-10-01 19:26:03 - 200 - {"status":0,"message":"","data":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"d20f6458-78c4-435e-8753-af939933d284","user_id":15231956,"start_at":1727790963,"end_at":1727801763,"last_claim":1727790963,"points":0}}
2024-10-01 19:26:03 - 200 - {"status":0,"message":"","data":{"available_balance":16858,"play_passes":8,"timestamp":1727790963,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"d20f6458-78c4-435e-8753-af939933d284","user_id":15231956,"start_at":1727790963,"end_at":1727801763,"last_claim":1727790963,"points":0},"daily":{"round_id":"33de41c2-b988-405b-b2d6-dc318db03b20","user_id":15231956,"start_at":1727615459,"last_check_ts":1727717942,"last_check_ymd":20241001,"next_check_ts":1727798400,"check_counter":3,"today_points":4000,"today_game":3,"diff":1}}}
2024-10-01 19:26:04 - 200 - {"status":0,"message":"","data":{"round_id":"0e3843ab-50a2-43c9-982d-b558e3eb28cf","user_id":15231956,"start_at":1727790964,"end_at":1727790994}}
2024-10-01 19:26:34 - 200 - {"status":0,"message":"","data":{"round_id":"0e3843ab-50a2-43c9-982d-b558e3eb28cf","user_id":15231956,"start_at":1727790964,"end_at":1727790994,"points":132}}
2024-10-01 19:26:34 - 200 - {"status":0,"message":"","data":{"round_id":"c098f6eb-1a5e-4603-abf7-2c736ce48b58","user_id":15231956,"start_at":1727790995,"end_at":1727791025}}
2024-10-01 19:27:05 - 200 - {"status":0,"message":"","data":{"round_id":"c098f6eb-1a5e-4603-abf7-2c736ce48b58","user_id":15231956,"start_at":1727790995,"end_at":1727791025,"points":116}}
2024-10-01 19:27:05 - 200 - {"status":0,"message":"","data":{"round_id":"a6463541-a759-418b-b6d9-126d5ee0f807","user_id":15231956,"start_at":1727791025,"end_at":1727791055}}
2024-10-01 19:27:36 - 200 - {"status":0,"message":"","data":{"round_id":"a6463541-a759-418b-b6d9-126d5ee0f807","user_id":15231956,"start_at":1727791025,"end_at":1727791055,"points":129}}
2024-10-01 19:27:36 - 200 - {"status":0,"message":"","data":{"round_id":"c0cc8dc5-43d5-4fcd-b358-e9962ef3c63a","user_id":15231956,"start_at":1727791056,"end_at":1727791086}}
2024-10-01 19:28:06 - 200 - {"status":0,"message":"","data":{"round_id":"c0cc8dc5-43d5-4fcd-b358-e9962ef3c63a","user_id":15231956,"start_at":1727791056,"end_at":1727791086,"points":111}}
2024-10-01 19:28:07 - 200 - {"status":0,"message":"","data":{"round_id":"69ad943d-5f59-4061-9ee8-356626af3d99","user_id":15231956,"start_at":1727791087,"end_at":1727791117}}
2024-10-01 19:28:37 - 200 - {"status":0,"message":"","data":{"round_id":"69ad943d-5f59-4061-9ee8-356626af3d99","user_id":15231956,"start_at":1727791087,"end_at":1727791117,"points":144}}
2024-10-01 19:28:38 - 200 - {"status":0,"message":"","data":{"round_id":"36daee2d-58ce-43c8-867b-c88aca84afa8","user_id":15231956,"start_at":1727791118,"end_at":1727791148}}
2024-10-01 19:29:59 - 200 - {"status":0,"message":"","data":{"round_id":"36daee2d-58ce-43c8-867b-c88aca84afa8","user_id":15231956,"start_at":1727791118,"end_at":1727791148,"points":115}}
2024-10-01 19:29:59 - 200 - {"status":0,"message":"","data":{"round_id":"7ff3a3c8-3d0a-4e64-9d64-a740d5cbdd0d","user_id":15231956,"start_at":1727791199,"end_at":1727791229}}
2024-10-01 19:30:30 - 200 - {"status":0,"message":"","data":{"round_id":"7ff3a3c8-3d0a-4e64-9d64-a740d5cbdd0d","user_id":15231956,"start_at":1727791199,"end_at":1727791229,"points":102}}
2024-10-01 19:30:30 - 200 - {"status":0,"message":"","data":{"round_id":"6546dcb2-5925-4abd-9aba-eb7813fccab5","user_id":15231956,"start_at":1727791230,"end_at":1727791260}}
2024-10-01 19:31:00 - 200 - {"status":0,"message":"","data":{"round_id":"6546dcb2-5925-4abd-9aba-eb7813fccab5","user_id":15231956,"start_at":1727791230,"end_at":1727791260,"points":149}}
2024-10-01 19:31:01 - 200 - {"status":0,"message":"","data":{"available_balance":"17856.00","play_passes":0,"timestamp":1727791261,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"d20f6458-78c4-435e-8753-af939933d284","user_id":15231956,"start_at":1727790963,"end_at":1727801763,"last_claim":1727790963,"points":0},"daily":{"round_id":"33de41c2-b988-405b-b2d6-dc318db03b20","user_id":15231956,"start_at":1727615459,"last_check_ts":1727717942,"last_check_ymd":20241001,"next_check_ts":1727798400,"check_counter":3,"today_points":4000,"today_game":3,"diff":1}}}
2024-10-01 19:31:04 - 200 - {"status":0,"message":"","data":{"available_balance":"17823.00","play_passes":8,"timestamp":1727791265,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"5c6dedf8-347e-4290-9ab9-4373555eead6","user_id":12924209,"start_at":1727746747,"end_at":1727757547,"last_claim":1727746747,"points":0},"daily":{"round_id":"c98bbcc7-75ba-4c06-a531-71d912bee509","user_id":12924209,"start_at":1727615650,"last_check_ts":1727717946,"last_check_ymd":20241001,"next_check_ts":1727798400,"check_counter":3,"today_points":4000,"today_game":3,"diff":1}}}
2024-10-01 19:31:05 - 200 - {"status":0,"message":"","data":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"5c6dedf8-347e-4290-9ab9-4373555eead6","user_id":12924209,"start_at":1727746747,"end_at":1727757547,"last_claim":1727791265,"points":"1080.00","finished":true,"claim_this_time":"1080.00"}}
2024-10-01 19:31:05 - 200 - {"status":0,"message":"","data":{"available_balance":"18903.00","play_passes":8,"timestamp":1727791265,"daily":{"round_id":"c98bbcc7-75ba-4c06-a531-71d912bee509","user_id":12924209,"start_at":1727615650,"last_check_ts":1727717946,"last_check_ymd":20241001,"next_check_ts":1727798400,"check_counter":3,"today_points":4000,"today_game":3,"diff":1}}}
2024-10-01 19:31:05 - 200 - {"status":0,"message":"","data":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"62e99ad9-b1b7-48ab-976a-c54b4aac5d83","user_id":12924209,"start_at":1727791266,"end_at":1727802066,"last_claim":1727791266,"points":0}}
2024-10-01 19:31:06 - 200 - {"status":0,"message":"","data":{"available_balance":18903,"play_passes":8,"timestamp":1727791266,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"62e99ad9-b1b7-48ab-976a-c54b4aac5d83","user_id":12924209,"start_at":1727791266,"end_at":1727802066,"last_claim":1727791266,"points":0},"daily":{"round_id":"c98bbcc7-75ba-4c06-a531-71d912bee509","user_id":12924209,"start_at":1727615650,"last_check_ts":1727717946,"last_check_ymd":20241001,"next_check_ts":1727798400,"check_counter":3,"today_points":4000,"today_game":3,"diff":1}}}
2024-10-01 19:31:06 - 200 - {"status":0,"message":"","data":{"round_id":"ac0034c3-66a2-47fe-9677-a455a54912ae","user_id":12924209,"start_at":1727791266,"end_at":1727791296}}
2024-10-01 19:33:01 - 200 - {"status":0,"message":"","data":{"round_id":"ac0034c3-66a2-47fe-9677-a455a54912ae","user_id":12924209,"start_at":1727791266,"end_at":1727791296,"points":114}}
2024-10-01 19:33:02 - 200 - {"status":0,"message":"","data":{"round_id":"22608643-57f0-46d7-9de1-06530c94afd6","user_id":12924209,"start_at":1727791382,"end_at":1727791412}}
2024-10-01 19:33:32 - 200 - {"status":0,"message":"","data":{"round_id":"22608643-57f0-46d7-9de1-06530c94afd6","user_id":12924209,"start_at":1727791382,"end_at":1727791412,"points":121}}
2024-10-01 19:33:33 - 200 - {"status":0,"message":"","data":{"round_id":"d57c50bb-283d-4742-892a-336252deea68","user_id":12924209,"start_at":1727791413,"end_at":1727791443}}
2024-10-01 19:34:03 - 200 - {"status":0,"message":"","data":{"round_id":"d57c50bb-283d-4742-892a-336252deea68","user_id":12924209,"start_at":1727791413,"end_at":1727791443,"points":139}}
2024-10-01 19:34:03 - 200 - {"status":0,"message":"","data":{"round_id":"44fb5adf-4c43-4a02-9982-be66c3bf2a0d","user_id":12924209,"start_at":1727791444,"end_at":1727791474}}
2024-10-01 19:34:37 - 200 - {"status":0,"message":"","data":{"round_id":"44fb5adf-4c43-4a02-9982-be66c3bf2a0d","user_id":12924209,"start_at":1727791444,"end_at":1727791474,"points":117}}
2024-10-01 19:34:37 - 200 - {"status":0,"message":"","data":{"round_id":"695deaa3-f47b-47f6-9966-dc6a1596de1f","user_id":12924209,"start_at":1727791477,"end_at":1727791507}}
2024-10-01 19:35:09 - 200 - {"status":0,"message":"","data":{"round_id":"695deaa3-f47b-47f6-9966-dc6a1596de1f","user_id":12924209,"start_at":1727791477,"end_at":1727791507,"points":114}}
2024-10-01 19:35:09 - 200 - {"status":0,"message":"","data":{"round_id":"83b46f51-6801-4e96-84f5-de46ee09aa71","user_id":12924209,"start_at":1727791509,"end_at":1727791539}}
2024-10-01 19:35:40 - 200 - {"status":0,"message":"","data":{"round_id":"83b46f51-6801-4e96-84f5-de46ee09aa71","user_id":12924209,"start_at":1727791509,"end_at":1727791539,"points":106}}
2024-10-01 19:35:40 - 200 - {"status":0,"message":"","data":{"round_id":"f7677007-fe7b-4049-88e1-af48a5e59939","user_id":12924209,"start_at":1727791540,"end_at":1727791570}}
2024-10-01 19:37:58 - 200 - {"status":0,"message":"","data":{"round_id":"f7677007-fe7b-4049-88e1-af48a5e59939","user_id":12924209,"start_at":1727791540,"end_at":1727791570,"points":107}}
2024-10-01 19:37:58 - 200 - {"status":0,"message":"","data":{"round_id":"c3703bff-1f6e-463e-806e-4b0337b8cff3","user_id":12924209,"start_at":1727791679,"end_at":1727791709}}
2024-10-01 19:38:29 - 200 - {"status":0,"message":"","data":{"round_id":"c3703bff-1f6e-463e-806e-4b0337b8cff3","user_id":12924209,"start_at":1727791679,"end_at":1727791709,"points":103}}
2024-10-01 19:38:29 - 200 - {"status":0,"message":"","data":{"available_balance":"19824.00","play_passes":0,"timestamp":1727791709,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"62e99ad9-b1b7-48ab-976a-c54b4aac5d83","user_id":12924209,"start_at":1727791266,"end_at":1727802066,"last_claim":1727791266,"points":0},"daily":{"round_id":"c98bbcc7-75ba-4c06-a531-71d912bee509","user_id":12924209,"start_at":1727615650,"last_check_ts":1727717946,"last_check_ymd":20241001,"next_check_ts":1727798400,"check_counter":3,"today_points":4000,"today_game":3,"diff":1}}}
2024-10-02 19:06:07 - 200 - {"status":0,"message":"","data":{"available_balance":"703880.60","play_passes":5,"timestamp":1727876169,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"bd2f30eb-b8df-435e-bb0d-22594e8aa634","user_id":8565031,"start_at":1727789596,"end_at":1727800396,"last_claim":1727789596,"points":0},"daily":{"round_id":"3d1adf61-5428-403f-b735-0f55996e8990","user_id":8565031,"start_at":1727635158,"last_check_ts":1727760756,"last_check_ymd":20241001,"next_check_ts":1727798400,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}}
2024-10-02 19:06:08 - 200 - {"status":0,"message":"","data":{"round_id":"3d1adf61-5428-403f-b735-0f55996e8990","user_id":8565031,"start_at":1727635158,"last_check_ts":1727847369,"last_check_ymd":20241002,"next_check_ts":1727884800,"check_counter":3,"today_points":4000,"today_game":3,"diff":1}}
2024-10-02 19:06:09 - 200 - {"status":0,"message":"","data":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"bd2f30eb-b8df-435e-bb0d-22594e8aa634","user_id":8565031,"start_at":1727789596,"end_at":1727800396,"last_claim":1727876169,"points":"1080.00","finished":true,"claim_this_time":"1080.00"}}
2024-10-02 19:06:09 - 200 - {"status":0,"message":"","data":{"available_balance":"708960.60","play_passes":8,"timestamp":1727876169,"daily":{"round_id":"3d1adf61-5428-403f-b735-0f55996e8990","user_id":8565031,"start_at":1727635158,"last_check_ts":1727847369,"last_check_ymd":20241002,"next_check_ts":1727884800,"check_counter":3,"today_points":4000,"today_game":3,"diff":1}}}
2024-10-02 19:06:09 - 200 - {"status":0,"message":"","data":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"844a3080-3cd4-4817-aee8-730fea105894","user_id":8565031,"start_at":1727876170,"end_at":1727886970,"last_claim":1727876170,"points":0}}
2024-10-02 19:06:10 - 200 - {"status":0,"message":"","data":{"available_balance":708960.6,"play_passes":8,"timestamp":1727876170,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"844a3080-3cd4-4817-aee8-730fea105894","user_id":8565031,"start_at":1727876170,"end_at":1727886970,"last_claim":1727876170,"points":0},"daily":{"round_id":"3d1adf61-5428-403f-b735-0f55996e8990","user_id":8565031,"start_at":1727635158,"last_check_ts":1727847369,"last_check_ymd":20241002,"next_check_ts":1727884800,"check_counter":3,"today_points":4000,"today_game":3,"diff":1}}}
2024-10-02 19:06:10 - 200 - {"status":0,"message":"","data":{"round_id":"d6cfb00e-3e79-408c-9b25-461ecb9524ac","user_id":8565031,"start_at":1727876170,"end_at":1727876200}}
2024-10-02 19:06:40 - 200 - {"status":0,"message":"","data":{"round_id":"d6cfb00e-3e79-408c-9b25-461ecb9524ac","user_id":8565031,"start_at":1727876170,"end_at":1727876200,"points":141}}
2024-10-02 19:06:40 - 200 - {"status":0,"message":"","data":{"round_id":"842ef619-15ea-4564-8c19-50795aa254bd","user_id":8565031,"start_at":1727876201,"end_at":1727876231}}
2024-10-02 19:07:11 - 200 - {"status":0,"message":"","data":{"round_id":"842ef619-15ea-4564-8c19-50795aa254bd","user_id":8565031,"start_at":1727876201,"end_at":1727876231,"points":141}}
2024-10-02 19:07:11 - 200 - {"status":0,"message":"","data":{"round_id":"482ff22a-fce2-435a-8d10-9a16410428fa","user_id":8565031,"start_at":1727876231,"end_at":1727876261}}
2024-10-02 19:07:41 - 200 - {"status":0,"message":"","data":{"round_id":"482ff22a-fce2-435a-8d10-9a16410428fa","user_id":8565031,"start_at":1727876231,"end_at":1727876261,"points":107}}
2024-10-02 19:07:42 - 200 - {"status":0,"message":"","data":{"round_id":"66b5eef8-e83f-40b6-b089-2080c5987f7f","user_id":8565031,"start_at":1727876262,"end_at":1727876292}}
2024-10-02 19:08:12 - 200 - {"status":0,"message":"","data":{"round_id":"66b5eef8-e83f-40b6-b089-2080c5987f7f","user_id":8565031,"start_at":1727876262,"end_at":1727876292,"points":143}}
2024-10-02 19:08:12 - 200 - {"status":0,"message":"","data":{"round_id":"147fbd33-79a8-4b84-95d3-efb7f3ab822b","user_id":8565031,"start_at":1727876292,"end_at":1727876322}}
2024-10-02 19:08:42 - 200 - {"status":0,"message":"","data":{"round_id":"147fbd33-79a8-4b84-95d3-efb7f3ab822b","user_id":8565031,"start_at":1727876292,"end_at":1727876322,"points":113}}
2024-10-02 19:08:43 - 200 - {"status":0,"message":"","data":{"round_id":"dda0fabd-5e2f-4791-837d-de0977507d36","user_id":8565031,"start_at":1727876323,"end_at":1727876353}}
2024-10-02 19:09:13 - 200 - {"status":0,"message":"","data":{"round_id":"dda0fabd-5e2f-4791-837d-de0977507d36","user_id":8565031,"start_at":1727876323,"end_at":1727876353,"points":128}}
2024-10-02 19:09:13 - 200 - {"status":0,"message":"","data":{"round_id":"7745042a-1483-4bcb-bee2-638111a24f52","user_id":8565031,"start_at":1727876354,"end_at":1727876384}}
2024-10-02 19:09:48 - 200 - {"status":0,"message":"","data":{"round_id":"7745042a-1483-4bcb-bee2-638111a24f52","user_id":8565031,"start_at":1727876354,"end_at":1727876384,"points":124}}
2024-10-02 19:09:49 - 200 - {"status":0,"message":"","data":{"round_id":"0223b3d3-4e4e-4b7d-b8f2-cdd4ee6d76ef","user_id":8565031,"start_at":1727876389,"end_at":1727876419}}
2024-10-02 19:10:19 - 200 - {"status":0,"message":"","data":{"round_id":"0223b3d3-4e4e-4b7d-b8f2-cdd4ee6d76ef","user_id":8565031,"start_at":1727876389,"end_at":1727876419,"points":100}}
2024-10-02 19:10:19 - 200 - {"status":0,"message":"","data":{"available_balance":"709957.60","play_passes":0,"timestamp":1727876420,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"844a3080-3cd4-4817-aee8-730fea105894","user_id":8565031,"start_at":1727876170,"end_at":1727886970,"last_claim":1727876170,"points":0},"daily":{"round_id":"3d1adf61-5428-403f-b735-0f55996e8990","user_id":8565031,"start_at":1727635158,"last_check_ts":1727847369,"last_check_ymd":20241002,"next_check_ts":1727884800,"check_counter":3,"today_points":4000,"today_game":3,"diff":1}}}
2024-10-02 19:10:23 - 200 - {"status":0,"message":"","data":{"available_balance":"91489.00","play_passes":12,"timestamp":1727876423,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"19e5c6b2-604b-49df-bd3f-16070635a5f2","user_id":32124262,"start_at":1727872614,"end_at":1727883414,"last_claim":1727872614,"points":0},"daily":{"round_id":"93927530-02e8-4a6e-a3a4-92c94df2a303","user_id":32124262,"start_at":1727352309,"last_check_ts":1727803417,"last_check_ymd":20241002,"next_check_ts":1727884800,"check_counter":7,"today_points":20000,"today_game":7,"diff":1}}}
2024-10-02 19:10:23 - 200 - {"status":0,"message":"","data":{"round_id":"f6a11ca1-a337-4479-b471-e49caa518788","user_id":32124262,"start_at":1727876423,"end_at":1727876453}}
2024-10-02 19:10:55 - 200 - {"status":0,"message":"","data":{"round_id":"f6a11ca1-a337-4479-b471-e49caa518788","user_id":32124262,"start_at":1727876423,"end_at":1727876453,"points":123}}
2024-10-02 19:10:55 - 200 - {"status":0,"message":"","data":{"round_id":"c7930172-572a-464c-8617-6766dfc9acde","user_id":32124262,"start_at":1727876456,"end_at":1727876486}}
2024-10-02 19:11:28 - 200 - {"status":0,"message":"","data":{"round_id":"c7930172-572a-464c-8617-6766dfc9acde","user_id":32124262,"start_at":1727876456,"end_at":1727876486,"points":101}}
2024-10-02 19:11:29 - 200 - {"status":0,"message":"","data":{"round_id":"36cca2bb-cf76-42f4-afc5-536f812039d4","user_id":32124262,"start_at":1727876489,"end_at":1727876519}}
2024-10-02 19:11:59 - 200 - {"status":0,"message":"","data":{"round_id":"36cca2bb-cf76-42f4-afc5-536f812039d4","user_id":32124262,"start_at":1727876489,"end_at":1727876519,"points":147}}
2024-10-02 19:11:59 - 200 - {"status":0,"message":"","data":{"round_id":"9b3d92ea-fdd3-4b71-9a6e-9ae7c7740bcb","user_id":32124262,"start_at":1727876520,"end_at":1727876550}}
2024-10-02 19:12:30 - 200 - {"status":0,"message":"","data":{"round_id":"9b3d92ea-fdd3-4b71-9a6e-9ae7c7740bcb","user_id":32124262,"start_at":1727876520,"end_at":1727876550,"points":150}}
2024-10-02 19:12:30 - 200 - {"status":0,"message":"","data":{"round_id":"cc2d9356-0a05-400f-9d30-8adca149d999","user_id":32124262,"start_at":1727876550,"end_at":1727876580}}
2024-10-02 19:13:00 - 200 - {"status":0,"message":"","data":{"round_id":"cc2d9356-0a05-400f-9d30-8adca149d999","user_id":32124262,"start_at":1727876550,"end_at":1727876580,"points":115}}
2024-10-02 19:13:01 - 200 - {"status":0,"message":"","data":{"round_id":"e29419ec-c53a-4c88-bc7c-776b3bfc8a2a","user_id":32124262,"start_at":1727876581,"end_at":1727876611}}
2024-10-02 19:13:31 - 200 - {"status":0,"message":"","data":{"round_id":"e29419ec-c53a-4c88-bc7c-776b3bfc8a2a","user_id":32124262,"start_at":1727876581,"end_at":1727876611,"points":106}}
2024-10-02 19:13:31 - 200 - {"status":0,"message":"","data":{"round_id":"4f453d2c-f00f-4b07-8715-6c2138a89115","user_id":32124262,"start_at":1727876612,"end_at":1727876642}}
2024-10-02 19:14:02 - 200 - {"status":0,"message":"","data":{"round_id":"4f453d2c-f00f-4b07-8715-6c2138a89115","user_id":32124262,"start_at":1727876612,"end_at":1727876642,"points":116}}
2024-10-02 19:14:02 - 200 - {"status":0,"message":"","data":{"round_id":"399b723a-9338-464e-bee7-0272a92e90f6","user_id":32124262,"start_at":1727876642,"end_at":1727876672}}
2024-10-02 19:14:33 - 200 - {"status":0,"message":"","data":{"round_id":"399b723a-9338-464e-bee7-0272a92e90f6","user_id":32124262,"start_at":1727876642,"end_at":1727876672,"points":101}}
2024-10-02 19:14:34 - 200 - {"status":0,"message":"","data":{"round_id":"d8f5cd87-c17d-44a1-abb5-ceeab71dc818","user_id":32124262,"start_at":1727876674,"end_at":1727876704}}
2024-10-02 19:15:04 - 200 - {"status":0,"message":"","data":{"round_id":"d8f5cd87-c17d-44a1-abb5-ceeab71dc818","user_id":32124262,"start_at":1727876674,"end_at":1727876704,"points":146}}
2024-10-02 19:15:04 - 200 - {"status":0,"message":"","data":{"round_id":"a2e95916-8eb9-4d07-b9bb-64c50282e9b0","user_id":32124262,"start_at":1727876705,"end_at":1727876735}}
2024-10-02 19:15:35 - 200 - {"status":0,"message":"","data":{"round_id":"a2e95916-8eb9-4d07-b9bb-64c50282e9b0","user_id":32124262,"start_at":1727876705,"end_at":1727876735,"points":124}}
2024-10-02 19:15:36 - 200 - {"status":0,"message":"","data":{"round_id":"b91b2fc6-1dde-4e4e-abe7-5681eabbe413","user_id":32124262,"start_at":1727876736,"end_at":1727876766}}
2024-10-02 19:16:06 - 200 - {"status":0,"message":"","data":{"round_id":"b91b2fc6-1dde-4e4e-abe7-5681eabbe413","user_id":32124262,"start_at":1727876736,"end_at":1727876766,"points":122}}
2024-10-02 19:16:06 - 200 - {"status":0,"message":"","data":{"round_id":"b4425094-00dd-4964-a6dd-a31c7dfbfd9e","user_id":32124262,"start_at":1727876766,"end_at":1727876796}}
2024-10-02 19:16:36 - 200 - {"status":0,"message":"","data":{"round_id":"b4425094-00dd-4964-a6dd-a31c7dfbfd9e","user_id":32124262,"start_at":1727876766,"end_at":1727876796,"points":141}}
2024-10-02 19:16:37 - 200 - {"status":0,"message":"","data":{"available_balance":"92981.00","play_passes":0,"timestamp":1727876797,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"19e5c6b2-604b-49df-bd3f-16070635a5f2","user_id":32124262,"start_at":1727872614,"end_at":1727883414,"last_claim":1727872614,"points":0},"daily":{"round_id":"93927530-02e8-4a6e-a3a4-92c94df2a303","user_id":32124262,"start_at":1727352309,"last_check_ts":1727803417,"last_check_ymd":20241002,"next_check_ts":1727884800,"check_counter":7,"today_points":20000,"today_game":7,"diff":1}}}
2024-10-02 19:16:40 - 200 - {"status":0,"message":"","data":{"available_balance":"83223.00","play_passes":12,"timestamp":1727876801,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"33805d54-3094-4154-8c89-d546c17654e5","user_id":12936487,"start_at":1727872619,"end_at":1727883419,"last_claim":1727872619,"points":0},"daily":{"round_id":"6e16e753-d0ab-432f-9a4b-513930a35471","user_id":12936487,"start_at":1727352557,"last_check_ts":1727803421,"last_check_ymd":20241002,"next_check_ts":1727884800,"check_counter":7,"today_points":20000,"today_game":7,"diff":1}}}
2024-10-02 19:16:41 - 200 - {"status":0,"message":"","data":{"round_id":"77fc68fc-5394-4415-94b2-694c2e904f0f","user_id":12936487,"start_at":1727876801,"end_at":1727876831}}
2024-10-02 19:17:11 - 200 - {"status":0,"message":"","data":{"round_id":"77fc68fc-5394-4415-94b2-694c2e904f0f","user_id":12936487,"start_at":1727876801,"end_at":1727876831,"points":108}}
2024-10-02 19:17:11 - 200 - {"status":0,"message":"","data":{"round_id":"a0de94ba-832c-4e9c-8084-4c4915523eeb","user_id":12936487,"start_at":1727876831,"end_at":1727876861}}
2024-10-02 19:17:41 - 200 - {"status":0,"message":"","data":{"round_id":"a0de94ba-832c-4e9c-8084-4c4915523eeb","user_id":12936487,"start_at":1727876831,"end_at":1727876861,"points":127}}
2024-10-02 19:17:42 - 200 - {"status":0,"message":"","data":{"round_id":"56f4288f-b066-44e2-aeb5-b6ade833b4cc","user_id":12936487,"start_at":1727876862,"end_at":1727876892}}
2024-10-02 19:18:12 - 200 - {"status":0,"message":"","data":{"round_id":"56f4288f-b066-44e2-aeb5-b6ade833b4cc","user_id":12936487,"start_at":1727876862,"end_at":1727876892,"points":110}}
2024-10-02 19:18:12 - 200 - {"status":0,"message":"","data":{"round_id":"0a87a26d-25c8-4bdc-adb3-03ed37f61452","user_id":12936487,"start_at":1727876893,"end_at":1727876923}}
2024-10-02 19:18:43 - 200 - {"status":0,"message":"","data":{"round_id":"0a87a26d-25c8-4bdc-adb3-03ed37f61452","user_id":12936487,"start_at":1727876893,"end_at":1727876923,"points":136}}
2024-10-02 19:18:43 - 200 - {"status":0,"message":"","data":{"round_id":"452ba256-6154-4af5-8ddf-cb0bdd7b9fb2","user_id":12936487,"start_at":1727876923,"end_at":1727876953}}
2024-10-02 19:19:13 - 200 - {"status":0,"message":"","data":{"round_id":"452ba256-6154-4af5-8ddf-cb0bdd7b9fb2","user_id":12936487,"start_at":1727876923,"end_at":1727876953,"points":109}}
2024-10-02 19:19:14 - 200 - {"status":0,"message":"","data":{"round_id":"bdd5ddaf-8f3e-4fcb-9d42-2ad7c9ad7b41","user_id":12936487,"start_at":1727876954,"end_at":1727876984}}
2024-10-02 19:19:44 - 200 - {"status":0,"message":"","data":{"round_id":"bdd5ddaf-8f3e-4fcb-9d42-2ad7c9ad7b41","user_id":12936487,"start_at":1727876954,"end_at":1727876984,"points":135}}
2024-10-02 19:19:44 - 200 - {"status":0,"message":"","data":{"round_id":"74bae0ec-34d3-4e6e-9689-a5b98c519b9b","user_id":12936487,"start_at":1727876985,"end_at":1727877015}}
2024-10-02 19:20:15 - 200 - {"status":0,"message":"","data":{"round_id":"74bae0ec-34d3-4e6e-9689-a5b98c519b9b","user_id":12936487,"start_at":1727876985,"end_at":1727877015,"points":149}}
2024-10-02 19:20:15 - 200 - {"status":0,"message":"","data":{"round_id":"de804f66-8bab-49da-9716-06587c70a893","user_id":12936487,"start_at":1727877015,"end_at":1727877045}}
2024-10-02 19:20:47 - 200 - {"status":0,"message":"","data":{"round_id":"de804f66-8bab-49da-9716-06587c70a893","user_id":12936487,"start_at":1727877015,"end_at":1727877045,"points":124}}
2024-10-02 19:20:47 - 200 - {"status":0,"message":"","data":{"round_id":"7f81936e-bd5e-40ab-ba89-daf0ecdd7520","user_id":12936487,"start_at":1727877047,"end_at":1727877077}}
2024-10-02 19:21:17 - 200 - {"status":0,"message":"","data":{"round_id":"7f81936e-bd5e-40ab-ba89-daf0ecdd7520","user_id":12936487,"start_at":1727877047,"end_at":1727877077,"points":147}}
2024-10-02 19:21:18 - 200 - {"status":0,"message":"","data":{"round_id":"3fa9d113-d3a4-4606-964f-3d9a76e13c62","user_id":12936487,"start_at":1727877078,"end_at":1727877108}}
2024-10-02 19:21:54 - 200 - {"status":0,"message":"","data":{"round_id":"3fa9d113-d3a4-4606-964f-3d9a76e13c62","user_id":12936487,"start_at":1727877078,"end_at":1727877108,"points":130}}
2024-10-02 19:21:55 - 200 - {"status":0,"message":"","data":{"round_id":"554983c2-8be3-4b0b-a364-bfcc84d40eb3","user_id":12936487,"start_at":1727877115,"end_at":1727877145}}
2024-10-02 19:22:25 - 200 - {"status":0,"message":"","data":{"round_id":"554983c2-8be3-4b0b-a364-bfcc84d40eb3","user_id":12936487,"start_at":1727877115,"end_at":1727877145,"points":134}}
2024-10-02 19:22:25 - 200 - {"status":0,"message":"","data":{"round_id":"46d23585-87db-4df3-9d43-a60ff7e935d4","user_id":12936487,"start_at":1727877146,"end_at":1727877176}}
2024-10-02 19:22:56 - 200 - {"status":0,"message":"","data":{"round_id":"46d23585-87db-4df3-9d43-a60ff7e935d4","user_id":12936487,"start_at":1727877146,"end_at":1727877176,"points":117}}
2024-10-02 19:22:56 - 200 - {"status":0,"message":"","data":{"available_balance":"84749.00","play_passes":0,"timestamp":1727877176,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"33805d54-3094-4154-8c89-d546c17654e5","user_id":12936487,"start_at":1727872619,"end_at":1727883419,"last_claim":1727872619,"points":0},"daily":{"round_id":"6e16e753-d0ab-432f-9a4b-513930a35471","user_id":12936487,"start_at":1727352557,"last_check_ts":1727803421,"last_check_ymd":20241002,"next_check_ts":1727884800,"check_counter":7,"today_points":20000,"today_game":7,"diff":1}}}
2024-10-02 19:22:59 - 200 - {"status":0,"message":"","data":{"available_balance":"21283.00","play_passes":5,"timestamp":1727877180,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"fb8c93ac-fadf-4407-a16b-171532821b57","user_id":10535485,"start_at":1727790709,"end_at":1727801509,"last_claim":1727790709,"points":0},"daily":{"round_id":"912cb072-760f-4c1b-bd5e-f4025d3c68e4","user_id":10535485,"start_at":1727579544,"last_check_ts":1727761908,"last_check_ymd":20241001,"next_check_ts":1727798400,"check_counter":3,"today_points":4000,"today_game":3,"diff":1}}}
2024-10-02 19:23:00 - 200 - {"status":0,"message":"","data":{"round_id":"912cb072-760f-4c1b-bd5e-f4025d3c68e4","user_id":10535485,"start_at":1727579544,"last_check_ts":1727848380,"last_check_ymd":20241002,"next_check_ts":1727884800,"check_counter":4,"today_points":3000,"today_game":4,"diff":1}}
2024-10-02 19:23:00 - 200 - {"status":0,"message":"","data":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"fb8c93ac-fadf-4407-a16b-171532821b57","user_id":10535485,"start_at":1727790709,"end_at":1727801509,"last_claim":1727877181,"points":"1080.00","finished":true,"claim_this_time":"1080.00"}}
2024-10-02 19:23:01 - 200 - {"status":0,"message":"","data":{"available_balance":"25363.00","play_passes":9,"timestamp":1727877181,"daily":{"round_id":"912cb072-760f-4c1b-bd5e-f4025d3c68e4","user_id":10535485,"start_at":1727579544,"last_check_ts":1727848380,"last_check_ymd":20241002,"next_check_ts":1727884800,"check_counter":4,"today_points":3000,"today_game":4,"diff":1}}}
2024-10-02 19:23:01 - 200 - {"status":0,"message":"","data":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"66c185bc-f8e1-4c66-8399-c9daa9cd420f","user_id":10535485,"start_at":1727877181,"end_at":1727887981,"last_claim":1727877181,"points":0}}
2024-10-02 19:23:01 - 200 - {"status":0,"message":"","data":{"available_balance":25363,"play_passes":9,"timestamp":1727877181,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"66c185bc-f8e1-4c66-8399-c9daa9cd420f","user_id":10535485,"start_at":1727877181,"end_at":1727887981,"last_claim":1727877181,"points":0},"daily":{"round_id":"912cb072-760f-4c1b-bd5e-f4025d3c68e4","user_id":10535485,"start_at":1727579544,"last_check_ts":1727848380,"last_check_ymd":20241002,"next_check_ts":1727884800,"check_counter":4,"today_points":3000,"today_game":4,"diff":1}}}
2024-10-02 19:23:01 - 200 - {"status":0,"message":"","data":{"round_id":"d6e054d4-7aa3-4f70-829b-f2959c48c6d9","user_id":10535485,"start_at":1727877182,"end_at":1727877212}}
2024-10-02 19:23:32 - 200 - {"status":0,"message":"","data":{"round_id":"d6e054d4-7aa3-4f70-829b-f2959c48c6d9","user_id":10535485,"start_at":1727877182,"end_at":1727877212,"points":123}}
2024-10-02 19:23:32 - 200 - {"status":0,"message":"","data":{"round_id":"68cb0dfd-a885-49e5-912d-ab6c3b75809c","user_id":10535485,"start_at":1727877212,"end_at":1727877242}}
2024-10-02 19:24:02 - 200 - {"status":0,"message":"","data":{"round_id":"68cb0dfd-a885-49e5-912d-ab6c3b75809c","user_id":10535485,"start_at":1727877212,"end_at":1727877242,"points":124}}
2024-10-02 19:24:03 - 200 - {"status":0,"message":"","data":{"round_id":"046231f2-df94-4bbc-b486-6f56f59e73fd","user_id":10535485,"start_at":1727877243,"end_at":1727877273}}
2024-10-02 19:24:33 - 200 - {"status":0,"message":"","data":{"round_id":"046231f2-df94-4bbc-b486-6f56f59e73fd","user_id":10535485,"start_at":1727877243,"end_at":1727877273,"points":125}}
2024-10-02 19:24:33 - 200 - {"status":0,"message":"","data":{"round_id":"9a4b4c67-8302-46ef-89cf-dddfbf3d66cb","user_id":10535485,"start_at":1727877274,"end_at":1727877304}}
2024-10-02 19:25:04 - 200 - {"status":0,"message":"","data":{"round_id":"9a4b4c67-8302-46ef-89cf-dddfbf3d66cb","user_id":10535485,"start_at":1727877274,"end_at":1727877304,"points":148}}
2024-10-02 19:25:04 - 200 - {"status":0,"message":"","data":{"round_id":"1083dfad-b216-4714-9e0b-81bb92ac5763","user_id":10535485,"start_at":1727877304,"end_at":1727877334}}
2024-10-02 19:25:34 - 200 - {"status":0,"message":"","data":{"round_id":"1083dfad-b216-4714-9e0b-81bb92ac5763","user_id":10535485,"start_at":1727877304,"end_at":1727877334,"points":144}}
2024-10-02 19:25:35 - 200 - {"status":0,"message":"","data":{"round_id":"d9632b5e-a0cc-473f-9dc9-e2f9520f64ef","user_id":10535485,"start_at":1727877335,"end_at":1727877365}}
2024-10-02 19:26:07 - 200 - {"status":0,"message":"","data":{"round_id":"d9632b5e-a0cc-473f-9dc9-e2f9520f64ef","user_id":10535485,"start_at":1727877335,"end_at":1727877365,"points":111}}
2024-10-02 19:26:07 - 200 - {"status":0,"message":"","data":{"round_id":"f22a8d3f-f8e5-4183-b42c-862c55e39648","user_id":10535485,"start_at":1727877367,"end_at":1727877397}}
2024-10-02 19:26:37 - 200 - {"status":0,"message":"","data":{"round_id":"f22a8d3f-f8e5-4183-b42c-862c55e39648","user_id":10535485,"start_at":1727877367,"end_at":1727877397,"points":142}}
2024-10-02 19:26:38 - 200 - {"status":0,"message":"","data":{"round_id":"442548ff-9c11-49b7-b340-926692076627","user_id":10535485,"start_at":1727877398,"end_at":1727877428}}
2024-10-02 19:27:08 - 200 - {"status":0,"message":"","data":{"round_id":"442548ff-9c11-49b7-b340-926692076627","user_id":10535485,"start_at":1727877398,"end_at":1727877428,"points":131}}
2024-10-02 19:27:08 - 200 - {"status":0,"message":"","data":{"round_id":"63efa78c-449b-47f2-9f1d-7e5bace290d2","user_id":10535485,"start_at":1727877429,"end_at":1727877459}}
2024-10-02 19:27:39 - 200 - {"status":0,"message":"","data":{"round_id":"63efa78c-449b-47f2-9f1d-7e5bace290d2","user_id":10535485,"start_at":1727877429,"end_at":1727877459,"points":117}}
2024-10-02 19:27:39 - 200 - {"status":0,"message":"","data":{"available_balance":"26528.00","play_passes":0,"timestamp":1727877459,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"66c185bc-f8e1-4c66-8399-c9daa9cd420f","user_id":10535485,"start_at":1727877181,"end_at":1727887981,"last_claim":1727877181,"points":0},"daily":{"round_id":"912cb072-760f-4c1b-bd5e-f4025d3c68e4","user_id":10535485,"start_at":1727579544,"last_check_ts":1727848380,"last_check_ymd":20241002,"next_check_ts":1727884800,"check_counter":4,"today_points":3000,"today_game":4,"diff":1}}}
2024-10-02 19:27:42 - 200 - {"status":0,"message":"","data":{"available_balance":"17856.00","play_passes":5,"timestamp":1727877463,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"d20f6458-78c4-435e-8753-af939933d284","user_id":15231956,"start_at":1727790963,"end_at":1727801763,"last_claim":1727790963,"points":0},"daily":{"round_id":"33de41c2-b988-405b-b2d6-dc318db03b20","user_id":15231956,"start_at":1727615459,"last_check_ts":1727717942,"last_check_ymd":20241001,"next_check_ts":1727798400,"check_counter":3,"today_points":4000,"today_game":3,"diff":1}}}
2024-10-02 19:27:43 - 200 - {"status":0,"message":"","data":{"round_id":"33de41c2-b988-405b-b2d6-dc318db03b20","user_id":15231956,"start_at":1727615459,"last_check_ts":1727848664,"last_check_ymd":20241002,"next_check_ts":1727884800,"check_counter":4,"today_points":3000,"today_game":4,"diff":1}}
2024-10-02 19:27:44 - 200 - {"status":0,"message":"","data":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"d20f6458-78c4-435e-8753-af939933d284","user_id":15231956,"start_at":1727790963,"end_at":1727801763,"last_claim":1727877464,"points":"1080.00","finished":true,"claim_this_time":"1080.00"}}
2024-10-02 19:27:44 - 200 - {"status":0,"message":"","data":{"available_balance":"21936.00","play_passes":9,"timestamp":1727877464,"daily":{"round_id":"33de41c2-b988-405b-b2d6-dc318db03b20","user_id":15231956,"start_at":1727615459,"last_check_ts":1727848664,"last_check_ymd":20241002,"next_check_ts":1727884800,"check_counter":4,"today_points":3000,"today_game":4,"diff":1}}}
2024-10-02 19:27:44 - 200 - {"status":0,"message":"","data":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"ca67b4a0-fb83-49ec-9efd-c2a4414f3c0e","user_id":15231956,"start_at":1727877464,"end_at":1727888264,"last_claim":1727877464,"points":0}}
2024-10-02 19:27:44 - 200 - {"status":0,"message":"","data":{"available_balance":21936,"play_passes":9,"timestamp":1727877465,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"ca67b4a0-fb83-49ec-9efd-c2a4414f3c0e","user_id":15231956,"start_at":1727877464,"end_at":1727888264,"last_claim":1727877464,"points":0},"daily":{"round_id":"33de41c2-b988-405b-b2d6-dc318db03b20","user_id":15231956,"start_at":1727615459,"last_check_ts":1727848664,"last_check_ymd":20241002,"next_check_ts":1727884800,"check_counter":4,"today_points":3000,"today_game":4,"diff":1}}}
2024-10-02 19:27:45 - 200 - {"status":0,"message":"","data":{"round_id":"a9da91ee-0892-4976-ac39-610fff257a53","user_id":15231956,"start_at":1727877465,"end_at":1727877495}}
2024-10-02 19:28:15 - 200 - {"status":0,"message":"","data":{"round_id":"a9da91ee-0892-4976-ac39-610fff257a53","user_id":15231956,"start_at":1727877465,"end_at":1727877495,"points":131}}
2024-10-02 19:28:15 - 200 - {"status":0,"message":"","data":{"round_id":"7e5cb2f2-034f-45ca-9e29-477dcee5184f","user_id":15231956,"start_at":1727877496,"end_at":1727877526}}
2024-10-02 19:28:46 - 200 - {"status":0,"message":"","data":{"round_id":"7e5cb2f2-034f-45ca-9e29-477dcee5184f","user_id":15231956,"start_at":1727877496,"end_at":1727877526,"points":115}}
2024-10-02 19:28:46 - 200 - {"status":0,"message":"","data":{"round_id":"9220a76a-170c-4b55-927c-d1602d7fa548","user_id":15231956,"start_at":1727877526,"end_at":1727877556}}
2024-10-02 19:29:16 - 200 - {"status":0,"message":"","data":{"round_id":"9220a76a-170c-4b55-927c-d1602d7fa548","user_id":15231956,"start_at":1727877526,"end_at":1727877556,"points":134}}
2024-10-02 19:29:17 - 200 - {"status":0,"message":"","data":{"round_id":"26abf67f-b483-4b6c-9e63-82d0c2d94dc9","user_id":15231956,"start_at":1727877557,"end_at":1727877587}}
2024-10-02 19:29:49 - 200 - {"status":0,"message":"","data":{"round_id":"26abf67f-b483-4b6c-9e63-82d0c2d94dc9","user_id":15231956,"start_at":1727877557,"end_at":1727877587,"points":146}}
2024-10-02 19:29:49 - 200 - {"status":0,"message":"","data":{"round_id":"eb58a2f9-4555-4dc0-bffa-3a3c4609496e","user_id":15231956,"start_at":1727877589,"end_at":1727877619}}
2024-10-02 19:30:25 - 200 - {"status":0,"message":"","data":{"round_id":"eb58a2f9-4555-4dc0-bffa-3a3c4609496e","user_id":15231956,"start_at":1727877589,"end_at":1727877619,"points":132}}
2024-10-02 19:30:25 - 200 - {"status":0,"message":"","data":{"round_id":"27d9f483-d849-4a16-8f45-74ecd77d2709","user_id":15231956,"start_at":1727877625,"end_at":1727877655}}
2024-10-02 19:30:55 - 200 - {"status":0,"message":"","data":{"round_id":"27d9f483-d849-4a16-8f45-74ecd77d2709","user_id":15231956,"start_at":1727877625,"end_at":1727877655,"points":118}}
2024-10-02 19:30:56 - 200 - {"status":0,"message":"","data":{"round_id":"cc7fa551-0a13-4d58-86e7-6f3deed5fd4f","user_id":15231956,"start_at":1727877656,"end_at":1727877686}}
2024-10-02 19:31:26 - 200 - {"status":0,"message":"","data":{"round_id":"cc7fa551-0a13-4d58-86e7-6f3deed5fd4f","user_id":15231956,"start_at":1727877656,"end_at":1727877686,"points":126}}
2024-10-02 19:31:26 - 200 - {"status":0,"message":"","data":{"round_id":"354bfce9-dcb5-400c-9a11-8a1ee339acee","user_id":15231956,"start_at":1727877687,"end_at":1727877717}}
2024-10-02 19:31:57 - 200 - {"status":0,"message":"","data":{"round_id":"354bfce9-dcb5-400c-9a11-8a1ee339acee","user_id":15231956,"start_at":1727877687,"end_at":1727877717,"points":112}}
2024-10-02 19:31:57 - 200 - {"status":0,"message":"","data":{"round_id":"36a9ae4e-8dd5-4e5a-b371-f7c97744d742","user_id":15231956,"start_at":1727877717,"end_at":1727877747}}
2024-10-02 19:32:48 - 200 - {"status":0,"message":"","data":{"round_id":"36a9ae4e-8dd5-4e5a-b371-f7c97744d742","user_id":15231956,"start_at":1727877717,"end_at":1727877747,"points":124}}
2024-10-02 19:32:48 - 200 - {"status":0,"message":"","data":{"available_balance":"23074.00","play_passes":0,"timestamp":1727877768,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"ca67b4a0-fb83-49ec-9efd-c2a4414f3c0e","user_id":15231956,"start_at":1727877464,"end_at":1727888264,"last_claim":1727877464,"points":0},"daily":{"round_id":"33de41c2-b988-405b-b2d6-dc318db03b20","user_id":15231956,"start_at":1727615459,"last_check_ts":1727848664,"last_check_ymd":20241002,"next_check_ts":1727884800,"check_counter":4,"today_points":3000,"today_game":4,"diff":1}}}
2024-10-02 19:32:51 - 200 - {"status":0,"message":"","data":{"available_balance":"19824.00","play_passes":5,"timestamp":1727877772,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"62e99ad9-b1b7-48ab-976a-c54b4aac5d83","user_id":12924209,"start_at":1727791266,"end_at":1727802066,"last_claim":1727791266,"points":0},"daily":{"round_id":"c98bbcc7-75ba-4c06-a531-71d912bee509","user_id":12924209,"start_at":1727615650,"last_check_ts":1727717946,"last_check_ymd":20241001,"next_check_ts":1727798400,"check_counter":3,"today_points":4000,"today_game":3,"diff":1}}}
2024-10-02 19:32:52 - 200 - {"status":0,"message":"","data":{"round_id":"c98bbcc7-75ba-4c06-a531-71d912bee509","user_id":12924209,"start_at":1727615650,"last_check_ts":1727848972,"last_check_ymd":20241002,"next_check_ts":1727884800,"check_counter":4,"today_points":3000,"today_game":4,"diff":1}}
2024-10-02 19:32:52 - 200 - {"status":0,"message":"","data":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"62e99ad9-b1b7-48ab-976a-c54b4aac5d83","user_id":12924209,"start_at":1727791266,"end_at":1727802066,"last_claim":1727877773,"points":"1080.00","finished":true,"claim_this_time":"1080.00"}}
2024-10-02 19:32:53 - 200 - {"status":0,"message":"","data":{"available_balance":"23904.00","play_passes":9,"timestamp":1727877773,"daily":{"round_id":"c98bbcc7-75ba-4c06-a531-71d912bee509","user_id":12924209,"start_at":1727615650,"last_check_ts":1727848972,"last_check_ymd":20241002,"next_check_ts":1727884800,"check_counter":4,"today_points":3000,"today_game":4,"diff":1}}}
2024-10-02 19:32:53 - 200 - {"status":0,"message":"","data":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"d357ea1c-b48a-443a-828d-74f8ef90de37","user_id":12924209,"start_at":1727877773,"end_at":1727888573,"last_claim":1727877773,"points":0}}
2024-10-02 19:32:53 - 200 - {"status":0,"message":"","data":{"available_balance":23904,"play_passes":9,"timestamp":1727877773,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"d357ea1c-b48a-443a-828d-74f8ef90de37","user_id":12924209,"start_at":1727877773,"end_at":1727888573,"last_claim":1727877773,"points":0},"daily":{"round_id":"c98bbcc7-75ba-4c06-a531-71d912bee509","user_id":12924209,"start_at":1727615650,"last_check_ts":1727848972,"last_check_ymd":20241002,"next_check_ts":1727884800,"check_counter":4,"today_points":3000,"today_game":4,"diff":1}}}
2024-10-02 19:32:53 - 200 - {"status":0,"message":"","data":{"round_id":"00c57c7f-1539-4d79-9a1c-dfb71b81be39","user_id":12924209,"start_at":1727877774,"end_at":1727877804}}
2024-10-02 19:34:32 - 200 - {"status":0,"message":"","data":{"round_id":"00c57c7f-1539-4d79-9a1c-dfb71b81be39","user_id":12924209,"start_at":1727877774,"end_at":1727877804,"points":109}}
2024-10-02 19:34:33 - 200 - {"status":0,"message":"","data":{"round_id":"4612faf1-a4d1-49b0-91c9-56515da44d83","user_id":12924209,"start_at":1727877873,"end_at":1727877903}}
2024-10-02 19:35:28 - 200 - {"status":0,"message":"","data":{"round_id":"4612faf1-a4d1-49b0-91c9-56515da44d83","user_id":12924209,"start_at":1727877873,"end_at":1727877903,"points":141}}
2024-10-02 19:35:28 - 200 - {"status":0,"message":"","data":{"round_id":"177be56d-8913-415f-bab3-7aec6a9f57be","user_id":12924209,"start_at":1727877928,"end_at":1727877958}}
2024-10-02 19:35:58 - 200 - {"status":0,"message":"","data":{"round_id":"177be56d-8913-415f-bab3-7aec6a9f57be","user_id":12924209,"start_at":1727877928,"end_at":1727877958,"points":143}}
2024-10-02 19:35:59 - 200 - {"status":0,"message":"","data":{"round_id":"713f7e3f-d4c1-4850-ac1b-a7001708f201","user_id":12924209,"start_at":1727877959,"end_at":1727877989}}
2024-10-02 19:36:29 - 200 - {"status":0,"message":"","data":{"round_id":"713f7e3f-d4c1-4850-ac1b-a7001708f201","user_id":12924209,"start_at":1727877959,"end_at":1727877989,"points":101}}
2024-10-02 19:36:30 - 200 - {"status":0,"message":"","data":{"round_id":"07fdbf43-7be1-4a8b-9a71-fc413ec61b1d","user_id":12924209,"start_at":1727877990,"end_at":1727878020}}
2024-10-02 19:37:00 - 200 - {"status":0,"message":"","data":{"round_id":"07fdbf43-7be1-4a8b-9a71-fc413ec61b1d","user_id":12924209,"start_at":1727877990,"end_at":1727878020,"points":136}}
2024-10-02 19:37:01 - 200 - {"status":0,"message":"","data":{"round_id":"bc1566f4-1cd9-4f75-8a40-415912bb79e7","user_id":12924209,"start_at":1727878021,"end_at":1727878051}}
2024-10-02 19:37:31 - 200 - {"status":0,"message":"","data":{"round_id":"bc1566f4-1cd9-4f75-8a40-415912bb79e7","user_id":12924209,"start_at":1727878021,"end_at":1727878051,"points":125}}
2024-10-02 19:37:31 - 200 - {"status":0,"message":"","data":{"round_id":"89b90fef-6b45-46ca-a8ed-f93520152ebe","user_id":12924209,"start_at":1727878052,"end_at":1727878082}}
2024-10-02 19:38:02 - 200 - {"status":0,"message":"","data":{"round_id":"89b90fef-6b45-46ca-a8ed-f93520152ebe","user_id":12924209,"start_at":1727878052,"end_at":1727878082,"points":149}}
2024-10-02 19:38:02 - 200 - {"status":0,"message":"","data":{"round_id":"34757aa7-fce5-4f9b-936f-0705a5d540d1","user_id":12924209,"start_at":1727878082,"end_at":1727878112}}
2024-10-02 19:38:33 - 200 - {"status":0,"message":"","data":{"round_id":"34757aa7-fce5-4f9b-936f-0705a5d540d1","user_id":12924209,"start_at":1727878082,"end_at":1727878112,"points":121}}
2024-10-02 19:38:33 - 200 - {"status":0,"message":"","data":{"round_id":"49a1c4f8-26ef-46e0-b2f3-4dc5c46d858f","user_id":12924209,"start_at":1727878113,"end_at":1727878143}}
2024-10-02 19:39:11 - 200 - {"status":0,"message":"","data":{"round_id":"49a1c4f8-26ef-46e0-b2f3-4dc5c46d858f","user_id":12924209,"start_at":1727878113,"end_at":1727878143,"points":142}}
2024-10-02 19:39:11 - 200 - {"status":0,"message":"","data":{"available_balance":"25071.00","play_passes":0,"timestamp":1727878151,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"d357ea1c-b48a-443a-828d-74f8ef90de37","user_id":12924209,"start_at":1727877773,"end_at":1727888573,"last_claim":1727877773,"points":0},"daily":{"round_id":"c98bbcc7-75ba-4c06-a531-71d912bee509","user_id":12924209,"start_at":1727615650,"last_check_ts":1727848972,"last_check_ymd":20241002,"next_check_ts":1727884800,"check_counter":4,"today_points":3000,"today_game":4,"diff":1}}}
2024-10-02 19:51:35 - 200 - {"status":0,"message":"","data":{"available_balance":"711681.20","play_passes":0,"timestamp":1727878898,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"844a3080-3cd4-4817-aee8-730fea105894","user_id":8565031,"start_at":1727876170,"end_at":1727886970,"last_claim":1727876170,"points":0},"daily":{"round_id":"3d1adf61-5428-403f-b735-0f55996e8990","user_id":8565031,"start_at":1727635158,"last_check_ts":1727847369,"last_check_ymd":20241002,"next_check_ts":1727884800,"check_counter":3,"today_points":4000,"today_game":3,"diff":1}}}
2024-10-02 19:51:41 - 200 - {"status":0,"message":"","data":{"available_balance":92981,"play_passes":0,"timestamp":1727878902,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"19e5c6b2-604b-49df-bd3f-16070635a5f2","user_id":32124262,"start_at":1727872614,"end_at":1727883414,"last_claim":1727872614,"points":0},"daily":{"round_id":"93927530-02e8-4a6e-a3a4-92c94df2a303","user_id":32124262,"start_at":1727352309,"last_check_ts":1727803417,"last_check_ymd":20241002,"next_check_ts":1727884800,"check_counter":7,"today_points":20000,"today_game":7,"diff":1}}}
2024-10-02 19:51:45 - 200 - {"status":0,"message":"","data":{"available_balance":84749,"play_passes":0,"timestamp":1727878907,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"33805d54-3094-4154-8c89-d546c17654e5","user_id":12936487,"start_at":1727872619,"end_at":1727883419,"last_claim":1727872619,"points":0},"daily":{"round_id":"6e16e753-d0ab-432f-9a4b-513930a35471","user_id":12936487,"start_at":1727352557,"last_check_ts":1727803421,"last_check_ymd":20241002,"next_check_ts":1727884800,"check_counter":7,"today_points":20000,"today_game":7,"diff":1}}}
2024-10-02 19:52:24 - 200 - {"status":0,"message":"","data":{"available_balance":711681.2,"play_passes":0,"timestamp":1727878947,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"844a3080-3cd4-4817-aee8-730fea105894","user_id":8565031,"start_at":1727876170,"end_at":1727886970,"last_claim":1727876170,"points":0},"daily":{"round_id":"3d1adf61-5428-403f-b735-0f55996e8990","user_id":8565031,"start_at":1727635158,"last_check_ts":1727847369,"last_check_ymd":20241002,"next_check_ts":1727884800,"check_counter":3,"today_points":4000,"today_game":3,"diff":1}}}
2024-10-02 19:52:30 - 200 - {"status":0,"message":"","data":{"available_balance":92981,"play_passes":0,"timestamp":1727878951,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"19e5c6b2-604b-49df-bd3f-16070635a5f2","user_id":32124262,"start_at":1727872614,"end_at":1727883414,"last_claim":1727872614,"points":0},"daily":{"round_id":"93927530-02e8-4a6e-a3a4-92c94df2a303","user_id":32124262,"start_at":1727352309,"last_check_ts":1727803417,"last_check_ymd":20241002,"next_check_ts":1727884800,"check_counter":7,"today_points":20000,"today_game":7,"diff":1}}}
2024-10-02 19:52:35 - 200 - {"status":0,"message":"","data":{"available_balance":84749,"play_passes":0,"timestamp":1727878956,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"33805d54-3094-4154-8c89-d546c17654e5","user_id":12936487,"start_at":1727872619,"end_at":1727883419,"last_claim":1727872619,"points":0},"daily":{"round_id":"6e16e753-d0ab-432f-9a4b-513930a35471","user_id":12936487,"start_at":1727352557,"last_check_ts":1727803421,"last_check_ymd":20241002,"next_check_ts":1727884800,"check_counter":7,"today_points":20000,"today_game":7,"diff":1}}}
2024-10-02 19:53:15 - 200 - {"status":0,"message":"","data":{"available_balance":711681.2,"play_passes":0,"timestamp":1727878997,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"844a3080-3cd4-4817-aee8-730fea105894","user_id":8565031,"start_at":1727876170,"end_at":1727886970,"last_claim":1727876170,"points":0},"daily":{"round_id":"3d1adf61-5428-403f-b735-0f55996e8990","user_id":8565031,"start_at":1727635158,"last_check_ts":1727847369,"last_check_ymd":20241002,"next_check_ts":1727884800,"check_counter":3,"today_points":4000,"today_game":3,"diff":1}}}
2024-10-02 19:53:21 - 200 - {"status":0,"message":"","data":{"available_balance":92981,"play_passes":0,"timestamp":1727879002,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"19e5c6b2-604b-49df-bd3f-16070635a5f2","user_id":32124262,"start_at":1727872614,"end_at":1727883414,"last_claim":1727872614,"points":0},"daily":{"round_id":"93927530-02e8-4a6e-a3a4-92c94df2a303","user_id":32124262,"start_at":1727352309,"last_check_ts":1727803417,"last_check_ymd":20241002,"next_check_ts":1727884800,"check_counter":7,"today_points":20000,"today_game":7,"diff":1}}}
2024-10-02 19:53:25 - 200 - {"status":0,"message":"","data":{"available_balance":84749,"play_passes":0,"timestamp":1727879007,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"33805d54-3094-4154-8c89-d546c17654e5","user_id":12936487,"start_at":1727872619,"end_at":1727883419,"last_claim":1727872619,"points":0},"daily":{"round_id":"6e16e753-d0ab-432f-9a4b-513930a35471","user_id":12936487,"start_at":1727352557,"last_check_ts":1727803421,"last_check_ymd":20241002,"next_check_ts":1727884800,"check_counter":7,"today_points":20000,"today_game":7,"diff":1}}}
2024-10-02 19:53:30 - 200 - {"status":0,"message":"","data":{"available_balance":26528,"play_passes":0,"timestamp":1727879012,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"66c185bc-f8e1-4c66-8399-c9daa9cd420f","user_id":10535485,"start_at":1727877181,"end_at":1727887981,"last_claim":1727877181,"points":0},"daily":{"round_id":"912cb072-760f-4c1b-bd5e-f4025d3c68e4","user_id":10535485,"start_at":1727579544,"last_check_ts":1727848380,"last_check_ymd":20241002,"next_check_ts":1727884800,"check_counter":4,"today_points":3000,"today_game":4,"diff":1}}}
2024-10-02 19:53:35 - 200 - {"status":0,"message":"","data":{"available_balance":23074,"play_passes":0,"timestamp":1727879016,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"ca67b4a0-fb83-49ec-9efd-c2a4414f3c0e","user_id":15231956,"start_at":1727877464,"end_at":1727888264,"last_claim":1727877464,"points":0},"daily":{"round_id":"33de41c2-b988-405b-b2d6-dc318db03b20","user_id":15231956,"start_at":1727615459,"last_check_ts":1727848664,"last_check_ymd":20241002,"next_check_ts":1727884800,"check_counter":4,"today_points":3000,"today_game":4,"diff":1}}}
2024-10-02 19:53:39 - 200 - {"status":0,"message":"","data":{"available_balance":25071,"play_passes":0,"timestamp":1727879021,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"d357ea1c-b48a-443a-828d-74f8ef90de37","user_id":12924209,"start_at":1727877773,"end_at":1727888573,"last_claim":1727877773,"points":0},"daily":{"round_id":"c98bbcc7-75ba-4c06-a531-71d912bee509","user_id":12924209,"start_at":1727615650,"last_check_ts":1727848972,"last_check_ymd":20241002,"next_check_ts":1727884800,"check_counter":4,"today_points":3000,"today_game":4,"diff":1}}}
2024-10-03 01:07:37 - 200 - {"status":0,"message":"","data":{"available_balance":"711789.20","play_passes":0,"timestamp":1727897858,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"844a3080-3cd4-4817-aee8-730fea105894","user_id":8565031,"start_at":1727876170,"end_at":1727886970,"last_claim":1727876170,"points":0},"daily":{"round_id":"3d1adf61-5428-403f-b735-0f55996e8990","user_id":8565031,"start_at":1727635158,"last_check_ts":1727847369,"last_check_ymd":20241002,"next_check_ts":1727884800,"check_counter":3,"today_points":4000,"today_game":3,"diff":1}}}
2024-10-03 01:07:38 - 200 - {"status":400,"message":"already_check","data":{"round_id":"3d1adf61-5428-403f-b735-0f55996e8990","user_id":8565031,"start_at":1727635158,"last_check_ts":1727847369,"last_check_ymd":20241002,"next_check_ts":1727884800,"check_counter":3,"today_points":4000,"today_game":3,"diff":1}}
2024-10-03 01:07:38 - 200 - {"status":0,"message":"","data":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"844a3080-3cd4-4817-aee8-730fea105894","user_id":8565031,"start_at":1727876170,"end_at":1727886970,"last_claim":1727897858,"points":"1080.00","finished":true,"claim_this_time":"1080.00"}}
2024-10-03 01:07:38 - 200 - {"status":0,"message":"","data":{"available_balance":"712869.20","play_passes":0,"timestamp":1727897859,"daily":{"round_id":"3d1adf61-5428-403f-b735-0f55996e8990","user_id":8565031,"start_at":1727635158,"last_check_ts":1727847369,"last_check_ymd":20241002,"next_check_ts":1727884800,"check_counter":3,"today_points":4000,"today_game":3,"diff":1}}}
2024-10-03 01:07:39 - 200 - {"status":400,"message":"already_check","data":{"round_id":"3d1adf61-5428-403f-b735-0f55996e8990","user_id":8565031,"start_at":1727635158,"last_check_ts":1727847369,"last_check_ymd":20241002,"next_check_ts":1727884800,"check_counter":3,"today_points":4000,"today_game":3,"diff":1}}
2024-10-03 01:07:39 - 200 - {"status":0,"message":"","data":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"948772be-9d03-40dd-aa37-8e1d676d6151","user_id":8565031,"start_at":1727897859,"end_at":1727908659,"last_claim":1727897859,"points":0}}
2024-10-03 01:07:39 - 200 - {"status":0,"message":"","data":{"available_balance":712869.2,"play_passes":0,"timestamp":1727897860,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"948772be-9d03-40dd-aa37-8e1d676d6151","user_id":8565031,"start_at":1727897859,"end_at":1727908659,"last_claim":1727897859,"points":0},"daily":{"round_id":"3d1adf61-5428-403f-b735-0f55996e8990","user_id":8565031,"start_at":1727635158,"last_check_ts":1727847369,"last_check_ymd":20241002,"next_check_ts":1727884800,"check_counter":3,"today_points":4000,"today_game":3,"diff":1}}}
2024-10-03 01:07:40 - 200 - {"status":400,"message":"already_check","data":{"round_id":"3d1adf61-5428-403f-b735-0f55996e8990","user_id":8565031,"start_at":1727635158,"last_check_ts":1727847369,"last_check_ymd":20241002,"next_check_ts":1727884800,"check_counter":3,"today_points":4000,"today_game":3,"diff":1}}
2024-10-03 01:07:43 - 200 - {"status":0,"message":"","data":{"available_balance":94061,"play_passes":0,"timestamp":1727897863,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"a778d828-35e3-449b-a62e-0ac35adb1cd7","user_id":32124262,"start_at":1727893551,"end_at":1727904351,"last_claim":1727893551,"points":0},"daily":{"round_id":"93927530-02e8-4a6e-a3a4-92c94df2a303","user_id":32124262,"start_at":1727352309,"last_check_ts":1727803417,"last_check_ymd":20241002,"next_check_ts":1727884800,"check_counter":7,"today_points":20000,"today_game":7,"diff":1}}}
2024-10-03 01:07:43 - 200 - {"status":400,"message":"already_check","data":{"round_id":"93927530-02e8-4a6e-a3a4-92c94df2a303","user_id":32124262,"start_at":1727352309,"last_check_ts":1727803417,"last_check_ymd":20241002,"next_check_ts":1727884800,"check_counter":7,"today_points":20000,"today_game":7,"diff":1}}
2024-10-03 01:07:47 - 200 - {"status":0,"message":"","data":{"available_balance":85829,"play_passes":0,"timestamp":1727897867,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"25deb7e4-b1ad-41df-bde0-5cda3854d9a1","user_id":12936487,"start_at":1727893556,"end_at":1727904356,"last_claim":1727893556,"points":0},"daily":{"round_id":"6e16e753-d0ab-432f-9a4b-513930a35471","user_id":12936487,"start_at":1727352557,"last_check_ts":1727803421,"last_check_ymd":20241002,"next_check_ts":1727884800,"check_counter":7,"today_points":20000,"today_game":7,"diff":1}}}
2024-10-03 01:07:47 - 200 - {"status":400,"message":"already_check","data":{"round_id":"6e16e753-d0ab-432f-9a4b-513930a35471","user_id":12936487,"start_at":1727352557,"last_check_ts":1727803421,"last_check_ymd":20241002,"next_check_ts":1727884800,"check_counter":7,"today_points":20000,"today_game":7,"diff":1}}
2024-10-03 01:07:51 - 200 - {"status":0,"message":"","data":{"available_balance":"26528.00","play_passes":0,"timestamp":1727897871,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"66c185bc-f8e1-4c66-8399-c9daa9cd420f","user_id":10535485,"start_at":1727877181,"end_at":1727887981,"last_claim":1727877181,"points":0},"daily":{"round_id":"912cb072-760f-4c1b-bd5e-f4025d3c68e4","user_id":10535485,"start_at":1727579544,"last_check_ts":1727848380,"last_check_ymd":20241002,"next_check_ts":1727884800,"check_counter":4,"today_points":3000,"today_game":4,"diff":1}}}
2024-10-03 01:07:51 - 200 - {"status":400,"message":"already_check","data":{"round_id":"912cb072-760f-4c1b-bd5e-f4025d3c68e4","user_id":10535485,"start_at":1727579544,"last_check_ts":1727848380,"last_check_ymd":20241002,"next_check_ts":1727884800,"check_counter":4,"today_points":3000,"today_game":4,"diff":1}}
2024-10-03 01:07:52 - 200 - {"status":0,"message":"","data":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"66c185bc-f8e1-4c66-8399-c9daa9cd420f","user_id":10535485,"start_at":1727877181,"end_at":1727887981,"last_claim":1727897872,"points":"1080.00","finished":true,"claim_this_time":"1080.00"}}
2024-10-03 01:07:52 - 200 - {"status":0,"message":"","data":{"available_balance":"27608.00","play_passes":0,"timestamp":1727897872,"daily":{"round_id":"912cb072-760f-4c1b-bd5e-f4025d3c68e4","user_id":10535485,"start_at":1727579544,"last_check_ts":1727848380,"last_check_ymd":20241002,"next_check_ts":1727884800,"check_counter":4,"today_points":3000,"today_game":4,"diff":1}}}
2024-10-03 01:07:52 - 200 - {"status":400,"message":"already_check","data":{"round_id":"912cb072-760f-4c1b-bd5e-f4025d3c68e4","user_id":10535485,"start_at":1727579544,"last_check_ts":1727848380,"last_check_ymd":20241002,"next_check_ts":1727884800,"check_counter":4,"today_points":3000,"today_game":4,"diff":1}}
2024-10-03 01:07:53 - 200 - {"status":0,"message":"","data":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"b0ad36ec-a73e-4e48-918f-b4e017c045f3","user_id":10535485,"start_at":1727897873,"end_at":1727908673,"last_claim":1727897873,"points":0}}
2024-10-03 01:07:53 - 200 - {"status":0,"message":"","data":{"available_balance":27608,"play_passes":0,"timestamp":1727897873,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"b0ad36ec-a73e-4e48-918f-b4e017c045f3","user_id":10535485,"start_at":1727897873,"end_at":1727908673,"last_claim":1727897873,"points":0},"daily":{"round_id":"912cb072-760f-4c1b-bd5e-f4025d3c68e4","user_id":10535485,"start_at":1727579544,"last_check_ts":1727848380,"last_check_ymd":20241002,"next_check_ts":1727884800,"check_counter":4,"today_points":3000,"today_game":4,"diff":1}}}
2024-10-03 01:07:53 - 200 - {"status":400,"message":"already_check","data":{"round_id":"912cb072-760f-4c1b-bd5e-f4025d3c68e4","user_id":10535485,"start_at":1727579544,"last_check_ts":1727848380,"last_check_ymd":20241002,"next_check_ts":1727884800,"check_counter":4,"today_points":3000,"today_game":4,"diff":1}}
2024-10-03 01:07:57 - 200 - {"status":0,"message":"","data":{"available_balance":"23074.00","play_passes":0,"timestamp":1727897877,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"ca67b4a0-fb83-49ec-9efd-c2a4414f3c0e","user_id":15231956,"start_at":1727877464,"end_at":1727888264,"last_claim":1727877464,"points":0},"daily":{"round_id":"33de41c2-b988-405b-b2d6-dc318db03b20","user_id":15231956,"start_at":1727615459,"last_check_ts":1727848664,"last_check_ymd":20241002,"next_check_ts":1727884800,"check_counter":4,"today_points":3000,"today_game":4,"diff":1}}}
2024-10-03 01:07:57 - 200 - {"status":400,"message":"already_check","data":{"round_id":"33de41c2-b988-405b-b2d6-dc318db03b20","user_id":15231956,"start_at":1727615459,"last_check_ts":1727848664,"last_check_ymd":20241002,"next_check_ts":1727884800,"check_counter":4,"today_points":3000,"today_game":4,"diff":1}}
2024-10-03 01:07:57 - 200 - {"status":0,"message":"","data":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"ca67b4a0-fb83-49ec-9efd-c2a4414f3c0e","user_id":15231956,"start_at":1727877464,"end_at":1727888264,"last_claim":1727897878,"points":"1080.00","finished":true,"claim_this_time":"1080.00"}}
2024-10-03 01:07:58 - 200 - {"status":0,"message":"","data":{"available_balance":"24154.00","play_passes":0,"timestamp":1727897878,"daily":{"round_id":"33de41c2-b988-405b-b2d6-dc318db03b20","user_id":15231956,"start_at":1727615459,"last_check_ts":1727848664,"last_check_ymd":20241002,"next_check_ts":1727884800,"check_counter":4,"today_points":3000,"today_game":4,"diff":1}}}
2024-10-03 01:07:58 - 200 - {"status":400,"message":"already_check","data":{"round_id":"33de41c2-b988-405b-b2d6-dc318db03b20","user_id":15231956,"start_at":1727615459,"last_check_ts":1727848664,"last_check_ymd":20241002,"next_check_ts":1727884800,"check_counter":4,"today_points":3000,"today_game":4,"diff":1}}
2024-10-03 01:07:58 - 200 - {"status":0,"message":"","data":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"8dd60ca0-5dae-4dd1-adf0-7484d491055f","user_id":15231956,"start_at":1727897879,"end_at":1727908679,"last_claim":1727897879,"points":0}}
2024-10-03 01:07:59 - 200 - {"status":0,"message":"","data":{"available_balance":24154,"play_passes":0,"timestamp":1727897879,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"8dd60ca0-5dae-4dd1-adf0-7484d491055f","user_id":15231956,"start_at":1727897879,"end_at":1727908679,"last_claim":1727897879,"points":0},"daily":{"round_id":"33de41c2-b988-405b-b2d6-dc318db03b20","user_id":15231956,"start_at":1727615459,"last_check_ts":1727848664,"last_check_ymd":20241002,"next_check_ts":1727884800,"check_counter":4,"today_points":3000,"today_game":4,"diff":1}}}
2024-10-03 01:07:59 - 200 - {"status":400,"message":"already_check","data":{"round_id":"33de41c2-b988-405b-b2d6-dc318db03b20","user_id":15231956,"start_at":1727615459,"last_check_ts":1727848664,"last_check_ymd":20241002,"next_check_ts":1727884800,"check_counter":4,"today_points":3000,"today_game":4,"diff":1}}
2024-10-03 01:08:02 - 200 - {"status":0,"message":"","data":{"available_balance":"25071.00","play_passes":0,"timestamp":1727897883,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"d357ea1c-b48a-443a-828d-74f8ef90de37","user_id":12924209,"start_at":1727877773,"end_at":1727888573,"last_claim":1727877773,"points":0},"daily":{"round_id":"c98bbcc7-75ba-4c06-a531-71d912bee509","user_id":12924209,"start_at":1727615650,"last_check_ts":1727848972,"last_check_ymd":20241002,"next_check_ts":1727884800,"check_counter":4,"today_points":3000,"today_game":4,"diff":1}}}
2024-10-03 01:08:03 - 200 - {"status":400,"message":"already_check","data":{"round_id":"c98bbcc7-75ba-4c06-a531-71d912bee509","user_id":12924209,"start_at":1727615650,"last_check_ts":1727848972,"last_check_ymd":20241002,"next_check_ts":1727884800,"check_counter":4,"today_points":3000,"today_game":4,"diff":1}}
2024-10-03 01:08:03 - 200 - {"status":0,"message":"","data":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"d357ea1c-b48a-443a-828d-74f8ef90de37","user_id":12924209,"start_at":1727877773,"end_at":1727888573,"last_claim":1727897883,"points":"1080.00","finished":true,"claim_this_time":"1080.00"}}
2024-10-03 01:08:03 - 200 - {"status":0,"message":"","data":{"available_balance":"26151.00","play_passes":0,"timestamp":1727897884,"daily":{"round_id":"c98bbcc7-75ba-4c06-a531-71d912bee509","user_id":12924209,"start_at":1727615650,"last_check_ts":1727848972,"last_check_ymd":20241002,"next_check_ts":1727884800,"check_counter":4,"today_points":3000,"today_game":4,"diff":1}}}
2024-10-03 01:08:04 - 200 - {"status":400,"message":"already_check","data":{"round_id":"c98bbcc7-75ba-4c06-a531-71d912bee509","user_id":12924209,"start_at":1727615650,"last_check_ts":1727848972,"last_check_ymd":20241002,"next_check_ts":1727884800,"check_counter":4,"today_points":3000,"today_game":4,"diff":1}}
2024-10-03 01:08:04 - 200 - {"status":0,"message":"","data":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"49a045e9-845d-4ccd-9fe8-18a047813224","user_id":12924209,"start_at":1727897884,"end_at":1727908684,"last_claim":1727897884,"points":0}}
2024-10-03 01:08:04 - 200 - {"status":0,"message":"","data":{"available_balance":26151,"play_passes":0,"timestamp":1727897885,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"49a045e9-845d-4ccd-9fe8-18a047813224","user_id":12924209,"start_at":1727897884,"end_at":1727908684,"last_claim":1727897884,"points":0},"daily":{"round_id":"c98bbcc7-75ba-4c06-a531-71d912bee509","user_id":12924209,"start_at":1727615650,"last_check_ts":1727848972,"last_check_ymd":20241002,"next_check_ts":1727884800,"check_counter":4,"today_points":3000,"today_game":4,"diff":1}}}
2024-10-03 01:08:05 - 200 - {"status":400,"message":"already_check","data":{"round_id":"c98bbcc7-75ba-4c06-a531-71d912bee509","user_id":12924209,"start_at":1727615650,"last_check_ts":1727848972,"last_check_ymd":20241002,"next_check_ts":1727884800,"check_counter":4,"today_points":3000,"today_game":4,"diff":1}}
2024-10-03 21:36:50 - 200 - {"status":0,"message":"","data":{"available_balance":723177.2,"play_passes":9,"timestamp":1727971611,"daily":{"round_id":"3d1adf61-5428-403f-b735-0f55996e8990","user_id":8565031,"start_at":1727635158,"last_check_ts":1727894210,"last_check_ymd":20241003,"next_check_ts":1727971200,"check_counter":4,"today_points":3000,"today_game":4,"diff":1}}}
2024-10-03 21:36:50 - 200 - {"status":400,"message":"already_check","data":{"round_id":"3d1adf61-5428-403f-b735-0f55996e8990","user_id":8565031,"start_at":1727635158,"last_check_ts":1727894210,"last_check_ymd":20241003,"next_check_ts":1727971200,"check_counter":4,"today_points":3000,"today_game":4,"diff":1}}
2024-10-03 21:36:51 - 200 - {"status":0,"message":"","data":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"b39a33f3-fcf5-4441-a3bc-e1fe722bba93","user_id":8565031,"start_at":1727971611,"end_at":1727982411,"last_claim":1727971611,"points":0}}
2024-10-03 21:36:51 - 200 - {"status":0,"message":"","data":{"available_balance":723177.2,"play_passes":9,"timestamp":1727971611,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"b39a33f3-fcf5-4441-a3bc-e1fe722bba93","user_id":8565031,"start_at":1727971611,"end_at":1727982411,"last_claim":1727971611,"points":0},"daily":{"round_id":"3d1adf61-5428-403f-b735-0f55996e8990","user_id":8565031,"start_at":1727635158,"last_check_ts":1727894210,"last_check_ymd":20241003,"next_check_ts":1727971200,"check_counter":4,"today_points":3000,"today_game":4,"diff":1}}}
2024-10-03 21:36:51 - 200 - {"status":400,"message":"already_check","data":{"round_id":"3d1adf61-5428-403f-b735-0f55996e8990","user_id":8565031,"start_at":1727635158,"last_check_ts":1727894210,"last_check_ymd":20241003,"next_check_ts":1727971200,"check_counter":4,"today_points":3000,"today_game":4,"diff":1}}
2024-10-03 21:36:51 - 200 - {"status":0,"message":"","data":{"round_id":"08ab8f05-87b7-4b2f-aaa4-21420289caff","user_id":8565031,"start_at":1727971612,"end_at":1727971642}}
2024-10-03 21:37:22 - 200 - {"status":0,"message":"","data":{"round_id":"08ab8f05-87b7-4b2f-aaa4-21420289caff","user_id":8565031,"start_at":1727971612,"end_at":1727971642,"points":108}}
2024-10-03 21:37:22 - 200 - {"status":0,"message":"","data":{"round_id":"9cb5c6d2-ede6-4336-814e-acab7d1719b1","user_id":8565031,"start_at":1727971642,"end_at":1727971672}}
2024-10-03 21:37:52 - 200 - {"status":0,"message":"","data":{"round_id":"9cb5c6d2-ede6-4336-814e-acab7d1719b1","user_id":8565031,"start_at":1727971642,"end_at":1727971672,"points":143}}
2024-10-03 21:37:53 - 200 - {"status":0,"message":"","data":{"round_id":"f6617b11-9657-4540-a351-43371842ef9f","user_id":8565031,"start_at":1727971673,"end_at":1727971703}}
2024-10-03 21:38:23 - 200 - {"status":0,"message":"","data":{"round_id":"f6617b11-9657-4540-a351-43371842ef9f","user_id":8565031,"start_at":1727971673,"end_at":1727971703,"points":128}}
2024-10-03 21:38:23 - 200 - {"status":0,"message":"","data":{"round_id":"874650a6-6c56-4a0c-9216-52636f62cd08","user_id":8565031,"start_at":1727971704,"end_at":1727971734}}
2024-10-03 21:38:53 - 200 - {"status":0,"message":"","data":{"round_id":"874650a6-6c56-4a0c-9216-52636f62cd08","user_id":8565031,"start_at":1727971704,"end_at":1727971734,"points":120}}
2024-10-03 21:38:54 - 200 - {"status":0,"message":"","data":{"round_id":"85a9aa18-d98d-4dbd-b62e-4029717a8974","user_id":8565031,"start_at":1727971734,"end_at":1727971764}}
2024-10-03 21:39:24 - 200 - {"status":0,"message":"","data":{"round_id":"85a9aa18-d98d-4dbd-b62e-4029717a8974","user_id":8565031,"start_at":1727971734,"end_at":1727971764,"points":143}}
2024-10-03 21:39:24 - 200 - {"status":0,"message":"","data":{"round_id":"ec539d74-dcf3-4757-8cfc-52ef8f9cfbf5","user_id":8565031,"start_at":1727971765,"end_at":1727971795}}
2024-10-03 21:39:55 - 200 - {"status":0,"message":"","data":{"round_id":"ec539d74-dcf3-4757-8cfc-52ef8f9cfbf5","user_id":8565031,"start_at":1727971765,"end_at":1727971795,"points":104}}
2024-10-03 21:39:55 - 200 - {"status":0,"message":"","data":{"round_id":"dcf9cc44-57c7-407a-8b61-d222fde54e9c","user_id":8565031,"start_at":1727971795,"end_at":1727971825}}
2024-10-03 21:40:25 - 200 - {"status":0,"message":"","data":{"round_id":"dcf9cc44-57c7-407a-8b61-d222fde54e9c","user_id":8565031,"start_at":1727971795,"end_at":1727971825,"points":119}}
2024-10-03 21:40:25 - 200 - {"status":0,"message":"","data":{"round_id":"da1cf008-c8ea-411e-ba3c-3124f7d62ab5","user_id":8565031,"start_at":1727971826,"end_at":1727971856}}
2024-10-03 21:40:56 - 200 - {"status":0,"message":"","data":{"round_id":"da1cf008-c8ea-411e-ba3c-3124f7d62ab5","user_id":8565031,"start_at":1727971826,"end_at":1727971856,"points":109}}
2024-10-03 21:40:56 - 200 - {"status":0,"message":"","data":{"round_id":"4b2e0423-a47e-4358-acce-fc1193ddb6d8","user_id":8565031,"start_at":1727971857,"end_at":1727971887}}
2024-10-03 21:41:26 - 200 - {"status":0,"message":"","data":{"round_id":"4b2e0423-a47e-4358-acce-fc1193ddb6d8","user_id":8565031,"start_at":1727971857,"end_at":1727971887,"points":128}}
2024-10-03 21:41:27 - 200 - {"status":0,"message":"","data":{"available_balance":"724279.20","play_passes":0,"timestamp":1727971887,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"b39a33f3-fcf5-4441-a3bc-e1fe722bba93","user_id":8565031,"start_at":1727971611,"end_at":1727982411,"last_claim":1727971611,"points":0},"daily":{"round_id":"3d1adf61-5428-403f-b735-0f55996e8990","user_id":8565031,"start_at":1727635158,"last_check_ts":1727894210,"last_check_ymd":20241003,"next_check_ts":1727971200,"check_counter":4,"today_points":3000,"today_game":4,"diff":1}}}
2024-10-03 21:41:27 - 200 - {"status":400,"message":"already_check","data":{"round_id":"3d1adf61-5428-403f-b735-0f55996e8990","user_id":8565031,"start_at":1727635158,"last_check_ts":1727894210,"last_check_ymd":20241003,"next_check_ts":1727971200,"check_counter":4,"today_points":3000,"today_game":4,"diff":1}}
2024-10-03 21:41:30 - 200 - {"status":0,"message":"","data":{"available_balance":97501,"play_passes":6,"timestamp":1727971891,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"eaef3c96-5ecd-4340-8f9e-d4e9bfce1040","user_id":32124262,"start_at":1727959000,"end_at":1727969800,"last_claim":1727959000,"points":0},"daily":{"round_id":"b55dd336-8686-404d-a8d5-a36d447d617f","user_id":32124262,"start_at":1727889835,"last_check_ts":1727889835,"last_check_ymd":20241003,"next_check_ts":1727971200,"check_counter":1,"today_points":200,"today_game":1}}}
2024-10-03 21:41:31 - 200 - {"status":400,"message":"already_check","data":{"round_id":"b55dd336-8686-404d-a8d5-a36d447d617f","user_id":32124262,"start_at":1727889835,"last_check_ts":1727889835,"last_check_ymd":20241003,"next_check_ts":1727971200,"check_counter":1,"today_points":200,"today_game":1}}
2024-10-03 21:41:31 - 200 - {"status":0,"message":"","data":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"eaef3c96-5ecd-4340-8f9e-d4e9bfce1040","user_id":32124262,"start_at":1727959000,"end_at":1727969800,"last_claim":1727971892,"points":"1080.00","finished":true,"claim_this_time":"1080.00"}}
2024-10-03 21:41:32 - 200 - {"status":0,"message":"","data":{"available_balance":"98581.00","play_passes":6,"timestamp":1727971892,"daily":{"round_id":"b55dd336-8686-404d-a8d5-a36d447d617f","user_id":32124262,"start_at":1727889835,"last_check_ts":1727889835,"last_check_ymd":20241003,"next_check_ts":1727971200,"check_counter":1,"today_points":200,"today_game":1}}}
2024-10-03 21:41:32 - 200 - {"status":400,"message":"already_check","data":{"round_id":"b55dd336-8686-404d-a8d5-a36d447d617f","user_id":32124262,"start_at":1727889835,"last_check_ts":1727889835,"last_check_ymd":20241003,"next_check_ts":1727971200,"check_counter":1,"today_points":200,"today_game":1}}
2024-10-03 21:41:32 - 200 - {"status":0,"message":"","data":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"43092943-7b47-4b8e-9c67-e0dc6f3eb7a2","user_id":32124262,"start_at":1727971893,"end_at":1727982693,"last_claim":1727971893,"points":0}}
2024-10-03 21:41:32 - 200 - {"status":0,"message":"","data":{"available_balance":98581,"play_passes":6,"timestamp":1727971893,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"43092943-7b47-4b8e-9c67-e0dc6f3eb7a2","user_id":32124262,"start_at":1727971893,"end_at":1727982693,"last_claim":1727971893,"points":0},"daily":{"round_id":"b55dd336-8686-404d-a8d5-a36d447d617f","user_id":32124262,"start_at":1727889835,"last_check_ts":1727889835,"last_check_ymd":20241003,"next_check_ts":1727971200,"check_counter":1,"today_points":200,"today_game":1}}}
2024-10-03 21:41:33 - 200 - {"status":400,"message":"already_check","data":{"round_id":"b55dd336-8686-404d-a8d5-a36d447d617f","user_id":32124262,"start_at":1727889835,"last_check_ts":1727889835,"last_check_ymd":20241003,"next_check_ts":1727971200,"check_counter":1,"today_points":200,"today_game":1}}
2024-10-03 21:41:33 - 200 - {"status":0,"message":"","data":{"round_id":"42a6ef1e-b6ba-42df-868d-7c5a6c7753d7","user_id":32124262,"start_at":1727971893,"end_at":1727971923}}
2024-10-03 21:42:03 - 200 - {"status":0,"message":"","data":{"round_id":"42a6ef1e-b6ba-42df-868d-7c5a6c7753d7","user_id":32124262,"start_at":1727971893,"end_at":1727971923,"points":146}}
2024-10-03 21:42:04 - 200 - {"status":0,"message":"","data":{"round_id":"f33288c4-7517-4cc8-a238-8605830fd8a4","user_id":32124262,"start_at":1727971924,"end_at":1727971954}}
2024-10-03 21:42:34 - 200 - {"status":0,"message":"","data":{"round_id":"f33288c4-7517-4cc8-a238-8605830fd8a4","user_id":32124262,"start_at":1727971924,"end_at":1727971954,"points":101}}
2024-10-03 21:42:34 - 200 - {"status":0,"message":"","data":{"round_id":"d91d3ed8-c160-4757-b45d-3a006f78d286","user_id":32124262,"start_at":1727971955,"end_at":1727971985}}
2024-10-03 21:43:04 - 200 - {"status":0,"message":"","data":{"round_id":"d91d3ed8-c160-4757-b45d-3a006f78d286","user_id":32124262,"start_at":1727971955,"end_at":1727971985,"points":131}}
2024-10-03 21:43:05 - 200 - {"status":0,"message":"","data":{"round_id":"1afba9c7-50a4-4d84-a725-404b9194d173","user_id":32124262,"start_at":1727971985,"end_at":1727972015}}
2024-10-03 21:43:35 - 200 - {"status":0,"message":"","data":{"round_id":"1afba9c7-50a4-4d84-a725-404b9194d173","user_id":32124262,"start_at":1727971985,"end_at":1727972015,"points":116}}
2024-10-03 21:43:35 - 200 - {"status":0,"message":"","data":{"round_id":"a0b65698-2f33-47b0-979f-92b99aa18620","user_id":32124262,"start_at":1727972016,"end_at":1727972046}}
2024-10-03 21:44:06 - 200 - {"status":0,"message":"","data":{"round_id":"a0b65698-2f33-47b0-979f-92b99aa18620","user_id":32124262,"start_at":1727972016,"end_at":1727972046,"points":133}}
2024-10-03 21:44:06 - 200 - {"status":0,"message":"","data":{"round_id":"c5aa6a9a-de9d-45b1-b8d9-fb63fd55f912","user_id":32124262,"start_at":1727972046,"end_at":1727972076}}
2024-10-03 21:44:36 - 200 - {"status":0,"message":"","data":{"round_id":"c5aa6a9a-de9d-45b1-b8d9-fb63fd55f912","user_id":32124262,"start_at":1727972046,"end_at":1727972076,"points":122}}
2024-10-03 21:44:37 - 200 - {"status":0,"message":"","data":{"available_balance":"99330.00","play_passes":0,"timestamp":1727972077,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"43092943-7b47-4b8e-9c67-e0dc6f3eb7a2","user_id":32124262,"start_at":1727971893,"end_at":1727982693,"last_claim":1727971893,"points":0},"daily":{"round_id":"b55dd336-8686-404d-a8d5-a36d447d617f","user_id":32124262,"start_at":1727889835,"last_check_ts":1727889835,"last_check_ymd":20241003,"next_check_ts":1727971200,"check_counter":1,"today_points":200,"today_game":1}}}
2024-10-03 21:44:37 - 200 - {"status":400,"message":"already_check","data":{"round_id":"b55dd336-8686-404d-a8d5-a36d447d617f","user_id":32124262,"start_at":1727889835,"last_check_ts":1727889835,"last_check_ymd":20241003,"next_check_ts":1727971200,"check_counter":1,"today_points":200,"today_game":1}}
2024-10-03 21:44:40 - 200 - {"status":0,"message":"","data":{"available_balance":91769,"play_passes":6,"timestamp":1727972081,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"e548f338-34fe-46ce-ad5a-9479e6fc6bc1","user_id":12936487,"start_at":1727959004,"end_at":1727969804,"last_claim":1727959004,"points":0},"daily":{"round_id":"cf02d36d-f4c3-4f71-b3bd-81c3e1531209","user_id":12936487,"start_at":1727889840,"last_check_ts":1727889840,"last_check_ymd":20241003,"next_check_ts":1727971200,"check_counter":1,"today_points":200,"today_game":1}}}
2024-10-03 21:44:41 - 200 - {"status":400,"message":"already_check","data":{"round_id":"cf02d36d-f4c3-4f71-b3bd-81c3e1531209","user_id":12936487,"start_at":1727889840,"last_check_ts":1727889840,"last_check_ymd":20241003,"next_check_ts":1727971200,"check_counter":1,"today_points":200,"today_game":1}}
2024-10-03 21:44:41 - 200 - {"status":0,"message":"","data":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"e548f338-34fe-46ce-ad5a-9479e6fc6bc1","user_id":12936487,"start_at":1727959004,"end_at":1727969804,"last_claim":1727972081,"points":"1080.00","finished":true,"claim_this_time":"1080.00"}}
2024-10-03 21:44:41 - 200 - {"status":0,"message":"","data":{"available_balance":"92849.00","play_passes":6,"timestamp":1727972082,"daily":{"round_id":"cf02d36d-f4c3-4f71-b3bd-81c3e1531209","user_id":12936487,"start_at":1727889840,"last_check_ts":1727889840,"last_check_ymd":20241003,"next_check_ts":1727971200,"check_counter":1,"today_points":200,"today_game":1}}}
2024-10-03 21:44:41 - 200 - {"status":400,"message":"already_check","data":{"round_id":"cf02d36d-f4c3-4f71-b3bd-81c3e1531209","user_id":12936487,"start_at":1727889840,"last_check_ts":1727889840,"last_check_ymd":20241003,"next_check_ts":1727971200,"check_counter":1,"today_points":200,"today_game":1}}
2024-10-03 21:44:42 - 200 - {"status":0,"message":"","data":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"8c78e9b8-5ee5-4eae-bc60-9a216864418c","user_id":12936487,"start_at":1727972082,"end_at":1727982882,"last_claim":1727972082,"points":0}}
2024-10-03 21:44:42 - 200 - {"status":0,"message":"","data":{"available_balance":92849,"play_passes":6,"timestamp":1727972083,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"8c78e9b8-5ee5-4eae-bc60-9a216864418c","user_id":12936487,"start_at":1727972082,"end_at":1727982882,"last_claim":1727972082,"points":0},"daily":{"round_id":"cf02d36d-f4c3-4f71-b3bd-81c3e1531209","user_id":12936487,"start_at":1727889840,"last_check_ts":1727889840,"last_check_ymd":20241003,"next_check_ts":1727971200,"check_counter":1,"today_points":200,"today_game":1}}}
2024-10-03 21:44:42 - 200 - {"status":400,"message":"already_check","data":{"round_id":"cf02d36d-f4c3-4f71-b3bd-81c3e1531209","user_id":12936487,"start_at":1727889840,"last_check_ts":1727889840,"last_check_ymd":20241003,"next_check_ts":1727971200,"check_counter":1,"today_points":200,"today_game":1}}
2024-10-03 21:44:43 - 200 - {"status":0,"message":"","data":{"round_id":"81077708-41ae-45dc-9d29-c0f20e0e45fe","user_id":12936487,"start_at":1727972083,"end_at":1727972113}}
2024-10-03 21:45:13 - 200 - {"status":0,"message":"","data":{"round_id":"81077708-41ae-45dc-9d29-c0f20e0e45fe","user_id":12936487,"start_at":1727972083,"end_at":1727972113,"points":129}}
2024-10-03 21:45:13 - 200 - {"status":0,"message":"","data":{"round_id":"579146a8-49e5-4a2c-b3be-d9cbc1f9b34c","user_id":12936487,"start_at":1727972114,"end_at":1727972144}}
2024-10-03 21:45:44 - 200 - {"status":0,"message":"","data":{"round_id":"579146a8-49e5-4a2c-b3be-d9cbc1f9b34c","user_id":12936487,"start_at":1727972114,"end_at":1727972144,"points":111}}
2024-10-03 21:45:44 - 200 - {"status":0,"message":"","data":{"round_id":"d9f6b35e-20e1-4fde-83e5-9c87924c7453","user_id":12936487,"start_at":1727972144,"end_at":1727972174}}
2024-10-03 21:46:14 - 200 - {"status":0,"message":"","data":{"round_id":"d9f6b35e-20e1-4fde-83e5-9c87924c7453","user_id":12936487,"start_at":1727972144,"end_at":1727972174,"points":145}}
2024-10-03 21:46:15 - 200 - {"status":0,"message":"","data":{"round_id":"053ca437-2e8e-4d11-86b9-d379f057aebb","user_id":12936487,"start_at":1727972175,"end_at":1727972205}}
2024-10-03 21:46:45 - 200 - {"status":0,"message":"","data":{"round_id":"053ca437-2e8e-4d11-86b9-d379f057aebb","user_id":12936487,"start_at":1727972175,"end_at":1727972205,"points":102}}
2024-10-03 21:46:45 - 200 - {"status":0,"message":"","data":{"round_id":"58d75a07-c9ef-42db-8227-2855c1dd56c1","user_id":12936487,"start_at":1727972206,"end_at":1727972236}}
2024-10-03 21:47:15 - 200 - {"status":0,"message":"","data":{"round_id":"58d75a07-c9ef-42db-8227-2855c1dd56c1","user_id":12936487,"start_at":1727972206,"end_at":1727972236,"points":127}}
2024-10-03 21:47:16 - 200 - {"status":0,"message":"","data":{"round_id":"da8b23a2-ef0c-4150-9f4d-6253343ac0b9","user_id":12936487,"start_at":1727972236,"end_at":1727972266}}
2024-10-03 21:47:46 - 200 - {"status":0,"message":"","data":{"round_id":"da8b23a2-ef0c-4150-9f4d-6253343ac0b9","user_id":12936487,"start_at":1727972236,"end_at":1727972266,"points":100}}
2024-10-03 21:47:46 - 200 - {"status":0,"message":"","data":{"available_balance":"93563.00","play_passes":0,"timestamp":1727972267,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"8c78e9b8-5ee5-4eae-bc60-9a216864418c","user_id":12936487,"start_at":1727972082,"end_at":1727982882,"last_claim":1727972082,"points":0},"daily":{"round_id":"cf02d36d-f4c3-4f71-b3bd-81c3e1531209","user_id":12936487,"start_at":1727889840,"last_check_ts":1727889840,"last_check_ymd":20241003,"next_check_ts":1727971200,"check_counter":1,"today_points":200,"today_game":1}}}
2024-10-03 21:47:47 - 200 - {"status":400,"message":"already_check","data":{"round_id":"cf02d36d-f4c3-4f71-b3bd-81c3e1531209","user_id":12936487,"start_at":1727889840,"last_check_ts":1727889840,"last_check_ymd":20241003,"next_check_ts":1727971200,"check_counter":1,"today_points":200,"today_game":1}}
2024-10-03 21:47:50 - 200 - {"status":0,"message":"","data":{"available_balance":"34269.30","play_passes":5,"timestamp":1727972271,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"b0ad36ec-a73e-4e48-918f-b4e017c045f3","user_id":10535485,"start_at":1727897873,"end_at":1727908673,"last_claim":1727899486,"points":"161.30","finished":false,"claim_this_time":"161.30"},"daily":{"round_id":"912cb072-760f-4c1b-bd5e-f4025d3c68e4","user_id":10535485,"start_at":1727579544,"last_check_ts":1727848380,"last_check_ymd":20241002,"next_check_ts":1727884800,"check_counter":4,"today_points":3000,"today_game":4,"diff":1}}}
2024-10-03 21:47:50 - 200 - {"status":0,"message":"","data":{"round_id":"912cb072-760f-4c1b-bd5e-f4025d3c68e4","user_id":10535485,"start_at":1727579544,"last_check_ts":1727943471,"last_check_ymd":20241003,"next_check_ts":1727971200,"check_counter":5,"today_points":8000,"today_game":5,"diff":1}}
2024-10-03 21:47:51 - 200 - {"status":0,"message":"","data":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"b0ad36ec-a73e-4e48-918f-b4e017c045f3","user_id":10535485,"start_at":1727897873,"end_at":1727908673,"last_claim":1727972271,"points":"1080.00","finished":true,"claim_this_time":"918.70"}}
2024-10-03 21:47:51 - 200 - {"status":0,"message":"","data":{"available_balance":"43188.00","play_passes":10,"timestamp":1727972272,"daily":{"round_id":"912cb072-760f-4c1b-bd5e-f4025d3c68e4","user_id":10535485,"start_at":1727579544,"last_check_ts":1727943471,"last_check_ymd":20241003,"next_check_ts":1727971200,"check_counter":5,"today_points":8000,"today_game":5,"diff":1}}}
2024-10-03 21:47:51 - 200 - {"status":400,"message":"already_check","data":{"round_id":"912cb072-760f-4c1b-bd5e-f4025d3c68e4","user_id":10535485,"start_at":1727579544,"last_check_ts":1727943471,"last_check_ymd":20241003,"next_check_ts":1727971200,"check_counter":5,"today_points":8000,"today_game":5,"diff":1}}
2024-10-03 21:47:52 - 200 - {"status":0,"message":"","data":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"d1914699-f7b6-4c5e-af30-81f75eb4c7dd","user_id":10535485,"start_at":1727972272,"end_at":1727983072,"last_claim":1727972272,"points":0}}
2024-10-03 21:47:52 - 200 - {"status":0,"message":"","data":{"available_balance":43188,"play_passes":10,"timestamp":1727972272,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"d1914699-f7b6-4c5e-af30-81f75eb4c7dd","user_id":10535485,"start_at":1727972272,"end_at":1727983072,"last_claim":1727972272,"points":0},"daily":{"round_id":"912cb072-760f-4c1b-bd5e-f4025d3c68e4","user_id":10535485,"start_at":1727579544,"last_check_ts":1727943471,"last_check_ymd":20241003,"next_check_ts":1727971200,"check_counter":5,"today_points":8000,"today_game":5,"diff":1}}}
2024-10-03 21:47:52 - 200 - {"status":400,"message":"already_check","data":{"round_id":"912cb072-760f-4c1b-bd5e-f4025d3c68e4","user_id":10535485,"start_at":1727579544,"last_check_ts":1727943471,"last_check_ymd":20241003,"next_check_ts":1727971200,"check_counter":5,"today_points":8000,"today_game":5,"diff":1}}
2024-10-03 21:47:52 - 200 - {"status":0,"message":"","data":{"round_id":"a2b748c6-0c03-420d-8f5e-1205064aaa84","user_id":10535485,"start_at":1727972273,"end_at":1727972303}}
2024-10-03 21:48:23 - 200 - {"status":0,"message":"","data":{"round_id":"a2b748c6-0c03-420d-8f5e-1205064aaa84","user_id":10535485,"start_at":1727972273,"end_at":1727972303,"points":128}}
2024-10-03 21:48:23 - 200 - {"status":0,"message":"","data":{"round_id":"f8a57738-8216-4a6e-b56d-045640f21b6c","user_id":10535485,"start_at":1727972304,"end_at":1727972334}}
2024-10-03 21:48:54 - 200 - {"status":0,"message":"","data":{"round_id":"f8a57738-8216-4a6e-b56d-045640f21b6c","user_id":10535485,"start_at":1727972304,"end_at":1727972334,"points":129}}
2024-10-03 21:48:54 - 200 - {"status":0,"message":"","data":{"round_id":"f9724bc7-d5c1-421b-b6f7-a8fc3dbda3af","user_id":10535485,"start_at":1727972335,"end_at":1727972365}}
2024-10-03 21:49:25 - 200 - {"status":0,"message":"","data":{"round_id":"f9724bc7-d5c1-421b-b6f7-a8fc3dbda3af","user_id":10535485,"start_at":1727972335,"end_at":1727972365,"points":130}}
2024-10-03 21:49:26 - 200 - {"status":0,"message":"","data":{"round_id":"534bf49b-d8f2-4e00-838c-0cd5f7fc1307","user_id":10535485,"start_at":1727972366,"end_at":1727972396}}
2024-10-03 21:49:57 - 200 - {"status":0,"message":"","data":{"round_id":"534bf49b-d8f2-4e00-838c-0cd5f7fc1307","user_id":10535485,"start_at":1727972366,"end_at":1727972396,"points":115}}
2024-10-03 21:49:58 - 200 - {"status":0,"message":"","data":{"round_id":"d3ade1bf-08af-491c-94a9-cbe7f52145bd","user_id":10535485,"start_at":1727972398,"end_at":1727972428}}
2024-10-03 21:50:35 - 200 - {"status":0,"message":"","data":{"round_id":"d3ade1bf-08af-491c-94a9-cbe7f52145bd","user_id":10535485,"start_at":1727972398,"end_at":1727972428,"points":107}}
2024-10-03 21:50:35 - 200 - {"status":0,"message":"","data":{"round_id":"412ad7a9-fedd-408c-a3f9-93ba4bc9d4ad","user_id":10535485,"start_at":1727972435,"end_at":1727972465}}
2024-10-03 21:51:05 - 200 - {"status":0,"message":"","data":{"round_id":"412ad7a9-fedd-408c-a3f9-93ba4bc9d4ad","user_id":10535485,"start_at":1727972435,"end_at":1727972465,"points":109}}
2024-10-03 21:51:05 - 200 - {"status":0,"message":"","data":{"round_id":"9b85106e-04b4-4ea0-8ec7-0d60772c50b9","user_id":10535485,"start_at":1727972466,"end_at":1727972496}}
2024-10-03 21:51:38 - 200 - {"status":0,"message":"","data":{"round_id":"9b85106e-04b4-4ea0-8ec7-0d60772c50b9","user_id":10535485,"start_at":1727972466,"end_at":1727972496,"points":103}}
2024-10-03 21:51:38 - 200 - {"status":0,"message":"","data":{"round_id":"8b607b20-e691-473c-8607-57142e196d84","user_id":10535485,"start_at":1727972499,"end_at":1727972529}}
2024-10-03 21:52:09 - 200 - {"status":0,"message":"","data":{"round_id":"8b607b20-e691-473c-8607-57142e196d84","user_id":10535485,"start_at":1727972499,"end_at":1727972529,"points":117}}
2024-10-03 21:52:09 - 200 - {"status":0,"message":"","data":{"round_id":"a398a1c0-5ca6-4e64-a06e-90ce1d387da6","user_id":10535485,"start_at":1727972529,"end_at":1727972559}}
2024-10-03 21:52:39 - 200 - {"status":0,"message":"","data":{"round_id":"a398a1c0-5ca6-4e64-a06e-90ce1d387da6","user_id":10535485,"start_at":1727972529,"end_at":1727972559,"points":110}}
2024-10-03 21:52:40 - 200 - {"status":0,"message":"","data":{"round_id":"61448d70-cb85-4d80-b1fa-ac28b5be676a","user_id":10535485,"start_at":1727972560,"end_at":1727972590}}
2024-10-03 21:53:20 - 200 - {"status":0,"message":"","data":{"round_id":"61448d70-cb85-4d80-b1fa-ac28b5be676a","user_id":10535485,"start_at":1727972560,"end_at":1727972590,"points":138}}
2024-10-03 21:53:20 - 200 - {"status":0,"message":"","data":{"available_balance":"44374.00","play_passes":0,"timestamp":1727972600,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"d1914699-f7b6-4c5e-af30-81f75eb4c7dd","user_id":10535485,"start_at":1727972272,"end_at":1727983072,"last_claim":1727972272,"points":0},"daily":{"round_id":"912cb072-760f-4c1b-bd5e-f4025d3c68e4","user_id":10535485,"start_at":1727579544,"last_check_ts":1727943471,"last_check_ymd":20241003,"next_check_ts":1727971200,"check_counter":5,"today_points":8000,"today_game":5,"diff":1}}}
2024-10-03 21:53:20 - 200 - {"status":400,"message":"already_check","data":{"round_id":"912cb072-760f-4c1b-bd5e-f4025d3c68e4","user_id":10535485,"start_at":1727579544,"last_check_ts":1727943471,"last_check_ymd":20241003,"next_check_ts":1727971200,"check_counter":5,"today_points":8000,"today_game":5,"diff":1}}
2024-10-03 21:53:23 - 200 - {"status":0,"message":"","data":{"available_balance":"24154.00","play_passes":5,"timestamp":1727972604,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"8dd60ca0-5dae-4dd1-adf0-7484d491055f","user_id":15231956,"start_at":1727897879,"end_at":1727908679,"last_claim":1727897879,"points":0},"daily":{"round_id":"33de41c2-b988-405b-b2d6-dc318db03b20","user_id":15231956,"start_at":1727615459,"last_check_ts":1727848664,"last_check_ymd":20241002,"next_check_ts":1727884800,"check_counter":4,"today_points":3000,"today_game":4,"diff":1}}}
2024-10-03 21:53:24 - 200 - {"status":0,"message":"","data":{"round_id":"33de41c2-b988-405b-b2d6-dc318db03b20","user_id":15231956,"start_at":1727615459,"last_check_ts":1727943804,"last_check_ymd":20241003,"next_check_ts":1727971200,"check_counter":5,"today_points":8000,"today_game":5,"diff":1}}
2024-10-03 21:53:24 - 200 - {"status":0,"message":"","data":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"8dd60ca0-5dae-4dd1-adf0-7484d491055f","user_id":15231956,"start_at":1727897879,"end_at":1727908679,"last_claim":1727972605,"points":"1080.00","finished":true,"claim_this_time":"1080.00"}}
2024-10-03 21:53:24 - 200 - {"status":0,"message":"","data":{"available_balance":"33234.00","play_passes":10,"timestamp":1727972605,"daily":{"round_id":"33de41c2-b988-405b-b2d6-dc318db03b20","user_id":15231956,"start_at":1727615459,"last_check_ts":1727943804,"last_check_ymd":20241003,"next_check_ts":1727971200,"check_counter":5,"today_points":8000,"today_game":5,"diff":1}}}
2024-10-03 21:53:25 - 200 - {"status":400,"message":"already_check","data":{"round_id":"33de41c2-b988-405b-b2d6-dc318db03b20","user_id":15231956,"start_at":1727615459,"last_check_ts":1727943804,"last_check_ymd":20241003,"next_check_ts":1727971200,"check_counter":5,"today_points":8000,"today_game":5,"diff":1}}
2024-10-03 21:53:25 - 200 - {"status":0,"message":"","data":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"5ad0efe9-6a9c-4793-b058-5db121067b12","user_id":15231956,"start_at":1727972605,"end_at":1727983405,"last_claim":1727972605,"points":0}}
2024-10-03 21:53:25 - 200 - {"status":0,"message":"","data":{"available_balance":33234,"play_passes":10,"timestamp":1727972606,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"5ad0efe9-6a9c-4793-b058-5db121067b12","user_id":15231956,"start_at":1727972605,"end_at":1727983405,"last_claim":1727972605,"points":0},"daily":{"round_id":"33de41c2-b988-405b-b2d6-dc318db03b20","user_id":15231956,"start_at":1727615459,"last_check_ts":1727943804,"last_check_ymd":20241003,"next_check_ts":1727971200,"check_counter":5,"today_points":8000,"today_game":5,"diff":1}}}
2024-10-03 21:53:26 - 200 - {"status":400,"message":"already_check","data":{"round_id":"33de41c2-b988-405b-b2d6-dc318db03b20","user_id":15231956,"start_at":1727615459,"last_check_ts":1727943804,"last_check_ymd":20241003,"next_check_ts":1727971200,"check_counter":5,"today_points":8000,"today_game":5,"diff":1}}
2024-10-03 21:53:26 - 200 - {"status":0,"message":"","data":{"round_id":"a5211f93-0e42-4fd9-b0f9-ede23e63f26d","user_id":15231956,"start_at":1727972606,"end_at":1727972636}}
2024-10-03 21:53:57 - 200 - {"status":0,"message":"","data":{"round_id":"a5211f93-0e42-4fd9-b0f9-ede23e63f26d","user_id":15231956,"start_at":1727972606,"end_at":1727972636,"points":128}}
2024-10-03 21:53:57 - 200 - {"status":0,"message":"","data":{"round_id":"759fc467-8f8d-4fc2-bbbd-133cf459379a","user_id":15231956,"start_at":1727972637,"end_at":1727972667}}
2024-10-03 21:54:27 - 200 - {"status":0,"message":"","data":{"round_id":"759fc467-8f8d-4fc2-bbbd-133cf459379a","user_id":15231956,"start_at":1727972637,"end_at":1727972667,"points":105}}
2024-10-03 21:54:27 - 200 - {"status":0,"message":"","data":{"round_id":"ccab5330-6afc-407f-a9e5-e6583ca48068","user_id":15231956,"start_at":1727972668,"end_at":1727972698}}
2024-10-03 21:54:58 - 200 - {"status":0,"message":"","data":{"round_id":"ccab5330-6afc-407f-a9e5-e6583ca48068","user_id":15231956,"start_at":1727972668,"end_at":1727972698,"points":106}}
2024-10-03 21:54:58 - 200 - {"status":0,"message":"","data":{"round_id":"09dc4516-934f-4223-ae93-02ee38c00c24","user_id":15231956,"start_at":1727972698,"end_at":1727972728}}
2024-10-03 21:55:32 - 200 - {"status":0,"message":"","data":{"round_id":"09dc4516-934f-4223-ae93-02ee38c00c24","user_id":15231956,"start_at":1727972698,"end_at":1727972728,"points":116}}
2024-10-03 21:55:33 - 200 - {"status":0,"message":"","data":{"round_id":"dabb63cc-8580-45dc-8774-34f538850814","user_id":15231956,"start_at":1727972733,"end_at":1727972763}}
2024-10-03 21:56:03 - 200 - {"status":0,"message":"","data":{"round_id":"dabb63cc-8580-45dc-8774-34f538850814","user_id":15231956,"start_at":1727972733,"end_at":1727972763,"points":135}}
2024-10-03 21:56:03 - 200 - {"status":0,"message":"","data":{"round_id":"ce034249-1559-47d1-8d56-5ef10677f876","user_id":15231956,"start_at":1727972764,"end_at":1727972794}}
2024-10-03 21:56:33 - 200 - {"status":0,"message":"","data":{"round_id":"ce034249-1559-47d1-8d56-5ef10677f876","user_id":15231956,"start_at":1727972764,"end_at":1727972794,"points":126}}
2024-10-03 21:56:34 - 200 - {"status":0,"message":"","data":{"round_id":"6b6f06bd-8b38-4189-aab8-aacf177f4570","user_id":15231956,"start_at":1727972794,"end_at":1727972824}}
2024-10-03 21:57:04 - 200 - {"status":0,"message":"","data":{"round_id":"6b6f06bd-8b38-4189-aab8-aacf177f4570","user_id":15231956,"start_at":1727972794,"end_at":1727972824,"points":122}}
2024-10-03 21:57:04 - 200 - {"status":0,"message":"","data":{"round_id":"448b5760-bb6b-4f5e-9994-9651433b9fdd","user_id":15231956,"start_at":1727972825,"end_at":1727972855}}
2024-10-03 21:57:35 - 200 - {"status":0,"message":"","data":{"round_id":"448b5760-bb6b-4f5e-9994-9651433b9fdd","user_id":15231956,"start_at":1727972825,"end_at":1727972855,"points":129}}
2024-10-03 21:57:35 - 200 - {"status":0,"message":"","data":{"round_id":"0f927b03-e6e5-4780-91f4-ed6892032e2f","user_id":15231956,"start_at":1727972855,"end_at":1727972885}}
2024-10-03 21:58:05 - 200 - {"status":0,"message":"","data":{"round_id":"0f927b03-e6e5-4780-91f4-ed6892032e2f","user_id":15231956,"start_at":1727972855,"end_at":1727972885,"points":101}}
2024-10-03 21:58:05 - 200 - {"status":0,"message":"","data":{"round_id":"a387838f-ab48-47a1-83bc-b1b7411766f2","user_id":15231956,"start_at":1727972886,"end_at":1727972916}}
2024-10-03 21:58:36 - 200 - {"status":0,"message":"","data":{"round_id":"a387838f-ab48-47a1-83bc-b1b7411766f2","user_id":15231956,"start_at":1727972886,"end_at":1727972916,"points":123}}
2024-10-03 21:58:36 - 200 - {"status":0,"message":"","data":{"available_balance":"34425.00","play_passes":0,"timestamp":1727972917,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"5ad0efe9-6a9c-4793-b058-5db121067b12","user_id":15231956,"start_at":1727972605,"end_at":1727983405,"last_claim":1727972605,"points":0},"daily":{"round_id":"33de41c2-b988-405b-b2d6-dc318db03b20","user_id":15231956,"start_at":1727615459,"last_check_ts":1727943804,"last_check_ymd":20241003,"next_check_ts":1727971200,"check_counter":5,"today_points":8000,"today_game":5,"diff":1}}}
2024-10-03 21:58:36 - 200 - {"status":400,"message":"already_check","data":{"round_id":"33de41c2-b988-405b-b2d6-dc318db03b20","user_id":15231956,"start_at":1727615459,"last_check_ts":1727943804,"last_check_ymd":20241003,"next_check_ts":1727971200,"check_counter":5,"today_points":8000,"today_game":5,"diff":1}}
2024-10-03 21:58:40 - 200 - {"status":0,"message":"","data":{"available_balance":"26151.00","play_passes":5,"timestamp":1727972921,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"49a045e9-845d-4ccd-9fe8-18a047813224","user_id":12924209,"start_at":1727897884,"end_at":1727908684,"last_claim":1727897884,"points":0},"daily":{"round_id":"c98bbcc7-75ba-4c06-a531-71d912bee509","user_id":12924209,"start_at":1727615650,"last_check_ts":1727848972,"last_check_ymd":20241002,"next_check_ts":1727884800,"check_counter":4,"today_points":3000,"today_game":4,"diff":1}}}
2024-10-03 21:58:41 - 200 - {"status":0,"message":"","data":{"round_id":"c98bbcc7-75ba-4c06-a531-71d912bee509","user_id":12924209,"start_at":1727615650,"last_check_ts":1727944121,"last_check_ymd":20241003,"next_check_ts":1727971200,"check_counter":5,"today_points":8000,"today_game":5,"diff":1}}
2024-10-03 21:58:41 - 200 - {"status":0,"message":"","data":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"49a045e9-845d-4ccd-9fe8-18a047813224","user_id":12924209,"start_at":1727897884,"end_at":1727908684,"last_claim":1727972921,"points":"1080.00","finished":true,"claim_this_time":"1080.00"}}
2024-10-03 21:58:41 - 200 - {"status":0,"message":"","data":{"available_balance":"35231.00","play_passes":10,"timestamp":1727972922,"daily":{"round_id":"c98bbcc7-75ba-4c06-a531-71d912bee509","user_id":12924209,"start_at":1727615650,"last_check_ts":1727944121,"last_check_ymd":20241003,"next_check_ts":1727971200,"check_counter":5,"today_points":8000,"today_game":5,"diff":1}}}
2024-10-03 21:58:42 - 200 - {"status":400,"message":"already_check","data":{"round_id":"c98bbcc7-75ba-4c06-a531-71d912bee509","user_id":12924209,"start_at":1727615650,"last_check_ts":1727944121,"last_check_ymd":20241003,"next_check_ts":1727971200,"check_counter":5,"today_points":8000,"today_game":5,"diff":1}}
2024-10-03 21:58:42 - 200 - {"status":0,"message":"","data":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"d00e9db2-e1dc-433a-82b6-0941714a3298","user_id":12924209,"start_at":1727972922,"end_at":1727983722,"last_claim":1727972922,"points":0}}
2024-10-03 21:58:42 - 200 - {"status":0,"message":"","data":{"available_balance":35231,"play_passes":10,"timestamp":1727972923,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"d00e9db2-e1dc-433a-82b6-0941714a3298","user_id":12924209,"start_at":1727972922,"end_at":1727983722,"last_claim":1727972922,"points":0},"daily":{"round_id":"c98bbcc7-75ba-4c06-a531-71d912bee509","user_id":12924209,"start_at":1727615650,"last_check_ts":1727944121,"last_check_ymd":20241003,"next_check_ts":1727971200,"check_counter":5,"today_points":8000,"today_game":5,"diff":1}}}
2024-10-03 21:58:42 - 200 - {"status":400,"message":"already_check","data":{"round_id":"c98bbcc7-75ba-4c06-a531-71d912bee509","user_id":12924209,"start_at":1727615650,"last_check_ts":1727944121,"last_check_ymd":20241003,"next_check_ts":1727971200,"check_counter":5,"today_points":8000,"today_game":5,"diff":1}}
2024-10-03 21:58:43 - 200 - {"status":0,"message":"","data":{"round_id":"8e738245-a131-4e13-90bd-b30f3b05315d","user_id":12924209,"start_at":1727972923,"end_at":1727972953}}
2024-10-03 21:59:13 - 200 - {"status":0,"message":"","data":{"round_id":"8e738245-a131-4e13-90bd-b30f3b05315d","user_id":12924209,"start_at":1727972923,"end_at":1727972953,"points":150}}
2024-10-03 21:59:13 - 200 - {"status":0,"message":"","data":{"round_id":"2a70d201-c26f-4cfe-86dd-6959b9342395","user_id":12924209,"start_at":1727972954,"end_at":1727972984}}
2024-10-03 22:00:06 - 200 - {"status":0,"message":"","data":{"round_id":"2a70d201-c26f-4cfe-86dd-6959b9342395","user_id":12924209,"start_at":1727972954,"end_at":1727972984,"points":108}}
2024-10-03 22:00:06 - 200 - {"status":0,"message":"","data":{"round_id":"2d470a53-7ebc-439c-a95a-db206e6875c5","user_id":12924209,"start_at":1727973006,"end_at":1727973036}}
2024-10-03 22:06:50 - 200 - {"status":0,"message":"","data":{"round_id":"2d470a53-7ebc-439c-a95a-db206e6875c5","user_id":12924209,"start_at":1727973006,"end_at":1727973036,"points":119}}
2024-10-03 22:06:51 - 200 - {"status":0,"message":"","data":{"round_id":"5cf61aad-4b0b-409d-9286-e263da14f8aa","user_id":12924209,"start_at":1727973411,"end_at":1727973441}}
2024-10-03 22:10:13 - 200 - {"status":0,"message":"","data":{"round_id":"5cf61aad-4b0b-409d-9286-e263da14f8aa","user_id":12924209,"start_at":1727973411,"end_at":1727973441,"points":111}}
2024-10-03 22:10:13 - 200 - {"status":0,"message":"","data":{"round_id":"e459c818-435f-44ea-adbb-289385ab93a3","user_id":12924209,"start_at":1727973613,"end_at":1727973643}}
2024-10-03 22:10:43 - 200 - {"status":0,"message":"","data":{"round_id":"e459c818-435f-44ea-adbb-289385ab93a3","user_id":12924209,"start_at":1727973613,"end_at":1727973643,"points":115}}
2024-10-03 22:10:44 - 200 - {"status":0,"message":"","data":{"round_id":"532da692-2702-4a6c-b111-39050d5957ad","user_id":12924209,"start_at":1727973644,"end_at":1727973674}}
2024-10-03 22:11:14 - 200 - {"status":0,"message":"","data":{"round_id":"532da692-2702-4a6c-b111-39050d5957ad","user_id":12924209,"start_at":1727973644,"end_at":1727973674,"points":137}}
2024-10-03 22:11:14 - 200 - {"status":0,"message":"","data":{"round_id":"1b35059e-02aa-4e75-ac73-ce14da781b4e","user_id":12924209,"start_at":1727973675,"end_at":1727973705}}
2024-10-03 22:11:46 - 200 - {"status":0,"message":"","data":{"round_id":"1b35059e-02aa-4e75-ac73-ce14da781b4e","user_id":12924209,"start_at":1727973675,"end_at":1727973705,"points":123}}
2024-10-03 22:11:47 - 200 - {"status":0,"message":"","data":{"round_id":"72e04e5d-9ce0-4821-b1ec-c0729a37a4d8","user_id":12924209,"start_at":1727973707,"end_at":1727973737}}
2024-10-03 22:12:18 - 200 - {"status":0,"message":"","data":{"round_id":"72e04e5d-9ce0-4821-b1ec-c0729a37a4d8","user_id":12924209,"start_at":1727973707,"end_at":1727973737,"points":135}}
2024-10-03 22:12:19 - 200 - {"status":0,"message":"","data":{"round_id":"6333a419-dc05-4cfc-a48b-c4f0f170c89f","user_id":12924209,"start_at":1727973739,"end_at":1727973769}}
2024-10-03 22:12:49 - 200 - {"status":0,"message":"","data":{"round_id":"6333a419-dc05-4cfc-a48b-c4f0f170c89f","user_id":12924209,"start_at":1727973739,"end_at":1727973769,"points":113}}
2024-10-03 22:12:49 - 200 - {"status":0,"message":"","data":{"round_id":"5b3cf299-1a1b-4bfe-a082-7627f47575ba","user_id":12924209,"start_at":1727973770,"end_at":1727973800}}
2024-10-03 22:13:20 - 200 - {"status":0,"message":"","data":{"round_id":"5b3cf299-1a1b-4bfe-a082-7627f47575ba","user_id":12924209,"start_at":1727973770,"end_at":1727973800,"points":108}}
2024-10-03 22:13:20 - 200 - {"status":0,"message":"","data":{"available_balance":"36450.00","play_passes":0,"timestamp":1727973801,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"d00e9db2-e1dc-433a-82b6-0941714a3298","user_id":12924209,"start_at":1727972922,"end_at":1727983722,"last_claim":1727972922,"points":0},"daily":{"round_id":"c98bbcc7-75ba-4c06-a531-71d912bee509","user_id":12924209,"start_at":1727615650,"last_check_ts":1727944121,"last_check_ymd":20241003,"next_check_ts":1727971200,"check_counter":5,"today_points":8000,"today_game":5,"diff":1}}}
2024-10-03 22:13:20 - 200 - {"status":400,"message":"already_check","data":{"round_id":"c98bbcc7-75ba-4c06-a531-71d912bee509","user_id":12924209,"start_at":1727615650,"last_check_ts":1727944121,"last_check_ymd":20241003,"next_check_ts":1727971200,"check_counter":5,"today_points":8000,"today_game":5,"diff":1}}
2024-10-04 08:47:01 - 200 - {"status":0,"message":"","data":{"available_balance":"743512.20","play_passes":10,"timestamp":1728011822,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"8caddf9c-211a-4176-a517-f1473f7e48e7","user_id":8565031,"start_at":1728010271,"end_at":1728021071,"last_claim":1728010271,"points":0},"daily":{"round_id":"3d1adf61-5428-403f-b735-0f55996e8990","user_id":8565031,"start_at":1727635158,"last_check_ts":1727980947,"last_check_ymd":20241004,"next_check_ts":1728057600,"check_counter":5,"today_points":8000,"today_game":5,"diff":1}}}
2024-10-04 08:47:02 - 200 - {"status":0,"message":"","data":{"round_id":"478e1e0a-dba4-4b4b-8b3d-c0ca34db1db1","user_id":8565031,"start_at":1728011822,"end_at":1728011852}}
2024-10-04 08:47:32 - 200 - {"status":0,"message":"","data":{"round_id":"478e1e0a-dba4-4b4b-8b3d-c0ca34db1db1","user_id":8565031,"start_at":1728011822,"end_at":1728011852,"points":123}}
2024-10-04 08:47:32 - 200 - {"status":0,"message":"","data":{"round_id":"8f3821a5-1f31-4687-bed4-96525533471f","user_id":8565031,"start_at":1728011853,"end_at":1728011883}}
2024-10-04 08:48:11 - 200 - {"status":0,"message":"","data":{"round_id":"8f3821a5-1f31-4687-bed4-96525533471f","user_id":8565031,"start_at":1728011853,"end_at":1728011883,"points":140}}
2024-10-04 08:48:11 - 200 - {"status":0,"message":"","data":{"round_id":"45059cf6-926d-4580-8ba8-ce4f14402cb8","user_id":8565031,"start_at":1728011892,"end_at":1728011922}}
2024-10-04 08:49:16 - 200 - {"status":0,"message":"","data":{"round_id":"45059cf6-926d-4580-8ba8-ce4f14402cb8","user_id":8565031,"start_at":1728011892,"end_at":1728011922,"points":124}}
2024-10-04 08:49:16 - 200 - {"status":0,"message":"","data":{"round_id":"9e8711ab-4dc0-40e2-be4d-ba25cebfc2af","user_id":8565031,"start_at":1728011957,"end_at":1728011987}}
2024-10-04 08:51:20 - 200 - {"status":0,"message":"","data":{"round_id":"9e8711ab-4dc0-40e2-be4d-ba25cebfc2af","user_id":8565031,"start_at":1728011957,"end_at":1728011987,"points":116}}
2024-10-04 08:51:20 - 200 - {"status":0,"message":"","data":{"round_id":"1d7b5d13-ba5c-462c-9537-f206cfb84b8f","user_id":8565031,"start_at":1728012080,"end_at":1728012110}}
2024-10-04 08:54:20 - 200 - {"status":0,"message":"","data":{"round_id":"1d7b5d13-ba5c-462c-9537-f206cfb84b8f","user_id":8565031,"start_at":1728012080,"end_at":1728012110,"points":114}}
2024-10-04 08:54:20 - 200 - {"status":0,"message":"","data":{"round_id":"b73c0481-0678-4cc9-ab90-0b8b7a16a4c2","user_id":8565031,"start_at":1728012261,"end_at":1728012291}}
2024-10-04 08:54:55 - 200 - {"status":0,"message":"","data":{"round_id":"b73c0481-0678-4cc9-ab90-0b8b7a16a4c2","user_id":8565031,"start_at":1728012261,"end_at":1728012291,"points":130}}
2024-10-04 08:54:55 - 200 - {"status":0,"message":"","data":{"round_id":"04bd64e5-41df-4ce2-b5cd-547a34268c61","user_id":8565031,"start_at":1728012296,"end_at":1728012326}}
2024-10-04 08:55:25 - 200 - {"status":0,"message":"","data":{"round_id":"04bd64e5-41df-4ce2-b5cd-547a34268c61","user_id":8565031,"start_at":1728012296,"end_at":1728012326,"points":121}}
2024-10-04 08:55:26 - 200 - {"status":0,"message":"","data":{"round_id":"ed7aa754-1db1-4eb4-86c7-f6eb59565272","user_id":8565031,"start_at":1728012326,"end_at":1728012356}}
2024-10-04 08:55:56 - 200 - {"status":0,"message":"","data":{"round_id":"ed7aa754-1db1-4eb4-86c7-f6eb59565272","user_id":8565031,"start_at":1728012326,"end_at":1728012356,"points":143}}
2024-10-04 08:55:56 - 200 - {"status":0,"message":"","data":{"round_id":"42da54f5-8a68-4747-a852-d1df7940b93a","user_id":8565031,"start_at":1728012357,"end_at":1728012387}}
2024-10-04 08:56:27 - 200 - {"status":0,"message":"","data":{"round_id":"42da54f5-8a68-4747-a852-d1df7940b93a","user_id":8565031,"start_at":1728012357,"end_at":1728012387,"points":112}}
2024-10-04 08:56:27 - 200 - {"status":0,"message":"","data":{"round_id":"a91c27c8-9276-4463-9f89-cdd5b3262549","user_id":8565031,"start_at":1728012388,"end_at":1728012418}}
2024-10-04 08:56:57 - 200 - {"status":0,"message":"","data":{"round_id":"a91c27c8-9276-4463-9f89-cdd5b3262549","user_id":8565031,"start_at":1728012388,"end_at":1728012418,"points":100}}
2024-10-04 08:56:57 - 200 - {"status":0,"message":"","data":{"available_balance":"744735.20","play_passes":0,"timestamp":1728012418,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"8caddf9c-211a-4176-a517-f1473f7e48e7","user_id":8565031,"start_at":1728010271,"end_at":1728021071,"last_claim":1728010271,"points":0},"daily":{"round_id":"3d1adf61-5428-403f-b735-0f55996e8990","user_id":8565031,"start_at":1727635158,"last_check_ts":1727980947,"last_check_ymd":20241004,"next_check_ts":1728057600,"check_counter":5,"today_points":8000,"today_game":5,"diff":1}}}
2024-10-04 08:57:01 - 200 - {"status":400,"message":"Invalid init data.","data":{}}
2024-10-04 08:57:02 - 200 - {"status":0,"message":"","data":{"available_balance":96223,"play_passes":7,"timestamp":1728012423,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"0add28a8-caf4-450b-8f47-f3611122294c","user_id":12936487,"start_at":1728005039,"end_at":1728015839,"last_claim":1728005039,"points":0},"daily":{"round_id":"cf02d36d-f4c3-4f71-b3bd-81c3e1531209","user_id":12936487,"start_at":1727889840,"last_check_ts":1727976238,"last_check_ymd":20241004,"next_check_ts":1728057600,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}}
2024-10-04 08:57:02 - 200 - {"status":0,"message":"","data":{"round_id":"5dc829b7-e70e-4708-9430-5926bcd89c14","user_id":12936487,"start_at":1728012423,"end_at":1728012453}}
2024-10-04 08:57:33 - 200 - {"status":0,"message":"","data":{"round_id":"5dc829b7-e70e-4708-9430-5926bcd89c14","user_id":12936487,"start_at":1728012423,"end_at":1728012453,"points":116}}
2024-10-04 08:57:33 - 200 - {"status":0,"message":"","data":{"round_id":"c6249d76-0130-4478-aab3-6e55f854249e","user_id":12936487,"start_at":1728012454,"end_at":1728012484}}
2024-10-04 08:58:03 - 200 - {"status":0,"message":"","data":{"round_id":"c6249d76-0130-4478-aab3-6e55f854249e","user_id":12936487,"start_at":1728012454,"end_at":1728012484,"points":143}}
2024-10-04 08:58:04 - 200 - {"status":0,"message":"","data":{"round_id":"2069e787-02a5-4ac8-8150-2bdc3b99b239","user_id":12936487,"start_at":1728012484,"end_at":1728012514}}
2024-10-04 08:58:35 - 200 - {"status":0,"message":"","data":{"round_id":"2069e787-02a5-4ac8-8150-2bdc3b99b239","user_id":12936487,"start_at":1728012484,"end_at":1728012514,"points":143}}
2024-10-04 08:58:36 - 200 - {"status":0,"message":"","data":{"round_id":"473d7e3f-d11f-4962-b847-49b238df3f82","user_id":12936487,"start_at":1728012516,"end_at":1728012546}}
2024-10-04 08:59:20 - 200 - {"status":0,"message":"","data":{"round_id":"473d7e3f-d11f-4962-b847-49b238df3f82","user_id":12936487,"start_at":1728012516,"end_at":1728012546,"points":118}}
2024-10-04 08:59:20 - 200 - {"status":0,"message":"","data":{"round_id":"a2878947-6e61-49c0-b307-2a67e528656e","user_id":12936487,"start_at":1728012561,"end_at":1728012591}}
2024-10-04 08:59:50 - 200 - {"status":0,"message":"","data":{"round_id":"a2878947-6e61-49c0-b307-2a67e528656e","user_id":12936487,"start_at":1728012561,"end_at":1728012591,"points":130}}
2024-10-04 08:59:51 - 200 - {"status":0,"message":"","data":{"round_id":"7d10e8d0-9651-4c2e-b751-9853d0d2ab05","user_id":12936487,"start_at":1728012591,"end_at":1728012621}}
2024-10-04 09:01:05 - 200 - {"status":0,"message":"","data":{"round_id":"7d10e8d0-9651-4c2e-b751-9853d0d2ab05","user_id":12936487,"start_at":1728012591,"end_at":1728012621,"points":104}}
2024-10-04 09:01:05 - 200 - {"status":0,"message":"","data":{"round_id":"ec952e83-1b8f-4907-b44f-90576d6ca28e","user_id":12936487,"start_at":1728012666,"end_at":1728012696}}
2024-10-04 09:01:35 - 200 - {"status":0,"message":"","data":{"round_id":"ec952e83-1b8f-4907-b44f-90576d6ca28e","user_id":12936487,"start_at":1728012666,"end_at":1728012696,"points":125}}
2024-10-04 09:01:36 - 200 - {"status":0,"message":"","data":{"available_balance":"97102.00","play_passes":0,"timestamp":1728012696,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"0add28a8-caf4-450b-8f47-f3611122294c","user_id":12936487,"start_at":1728005039,"end_at":1728015839,"last_claim":1728005039,"points":0},"daily":{"round_id":"cf02d36d-f4c3-4f71-b3bd-81c3e1531209","user_id":12936487,"start_at":1727889840,"last_check_ts":1727976238,"last_check_ymd":20241004,"next_check_ts":1728057600,"check_counter":2,"today_points":500,"today_game":2,"diff":1}}}
2024-10-04 09:01:39 - 200 - {"status":0,"message":"","data":{"available_balance":55454,"play_passes":11,"timestamp":1728012700,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"fb1a7c24-9718-4311-80fc-db518c0d840e","user_id":10535485,"start_at":1728011779,"end_at":1728022579,"last_claim":1728011779,"points":0},"daily":{"round_id":"912cb072-760f-4c1b-bd5e-f4025d3c68e4","user_id":10535485,"start_at":1727579544,"last_check_ts":1727982979,"last_check_ymd":20241004,"next_check_ts":1728057600,"check_counter":6,"today_points":10000,"today_game":6,"diff":1}}}
2024-10-04 09:01:40 - 200 - {"status":0,"message":"","data":{"round_id":"d8dd6811-f8c2-4a4a-809a-3f9e12fce81e","user_id":10535485,"start_at":1728012700,"end_at":1728012730}}
2024-10-04 09:02:10 - 200 - {"status":0,"message":"","data":{"round_id":"d8dd6811-f8c2-4a4a-809a-3f9e12fce81e","user_id":10535485,"start_at":1728012700,"end_at":1728012730,"points":122}}
2024-10-04 09:02:10 - 200 - {"status":0,"message":"","data":{"round_id":"bbb6b738-0588-4ef8-b3c5-5e0a78e245cd","user_id":10535485,"start_at":1728012731,"end_at":1728012761}}
2024-10-04 09:02:41 - 200 - {"status":0,"message":"","data":{"round_id":"bbb6b738-0588-4ef8-b3c5-5e0a78e245cd","user_id":10535485,"start_at":1728012731,"end_at":1728012761,"points":132}}
2024-10-04 09:02:41 - 200 - {"status":0,"message":"","data":{"round_id":"fbd884ab-8193-43c8-99ff-66fbea1c2795","user_id":10535485,"start_at":1728012762,"end_at":1728012792}}
2024-10-04 09:03:11 - 200 - {"status":0,"message":"","data":{"round_id":"fbd884ab-8193-43c8-99ff-66fbea1c2795","user_id":10535485,"start_at":1728012762,"end_at":1728012792,"points":136}}
2024-10-04 09:03:12 - 200 - {"status":0,"message":"","data":{"round_id":"7d89b8b9-8a9d-4b9e-b285-1c680199d6fe","user_id":10535485,"start_at":1728012792,"end_at":1728012822}}
2024-10-04 09:04:31 - 200 - {"status":0,"message":"","data":{"round_id":"7d89b8b9-8a9d-4b9e-b285-1c680199d6fe","user_id":10535485,"start_at":1728012792,"end_at":1728012822,"points":102}}
2024-10-04 09:04:32 - 200 - {"status":0,"message":"","data":{"round_id":"db1713bd-207a-4132-b1d0-cbbed8276f8d","user_id":10535485,"start_at":1728012872,"end_at":1728012902}}
2024-10-04 09:06:37 - 200 - {"status":0,"message":"","data":{"round_id":"db1713bd-207a-4132-b1d0-cbbed8276f8d","user_id":10535485,"start_at":1728012872,"end_at":1728012902,"points":125}}
2024-10-04 09:06:37 - 200 - {"status":0,"message":"","data":{"round_id":"d2b90d96-5dd7-4221-8d42-ab55386a5d08","user_id":10535485,"start_at":1728012998,"end_at":1728013028}}
2024-10-04 09:07:22 - 200 - {"status":0,"message":"","data":{"round_id":"d2b90d96-5dd7-4221-8d42-ab55386a5d08","user_id":10535485,"start_at":1728012998,"end_at":1728013028,"points":109}}
2024-10-04 09:07:23 - 200 - {"status":0,"message":"","data":{"round_id":"2433ac8f-7e07-4cab-8b1c-0fa40fd30b49","user_id":10535485,"start_at":1728013043,"end_at":1728013073}}
2024-10-04 09:08:41 - 200 - {"status":0,"message":"","data":{"round_id":"2433ac8f-7e07-4cab-8b1c-0fa40fd30b49","user_id":10535485,"start_at":1728013043,"end_at":1728013073,"points":119}}
2024-10-04 09:08:42 - 200 - {"status":0,"message":"","data":{"round_id":"9ce0b931-d03e-4491-9321-d8a6c72e1586","user_id":10535485,"start_at":1728013122,"end_at":1728013152}}
2024-10-04 09:09:44 - 200 - {"status":0,"message":"","data":{"round_id":"9ce0b931-d03e-4491-9321-d8a6c72e1586","user_id":10535485,"start_at":1728013122,"end_at":1728013152,"points":136}}
2024-10-04 09:09:45 - 200 - {"status":0,"message":"","data":{"round_id":"36c3cd8c-7b0f-4f70-a3fd-8b6acd7920ff","user_id":10535485,"start_at":1728013185,"end_at":1728013215}}
2024-10-04 09:10:15 - 200 - {"status":0,"message":"","data":{"round_id":"36c3cd8c-7b0f-4f70-a3fd-8b6acd7920ff","user_id":10535485,"start_at":1728013185,"end_at":1728013215,"points":150}}
2024-10-04 09:10:15 - 200 - {"status":0,"message":"","data":{"round_id":"739dfde1-085e-423d-b4d8-7fe74b84c1be","user_id":10535485,"start_at":1728013216,"end_at":1728013246}}
2024-10-04 09:11:14 - 200 - {"status":0,"message":"","data":{"round_id":"739dfde1-085e-423d-b4d8-7fe74b84c1be","user_id":10535485,"start_at":1728013216,"end_at":1728013246,"points":130}}
2024-10-04 09:11:14 - 200 - {"status":0,"message":"","data":{"round_id":"8af9d420-0e2e-4db0-b561-efd2fb7fb23f","user_id":10535485,"start_at":1728013274,"end_at":1728013304}}
2024-10-04 09:12:09 - 200 - {"status":0,"message":"","data":{"round_id":"8af9d420-0e2e-4db0-b561-efd2fb7fb23f","user_id":10535485,"start_at":1728013274,"end_at":1728013304,"points":144}}
2024-10-04 09:12:10 - 200 - {"status":0,"message":"","data":{"available_balance":"56859.00","play_passes":0,"timestamp":1728013330,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"fb1a7c24-9718-4311-80fc-db518c0d840e","user_id":10535485,"start_at":1728011779,"end_at":1728022579,"last_claim":1728011779,"points":0},"daily":{"round_id":"912cb072-760f-4c1b-bd5e-f4025d3c68e4","user_id":10535485,"start_at":1727579544,"last_check_ts":1727982979,"last_check_ymd":20241004,"next_check_ts":1728057600,"check_counter":6,"today_points":10000,"today_game":6,"diff":1}}}
2024-10-04 09:12:13 - 200 - {"status":0,"message":"","data":{"available_balance":45505,"play_passes":11,"timestamp":1728013334,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"a0ed9b1b-3f9f-4ab7-ae0b-903753bea018","user_id":15231956,"start_at":1728011783,"end_at":1728022583,"last_claim":1728011783,"points":0},"daily":{"round_id":"33de41c2-b988-405b-b2d6-dc318db03b20","user_id":15231956,"start_at":1727615459,"last_check_ts":1727982983,"last_check_ymd":20241004,"next_check_ts":1728057600,"check_counter":6,"today_points":10000,"today_game":6,"diff":1}}}
2024-10-04 09:12:14 - 200 - {"status":0,"message":"","data":{"round_id":"0d974a0f-3c1c-4d3a-bde7-f2b070e99ff2","user_id":15231956,"start_at":1728013334,"end_at":1728013364}}
2024-10-04 09:13:08 - 200 - {"status":0,"message":"","data":{"round_id":"0d974a0f-3c1c-4d3a-bde7-f2b070e99ff2","user_id":15231956,"start_at":1728013334,"end_at":1728013364,"points":114}}
2024-10-04 09:13:09 - 200 - {"status":0,"message":"","data":{"round_id":"d02d77b7-d191-41cb-918c-b3d92969920e","user_id":15231956,"start_at":1728013390,"end_at":1728013420}}
2024-10-04 09:14:29 - 200 - {"status":0,"message":"","data":{"round_id":"d02d77b7-d191-41cb-918c-b3d92969920e","user_id":15231956,"start_at":1728013390,"end_at":1728013420,"points":146}}
2024-10-04 09:14:29 - 200 - {"status":0,"message":"","data":{"round_id":"160d7789-313b-4209-b807-c56b57212f2a","user_id":15231956,"start_at":1728013470,"end_at":1728013500}}
2024-10-04 09:18:00 - 200 - {"status":0,"message":"","data":{"round_id":"160d7789-313b-4209-b807-c56b57212f2a","user_id":15231956,"start_at":1728013470,"end_at":1728013500,"points":149}}
2024-10-04 09:18:01 - 200 - {"status":0,"message":"","data":{"round_id":"cfb1d010-5add-4bae-bd09-1d10d3569369","user_id":15231956,"start_at":1728013681,"end_at":1728013711}}
2024-10-04 09:21:36 - 200 - {"status":0,"message":"","data":{"round_id":"cfb1d010-5add-4bae-bd09-1d10d3569369","user_id":15231956,"start_at":1728013681,"end_at":1728013711,"points":104}}
2024-10-04 09:21:37 - 200 - {"status":0,"message":"","data":{"round_id":"50851796-17f1-4062-aaa4-d56711bd63bb","user_id":15231956,"start_at":1728013898,"end_at":1728013928}}
2024-10-04 09:22:49 - 200 - {"status":0,"message":"","data":{"round_id":"50851796-17f1-4062-aaa4-d56711bd63bb","user_id":15231956,"start_at":1728013898,"end_at":1728013928,"points":144}}
2024-10-04 09:22:49 - 200 - {"status":0,"message":"","data":{"round_id":"ebf97871-0bc0-4402-8ac7-3e9ea82a9d10","user_id":15231956,"start_at":1728013970,"end_at":1728014000}}
2024-10-04 09:25:07 - 200 - {"status":0,"message":"","data":{"round_id":"ebf97871-0bc0-4402-8ac7-3e9ea82a9d10","user_id":15231956,"start_at":1728013970,"end_at":1728014000,"points":133}}
2024-10-04 09:25:08 - 200 - {"status":0,"message":"","data":{"round_id":"27c77652-448b-4dca-96d7-3357d2dc211f","user_id":15231956,"start_at":1728014108,"end_at":1728014138}}
2024-10-04 09:28:04 - 200 - {"status":0,"message":"","data":{"round_id":"27c77652-448b-4dca-96d7-3357d2dc211f","user_id":15231956,"start_at":1728014108,"end_at":1728014138,"points":117}}
2024-10-04 09:28:04 - 200 - {"status":0,"message":"","data":{"round_id":"8cb51448-2003-4ec6-9c91-b0977227e182","user_id":15231956,"start_at":1728014285,"end_at":1728014315}}
2024-10-04 09:29:32 - 200 - {"status":0,"message":"","data":{"round_id":"8cb51448-2003-4ec6-9c91-b0977227e182","user_id":15231956,"start_at":1728014285,"end_at":1728014315,"points":102}}
2024-10-04 09:29:32 - 200 - {"status":0,"message":"","data":{"round_id":"147ac6c0-ffa1-4912-a408-c76924e6fb55","user_id":15231956,"start_at":1728014373,"end_at":1728014403}}
2024-10-04 09:30:19 - 200 - {"status":0,"message":"","data":{"round_id":"147ac6c0-ffa1-4912-a408-c76924e6fb55","user_id":15231956,"start_at":1728014373,"end_at":1728014403,"points":113}}
2024-10-04 09:30:20 - 200 - {"status":0,"message":"","data":{"round_id":"1fd31210-d3f8-4fb2-86cb-5fcd0c0ea59b","user_id":15231956,"start_at":1728014420,"end_at":1728014450}}
2024-10-04 09:31:40 - 200 - {"status":0,"message":"","data":{"round_id":"1fd31210-d3f8-4fb2-86cb-5fcd0c0ea59b","user_id":15231956,"start_at":1728014420,"end_at":1728014450,"points":113}}
2024-10-04 09:31:40 - 200 - {"status":0,"message":"","data":{"round_id":"3cbec580-c9f1-442c-9d7b-8a6abe33685a","user_id":15231956,"start_at":1728014501,"end_at":1728014531}}
2024-10-04 09:32:30 - 200 - {"status":0,"message":"","data":{"round_id":"3cbec580-c9f1-442c-9d7b-8a6abe33685a","user_id":15231956,"start_at":1728014501,"end_at":1728014531,"points":107}}
2024-10-04 09:32:31 - 200 - {"status":0,"message":"","data":{"available_balance":"46847.00","play_passes":0,"timestamp":1728014551,"farming":{"game_id":"53b22103-c7ff-413d-bc63-20f6fb806a07","round_id":"a0ed9b1b-3f9f-4ab7-ae0b-903753bea018","user_id":15231956,"start_at":1728011783,"end_at":1728022583,"last_claim":1728011783,"points":0},"daily":{"round_id":"33de41c2-b988-405b-b2d6-dc318db03b20","user_id":15231956,"start_at":1727615459,"last_check_ts":1727982983,"last_check_ymd":20241004,"next_check_ts":1728057600,"check_counter":6,"today_points":10000,"today_game":6,"diff":1}}}